
    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_02f7214ad5b3b78c7fa27ff8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_68d4439c6101d4bddad39641.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_a41e4457be307ba0ec964345.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_57b8a9f72bc492d66a10af68.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_e31fee8e5ed449ce24de3a6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740234;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_74e0cc7f260c6b4965f85b8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.810000;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.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,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);}
.v2{vertical-align:-16.471800px;}
.v4{vertical-align:-1.056000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.655400px;}
.v3{vertical-align:32.976000px;}
.ls7e{letter-spacing:-6.000000px;}
.ls7b{letter-spacing:-5.520000px;}
.ls7c{letter-spacing:-3.840000px;}
.lsa8{letter-spacing:-3.552000px;}
.ls79{letter-spacing:-3.060000px;}
.ls9a{letter-spacing:-2.640000px;}
.ls7d{letter-spacing:-0.480000px;}
.ls9b{letter-spacing:-0.432000px;}
.ls81{letter-spacing:-0.420000px;}
.ls82{letter-spacing:-0.360000px;}
.ls60{letter-spacing:-0.336000px;}
.ls3b{letter-spacing:-0.300000px;}
.ls5f{letter-spacing:-0.288000px;}
.ls62{letter-spacing:-0.240000px;}
.lsab{letter-spacing:-0.192000px;}
.ls7a{letter-spacing:-0.180000px;}
.ls48{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls1a{letter-spacing:-0.096000px;}
.ls18{letter-spacing:-0.084000px;}
.ls1b{letter-spacing:-0.060000px;}
.ls4a{letter-spacing:-0.048000px;}
.ls19{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.006000px;}
.ls47{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.096000px;}
.ls12{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.180000px;}
.ls71{letter-spacing:0.192000px;}
.ls6{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.300000px;}
.ls54{letter-spacing:0.336000px;}
.ls25{letter-spacing:0.360000px;}
.ls49{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.420000px;}
.ls5a{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls92{letter-spacing:0.528000px;}
.ls36{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.600000px;}
.lsa0{letter-spacing:0.624000px;}
.ls17{letter-spacing:0.660000px;}
.ls97{letter-spacing:0.672000px;}
.ls4{letter-spacing:0.720000px;}
.ls84{letter-spacing:0.768000px;}
.lsd{letter-spacing:0.780000px;}
.ls56{letter-spacing:0.816000px;}
.ls3e{letter-spacing:0.840000px;}
.ls41{letter-spacing:0.864000px;}
.ls3f{letter-spacing:0.900000px;}
.ls98{letter-spacing:0.912000px;}
.ls1d{letter-spacing:0.960000px;}
.ls38{letter-spacing:1.008000px;}
.ls2f{letter-spacing:1.020000px;}
.ls7{letter-spacing:1.056000px;}
.ls6a{letter-spacing:1.080000px;}
.ls9c{letter-spacing:1.104000px;}
.ls2b{letter-spacing:1.140000px;}
.ls63{letter-spacing:1.200000px;}
.ls4c{letter-spacing:1.248000px;}
.ls15{letter-spacing:1.260000px;}
.ls4d{letter-spacing:1.296000px;}
.ls21{letter-spacing:1.320000px;}
.ls44{letter-spacing:1.344000px;}
.ls20{letter-spacing:1.380000px;}
.ls83{letter-spacing:1.392000px;}
.ls29{letter-spacing:1.440000px;}
.ls4f{letter-spacing:1.488000px;}
.ls2c{letter-spacing:1.500000px;}
.ls94{letter-spacing:1.536000px;}
.ls66{letter-spacing:1.560000px;}
.ls40{letter-spacing:1.584000px;}
.ls13{letter-spacing:1.620000px;}
.ls50{letter-spacing:1.632000px;}
.ls5d{letter-spacing:1.680000px;}
.ls4b{letter-spacing:1.728000px;}
.ls16{letter-spacing:1.740000px;}
.ls37{letter-spacing:1.776000px;}
.ls23{letter-spacing:1.800000px;}
.ls5e{letter-spacing:1.824000px;}
.ls3d{letter-spacing:1.860000px;}
.ls2{letter-spacing:1.872000px;}
.ls10{letter-spacing:1.920000px;}
.ls57{letter-spacing:1.968000px;}
.ls11{letter-spacing:1.980000px;}
.ls46{letter-spacing:2.016000px;}
.ls14{letter-spacing:2.040000px;}
.ls59{letter-spacing:2.064000px;}
.ls35{letter-spacing:2.100000px;}
.ls5c{letter-spacing:2.112000px;}
.ls27{letter-spacing:2.160000px;}
.ls85{letter-spacing:2.208000px;}
.ls1f{letter-spacing:2.220000px;}
.ls95{letter-spacing:2.256000px;}
.ls70{letter-spacing:2.280000px;}
.ls3a{letter-spacing:2.340000px;}
.lsa6{letter-spacing:2.352000px;}
.ls52{letter-spacing:2.400000px;}
.lsa4{letter-spacing:2.448000px;}
.ls75{letter-spacing:2.460000px;}
.lsa2{letter-spacing:2.496000px;}
.ls32{letter-spacing:2.520000px;}
.ls45{letter-spacing:2.544000px;}
.ls2d{letter-spacing:2.580000px;}
.ls93{letter-spacing:2.592000px;}
.ls42{letter-spacing:2.640000px;}
.lsa5{letter-spacing:2.688000px;}
.ls67{letter-spacing:2.700000px;}
.lsa3{letter-spacing:2.736000px;}
.ls8a{letter-spacing:2.760000px;}
.ls5b{letter-spacing:2.784000px;}
.ls78{letter-spacing:2.820000px;}
.ls91{letter-spacing:2.832000px;}
.lsc{letter-spacing:2.880000px;}
.ls90{letter-spacing:2.928000px;}
.ls22{letter-spacing:2.940000px;}
.ls9d{letter-spacing:2.976000px;}
.ls2a{letter-spacing:3.000000px;}
.ls61{letter-spacing:3.024000px;}
.ls58{letter-spacing:3.072000px;}
.ls69{letter-spacing:3.120000px;}
.ls8e{letter-spacing:3.168000px;}
.ls26{letter-spacing:3.180000px;}
.ls53{letter-spacing:3.216000px;}
.ls89{letter-spacing:3.300000px;}
.ls9f{letter-spacing:3.312000px;}
.ls31{letter-spacing:3.360000px;}
.ls55{letter-spacing:3.408000px;}
.ls8b{letter-spacing:3.420000px;}
.ls74{letter-spacing:3.456000px;}
.ls6c{letter-spacing:3.480000px;}
.ls24{letter-spacing:3.540000px;}
.ls68{letter-spacing:3.600000px;}
.ls51{letter-spacing:3.648000px;}
.ls65{letter-spacing:3.660000px;}
.lsa9{letter-spacing:3.696000px;}
.ls88{letter-spacing:3.720000px;}
.lsa1{letter-spacing:3.744000px;}
.ls1e{letter-spacing:3.780000px;}
.ls6f{letter-spacing:3.840000px;}
.ls6d{letter-spacing:3.900000px;}
.lsaa{letter-spacing:3.936000px;}
.ls33{letter-spacing:3.960000px;}
.ls77{letter-spacing:4.140000px;}
.ls6e{letter-spacing:4.200000px;}
.ls8f{letter-spacing:4.224000px;}
.ls6b{letter-spacing:4.260000px;}
.ls3c{letter-spacing:4.320000px;}
.ls7f{letter-spacing:4.440000px;}
.ls96{letter-spacing:4.464000px;}
.ls73{letter-spacing:4.608000px;}
.ls9e{letter-spacing:4.656000px;}
.ls30{letter-spacing:4.740000px;}
.ls86{letter-spacing:4.920000px;}
.ls34{letter-spacing:4.980000px;}
.ls80{letter-spacing:5.100000px;}
.ls72{letter-spacing:5.136000px;}
.ls4e{letter-spacing:5.184000px;}
.ls99{letter-spacing:5.340000px;}
.ls64{letter-spacing:5.460000px;}
.ls43{letter-spacing:6.000000px;}
.ls87{letter-spacing:6.300000px;}
.ls8d{letter-spacing:6.420000px;}
.lse{letter-spacing:6.660000px;}
.lsa7{letter-spacing:7.584000px;}
.ls76{letter-spacing:7.920000px;}
.ls8c{letter-spacing:305.952000px;}
.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;}
}
.ws6a{word-spacing:-48.000000px;}
.ws34{word-spacing:-21.000000px;}
.ws66{word-spacing:-20.520000px;}
.ws8c{word-spacing:-20.340000px;}
.ws91{word-spacing:-19.860000px;}
.ws68{word-spacing:-19.800000px;}
.ws69{word-spacing:-19.380000px;}
.ws8a{word-spacing:-19.080000px;}
.ws8d{word-spacing:-18.960000px;}
.ws90{word-spacing:-18.840000px;}
.ws35{word-spacing:-18.540000px;}
.wsab{word-spacing:-18.480000px;}
.ws92{word-spacing:-18.360000px;}
.ws8f{word-spacing:-18.120000px;}
.ws65{word-spacing:-17.940000px;}
.ws67{word-spacing:-17.880000px;}
.ws89{word-spacing:-17.760000px;}
.ws64{word-spacing:-17.520000px;}
.ws8e{word-spacing:-17.460000px;}
.ws33{word-spacing:-17.280000px;}
.wsea{word-spacing:-17.184000px;}
.ws1{word-spacing:-17.160000px;}
.ws95{word-spacing:-16.920000px;}
.ws94{word-spacing:-16.740000px;}
.ws1c{word-spacing:-16.680000px;}
.wsaa{word-spacing:-16.620000px;}
.wsfa{word-spacing:-16.272000px;}
.ws93{word-spacing:-16.200000px;}
.wse7{word-spacing:-15.360000px;}
.ws7f{word-spacing:-14.640000px;}
.wse6{word-spacing:-14.544000px;}
.wse8{word-spacing:-14.400000px;}
.wsf8{word-spacing:-14.352000px;}
.wsd3{word-spacing:-14.112000px;}
.ws80{word-spacing:-14.064000px;}
.wsf9{word-spacing:-13.920000px;}
.wsd2{word-spacing:-13.680000px;}
.ws8b{word-spacing:-13.620000px;}
.wsd1{word-spacing:-13.584000px;}
.ws36{word-spacing:-13.344000px;}
.wsf6{word-spacing:-13.296000px;}
.wsf7{word-spacing:-13.152000px;}
.ws96{word-spacing:-11.160000px;}
.ws0{word-spacing:-11.008800px;}
.wsd0{word-spacing:-10.704000px;}
.wse9{word-spacing:-9.792000px;}
.ws43{word-spacing:-6.000000px;}
.ws6c{word-spacing:-5.460000px;}
.wsd5{word-spacing:-5.340000px;}
.ws4f{word-spacing:-5.184000px;}
.ws82{word-spacing:-5.136000px;}
.ws2d{word-spacing:-4.740000px;}
.ws84{word-spacing:-4.608000px;}
.wse4{word-spacing:-4.464000px;}
.wsb4{word-spacing:-4.440000px;}
.ws37{word-spacing:-4.320000px;}
.wsd9{word-spacing:-4.224000px;}
.ws78{word-spacing:-4.200000px;}
.ws100{word-spacing:-3.936000px;}
.ws77{word-spacing:-3.900000px;}
.ws88{word-spacing:-3.840000px;}
.ws1f{word-spacing:-3.780000px;}
.wsf1{word-spacing:-3.744000px;}
.ws6f{word-spacing:-3.660000px;}
.ws52{word-spacing:-3.648000px;}
.ws73{word-spacing:-3.600000px;}
.ws22{word-spacing:-3.540000px;}
.ws86{word-spacing:-3.456000px;}
.ws56{word-spacing:-3.408000px;}
.ws40{word-spacing:-3.360000px;}
.wsee{word-spacing:-3.312000px;}
.ws54{word-spacing:-3.216000px;}
.wsa0{word-spacing:-3.180000px;}
.wsd7{word-spacing:-3.168000px;}
.ws74{word-spacing:-3.120000px;}
.ws5a{word-spacing:-3.072000px;}
.ws61{word-spacing:-3.024000px;}
.ws28{word-spacing:-3.000000px;}
.wseb{word-spacing:-2.976000px;}
.ws3a{word-spacing:-2.940000px;}
.wsda{word-spacing:-2.928000px;}
.wsdb{word-spacing:-2.880000px;}
.wsdc{word-spacing:-2.832000px;}
.wsa5{word-spacing:-2.820000px;}
.ws5e{word-spacing:-2.784000px;}
.wsfe{word-spacing:-2.736000px;}
.ws72{word-spacing:-2.700000px;}
.ws42{word-spacing:-2.640000px;}
.wse1{word-spacing:-2.592000px;}
.wsa4{word-spacing:-2.580000px;}
.ws45{word-spacing:-2.544000px;}
.ws6d{word-spacing:-2.520000px;}
.wsf2{word-spacing:-2.496000px;}
.ws9a{word-spacing:-2.460000px;}
.wsf3{word-spacing:-2.448000px;}
.ws53{word-spacing:-2.400000px;}
.wsf4{word-spacing:-2.352000px;}
.ws2c{word-spacing:-2.340000px;}
.ws7b{word-spacing:-2.280000px;}
.wse3{word-spacing:-2.256000px;}
.ws27{word-spacing:-2.220000px;}
.wsc7{word-spacing:-2.208000px;}
.ws55{word-spacing:-2.160000px;}
.ws60{word-spacing:-2.112000px;}
.ws5b{word-spacing:-2.064000px;}
.ws1e{word-spacing:-2.040000px;}
.ws46{word-spacing:-2.016000px;}
.wsa8{word-spacing:-1.980000px;}
.ws59{word-spacing:-1.968000px;}
.wsae{word-spacing:-1.920000px;}
.ws57{word-spacing:-1.872000px;}
.ws38{word-spacing:-1.860000px;}
.ws63{word-spacing:-1.824000px;}
.ws21{word-spacing:-1.800000px;}
.ws31{word-spacing:-1.776000px;}
.ws1a{word-spacing:-1.740000px;}
.ws4b{word-spacing:-1.728000px;}
.ws62{word-spacing:-1.680000px;}
.ws51{word-spacing:-1.632000px;}
.ws9d{word-spacing:-1.620000px;}
.ws3e{word-spacing:-1.584000px;}
.ws71{word-spacing:-1.560000px;}
.wsf5{word-spacing:-1.536000px;}
.wsb3{word-spacing:-1.500000px;}
.ws50{word-spacing:-1.488000px;}
.ws49{word-spacing:-1.440000px;}
.wsc5{word-spacing:-1.392000px;}
.ws44{word-spacing:-1.344000px;}
.wscf{word-spacing:-1.320000px;}
.ws4e{word-spacing:-1.296000px;}
.ws18{word-spacing:-1.260000px;}
.ws4c{word-spacing:-1.248000px;}
.ws6b{word-spacing:-1.200000px;}
.ws3{word-spacing:-1.188000px;}
.ws2a{word-spacing:-1.140000px;}
.wse0{word-spacing:-1.104000px;}
.ws75{word-spacing:-1.080000px;}
.ws41{word-spacing:-1.056000px;}
.ws9e{word-spacing:-1.020000px;}
.ws32{word-spacing:-1.008000px;}
.ws1d{word-spacing:-0.960000px;}
.wsff{word-spacing:-0.912000px;}
.wsa9{word-spacing:-0.900000px;}
.ws11{word-spacing:-0.864000px;}
.ws39{word-spacing:-0.840000px;}
.ws58{word-spacing:-0.816000px;}
.ws13{word-spacing:-0.780000px;}
.wsc6{word-spacing:-0.768000px;}
.ws8{word-spacing:-0.720000px;}
.wse5{word-spacing:-0.672000px;}
.ws15{word-spacing:-0.660000px;}
.wsf0{word-spacing:-0.624000px;}
.ws29{word-spacing:-0.600000px;}
.wse{word-spacing:-0.576000px;}
.wsa7{word-spacing:-0.540000px;}
.wsde{word-spacing:-0.528000px;}
.ws2b{word-spacing:-0.480000px;}
.ws5d{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.420000px;}
.ws3f{word-spacing:-0.384000px;}
.ws23{word-spacing:-0.360000px;}
.ws4d{word-spacing:-0.336000px;}
.ws7a{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.288000px;}
.wsb{word-spacing:-0.240000px;}
.ws83{word-spacing:-0.192000px;}
.ws2f{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.120000px;}
.wse2{word-spacing:-0.096000px;}
.ws3b{word-spacing:-0.060000px;}
.ws48{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws47{word-spacing:0.048000px;}
.ws2e{word-spacing:0.060000px;}
.wsa{word-spacing:0.096000px;}
.ws19{word-spacing:0.120000px;}
.ws3d{word-spacing:0.144000px;}
.ws9b{word-spacing:0.180000px;}
.ws101{word-spacing:0.192000px;}
.ws70{word-spacing:0.240000px;}
.ws5c{word-spacing:0.288000px;}
.ws30{word-spacing:0.300000px;}
.ws5f{word-spacing:0.336000px;}
.wscc{word-spacing:0.360000px;}
.ws9f{word-spacing:0.420000px;}
.wsdd{word-spacing:0.432000px;}
.ws6{word-spacing:0.480000px;}
.wsb2{word-spacing:0.600000px;}
.wsfc{word-spacing:0.624000px;}
.ws98{word-spacing:0.780000px;}
.wsfb{word-spacing:0.816000px;}
.wsbb{word-spacing:0.840000px;}
.wsdf{word-spacing:0.864000px;}
.ws20{word-spacing:0.900000px;}
.ws79{word-spacing:1.020000px;}
.ws10{word-spacing:1.152000px;}
.wsc{word-spacing:1.248000px;}
.wsd4{word-spacing:1.380000px;}
.wsd8{word-spacing:1.392000px;}
.wsb1{word-spacing:1.440000px;}
.wscd{word-spacing:1.560000px;}
.wsb8{word-spacing:1.620000px;}
.wsaf{word-spacing:1.680000px;}
.ws97{word-spacing:1.800000px;}
.wsac{word-spacing:2.100000px;}
.ws4{word-spacing:2.112000px;}
.wsad{word-spacing:2.160000px;}
.wsb5{word-spacing:2.280000px;}
.wsef{word-spacing:2.304000px;}
.wsa6{word-spacing:2.400000px;}
.ws25{word-spacing:2.460000px;}
.wsb7{word-spacing:2.580000px;}
.wsb6{word-spacing:2.640000px;}
.wsed{word-spacing:2.736000px;}
.ws1b{word-spacing:2.880000px;}
.ws7c{word-spacing:3.000000px;}
.ws4a{word-spacing:3.120000px;}
.wsd6{word-spacing:3.168000px;}
.ws85{word-spacing:3.456000px;}
.wsd{word-spacing:3.504000px;}
.wsce{word-spacing:3.600000px;}
.wsfd{word-spacing:3.648000px;}
.ws3c{word-spacing:3.660000px;}
.wsba{word-spacing:3.720000px;}
.ws103{word-spacing:3.744000px;}
.ws87{word-spacing:3.840000px;}
.ws102{word-spacing:3.888000px;}
.ws7e{word-spacing:3.900000px;}
.ws26{word-spacing:4.140000px;}
.wsf{word-spacing:4.368000px;}
.ws5{word-spacing:4.416000px;}
.ws24{word-spacing:4.500000px;}
.ws76{word-spacing:4.620000px;}
.ws9c{word-spacing:4.680000px;}
.wsb9{word-spacing:4.980000px;}
.ws6e{word-spacing:5.040000px;}
.ws7d{word-spacing:5.220000px;}
.ws99{word-spacing:5.280000px;}
.ws16{word-spacing:5.460000px;}
.ws12{word-spacing:5.520000px;}
.wsa2{word-spacing:5.760000px;}
.wsa1{word-spacing:6.000000px;}
.wsec{word-spacing:7.392000px;}
.wsa3{word-spacing:8.040000px;}
.wsb0{word-spacing:8.640000px;}
.wscb{word-spacing:279.264000px;}
.wsc9{word-spacing:319.200000px;}
.wsbf{word-spacing:394.368000px;}
.wsbc{word-spacing:426.336000px;}
.wsc1{word-spacing:426.384000px;}
.wsbd{word-spacing:450.336000px;}
.wsc4{word-spacing:474.384000px;}
.wsc2{word-spacing:485.088000px;}
.wsca{word-spacing:499.248000px;}
.wsc3{word-spacing:509.088000px;}
.wsbe{word-spacing:527.712000px;}
.wsc0{word-spacing:527.760000px;}
.wsc8{word-spacing:622.320000px;}
.ws81{word-spacing:656.787000px;}
._e{margin-left:-2898.126000px;}
._19{margin-left:-2874.309000px;}
._3{margin-left:-7.260000px;}
._8{margin-left:-5.760000px;}
._1{margin-left:-4.620000px;}
._0{margin-left:-3.108000px;}
._c{margin-left:-2.100000px;}
._4{margin-left:-1.092000px;}
._2{width:1.299000px;}
._7{width:2.448000px;}
._21{width:3.504000px;}
._5{width:4.512000px;}
._6{width:5.664000px;}
._9{width:6.936000px;}
._a{width:8.004000px;}
._b{width:9.480000px;}
._d{width:11.040000px;}
._30{width:28.848000px;}
._1d{width:33.408000px;}
._4c{width:34.896000px;}
._24{width:45.372000px;}
._25{width:46.596000px;}
._2b{width:48.720000px;}
._1f{width:53.436000px;}
._20{width:54.480000px;}
._2a{width:72.816000px;}
._4d{width:77.568000px;}
._15{width:81.168000px;}
._18{width:82.512000px;}
._1e{width:96.012000px;}
._22{width:98.700000px;}
._12{width:100.176000px;}
._13{width:109.200000px;}
._26{width:110.532000px;}
._3d{width:112.260000px;}
._29{width:115.812000px;}
._23{width:137.232000px;}
._1c{width:144.768000px;}
._1a{width:153.216000px;}
._28{width:166.452000px;}
._33{width:171.456000px;}
._35{width:173.424000px;}
._3e{width:176.196000px;}
._14{width:179.904000px;}
._27{width:193.236000px;}
._10{width:213.408000px;}
._45{width:227.604000px;}
._4f{width:247.776000px;}
._40{width:255.600000px;}
._51{width:293.509200px;}
._3b{width:301.008000px;}
._54{width:305.952000px;}
._3f{width:346.368000px;}
._39{width:351.696000px;}
._49{width:390.240000px;}
._44{width:404.976000px;}
._48{width:419.520000px;}
._37{width:442.836000px;}
._16{width:454.272000px;}
._3c{width:464.340000px;}
._2f{width:473.328000px;}
._32{width:485.088000px;}
._46{width:488.880000px;}
._31{width:491.028000px;}
._1b{width:507.600000px;}
._f{width:511.440000px;}
._4b{width:512.448000px;}
._4e{width:524.364000px;}
._11{width:525.984000px;}
._52{width:532.656000px;}
._53{width:539.280000px;}
._17{width:582.336000px;}
._58{width:588.192000px;}
._50{width:607.296000px;}
._2e{width:608.448000px;}
._2d{width:675.370800px;}
._2c{width:676.935000px;}
._56{width:681.552000px;}
._57{width:705.504000px;}
._55{width:764.688000px;}
._47{width:800.784000px;}
._4a{width:859.680000px;}
._43{width:869.952000px;}
._41{width:872.544000px;}
._3a{width:889.092000px;}
._34{width:899.328000px;}
._36{width:901.920000px;}
._38{width:918.432000px;}
._42{width:920.544000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.800000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:49.693267px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:76.167900px;}
.y239{bottom:79.796700px;}
.y2bb{bottom:79.938300px;}
.y27a{bottom:79.940700px;}
.y155{bottom:82.606500px;}
.y10d{bottom:82.654350px;}
.y69{bottom:82.913700px;}
.y10e{bottom:82.916550px;}
.y10c{bottom:82.922550px;}
.y5c{bottom:83.363850px;}
.y153{bottom:83.367600px;}
.y2a{bottom:83.493900px;}
.y177{bottom:83.513850px;}
.y1ab{bottom:83.528850px;}
.y124{bottom:85.435800px;}
.y125{bottom:85.698000px;}
.y123{bottom:85.704000px;}
.y9f{bottom:92.667900px;}
.y203{bottom:93.313950px;}
.y238{bottom:94.796700px;}
.y2ba{bottom:94.938300px;}
.y279{bottom:94.940700px;}
.y154{bottom:98.350500px;}
.y10a{bottom:98.404350px;}
.y68{bottom:98.657700px;}
.y10b{bottom:98.666550px;}
.y109{bottom:98.669400px;}
.y121{bottom:101.185800px;}
.y5b{bottom:101.363850px;}
.y152{bottom:101.367600px;}
.y122{bottom:101.448000px;}
.y120{bottom:101.454000px;}
.y176{bottom:101.513850px;}
.y1aa{bottom:101.528850px;}
.y1e3{bottom:107.374200px;}
.y9e{bottom:109.167900px;}
.y202{bottom:109.561950px;}
.y237{bottom:109.796700px;}
.y2b9{bottom:109.938300px;}
.y278{bottom:109.940700px;}
.y67{bottom:114.401700px;}
.y11e{bottom:116.935800px;}
.y11f{bottom:117.198000px;}
.y11d{bottom:117.204000px;}
.y5a{bottom:119.363850px;}
.y151{bottom:119.367600px;}
.y175{bottom:119.513850px;}
.y1a9{bottom:119.528850px;}
.y1e2{bottom:123.622200px;}
.y236{bottom:124.796700px;}
.y2b8{bottom:124.938300px;}
.y277{bottom:124.940700px;}
.y9d{bottom:125.667900px;}
.y201{bottom:125.809950px;}
.y107{bottom:129.046200px;}
.y11b{bottom:132.685800px;}
.y11c{bottom:132.948000px;}
.y11a{bottom:132.954000px;}
.y59{bottom:137.363850px;}
.y150{bottom:137.367600px;}
.y174{bottom:137.513850px;}
.y1a8{bottom:137.528850px;}
.y235{bottom:139.796700px;}
.y1e1{bottom:139.870200px;}
.y2b7{bottom:139.938300px;}
.y276{bottom:139.940700px;}
.y200{bottom:142.057950px;}
.y9c{bottom:142.167900px;}
.y19{bottom:146.475900px;}
.y118{bottom:148.435800px;}
.y117{bottom:148.692000px;}
.y119{bottom:148.698000px;}
.y106{bottom:154.558200px;}
.y234{bottom:154.796700px;}
.y2b6{bottom:154.938300px;}
.y275{bottom:154.940700px;}
.y58{bottom:155.363850px;}
.y14f{bottom:155.367600px;}
.y173{bottom:155.513850px;}
.y1a7{bottom:155.528850px;}
.y1e0{bottom:156.118200px;}
.y1ff{bottom:158.305950px;}
.y9b{bottom:158.667900px;}
.y115{bottom:164.185800px;}
.y116{bottom:164.448000px;}
.y114{bottom:164.454000px;}
.yd5{bottom:164.926200px;}
.y233{bottom:169.796700px;}
.y2b5{bottom:169.938300px;}
.y274{bottom:169.940700px;}
.y105{bottom:171.058200px;}
.y1df{bottom:172.366200px;}
.y57{bottom:173.363850px;}
.y14e{bottom:173.367600px;}
.y172{bottom:173.513850px;}
.y1a6{bottom:173.528850px;}
.y1fe{bottom:174.553950px;}
.y9a{bottom:174.915900px;}
.y112{bottom:179.935800px;}
.y113{bottom:180.198000px;}
.y111{bottom:180.201000px;}
.yd4{bottom:181.426200px;}
.y232{bottom:184.796700px;}
.y2b4{bottom:184.938300px;}
.y273{bottom:184.940700px;}
.y104{bottom:187.306200px;}
.y1de{bottom:188.614200px;}
.y1fd{bottom:190.801950px;}
.y99{bottom:191.175900px;}
.y56{bottom:191.363850px;}
.y14d{bottom:191.367600px;}
.y171{bottom:191.513850px;}
.y1a5{bottom:191.528850px;}
.yd3{bottom:197.926200px;}
.y231{bottom:199.796700px;}
.y2b3{bottom:199.938300px;}
.y272{bottom:199.940700px;}
.y103{bottom:203.806200px;}
.y1dd{bottom:205.114200px;}
.y98{bottom:207.423900px;}
.y55{bottom:209.363850px;}
.y26{bottom:209.367600px;}
.y170{bottom:209.513850px;}
.y1a4{bottom:209.528850px;}
.yd2{bottom:214.426200px;}
.y230{bottom:214.796700px;}
.y2b2{bottom:214.938300px;}
.y271{bottom:214.940700px;}
.y102{bottom:220.306200px;}
.y1dc{bottom:221.362200px;}
.y1fc{bottom:222.313950px;}
.y97{bottom:223.671900px;}
.y54{bottom:227.363850px;}
.y25{bottom:227.367600px;}
.y16f{bottom:227.513850px;}
.y1a3{bottom:227.528850px;}
.y22f{bottom:229.796700px;}
.y2b1{bottom:229.938300px;}
.y270{bottom:229.940700px;}
.yd1{bottom:230.674200px;}
.y101{bottom:236.554200px;}
.y1db{bottom:237.610200px;}
.y96{bottom:239.931900px;}
.y22e{bottom:244.796700px;}
.y2b0{bottom:244.938300px;}
.y26f{bottom:244.940700px;}
.y53{bottom:245.363850px;}
.y24{bottom:245.367600px;}
.y16e{bottom:245.513850px;}
.y1a2{bottom:245.528850px;}
.yd0{bottom:247.174200px;}
.y100{bottom:253.054200px;}
.y110{bottom:253.860600px;}
.y1da{bottom:254.110200px;}
.y95{bottom:256.431900px;}
.y1fb{bottom:257.138850px;}
.y22d{bottom:259.796700px;}
.y2af{bottom:259.938300px;}
.y26e{bottom:259.940700px;}
.y52{bottom:263.363850px;}
.y23{bottom:263.367600px;}
.y16d{bottom:263.513850px;}
.y1a1{bottom:263.528850px;}
.ycf{bottom:263.674200px;}
.yff{bottom:269.302200px;}
.y1d9{bottom:270.610200px;}
.y94{bottom:272.679900px;}
.y22c{bottom:274.796700px;}
.y2ae{bottom:274.938300px;}
.y26d{bottom:274.940700px;}
.yce{bottom:280.174200px;}
.y51{bottom:281.363850px;}
.y22{bottom:281.367600px;}
.y16c{bottom:281.513850px;}
.y1a0{bottom:281.528850px;}
.yfe{bottom:285.802200px;}
.y1d8{bottom:286.858200px;}
.y93{bottom:289.179900px;}
.y22b{bottom:289.796700px;}
.y2ad{bottom:289.938300px;}
.y26c{bottom:289.940700px;}
.ycd{bottom:296.674200px;}
.y50{bottom:299.363850px;}
.y21{bottom:299.367600px;}
.y16b{bottom:299.513850px;}
.y19f{bottom:299.528850px;}
.y12c{bottom:302.220750px;}
.yfd{bottom:302.302200px;}
.y1d7{bottom:303.106200px;}
.y22a{bottom:304.796700px;}
.y2ac{bottom:304.938300px;}
.y26b{bottom:304.940700px;}
.y92{bottom:305.679900px;}
.ycc{bottom:312.922200px;}
.y1fa{bottom:317.228850px;}
.y4f{bottom:317.363850px;}
.y20{bottom:317.367600px;}
.y16a{bottom:317.513850px;}
.y19e{bottom:317.528850px;}
.yfc{bottom:318.802200px;}
.y1d6{bottom:319.606200px;}
.y229{bottom:319.796700px;}
.y2ab{bottom:319.938300px;}
.y26a{bottom:319.940700px;}
.y91{bottom:322.179900px;}
.ycb{bottom:329.422200px;}
.y228{bottom:334.796700px;}
.y2aa{bottom:334.938300px;}
.y269{bottom:334.940700px;}
.y1f9{bottom:335.228850px;}
.yfb{bottom:335.302200px;}
.y4e{bottom:335.363850px;}
.y1f{bottom:335.367600px;}
.y169{bottom:335.513850px;}
.y19d{bottom:335.528850px;}
.y1d4{bottom:335.854200px;}
.y1d5{bottom:336.106200px;}
.y90{bottom:338.427900px;}
.y6b{bottom:345.592800px;}
.yca{bottom:345.922200px;}
.y227{bottom:349.796700px;}
.y2a9{bottom:349.938300px;}
.y268{bottom:349.940700px;}
.yfa{bottom:351.802200px;}
.y1d3{bottom:352.354200px;}
.y1f8{bottom:353.228850px;}
.y1e8{bottom:353.363850px;}
.y1e{bottom:353.367600px;}
.y168{bottom:353.513850px;}
.y19c{bottom:353.528850px;}
.y8f{bottom:354.675900px;}
.yc9{bottom:362.422200px;}
.y226{bottom:364.796700px;}
.y2a8{bottom:364.938300px;}
.y267{bottom:364.940700px;}
.yf9{bottom:368.302200px;}
.y1d2{bottom:368.602200px;}
.y8e{bottom:371.175900px;}
.y1f7{bottom:371.228850px;}
.y4d{bottom:371.363850px;}
.y1d{bottom:371.367600px;}
.y167{bottom:371.513850px;}
.y19b{bottom:371.528850px;}
.yc8{bottom:378.922200px;}
.y225{bottom:379.796700px;}
.y2a7{bottom:379.938300px;}
.y266{bottom:379.940700px;}
.yf8{bottom:384.550200px;}
.y1d1{bottom:384.850200px;}
.y8d{bottom:387.675900px;}
.y1f6{bottom:389.228850px;}
.y1e7{bottom:389.363850px;}
.y1c{bottom:389.367600px;}
.y166{bottom:389.513850px;}
.y19a{bottom:389.528850px;}
.y224{bottom:394.796700px;}
.y2a6{bottom:394.938300px;}
.y265{bottom:394.940700px;}
.yc7{bottom:395.170200px;}
.y10f{bottom:400.548600px;}
.yf7{bottom:401.050200px;}
.y1d0{bottom:401.098200px;}
.y8c{bottom:403.923900px;}
.y4c{bottom:407.228850px;}
.y1e6{bottom:407.363850px;}
.y1b{bottom:407.367600px;}
.y165{bottom:407.513850px;}
.y199{bottom:407.528850px;}
.y223{bottom:409.796700px;}
.y2a5{bottom:409.938300px;}
.y264{bottom:409.940700px;}
.yc6{bottom:411.670200px;}
.y1cf{bottom:417.346200px;}
.yf6{bottom:417.550200px;}
.y8b{bottom:420.423900px;}
.y2a4{bottom:424.938300px;}
.y263{bottom:424.940700px;}
.y1f5{bottom:425.228850px;}
.y1e5{bottom:425.363850px;}
.y27{bottom:425.367600px;}
.y164{bottom:425.513850px;}
.y198{bottom:425.528850px;}
.y12b{bottom:425.532750px;}
.yc5{bottom:428.170200px;}
.y1ce{bottom:433.846200px;}
.yf5{bottom:434.050200px;}
.y8a{bottom:436.923900px;}
.y2a3{bottom:439.938300px;}
.y262{bottom:439.940700px;}
.y1f4{bottom:443.228850px;}
.y222{bottom:443.229000px;}
.y1e4{bottom:443.363850px;}
.y1a{bottom:443.367600px;}
.y163{bottom:443.513850px;}
.y197{bottom:443.528850px;}
.yc4{bottom:444.670200px;}
.y1cd{bottom:450.094200px;}
.yf4{bottom:450.298200px;}
.y89{bottom:453.171900px;}
.y2a2{bottom:454.938300px;}
.y261{bottom:454.940700px;}
.yc3{bottom:461.170200px;}
.y1f3{bottom:461.228850px;}
.y4b{bottom:461.363850px;}
.y14c{bottom:461.367600px;}
.y162{bottom:461.513850px;}
.y196{bottom:461.528850px;}
.y1cc{bottom:466.342200px;}
.yf3{bottom:466.798200px;}
.y88{bottom:469.671900px;}
.y2a1{bottom:469.938300px;}
.y260{bottom:469.940700px;}
.yc2{bottom:477.418200px;}
.y1f2{bottom:479.228850px;}
.y4a{bottom:479.363850px;}
.y14b{bottom:479.367600px;}
.y161{bottom:479.513850px;}
.y195{bottom:479.528850px;}
.y1cb{bottom:482.842200px;}
.yf2{bottom:483.298200px;}
.y2a0{bottom:484.938300px;}
.y25f{bottom:484.940700px;}
.y87{bottom:486.171900px;}
.yc1{bottom:493.918200px;}
.y1f1{bottom:497.228850px;}
.y49{bottom:497.363850px;}
.y221{bottom:497.364000px;}
.y14a{bottom:497.367600px;}
.y160{bottom:497.513850px;}
.y194{bottom:497.528850px;}
.y1ca{bottom:499.342200px;}
.yf1{bottom:499.798200px;}
.y29f{bottom:499.938300px;}
.y25e{bottom:499.940700px;}
.y86{bottom:502.671900px;}
.y18{bottom:509.055900px;}
.yc0{bottom:510.418200px;}
.y29e{bottom:514.938300px;}
.y25d{bottom:514.940700px;}
.y1f0{bottom:515.228850px;}
.y48{bottom:515.363850px;}
.y220{bottom:515.364000px;}
.y149{bottom:515.367600px;}
.y15f{bottom:515.513850px;}
.y193{bottom:515.528850px;}
.y1c9{bottom:515.590200px;}
.yf0{bottom:516.046200px;}
.y85{bottom:519.171900px;}
.ybf{bottom:526.918200px;}
.y29d{bottom:529.938300px;}
.y25c{bottom:529.940700px;}
.y1c8{bottom:531.838200px;}
.yef{bottom:532.294200px;}
.y1ef{bottom:533.228850px;}
.y47{bottom:533.363850px;}
.y21f{bottom:533.364000px;}
.y148{bottom:533.367600px;}
.y15e{bottom:533.513850px;}
.y192{bottom:533.528850px;}
.y84{bottom:535.419900px;}
.y17{bottom:541.911900px;}
.ybe{bottom:543.418200px;}
.y29c{bottom:544.938300px;}
.y25b{bottom:544.940700px;}
.y12a{bottom:547.776750px;}
.y1c7{bottom:548.086200px;}
.yee{bottom:548.794200px;}
.y108{bottom:551.228850px;}
.y46{bottom:551.363850px;}
.y21e{bottom:551.364000px;}
.y147{bottom:551.367600px;}
.y15d{bottom:551.513850px;}
.y191{bottom:551.528850px;}
.y83{bottom:551.667900px;}
.y16{bottom:556.911900px;}
.ybd{bottom:559.918200px;}
.y29b{bottom:559.938300px;}
.y25a{bottom:559.940700px;}
.y1c6{bottom:564.334200px;}
.yed{bottom:565.042200px;}
.y1ee{bottom:569.228850px;}
.y45{bottom:569.363850px;}
.y21d{bottom:569.364000px;}
.y146{bottom:569.367600px;}
.y15c{bottom:569.513850px;}
.y190{bottom:569.528850px;}
.y15{bottom:571.911900px;}
.y29a{bottom:574.938300px;}
.y259{bottom:574.940700px;}
.ybc{bottom:576.418200px;}
.y1c5{bottom:580.834200px;}
.y82{bottom:581.055900px;}
.yec{bottom:581.542200px;}
.y14{bottom:586.911900px;}
.y1ed{bottom:587.228850px;}
.y44{bottom:587.363850px;}
.y21c{bottom:587.364000px;}
.y145{bottom:587.367600px;}
.y15b{bottom:587.513850px;}
.y18f{bottom:587.528850px;}
.y81{bottom:589.311900px;}
.y299{bottom:589.938300px;}
.y258{bottom:589.940700px;}
.ybb{bottom:592.918200px;}
.y1c4{bottom:597.082200px;}
.yeb{bottom:598.042200px;}
.y13{bottom:601.911900px;}
.y298{bottom:604.938300px;}
.y257{bottom:604.940700px;}
.y1ec{bottom:605.228850px;}
.y43{bottom:605.363850px;}
.y21b{bottom:605.364000px;}
.y144{bottom:605.367600px;}
.y15a{bottom:605.513850px;}
.y18e{bottom:605.528850px;}
.y6a{bottom:608.788800px;}
.yba{bottom:609.166200px;}
.y1c3{bottom:613.330200px;}
.yea{bottom:614.542200px;}
.y12{bottom:616.911900px;}
.y297{bottom:619.938300px;}
.y256{bottom:619.940700px;}
.y1eb{bottom:623.228850px;}
.y42{bottom:623.363850px;}
.y21a{bottom:623.364000px;}
.y143{bottom:623.367600px;}
.y159{bottom:623.513850px;}
.y18d{bottom:623.528850px;}
.yb9{bottom:625.666200px;}
.y1c2{bottom:629.578200px;}
.y80{bottom:629.877600px;}
.ye9{bottom:631.042200px;}
.y11{bottom:631.911900px;}
.y296{bottom:634.938300px;}
.y255{bottom:634.940700px;}
.y1ea{bottom:641.228850px;}
.y41{bottom:641.363850px;}
.y219{bottom:641.364000px;}
.y142{bottom:641.367600px;}
.y158{bottom:641.513850px;}
.yb8{bottom:642.166200px;}
.y1c1{bottom:645.826200px;}
.y10{bottom:646.911900px;}
.ye8{bottom:647.542200px;}
.y7f{bottom:649.377600px;}
.y295{bottom:649.938300px;}
.y254{bottom:649.940700px;}
.yb7{bottom:658.666200px;}
.y40{bottom:659.363850px;}
.y218{bottom:659.364000px;}
.y141{bottom:659.367600px;}
.y66{bottom:659.513850px;}
.y18c{bottom:659.528850px;}
.yf{bottom:661.911900px;}
.y1c0{bottom:662.074200px;}
.ye7{bottom:663.790200px;}
.y294{bottom:664.938300px;}
.y253{bottom:664.940700px;}
.y129{bottom:670.872750px;}
.yb6{bottom:675.166200px;}
.ye{bottom:676.911900px;}
.y1e9{bottom:677.228850px;}
.y3f{bottom:677.363850px;}
.y217{bottom:677.364000px;}
.y140{bottom:677.367600px;}
.y65{bottom:677.513850px;}
.y1bf{bottom:678.574200px;}
.y293{bottom:679.938300px;}
.y252{bottom:679.940700px;}
.ye6{bottom:680.290200px;}
.yb5{bottom:691.414200px;}
.yd{bottom:691.911900px;}
.y1be{bottom:694.822200px;}
.y292{bottom:694.938300px;}
.y251{bottom:694.940700px;}
.y3e{bottom:695.363850px;}
.y216{bottom:695.364000px;}
.y13f{bottom:695.367600px;}
.y18b{bottom:695.378850px;}
.y7e{bottom:695.502600px;}
.y64{bottom:695.513850px;}
.ye5{bottom:696.790200px;}
.ya2{bottom:697.467900px;}
.yc{bottom:706.911900px;}
.yb4{bottom:707.914200px;}
.y291{bottom:709.938300px;}
.y250{bottom:709.940700px;}
.y1bd{bottom:711.070200px;}
.ye4{bottom:713.038200px;}
.ya1{bottom:713.211900px;}
.y3d{bottom:713.363850px;}
.y215{bottom:713.364000px;}
.y13e{bottom:713.367600px;}
.y18a{bottom:713.378850px;}
.y7d{bottom:713.502600px;}
.y63{bottom:713.513850px;}
.yb{bottom:721.911900px;}
.yb3{bottom:724.162200px;}
.y290{bottom:724.938300px;}
.y24f{bottom:724.940700px;}
.y1bc{bottom:727.318200px;}
.ye3{bottom:729.538200px;}
.y3c{bottom:731.363850px;}
.y214{bottom:731.364000px;}
.y13d{bottom:731.367600px;}
.y189{bottom:731.378850px;}
.y7c{bottom:731.502600px;}
.y62{bottom:731.513850px;}
.ya{bottom:736.911900px;}
.y28f{bottom:739.938300px;}
.y24e{bottom:739.940700px;}
.yb2{bottom:740.662200px;}
.y1bb{bottom:743.566200px;}
.ye2{bottom:746.038200px;}
.y3b{bottom:749.363850px;}
.y213{bottom:749.364000px;}
.y13c{bottom:749.367600px;}
.y188{bottom:749.378850px;}
.y7b{bottom:749.502600px;}
.y61{bottom:749.513850px;}
.y28e{bottom:754.938300px;}
.y24d{bottom:754.940700px;}
.yb1{bottom:756.910200px;}
.y1ba{bottom:759.814200px;}
.ye1{bottom:762.538200px;}
.y3a{bottom:767.363850px;}
.y212{bottom:767.364000px;}
.y13b{bottom:767.367600px;}
.y187{bottom:767.378850px;}
.y7a{bottom:767.502600px;}
.y60{bottom:767.513850px;}
.y28d{bottom:769.938300px;}
.y24c{bottom:769.940700px;}
.yb0{bottom:773.410200px;}
.y1b9{bottom:776.062200px;}
.ye0{bottom:779.038200px;}
.y28c{bottom:784.938300px;}
.y24b{bottom:784.940700px;}
.y39{bottom:785.363850px;}
.y211{bottom:785.364000px;}
.y13a{bottom:785.367600px;}
.y186{bottom:785.378850px;}
.y79{bottom:785.502600px;}
.y5f{bottom:785.513850px;}
.y9{bottom:785.655900px;}
.yaf{bottom:789.910200px;}
.y128{bottom:792.264750px;}
.y1b8{bottom:792.310200px;}
.ydf{bottom:795.538200px;}
.y28b{bottom:799.938300px;}
.y24a{bottom:799.940700px;}
.y38{bottom:803.363850px;}
.y210{bottom:803.364000px;}
.y139{bottom:803.367600px;}
.y185{bottom:803.378850px;}
.y78{bottom:803.502600px;}
.y5e{bottom:803.513850px;}
.yae{bottom:806.158200px;}
.y1b7{bottom:808.558200px;}
.yde{bottom:812.038200px;}
.y28a{bottom:814.938300px;}
.y249{bottom:814.940700px;}
.y37{bottom:821.363850px;}
.y20f{bottom:821.364000px;}
.y138{bottom:821.367600px;}
.y184{bottom:821.378850px;}
.y77{bottom:821.502600px;}
.y157{bottom:821.513850px;}
.yad{bottom:822.658200px;}
.y8{bottom:824.273850px;}
.y1b6{bottom:824.806200px;}
.ydd{bottom:828.286200px;}
.y289{bottom:829.938300px;}
.y248{bottom:829.940700px;}
.yac{bottom:839.158200px;}
.y36{bottom:839.363850px;}
.y20e{bottom:839.364000px;}
.y137{bottom:839.367600px;}
.y183{bottom:839.378850px;}
.y76{bottom:839.502600px;}
.y5d{bottom:839.513850px;}
.y7{bottom:840.773850px;}
.y1b5{bottom:841.054200px;}
.ydc{bottom:844.786200px;}
.y288{bottom:844.938300px;}
.y247{bottom:844.940700px;}
.yab{bottom:855.406200px;}
.y6{bottom:857.273850px;}
.y1b4{bottom:857.302200px;}
.y35{bottom:857.363850px;}
.y20d{bottom:857.364000px;}
.y136{bottom:857.367600px;}
.y182{bottom:857.378850px;}
.y75{bottom:857.502600px;}
.y287{bottom:859.938300px;}
.y246{bottom:859.940700px;}
.ydb{bottom:861.286200px;}
.y5{bottom:869.655900px;}
.yaa{bottom:871.654200px;}
.y1b3{bottom:873.550200px;}
.y286{bottom:874.938300px;}
.y245{bottom:874.940700px;}
.y34{bottom:875.363850px;}
.y20c{bottom:875.364000px;}
.y135{bottom:875.367600px;}
.y181{bottom:875.378850px;}
.y74{bottom:875.502600px;}
.y156{bottom:875.513850px;}
.yda{bottom:877.786200px;}
.ya9{bottom:887.902200px;}
.y1b2{bottom:889.798200px;}
.y285{bottom:889.938300px;}
.y244{bottom:889.940700px;}
.y4{bottom:890.273850px;}
.y33{bottom:893.363850px;}
.y20b{bottom:893.364000px;}
.y134{bottom:893.367600px;}
.y180{bottom:893.378850px;}
.y73{bottom:893.502600px;}
.yd9{bottom:894.286200px;}
.ya8{bottom:904.402200px;}
.y284{bottom:904.938300px;}
.y243{bottom:904.940700px;}
.y3{bottom:905.541300px;}
.y1b1{bottom:906.046200px;}
.yd8{bottom:910.786200px;}
.y32{bottom:911.363850px;}
.y20a{bottom:911.364000px;}
.y133{bottom:911.367600px;}
.y17f{bottom:911.378850px;}
.y72{bottom:911.502600px;}
.y127{bottom:914.292750px;}
.y283{bottom:919.938300px;}
.y242{bottom:919.940700px;}
.ya7{bottom:920.902200px;}
.y1b0{bottom:922.294200px;}
.yd7{bottom:927.286200px;}
.y31{bottom:929.363850px;}
.y209{bottom:929.364000px;}
.y132{bottom:929.367600px;}
.y17e{bottom:929.378850px;}
.y71{bottom:929.502600px;}
.y2{bottom:932.930700px;}
.y282{bottom:934.938300px;}
.y241{bottom:934.940700px;}
.y1af{bottom:938.542200px;}
.ya6{bottom:943.534200px;}
.yd6{bottom:943.786200px;}
.y30{bottom:947.363850px;}
.y208{bottom:947.364000px;}
.y131{bottom:947.367600px;}
.y17d{bottom:947.378850px;}
.y70{bottom:947.502600px;}
.y281{bottom:949.938300px;}
.y240{bottom:949.940700px;}
.y1ae{bottom:954.790200px;}
.y1{bottom:959.936700px;}
.ya5{bottom:960.034200px;}
.y280{bottom:964.938300px;}
.y23f{bottom:964.940700px;}
.y2f{bottom:965.363850px;}
.y207{bottom:965.364000px;}
.y130{bottom:965.367600px;}
.y17c{bottom:965.378850px;}
.y6f{bottom:965.502600px;}
.y1ad{bottom:971.038200px;}
.y27f{bottom:979.938300px;}
.y23e{bottom:979.940700px;}
.y2e{bottom:983.363850px;}
.y12f{bottom:983.367600px;}
.y17b{bottom:983.378850px;}
.ya4{bottom:988.666200px;}
.y27e{bottom:994.938300px;}
.y23d{bottom:994.940700px;}
.ya3{bottom:996.922200px;}
.y2d{bottom:1001.363850px;}
.y206{bottom:1001.364000px;}
.y12e{bottom:1001.367600px;}
.y17a{bottom:1001.378850px;}
.y6e{bottom:1001.502600px;}
.y1ac{bottom:1002.550200px;}
.y27d{bottom:1009.938300px;}
.y23c{bottom:1009.940700px;}
.y2c{bottom:1019.363850px;}
.y205{bottom:1019.364000px;}
.y12d{bottom:1019.367600px;}
.y179{bottom:1019.378850px;}
.y27c{bottom:1024.938300px;}
.y23b{bottom:1024.940700px;}
.y2b{bottom:1037.363850px;}
.y204{bottom:1037.364000px;}
.y6d{bottom:1037.367600px;}
.y178{bottom:1037.378850px;}
.y126{bottom:1037.387250px;}
.y27b{bottom:1039.938300px;}
.y23a{bottom:1039.940700px;}
.y29{bottom:1070.769450px;}
.y6c{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.h4{height:20.995312px;}
.h6{height:34.968750px;}
.h5{height:34.992188px;}
.hf{height:36.576000px;}
.he{height:38.959521px;}
.h7{height:43.031250px;}
.h8{height:43.681641px;}
.h9{height:43.710938px;}
.ha{height:43.740234px;}
.hc{height:45.720703px;}
.h3{height:51.504619px;}
.hb{height:53.789062px;}
.h2{height:61.154297px;}
.hd{height:67.944750px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x1a{left:78.661350px;}
.x56{left:87.205350px;}
.x1c{left:89.281350px;}
.x8{left:96.094500px;}
.x1{left:97.795350px;}
.x12{left:99.921300px;}
.x50{left:102.259800px;}
.x5b{left:106.295400px;}
.xb{left:110.555400px;}
.x45{left:113.791350px;}
.x26{left:114.803100px;}
.x14{left:119.049300px;}
.x2{left:125.427600px;}
.x5d{left:127.559100px;}
.x5{left:131.816400px;}
.xc{left:144.725400px;}
.x23{left:158.030250px;}
.x3{left:161.571600px;}
.x2b{left:169.915200px;}
.x24{left:171.252150px;}
.x2c{left:183.319200px;}
.x5a{left:194.285400px;}
.x20{left:198.905400px;}
.x39{left:209.913300px;}
.x4{left:212.876400px;}
.x4e{left:221.952300px;}
.x3a{left:223.135200px;}
.x11{left:232.365300px;}
.x4f{left:235.174200px;}
.x54{left:246.613350px;}
.x55{left:255.121350px;}
.x31{left:258.490500px;}
.x46{left:259.865100px;}
.x32{left:271.765350px;}
.x47{left:273.087000px;}
.x1d{left:284.881350px;}
.x51{left:286.159800px;}
.x1b{left:292.201350px;}
.x15{left:306.141300px;}
.x13{left:313.461300px;}
.x27{left:336.971100px;}
.x2d{left:361.318200px;}
.x1e{left:363.541350px;}
.x2e{left:374.722200px;}
.x3b{left:381.138150px;}
.x16{left:384.801300px;}
.x41{left:388.861950px;}
.x3c{left:394.359900px;}
.x48{left:416.488800px;}
.x49{left:429.710700px;}
.x33{left:449.569950px;}
.x9{left:455.041500px;}
.xe{left:457.085400px;}
.x34{left:462.844650px;}
.x25{left:468.108450px;}
.x18{left:478.377300px;}
.x6{left:480.476400px;}
.x5c{left:486.827400px;}
.xd{left:491.105400px;}
.xf{left:505.133850px;}
.x5e{left:508.019100px;}
.x53{left:512.350350px;}
.x7{left:514.496400px;}
.x1f{left:516.613350px;}
.x17{left:537.873300px;}
.x2f{left:541.248750px;}
.x42{left:546.155400px;}
.x30{left:554.652900px;}
.x28{left:559.667100px;}
.x35{left:588.371850px;}
.x58{left:591.940350px;}
.x3d{left:595.060050px;}
.x36{left:601.646550px;}
.x3e{left:608.281950px;}
.x4a{left:610.683000px;}
.x4b{left:623.904900px;}
.x52{left:651.187800px;}
.x21{left:685.888500px;}
.x22{left:699.108900px;}
.x43{left:701.998950px;}
.x29{left:704.732100px;}
.x44{left:715.220700px;}
.x57{left:717.130200px;}
.x2a{left:718.278750px;}
.x10{left:724.221150px;}
.x59{left:739.336350px;}
.x19{left:745.480950px;}
.x4c{left:755.240550px;}
.x37{left:757.155450px;}
.x4d{left:768.462450px;}
.x38{left:770.430150px;}
.x3f{left:776.966550px;}
.x40{left:790.188450px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v4{vertical-align:-0.938667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.138133pt;}
.v3{vertical-align:29.312000pt;}
.ls7e{letter-spacing:-5.333333pt;}
.ls7b{letter-spacing:-4.906667pt;}
.ls7c{letter-spacing:-3.413333pt;}
.lsa8{letter-spacing:-3.157333pt;}
.ls79{letter-spacing:-2.720000pt;}
.ls9a{letter-spacing:-2.346667pt;}
.ls7d{letter-spacing:-0.426667pt;}
.ls9b{letter-spacing:-0.384000pt;}
.ls81{letter-spacing:-0.373333pt;}
.ls82{letter-spacing:-0.320000pt;}
.ls60{letter-spacing:-0.298667pt;}
.ls3b{letter-spacing:-0.266667pt;}
.ls5f{letter-spacing:-0.256000pt;}
.ls62{letter-spacing:-0.213333pt;}
.lsab{letter-spacing:-0.170667pt;}
.ls7a{letter-spacing:-0.160000pt;}
.ls48{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls1a{letter-spacing:-0.085333pt;}
.ls18{letter-spacing:-0.074667pt;}
.ls1b{letter-spacing:-0.053333pt;}
.ls4a{letter-spacing:-0.042667pt;}
.ls19{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.005333pt;}
.ls47{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.085333pt;}
.ls12{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.160000pt;}
.ls71{letter-spacing:0.170667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls54{letter-spacing:0.298667pt;}
.ls25{letter-spacing:0.320000pt;}
.ls49{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.373333pt;}
.ls5a{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls92{letter-spacing:0.469333pt;}
.ls36{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.533333pt;}
.lsa0{letter-spacing:0.554667pt;}
.ls17{letter-spacing:0.586667pt;}
.ls97{letter-spacing:0.597333pt;}
.ls4{letter-spacing:0.640000pt;}
.ls84{letter-spacing:0.682667pt;}
.lsd{letter-spacing:0.693333pt;}
.ls56{letter-spacing:0.725333pt;}
.ls3e{letter-spacing:0.746667pt;}
.ls41{letter-spacing:0.768000pt;}
.ls3f{letter-spacing:0.800000pt;}
.ls98{letter-spacing:0.810667pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls38{letter-spacing:0.896000pt;}
.ls2f{letter-spacing:0.906667pt;}
.ls7{letter-spacing:0.938667pt;}
.ls6a{letter-spacing:0.960000pt;}
.ls9c{letter-spacing:0.981333pt;}
.ls2b{letter-spacing:1.013333pt;}
.ls63{letter-spacing:1.066667pt;}
.ls4c{letter-spacing:1.109333pt;}
.ls15{letter-spacing:1.120000pt;}
.ls4d{letter-spacing:1.152000pt;}
.ls21{letter-spacing:1.173333pt;}
.ls44{letter-spacing:1.194667pt;}
.ls20{letter-spacing:1.226667pt;}
.ls83{letter-spacing:1.237333pt;}
.ls29{letter-spacing:1.280000pt;}
.ls4f{letter-spacing:1.322667pt;}
.ls2c{letter-spacing:1.333333pt;}
.ls94{letter-spacing:1.365333pt;}
.ls66{letter-spacing:1.386667pt;}
.ls40{letter-spacing:1.408000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls50{letter-spacing:1.450667pt;}
.ls5d{letter-spacing:1.493333pt;}
.ls4b{letter-spacing:1.536000pt;}
.ls16{letter-spacing:1.546667pt;}
.ls37{letter-spacing:1.578667pt;}
.ls23{letter-spacing:1.600000pt;}
.ls5e{letter-spacing:1.621333pt;}
.ls3d{letter-spacing:1.653333pt;}
.ls2{letter-spacing:1.664000pt;}
.ls10{letter-spacing:1.706667pt;}
.ls57{letter-spacing:1.749333pt;}
.ls11{letter-spacing:1.760000pt;}
.ls46{letter-spacing:1.792000pt;}
.ls14{letter-spacing:1.813333pt;}
.ls59{letter-spacing:1.834667pt;}
.ls35{letter-spacing:1.866667pt;}
.ls5c{letter-spacing:1.877333pt;}
.ls27{letter-spacing:1.920000pt;}
.ls85{letter-spacing:1.962667pt;}
.ls1f{letter-spacing:1.973333pt;}
.ls95{letter-spacing:2.005333pt;}
.ls70{letter-spacing:2.026667pt;}
.ls3a{letter-spacing:2.080000pt;}
.lsa6{letter-spacing:2.090667pt;}
.ls52{letter-spacing:2.133333pt;}
.lsa4{letter-spacing:2.176000pt;}
.ls75{letter-spacing:2.186667pt;}
.lsa2{letter-spacing:2.218667pt;}
.ls32{letter-spacing:2.240000pt;}
.ls45{letter-spacing:2.261333pt;}
.ls2d{letter-spacing:2.293333pt;}
.ls93{letter-spacing:2.304000pt;}
.ls42{letter-spacing:2.346667pt;}
.lsa5{letter-spacing:2.389333pt;}
.ls67{letter-spacing:2.400000pt;}
.lsa3{letter-spacing:2.432000pt;}
.ls8a{letter-spacing:2.453333pt;}
.ls5b{letter-spacing:2.474667pt;}
.ls78{letter-spacing:2.506667pt;}
.ls91{letter-spacing:2.517333pt;}
.lsc{letter-spacing:2.560000pt;}
.ls90{letter-spacing:2.602667pt;}
.ls22{letter-spacing:2.613333pt;}
.ls9d{letter-spacing:2.645333pt;}
.ls2a{letter-spacing:2.666667pt;}
.ls61{letter-spacing:2.688000pt;}
.ls58{letter-spacing:2.730667pt;}
.ls69{letter-spacing:2.773333pt;}
.ls8e{letter-spacing:2.816000pt;}
.ls26{letter-spacing:2.826667pt;}
.ls53{letter-spacing:2.858667pt;}
.ls89{letter-spacing:2.933333pt;}
.ls9f{letter-spacing:2.944000pt;}
.ls31{letter-spacing:2.986667pt;}
.ls55{letter-spacing:3.029333pt;}
.ls8b{letter-spacing:3.040000pt;}
.ls74{letter-spacing:3.072000pt;}
.ls6c{letter-spacing:3.093333pt;}
.ls24{letter-spacing:3.146667pt;}
.ls68{letter-spacing:3.200000pt;}
.ls51{letter-spacing:3.242667pt;}
.ls65{letter-spacing:3.253333pt;}
.lsa9{letter-spacing:3.285333pt;}
.ls88{letter-spacing:3.306667pt;}
.lsa1{letter-spacing:3.328000pt;}
.ls1e{letter-spacing:3.360000pt;}
.ls6f{letter-spacing:3.413333pt;}
.ls6d{letter-spacing:3.466667pt;}
.lsaa{letter-spacing:3.498667pt;}
.ls33{letter-spacing:3.520000pt;}
.ls77{letter-spacing:3.680000pt;}
.ls6e{letter-spacing:3.733333pt;}
.ls8f{letter-spacing:3.754667pt;}
.ls6b{letter-spacing:3.786667pt;}
.ls3c{letter-spacing:3.840000pt;}
.ls7f{letter-spacing:3.946667pt;}
.ls96{letter-spacing:3.968000pt;}
.ls73{letter-spacing:4.096000pt;}
.ls9e{letter-spacing:4.138667pt;}
.ls30{letter-spacing:4.213333pt;}
.ls86{letter-spacing:4.373333pt;}
.ls34{letter-spacing:4.426667pt;}
.ls80{letter-spacing:4.533333pt;}
.ls72{letter-spacing:4.565333pt;}
.ls4e{letter-spacing:4.608000pt;}
.ls99{letter-spacing:4.746667pt;}
.ls64{letter-spacing:4.853333pt;}
.ls43{letter-spacing:5.333333pt;}
.ls87{letter-spacing:5.600000pt;}
.ls8d{letter-spacing:5.706667pt;}
.lse{letter-spacing:5.920000pt;}
.lsa7{letter-spacing:6.741333pt;}
.ls76{letter-spacing:7.040000pt;}
.ls8c{letter-spacing:271.957333pt;}
.ws6a{word-spacing:-42.666667pt;}
.ws34{word-spacing:-18.666667pt;}
.ws66{word-spacing:-18.240000pt;}
.ws8c{word-spacing:-18.080000pt;}
.ws91{word-spacing:-17.653333pt;}
.ws68{word-spacing:-17.600000pt;}
.ws69{word-spacing:-17.226667pt;}
.ws8a{word-spacing:-16.960000pt;}
.ws8d{word-spacing:-16.853333pt;}
.ws90{word-spacing:-16.746667pt;}
.ws35{word-spacing:-16.480000pt;}
.wsab{word-spacing:-16.426667pt;}
.ws92{word-spacing:-16.320000pt;}
.ws8f{word-spacing:-16.106667pt;}
.ws65{word-spacing:-15.946667pt;}
.ws67{word-spacing:-15.893333pt;}
.ws89{word-spacing:-15.786667pt;}
.ws64{word-spacing:-15.573333pt;}
.ws8e{word-spacing:-15.520000pt;}
.ws33{word-spacing:-15.360000pt;}
.wsea{word-spacing:-15.274667pt;}
.ws1{word-spacing:-15.253333pt;}
.ws95{word-spacing:-15.040000pt;}
.ws94{word-spacing:-14.880000pt;}
.ws1c{word-spacing:-14.826667pt;}
.wsaa{word-spacing:-14.773333pt;}
.wsfa{word-spacing:-14.464000pt;}
.ws93{word-spacing:-14.400000pt;}
.wse7{word-spacing:-13.653333pt;}
.ws7f{word-spacing:-13.013333pt;}
.wse6{word-spacing:-12.928000pt;}
.wse8{word-spacing:-12.800000pt;}
.wsf8{word-spacing:-12.757333pt;}
.wsd3{word-spacing:-12.544000pt;}
.ws80{word-spacing:-12.501333pt;}
.wsf9{word-spacing:-12.373333pt;}
.wsd2{word-spacing:-12.160000pt;}
.ws8b{word-spacing:-12.106667pt;}
.wsd1{word-spacing:-12.074667pt;}
.ws36{word-spacing:-11.861333pt;}
.wsf6{word-spacing:-11.818667pt;}
.wsf7{word-spacing:-11.690667pt;}
.ws96{word-spacing:-9.920000pt;}
.ws0{word-spacing:-9.785600pt;}
.wsd0{word-spacing:-9.514667pt;}
.wse9{word-spacing:-8.704000pt;}
.ws43{word-spacing:-5.333333pt;}
.ws6c{word-spacing:-4.853333pt;}
.wsd5{word-spacing:-4.746667pt;}
.ws4f{word-spacing:-4.608000pt;}
.ws82{word-spacing:-4.565333pt;}
.ws2d{word-spacing:-4.213333pt;}
.ws84{word-spacing:-4.096000pt;}
.wse4{word-spacing:-3.968000pt;}
.wsb4{word-spacing:-3.946667pt;}
.ws37{word-spacing:-3.840000pt;}
.wsd9{word-spacing:-3.754667pt;}
.ws78{word-spacing:-3.733333pt;}
.ws100{word-spacing:-3.498667pt;}
.ws77{word-spacing:-3.466667pt;}
.ws88{word-spacing:-3.413333pt;}
.ws1f{word-spacing:-3.360000pt;}
.wsf1{word-spacing:-3.328000pt;}
.ws6f{word-spacing:-3.253333pt;}
.ws52{word-spacing:-3.242667pt;}
.ws73{word-spacing:-3.200000pt;}
.ws22{word-spacing:-3.146667pt;}
.ws86{word-spacing:-3.072000pt;}
.ws56{word-spacing:-3.029333pt;}
.ws40{word-spacing:-2.986667pt;}
.wsee{word-spacing:-2.944000pt;}
.ws54{word-spacing:-2.858667pt;}
.wsa0{word-spacing:-2.826667pt;}
.wsd7{word-spacing:-2.816000pt;}
.ws74{word-spacing:-2.773333pt;}
.ws5a{word-spacing:-2.730667pt;}
.ws61{word-spacing:-2.688000pt;}
.ws28{word-spacing:-2.666667pt;}
.wseb{word-spacing:-2.645333pt;}
.ws3a{word-spacing:-2.613333pt;}
.wsda{word-spacing:-2.602667pt;}
.wsdb{word-spacing:-2.560000pt;}
.wsdc{word-spacing:-2.517333pt;}
.wsa5{word-spacing:-2.506667pt;}
.ws5e{word-spacing:-2.474667pt;}
.wsfe{word-spacing:-2.432000pt;}
.ws72{word-spacing:-2.400000pt;}
.ws42{word-spacing:-2.346667pt;}
.wse1{word-spacing:-2.304000pt;}
.wsa4{word-spacing:-2.293333pt;}
.ws45{word-spacing:-2.261333pt;}
.ws6d{word-spacing:-2.240000pt;}
.wsf2{word-spacing:-2.218667pt;}
.ws9a{word-spacing:-2.186667pt;}
.wsf3{word-spacing:-2.176000pt;}
.ws53{word-spacing:-2.133333pt;}
.wsf4{word-spacing:-2.090667pt;}
.ws2c{word-spacing:-2.080000pt;}
.ws7b{word-spacing:-2.026667pt;}
.wse3{word-spacing:-2.005333pt;}
.ws27{word-spacing:-1.973333pt;}
.wsc7{word-spacing:-1.962667pt;}
.ws55{word-spacing:-1.920000pt;}
.ws60{word-spacing:-1.877333pt;}
.ws5b{word-spacing:-1.834667pt;}
.ws1e{word-spacing:-1.813333pt;}
.ws46{word-spacing:-1.792000pt;}
.wsa8{word-spacing:-1.760000pt;}
.ws59{word-spacing:-1.749333pt;}
.wsae{word-spacing:-1.706667pt;}
.ws57{word-spacing:-1.664000pt;}
.ws38{word-spacing:-1.653333pt;}
.ws63{word-spacing:-1.621333pt;}
.ws21{word-spacing:-1.600000pt;}
.ws31{word-spacing:-1.578667pt;}
.ws1a{word-spacing:-1.546667pt;}
.ws4b{word-spacing:-1.536000pt;}
.ws62{word-spacing:-1.493333pt;}
.ws51{word-spacing:-1.450667pt;}
.ws9d{word-spacing:-1.440000pt;}
.ws3e{word-spacing:-1.408000pt;}
.ws71{word-spacing:-1.386667pt;}
.wsf5{word-spacing:-1.365333pt;}
.wsb3{word-spacing:-1.333333pt;}
.ws50{word-spacing:-1.322667pt;}
.ws49{word-spacing:-1.280000pt;}
.wsc5{word-spacing:-1.237333pt;}
.ws44{word-spacing:-1.194667pt;}
.wscf{word-spacing:-1.173333pt;}
.ws4e{word-spacing:-1.152000pt;}
.ws18{word-spacing:-1.120000pt;}
.ws4c{word-spacing:-1.109333pt;}
.ws6b{word-spacing:-1.066667pt;}
.ws3{word-spacing:-1.056000pt;}
.ws2a{word-spacing:-1.013333pt;}
.wse0{word-spacing:-0.981333pt;}
.ws75{word-spacing:-0.960000pt;}
.ws41{word-spacing:-0.938667pt;}
.ws9e{word-spacing:-0.906667pt;}
.ws32{word-spacing:-0.896000pt;}
.ws1d{word-spacing:-0.853333pt;}
.wsff{word-spacing:-0.810667pt;}
.wsa9{word-spacing:-0.800000pt;}
.ws11{word-spacing:-0.768000pt;}
.ws39{word-spacing:-0.746667pt;}
.ws58{word-spacing:-0.725333pt;}
.ws13{word-spacing:-0.693333pt;}
.wsc6{word-spacing:-0.682667pt;}
.ws8{word-spacing:-0.640000pt;}
.wse5{word-spacing:-0.597333pt;}
.ws15{word-spacing:-0.586667pt;}
.wsf0{word-spacing:-0.554667pt;}
.ws29{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.512000pt;}
.wsa7{word-spacing:-0.480000pt;}
.wsde{word-spacing:-0.469333pt;}
.ws2b{word-spacing:-0.426667pt;}
.ws5d{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.373333pt;}
.ws3f{word-spacing:-0.341333pt;}
.ws23{word-spacing:-0.320000pt;}
.ws4d{word-spacing:-0.298667pt;}
.ws7a{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.256000pt;}
.wsb{word-spacing:-0.213333pt;}
.ws83{word-spacing:-0.170667pt;}
.ws2f{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.106667pt;}
.wse2{word-spacing:-0.085333pt;}
.ws3b{word-spacing:-0.053333pt;}
.ws48{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws47{word-spacing:0.042667pt;}
.ws2e{word-spacing:0.053333pt;}
.wsa{word-spacing:0.085333pt;}
.ws19{word-spacing:0.106667pt;}
.ws3d{word-spacing:0.128000pt;}
.ws9b{word-spacing:0.160000pt;}
.ws101{word-spacing:0.170667pt;}
.ws70{word-spacing:0.213333pt;}
.ws5c{word-spacing:0.256000pt;}
.ws30{word-spacing:0.266667pt;}
.ws5f{word-spacing:0.298667pt;}
.wscc{word-spacing:0.320000pt;}
.ws9f{word-spacing:0.373333pt;}
.wsdd{word-spacing:0.384000pt;}
.ws6{word-spacing:0.426667pt;}
.wsb2{word-spacing:0.533333pt;}
.wsfc{word-spacing:0.554667pt;}
.ws98{word-spacing:0.693333pt;}
.wsfb{word-spacing:0.725333pt;}
.wsbb{word-spacing:0.746667pt;}
.wsdf{word-spacing:0.768000pt;}
.ws20{word-spacing:0.800000pt;}
.ws79{word-spacing:0.906667pt;}
.ws10{word-spacing:1.024000pt;}
.wsc{word-spacing:1.109333pt;}
.wsd4{word-spacing:1.226667pt;}
.wsd8{word-spacing:1.237333pt;}
.wsb1{word-spacing:1.280000pt;}
.wscd{word-spacing:1.386667pt;}
.wsb8{word-spacing:1.440000pt;}
.wsaf{word-spacing:1.493333pt;}
.ws97{word-spacing:1.600000pt;}
.wsac{word-spacing:1.866667pt;}
.ws4{word-spacing:1.877333pt;}
.wsad{word-spacing:1.920000pt;}
.wsb5{word-spacing:2.026667pt;}
.wsef{word-spacing:2.048000pt;}
.wsa6{word-spacing:2.133333pt;}
.ws25{word-spacing:2.186667pt;}
.wsb7{word-spacing:2.293333pt;}
.wsb6{word-spacing:2.346667pt;}
.wsed{word-spacing:2.432000pt;}
.ws1b{word-spacing:2.560000pt;}
.ws7c{word-spacing:2.666667pt;}
.ws4a{word-spacing:2.773333pt;}
.wsd6{word-spacing:2.816000pt;}
.ws85{word-spacing:3.072000pt;}
.wsd{word-spacing:3.114667pt;}
.wsce{word-spacing:3.200000pt;}
.wsfd{word-spacing:3.242667pt;}
.ws3c{word-spacing:3.253333pt;}
.wsba{word-spacing:3.306667pt;}
.ws103{word-spacing:3.328000pt;}
.ws87{word-spacing:3.413333pt;}
.ws102{word-spacing:3.456000pt;}
.ws7e{word-spacing:3.466667pt;}
.ws26{word-spacing:3.680000pt;}
.wsf{word-spacing:3.882667pt;}
.ws5{word-spacing:3.925333pt;}
.ws24{word-spacing:4.000000pt;}
.ws76{word-spacing:4.106667pt;}
.ws9c{word-spacing:4.160000pt;}
.wsb9{word-spacing:4.426667pt;}
.ws6e{word-spacing:4.480000pt;}
.ws7d{word-spacing:4.640000pt;}
.ws99{word-spacing:4.693333pt;}
.ws16{word-spacing:4.853333pt;}
.ws12{word-spacing:4.906667pt;}
.wsa2{word-spacing:5.120000pt;}
.wsa1{word-spacing:5.333333pt;}
.wsec{word-spacing:6.570667pt;}
.wsa3{word-spacing:7.146667pt;}
.wsb0{word-spacing:7.680000pt;}
.wscb{word-spacing:248.234667pt;}
.wsc9{word-spacing:283.733333pt;}
.wsbf{word-spacing:350.549333pt;}
.wsbc{word-spacing:378.965333pt;}
.wsc1{word-spacing:379.008000pt;}
.wsbd{word-spacing:400.298667pt;}
.wsc4{word-spacing:421.674667pt;}
.wsc2{word-spacing:431.189333pt;}
.wsca{word-spacing:443.776000pt;}
.wsc3{word-spacing:452.522667pt;}
.wsbe{word-spacing:469.077333pt;}
.wsc0{word-spacing:469.120000pt;}
.wsc8{word-spacing:553.173333pt;}
.ws81{word-spacing:583.810667pt;}
._e{margin-left:-2576.112000pt;}
._19{margin-left:-2554.941333pt;}
._3{margin-left:-6.453333pt;}
._8{margin-left:-5.120000pt;}
._1{margin-left:-4.106667pt;}
._0{margin-left:-2.762667pt;}
._c{margin-left:-1.866667pt;}
._4{margin-left:-0.970667pt;}
._2{width:1.154667pt;}
._7{width:2.176000pt;}
._21{width:3.114667pt;}
._5{width:4.010667pt;}
._6{width:5.034667pt;}
._9{width:6.165333pt;}
._a{width:7.114667pt;}
._b{width:8.426667pt;}
._d{width:9.813333pt;}
._30{width:25.642667pt;}
._1d{width:29.696000pt;}
._4c{width:31.018667pt;}
._24{width:40.330667pt;}
._25{width:41.418667pt;}
._2b{width:43.306667pt;}
._1f{width:47.498667pt;}
._20{width:48.426667pt;}
._2a{width:64.725333pt;}
._4d{width:68.949333pt;}
._15{width:72.149333pt;}
._18{width:73.344000pt;}
._1e{width:85.344000pt;}
._22{width:87.733333pt;}
._12{width:89.045333pt;}
._13{width:97.066667pt;}
._26{width:98.250667pt;}
._3d{width:99.786667pt;}
._29{width:102.944000pt;}
._23{width:121.984000pt;}
._1c{width:128.682667pt;}
._1a{width:136.192000pt;}
._28{width:147.957333pt;}
._33{width:152.405333pt;}
._35{width:154.154667pt;}
._3e{width:156.618667pt;}
._14{width:159.914667pt;}
._27{width:171.765333pt;}
._10{width:189.696000pt;}
._45{width:202.314667pt;}
._4f{width:220.245333pt;}
._40{width:227.200000pt;}
._51{width:260.897067pt;}
._3b{width:267.562667pt;}
._54{width:271.957333pt;}
._3f{width:307.882667pt;}
._39{width:312.618667pt;}
._49{width:346.880000pt;}
._44{width:359.978667pt;}
._48{width:372.906667pt;}
._37{width:393.632000pt;}
._16{width:403.797333pt;}
._3c{width:412.746667pt;}
._2f{width:420.736000pt;}
._32{width:431.189333pt;}
._46{width:434.560000pt;}
._31{width:436.469333pt;}
._1b{width:451.200000pt;}
._f{width:454.613333pt;}
._4b{width:455.509333pt;}
._4e{width:466.101333pt;}
._11{width:467.541333pt;}
._52{width:473.472000pt;}
._53{width:479.360000pt;}
._17{width:517.632000pt;}
._58{width:522.837333pt;}
._50{width:539.818667pt;}
._2e{width:540.842667pt;}
._2d{width:600.329600pt;}
._2c{width:601.720000pt;}
._56{width:605.824000pt;}
._57{width:627.114667pt;}
._55{width:679.722667pt;}
._47{width:711.808000pt;}
._4a{width:764.160000pt;}
._43{width:773.290667pt;}
._41{width:775.594667pt;}
._3a{width:790.304000pt;}
._34{width:799.402667pt;}
._36{width:801.706667pt;}
._38{width:816.384000pt;}
._42{width:818.261333pt;}
.fs3{font-size:25.600000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:44.171793pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:67.704800pt;}
.y239{bottom:70.930400pt;}
.y2bb{bottom:71.056267pt;}
.y27a{bottom:71.058400pt;}
.y155{bottom:73.428000pt;}
.y10d{bottom:73.470533pt;}
.y69{bottom:73.701067pt;}
.y10e{bottom:73.703600pt;}
.y10c{bottom:73.708933pt;}
.y5c{bottom:74.101200pt;}
.y153{bottom:74.104533pt;}
.y2a{bottom:74.216800pt;}
.y177{bottom:74.234533pt;}
.y1ab{bottom:74.247867pt;}
.y124{bottom:75.942933pt;}
.y125{bottom:76.176000pt;}
.y123{bottom:76.181333pt;}
.y9f{bottom:82.371467pt;}
.y203{bottom:82.945733pt;}
.y238{bottom:84.263733pt;}
.y2ba{bottom:84.389600pt;}
.y279{bottom:84.391733pt;}
.y154{bottom:87.422667pt;}
.y10a{bottom:87.470533pt;}
.y68{bottom:87.695733pt;}
.y10b{bottom:87.703600pt;}
.y109{bottom:87.706133pt;}
.y121{bottom:89.942933pt;}
.y5b{bottom:90.101200pt;}
.y152{bottom:90.104533pt;}
.y122{bottom:90.176000pt;}
.y120{bottom:90.181333pt;}
.y176{bottom:90.234533pt;}
.y1aa{bottom:90.247867pt;}
.y1e3{bottom:95.443733pt;}
.y9e{bottom:97.038133pt;}
.y202{bottom:97.388400pt;}
.y237{bottom:97.597067pt;}
.y2b9{bottom:97.722933pt;}
.y278{bottom:97.725067pt;}
.y67{bottom:101.690400pt;}
.y11e{bottom:103.942933pt;}
.y11f{bottom:104.176000pt;}
.y11d{bottom:104.181333pt;}
.y5a{bottom:106.101200pt;}
.y151{bottom:106.104533pt;}
.y175{bottom:106.234533pt;}
.y1a9{bottom:106.247867pt;}
.y1e2{bottom:109.886400pt;}
.y236{bottom:110.930400pt;}
.y2b8{bottom:111.056267pt;}
.y277{bottom:111.058400pt;}
.y9d{bottom:111.704800pt;}
.y201{bottom:111.831067pt;}
.y107{bottom:114.707733pt;}
.y11b{bottom:117.942933pt;}
.y11c{bottom:118.176000pt;}
.y11a{bottom:118.181333pt;}
.y59{bottom:122.101200pt;}
.y150{bottom:122.104533pt;}
.y174{bottom:122.234533pt;}
.y1a8{bottom:122.247867pt;}
.y235{bottom:124.263733pt;}
.y1e1{bottom:124.329067pt;}
.y2b7{bottom:124.389600pt;}
.y276{bottom:124.391733pt;}
.y200{bottom:126.273733pt;}
.y9c{bottom:126.371467pt;}
.y19{bottom:130.200800pt;}
.y118{bottom:131.942933pt;}
.y117{bottom:132.170667pt;}
.y119{bottom:132.176000pt;}
.y106{bottom:137.385067pt;}
.y234{bottom:137.597067pt;}
.y2b6{bottom:137.722933pt;}
.y275{bottom:137.725067pt;}
.y58{bottom:138.101200pt;}
.y14f{bottom:138.104533pt;}
.y173{bottom:138.234533pt;}
.y1a7{bottom:138.247867pt;}
.y1e0{bottom:138.771733pt;}
.y1ff{bottom:140.716400pt;}
.y9b{bottom:141.038133pt;}
.y115{bottom:145.942933pt;}
.y116{bottom:146.176000pt;}
.y114{bottom:146.181333pt;}
.yd5{bottom:146.601067pt;}
.y233{bottom:150.930400pt;}
.y2b5{bottom:151.056267pt;}
.y274{bottom:151.058400pt;}
.y105{bottom:152.051733pt;}
.y1df{bottom:153.214400pt;}
.y57{bottom:154.101200pt;}
.y14e{bottom:154.104533pt;}
.y172{bottom:154.234533pt;}
.y1a6{bottom:154.247867pt;}
.y1fe{bottom:155.159067pt;}
.y9a{bottom:155.480800pt;}
.y112{bottom:159.942933pt;}
.y113{bottom:160.176000pt;}
.y111{bottom:160.178667pt;}
.yd4{bottom:161.267733pt;}
.y232{bottom:164.263733pt;}
.y2b4{bottom:164.389600pt;}
.y273{bottom:164.391733pt;}
.y104{bottom:166.494400pt;}
.y1de{bottom:167.657067pt;}
.y1fd{bottom:169.601733pt;}
.y99{bottom:169.934133pt;}
.y56{bottom:170.101200pt;}
.y14d{bottom:170.104533pt;}
.y171{bottom:170.234533pt;}
.y1a5{bottom:170.247867pt;}
.yd3{bottom:175.934400pt;}
.y231{bottom:177.597067pt;}
.y2b3{bottom:177.722933pt;}
.y272{bottom:177.725067pt;}
.y103{bottom:181.161067pt;}
.y1dd{bottom:182.323733pt;}
.y98{bottom:184.376800pt;}
.y55{bottom:186.101200pt;}
.y26{bottom:186.104533pt;}
.y170{bottom:186.234533pt;}
.y1a4{bottom:186.247867pt;}
.yd2{bottom:190.601067pt;}
.y230{bottom:190.930400pt;}
.y2b2{bottom:191.056267pt;}
.y271{bottom:191.058400pt;}
.y102{bottom:195.827733pt;}
.y1dc{bottom:196.766400pt;}
.y1fc{bottom:197.612400pt;}
.y97{bottom:198.819467pt;}
.y54{bottom:202.101200pt;}
.y25{bottom:202.104533pt;}
.y16f{bottom:202.234533pt;}
.y1a3{bottom:202.247867pt;}
.y22f{bottom:204.263733pt;}
.y2b1{bottom:204.389600pt;}
.y270{bottom:204.391733pt;}
.yd1{bottom:205.043733pt;}
.y101{bottom:210.270400pt;}
.y1db{bottom:211.209067pt;}
.y96{bottom:213.272800pt;}
.y22e{bottom:217.597067pt;}
.y2b0{bottom:217.722933pt;}
.y26f{bottom:217.725067pt;}
.y53{bottom:218.101200pt;}
.y24{bottom:218.104533pt;}
.y16e{bottom:218.234533pt;}
.y1a2{bottom:218.247867pt;}
.yd0{bottom:219.710400pt;}
.y100{bottom:224.937067pt;}
.y110{bottom:225.653867pt;}
.y1da{bottom:225.875733pt;}
.y95{bottom:227.939467pt;}
.y1fb{bottom:228.567867pt;}
.y22d{bottom:230.930400pt;}
.y2af{bottom:231.056267pt;}
.y26e{bottom:231.058400pt;}
.y52{bottom:234.101200pt;}
.y23{bottom:234.104533pt;}
.y16d{bottom:234.234533pt;}
.y1a1{bottom:234.247867pt;}
.ycf{bottom:234.377067pt;}
.yff{bottom:239.379733pt;}
.y1d9{bottom:240.542400pt;}
.y94{bottom:242.382133pt;}
.y22c{bottom:244.263733pt;}
.y2ae{bottom:244.389600pt;}
.y26d{bottom:244.391733pt;}
.yce{bottom:249.043733pt;}
.y51{bottom:250.101200pt;}
.y22{bottom:250.104533pt;}
.y16c{bottom:250.234533pt;}
.y1a0{bottom:250.247867pt;}
.yfe{bottom:254.046400pt;}
.y1d8{bottom:254.985067pt;}
.y93{bottom:257.048800pt;}
.y22b{bottom:257.597067pt;}
.y2ad{bottom:257.722933pt;}
.y26c{bottom:257.725067pt;}
.ycd{bottom:263.710400pt;}
.y50{bottom:266.101200pt;}
.y21{bottom:266.104533pt;}
.y16b{bottom:266.234533pt;}
.y19f{bottom:266.247867pt;}
.y12c{bottom:268.640667pt;}
.yfd{bottom:268.713067pt;}
.y1d7{bottom:269.427733pt;}
.y22a{bottom:270.930400pt;}
.y2ac{bottom:271.056267pt;}
.y26b{bottom:271.058400pt;}
.y92{bottom:271.715467pt;}
.ycc{bottom:278.153067pt;}
.y1fa{bottom:281.981200pt;}
.y4f{bottom:282.101200pt;}
.y20{bottom:282.104533pt;}
.y16a{bottom:282.234533pt;}
.y19e{bottom:282.247867pt;}
.yfc{bottom:283.379733pt;}
.y1d6{bottom:284.094400pt;}
.y229{bottom:284.263733pt;}
.y2ab{bottom:284.389600pt;}
.y26a{bottom:284.391733pt;}
.y91{bottom:286.382133pt;}
.ycb{bottom:292.819733pt;}
.y228{bottom:297.597067pt;}
.y2aa{bottom:297.722933pt;}
.y269{bottom:297.725067pt;}
.y1f9{bottom:297.981200pt;}
.yfb{bottom:298.046400pt;}
.y4e{bottom:298.101200pt;}
.y1f{bottom:298.104533pt;}
.y169{bottom:298.234533pt;}
.y19d{bottom:298.247867pt;}
.y1d4{bottom:298.537067pt;}
.y1d5{bottom:298.761067pt;}
.y90{bottom:300.824800pt;}
.y6b{bottom:307.193600pt;}
.yca{bottom:307.486400pt;}
.y227{bottom:310.930400pt;}
.y2a9{bottom:311.056267pt;}
.y268{bottom:311.058400pt;}
.yfa{bottom:312.713067pt;}
.y1d3{bottom:313.203733pt;}
.y1f8{bottom:313.981200pt;}
.y1e8{bottom:314.101200pt;}
.y1e{bottom:314.104533pt;}
.y168{bottom:314.234533pt;}
.y19c{bottom:314.247867pt;}
.y8f{bottom:315.267467pt;}
.yc9{bottom:322.153067pt;}
.y226{bottom:324.263733pt;}
.y2a8{bottom:324.389600pt;}
.y267{bottom:324.391733pt;}
.yf9{bottom:327.379733pt;}
.y1d2{bottom:327.646400pt;}
.y8e{bottom:329.934133pt;}
.y1f7{bottom:329.981200pt;}
.y4d{bottom:330.101200pt;}
.y1d{bottom:330.104533pt;}
.y167{bottom:330.234533pt;}
.y19b{bottom:330.247867pt;}
.yc8{bottom:336.819733pt;}
.y225{bottom:337.597067pt;}
.y2a7{bottom:337.722933pt;}
.y266{bottom:337.725067pt;}
.yf8{bottom:341.822400pt;}
.y1d1{bottom:342.089067pt;}
.y8d{bottom:344.600800pt;}
.y1f6{bottom:345.981200pt;}
.y1e7{bottom:346.101200pt;}
.y1c{bottom:346.104533pt;}
.y166{bottom:346.234533pt;}
.y19a{bottom:346.247867pt;}
.y224{bottom:350.930400pt;}
.y2a6{bottom:351.056267pt;}
.y265{bottom:351.058400pt;}
.yc7{bottom:351.262400pt;}
.y10f{bottom:356.043200pt;}
.yf7{bottom:356.489067pt;}
.y1d0{bottom:356.531733pt;}
.y8c{bottom:359.043467pt;}
.y4c{bottom:361.981200pt;}
.y1e6{bottom:362.101200pt;}
.y1b{bottom:362.104533pt;}
.y165{bottom:362.234533pt;}
.y199{bottom:362.247867pt;}
.y223{bottom:364.263733pt;}
.y2a5{bottom:364.389600pt;}
.y264{bottom:364.391733pt;}
.yc6{bottom:365.929067pt;}
.y1cf{bottom:370.974400pt;}
.yf6{bottom:371.155733pt;}
.y8b{bottom:373.710133pt;}
.y2a4{bottom:377.722933pt;}
.y263{bottom:377.725067pt;}
.y1f5{bottom:377.981200pt;}
.y1e5{bottom:378.101200pt;}
.y27{bottom:378.104533pt;}
.y164{bottom:378.234533pt;}
.y198{bottom:378.247867pt;}
.y12b{bottom:378.251333pt;}
.yc5{bottom:380.595733pt;}
.y1ce{bottom:385.641067pt;}
.yf5{bottom:385.822400pt;}
.y8a{bottom:388.376800pt;}
.y2a3{bottom:391.056267pt;}
.y262{bottom:391.058400pt;}
.y1f4{bottom:393.981200pt;}
.y222{bottom:393.981333pt;}
.y1e4{bottom:394.101200pt;}
.y1a{bottom:394.104533pt;}
.y163{bottom:394.234533pt;}
.y197{bottom:394.247867pt;}
.yc4{bottom:395.262400pt;}
.y1cd{bottom:400.083733pt;}
.yf4{bottom:400.265067pt;}
.y89{bottom:402.819467pt;}
.y2a2{bottom:404.389600pt;}
.y261{bottom:404.391733pt;}
.yc3{bottom:409.929067pt;}
.y1f3{bottom:409.981200pt;}
.y4b{bottom:410.101200pt;}
.y14c{bottom:410.104533pt;}
.y162{bottom:410.234533pt;}
.y196{bottom:410.247867pt;}
.y1cc{bottom:414.526400pt;}
.yf3{bottom:414.931733pt;}
.y88{bottom:417.486133pt;}
.y2a1{bottom:417.722933pt;}
.y260{bottom:417.725067pt;}
.yc2{bottom:424.371733pt;}
.y1f2{bottom:425.981200pt;}
.y4a{bottom:426.101200pt;}
.y14b{bottom:426.104533pt;}
.y161{bottom:426.234533pt;}
.y195{bottom:426.247867pt;}
.y1cb{bottom:429.193067pt;}
.yf2{bottom:429.598400pt;}
.y2a0{bottom:431.056267pt;}
.y25f{bottom:431.058400pt;}
.y87{bottom:432.152800pt;}
.yc1{bottom:439.038400pt;}
.y1f1{bottom:441.981200pt;}
.y49{bottom:442.101200pt;}
.y221{bottom:442.101333pt;}
.y14a{bottom:442.104533pt;}
.y160{bottom:442.234533pt;}
.y194{bottom:442.247867pt;}
.y1ca{bottom:443.859733pt;}
.yf1{bottom:444.265067pt;}
.y29f{bottom:444.389600pt;}
.y25e{bottom:444.391733pt;}
.y86{bottom:446.819467pt;}
.y18{bottom:452.494133pt;}
.yc0{bottom:453.705067pt;}
.y29e{bottom:457.722933pt;}
.y25d{bottom:457.725067pt;}
.y1f0{bottom:457.981200pt;}
.y48{bottom:458.101200pt;}
.y220{bottom:458.101333pt;}
.y149{bottom:458.104533pt;}
.y15f{bottom:458.234533pt;}
.y193{bottom:458.247867pt;}
.y1c9{bottom:458.302400pt;}
.yf0{bottom:458.707733pt;}
.y85{bottom:461.486133pt;}
.ybf{bottom:468.371733pt;}
.y29d{bottom:471.056267pt;}
.y25c{bottom:471.058400pt;}
.y1c8{bottom:472.745067pt;}
.yef{bottom:473.150400pt;}
.y1ef{bottom:473.981200pt;}
.y47{bottom:474.101200pt;}
.y21f{bottom:474.101333pt;}
.y148{bottom:474.104533pt;}
.y15e{bottom:474.234533pt;}
.y192{bottom:474.247867pt;}
.y84{bottom:475.928800pt;}
.y17{bottom:481.699467pt;}
.ybe{bottom:483.038400pt;}
.y29c{bottom:484.389600pt;}
.y25b{bottom:484.391733pt;}
.y12a{bottom:486.912667pt;}
.y1c7{bottom:487.187733pt;}
.yee{bottom:487.817067pt;}
.y108{bottom:489.981200pt;}
.y46{bottom:490.101200pt;}
.y21e{bottom:490.101333pt;}
.y147{bottom:490.104533pt;}
.y15d{bottom:490.234533pt;}
.y191{bottom:490.247867pt;}
.y83{bottom:490.371467pt;}
.y16{bottom:495.032800pt;}
.ybd{bottom:497.705067pt;}
.y29b{bottom:497.722933pt;}
.y25a{bottom:497.725067pt;}
.y1c6{bottom:501.630400pt;}
.yed{bottom:502.259733pt;}
.y1ee{bottom:505.981200pt;}
.y45{bottom:506.101200pt;}
.y21d{bottom:506.101333pt;}
.y146{bottom:506.104533pt;}
.y15c{bottom:506.234533pt;}
.y190{bottom:506.247867pt;}
.y15{bottom:508.366133pt;}
.y29a{bottom:511.056267pt;}
.y259{bottom:511.058400pt;}
.ybc{bottom:512.371733pt;}
.y1c5{bottom:516.297067pt;}
.y82{bottom:516.494133pt;}
.yec{bottom:516.926400pt;}
.y14{bottom:521.699467pt;}
.y1ed{bottom:521.981200pt;}
.y44{bottom:522.101200pt;}
.y21c{bottom:522.101333pt;}
.y145{bottom:522.104533pt;}
.y15b{bottom:522.234533pt;}
.y18f{bottom:522.247867pt;}
.y81{bottom:523.832800pt;}
.y299{bottom:524.389600pt;}
.y258{bottom:524.391733pt;}
.ybb{bottom:527.038400pt;}
.y1c4{bottom:530.739733pt;}
.yeb{bottom:531.593067pt;}
.y13{bottom:535.032800pt;}
.y298{bottom:537.722933pt;}
.y257{bottom:537.725067pt;}
.y1ec{bottom:537.981200pt;}
.y43{bottom:538.101200pt;}
.y21b{bottom:538.101333pt;}
.y144{bottom:538.104533pt;}
.y15a{bottom:538.234533pt;}
.y18e{bottom:538.247867pt;}
.y6a{bottom:541.145600pt;}
.yba{bottom:541.481067pt;}
.y1c3{bottom:545.182400pt;}
.yea{bottom:546.259733pt;}
.y12{bottom:548.366133pt;}
.y297{bottom:551.056267pt;}
.y256{bottom:551.058400pt;}
.y1eb{bottom:553.981200pt;}
.y42{bottom:554.101200pt;}
.y21a{bottom:554.101333pt;}
.y143{bottom:554.104533pt;}
.y159{bottom:554.234533pt;}
.y18d{bottom:554.247867pt;}
.yb9{bottom:556.147733pt;}
.y1c2{bottom:559.625067pt;}
.y80{bottom:559.891200pt;}
.ye9{bottom:560.926400pt;}
.y11{bottom:561.699467pt;}
.y296{bottom:564.389600pt;}
.y255{bottom:564.391733pt;}
.y1ea{bottom:569.981200pt;}
.y41{bottom:570.101200pt;}
.y219{bottom:570.101333pt;}
.y142{bottom:570.104533pt;}
.y158{bottom:570.234533pt;}
.yb8{bottom:570.814400pt;}
.y1c1{bottom:574.067733pt;}
.y10{bottom:575.032800pt;}
.ye8{bottom:575.593067pt;}
.y7f{bottom:577.224533pt;}
.y295{bottom:577.722933pt;}
.y254{bottom:577.725067pt;}
.yb7{bottom:585.481067pt;}
.y40{bottom:586.101200pt;}
.y218{bottom:586.101333pt;}
.y141{bottom:586.104533pt;}
.y66{bottom:586.234533pt;}
.y18c{bottom:586.247867pt;}
.yf{bottom:588.366133pt;}
.y1c0{bottom:588.510400pt;}
.ye7{bottom:590.035733pt;}
.y294{bottom:591.056267pt;}
.y253{bottom:591.058400pt;}
.y129{bottom:596.331333pt;}
.yb6{bottom:600.147733pt;}
.ye{bottom:601.699467pt;}
.y1e9{bottom:601.981200pt;}
.y3f{bottom:602.101200pt;}
.y217{bottom:602.101333pt;}
.y140{bottom:602.104533pt;}
.y65{bottom:602.234533pt;}
.y1bf{bottom:603.177067pt;}
.y293{bottom:604.389600pt;}
.y252{bottom:604.391733pt;}
.ye6{bottom:604.702400pt;}
.yb5{bottom:614.590400pt;}
.yd{bottom:615.032800pt;}
.y1be{bottom:617.619733pt;}
.y292{bottom:617.722933pt;}
.y251{bottom:617.725067pt;}
.y3e{bottom:618.101200pt;}
.y216{bottom:618.101333pt;}
.y13f{bottom:618.104533pt;}
.y18b{bottom:618.114533pt;}
.y7e{bottom:618.224533pt;}
.y64{bottom:618.234533pt;}
.ye5{bottom:619.369067pt;}
.ya2{bottom:619.971467pt;}
.yc{bottom:628.366133pt;}
.yb4{bottom:629.257067pt;}
.y291{bottom:631.056267pt;}
.y250{bottom:631.058400pt;}
.y1bd{bottom:632.062400pt;}
.ye4{bottom:633.811733pt;}
.ya1{bottom:633.966133pt;}
.y3d{bottom:634.101200pt;}
.y215{bottom:634.101333pt;}
.y13e{bottom:634.104533pt;}
.y18a{bottom:634.114533pt;}
.y7d{bottom:634.224533pt;}
.y63{bottom:634.234533pt;}
.yb{bottom:641.699467pt;}
.yb3{bottom:643.699733pt;}
.y290{bottom:644.389600pt;}
.y24f{bottom:644.391733pt;}
.y1bc{bottom:646.505067pt;}
.ye3{bottom:648.478400pt;}
.y3c{bottom:650.101200pt;}
.y214{bottom:650.101333pt;}
.y13d{bottom:650.104533pt;}
.y189{bottom:650.114533pt;}
.y7c{bottom:650.224533pt;}
.y62{bottom:650.234533pt;}
.ya{bottom:655.032800pt;}
.y28f{bottom:657.722933pt;}
.y24e{bottom:657.725067pt;}
.yb2{bottom:658.366400pt;}
.y1bb{bottom:660.947733pt;}
.ye2{bottom:663.145067pt;}
.y3b{bottom:666.101200pt;}
.y213{bottom:666.101333pt;}
.y13c{bottom:666.104533pt;}
.y188{bottom:666.114533pt;}
.y7b{bottom:666.224533pt;}
.y61{bottom:666.234533pt;}
.y28e{bottom:671.056267pt;}
.y24d{bottom:671.058400pt;}
.yb1{bottom:672.809067pt;}
.y1ba{bottom:675.390400pt;}
.ye1{bottom:677.811733pt;}
.y3a{bottom:682.101200pt;}
.y212{bottom:682.101333pt;}
.y13b{bottom:682.104533pt;}
.y187{bottom:682.114533pt;}
.y7a{bottom:682.224533pt;}
.y60{bottom:682.234533pt;}
.y28d{bottom:684.389600pt;}
.y24c{bottom:684.391733pt;}
.yb0{bottom:687.475733pt;}
.y1b9{bottom:689.833067pt;}
.ye0{bottom:692.478400pt;}
.y28c{bottom:697.722933pt;}
.y24b{bottom:697.725067pt;}
.y39{bottom:698.101200pt;}
.y211{bottom:698.101333pt;}
.y13a{bottom:698.104533pt;}
.y186{bottom:698.114533pt;}
.y79{bottom:698.224533pt;}
.y5f{bottom:698.234533pt;}
.y9{bottom:698.360800pt;}
.yaf{bottom:702.142400pt;}
.y128{bottom:704.235333pt;}
.y1b8{bottom:704.275733pt;}
.ydf{bottom:707.145067pt;}
.y28b{bottom:711.056267pt;}
.y24a{bottom:711.058400pt;}
.y38{bottom:714.101200pt;}
.y210{bottom:714.101333pt;}
.y139{bottom:714.104533pt;}
.y185{bottom:714.114533pt;}
.y78{bottom:714.224533pt;}
.y5e{bottom:714.234533pt;}
.yae{bottom:716.585067pt;}
.y1b7{bottom:718.718400pt;}
.yde{bottom:721.811733pt;}
.y28a{bottom:724.389600pt;}
.y249{bottom:724.391733pt;}
.y37{bottom:730.101200pt;}
.y20f{bottom:730.101333pt;}
.y138{bottom:730.104533pt;}
.y184{bottom:730.114533pt;}
.y77{bottom:730.224533pt;}
.y157{bottom:730.234533pt;}
.yad{bottom:731.251733pt;}
.y8{bottom:732.687867pt;}
.y1b6{bottom:733.161067pt;}
.ydd{bottom:736.254400pt;}
.y289{bottom:737.722933pt;}
.y248{bottom:737.725067pt;}
.yac{bottom:745.918400pt;}
.y36{bottom:746.101200pt;}
.y20e{bottom:746.101333pt;}
.y137{bottom:746.104533pt;}
.y183{bottom:746.114533pt;}
.y76{bottom:746.224533pt;}
.y5d{bottom:746.234533pt;}
.y7{bottom:747.354533pt;}
.y1b5{bottom:747.603733pt;}
.ydc{bottom:750.921067pt;}
.y288{bottom:751.056267pt;}
.y247{bottom:751.058400pt;}
.yab{bottom:760.361067pt;}
.y6{bottom:762.021200pt;}
.y1b4{bottom:762.046400pt;}
.y35{bottom:762.101200pt;}
.y20d{bottom:762.101333pt;}
.y136{bottom:762.104533pt;}
.y182{bottom:762.114533pt;}
.y75{bottom:762.224533pt;}
.y287{bottom:764.389600pt;}
.y246{bottom:764.391733pt;}
.ydb{bottom:765.587733pt;}
.y5{bottom:773.027467pt;}
.yaa{bottom:774.803733pt;}
.y1b3{bottom:776.489067pt;}
.y286{bottom:777.722933pt;}
.y245{bottom:777.725067pt;}
.y34{bottom:778.101200pt;}
.y20c{bottom:778.101333pt;}
.y135{bottom:778.104533pt;}
.y181{bottom:778.114533pt;}
.y74{bottom:778.224533pt;}
.y156{bottom:778.234533pt;}
.yda{bottom:780.254400pt;}
.ya9{bottom:789.246400pt;}
.y1b2{bottom:790.931733pt;}
.y285{bottom:791.056267pt;}
.y244{bottom:791.058400pt;}
.y4{bottom:791.354533pt;}
.y33{bottom:794.101200pt;}
.y20b{bottom:794.101333pt;}
.y134{bottom:794.104533pt;}
.y180{bottom:794.114533pt;}
.y73{bottom:794.224533pt;}
.yd9{bottom:794.921067pt;}
.ya8{bottom:803.913067pt;}
.y284{bottom:804.389600pt;}
.y243{bottom:804.391733pt;}
.y3{bottom:804.925600pt;}
.y1b1{bottom:805.374400pt;}
.yd8{bottom:809.587733pt;}
.y32{bottom:810.101200pt;}
.y20a{bottom:810.101333pt;}
.y133{bottom:810.104533pt;}
.y17f{bottom:810.114533pt;}
.y72{bottom:810.224533pt;}
.y127{bottom:812.704667pt;}
.y283{bottom:817.722933pt;}
.y242{bottom:817.725067pt;}
.ya7{bottom:818.579733pt;}
.y1b0{bottom:819.817067pt;}
.yd7{bottom:824.254400pt;}
.y31{bottom:826.101200pt;}
.y209{bottom:826.101333pt;}
.y132{bottom:826.104533pt;}
.y17e{bottom:826.114533pt;}
.y71{bottom:826.224533pt;}
.y2{bottom:829.271733pt;}
.y282{bottom:831.056267pt;}
.y241{bottom:831.058400pt;}
.y1af{bottom:834.259733pt;}
.ya6{bottom:838.697067pt;}
.yd6{bottom:838.921067pt;}
.y30{bottom:842.101200pt;}
.y208{bottom:842.101333pt;}
.y131{bottom:842.104533pt;}
.y17d{bottom:842.114533pt;}
.y70{bottom:842.224533pt;}
.y281{bottom:844.389600pt;}
.y240{bottom:844.391733pt;}
.y1ae{bottom:848.702400pt;}
.y1{bottom:853.277067pt;}
.ya5{bottom:853.363733pt;}
.y280{bottom:857.722933pt;}
.y23f{bottom:857.725067pt;}
.y2f{bottom:858.101200pt;}
.y207{bottom:858.101333pt;}
.y130{bottom:858.104533pt;}
.y17c{bottom:858.114533pt;}
.y6f{bottom:858.224533pt;}
.y1ad{bottom:863.145067pt;}
.y27f{bottom:871.056267pt;}
.y23e{bottom:871.058400pt;}
.y2e{bottom:874.101200pt;}
.y12f{bottom:874.104533pt;}
.y17b{bottom:874.114533pt;}
.ya4{bottom:878.814400pt;}
.y27e{bottom:884.389600pt;}
.y23d{bottom:884.391733pt;}
.ya3{bottom:886.153067pt;}
.y2d{bottom:890.101200pt;}
.y206{bottom:890.101333pt;}
.y12e{bottom:890.104533pt;}
.y17a{bottom:890.114533pt;}
.y6e{bottom:890.224533pt;}
.y1ac{bottom:891.155733pt;}
.y27d{bottom:897.722933pt;}
.y23c{bottom:897.725067pt;}
.y2c{bottom:906.101200pt;}
.y205{bottom:906.101333pt;}
.y12d{bottom:906.104533pt;}
.y179{bottom:906.114533pt;}
.y27c{bottom:911.056267pt;}
.y23b{bottom:911.058400pt;}
.y2b{bottom:922.101200pt;}
.y204{bottom:922.101333pt;}
.y6d{bottom:922.104533pt;}
.y178{bottom:922.114533pt;}
.y126{bottom:922.122000pt;}
.y27b{bottom:924.389600pt;}
.y23a{bottom:924.391733pt;}
.y29{bottom:951.795067pt;}
.y6c{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.h4{height:18.662500pt;}
.h6{height:31.083333pt;}
.h5{height:31.104167pt;}
.hf{height:32.512000pt;}
.he{height:34.630685pt;}
.h7{height:38.250000pt;}
.h8{height:38.828125pt;}
.h9{height:38.854167pt;}
.ha{height:38.880208pt;}
.hc{height:40.640625pt;}
.h3{height:45.781883pt;}
.hb{height:47.812500pt;}
.h2{height:54.359375pt;}
.hd{height:60.395333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x1a{left:69.921200pt;}
.x56{left:77.515867pt;}
.x1c{left:79.361200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929200pt;}
.x12{left:88.818933pt;}
.x50{left:90.897600pt;}
.x5b{left:94.484800pt;}
.xb{left:98.271467pt;}
.x45{left:101.147867pt;}
.x26{left:102.047200pt;}
.x14{left:105.821600pt;}
.x2{left:111.491200pt;}
.x5d{left:113.385867pt;}
.x5{left:117.170133pt;}
.xc{left:128.644800pt;}
.x23{left:140.471333pt;}
.x3{left:143.619200pt;}
.x2b{left:151.035733pt;}
.x24{left:152.224133pt;}
.x2c{left:162.950400pt;}
.x5a{left:172.698133pt;}
.x20{left:176.804800pt;}
.x39{left:186.589600pt;}
.x4{left:189.223467pt;}
.x4e{left:197.290933pt;}
.x3a{left:198.342400pt;}
.x11{left:206.546933pt;}
.x4f{left:209.043733pt;}
.x54{left:219.211867pt;}
.x55{left:226.774533pt;}
.x31{left:229.769333pt;}
.x46{left:230.991200pt;}
.x32{left:241.569200pt;}
.x47{left:242.744000pt;}
.x1d{left:253.227867pt;}
.x51{left:254.364267pt;}
.x1b{left:259.734533pt;}
.x15{left:272.125600pt;}
.x13{left:278.632267pt;}
.x27{left:299.529867pt;}
.x2d{left:321.171733pt;}
.x1e{left:323.147867pt;}
.x2e{left:333.086400pt;}
.x3b{left:338.789467pt;}
.x16{left:342.045600pt;}
.x41{left:345.655067pt;}
.x3c{left:350.542133pt;}
.x48{left:370.212267pt;}
.x49{left:381.965067pt;}
.x33{left:399.617733pt;}
.x9{left:404.481333pt;}
.xe{left:406.298133pt;}
.x34{left:411.417467pt;}
.x25{left:416.096400pt;}
.x18{left:425.224267pt;}
.x6{left:427.090133pt;}
.x5c{left:432.735467pt;}
.xd{left:436.538133pt;}
.xf{left:449.007867pt;}
.x5e{left:451.572533pt;}
.x53{left:455.422533pt;}
.x7{left:457.330133pt;}
.x1f{left:459.211867pt;}
.x17{left:478.109600pt;}
.x2f{left:481.110000pt;}
.x42{left:485.471467pt;}
.x30{left:493.024800pt;}
.x28{left:497.481867pt;}
.x35{left:522.997200pt;}
.x58{left:526.169200pt;}
.x3d{left:528.942267pt;}
.x36{left:534.796933pt;}
.x3e{left:540.695067pt;}
.x4a{left:542.829333pt;}
.x4b{left:554.582133pt;}
.x52{left:578.833600pt;}
.x21{left:609.678667pt;}
.x22{left:621.430133pt;}
.x43{left:623.999067pt;}
.x29{left:626.428533pt;}
.x44{left:635.751733pt;}
.x57{left:637.449067pt;}
.x2a{left:638.470000pt;}
.x10{left:643.752133pt;}
.x59{left:657.187867pt;}
.x19{left:662.649733pt;}
.x4c{left:671.324933pt;}
.x37{left:673.027067pt;}
.x4d{left:683.077733pt;}
.x38{left:684.826800pt;}
.x3f{left:690.636933pt;}
.x40{left:702.389733pt;}
}




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