
    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_0b90ec61f30b81c5f3011b45.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.162250;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_1a90113e58531cc972c34715.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_2a7d50cc7404b786c8631645.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_41314af3489703bdbe0b72ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.330566;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_48d6dbe04313f5f201174d40.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_c815ffc3204a7eee136722b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_4c8f529e895082eaa48f1a09.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.330566;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_4a96714f52ce1d374bd48e8b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.102051;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_220d8eb1d9858cbcd561a78c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.330566;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_220d8eb1d9858cbcd561a78c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.330566;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_453d464d98f62809cec379e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.924316;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_bae1cdde65a4530722aef380.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.924316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4b13e98836c8b708d515da57.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.142709;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:ffe;src:url('chunks/assets/font_5b2281c49c0d780dd2d228d9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.981000;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:fff;src:url('chunks/assets/font_a6bae31732b8ec470c0128b7.woff2')format("woff");}.fff{font-family:fff;line-height:1.330566;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:ff10;src:url('chunks/assets/font_45eb30247b9a187b1668bb71.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.330566;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:ff11;src:url('chunks/assets/font_e4586150dc1fe1b2b7c1c096.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.330566;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:ff12;src:url('chunks/assets/font_e4586150dc1fe1b2b7c1c096.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.330566;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:ff13;src:url('chunks/assets/font_9d3a614e3f69da561a7f8288.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.330566;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:ff14;src:url('chunks/assets/font_9d3a614e3f69da561a7f8288.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.330566;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:ff15;src:url('chunks/assets/font_cfa1a53452df45b80097dc7d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922852;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:ff16;src:url('chunks/assets/font_6ca538c97618134966e660f5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.330566;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:ff17;src:url('chunks/assets/font_6ca538c97618134966e660f5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-5.460000px;}
.ls6{letter-spacing:-5.040000px;}
.ls1{letter-spacing:-4.080000px;}
.ls2{letter-spacing:-2.880000px;}
.ls7{letter-spacing:-2.100000px;}
.ls5{letter-spacing:-1.920000px;}
.lsa{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.060955px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.027000px;}
.ls9{letter-spacing:198.000000px;}
.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;}
}
.ws1a0{word-spacing:-123.060000px;}
.ws14e{word-spacing:-122.640000px;}
.wse8{word-spacing:-107.100000px;}
.wsfc{word-spacing:-103.320000px;}
.ws1be{word-spacing:-75.000000px;}
.ws1b2{word-spacing:-68.040000px;}
.wsc4{word-spacing:-65.100000px;}
.ws17d{word-spacing:-52.920000px;}
.wse6{word-spacing:-52.704000px;}
.wsb{word-spacing:-43.920000px;}
.ws3d{word-spacing:-41.040000px;}
.ws27{word-spacing:-39.840000px;}
.ws115{word-spacing:-30.000000px;}
.wsfa{word-spacing:-24.000000px;}
.wsc5{word-spacing:-20.760000px;}
.ws8e{word-spacing:-19.920000px;}
.ws3{word-spacing:-18.000000px;}
.ws19f{word-spacing:-15.000000px;}
.ws6e{word-spacing:-11.640000px;}
.ws11{word-spacing:-10.728000px;}
.wsb5{word-spacing:-10.152000px;}
.wsd3{word-spacing:-9.288000px;}
.ws38{word-spacing:-8.784000px;}
.ws16a{word-spacing:-8.352000px;}
.ws197{word-spacing:-8.136000px;}
.ws12{word-spacing:-7.776000px;}
.ws1b9{word-spacing:-7.632000px;}
.ws188{word-spacing:-7.344000px;}
.ws1a4{word-spacing:-7.272000px;}
.wsf2{word-spacing:-7.128000px;}
.ws24{word-spacing:-6.984000px;}
.ws117{word-spacing:-6.840000px;}
.ws1a8{word-spacing:-6.696000px;}
.ws78{word-spacing:-6.624000px;}
.ws17b{word-spacing:-6.192000px;}
.ws14b{word-spacing:-6.120000px;}
.ws116{word-spacing:-6.000000px;}
.wsbd{word-spacing:-5.904000px;}
.ws18c{word-spacing:-5.688000px;}
.wscb{word-spacing:-5.616000px;}
.ws135{word-spacing:-5.544000px;}
.ws127{word-spacing:-5.400000px;}
.ws9{word-spacing:-5.328000px;}
.wsec{word-spacing:-5.256000px;}
.ws1bd{word-spacing:-4.968000px;}
.ws1a6{word-spacing:-4.896000px;}
.ws158{word-spacing:-4.824000px;}
.ws18e{word-spacing:-4.752000px;}
.ws142{word-spacing:-4.680000px;}
.wsaa{word-spacing:-4.608000px;}
.ws48{word-spacing:-4.536000px;}
.ws13e{word-spacing:-4.464000px;}
.ws40{word-spacing:-4.176000px;}
.ws167{word-spacing:-4.104000px;}
.ws10c{word-spacing:-4.032000px;}
.wsde{word-spacing:-3.960000px;}
.ws4a{word-spacing:-3.888000px;}
.ws1b4{word-spacing:-3.816000px;}
.ws123{word-spacing:-3.672000px;}
.ws102{word-spacing:-3.600000px;}
.ws5f{word-spacing:-3.528000px;}
.ws6b{word-spacing:-3.456000px;}
.wsf{word-spacing:-3.384000px;}
.ws8b{word-spacing:-3.312000px;}
.ws1b{word-spacing:-3.240000px;}
.ws15e{word-spacing:-3.168000px;}
.wsaf{word-spacing:-3.096000px;}
.wsca{word-spacing:-3.024000px;}
.ws104{word-spacing:-2.952000px;}
.ws98{word-spacing:-2.880000px;}
.ws7{word-spacing:-2.808000px;}
.ws10b{word-spacing:-2.736000px;}
.wsb6{word-spacing:-2.664000px;}
.ws9c{word-spacing:-2.592000px;}
.ws13{word-spacing:-2.520000px;}
.ws66{word-spacing:-2.448000px;}
.ws2b{word-spacing:-2.304000px;}
.ws87{word-spacing:-2.232000px;}
.ws99{word-spacing:-2.160000px;}
.ws4b{word-spacing:-2.088000px;}
.ws190{word-spacing:-2.016000px;}
.ws92{word-spacing:-1.944000px;}
.ws16d{word-spacing:-1.872000px;}
.wsd0{word-spacing:-1.800000px;}
.ws19e{word-spacing:-1.728000px;}
.wsf6{word-spacing:-1.656000px;}
.wsf4{word-spacing:-1.584000px;}
.wsfe{word-spacing:-1.512000px;}
.wsd8{word-spacing:-1.440000px;}
.ws129{word-spacing:-1.368000px;}
.ws54{word-spacing:-1.296000px;}
.ws60{word-spacing:-1.224000px;}
.wsd6{word-spacing:-1.152000px;}
.ws15{word-spacing:-1.080000px;}
.ws1b3{word-spacing:-0.936000px;}
.ws17a{word-spacing:-0.864000px;}
.wsd1{word-spacing:-0.792000px;}
.ws169{word-spacing:-0.720000px;}
.ws141{word-spacing:-0.648000px;}
.ws0{word-spacing:-0.600000px;}
.ws1b1{word-spacing:-0.576000px;}
.ws42{word-spacing:-0.504000px;}
.ws1a{word-spacing:-0.432000px;}
.ws6f{word-spacing:-0.360000px;}
.wsf7{word-spacing:-0.300000px;}
.ws29{word-spacing:-0.288000px;}
.ws1ae{word-spacing:-0.216000px;}
.ws85{word-spacing:-0.144000px;}
.wsfb{word-spacing:-0.096000px;}
.ws58{word-spacing:-0.084000px;}
.ws32{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.wsf9{word-spacing:0.060955px;}
.wse4{word-spacing:0.072000px;}
.wse1{word-spacing:0.144000px;}
.ws1d{word-spacing:0.216000px;}
.wsce{word-spacing:0.288000px;}
.ws33{word-spacing:0.360000px;}
.wsba{word-spacing:0.432000px;}
.ws21{word-spacing:0.504000px;}
.ws195{word-spacing:0.576000px;}
.ws125{word-spacing:0.648000px;}
.ws13d{word-spacing:0.720000px;}
.wse9{word-spacing:0.792000px;}
.wscc{word-spacing:0.864000px;}
.ws16f{word-spacing:0.936000px;}
.ws1c{word-spacing:1.008000px;}
.ws70{word-spacing:1.080000px;}
.wscf{word-spacing:1.152000px;}
.wsb7{word-spacing:1.224000px;}
.wsda{word-spacing:1.296000px;}
.wseb{word-spacing:1.368000px;}
.ws57{word-spacing:1.440000px;}
.ws7b{word-spacing:1.512000px;}
.ws10a{word-spacing:1.584000px;}
.ws5a{word-spacing:1.656000px;}
.ws143{word-spacing:1.728000px;}
.wsf3{word-spacing:1.800000px;}
.ws13f{word-spacing:1.824000px;}
.wsc3{word-spacing:1.872000px;}
.ws69{word-spacing:1.944000px;}
.ws3b{word-spacing:2.016000px;}
.ws15a{word-spacing:2.088000px;}
.ws105{word-spacing:2.160000px;}
.wsb8{word-spacing:2.232000px;}
.wsdd{word-spacing:2.304000px;}
.wsa4{word-spacing:2.376000px;}
.ws5{word-spacing:2.448000px;}
.ws61{word-spacing:2.520000px;}
.ws4c{word-spacing:2.592000px;}
.ws106{word-spacing:2.664000px;}
.ws7a{word-spacing:2.736000px;}
.ws101{word-spacing:2.808000px;}
.wsb0{word-spacing:2.880000px;}
.ws10f{word-spacing:2.952000px;}
.ws55{word-spacing:3.024000px;}
.ws10d{word-spacing:3.096000px;}
.ws76{word-spacing:3.240000px;}
.ws4{word-spacing:3.312000px;}
.ws186{word-spacing:3.384000px;}
.ws4d{word-spacing:3.456000px;}
.ws65{word-spacing:3.600000px;}
.ws36{word-spacing:3.672000px;}
.ws28{word-spacing:3.816000px;}
.wsd2{word-spacing:3.888000px;}
.ws14{word-spacing:4.032000px;}
.ws43{word-spacing:4.104000px;}
.ws134{word-spacing:4.176000px;}
.ws109{word-spacing:4.248000px;}
.ws15b{word-spacing:4.320000px;}
.ws25{word-spacing:4.392000px;}
.ws17f{word-spacing:4.464000px;}
.ws180{word-spacing:4.536000px;}
.ws118{word-spacing:4.608000px;}
.ws2c{word-spacing:4.680000px;}
.ws144{word-spacing:4.752000px;}
.wsc8{word-spacing:4.824000px;}
.ws56{word-spacing:4.896000px;}
.wsff{word-spacing:4.968000px;}
.ws64{word-spacing:5.040000px;}
.wsc9{word-spacing:5.112000px;}
.ws1b5{word-spacing:5.184000px;}
.ws138{word-spacing:5.256000px;}
.ws13a{word-spacing:5.328000px;}
.ws3e{word-spacing:5.400000px;}
.ws140{word-spacing:5.472000px;}
.ws17e{word-spacing:5.544000px;}
.wsd4{word-spacing:5.616000px;}
.wsd7{word-spacing:5.688000px;}
.ws17{word-spacing:5.760000px;}
.ws178{word-spacing:5.832000px;}
.wsa3{word-spacing:5.904000px;}
.ws83{word-spacing:5.976000px;}
.ws1aa{word-spacing:6.048000px;}
.ws187{word-spacing:6.120000px;}
.ws51{word-spacing:6.192000px;}
.wse2{word-spacing:6.264000px;}
.ws84{word-spacing:6.336000px;}
.ws1a2{word-spacing:6.408000px;}
.ws14d{word-spacing:6.480000px;}
.ws7d{word-spacing:6.552000px;}
.ws41{word-spacing:6.696000px;}
.ws9f{word-spacing:6.768000px;}
.wsea{word-spacing:6.840000px;}
.ws77{word-spacing:6.912000px;}
.wsa9{word-spacing:6.984000px;}
.ws189{word-spacing:7.056000px;}
.ws8c{word-spacing:7.272000px;}
.ws3c{word-spacing:7.416000px;}
.ws49{word-spacing:7.488000px;}
.ws2e{word-spacing:7.560000px;}
.ws147{word-spacing:7.632000px;}
.ws10{word-spacing:7.704000px;}
.ws34{word-spacing:7.776000px;}
.ws90{word-spacing:7.848000px;}
.ws20{word-spacing:7.920000px;}
.ws2{word-spacing:7.986000px;}
.ws124{word-spacing:7.992000px;}
.ws103{word-spacing:8.136000px;}
.ws53{word-spacing:8.208000px;}
.ws37{word-spacing:8.280000px;}
.ws5b{word-spacing:8.424000px;}
.ws50{word-spacing:8.496000px;}
.ws45{word-spacing:8.568000px;}
.ws2d{word-spacing:8.640000px;}
.ws173{word-spacing:8.712000px;}
.ws19a{word-spacing:8.784000px;}
.ws162{word-spacing:8.856000px;}
.ws114{word-spacing:8.928000px;}
.ws168{word-spacing:9.000000px;}
.ws1e{word-spacing:9.072000px;}
.ws153{word-spacing:9.144000px;}
.ws163{word-spacing:9.216000px;}
.wsdc{word-spacing:9.288000px;}
.wsa5{word-spacing:9.360000px;}
.ws12f{word-spacing:9.432000px;}
.ws47{word-spacing:9.504000px;}
.wsd{word-spacing:9.576000px;}
.wse0{word-spacing:9.648000px;}
.wse{word-spacing:9.720000px;}
.ws2a{word-spacing:9.792000px;}
.wsab{word-spacing:9.864000px;}
.ws7f{word-spacing:9.936000px;}
.ws5c{word-spacing:10.008000px;}
.ws5d{word-spacing:10.080000px;}
.wsa{word-spacing:10.152000px;}
.wsee{word-spacing:10.224000px;}
.ws154{word-spacing:10.296000px;}
.wsd5{word-spacing:10.368000px;}
.wscd{word-spacing:10.440000px;}
.ws86{word-spacing:10.512000px;}
.ws89{word-spacing:10.584000px;}
.ws96{word-spacing:10.656000px;}
.ws132{word-spacing:10.728000px;}
.ws193{word-spacing:10.800000px;}
.ws128{word-spacing:10.872000px;}
.ws4e{word-spacing:10.944000px;}
.ws174{word-spacing:11.016000px;}
.ws150{word-spacing:11.088000px;}
.ws120{word-spacing:11.160000px;}
.ws6d{word-spacing:11.232000px;}
.ws198{word-spacing:11.304000px;}
.ws15c{word-spacing:11.376000px;}
.ws159{word-spacing:11.448000px;}
.ws183{word-spacing:11.592000px;}
.ws13c{word-spacing:11.664000px;}
.ws97{word-spacing:11.880000px;}
.ws72{word-spacing:11.952000px;}
.ws157{word-spacing:12.024000px;}
.ws152{word-spacing:12.240000px;}
.ws67{word-spacing:12.312000px;}
.ws8a{word-spacing:12.384000px;}
.ws14c{word-spacing:12.456000px;}
.ws196{word-spacing:12.528000px;}
.ws1b0{word-spacing:12.672000px;}
.wsad{word-spacing:12.816000px;}
.ws18f{word-spacing:12.888000px;}
.ws9e{word-spacing:12.960000px;}
.ws91{word-spacing:13.032000px;}
.wsfd{word-spacing:13.176000px;}
.ws88{word-spacing:13.248000px;}
.wsbc{word-spacing:13.320000px;}
.ws119{word-spacing:13.392000px;}
.ws22{word-spacing:13.464000px;}
.ws7e{word-spacing:13.536000px;}
.ws1f{word-spacing:13.608000px;}
.ws192{word-spacing:13.680000px;}
.ws181{word-spacing:13.824000px;}
.ws59{word-spacing:13.896000px;}
.ws15f{word-spacing:13.968000px;}
.ws1ac{word-spacing:14.040000px;}
.wsf0{word-spacing:14.112000px;}
.wsb4{word-spacing:14.184000px;}
.ws177{word-spacing:14.328000px;}
.wsc1{word-spacing:14.400000px;}
.ws52{word-spacing:14.472000px;}
.ws1ab{word-spacing:14.616000px;}
.ws3a{word-spacing:14.688000px;}
.ws148{word-spacing:14.832000px;}
.ws35{word-spacing:14.904000px;}
.ws68{word-spacing:14.976000px;}
.ws12c{word-spacing:15.048000px;}
.ws1a5{word-spacing:15.120000px;}
.ws31{word-spacing:15.192000px;}
.wsae{word-spacing:15.408000px;}
.ws137{word-spacing:15.480000px;}
.ws170{word-spacing:15.624000px;}
.ws166{word-spacing:15.696000px;}
.ws18b{word-spacing:15.840000px;}
.ws171{word-spacing:15.912000px;}
.ws1a1{word-spacing:15.984000px;}
.ws172{word-spacing:16.056000px;}
.ws18a{word-spacing:16.128000px;}
.ws8{word-spacing:16.272000px;}
.ws126{word-spacing:16.344000px;}
.ws16{word-spacing:16.416000px;}
.ws39{word-spacing:16.632000px;}
.wsc6{word-spacing:16.704000px;}
.wsdf{word-spacing:16.776000px;}
.ws182{word-spacing:16.848000px;}
.ws80{word-spacing:16.992000px;}
.ws121{word-spacing:17.064000px;}
.ws12a{word-spacing:17.136000px;}
.ws8f{word-spacing:17.208000px;}
.ws1a3{word-spacing:17.280000px;}
.wsac{word-spacing:17.352000px;}
.ws164{word-spacing:17.496000px;}
.ws44{word-spacing:17.568000px;}
.ws19c{word-spacing:17.640000px;}
.ws179{word-spacing:17.712000px;}
.ws30{word-spacing:17.784000px;}
.wsdb{word-spacing:17.928000px;}
.ws8d{word-spacing:18.000000px;}
.ws194{word-spacing:18.072000px;}
.ws191{word-spacing:18.216000px;}
.ws122{word-spacing:18.288000px;}
.ws1a9{word-spacing:18.360000px;}
.ws151{word-spacing:18.504000px;}
.ws19{word-spacing:18.576000px;}
.ws94{word-spacing:18.792000px;}
.ws12b{word-spacing:18.936000px;}
.wsb3{word-spacing:19.008000px;}
.wsbe{word-spacing:19.224000px;}
.ws16e{word-spacing:19.296000px;}
.ws11a{word-spacing:19.368000px;}
.wsb9{word-spacing:19.440000px;}
.ws82{word-spacing:19.512000px;}
.ws13b{word-spacing:19.584000px;}
.ws5e{word-spacing:19.656000px;}
.ws15d{word-spacing:19.728000px;}
.wsef{word-spacing:19.800000px;}
.ws16c{word-spacing:19.944000px;}
.ws160{word-spacing:20.016000px;}
.ws139{word-spacing:20.160000px;}
.ws184{word-spacing:20.304000px;}
.ws11e{word-spacing:20.376000px;}
.ws161{word-spacing:20.592000px;}
.ws9b{word-spacing:20.664000px;}
.ws81{word-spacing:20.808000px;}
.ws18{word-spacing:20.880000px;}
.ws100{word-spacing:20.952000px;}
.ws1a7{word-spacing:21.168000px;}
.ws199{word-spacing:21.240000px;}
.ws79{word-spacing:21.384000px;}
.ws9d{word-spacing:21.456000px;}
.ws11f{word-spacing:21.528000px;}
.ws7c{word-spacing:21.672000px;}
.ws149{word-spacing:21.744000px;}
.ws26{word-spacing:21.816000px;}
.ws11c{word-spacing:22.032000px;}
.wsa6{word-spacing:22.104000px;}
.wsd9{word-spacing:22.248000px;}
.ws176{word-spacing:22.320000px;}
.ws1ba{word-spacing:22.392000px;}
.ws75{word-spacing:22.464000px;}
.ws16b{word-spacing:22.608000px;}
.ws1b8{word-spacing:22.752000px;}
.wsb2{word-spacing:22.968000px;}
.ws108{word-spacing:23.616000px;}
.ws2f{word-spacing:23.688000px;}
.wsa7{word-spacing:23.904000px;}
.ws131{word-spacing:23.976000px;}
.wse3{word-spacing:24.048000px;}
.ws74{word-spacing:24.192000px;}
.wsa2{word-spacing:24.264000px;}
.wsbf{word-spacing:24.336000px;}
.ws10e{word-spacing:24.696000px;}
.wsbb{word-spacing:25.200000px;}
.wsed{word-spacing:25.344000px;}
.ws175{word-spacing:25.488000px;}
.ws17c{word-spacing:25.560000px;}
.ws62{word-spacing:25.632000px;}
.wse5{word-spacing:25.848000px;}
.ws63{word-spacing:26.064000px;}
.wsa1{word-spacing:26.208000px;}
.wsc7{word-spacing:26.424000px;}
.ws156{word-spacing:26.496000px;}
.ws1b7{word-spacing:26.568000px;}
.ws6{word-spacing:26.712000px;}
.ws111{word-spacing:26.784000px;}
.ws133{word-spacing:26.856000px;}
.ws185{word-spacing:27.000000px;}
.ws23{word-spacing:27.144000px;}
.ws19d{word-spacing:27.504000px;}
.ws1ad{word-spacing:27.648000px;}
.ws4f{word-spacing:27.792000px;}
.ws145{word-spacing:27.864000px;}
.ws9a{word-spacing:28.008000px;}
.ws107{word-spacing:28.656000px;}
.ws95{word-spacing:30.168000px;}
.wsa0{word-spacing:30.672000px;}
.ws73{word-spacing:31.248000px;}
.ws1b6{word-spacing:31.392000px;}
.ws6c{word-spacing:31.608000px;}
.ws46{word-spacing:31.680000px;}
.wsf5{word-spacing:32.832000px;}
.ws71{word-spacing:32.904000px;}
.ws146{word-spacing:32.976000px;}
.ws130{word-spacing:33.336000px;}
.wsc2{word-spacing:33.624000px;}
.wsa8{word-spacing:33.840000px;}
.ws155{word-spacing:34.128000px;}
.ws3f{word-spacing:34.560000px;}
.wsf1{word-spacing:34.704000px;}
.ws6a{word-spacing:34.920000px;}
.ws14f{word-spacing:34.992000px;}
.wsb1{word-spacing:35.280000px;}
.ws18d{word-spacing:35.928000px;}
.ws93{word-spacing:36.072000px;}
.ws11d{word-spacing:37.008000px;}
.ws165{word-spacing:38.088000px;}
.ws14a{word-spacing:40.176000px;}
.ws11b{word-spacing:41.328000px;}
.wsc{word-spacing:43.416000px;}
.ws12e{word-spacing:44.424000px;}
.wsc0{word-spacing:46.368000px;}
.ws1af{word-spacing:46.584000px;}
.ws1bb{word-spacing:47.736000px;}
.ws136{word-spacing:48.168000px;}
.ws112{word-spacing:49.176000px;}
.ws19b{word-spacing:59.400000px;}
.ws110{word-spacing:61.128000px;}
.ws113{word-spacing:61.272000px;}
.ws12d{word-spacing:61.344000px;}
.wse7{word-spacing:154.800000px;}
.ws1bc{word-spacing:198.000000px;}
.wsf8{word-spacing:541.398757px;}
._41{margin-left:-198.221400px;}
._43{margin-left:-197.173200px;}
._39{margin-left:-40.500000px;}
._33{margin-left:-33.266400px;}
._11{margin-left:-25.344000px;}
._3e{margin-left:-21.696000px;}
._2f{margin-left:-19.260000px;}
._34{margin-left:-17.853600px;}
._5{margin-left:-16.800000px;}
._30{margin-left:-15.084000px;}
._18{margin-left:-14.052000px;}
._0{margin-left:-12.000000px;}
._1e{margin-left:-10.500000px;}
._1{margin-left:-8.400000px;}
._14{margin-left:-7.195200px;}
._6{margin-left:-5.424000px;}
._2{margin-left:-4.200000px;}
._3{margin-left:-2.400000px;}
._4{margin-left:-1.200000px;}
._7{width:1.236000px;}
._8{width:2.803200px;}
._c{width:4.140000px;}
._9{width:5.304000px;}
._e{width:6.388800px;}
._f{width:7.485600px;}
._b{width:8.668800px;}
._d{width:9.686400px;}
._10{width:11.383200px;}
._12{width:12.729600px;}
._16{width:14.342400px;}
._17{width:15.364800px;}
._1c{width:16.545600px;}
._13{width:19.612800px;}
._2b{width:20.637600px;}
._1b{width:22.089600px;}
._1d{width:23.176800px;}
._35{width:24.292800px;}
._19{width:25.912800px;}
._36{width:27.741600px;}
._a{width:29.671200px;}
._1a{width:31.716000px;}
._38{width:32.788800px;}
._20{width:34.092000px;}
._3f{width:37.027200px;}
._15{width:40.168800px;}
._37{width:42.184800px;}
._32{width:43.471200px;}
._31{width:44.620800px;}
._2d{width:45.756000px;}
._2c{width:46.800000px;}
._1f{width:48.261600px;}
._2e{width:54.554400px;}
._49{width:59.956800px;}
._46{width:65.412000px;}
._48{width:72.648000px;}
._3d{width:73.675200px;}
._3a{width:85.464000px;}
._44{width:95.232000px;}
._47{width:104.044800px;}
._45{width:121.504800px;}
._42{width:124.020000px;}
._40{width:139.792200px;}
._27{width:157.638803px;}
._29{width:159.074990px;}
._28{width:160.739080px;}
._2a{width:164.553097px;}
._24{width:174.690600px;}
._22{width:183.690600px;}
._3b{width:198.000000px;}
._3c{width:202.968000px;}
._25{width:218.569800px;}
._26{width:227.569800px;}
._23{width:244.444800px;}
._21{width:249.153600px;}
.fc8{color:rgb(128,57,42);}
.fc7{color:rgb(238,112,78);}
.fc6{color:transparent;}
.fc4{color:rgb(40,69,83);}
.fc3{color:rgb(243,94,72);}
.fc1{color:rgb(115,45,41);}
.fc9{color:rgb(26,26,26);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:60.000000px;}
.fsb{font-size:60.954600px;}
.fsd{font-size:60.954867px;}
.fs2{font-size:66.000000px;}
.fsc{font-size:69.662400px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fse{font-size:96.000000px;}
.fs8{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.fs9{font-size:126.000000px;}
.fsa{font-size:144.000000px;}
.fs4{font-size:150.000000px;}
.fs3{font-size:300.000000px;}
.fs6{font-size:420.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.000000px;}
.y32c{bottom:58.426050px;}
.y111{bottom:65.986350px;}
.y215{bottom:68.814450px;}
.y2f5{bottom:69.103950px;}
.y6e{bottom:72.000000px;}
.ydd{bottom:74.206350px;}
.y32b{bottom:76.426050px;}
.y138{bottom:76.535400px;}
.y6{bottom:78.000000px;}
.y181{bottom:80.961450px;}
.y25c{bottom:82.814850px;}
.y28e{bottom:82.932150px;}
.y214{bottom:86.814450px;}
.y24b{bottom:86.996100px;}
.y2f8{bottom:89.995200px;}
.y6d{bottom:90.000000px;}
.y247{bottom:91.530000px;}
.ydc{bottom:92.206350px;}
.y26b{bottom:93.207750px;}
.y329{bottom:93.515700px;}
.y32a{bottom:94.426050px;}
.y137{bottom:94.535400px;}
.y1bb{bottom:95.677350px;}
.y12c{bottom:95.682300px;}
.y29b{bottom:98.901450px;}
.y180{bottom:98.961450px;}
.y110{bottom:99.902100px;}
.y15e{bottom:100.783200px;}
.y25b{bottom:100.814850px;}
.y5{bottom:102.000000px;}
.y2a1{bottom:102.047250px;}
.y2c2{bottom:102.114900px;}
.y94{bottom:102.562200px;}
.y16{bottom:103.188150px;}
.y256{bottom:104.145600px;}
.y213{bottom:104.814450px;}
.y24a{bottom:104.996100px;}
.y28d{bottom:106.932150px;}
.y6c{bottom:108.000000px;}
.y64{bottom:108.680250px;}
.y246{bottom:109.530000px;}
.ydb{bottom:110.206350px;}
.y328{bottom:111.515700px;}
.y1ba{bottom:113.677350px;}
.y12b{bottom:113.682300px;}
.y2f7{bottom:113.995200px;}
.y1df{bottom:114.347100px;}
.y2ba{bottom:114.492150px;}
.y31e{bottom:114.892800px;}
.y29a{bottom:116.901450px;}
.y17f{bottom:116.961450px;}
.y26a{bottom:117.207750px;}
.y15d{bottom:118.783200px;}
.y25a{bottom:118.814850px;}
.y9{bottom:118.899300px;}
.y2a0{bottom:120.047250px;}
.y2c1{bottom:120.114900px;}
.y255{bottom:122.145600px;}
.y6b{bottom:126.000000px;}
.y93{bottom:126.562200px;}
.y136{bottom:127.668750px;}
.yda{bottom:128.206350px;}
.y15{bottom:128.688150px;}
.y327{bottom:129.515700px;}
.y28c{bottom:130.932150px;}
.y1b9{bottom:131.677350px;}
.y12a{bottom:131.682300px;}
.y2b9{bottom:132.492150px;}
.y54{bottom:132.680250px;}
.y10f{bottom:133.817700px;}
.y299{bottom:134.901450px;}
.y15c{bottom:136.783200px;}
.y2f9{bottom:137.995200px;}
.y29f{bottom:138.047250px;}
.y2c0{bottom:138.114900px;}
.y1de{bottom:138.347100px;}
.y31d{bottom:138.892800px;}
.y229{bottom:140.145600px;}
.y269{bottom:141.207750px;}
.y8{bottom:142.899300px;}
.y6a{bottom:144.000000px;}
.y324{bottom:146.206350px;}
.y326{bottom:147.515700px;}
.y1b8{bottom:149.677350px;}
.y61{bottom:149.721450px;}
.y4{bottom:150.000000px;}
.y2b8{bottom:150.492150px;}
.y92{bottom:150.562200px;}
.y298{bottom:152.901450px;}
.y14{bottom:154.188150px;}
.y135{bottom:154.668750px;}
.y15b{bottom:154.783200px;}
.y28b{bottom:154.932150px;}
.y2bf{bottom:156.114900px;}
.y63{bottom:156.680250px;}
.y228{bottom:158.145600px;}
.y2b5{bottom:158.287350px;}
.y2c9{bottom:161.651250px;}
.y2c6{bottom:161.995200px;}
.y1dd{bottom:162.347100px;}
.y31c{bottom:162.892800px;}
.y125{bottom:164.767650px;}
.y268{bottom:165.207750px;}
.y325{bottom:165.515700px;}
.y7{bottom:166.899300px;}
.y60{bottom:167.721450px;}
.y10e{bottom:168.808950px;}
.y297{bottom:170.901450px;}
.y68{bottom:171.043200px;}
.y24e{bottom:173.169300px;}
.y3{bottom:174.000000px;}
.y91{bottom:174.562200px;}
.y2b4{bottom:176.287350px;}
.y28a{bottom:178.932150px;}
.y2c8{bottom:179.651250px;}
.y13{bottom:179.688150px;}
.y62{bottom:180.680250px;}
.y134{bottom:181.668750px;}
.y5f{bottom:185.721450px;}
.y2c5{bottom:185.995200px;}
.y1dc{bottom:186.347100px;}
.y31b{bottom:186.892800px;}
.y67{bottom:189.043200px;}
.y24d{bottom:191.169300px;}
.y53{bottom:192.680250px;}
.y2b3{bottom:194.287350px;}
.y123{bottom:194.357550px;}
.y124{bottom:194.357700px;}
.y2c7{bottom:197.651250px;}
.y2{bottom:198.000000px;}
.y90{bottom:198.562200px;}
.y289{bottom:202.932150px;}
.y10d{bottom:203.800350px;}
.y39{bottom:204.680250px;}
.y12{bottom:205.188150px;}
.y66{bottom:207.043200px;}
.y133{bottom:208.668750px;}
.y24c{bottom:209.169300px;}
.y2c4{bottom:209.995200px;}
.y1db{bottom:210.347100px;}
.y31a{bottom:210.892800px;}
.y267{bottom:213.207750px;}
.y18e{bottom:221.102400px;}
.y205{bottom:222.000000px;}
.yec{bottom:226.206150px;}
.y288{bottom:226.932150px;}
.y11d{bottom:228.635400px;}
.y38{bottom:228.680250px;}
.y2f4{bottom:228.680400px;}
.y11{bottom:230.688150px;}
.y2b2{bottom:233.995200px;}
.y1da{bottom:234.347100px;}
.y132{bottom:235.668750px;}
.y266{bottom:237.207750px;}
.y18d{bottom:239.102400px;}
.y204{bottom:246.000000px;}
.y8f{bottom:246.562200px;}
.y287{bottom:250.932150px;}
.y37{bottom:252.680250px;}
.y2f3{bottom:252.680400px;}
.y10{bottom:256.188150px;}
.y2b1{bottom:257.995200px;}
.y1d9{bottom:258.347100px;}
.y319{bottom:258.892800px;}
.y265{bottom:261.207750px;}
.y131{bottom:262.668750px;}
.y2ef{bottom:268.625100px;}
.y203{bottom:270.000000px;}
.y8e{bottom:270.562200px;}
.y286{bottom:274.932150px;}
.y36{bottom:276.680250px;}
.y10c{bottom:276.680400px;}
.y1f7{bottom:278.350200px;}
.y11e{bottom:279.761071px;}
.yf{bottom:281.688150px;}
.y2b0{bottom:281.995200px;}
.y1d8{bottom:282.347100px;}
.y52{bottom:282.680250px;}
.y318{bottom:282.892800px;}
.y264{bottom:285.207750px;}
.y130{bottom:285.960300px;}
.y1f8{bottom:287.388300px;}
.y18c{bottom:288.063000px;}
.y2ee{bottom:292.625100px;}
.y202{bottom:294.000000px;}
.y8d{bottom:294.562200px;}
.y285{bottom:298.932150px;}
.y35{bottom:300.680250px;}
.y10b{bottom:300.680400px;}
.yab{bottom:305.583150px;}
.y2af{bottom:305.995200px;}
.y1d7{bottom:306.347100px;}
.ye{bottom:307.188150px;}
.y263{bottom:309.207750px;}
.yca{bottom:311.365800px;}
.y51{bottom:312.680250px;}
.y18b{bottom:315.063000px;}
.y2ed{bottom:316.625100px;}
.y8c{bottom:318.562200px;}
.y34{bottom:324.680250px;}
.y10a{bottom:324.680400px;}
.y2ae{bottom:329.995200px;}
.y1d6{bottom:330.347100px;}
.y11f{bottom:330.886741px;}
.y317{bottom:330.892800px;}
.yd{bottom:332.688150px;}
.yc9{bottom:335.365800px;}
.y2ec{bottom:340.625100px;}
.y157{bottom:341.160600px;}
.y201{bottom:342.000000px;}
.y18a{bottom:342.063000px;}
.y8b{bottom:342.562200px;}
.y50{bottom:342.680250px;}
.y2f1{bottom:344.590500px;}
.y2b6{bottom:345.308250px;}
.y284{bottom:346.932150px;}
.y1f6{bottom:348.231450px;}
.y17d{bottom:348.267150px;}
.y3d{bottom:348.680250px;}
.y109{bottom:348.680400px;}
.y2c3{bottom:353.995200px;}
.y1d5{bottom:354.347100px;}
.y316{bottom:354.892800px;}
.y262{bottom:357.207750px;}
.y1ac{bottom:357.283950px;}
.y200{bottom:366.000000px;}
.y8a{bottom:366.562200px;}
.y189{bottom:369.063000px;}
.y283{bottom:370.932150px;}
.y1f5{bottom:372.231450px;}
.y33{bottom:372.680250px;}
.y108{bottom:372.680400px;}
.y156{bottom:377.160600px;}
.y2ad{bottom:377.995200px;}
.y1d4{bottom:378.347100px;}
.y315{bottom:378.892800px;}
.y261{bottom:381.207750px;}
.y1ab{bottom:381.283950px;}
.y120{bottom:382.012412px;}
.yc8{bottom:383.365800px;}
.yc{bottom:383.688150px;}
.y2eb{bottom:388.625100px;}
.y59{bottom:388.782600px;}
.y1ff{bottom:390.000000px;}
.y89{bottom:390.562200px;}
.y1b7{bottom:391.153500px;}
.y282{bottom:394.932150px;}
.y188{bottom:396.063000px;}
.y1f4{bottom:396.231450px;}
.y32{bottom:396.680250px;}
.y107{bottom:396.680400px;}
.y2ac{bottom:401.995200px;}
.y1e7{bottom:402.248250px;}
.y1d3{bottom:402.347100px;}
.y4f{bottom:402.680250px;}
.y323{bottom:402.892800px;}
.y257{bottom:403.594350px;}
.y260{bottom:405.207750px;}
.y1aa{bottom:405.283950px;}
.yc7{bottom:407.365800px;}
.y1b6{bottom:409.153500px;}
.yb{bottom:409.188150px;}
.y2ea{bottom:412.625100px;}
.y155{bottom:413.160600px;}
.y1fe{bottom:414.000000px;}
.y88{bottom:414.562200px;}
.y281{bottom:418.932150px;}
.y1f3{bottom:420.231450px;}
.y31{bottom:420.680250px;}
.y106{bottom:420.680400px;}
.y187{bottom:423.063000px;}
.y2ab{bottom:425.995200px;}
.y1d2{bottom:426.347100px;}
.y314{bottom:426.892800px;}
.y1b5{bottom:427.153500px;}
.y25f{bottom:429.207750px;}
.y1a9{bottom:429.283950px;}
.yc6{bottom:431.365800px;}
.y4e{bottom:432.680250px;}
.y121{bottom:433.138083px;}
.ya{bottom:434.688150px;}
.y2e9{bottom:436.625100px;}
.y87{bottom:438.562200px;}
.y55{bottom:440.670450px;}
.y280{bottom:442.932150px;}
.y1f2{bottom:444.231450px;}
.y30{bottom:444.680250px;}
.y105{bottom:444.680400px;}
.y1b3{bottom:445.093350px;}
.y1b4{bottom:445.153500px;}
.ya2{bottom:447.048450px;}
.y2cc{bottom:447.393150px;}
.y29c{bottom:449.780850px;}
.y2a4{bottom:449.995200px;}
.y186{bottom:450.063000px;}
.y2f2{bottom:450.659850px;}
.y313{bottom:450.892800px;}
.y25e{bottom:453.207750px;}
.y1a8{bottom:453.283950px;}
.yc5{bottom:455.365800px;}
.y1e6{bottom:456.248250px;}
.y2e8{bottom:460.625100px;}
.y86{bottom:462.562200px;}
.y4d{bottom:462.680250px;}
.y27f{bottom:466.932150px;}
.y1f1{bottom:468.231450px;}
.y2f{bottom:468.680250px;}
.y104{bottom:468.680400px;}
.y2a3{bottom:473.995200px;}
.y1d1{bottom:474.347100px;}
.y312{bottom:474.892800px;}
.y185{bottom:477.063000px;}
.y25d{bottom:477.207750px;}
.y1a7{bottom:477.283950px;}
.yc4{bottom:479.365800px;}
.ya9{bottom:483.048450px;}
.y1e5{bottom:483.248250px;}
.y122{bottom:484.263754px;}
.y1fd{bottom:484.549950px;}
.ya4{bottom:492.048450px;}
.y1f0{bottom:492.231450px;}
.y2e{bottom:492.680250px;}
.y103{bottom:492.680400px;}
.y2a2{bottom:497.995200px;}
.y1d0{bottom:498.347100px;}
.y322{bottom:498.892800px;}
.yc3{bottom:503.365800px;}
.y184{bottom:504.063000px;}
.y2ca{bottom:504.127050px;}
.y2e7{bottom:508.625100px;}
.y1e4{bottom:510.248250px;}
.y15a{bottom:510.350400px;}
.y85{bottom:510.562200px;}
.y27e{bottom:514.932150px;}
.y3c{bottom:516.680250px;}
.y12f{bottom:516.680400px;}
.y126{bottom:517.325850px;}
.y29e{bottom:521.995200px;}
.y1cf{bottom:522.347100px;}
.y311{bottom:522.892800px;}
.y1a6{bottom:525.283950px;}
.yc2{bottom:527.365800px;}
.y159{bottom:528.350400px;}
.y183{bottom:531.063000px;}
.y2e6{bottom:532.625100px;}
.y84{bottom:534.562200px;}
.ya3{bottom:537.048450px;}
.y1e3{bottom:537.248250px;}
.y1fc{bottom:538.549950px;}
.y27d{bottom:538.932150px;}
.y176{bottom:538.980300px;}
.y154{bottom:540.127050px;}
.y1ef{bottom:540.231450px;}
.y2d{bottom:540.680250px;}
.y102{bottom:540.680400px;}
.y296{bottom:545.995200px;}
.y1ce{bottom:546.347100px;}
.y158{bottom:546.350400px;}
.y310{bottom:546.892800px;}
.y26e{bottom:547.356300px;}
.y1a5{bottom:549.283950px;}
.yc1{bottom:551.365800px;}
.y58{bottom:551.749050px;}
.y4c{bottom:552.680250px;}
.ya1{bottom:555.988200px;}
.y2be{bottom:556.271550px;}
.y2e5{bottom:556.625100px;}
.y175{bottom:556.980300px;}
.y83{bottom:558.562200px;}
.y27c{bottom:562.932150px;}
.y182{bottom:563.320050px;}
.y1ee{bottom:564.231450px;}
.y1e2{bottom:564.248250px;}
.y2c{bottom:564.680250px;}
.y101{bottom:564.680400px;}
.y26d{bottom:565.356300px;}
.y1fb{bottom:565.549950px;}
.y295{bottom:569.995200px;}
.y1cd{bottom:570.347100px;}
.y321{bottom:570.892800px;}
.y69{bottom:572.939100px;}
.y1a4{bottom:573.283950px;}
.ya0{bottom:573.988200px;}
.y2bd{bottom:574.271550px;}
.y174{bottom:574.980300px;}
.yc0{bottom:575.365800px;}
.y153{bottom:576.127050px;}
.y65{bottom:580.577700px;}
.y2e4{bottom:580.625100px;}
.ye3{bottom:582.170850px;}
.y82{bottom:582.562200px;}
.y4b{bottom:582.680250px;}
.y26c{bottom:583.356300px;}
.y27b{bottom:586.932150px;}
.y1ed{bottom:588.231450px;}
.y2b{bottom:588.680250px;}
.y100{bottom:588.680400px;}
.y1e1{bottom:591.248250px;}
.y9f{bottom:591.988200px;}
.y2bc{bottom:592.271550px;}
.y1fa{bottom:592.549950px;}
.y14e{bottom:592.591950px;}
.y173{bottom:592.980300px;}
.y259{bottom:593.995200px;}
.y1cc{bottom:594.347100px;}
.y30f{bottom:594.892800px;}
.y1a3{bottom:597.283950px;}
.ybf{bottom:599.365800px;}
.y81{bottom:606.562200px;}
.y2aa{bottom:608.031450px;}
.y9e{bottom:609.988200px;}
.ya8{bottom:610.014900px;}
.y2bb{bottom:610.271550px;}
.y14d{bottom:610.591950px;}
.y27a{bottom:610.932150px;}
.y172{bottom:610.980300px;}
.y129{bottom:612.079350px;}
.ye2{bottom:612.170850px;}
.y1ec{bottom:612.231450px;}
.y2a{bottom:612.680250px;}
.yff{bottom:612.680400px;}
.y258{bottom:617.995200px;}
.y1e0{bottom:618.248250px;}
.y1cb{bottom:618.347100px;}
.y30e{bottom:618.892800px;}
.y1f9{bottom:619.549950px;}
.y1a2{bottom:621.283950px;}
.ybe{bottom:623.365800px;}
.y14b{bottom:623.905500px;}
.y9d{bottom:627.988200px;}
.y14c{bottom:628.591950px;}
.y2e3{bottom:628.625100px;}
.y171{bottom:628.724400px;}
.y128{bottom:630.079350px;}
.y80{bottom:630.562200px;}
.y279{bottom:634.932150px;}
.y2a9{bottom:635.031450px;}
.y1eb{bottom:636.231450px;}
.y29{bottom:636.680250px;}
.yfe{bottom:636.680400px;}
.y5e{bottom:638.759850px;}
.y271{bottom:638.801550px;}
.y245{bottom:641.995200px;}
.ye1{bottom:642.170850px;}
.y4a{bottom:642.680250px;}
.y320{bottom:642.892800px;}
.y1a1{bottom:645.283950px;}
.ya7{bottom:646.014900px;}
.ybd{bottom:647.365800px;}
.y14a{bottom:647.905500px;}
.y127{bottom:648.079350px;}
.y5b{bottom:648.809100px;}
.y227{bottom:651.472950px;}
.y2e2{bottom:652.625100px;}
.y170{bottom:652.724400px;}
.y7f{bottom:654.562200px;}
.y5d{bottom:656.759850px;}
.y270{bottom:656.801550px;}
.y278{bottom:658.932150px;}
.y254{bottom:659.518500px;}
.y1ea{bottom:660.231450px;}
.y28{bottom:660.680250px;}
.yfd{bottom:660.680400px;}
.y2a8{bottom:662.031450px;}
.y96{bottom:664.541550px;}
.y244{bottom:665.995200px;}
.y30d{bottom:666.892800px;}
.y1a0{bottom:669.283950px;}
.ybc{bottom:671.365800px;}
.y149{bottom:671.905500px;}
.ye0{bottom:672.170850px;}
.y49{bottom:672.680250px;}
.y5c{bottom:674.759850px;}
.y26f{bottom:674.801550px;}
.y226{bottom:675.472950px;}
.ycd{bottom:676.055550px;}
.y2e1{bottom:676.625100px;}
.y16f{bottom:676.724400px;}
.y7e{bottom:678.562200px;}
.y277{bottom:682.932150px;}
.y1e9{bottom:684.231450px;}
.y27{bottom:684.680250px;}
.yfc{bottom:684.680400px;}
.y2a7{bottom:689.031450px;}
.y11b{bottom:689.872650px;}
.y243{bottom:689.995200px;}
.y30c{bottom:690.892800px;}
.y19f{bottom:693.283950px;}
.ybb{bottom:695.365800px;}
.y148{bottom:695.905500px;}
.y225{bottom:699.472950px;}
.y2e0{bottom:700.625100px;}
.y16e{bottom:700.724400px;}
.ydf{bottom:702.170850px;}
.y7d{bottom:702.562200px;}
.y48{bottom:702.680250px;}
.y152{bottom:703.093350px;}
.y276{bottom:706.932150px;}
.y1ca{bottom:708.231450px;}
.y26{bottom:708.680250px;}
.y12e{bottom:708.680400px;}
.ycc{bottom:710.555550px;}
.y307{bottom:713.173200px;}
.y253{bottom:713.518500px;}
.y242{bottom:713.995200px;}
.y57{bottom:714.715500px;}
.y31f{bottom:714.892800px;}
.y2a6{bottom:716.031450px;}
.ycb{bottom:719.365800px;}
.y147{bottom:719.905500px;}
.y11a{bottom:721.855103px;}
.y224{bottom:723.472950px;}
.y2df{bottom:724.625100px;}
.y16d{bottom:724.724400px;}
.y275{bottom:730.932150px;}
.yde{bottom:732.170850px;}
.y1c9{bottom:732.231450px;}
.y25{bottom:732.680250px;}
.yfb{bottom:732.680400px;}
.y241{bottom:737.995200px;}
.y112{bottom:738.709050px;}
.y306{bottom:738.892800px;}
.y151{bottom:739.093350px;}
.y252{bottom:740.518500px;}
.y19e{bottom:741.283950px;}
.y2a5{bottom:743.031450px;}
.yba{bottom:743.365800px;}
.y146{bottom:743.905500px;}
.y9c{bottom:747.080250px;}
.y223{bottom:747.472950px;}
.y16c{bottom:748.724400px;}
.y7c{bottom:750.562200px;}
.y1c8{bottom:756.231450px;}
.y3b{bottom:756.680250px;}
.yfa{bottom:756.680400px;}
.yeb{bottom:759.690600px;}
.y240{bottom:761.995200px;}
.y47{bottom:762.680250px;}
.y305{bottom:762.892800px;}
.y19d{bottom:765.283950px;}
.ye5{bottom:766.861350px;}
.yb9{bottom:767.365800px;}
.y251{bottom:767.518500px;}
.y145{bottom:767.905500px;}
.y9b{bottom:768.680250px;}
.y222{bottom:771.472950px;}
.y2de{bottom:772.625100px;}
.y16b{bottom:772.724400px;}
.ya6{bottom:772.981200px;}
.y7b{bottom:774.562200px;}
.y274{bottom:778.932150px;}
.y1c7{bottom:780.231450px;}
.y24{bottom:780.680250px;}
.yf9{bottom:780.680400px;}
.y23f{bottom:785.995200px;}
.y304{bottom:786.892800px;}
.y19c{bottom:789.283950px;}
.yea{bottom:789.690600px;}
.y9a{bottom:790.280250px;}
.ye4{bottom:790.861350px;}
.yb8{bottom:791.365800px;}
.y144{bottom:791.905500px;}
.y46{bottom:792.680250px;}
.y250{bottom:794.518500px;}
.y221{bottom:795.472950px;}
.y2dd{bottom:796.625100px;}
.y212{bottom:796.933050px;}
.y7a{bottom:798.562200px;}
.y273{bottom:802.932150px;}
.y116{bottom:804.204768px;}
.y1c6{bottom:804.231450px;}
.y23{bottom:804.680250px;}
.yf8{bottom:804.680400px;}
.y29d{bottom:807.261300px;}
.y2d1{bottom:807.874050px;}
.ya5{bottom:808.981200px;}
.y23e{bottom:809.995200px;}
.y30b{bottom:810.892800px;}
.y99{bottom:811.880250px;}
.y19b{bottom:813.283950px;}
.yd9{bottom:814.861350px;}
.y211{bottom:814.933050px;}
.yb7{bottom:815.365800px;}
.y220{bottom:819.472950px;}
.ye9{bottom:819.690600px;}
.y2dc{bottom:820.625100px;}
.y16a{bottom:820.724400px;}
.y24f{bottom:821.518500px;}
.y79{bottom:822.562200px;}
.y45{bottom:822.680250px;}
.y113{bottom:826.026515px;}
.y272{bottom:826.932150px;}
.y1c5{bottom:828.231450px;}
.y22{bottom:828.680250px;}
.yf7{bottom:828.680400px;}
.y210{bottom:832.933050px;}
.y98{bottom:833.480250px;}
.y249{bottom:833.995200px;}
.y303{bottom:834.892800px;}
.y19a{bottom:837.283950px;}
.yd8{bottom:838.861350px;}
.yb6{bottom:839.365800px;}
.y143{bottom:839.905500px;}
.y233{bottom:840.987300px;}
.y20f{bottom:843.113400px;}
.y21f{bottom:843.472950px;}
.y2db{bottom:844.625100px;}
.y169{bottom:844.724400px;}
.y78{bottom:846.562200px;}
.ye8{bottom:849.690600px;}
.y1c4{bottom:852.231450px;}
.y21{bottom:852.680250px;}
.yf6{bottom:852.680400px;}
.y97{bottom:855.080250px;}
.y23d{bottom:857.995200px;}
.y302{bottom:858.892800px;}
.y199{bottom:861.283950px;}
.y2d0{bottom:861.874050px;}
.yd7{bottom:862.861350px;}
.yb5{bottom:863.365800px;}
.y142{bottom:863.905500px;}
.y232{bottom:864.987300px;}
.y150{bottom:866.059800px;}
.y20e{bottom:867.113400px;}
.y21e{bottom:867.472950px;}
.y168{bottom:868.724400px;}
.y117{bottom:869.700485px;}
.y77{bottom:870.562200px;}
.y1c3{bottom:876.231450px;}
.y20{bottom:876.680250px;}
.yf5{bottom:876.680400px;}
.y56{bottom:877.681800px;}
.ye7{bottom:879.690600px;}
.y17c{bottom:879.799200px;}
.y23c{bottom:881.995200px;}
.y44{bottom:882.680250px;}
.y301{bottom:882.892800px;}
.y198{bottom:885.283950px;}
.yd6{bottom:886.861350px;}
.yb4{bottom:887.365800px;}
.y141{bottom:887.905500px;}
.y2cf{bottom:888.874050px;}
.y231{bottom:888.987300px;}
.y2f6{bottom:890.582100px;}
.y20d{bottom:891.113400px;}
.y21d{bottom:891.472950px;}
.y2da{bottom:892.625100px;}
.y167{bottom:892.724400px;}
.y76{bottom:894.562200px;}
.y17e{bottom:894.785700px;}
.y294{bottom:895.503900px;}
.y1c2{bottom:900.231450px;}
.y1f{bottom:900.680250px;}
.yf4{bottom:900.680400px;}
.y14f{bottom:902.059800px;}
.y23b{bottom:905.995200px;}
.y30a{bottom:906.892800px;}
.y197{bottom:909.283950px;}
.ye6{bottom:909.690600px;}
.y17b{bottom:909.799200px;}
.yd5{bottom:910.861350px;}
.yb3{bottom:911.365800px;}
.y140{bottom:911.905500px;}
.y43{bottom:912.680250px;}
.y230{bottom:912.987300px;}
.y114{bottom:913.343979px;}
.y293{bottom:913.503900px;}
.y20c{bottom:915.113400px;}
.y21c{bottom:915.472950px;}
.y2ce{bottom:915.874050px;}
.y2d9{bottom:916.625100px;}
.y166{bottom:916.724400px;}
.y75{bottom:918.562200px;}
.y1e8{bottom:924.231450px;}
.y1e{bottom:924.680250px;}
.y12d{bottom:924.680400px;}
.y23a{bottom:929.995200px;}
.y300{bottom:930.892800px;}
.y196{bottom:933.283950px;}
.yd4{bottom:934.861350px;}
.y118{bottom:935.196203px;}
.yb2{bottom:935.365800px;}
.y13f{bottom:935.905500px;}
.y20b{bottom:939.113400px;}
.y21b{bottom:939.472950px;}
.y17a{bottom:939.799200px;}
.y2d8{bottom:940.625100px;}
.y165{bottom:940.724400px;}
.y74{bottom:942.562200px;}
.y2cd{bottom:942.874050px;}
.y292{bottom:944.779500px;}
.y1c1{bottom:948.231450px;}
.y1d{bottom:948.680250px;}
.yf3{bottom:948.680400px;}
.y1b2{bottom:949.144350px;}
.y2b7{bottom:953.584500px;}
.y248{bottom:953.995200px;}
.y17{bottom:954.771150px;}
.y2ff{bottom:954.892800px;}
.y95{bottom:955.554300px;}
.yd3{bottom:958.861350px;}
.yb1{bottom:959.365800px;}
.y13e{bottom:959.905500px;}
.y22f{bottom:960.987300px;}
.y2d7{bottom:964.625100px;}
.y73{bottom:966.562200px;}
.y179{bottom:969.799200px;}
.y291{bottom:971.779500px;}
.y1c0{bottom:972.231450px;}
.y42{bottom:972.680250px;}
.yf2{bottom:972.680400px;}
.y239{bottom:977.995200px;}
.y2fe{bottom:978.892800px;}
.y1b1{bottom:979.144350px;}
.y195{bottom:981.283950px;}
.yd2{bottom:982.861350px;}
.yb0{bottom:983.365800px;}
.y13d{bottom:983.905500px;}
.y22e{bottom:984.987300px;}
.y3e{bottom:985.547550px;}
.y20a{bottom:987.113400px;}
.y21a{bottom:987.472950px;}
.y2d6{bottom:988.625100px;}
.y164{bottom:988.724400px;}
.y72{bottom:990.562200px;}
.y1bf{bottom:996.231450px;}
.y3a{bottom:996.504600px;}
.y1c{bottom:996.680250px;}
.yf1{bottom:996.680400px;}
.y290{bottom:998.779500px;}
.y178{bottom:999.799200px;}
.y115{bottom:1000.661443px;}
.y119{bottom:1000.691921px;}
.y238{bottom:1001.995200px;}
.y41{bottom:1002.680250px;}
.y309{bottom:1002.892800px;}
.y194{bottom:1005.283950px;}
.yd1{bottom:1006.861350px;}
.yaf{bottom:1007.365800px;}
.y13c{bottom:1007.905500px;}
.y22d{bottom:1008.987300px;}
.y1b0{bottom:1009.144350px;}
.y209{bottom:1011.113400px;}
.y219{bottom:1011.472950px;}
.y163{bottom:1012.724400px;}
.y71{bottom:1014.562200px;}
.y1be{bottom:1020.231450px;}
.y1b{bottom:1020.680250px;}
.yf0{bottom:1020.680400px;}
.y237{bottom:1025.995200px;}
.y2fd{bottom:1026.892800px;}
.y193{bottom:1029.283950px;}
.y177{bottom:1029.799200px;}
.yd0{bottom:1030.861350px;}
.y28f{bottom:1031.036550px;}
.yae{bottom:1031.365800px;}
.y13b{bottom:1031.905500px;}
.y40{bottom:1032.680250px;}
.y22c{bottom:1032.987300px;}
.y11c{bottom:1033.723050px;}
.y208{bottom:1035.113400px;}
.y218{bottom:1035.472950px;}
.y2d5{bottom:1036.625100px;}
.y162{bottom:1036.724400px;}
.y70{bottom:1038.562200px;}
.y1af{bottom:1039.144350px;}
.y1bd{bottom:1044.231450px;}
.y1a{bottom:1044.680250px;}
.yef{bottom:1044.680400px;}
.y236{bottom:1049.995200px;}
.y2fc{bottom:1050.892800px;}
.y192{bottom:1053.283950px;}
.ycf{bottom:1054.861350px;}
.yad{bottom:1055.365800px;}
.y13a{bottom:1055.905500px;}
.y22b{bottom:1056.987300px;}
.y207{bottom:1059.113400px;}
.y217{bottom:1059.472950px;}
.y2d4{bottom:1060.625100px;}
.y161{bottom:1060.724400px;}
.y6f{bottom:1062.562200px;}
.y3f{bottom:1062.680250px;}
.y1bc{bottom:1068.231450px;}
.y19{bottom:1068.680250px;}
.yee{bottom:1068.680400px;}
.y1ae{bottom:1069.144350px;}
.y235{bottom:1073.995200px;}
.y2fb{bottom:1074.892800px;}
.y191{bottom:1077.283950px;}
.yce{bottom:1078.861350px;}
.yac{bottom:1079.365800px;}
.y139{bottom:1079.905500px;}
.y22a{bottom:1080.987300px;}
.y206{bottom:1083.113400px;}
.y216{bottom:1083.472950px;}
.y2d3{bottom:1084.625100px;}
.y160{bottom:1084.724400px;}
.y18{bottom:1092.680250px;}
.yed{bottom:1092.680400px;}
.y234{bottom:1097.995200px;}
.y1ad{bottom:1099.144350px;}
.y190{bottom:1101.283950px;}
.y2d2{bottom:1108.625100px;}
.y15f{bottom:1108.724400px;}
.y2fa{bottom:1122.892800px;}
.y18f{bottom:1125.283950px;}
.y5a{bottom:1137.052500px;}
.y2f0{bottom:1139.020500px;}
.y2cb{bottom:1139.210250px;}
.y308{bottom:1146.892800px;}
.yaa{bottom:1167.052500px;}
.h11{height:40.626479px;}
.h13{height:40.626657px;}
.h12{height:46.430262px;}
.h5{height:47.988281px;}
.hc{height:50.214844px;}
.h10{height:50.742188px;}
.h4{height:55.236328px;}
.h15{height:56.162109px;}
.h3{height:60.257812px;}
.hd{height:60.890625px;}
.h17{height:61.778320px;}
.ha{height:78.626953px;}
.h16{height:89.859375px;}
.h14{height:91.872000px;}
.h9{height:100.429688px;}
.he{height:101.091797px;}
.h6{height:112.324219px;}
.h2{height:113.430000px;}
.h8{height:125.537109px;}
.hf{height:134.789062px;}
.h7{height:251.074219px;}
.hb{height:393.134766px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc8{left:43.447500px;}
.x16{left:46.771650px;}
.x14{left:54.000000px;}
.x23{left:56.614950px;}
.x37{left:60.267450px;}
.x26{left:61.617300px;}
.x82{left:63.779550px;}
.x84{left:67.035000px;}
.x77{left:68.126400px;}
.x24{left:69.534900px;}
.x83{left:70.582650px;}
.x36{left:72.374400px;}
.x35{left:73.575600px;}
.x69{left:75.472500px;}
.x38{left:78.761100px;}
.xd9{left:81.363150px;}
.x27{left:85.523550px;}
.x3a{left:87.165300px;}
.x1f{left:89.291400px;}
.x3b{left:94.317750px;}
.xb{left:100.629900px;}
.x29{left:102.047250px;}
.x25{left:112.557300px;}
.xce{left:113.664150px;}
.xda{left:117.303000px;}
.xca{left:122.031450px;}
.x78{left:126.994050px;}
.x80{left:129.753450px;}
.x28{left:132.508500px;}
.x7f{left:137.033700px;}
.x2d{left:144.567000px;}
.x7e{left:146.613750px;}
.xd{left:149.136150px;}
.xcd{left:152.435400px;}
.xf{left:157.640100px;}
.x46{left:158.984025px;}
.x8e{left:161.525550px;}
.xbc{left:163.436400px;}
.x8c{left:164.965650px;}
.x2c{left:166.144050px;}
.x91{left:168.123900px;}
.x8f{left:169.227600px;}
.x3e{left:170.459550px;}
.x8d{left:180.692250px;}
.xcf{left:185.170500px;}
.x4a{left:189.461400px;}
.xc9{left:193.035600px;}
.xe{left:195.590550px;}
.x45{left:197.080650px;}
.x15{left:198.779550px;}
.x1d{left:199.842450px;}
.x48{left:202.414178px;}
.x4b{left:207.329700px;}
.x2b{left:208.346400px;}
.x7d{left:210.576150px;}
.xc4{left:213.971400px;}
.x64{left:217.961100px;}
.x65{left:219.711600px;}
.x63{left:229.665150px;}
.x62{left:234.015750px;}
.x4c{left:235.679100px;}
.x6b{left:240.625050px;}
.xbe{left:244.257300px;}
.x44{left:248.263350px;}
.x8a{left:251.685450px;}
.x99{left:260.535900px;}
.x12{left:261.634050px;}
.x4d{left:264.018402px;}
.x89{left:269.952000px;}
.x8b{left:271.585350px;}
.x11{left:275.974350px;}
.x61{left:279.111000px;}
.x49{left:281.927700px;}
.x4e{left:292.357704px;}
.x8{left:302.741250px;}
.x6c{left:303.921000px;}
.x13{left:309.330750px;}
.xad{left:311.456700px;}
.xbf{left:317.122050px;}
.x98{left:319.686150px;}
.x4f{left:320.697006px;}
.xa8{left:322.332900px;}
.x10{left:327.401550px;}
.xa7{left:336.617250px;}
.xa6{left:338.244750px;}
.x95{left:342.265050px;}
.x43{left:343.479300px;}
.x50{left:349.036308px;}
.x93{left:351.006450px;}
.x5b{left:354.898200px;}
.xb2{left:357.165300px;}
.xa5{left:366.918300px;}
.x90{left:368.492550px;}
.x94{left:376.070700px;}
.x51{left:377.375610px;}
.xb6{left:390.766500px;}
.x52{left:405.714912px;}
.xb7{left:408.908700px;}
.xc7{left:412.440900px;}
.xa2{left:413.889900px;}
.xa9{left:418.351950px;}
.xc0{left:420.944850px;}
.x96{left:424.464150px;}
.xc{left:427.322850px;}
.xaa{left:430.511850px;}
.x53{left:434.054214px;}
.x5c{left:438.614100px;}
.x92{left:446.456700px;}
.x42{left:461.777250px;}
.xc1{left:463.464450px;}
.x9{left:466.375950px;}
.x2a{left:467.716500px;}
.x88{left:471.968550px;}
.x6a{left:477.283500px;}
.x9f{left:482.950050px;}
.x7{left:485.254800px;}
.x70{left:486.708600px;}
.x97{left:488.976450px;}
.x54{left:490.732818px;}
.x71{left:496.804500px;}
.x9d{left:506.926500px;}
.xa1{left:510.236250px;}
.xba{left:516.793500px;}
.x55{left:519.072120px;}
.x6{left:523.750950px;}
.x79{left:531.294750px;}
.xb5{left:532.443750px;}
.x60{left:542.165400px;}
.x72{left:545.078400px;}
.xa{left:547.683600px;}
.x67{left:548.905950px;}
.xa0{left:552.273900px;}
.x5f{left:554.446650px;}
.xc5{left:556.120350px;}
.xb9{left:557.597700px;}
.x74{left:562.615800px;}
.x5{left:566.087850px;}
.x73{left:567.200850px;}
.x76{left:569.105100px;}
.x9b{left:572.888100px;}
.x56{left:575.750724px;}
.x5d{left:577.444650px;}
.xb3{left:580.328400px;}
.xa3{left:585.025650px;}
.x81{left:589.399350px;}
.x9e{left:591.250200px;}
.xb4{left:593.446050px;}
.x34{left:594.480750px;}
.x2e{left:596.877450px;}
.x31{left:599.660550px;}
.x30{left:601.213350px;}
.x2f{left:602.495100px;}
.x57{left:604.090026px;}
.x20{left:606.366750px;}
.xa4{left:608.258100px;}
.x5e{left:609.312450px;}
.x7a{left:612.431100px;}
.x7c{left:618.267000px;}
.xd8{left:620.175600px;}
.xc6{left:623.253150px;}
.xb8{left:628.803750px;}
.x66{left:630.644250px;}
.x58{left:632.429328px;}
.x6e{left:635.505150px;}
.x68{left:641.974800px;}
.x9c{left:646.525800px;}
.x9a{left:650.069100px;}
.x75{left:654.454200px;}
.xaf{left:657.458700px;}
.x59{left:660.768630px;}
.xc2{left:664.702800px;}
.x22{left:666.161700px;}
.x1c{left:672.382650px;}
.x19{left:673.473900px;}
.x1a{left:677.099400px;}
.xb1{left:678.501150px;}
.x3d{left:680.527500px;}
.x41{left:684.394350px;}
.x17{left:685.699500px;}
.x5a{left:689.107932px;}
.x40{left:690.136500px;}
.xd0{left:692.004150px;}
.x87{left:693.186750px;}
.xb0{left:695.251650px;}
.x6f{left:701.415750px;}
.x3f{left:702.521700px;}
.xbb{left:710.936550px;}
.xd1{left:712.255650px;}
.xbd{left:716.370750px;}
.x39{left:717.720450px;}
.x85{left:722.308950px;}
.x7b{left:730.036050px;}
.x47{left:733.587801px;}
.xcc{left:735.553950px;}
.xac{left:738.741150px;}
.x21{left:745.841850px;}
.xab{left:755.923800px;}
.x1b{left:765.407550px;}
.xd3{left:770.373300px;}
.xd4{left:773.654550px;}
.xd7{left:777.829350px;}
.x3{left:780.779550px;}
.xd2{left:783.762000px;}
.x1{left:799.913400px;}
.x86{left:803.994900px;}
.xd6{left:810.417750px;}
.xd5{left:814.263000px;}
.x3c{left:817.718550px;}
.x4{left:819.779550px;}
.x1e{left:821.943150px;}
.x18{left:825.788400px;}
.x2{left:838.913400px;}
.x33{left:1050.044550px;}
.xae{left:1103.862900px;}
.x6d{left:1196.259300px;}
.x32{left:1487.394150px;}
.xc3{left:1516.166550px;}
.xcb{left:1628.467350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-4.853333pt;}
.ls6{letter-spacing:-4.480000pt;}
.ls1{letter-spacing:-3.626667pt;}
.ls2{letter-spacing:-2.560000pt;}
.ls7{letter-spacing:-1.866667pt;}
.ls5{letter-spacing:-1.706667pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.054182pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024000pt;}
.ls9{letter-spacing:176.000000pt;}
.ws1a0{word-spacing:-109.386667pt;}
.ws14e{word-spacing:-109.013333pt;}
.wse8{word-spacing:-95.200000pt;}
.wsfc{word-spacing:-91.840000pt;}
.ws1be{word-spacing:-66.666667pt;}
.ws1b2{word-spacing:-60.480000pt;}
.wsc4{word-spacing:-57.866667pt;}
.ws17d{word-spacing:-47.040000pt;}
.wse6{word-spacing:-46.848000pt;}
.wsb{word-spacing:-39.040000pt;}
.ws3d{word-spacing:-36.480000pt;}
.ws27{word-spacing:-35.413333pt;}
.ws115{word-spacing:-26.666667pt;}
.wsfa{word-spacing:-21.333333pt;}
.wsc5{word-spacing:-18.453333pt;}
.ws8e{word-spacing:-17.706667pt;}
.ws3{word-spacing:-16.000000pt;}
.ws19f{word-spacing:-13.333333pt;}
.ws6e{word-spacing:-10.346667pt;}
.ws11{word-spacing:-9.536000pt;}
.wsb5{word-spacing:-9.024000pt;}
.wsd3{word-spacing:-8.256000pt;}
.ws38{word-spacing:-7.808000pt;}
.ws16a{word-spacing:-7.424000pt;}
.ws197{word-spacing:-7.232000pt;}
.ws12{word-spacing:-6.912000pt;}
.ws1b9{word-spacing:-6.784000pt;}
.ws188{word-spacing:-6.528000pt;}
.ws1a4{word-spacing:-6.464000pt;}
.wsf2{word-spacing:-6.336000pt;}
.ws24{word-spacing:-6.208000pt;}
.ws117{word-spacing:-6.080000pt;}
.ws1a8{word-spacing:-5.952000pt;}
.ws78{word-spacing:-5.888000pt;}
.ws17b{word-spacing:-5.504000pt;}
.ws14b{word-spacing:-5.440000pt;}
.ws116{word-spacing:-5.333333pt;}
.wsbd{word-spacing:-5.248000pt;}
.ws18c{word-spacing:-5.056000pt;}
.wscb{word-spacing:-4.992000pt;}
.ws135{word-spacing:-4.928000pt;}
.ws127{word-spacing:-4.800000pt;}
.ws9{word-spacing:-4.736000pt;}
.wsec{word-spacing:-4.672000pt;}
.ws1bd{word-spacing:-4.416000pt;}
.ws1a6{word-spacing:-4.352000pt;}
.ws158{word-spacing:-4.288000pt;}
.ws18e{word-spacing:-4.224000pt;}
.ws142{word-spacing:-4.160000pt;}
.wsaa{word-spacing:-4.096000pt;}
.ws48{word-spacing:-4.032000pt;}
.ws13e{word-spacing:-3.968000pt;}
.ws40{word-spacing:-3.712000pt;}
.ws167{word-spacing:-3.648000pt;}
.ws10c{word-spacing:-3.584000pt;}
.wsde{word-spacing:-3.520000pt;}
.ws4a{word-spacing:-3.456000pt;}
.ws1b4{word-spacing:-3.392000pt;}
.ws123{word-spacing:-3.264000pt;}
.ws102{word-spacing:-3.200000pt;}
.ws5f{word-spacing:-3.136000pt;}
.ws6b{word-spacing:-3.072000pt;}
.wsf{word-spacing:-3.008000pt;}
.ws8b{word-spacing:-2.944000pt;}
.ws1b{word-spacing:-2.880000pt;}
.ws15e{word-spacing:-2.816000pt;}
.wsaf{word-spacing:-2.752000pt;}
.wsca{word-spacing:-2.688000pt;}
.ws104{word-spacing:-2.624000pt;}
.ws98{word-spacing:-2.560000pt;}
.ws7{word-spacing:-2.496000pt;}
.ws10b{word-spacing:-2.432000pt;}
.wsb6{word-spacing:-2.368000pt;}
.ws9c{word-spacing:-2.304000pt;}
.ws13{word-spacing:-2.240000pt;}
.ws66{word-spacing:-2.176000pt;}
.ws2b{word-spacing:-2.048000pt;}
.ws87{word-spacing:-1.984000pt;}
.ws99{word-spacing:-1.920000pt;}
.ws4b{word-spacing:-1.856000pt;}
.ws190{word-spacing:-1.792000pt;}
.ws92{word-spacing:-1.728000pt;}
.ws16d{word-spacing:-1.664000pt;}
.wsd0{word-spacing:-1.600000pt;}
.ws19e{word-spacing:-1.536000pt;}
.wsf6{word-spacing:-1.472000pt;}
.wsf4{word-spacing:-1.408000pt;}
.wsfe{word-spacing:-1.344000pt;}
.wsd8{word-spacing:-1.280000pt;}
.ws129{word-spacing:-1.216000pt;}
.ws54{word-spacing:-1.152000pt;}
.ws60{word-spacing:-1.088000pt;}
.wsd6{word-spacing:-1.024000pt;}
.ws15{word-spacing:-0.960000pt;}
.ws1b3{word-spacing:-0.832000pt;}
.ws17a{word-spacing:-0.768000pt;}
.wsd1{word-spacing:-0.704000pt;}
.ws169{word-spacing:-0.640000pt;}
.ws141{word-spacing:-0.576000pt;}
.ws0{word-spacing:-0.533333pt;}
.ws1b1{word-spacing:-0.512000pt;}
.ws42{word-spacing:-0.448000pt;}
.ws1a{word-spacing:-0.384000pt;}
.ws6f{word-spacing:-0.320000pt;}
.wsf7{word-spacing:-0.266667pt;}
.ws29{word-spacing:-0.256000pt;}
.ws1ae{word-spacing:-0.192000pt;}
.ws85{word-spacing:-0.128000pt;}
.wsfb{word-spacing:-0.085333pt;}
.ws58{word-spacing:-0.074667pt;}
.ws32{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.054182pt;}
.wse4{word-spacing:0.064000pt;}
.wse1{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.192000pt;}
.wsce{word-spacing:0.256000pt;}
.ws33{word-spacing:0.320000pt;}
.wsba{word-spacing:0.384000pt;}
.ws21{word-spacing:0.448000pt;}
.ws195{word-spacing:0.512000pt;}
.ws125{word-spacing:0.576000pt;}
.ws13d{word-spacing:0.640000pt;}
.wse9{word-spacing:0.704000pt;}
.wscc{word-spacing:0.768000pt;}
.ws16f{word-spacing:0.832000pt;}
.ws1c{word-spacing:0.896000pt;}
.ws70{word-spacing:0.960000pt;}
.wscf{word-spacing:1.024000pt;}
.wsb7{word-spacing:1.088000pt;}
.wsda{word-spacing:1.152000pt;}
.wseb{word-spacing:1.216000pt;}
.ws57{word-spacing:1.280000pt;}
.ws7b{word-spacing:1.344000pt;}
.ws10a{word-spacing:1.408000pt;}
.ws5a{word-spacing:1.472000pt;}
.ws143{word-spacing:1.536000pt;}
.wsf3{word-spacing:1.600000pt;}
.ws13f{word-spacing:1.621333pt;}
.wsc3{word-spacing:1.664000pt;}
.ws69{word-spacing:1.728000pt;}
.ws3b{word-spacing:1.792000pt;}
.ws15a{word-spacing:1.856000pt;}
.ws105{word-spacing:1.920000pt;}
.wsb8{word-spacing:1.984000pt;}
.wsdd{word-spacing:2.048000pt;}
.wsa4{word-spacing:2.112000pt;}
.ws5{word-spacing:2.176000pt;}
.ws61{word-spacing:2.240000pt;}
.ws4c{word-spacing:2.304000pt;}
.ws106{word-spacing:2.368000pt;}
.ws7a{word-spacing:2.432000pt;}
.ws101{word-spacing:2.496000pt;}
.wsb0{word-spacing:2.560000pt;}
.ws10f{word-spacing:2.624000pt;}
.ws55{word-spacing:2.688000pt;}
.ws10d{word-spacing:2.752000pt;}
.ws76{word-spacing:2.880000pt;}
.ws4{word-spacing:2.944000pt;}
.ws186{word-spacing:3.008000pt;}
.ws4d{word-spacing:3.072000pt;}
.ws65{word-spacing:3.200000pt;}
.ws36{word-spacing:3.264000pt;}
.ws28{word-spacing:3.392000pt;}
.wsd2{word-spacing:3.456000pt;}
.ws14{word-spacing:3.584000pt;}
.ws43{word-spacing:3.648000pt;}
.ws134{word-spacing:3.712000pt;}
.ws109{word-spacing:3.776000pt;}
.ws15b{word-spacing:3.840000pt;}
.ws25{word-spacing:3.904000pt;}
.ws17f{word-spacing:3.968000pt;}
.ws180{word-spacing:4.032000pt;}
.ws118{word-spacing:4.096000pt;}
.ws2c{word-spacing:4.160000pt;}
.ws144{word-spacing:4.224000pt;}
.wsc8{word-spacing:4.288000pt;}
.ws56{word-spacing:4.352000pt;}
.wsff{word-spacing:4.416000pt;}
.ws64{word-spacing:4.480000pt;}
.wsc9{word-spacing:4.544000pt;}
.ws1b5{word-spacing:4.608000pt;}
.ws138{word-spacing:4.672000pt;}
.ws13a{word-spacing:4.736000pt;}
.ws3e{word-spacing:4.800000pt;}
.ws140{word-spacing:4.864000pt;}
.ws17e{word-spacing:4.928000pt;}
.wsd4{word-spacing:4.992000pt;}
.wsd7{word-spacing:5.056000pt;}
.ws17{word-spacing:5.120000pt;}
.ws178{word-spacing:5.184000pt;}
.wsa3{word-spacing:5.248000pt;}
.ws83{word-spacing:5.312000pt;}
.ws1aa{word-spacing:5.376000pt;}
.ws187{word-spacing:5.440000pt;}
.ws51{word-spacing:5.504000pt;}
.wse2{word-spacing:5.568000pt;}
.ws84{word-spacing:5.632000pt;}
.ws1a2{word-spacing:5.696000pt;}
.ws14d{word-spacing:5.760000pt;}
.ws7d{word-spacing:5.824000pt;}
.ws41{word-spacing:5.952000pt;}
.ws9f{word-spacing:6.016000pt;}
.wsea{word-spacing:6.080000pt;}
.ws77{word-spacing:6.144000pt;}
.wsa9{word-spacing:6.208000pt;}
.ws189{word-spacing:6.272000pt;}
.ws8c{word-spacing:6.464000pt;}
.ws3c{word-spacing:6.592000pt;}
.ws49{word-spacing:6.656000pt;}
.ws2e{word-spacing:6.720000pt;}
.ws147{word-spacing:6.784000pt;}
.ws10{word-spacing:6.848000pt;}
.ws34{word-spacing:6.912000pt;}
.ws90{word-spacing:6.976000pt;}
.ws20{word-spacing:7.040000pt;}
.ws2{word-spacing:7.098667pt;}
.ws124{word-spacing:7.104000pt;}
.ws103{word-spacing:7.232000pt;}
.ws53{word-spacing:7.296000pt;}
.ws37{word-spacing:7.360000pt;}
.ws5b{word-spacing:7.488000pt;}
.ws50{word-spacing:7.552000pt;}
.ws45{word-spacing:7.616000pt;}
.ws2d{word-spacing:7.680000pt;}
.ws173{word-spacing:7.744000pt;}
.ws19a{word-spacing:7.808000pt;}
.ws162{word-spacing:7.872000pt;}
.ws114{word-spacing:7.936000pt;}
.ws168{word-spacing:8.000000pt;}
.ws1e{word-spacing:8.064000pt;}
.ws153{word-spacing:8.128000pt;}
.ws163{word-spacing:8.192000pt;}
.wsdc{word-spacing:8.256000pt;}
.wsa5{word-spacing:8.320000pt;}
.ws12f{word-spacing:8.384000pt;}
.ws47{word-spacing:8.448000pt;}
.wsd{word-spacing:8.512000pt;}
.wse0{word-spacing:8.576000pt;}
.wse{word-spacing:8.640000pt;}
.ws2a{word-spacing:8.704000pt;}
.wsab{word-spacing:8.768000pt;}
.ws7f{word-spacing:8.832000pt;}
.ws5c{word-spacing:8.896000pt;}
.ws5d{word-spacing:8.960000pt;}
.wsa{word-spacing:9.024000pt;}
.wsee{word-spacing:9.088000pt;}
.ws154{word-spacing:9.152000pt;}
.wsd5{word-spacing:9.216000pt;}
.wscd{word-spacing:9.280000pt;}
.ws86{word-spacing:9.344000pt;}
.ws89{word-spacing:9.408000pt;}
.ws96{word-spacing:9.472000pt;}
.ws132{word-spacing:9.536000pt;}
.ws193{word-spacing:9.600000pt;}
.ws128{word-spacing:9.664000pt;}
.ws4e{word-spacing:9.728000pt;}
.ws174{word-spacing:9.792000pt;}
.ws150{word-spacing:9.856000pt;}
.ws120{word-spacing:9.920000pt;}
.ws6d{word-spacing:9.984000pt;}
.ws198{word-spacing:10.048000pt;}
.ws15c{word-spacing:10.112000pt;}
.ws159{word-spacing:10.176000pt;}
.ws183{word-spacing:10.304000pt;}
.ws13c{word-spacing:10.368000pt;}
.ws97{word-spacing:10.560000pt;}
.ws72{word-spacing:10.624000pt;}
.ws157{word-spacing:10.688000pt;}
.ws152{word-spacing:10.880000pt;}
.ws67{word-spacing:10.944000pt;}
.ws8a{word-spacing:11.008000pt;}
.ws14c{word-spacing:11.072000pt;}
.ws196{word-spacing:11.136000pt;}
.ws1b0{word-spacing:11.264000pt;}
.wsad{word-spacing:11.392000pt;}
.ws18f{word-spacing:11.456000pt;}
.ws9e{word-spacing:11.520000pt;}
.ws91{word-spacing:11.584000pt;}
.wsfd{word-spacing:11.712000pt;}
.ws88{word-spacing:11.776000pt;}
.wsbc{word-spacing:11.840000pt;}
.ws119{word-spacing:11.904000pt;}
.ws22{word-spacing:11.968000pt;}
.ws7e{word-spacing:12.032000pt;}
.ws1f{word-spacing:12.096000pt;}
.ws192{word-spacing:12.160000pt;}
.ws181{word-spacing:12.288000pt;}
.ws59{word-spacing:12.352000pt;}
.ws15f{word-spacing:12.416000pt;}
.ws1ac{word-spacing:12.480000pt;}
.wsf0{word-spacing:12.544000pt;}
.wsb4{word-spacing:12.608000pt;}
.ws177{word-spacing:12.736000pt;}
.wsc1{word-spacing:12.800000pt;}
.ws52{word-spacing:12.864000pt;}
.ws1ab{word-spacing:12.992000pt;}
.ws3a{word-spacing:13.056000pt;}
.ws148{word-spacing:13.184000pt;}
.ws35{word-spacing:13.248000pt;}
.ws68{word-spacing:13.312000pt;}
.ws12c{word-spacing:13.376000pt;}
.ws1a5{word-spacing:13.440000pt;}
.ws31{word-spacing:13.504000pt;}
.wsae{word-spacing:13.696000pt;}
.ws137{word-spacing:13.760000pt;}
.ws170{word-spacing:13.888000pt;}
.ws166{word-spacing:13.952000pt;}
.ws18b{word-spacing:14.080000pt;}
.ws171{word-spacing:14.144000pt;}
.ws1a1{word-spacing:14.208000pt;}
.ws172{word-spacing:14.272000pt;}
.ws18a{word-spacing:14.336000pt;}
.ws8{word-spacing:14.464000pt;}
.ws126{word-spacing:14.528000pt;}
.ws16{word-spacing:14.592000pt;}
.ws39{word-spacing:14.784000pt;}
.wsc6{word-spacing:14.848000pt;}
.wsdf{word-spacing:14.912000pt;}
.ws182{word-spacing:14.976000pt;}
.ws80{word-spacing:15.104000pt;}
.ws121{word-spacing:15.168000pt;}
.ws12a{word-spacing:15.232000pt;}
.ws8f{word-spacing:15.296000pt;}
.ws1a3{word-spacing:15.360000pt;}
.wsac{word-spacing:15.424000pt;}
.ws164{word-spacing:15.552000pt;}
.ws44{word-spacing:15.616000pt;}
.ws19c{word-spacing:15.680000pt;}
.ws179{word-spacing:15.744000pt;}
.ws30{word-spacing:15.808000pt;}
.wsdb{word-spacing:15.936000pt;}
.ws8d{word-spacing:16.000000pt;}
.ws194{word-spacing:16.064000pt;}
.ws191{word-spacing:16.192000pt;}
.ws122{word-spacing:16.256000pt;}
.ws1a9{word-spacing:16.320000pt;}
.ws151{word-spacing:16.448000pt;}
.ws19{word-spacing:16.512000pt;}
.ws94{word-spacing:16.704000pt;}
.ws12b{word-spacing:16.832000pt;}
.wsb3{word-spacing:16.896000pt;}
.wsbe{word-spacing:17.088000pt;}
.ws16e{word-spacing:17.152000pt;}
.ws11a{word-spacing:17.216000pt;}
.wsb9{word-spacing:17.280000pt;}
.ws82{word-spacing:17.344000pt;}
.ws13b{word-spacing:17.408000pt;}
.ws5e{word-spacing:17.472000pt;}
.ws15d{word-spacing:17.536000pt;}
.wsef{word-spacing:17.600000pt;}
.ws16c{word-spacing:17.728000pt;}
.ws160{word-spacing:17.792000pt;}
.ws139{word-spacing:17.920000pt;}
.ws184{word-spacing:18.048000pt;}
.ws11e{word-spacing:18.112000pt;}
.ws161{word-spacing:18.304000pt;}
.ws9b{word-spacing:18.368000pt;}
.ws81{word-spacing:18.496000pt;}
.ws18{word-spacing:18.560000pt;}
.ws100{word-spacing:18.624000pt;}
.ws1a7{word-spacing:18.816000pt;}
.ws199{word-spacing:18.880000pt;}
.ws79{word-spacing:19.008000pt;}
.ws9d{word-spacing:19.072000pt;}
.ws11f{word-spacing:19.136000pt;}
.ws7c{word-spacing:19.264000pt;}
.ws149{word-spacing:19.328000pt;}
.ws26{word-spacing:19.392000pt;}
.ws11c{word-spacing:19.584000pt;}
.wsa6{word-spacing:19.648000pt;}
.wsd9{word-spacing:19.776000pt;}
.ws176{word-spacing:19.840000pt;}
.ws1ba{word-spacing:19.904000pt;}
.ws75{word-spacing:19.968000pt;}
.ws16b{word-spacing:20.096000pt;}
.ws1b8{word-spacing:20.224000pt;}
.wsb2{word-spacing:20.416000pt;}
.ws108{word-spacing:20.992000pt;}
.ws2f{word-spacing:21.056000pt;}
.wsa7{word-spacing:21.248000pt;}
.ws131{word-spacing:21.312000pt;}
.wse3{word-spacing:21.376000pt;}
.ws74{word-spacing:21.504000pt;}
.wsa2{word-spacing:21.568000pt;}
.wsbf{word-spacing:21.632000pt;}
.ws10e{word-spacing:21.952000pt;}
.wsbb{word-spacing:22.400000pt;}
.wsed{word-spacing:22.528000pt;}
.ws175{word-spacing:22.656000pt;}
.ws17c{word-spacing:22.720000pt;}
.ws62{word-spacing:22.784000pt;}
.wse5{word-spacing:22.976000pt;}
.ws63{word-spacing:23.168000pt;}
.wsa1{word-spacing:23.296000pt;}
.wsc7{word-spacing:23.488000pt;}
.ws156{word-spacing:23.552000pt;}
.ws1b7{word-spacing:23.616000pt;}
.ws6{word-spacing:23.744000pt;}
.ws111{word-spacing:23.808000pt;}
.ws133{word-spacing:23.872000pt;}
.ws185{word-spacing:24.000000pt;}
.ws23{word-spacing:24.128000pt;}
.ws19d{word-spacing:24.448000pt;}
.ws1ad{word-spacing:24.576000pt;}
.ws4f{word-spacing:24.704000pt;}
.ws145{word-spacing:24.768000pt;}
.ws9a{word-spacing:24.896000pt;}
.ws107{word-spacing:25.472000pt;}
.ws95{word-spacing:26.816000pt;}
.wsa0{word-spacing:27.264000pt;}
.ws73{word-spacing:27.776000pt;}
.ws1b6{word-spacing:27.904000pt;}
.ws6c{word-spacing:28.096000pt;}
.ws46{word-spacing:28.160000pt;}
.wsf5{word-spacing:29.184000pt;}
.ws71{word-spacing:29.248000pt;}
.ws146{word-spacing:29.312000pt;}
.ws130{word-spacing:29.632000pt;}
.wsc2{word-spacing:29.888000pt;}
.wsa8{word-spacing:30.080000pt;}
.ws155{word-spacing:30.336000pt;}
.ws3f{word-spacing:30.720000pt;}
.wsf1{word-spacing:30.848000pt;}
.ws6a{word-spacing:31.040000pt;}
.ws14f{word-spacing:31.104000pt;}
.wsb1{word-spacing:31.360000pt;}
.ws18d{word-spacing:31.936000pt;}
.ws93{word-spacing:32.064000pt;}
.ws11d{word-spacing:32.896000pt;}
.ws165{word-spacing:33.856000pt;}
.ws14a{word-spacing:35.712000pt;}
.ws11b{word-spacing:36.736000pt;}
.wsc{word-spacing:38.592000pt;}
.ws12e{word-spacing:39.488000pt;}
.wsc0{word-spacing:41.216000pt;}
.ws1af{word-spacing:41.408000pt;}
.ws1bb{word-spacing:42.432000pt;}
.ws136{word-spacing:42.816000pt;}
.ws112{word-spacing:43.712000pt;}
.ws19b{word-spacing:52.800000pt;}
.ws110{word-spacing:54.336000pt;}
.ws113{word-spacing:54.464000pt;}
.ws12d{word-spacing:54.528000pt;}
.wse7{word-spacing:137.600000pt;}
.ws1bc{word-spacing:176.000000pt;}
.wsf8{word-spacing:481.243340pt;}
._41{margin-left:-176.196800pt;}
._43{margin-left:-175.265067pt;}
._39{margin-left:-36.000000pt;}
._33{margin-left:-29.570133pt;}
._11{margin-left:-22.528000pt;}
._3e{margin-left:-19.285333pt;}
._2f{margin-left:-17.120000pt;}
._34{margin-left:-15.869867pt;}
._5{margin-left:-14.933333pt;}
._30{margin-left:-13.408000pt;}
._18{margin-left:-12.490667pt;}
._0{margin-left:-10.666667pt;}
._1e{margin-left:-9.333333pt;}
._1{margin-left:-7.466667pt;}
._14{margin-left:-6.395733pt;}
._6{margin-left:-4.821333pt;}
._2{margin-left:-3.733333pt;}
._3{margin-left:-2.133333pt;}
._4{margin-left:-1.066667pt;}
._7{width:1.098667pt;}
._8{width:2.491733pt;}
._c{width:3.680000pt;}
._9{width:4.714667pt;}
._e{width:5.678933pt;}
._f{width:6.653867pt;}
._b{width:7.705600pt;}
._d{width:8.610133pt;}
._10{width:10.118400pt;}
._12{width:11.315200pt;}
._16{width:12.748800pt;}
._17{width:13.657600pt;}
._1c{width:14.707200pt;}
._13{width:17.433600pt;}
._2b{width:18.344533pt;}
._1b{width:19.635200pt;}
._1d{width:20.601600pt;}
._35{width:21.593600pt;}
._19{width:23.033600pt;}
._36{width:24.659200pt;}
._a{width:26.374400pt;}
._1a{width:28.192000pt;}
._38{width:29.145600pt;}
._20{width:30.304000pt;}
._3f{width:32.913067pt;}
._15{width:35.705600pt;}
._37{width:37.497600pt;}
._32{width:38.641067pt;}
._31{width:39.662933pt;}
._2d{width:40.672000pt;}
._2c{width:41.600000pt;}
._1f{width:42.899200pt;}
._2e{width:48.492800pt;}
._49{width:53.294933pt;}
._46{width:58.144000pt;}
._48{width:64.576000pt;}
._3d{width:65.489067pt;}
._3a{width:75.968000pt;}
._44{width:84.650667pt;}
._47{width:92.484267pt;}
._45{width:108.004267pt;}
._42{width:110.240000pt;}
._40{width:124.259733pt;}
._27{width:140.123381pt;}
._29{width:141.399991pt;}
._28{width:142.879182pt;}
._2a{width:146.269419pt;}
._24{width:155.280533pt;}
._22{width:163.280533pt;}
._3b{width:176.000000pt;}
._3c{width:180.416000pt;}
._25{width:194.284267pt;}
._26{width:202.284267pt;}
._23{width:217.284267pt;}
._21{width:221.469867pt;}
.fs7{font-size:53.333333pt;}
.fsb{font-size:54.181867pt;}
.fsd{font-size:54.182104pt;}
.fs2{font-size:58.666667pt;}
.fsc{font-size:61.922133pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fse{font-size:85.333333pt;}
.fs8{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.fs9{font-size:112.000000pt;}
.fsa{font-size:128.000000pt;}
.fs4{font-size:133.333333pt;}
.fs3{font-size:266.666667pt;}
.fs6{font-size:373.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.000000pt;}
.y32c{bottom:51.934267pt;}
.y111{bottom:58.654533pt;}
.y215{bottom:61.168400pt;}
.y2f5{bottom:61.425733pt;}
.y6e{bottom:64.000000pt;}
.ydd{bottom:65.961200pt;}
.y32b{bottom:67.934267pt;}
.y138{bottom:68.031467pt;}
.y6{bottom:69.333333pt;}
.y181{bottom:71.965733pt;}
.y25c{bottom:73.613200pt;}
.y28e{bottom:73.717467pt;}
.y214{bottom:77.168400pt;}
.y24b{bottom:77.329867pt;}
.y2f8{bottom:79.995733pt;}
.y6d{bottom:80.000000pt;}
.y247{bottom:81.360000pt;}
.ydc{bottom:81.961200pt;}
.y26b{bottom:82.851333pt;}
.y329{bottom:83.125067pt;}
.y32a{bottom:83.934267pt;}
.y137{bottom:84.031467pt;}
.y1bb{bottom:85.046533pt;}
.y12c{bottom:85.050933pt;}
.y29b{bottom:87.912400pt;}
.y180{bottom:87.965733pt;}
.y110{bottom:88.801867pt;}
.y15e{bottom:89.585067pt;}
.y25b{bottom:89.613200pt;}
.y5{bottom:90.666667pt;}
.y2a1{bottom:90.708667pt;}
.y2c2{bottom:90.768800pt;}
.y94{bottom:91.166400pt;}
.y16{bottom:91.722800pt;}
.y256{bottom:92.573867pt;}
.y213{bottom:93.168400pt;}
.y24a{bottom:93.329867pt;}
.y28d{bottom:95.050800pt;}
.y6c{bottom:96.000000pt;}
.y64{bottom:96.604667pt;}
.y246{bottom:97.360000pt;}
.ydb{bottom:97.961200pt;}
.y328{bottom:99.125067pt;}
.y1ba{bottom:101.046533pt;}
.y12b{bottom:101.050933pt;}
.y2f7{bottom:101.329067pt;}
.y1df{bottom:101.641867pt;}
.y2ba{bottom:101.770800pt;}
.y31e{bottom:102.126933pt;}
.y29a{bottom:103.912400pt;}
.y17f{bottom:103.965733pt;}
.y26a{bottom:104.184667pt;}
.y15d{bottom:105.585067pt;}
.y25a{bottom:105.613200pt;}
.y9{bottom:105.688267pt;}
.y2a0{bottom:106.708667pt;}
.y2c1{bottom:106.768800pt;}
.y255{bottom:108.573867pt;}
.y6b{bottom:112.000000pt;}
.y93{bottom:112.499733pt;}
.y136{bottom:113.483333pt;}
.yda{bottom:113.961200pt;}
.y15{bottom:114.389467pt;}
.y327{bottom:115.125067pt;}
.y28c{bottom:116.384133pt;}
.y1b9{bottom:117.046533pt;}
.y12a{bottom:117.050933pt;}
.y2b9{bottom:117.770800pt;}
.y54{bottom:117.938000pt;}
.y10f{bottom:118.949067pt;}
.y299{bottom:119.912400pt;}
.y15c{bottom:121.585067pt;}
.y2f9{bottom:122.662400pt;}
.y29f{bottom:122.708667pt;}
.y2c0{bottom:122.768800pt;}
.y1de{bottom:122.975200pt;}
.y31d{bottom:123.460267pt;}
.y229{bottom:124.573867pt;}
.y269{bottom:125.518000pt;}
.y8{bottom:127.021600pt;}
.y6a{bottom:128.000000pt;}
.y324{bottom:129.961200pt;}
.y326{bottom:131.125067pt;}
.y1b8{bottom:133.046533pt;}
.y61{bottom:133.085733pt;}
.y4{bottom:133.333333pt;}
.y2b8{bottom:133.770800pt;}
.y92{bottom:133.833067pt;}
.y298{bottom:135.912400pt;}
.y14{bottom:137.056133pt;}
.y135{bottom:137.483333pt;}
.y15b{bottom:137.585067pt;}
.y28b{bottom:137.717467pt;}
.y2bf{bottom:138.768800pt;}
.y63{bottom:139.271333pt;}
.y228{bottom:140.573867pt;}
.y2b5{bottom:140.699867pt;}
.y2c9{bottom:143.690000pt;}
.y2c6{bottom:143.995733pt;}
.y1dd{bottom:144.308533pt;}
.y31c{bottom:144.793600pt;}
.y125{bottom:146.460133pt;}
.y268{bottom:146.851333pt;}
.y325{bottom:147.125067pt;}
.y7{bottom:148.354933pt;}
.y60{bottom:149.085733pt;}
.y10e{bottom:150.052400pt;}
.y297{bottom:151.912400pt;}
.y68{bottom:152.038400pt;}
.y24e{bottom:153.928267pt;}
.y3{bottom:154.666667pt;}
.y91{bottom:155.166400pt;}
.y2b4{bottom:156.699867pt;}
.y28a{bottom:159.050800pt;}
.y2c8{bottom:159.690000pt;}
.y13{bottom:159.722800pt;}
.y62{bottom:160.604667pt;}
.y134{bottom:161.483333pt;}
.y5f{bottom:165.085733pt;}
.y2c5{bottom:165.329067pt;}
.y1dc{bottom:165.641867pt;}
.y31b{bottom:166.126933pt;}
.y67{bottom:168.038400pt;}
.y24d{bottom:169.928267pt;}
.y53{bottom:171.271333pt;}
.y2b3{bottom:172.699867pt;}
.y123{bottom:172.762267pt;}
.y124{bottom:172.762400pt;}
.y2c7{bottom:175.690000pt;}
.y2{bottom:176.000000pt;}
.y90{bottom:176.499733pt;}
.y289{bottom:180.384133pt;}
.y10d{bottom:181.155867pt;}
.y39{bottom:181.938000pt;}
.y12{bottom:182.389467pt;}
.y66{bottom:184.038400pt;}
.y133{bottom:185.483333pt;}
.y24c{bottom:185.928267pt;}
.y2c4{bottom:186.662400pt;}
.y1db{bottom:186.975200pt;}
.y31a{bottom:187.460267pt;}
.y267{bottom:189.518000pt;}
.y18e{bottom:196.535467pt;}
.y205{bottom:197.333333pt;}
.yec{bottom:201.072133pt;}
.y288{bottom:201.717467pt;}
.y11d{bottom:203.231467pt;}
.y38{bottom:203.271333pt;}
.y2f4{bottom:203.271467pt;}
.y11{bottom:205.056133pt;}
.y2b2{bottom:207.995733pt;}
.y1da{bottom:208.308533pt;}
.y132{bottom:209.483333pt;}
.y266{bottom:210.851333pt;}
.y18d{bottom:212.535467pt;}
.y204{bottom:218.666667pt;}
.y8f{bottom:219.166400pt;}
.y287{bottom:223.050800pt;}
.y37{bottom:224.604667pt;}
.y2f3{bottom:224.604800pt;}
.y10{bottom:227.722800pt;}
.y2b1{bottom:229.329067pt;}
.y1d9{bottom:229.641867pt;}
.y319{bottom:230.126933pt;}
.y265{bottom:232.184667pt;}
.y131{bottom:233.483333pt;}
.y2ef{bottom:238.777867pt;}
.y203{bottom:240.000000pt;}
.y8e{bottom:240.499733pt;}
.y286{bottom:244.384133pt;}
.y36{bottom:245.938000pt;}
.y10c{bottom:245.938133pt;}
.y1f7{bottom:247.422400pt;}
.y11e{bottom:248.676507pt;}
.yf{bottom:250.389467pt;}
.y2b0{bottom:250.662400pt;}
.y1d8{bottom:250.975200pt;}
.y52{bottom:251.271333pt;}
.y318{bottom:251.460267pt;}
.y264{bottom:253.518000pt;}
.y130{bottom:254.186933pt;}
.y1f8{bottom:255.456267pt;}
.y18c{bottom:256.056000pt;}
.y2ee{bottom:260.111200pt;}
.y202{bottom:261.333333pt;}
.y8d{bottom:261.833067pt;}
.y285{bottom:265.717467pt;}
.y35{bottom:267.271333pt;}
.y10b{bottom:267.271467pt;}
.yab{bottom:271.629467pt;}
.y2af{bottom:271.995733pt;}
.y1d7{bottom:272.308533pt;}
.ye{bottom:273.056133pt;}
.y263{bottom:274.851333pt;}
.yca{bottom:276.769600pt;}
.y51{bottom:277.938000pt;}
.y18b{bottom:280.056000pt;}
.y2ed{bottom:281.444533pt;}
.y8c{bottom:283.166400pt;}
.y34{bottom:288.604667pt;}
.y10a{bottom:288.604800pt;}
.y2ae{bottom:293.329067pt;}
.y1d6{bottom:293.641867pt;}
.y11f{bottom:294.121548pt;}
.y317{bottom:294.126933pt;}
.yd{bottom:295.722800pt;}
.yc9{bottom:298.102933pt;}
.y2ec{bottom:302.777867pt;}
.y157{bottom:303.253867pt;}
.y201{bottom:304.000000pt;}
.y18a{bottom:304.056000pt;}
.y8b{bottom:304.499733pt;}
.y50{bottom:304.604667pt;}
.y2f1{bottom:306.302667pt;}
.y2b6{bottom:306.940667pt;}
.y284{bottom:308.384133pt;}
.y1f6{bottom:309.539067pt;}
.y17d{bottom:309.570800pt;}
.y3d{bottom:309.938000pt;}
.y109{bottom:309.938133pt;}
.y2c3{bottom:314.662400pt;}
.y1d5{bottom:314.975200pt;}
.y316{bottom:315.460267pt;}
.y262{bottom:317.518000pt;}
.y1ac{bottom:317.585733pt;}
.y200{bottom:325.333333pt;}
.y8a{bottom:325.833067pt;}
.y189{bottom:328.056000pt;}
.y283{bottom:329.717467pt;}
.y1f5{bottom:330.872400pt;}
.y33{bottom:331.271333pt;}
.y108{bottom:331.271467pt;}
.y156{bottom:335.253867pt;}
.y2ad{bottom:335.995733pt;}
.y1d4{bottom:336.308533pt;}
.y315{bottom:336.793600pt;}
.y261{bottom:338.851333pt;}
.y1ab{bottom:338.919067pt;}
.y120{bottom:339.566589pt;}
.yc8{bottom:340.769600pt;}
.yc{bottom:341.056133pt;}
.y2eb{bottom:345.444533pt;}
.y59{bottom:345.584533pt;}
.y1ff{bottom:346.666667pt;}
.y89{bottom:347.166400pt;}
.y1b7{bottom:347.692000pt;}
.y282{bottom:351.050800pt;}
.y188{bottom:352.056000pt;}
.y1f4{bottom:352.205733pt;}
.y32{bottom:352.604667pt;}
.y107{bottom:352.604800pt;}
.y2ac{bottom:357.329067pt;}
.y1e7{bottom:357.554000pt;}
.y1d3{bottom:357.641867pt;}
.y4f{bottom:357.938000pt;}
.y323{bottom:358.126933pt;}
.y257{bottom:358.750533pt;}
.y260{bottom:360.184667pt;}
.y1aa{bottom:360.252400pt;}
.yc7{bottom:362.102933pt;}
.y1b6{bottom:363.692000pt;}
.yb{bottom:363.722800pt;}
.y2ea{bottom:366.777867pt;}
.y155{bottom:367.253867pt;}
.y1fe{bottom:368.000000pt;}
.y88{bottom:368.499733pt;}
.y281{bottom:372.384133pt;}
.y1f3{bottom:373.539067pt;}
.y31{bottom:373.938000pt;}
.y106{bottom:373.938133pt;}
.y187{bottom:376.056000pt;}
.y2ab{bottom:378.662400pt;}
.y1d2{bottom:378.975200pt;}
.y314{bottom:379.460267pt;}
.y1b5{bottom:379.692000pt;}
.y25f{bottom:381.518000pt;}
.y1a9{bottom:381.585733pt;}
.yc6{bottom:383.436267pt;}
.y4e{bottom:384.604667pt;}
.y121{bottom:385.011629pt;}
.ya{bottom:386.389467pt;}
.y2e9{bottom:388.111200pt;}
.y87{bottom:389.833067pt;}
.y55{bottom:391.707067pt;}
.y280{bottom:393.717467pt;}
.y1f2{bottom:394.872400pt;}
.y30{bottom:395.271333pt;}
.y105{bottom:395.271467pt;}
.y1b3{bottom:395.638533pt;}
.y1b4{bottom:395.692000pt;}
.ya2{bottom:397.376400pt;}
.y2cc{bottom:397.682800pt;}
.y29c{bottom:399.805200pt;}
.y2a4{bottom:399.995733pt;}
.y186{bottom:400.056000pt;}
.y2f2{bottom:400.586533pt;}
.y313{bottom:400.793600pt;}
.y25e{bottom:402.851333pt;}
.y1a8{bottom:402.919067pt;}
.yc5{bottom:404.769600pt;}
.y1e6{bottom:405.554000pt;}
.y2e8{bottom:409.444533pt;}
.y86{bottom:411.166400pt;}
.y4d{bottom:411.271333pt;}
.y27f{bottom:415.050800pt;}
.y1f1{bottom:416.205733pt;}
.y2f{bottom:416.604667pt;}
.y104{bottom:416.604800pt;}
.y2a3{bottom:421.329067pt;}
.y1d1{bottom:421.641867pt;}
.y312{bottom:422.126933pt;}
.y185{bottom:424.056000pt;}
.y25d{bottom:424.184667pt;}
.y1a7{bottom:424.252400pt;}
.yc4{bottom:426.102933pt;}
.ya9{bottom:429.376400pt;}
.y1e5{bottom:429.554000pt;}
.y122{bottom:430.456670pt;}
.y1fd{bottom:430.711067pt;}
.ya4{bottom:437.376400pt;}
.y1f0{bottom:437.539067pt;}
.y2e{bottom:437.938000pt;}
.y103{bottom:437.938133pt;}
.y2a2{bottom:442.662400pt;}
.y1d0{bottom:442.975200pt;}
.y322{bottom:443.460267pt;}
.yc3{bottom:447.436267pt;}
.y184{bottom:448.056000pt;}
.y2ca{bottom:448.112933pt;}
.y2e7{bottom:452.111200pt;}
.y1e4{bottom:453.554000pt;}
.y15a{bottom:453.644800pt;}
.y85{bottom:453.833067pt;}
.y27e{bottom:457.717467pt;}
.y3c{bottom:459.271333pt;}
.y12f{bottom:459.271467pt;}
.y126{bottom:459.845200pt;}
.y29e{bottom:463.995733pt;}
.y1cf{bottom:464.308533pt;}
.y311{bottom:464.793600pt;}
.y1a6{bottom:466.919067pt;}
.yc2{bottom:468.769600pt;}
.y159{bottom:469.644800pt;}
.y183{bottom:472.056000pt;}
.y2e6{bottom:473.444533pt;}
.y84{bottom:475.166400pt;}
.ya3{bottom:477.376400pt;}
.y1e3{bottom:477.554000pt;}
.y1fc{bottom:478.711067pt;}
.y27d{bottom:479.050800pt;}
.y176{bottom:479.093600pt;}
.y154{bottom:480.112933pt;}
.y1ef{bottom:480.205733pt;}
.y2d{bottom:480.604667pt;}
.y102{bottom:480.604800pt;}
.y296{bottom:485.329067pt;}
.y1ce{bottom:485.641867pt;}
.y158{bottom:485.644800pt;}
.y310{bottom:486.126933pt;}
.y26e{bottom:486.538933pt;}
.y1a5{bottom:488.252400pt;}
.yc1{bottom:490.102933pt;}
.y58{bottom:490.443600pt;}
.y4c{bottom:491.271333pt;}
.ya1{bottom:494.211733pt;}
.y2be{bottom:494.463600pt;}
.y2e5{bottom:494.777867pt;}
.y175{bottom:495.093600pt;}
.y83{bottom:496.499733pt;}
.y27c{bottom:500.384133pt;}
.y182{bottom:500.728933pt;}
.y1ee{bottom:501.539067pt;}
.y1e2{bottom:501.554000pt;}
.y2c{bottom:501.938000pt;}
.y101{bottom:501.938133pt;}
.y26d{bottom:502.538933pt;}
.y1fb{bottom:502.711067pt;}
.y295{bottom:506.662400pt;}
.y1cd{bottom:506.975200pt;}
.y321{bottom:507.460267pt;}
.y69{bottom:509.279200pt;}
.y1a4{bottom:509.585733pt;}
.ya0{bottom:510.211733pt;}
.y2bd{bottom:510.463600pt;}
.y174{bottom:511.093600pt;}
.yc0{bottom:511.436267pt;}
.y153{bottom:512.112933pt;}
.y65{bottom:516.069067pt;}
.y2e4{bottom:516.111200pt;}
.ye3{bottom:517.485200pt;}
.y82{bottom:517.833067pt;}
.y4b{bottom:517.938000pt;}
.y26c{bottom:518.538933pt;}
.y27b{bottom:521.717467pt;}
.y1ed{bottom:522.872400pt;}
.y2b{bottom:523.271333pt;}
.y100{bottom:523.271467pt;}
.y1e1{bottom:525.554000pt;}
.y9f{bottom:526.211733pt;}
.y2bc{bottom:526.463600pt;}
.y1fa{bottom:526.711067pt;}
.y14e{bottom:526.748400pt;}
.y173{bottom:527.093600pt;}
.y259{bottom:527.995733pt;}
.y1cc{bottom:528.308533pt;}
.y30f{bottom:528.793600pt;}
.y1a3{bottom:530.919067pt;}
.ybf{bottom:532.769600pt;}
.y81{bottom:539.166400pt;}
.y2aa{bottom:540.472400pt;}
.y9e{bottom:542.211733pt;}
.ya8{bottom:542.235467pt;}
.y2bb{bottom:542.463600pt;}
.y14d{bottom:542.748400pt;}
.y27a{bottom:543.050800pt;}
.y172{bottom:543.093600pt;}
.y129{bottom:544.070533pt;}
.ye2{bottom:544.151867pt;}
.y1ec{bottom:544.205733pt;}
.y2a{bottom:544.604667pt;}
.yff{bottom:544.604800pt;}
.y258{bottom:549.329067pt;}
.y1e0{bottom:549.554000pt;}
.y1cb{bottom:549.641867pt;}
.y30e{bottom:550.126933pt;}
.y1f9{bottom:550.711067pt;}
.y1a2{bottom:552.252400pt;}
.ybe{bottom:554.102933pt;}
.y14b{bottom:554.582667pt;}
.y9d{bottom:558.211733pt;}
.y14c{bottom:558.748400pt;}
.y2e3{bottom:558.777867pt;}
.y171{bottom:558.866133pt;}
.y128{bottom:560.070533pt;}
.y80{bottom:560.499733pt;}
.y279{bottom:564.384133pt;}
.y2a9{bottom:564.472400pt;}
.y1eb{bottom:565.539067pt;}
.y29{bottom:565.938000pt;}
.yfe{bottom:565.938133pt;}
.y5e{bottom:567.786533pt;}
.y271{bottom:567.823600pt;}
.y245{bottom:570.662400pt;}
.ye1{bottom:570.818533pt;}
.y4a{bottom:571.271333pt;}
.y320{bottom:571.460267pt;}
.y1a1{bottom:573.585733pt;}
.ya7{bottom:574.235467pt;}
.ybd{bottom:575.436267pt;}
.y14a{bottom:575.916000pt;}
.y127{bottom:576.070533pt;}
.y5b{bottom:576.719200pt;}
.y227{bottom:579.087067pt;}
.y2e2{bottom:580.111200pt;}
.y170{bottom:580.199467pt;}
.y7f{bottom:581.833067pt;}
.y5d{bottom:583.786533pt;}
.y270{bottom:583.823600pt;}
.y278{bottom:585.717467pt;}
.y254{bottom:586.238667pt;}
.y1ea{bottom:586.872400pt;}
.y28{bottom:587.271333pt;}
.yfd{bottom:587.271467pt;}
.y2a8{bottom:588.472400pt;}
.y96{bottom:590.703600pt;}
.y244{bottom:591.995733pt;}
.y30d{bottom:592.793600pt;}
.y1a0{bottom:594.919067pt;}
.ybc{bottom:596.769600pt;}
.y149{bottom:597.249333pt;}
.ye0{bottom:597.485200pt;}
.y49{bottom:597.938000pt;}
.y5c{bottom:599.786533pt;}
.y26f{bottom:599.823600pt;}
.y226{bottom:600.420400pt;}
.ycd{bottom:600.938267pt;}
.y2e1{bottom:601.444533pt;}
.y16f{bottom:601.532800pt;}
.y7e{bottom:603.166400pt;}
.y277{bottom:607.050800pt;}
.y1e9{bottom:608.205733pt;}
.y27{bottom:608.604667pt;}
.yfc{bottom:608.604800pt;}
.y2a7{bottom:612.472400pt;}
.y11b{bottom:613.220133pt;}
.y243{bottom:613.329067pt;}
.y30c{bottom:614.126933pt;}
.y19f{bottom:616.252400pt;}
.ybb{bottom:618.102933pt;}
.y148{bottom:618.582667pt;}
.y225{bottom:621.753733pt;}
.y2e0{bottom:622.777867pt;}
.y16e{bottom:622.866133pt;}
.ydf{bottom:624.151867pt;}
.y7d{bottom:624.499733pt;}
.y48{bottom:624.604667pt;}
.y152{bottom:624.971867pt;}
.y276{bottom:628.384133pt;}
.y1ca{bottom:629.539067pt;}
.y26{bottom:629.938000pt;}
.y12e{bottom:629.938133pt;}
.ycc{bottom:631.604933pt;}
.y307{bottom:633.931733pt;}
.y253{bottom:634.238667pt;}
.y242{bottom:634.662400pt;}
.y57{bottom:635.302667pt;}
.y31f{bottom:635.460267pt;}
.y2a6{bottom:636.472400pt;}
.ycb{bottom:639.436267pt;}
.y147{bottom:639.916000pt;}
.y11a{bottom:641.648981pt;}
.y224{bottom:643.087067pt;}
.y2df{bottom:644.111200pt;}
.y16d{bottom:644.199467pt;}
.y275{bottom:649.717467pt;}
.yde{bottom:650.818533pt;}
.y1c9{bottom:650.872400pt;}
.y25{bottom:651.271333pt;}
.yfb{bottom:651.271467pt;}
.y241{bottom:655.995733pt;}
.y112{bottom:656.630267pt;}
.y306{bottom:656.793600pt;}
.y151{bottom:656.971867pt;}
.y252{bottom:658.238667pt;}
.y19e{bottom:658.919067pt;}
.y2a5{bottom:660.472400pt;}
.yba{bottom:660.769600pt;}
.y146{bottom:661.249333pt;}
.y9c{bottom:664.071333pt;}
.y223{bottom:664.420400pt;}
.y16c{bottom:665.532800pt;}
.y7c{bottom:667.166400pt;}
.y1c8{bottom:672.205733pt;}
.y3b{bottom:672.604667pt;}
.yfa{bottom:672.604800pt;}
.yeb{bottom:675.280533pt;}
.y240{bottom:677.329067pt;}
.y47{bottom:677.938000pt;}
.y305{bottom:678.126933pt;}
.y19d{bottom:680.252400pt;}
.ye5{bottom:681.654533pt;}
.yb9{bottom:682.102933pt;}
.y251{bottom:682.238667pt;}
.y145{bottom:682.582667pt;}
.y9b{bottom:683.271333pt;}
.y222{bottom:685.753733pt;}
.y2de{bottom:686.777867pt;}
.y16b{bottom:686.866133pt;}
.ya6{bottom:687.094400pt;}
.y7b{bottom:688.499733pt;}
.y274{bottom:692.384133pt;}
.y1c7{bottom:693.539067pt;}
.y24{bottom:693.938000pt;}
.yf9{bottom:693.938133pt;}
.y23f{bottom:698.662400pt;}
.y304{bottom:699.460267pt;}
.y19c{bottom:701.585733pt;}
.yea{bottom:701.947200pt;}
.y9a{bottom:702.471333pt;}
.ye4{bottom:702.987867pt;}
.yb8{bottom:703.436267pt;}
.y144{bottom:703.916000pt;}
.y46{bottom:704.604667pt;}
.y250{bottom:706.238667pt;}
.y221{bottom:707.087067pt;}
.y2dd{bottom:708.111200pt;}
.y212{bottom:708.384933pt;}
.y7a{bottom:709.833067pt;}
.y273{bottom:713.717467pt;}
.y116{bottom:714.848682pt;}
.y1c6{bottom:714.872400pt;}
.y23{bottom:715.271333pt;}
.yf8{bottom:715.271467pt;}
.y29d{bottom:717.565600pt;}
.y2d1{bottom:718.110267pt;}
.ya5{bottom:719.094400pt;}
.y23e{bottom:719.995733pt;}
.y30b{bottom:720.793600pt;}
.y99{bottom:721.671333pt;}
.y19b{bottom:722.919067pt;}
.yd9{bottom:724.321200pt;}
.y211{bottom:724.384933pt;}
.yb7{bottom:724.769600pt;}
.y220{bottom:728.420400pt;}
.ye9{bottom:728.613867pt;}
.y2dc{bottom:729.444533pt;}
.y16a{bottom:729.532800pt;}
.y24f{bottom:730.238667pt;}
.y79{bottom:731.166400pt;}
.y45{bottom:731.271333pt;}
.y113{bottom:734.245791pt;}
.y272{bottom:735.050800pt;}
.y1c5{bottom:736.205733pt;}
.y22{bottom:736.604667pt;}
.yf7{bottom:736.604800pt;}
.y210{bottom:740.384933pt;}
.y98{bottom:740.871333pt;}
.y249{bottom:741.329067pt;}
.y303{bottom:742.126933pt;}
.y19a{bottom:744.252400pt;}
.yd8{bottom:745.654533pt;}
.yb6{bottom:746.102933pt;}
.y143{bottom:746.582667pt;}
.y233{bottom:747.544267pt;}
.y20f{bottom:749.434133pt;}
.y21f{bottom:749.753733pt;}
.y2db{bottom:750.777867pt;}
.y169{bottom:750.866133pt;}
.y78{bottom:752.499733pt;}
.ye8{bottom:755.280533pt;}
.y1c4{bottom:757.539067pt;}
.y21{bottom:757.938000pt;}
.yf6{bottom:757.938133pt;}
.y97{bottom:760.071333pt;}
.y23d{bottom:762.662400pt;}
.y302{bottom:763.460267pt;}
.y199{bottom:765.585733pt;}
.y2d0{bottom:766.110267pt;}
.yd7{bottom:766.987867pt;}
.yb5{bottom:767.436267pt;}
.y142{bottom:767.916000pt;}
.y232{bottom:768.877600pt;}
.y150{bottom:769.830933pt;}
.y20e{bottom:770.767467pt;}
.y21e{bottom:771.087067pt;}
.y168{bottom:772.199467pt;}
.y117{bottom:773.067098pt;}
.y77{bottom:773.833067pt;}
.y1c3{bottom:778.872400pt;}
.y20{bottom:779.271333pt;}
.yf5{bottom:779.271467pt;}
.y56{bottom:780.161600pt;}
.ye7{bottom:781.947200pt;}
.y17c{bottom:782.043733pt;}
.y23c{bottom:783.995733pt;}
.y44{bottom:784.604667pt;}
.y301{bottom:784.793600pt;}
.y198{bottom:786.919067pt;}
.yd6{bottom:788.321200pt;}
.yb4{bottom:788.769600pt;}
.y141{bottom:789.249333pt;}
.y2cf{bottom:790.110267pt;}
.y231{bottom:790.210933pt;}
.y2f6{bottom:791.628533pt;}
.y20d{bottom:792.100800pt;}
.y21d{bottom:792.420400pt;}
.y2da{bottom:793.444533pt;}
.y167{bottom:793.532800pt;}
.y76{bottom:795.166400pt;}
.y17e{bottom:795.365067pt;}
.y294{bottom:796.003467pt;}
.y1c2{bottom:800.205733pt;}
.y1f{bottom:800.604667pt;}
.yf4{bottom:800.604800pt;}
.y14f{bottom:801.830933pt;}
.y23b{bottom:805.329067pt;}
.y30a{bottom:806.126933pt;}
.y197{bottom:808.252400pt;}
.ye6{bottom:808.613867pt;}
.y17b{bottom:808.710400pt;}
.yd5{bottom:809.654533pt;}
.yb3{bottom:810.102933pt;}
.y140{bottom:810.582667pt;}
.y43{bottom:811.271333pt;}
.y230{bottom:811.544267pt;}
.y114{bottom:811.861315pt;}
.y293{bottom:812.003467pt;}
.y20c{bottom:813.434133pt;}
.y21c{bottom:813.753733pt;}
.y2ce{bottom:814.110267pt;}
.y2d9{bottom:814.777867pt;}
.y166{bottom:814.866133pt;}
.y75{bottom:816.499733pt;}
.y1e8{bottom:821.539067pt;}
.y1e{bottom:821.938000pt;}
.y12d{bottom:821.938133pt;}
.y23a{bottom:826.662400pt;}
.y300{bottom:827.460267pt;}
.y196{bottom:829.585733pt;}
.yd4{bottom:830.987867pt;}
.y118{bottom:831.285514pt;}
.yb2{bottom:831.436267pt;}
.y13f{bottom:831.916000pt;}
.y20b{bottom:834.767467pt;}
.y21b{bottom:835.087067pt;}
.y17a{bottom:835.377067pt;}
.y2d8{bottom:836.111200pt;}
.y165{bottom:836.199467pt;}
.y74{bottom:837.833067pt;}
.y2cd{bottom:838.110267pt;}
.y292{bottom:839.804000pt;}
.y1c1{bottom:842.872400pt;}
.y1d{bottom:843.271333pt;}
.yf3{bottom:843.271467pt;}
.y1b2{bottom:843.683867pt;}
.y2b7{bottom:847.630667pt;}
.y248{bottom:847.995733pt;}
.y17{bottom:848.685467pt;}
.y2ff{bottom:848.793600pt;}
.y95{bottom:849.381600pt;}
.yd3{bottom:852.321200pt;}
.yb1{bottom:852.769600pt;}
.y13e{bottom:853.249333pt;}
.y22f{bottom:854.210933pt;}
.y2d7{bottom:857.444533pt;}
.y73{bottom:859.166400pt;}
.y179{bottom:862.043733pt;}
.y291{bottom:863.804000pt;}
.y1c0{bottom:864.205733pt;}
.y42{bottom:864.604667pt;}
.yf2{bottom:864.604800pt;}
.y239{bottom:869.329067pt;}
.y2fe{bottom:870.126933pt;}
.y1b1{bottom:870.350533pt;}
.y195{bottom:872.252400pt;}
.yd2{bottom:873.654533pt;}
.yb0{bottom:874.102933pt;}
.y13d{bottom:874.582667pt;}
.y22e{bottom:875.544267pt;}
.y3e{bottom:876.042267pt;}
.y20a{bottom:877.434133pt;}
.y21a{bottom:877.753733pt;}
.y2d6{bottom:878.777867pt;}
.y164{bottom:878.866133pt;}
.y72{bottom:880.499733pt;}
.y1bf{bottom:885.539067pt;}
.y3a{bottom:885.781867pt;}
.y1c{bottom:885.938000pt;}
.yf1{bottom:885.938133pt;}
.y290{bottom:887.804000pt;}
.y178{bottom:888.710400pt;}
.y115{bottom:889.476839pt;}
.y119{bottom:889.503930pt;}
.y238{bottom:890.662400pt;}
.y41{bottom:891.271333pt;}
.y309{bottom:891.460267pt;}
.y194{bottom:893.585733pt;}
.yd1{bottom:894.987867pt;}
.yaf{bottom:895.436267pt;}
.y13c{bottom:895.916000pt;}
.y22d{bottom:896.877600pt;}
.y1b0{bottom:897.017200pt;}
.y209{bottom:898.767467pt;}
.y219{bottom:899.087067pt;}
.y163{bottom:900.199467pt;}
.y71{bottom:901.833067pt;}
.y1be{bottom:906.872400pt;}
.y1b{bottom:907.271333pt;}
.yf0{bottom:907.271467pt;}
.y237{bottom:911.995733pt;}
.y2fd{bottom:912.793600pt;}
.y193{bottom:914.919067pt;}
.y177{bottom:915.377067pt;}
.yd0{bottom:916.321200pt;}
.y28f{bottom:916.476933pt;}
.yae{bottom:916.769600pt;}
.y13b{bottom:917.249333pt;}
.y40{bottom:917.938000pt;}
.y22c{bottom:918.210933pt;}
.y11c{bottom:918.864933pt;}
.y208{bottom:920.100800pt;}
.y218{bottom:920.420400pt;}
.y2d5{bottom:921.444533pt;}
.y162{bottom:921.532800pt;}
.y70{bottom:923.166400pt;}
.y1af{bottom:923.683867pt;}
.y1bd{bottom:928.205733pt;}
.y1a{bottom:928.604667pt;}
.yef{bottom:928.604800pt;}
.y236{bottom:933.329067pt;}
.y2fc{bottom:934.126933pt;}
.y192{bottom:936.252400pt;}
.ycf{bottom:937.654533pt;}
.yad{bottom:938.102933pt;}
.y13a{bottom:938.582667pt;}
.y22b{bottom:939.544267pt;}
.y207{bottom:941.434133pt;}
.y217{bottom:941.753733pt;}
.y2d4{bottom:942.777867pt;}
.y161{bottom:942.866133pt;}
.y6f{bottom:944.499733pt;}
.y3f{bottom:944.604667pt;}
.y1bc{bottom:949.539067pt;}
.y19{bottom:949.938000pt;}
.yee{bottom:949.938133pt;}
.y1ae{bottom:950.350533pt;}
.y235{bottom:954.662400pt;}
.y2fb{bottom:955.460267pt;}
.y191{bottom:957.585733pt;}
.yce{bottom:958.987867pt;}
.yac{bottom:959.436267pt;}
.y139{bottom:959.916000pt;}
.y22a{bottom:960.877600pt;}
.y206{bottom:962.767467pt;}
.y216{bottom:963.087067pt;}
.y2d3{bottom:964.111200pt;}
.y160{bottom:964.199467pt;}
.y18{bottom:971.271333pt;}
.yed{bottom:971.271467pt;}
.y234{bottom:975.995733pt;}
.y1ad{bottom:977.017200pt;}
.y190{bottom:978.919067pt;}
.y2d2{bottom:985.444533pt;}
.y15f{bottom:985.532800pt;}
.y2fa{bottom:998.126933pt;}
.y18f{bottom:1000.252400pt;}
.y5a{bottom:1010.713333pt;}
.y2f0{bottom:1012.462667pt;}
.y2cb{bottom:1012.631333pt;}
.y308{bottom:1019.460267pt;}
.yaa{bottom:1037.380000pt;}
.h11{height:36.112426pt;}
.h13{height:36.112584pt;}
.h12{height:41.271344pt;}
.h5{height:42.656250pt;}
.hc{height:44.635417pt;}
.h10{height:45.104167pt;}
.h4{height:49.098958pt;}
.h15{height:49.921875pt;}
.h3{height:53.562500pt;}
.hd{height:54.125000pt;}
.h17{height:54.914062pt;}
.ha{height:69.890625pt;}
.h16{height:79.875000pt;}
.h14{height:81.664000pt;}
.h9{height:89.270833pt;}
.he{height:89.859375pt;}
.h6{height:99.843750pt;}
.h2{height:100.826667pt;}
.h8{height:111.588542pt;}
.hf{height:119.812500pt;}
.h7{height:223.177083pt;}
.hb{height:349.453125pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc8{left:38.620000pt;}
.x16{left:41.574800pt;}
.x14{left:48.000000pt;}
.x23{left:50.324400pt;}
.x37{left:53.571067pt;}
.x26{left:54.770933pt;}
.x82{left:56.692933pt;}
.x84{left:59.586667pt;}
.x77{left:60.556800pt;}
.x24{left:61.808800pt;}
.x83{left:62.740133pt;}
.x36{left:64.332800pt;}
.x35{left:65.400533pt;}
.x69{left:67.086667pt;}
.x38{left:70.009867pt;}
.xd9{left:72.322800pt;}
.x27{left:76.020933pt;}
.x3a{left:77.480267pt;}
.x1f{left:79.370133pt;}
.x3b{left:83.838000pt;}
.xb{left:89.448800pt;}
.x29{left:90.708667pt;}
.x25{left:100.050933pt;}
.xce{left:101.034800pt;}
.xda{left:104.269333pt;}
.xca{left:108.472400pt;}
.x78{left:112.883600pt;}
.x80{left:115.336400pt;}
.x28{left:117.785333pt;}
.x7f{left:121.807733pt;}
.x2d{left:128.504000pt;}
.x7e{left:130.323333pt;}
.xd{left:132.565467pt;}
.xcd{left:135.498133pt;}
.xf{left:140.124533pt;}
.x46{left:141.319133pt;}
.x8e{left:143.578267pt;}
.xbc{left:145.276800pt;}
.x8c{left:146.636133pt;}
.x2c{left:147.683600pt;}
.x91{left:149.443467pt;}
.x8f{left:150.424533pt;}
.x3e{left:151.519600pt;}
.x8d{left:160.615333pt;}
.xcf{left:164.596000pt;}
.x4a{left:168.410133pt;}
.xc9{left:171.587200pt;}
.xe{left:173.858267pt;}
.x45{left:175.182800pt;}
.x15{left:176.692933pt;}
.x1d{left:177.637733pt;}
.x48{left:179.923713pt;}
.x4b{left:184.293067pt;}
.x2b{left:185.196800pt;}
.x7d{left:187.178800pt;}
.xc4{left:190.196800pt;}
.x64{left:193.743200pt;}
.x65{left:195.299200pt;}
.x63{left:204.146800pt;}
.x62{left:208.014000pt;}
.x4c{left:209.492533pt;}
.x6b{left:213.888933pt;}
.xbe{left:217.117600pt;}
.x44{left:220.678533pt;}
.x8a{left:223.720400pt;}
.x99{left:231.587467pt;}
.x12{left:232.563600pt;}
.x4d{left:234.683024pt;}
.x89{left:239.957333pt;}
.x8b{left:241.409200pt;}
.x11{left:245.310533pt;}
.x61{left:248.098667pt;}
.x49{left:250.602400pt;}
.x4e{left:259.873515pt;}
.x8{left:269.103333pt;}
.x6c{left:270.152000pt;}
.x13{left:274.960667pt;}
.xad{left:276.850400pt;}
.xbf{left:281.886267pt;}
.x98{left:284.165467pt;}
.x4f{left:285.064005pt;}
.xa8{left:286.518133pt;}
.x10{left:291.023600pt;}
.xa7{left:299.215333pt;}
.xa6{left:300.662000pt;}
.x95{left:304.235600pt;}
.x43{left:305.314933pt;}
.x50{left:310.254496pt;}
.x93{left:312.005733pt;}
.x5b{left:315.465067pt;}
.xb2{left:317.480267pt;}
.xa5{left:326.149600pt;}
.x90{left:327.548933pt;}
.x94{left:334.285067pt;}
.x51{left:335.444987pt;}
.xb6{left:347.348000pt;}
.x52{left:360.635477pt;}
.xb7{left:363.474400pt;}
.xc7{left:366.614133pt;}
.xa2{left:367.902133pt;}
.xa9{left:371.868400pt;}
.xc0{left:374.173200pt;}
.x96{left:377.301467pt;}
.xc{left:379.842533pt;}
.xaa{left:382.677200pt;}
.x53{left:385.825968pt;}
.x5c{left:389.879200pt;}
.x92{left:396.850400pt;}
.x42{left:410.468667pt;}
.xc1{left:411.968400pt;}
.x9{left:414.556400pt;}
.x2a{left:415.748000pt;}
.x88{left:419.527600pt;}
.x6a{left:424.252000pt;}
.x9f{left:429.288933pt;}
.x7{left:431.337600pt;}
.x70{left:432.629867pt;}
.x97{left:434.645733pt;}
.x54{left:436.206949pt;}
.x71{left:441.604000pt;}
.x9d{left:450.601333pt;}
.xa1{left:453.543333pt;}
.xba{left:459.372000pt;}
.x55{left:461.397440pt;}
.x6{left:465.556400pt;}
.x79{left:472.262000pt;}
.xb5{left:473.283333pt;}
.x60{left:481.924800pt;}
.x72{left:484.514133pt;}
.xa{left:486.829867pt;}
.x67{left:487.916400pt;}
.xa0{left:490.910133pt;}
.x5f{left:492.841467pt;}
.xc5{left:494.329200pt;}
.xb9{left:495.642400pt;}
.x74{left:500.102933pt;}
.x5{left:503.189200pt;}
.x73{left:504.178533pt;}
.x76{left:505.871200pt;}
.x9b{left:509.233867pt;}
.x56{left:511.778421pt;}
.x5d{left:513.284133pt;}
.xb3{left:515.847467pt;}
.xa3{left:520.022800pt;}
.x81{left:523.910533pt;}
.x9e{left:525.555733pt;}
.xb4{left:527.507600pt;}
.x34{left:528.427333pt;}
.x2e{left:530.557733pt;}
.x31{left:533.031600pt;}
.x30{left:534.411867pt;}
.x2f{left:535.551200pt;}
.x57{left:536.968912pt;}
.x20{left:538.992667pt;}
.xa4{left:540.673867pt;}
.x5e{left:541.611067pt;}
.x7a{left:544.383200pt;}
.x7c{left:549.570667pt;}
.xd8{left:551.267200pt;}
.xc6{left:554.002800pt;}
.xb8{left:558.936667pt;}
.x66{left:560.572667pt;}
.x58{left:562.159403pt;}
.x6e{left:564.893467pt;}
.x68{left:570.644267pt;}
.x9c{left:574.689600pt;}
.x9a{left:577.839200pt;}
.x75{left:581.737067pt;}
.xaf{left:584.407733pt;}
.x59{left:587.349893pt;}
.xc2{left:590.846933pt;}
.x22{left:592.143733pt;}
.x1c{left:597.673467pt;}
.x19{left:598.643467pt;}
.x1a{left:601.866133pt;}
.xb1{left:603.112133pt;}
.x3d{left:604.913333pt;}
.x41{left:608.350533pt;}
.x17{left:609.510667pt;}
.x5a{left:612.540384pt;}
.x40{left:613.454667pt;}
.xd0{left:615.114800pt;}
.x87{left:616.166000pt;}
.xb0{left:618.001467pt;}
.x6f{left:623.480667pt;}
.x3f{left:624.463733pt;}
.xbb{left:631.943600pt;}
.xd1{left:633.116133pt;}
.xbd{left:636.774000pt;}
.x39{left:637.973733pt;}
.x85{left:642.052400pt;}
.x7b{left:648.920933pt;}
.x47{left:652.078045pt;}
.xcc{left:653.825733pt;}
.xac{left:656.658800pt;}
.x21{left:662.970533pt;}
.xab{left:671.932267pt;}
.x1b{left:680.362267pt;}
.xd3{left:684.776267pt;}
.xd4{left:687.692933pt;}
.xd7{left:691.403867pt;}
.x3{left:694.026267pt;}
.xd2{left:696.677333pt;}
.x1{left:711.034133pt;}
.x86{left:714.662133pt;}
.xd6{left:720.371333pt;}
.xd5{left:723.789333pt;}
.x3c{left:726.860933pt;}
.x4{left:728.692933pt;}
.x1e{left:730.616133pt;}
.x18{left:734.034133pt;}
.x2{left:745.700800pt;}
.x33{left:933.372933pt;}
.xae{left:981.211467pt;}
.x6d{left:1063.341600pt;}
.x32{left:1322.128133pt;}
.xc3{left:1347.703600pt;}
.xcb{left:1447.526533pt;}
}




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