
    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_cdee3a45588f5287c96e07f9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_53c20eb4477d19932d8f0b9e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f96b632b836d25b19f7ab25c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.182129;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_7563089ff8617979ca72a5f7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_83ce159fc648dce3f8c5f928.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_51e6763db680a73157b0f327.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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_25a10f12b0c4cdb0f9d5dbdc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.099609;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_c23fa508d1d27fef7e34230b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_fe9974fe57675c8817eae260.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923000;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;}
.m4{transform:matrix(0.176651,-0.176902,0.176651,0.176902,0,0);-ms-transform:matrix(0.176651,-0.176902,0.176651,0.176902,0,0);-webkit-transform:matrix(0.176651,-0.176902,0.176651,0.176902,0,0);}
.m2{transform:matrix(0.181629,-0.171787,0.181629,0.171787,0,0);-ms-transform:matrix(0.181629,-0.171787,0.181629,0.171787,0,0);-webkit-transform:matrix(0.181629,-0.171787,0.181629,0.171787,0,0);}
.m3{transform:matrix(0.249649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249649,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.264325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264325,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-16.974000px;}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.980000px;}
.v5{vertical-align:16.974000px;}
.v2{vertical-align:21.972000px;}
.v1{vertical-align:29.964000px;}
.lsfc{letter-spacing:-9.324000px;}
.lsbb{letter-spacing:-7.107000px;}
.lsaf{letter-spacing:-6.969000px;}
.lsa8{letter-spacing:-6.693000px;}
.ls96{letter-spacing:-6.642000px;}
.ls8b{letter-spacing:-6.624000px;}
.lsa5{letter-spacing:-6.555000px;}
.lsb3{letter-spacing:-6.003000px;}
.ls97{letter-spacing:-5.865000px;}
.ls51{letter-spacing:-5.796000px;}
.ls73{letter-spacing:-5.589000px;}
.lscf{letter-spacing:-5.520000px;}
.lsbc{letter-spacing:-5.451000px;}
.lsad{letter-spacing:-5.244000px;}
.ls5f{letter-spacing:-4.968000px;}
.ls7e{letter-spacing:-4.899000px;}
.ls9a{letter-spacing:-4.761000px;}
.lsbe{letter-spacing:-4.623000px;}
.lsae{letter-spacing:-4.554000px;}
.ls8a{letter-spacing:-4.416000px;}
.ls9b{letter-spacing:-4.347000px;}
.ls88{letter-spacing:-4.200000px;}
.ls58{letter-spacing:-4.140000px;}
.ls92{letter-spacing:-4.071000px;}
.ls7a{letter-spacing:-3.933000px;}
.ls93{letter-spacing:-3.864000px;}
.ls9c{letter-spacing:-3.795000px;}
.lse1{letter-spacing:-3.726000px;}
.lsa2{letter-spacing:-3.657000px;}
.ls80{letter-spacing:-3.588000px;}
.ls121{letter-spacing:-3.540000px;}
.lsa9{letter-spacing:-3.519000px;}
.lsac{letter-spacing:-3.450000px;}
.ls75{letter-spacing:-3.381000px;}
.ls120{letter-spacing:-3.360000px;}
.ls34{letter-spacing:-3.312000px;}
.lsf0{letter-spacing:-3.240000px;}
.lseb{letter-spacing:-3.225000px;}
.lsa1{letter-spacing:-3.174000px;}
.lsde{letter-spacing:-3.159000px;}
.ls5c{letter-spacing:-3.105000px;}
.ls106{letter-spacing:-3.024000px;}
.ls1e{letter-spacing:-3.000000px;}
.lsa3{letter-spacing:-2.967000px;}
.ls3a{letter-spacing:-2.898000px;}
.ls63{letter-spacing:-2.829000px;}
.ls41{letter-spacing:-2.760000px;}
.lsd3{letter-spacing:-2.691000px;}
.ls11a{letter-spacing:-2.640000px;}
.ls99{letter-spacing:-2.622000px;}
.ls9f{letter-spacing:-2.553000px;}
.lscc{letter-spacing:-2.550000px;}
.ls35{letter-spacing:-2.484000px;}
.ls3{letter-spacing:-2.475000px;}
.lsdf{letter-spacing:-2.430000px;}
.ls6b{letter-spacing:-2.415000px;}
.ls4a{letter-spacing:-2.346000px;}
.ls4f{letter-spacing:-2.277000px;}
.ls2c{letter-spacing:-2.208000px;}
.ls81{letter-spacing:-2.139000px;}
.lsc4{letter-spacing:-2.100000px;}
.ls52{letter-spacing:-2.070000px;}
.ls100{letter-spacing:-2.016000px;}
.ls2d{letter-spacing:-2.001000px;}
.ls32{letter-spacing:-1.932000px;}
.ls5a{letter-spacing:-1.863000px;}
.ls2e{letter-spacing:-1.794000px;}
.ls2f{letter-spacing:-1.725000px;}
.lse2{letter-spacing:-1.701000px;}
.ls22{letter-spacing:-1.680000px;}
.ls30{letter-spacing:-1.656000px;}
.ls1c{letter-spacing:-1.620000px;}
.ls33{letter-spacing:-1.587000px;}
.ls54{letter-spacing:-1.518000px;}
.ls10b{letter-spacing:-1.512000px;}
.ls62{letter-spacing:-1.449000px;}
.lsdc{letter-spacing:-1.404000px;}
.ls53{letter-spacing:-1.380000px;}
.lsd{letter-spacing:-1.320000px;}
.ls49{letter-spacing:-1.311000px;}
.ls104{letter-spacing:-1.260000px;}
.ls47{letter-spacing:-1.242000px;}
.ls116{letter-spacing:-1.197000px;}
.ls39{letter-spacing:-1.173000px;}
.lsb{letter-spacing:-1.140000px;}
.ls10f{letter-spacing:-1.134000px;}
.ls44{letter-spacing:-1.104000px;}
.lsfe{letter-spacing:-1.071000px;}
.ls50{letter-spacing:-1.035000px;}
.lsee{letter-spacing:-0.994500px;}
.lsed{letter-spacing:-0.984779px;}
.lse9{letter-spacing:-0.972000px;}
.ls3b{letter-spacing:-0.966000px;}
.ls15{letter-spacing:-0.960000px;}
.ls101{letter-spacing:-0.945000px;}
.lsd9{letter-spacing:-0.925221px;}
.lsc{letter-spacing:-0.900000px;}
.ls61{letter-spacing:-0.897000px;}
.ls10{letter-spacing:-0.840000px;}
.ls3c{letter-spacing:-0.828000px;}
.lsf8{letter-spacing:-0.819000px;}
.lsa{letter-spacing:-0.780000px;}
.ls2b{letter-spacing:-0.759000px;}
.lsdb{letter-spacing:-0.756000px;}
.ls14{letter-spacing:-0.720000px;}
.lsf6{letter-spacing:-0.693000px;}
.ls45{letter-spacing:-0.690000px;}
.ls12{letter-spacing:-0.660000px;}
.ls10d{letter-spacing:-0.630000px;}
.ls42{letter-spacing:-0.621000px;}
.lsf{letter-spacing:-0.600000px;}
.lsda{letter-spacing:-0.598158px;}
.lsf5{letter-spacing:-0.567000px;}
.ls6a{letter-spacing:-0.552000px;}
.ls23{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.483000px;}
.ls1d{letter-spacing:-0.480000px;}
.lsfd{letter-spacing:-0.441000px;}
.ls11e{letter-spacing:-0.420000px;}
.ls76{letter-spacing:-0.414000px;}
.ls70{letter-spacing:-0.378000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls55{letter-spacing:-0.345000px;}
.lsf3{letter-spacing:-0.315000px;}
.ls7{letter-spacing:-0.300000px;}
.ls43{letter-spacing:-0.276000px;}
.lsf7{letter-spacing:-0.252000px;}
.lsc6{letter-spacing:-0.241362px;}
.ls13{letter-spacing:-0.240000px;}
.ls56{letter-spacing:-0.207000px;}
.lse{letter-spacing:-0.180000px;}
.ls69{letter-spacing:-0.160908px;}
.ls46{letter-spacing:-0.138000px;}
.lsfa{letter-spacing:-0.126000px;}
.ls11b{letter-spacing:-0.120000px;}
.ls5b{letter-spacing:-0.069000px;}
.lsc7{letter-spacing:-0.062964px;}
.ls11{letter-spacing:-0.060000px;}
.ls6{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.004500px;}
.ls17{letter-spacing:0.006000px;}
.ls7c{letter-spacing:0.021000px;}
.ls84{letter-spacing:0.069000px;}
.ls110{letter-spacing:0.126000px;}
.ls29{letter-spacing:0.138000px;}
.ls21{letter-spacing:0.180000px;}
.lscd{letter-spacing:0.207000px;}
.ls59{letter-spacing:0.276000px;}
.ls115{letter-spacing:0.315000px;}
.lsa4{letter-spacing:0.345000px;}
.ls40{letter-spacing:0.414000px;}
.ls105{letter-spacing:0.441000px;}
.ls1f{letter-spacing:0.480000px;}
.ls83{letter-spacing:0.552000px;}
.ls113{letter-spacing:0.567000px;}
.lsb6{letter-spacing:0.573000px;}
.ls11d{letter-spacing:0.600000px;}
.ls38{letter-spacing:0.621000px;}
.lsa7{letter-spacing:0.690000px;}
.ls90{letter-spacing:0.696000px;}
.ls8f{letter-spacing:0.702000px;}
.ls19{letter-spacing:0.720000px;}
.ls78{letter-spacing:0.759000px;}
.ls6d{letter-spacing:0.828000px;}
.ls8d{letter-spacing:0.834000px;}
.lsd7{letter-spacing:0.892863px;}
.lsff{letter-spacing:0.945000px;}
.lscb{letter-spacing:0.951000px;}
.ls79{letter-spacing:0.966000px;}
.ls6e{letter-spacing:1.035000px;}
.ls6c{letter-spacing:1.104000px;}
.ls77{letter-spacing:1.173000px;}
.lsf4{letter-spacing:1.197000px;}
.lsb0{letter-spacing:1.242000px;}
.lse4{letter-spacing:1.251000px;}
.lse5{letter-spacing:1.256400px;}
.ls87{letter-spacing:1.257000px;}
.ls18{letter-spacing:1.259280px;}
.ls5{letter-spacing:1.260000px;}
.ls4d{letter-spacing:1.264500px;}
.lsb7{letter-spacing:1.299000px;}
.ls64{letter-spacing:1.311000px;}
.ls36{letter-spacing:1.327491px;}
.ls57{letter-spacing:1.380000px;}
.ls7d{letter-spacing:1.449000px;}
.ls2{letter-spacing:1.452000px;}
.ls118{letter-spacing:1.452600px;}
.ls1{letter-spacing:1.458000px;}
.ls67{letter-spacing:1.494000px;}
.ls74{letter-spacing:1.518000px;}
.ls4c{letter-spacing:1.540500px;}
.ls11c{letter-spacing:1.560000px;}
.ls6f{letter-spacing:1.587000px;}
.ls8e{letter-spacing:1.653000px;}
.ls68{letter-spacing:1.656000px;}
.ls7f{letter-spacing:1.725000px;}
.ls9{letter-spacing:1.740000px;}
.lsce{letter-spacing:1.794000px;}
.ls60{letter-spacing:1.863000px;}
.lse7{letter-spacing:1.917000px;}
.lsaa{letter-spacing:1.932000px;}
.lsc0{letter-spacing:2.001000px;}
.ls119{letter-spacing:2.058600px;}
.lsd2{letter-spacing:2.139000px;}
.ls72{letter-spacing:2.196000px;}
.lsd5{letter-spacing:2.247000px;}
.ls4e{letter-spacing:2.319000px;}
.lsf1{letter-spacing:2.331000px;}
.ls82{letter-spacing:2.346000px;}
.ls28{letter-spacing:2.400000px;}
.lsb4{letter-spacing:2.415000px;}
.ls3e{letter-spacing:2.421000px;}
.ls20{letter-spacing:2.460000px;}
.lsb8{letter-spacing:2.535000px;}
.lsb9{letter-spacing:2.553000px;}
.lsbd{letter-spacing:2.691000px;}
.ls86{letter-spacing:2.745000px;}
.lsbf{letter-spacing:2.829000px;}
.lsc5{letter-spacing:2.898000px;}
.lsf2{letter-spacing:3.087000px;}
.lsb1{letter-spacing:3.243000px;}
.ls24{letter-spacing:3.696000px;}
.ls117{letter-spacing:3.720000px;}
.lsc9{letter-spacing:3.726000px;}
.ls8c{letter-spacing:4.071000px;}
.ls11f{letter-spacing:4.080000px;}
.ls26{letter-spacing:4.200000px;}
.lsec{letter-spacing:4.347000px;}
.ls94{letter-spacing:4.416000px;}
.lse0{letter-spacing:4.485000px;}
.lsc8{letter-spacing:4.554000px;}
.ls1a{letter-spacing:4.620000px;}
.ls48{letter-spacing:4.968000px;}
.lse6{letter-spacing:5.235000px;}
.ls98{letter-spacing:5.244000px;}
.ls112{letter-spacing:5.418000px;}
.lsc1{letter-spacing:5.589000px;}
.ls91{letter-spacing:5.658000px;}
.ls25{letter-spacing:5.760000px;}
.ls111{letter-spacing:5.796000px;}
.ls10e{letter-spacing:5.859000px;}
.ls8{letter-spacing:5.880000px;}
.ls4{letter-spacing:6.000000px;}
.lsf9{letter-spacing:6.111000px;}
.ls9d{letter-spacing:6.279000px;}
.ls103{letter-spacing:6.300000px;}
.lsab{letter-spacing:6.486000px;}
.ls10c{letter-spacing:6.615000px;}
.lsba{letter-spacing:6.762000px;}
.lsd6{letter-spacing:6.900000px;}
.lsd0{letter-spacing:7.038000px;}
.lsfb{letter-spacing:7.056000px;}
.ls107{letter-spacing:7.560000px;}
.ls102{letter-spacing:7.623000px;}
.ls5d{letter-spacing:7.935000px;}
.lsa0{letter-spacing:8.004000px;}
.lsc3{letter-spacing:8.161158px;}
.ls108{letter-spacing:8.379000px;}
.ls114{letter-spacing:8.568000px;}
.lsb2{letter-spacing:8.970000px;}
.lsd8{letter-spacing:9.039000px;}
.lse8{letter-spacing:9.576000px;}
.ls89{letter-spacing:9.867000px;}
.ls3f{letter-spacing:9.936000px;}
.lsd1{letter-spacing:11.799000px;}
.ls37{letter-spacing:13.179000px;}
.ls10a{letter-spacing:14.727000px;}
.lsd4{letter-spacing:475.138800px;}
.ls0{letter-spacing:475.221000px;}
.ls3d{letter-spacing:475.363800px;}
.lsc2{letter-spacing:475.438800px;}
.lsdd{letter-spacing:475.663800px;}
.ls5e{letter-spacing:475.851000px;}
.ls109{letter-spacing:475.858800px;}
.ls71{letter-spacing:476.038800px;}
.lse3{letter-spacing:476.076000px;}
.lsea{letter-spacing:476.233800px;}
.ls9e{letter-spacing:476.631000px;}
.ls85{letter-spacing:477.156000px;}
.lsa6{letter-spacing:477.231000px;}
.lsb5{letter-spacing:477.418800px;}
.ls27{letter-spacing:477.913800px;}
.lsca{letter-spacing:478.506000px;}
.lsef{letter-spacing:479.083800px;}
.ls95{letter-spacing:480.073800px;}
.ls7b{letter-spacing:952.524000px;}
.ls2a{letter-spacing:953.022000px;}
.ls4b{letter-spacing:955.644000px;}
.ls65{letter-spacing:959.694000px;}
.ls16{letter-spacing:961.674000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-22.740000px;}
.ws1f{word-spacing:-22.620000px;}
.ws101{word-spacing:-21.789000px;}
.ws129{word-spacing:-20.580000px;}
.ws84{word-spacing:-20.424000px;}
.ws108{word-spacing:-19.521000px;}
.ws9a{word-spacing:-19.458000px;}
.ws34{word-spacing:-19.389000px;}
.ws45{word-spacing:-19.251000px;}
.wsa3{word-spacing:-18.975000px;}
.ws5d{word-spacing:-18.699000px;}
.ws0{word-spacing:-18.600000px;}
.wsa4{word-spacing:-18.561000px;}
.wsea{word-spacing:-18.525000px;}
.wse3{word-spacing:-18.492000px;}
.wsf4{word-spacing:-18.423000px;}
.ws5b{word-spacing:-18.354000px;}
.wsff{word-spacing:-18.306000px;}
.ws80{word-spacing:-18.285000px;}
.ws8f{word-spacing:-18.216000px;}
.wsf2{word-spacing:-18.078000px;}
.wsab{word-spacing:-18.009000px;}
.ws102{word-spacing:-17.850000px;}
.wsac{word-spacing:-17.664000px;}
.ws99{word-spacing:-17.595000px;}
.wsfc{word-spacing:-17.577000px;}
.wse2{word-spacing:-17.526000px;}
.ws49{word-spacing:-17.319000px;}
.ws83{word-spacing:-17.181000px;}
.ws10a{word-spacing:-17.136000px;}
.wsa7{word-spacing:-17.112000px;}
.ws71{word-spacing:-17.043000px;}
.wse7{word-spacing:-16.974000px;}
.ws5c{word-spacing:-16.905000px;}
.wsa2{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.860000px;}
.wsb2{word-spacing:-16.836000px;}
.wsa6{word-spacing:-16.767000px;}
.ws20{word-spacing:-16.680000px;}
.wscf{word-spacing:-16.629000px;}
.ws35{word-spacing:-16.560000px;}
.ws3c{word-spacing:-16.491000px;}
.ws47{word-spacing:-16.422000px;}
.ws8e{word-spacing:-16.353000px;}
.ws30{word-spacing:-16.284000px;}
.ws46{word-spacing:-16.215000px;}
.ws76{word-spacing:-16.146000px;}
.ws5a{word-spacing:-16.077000px;}
.ws97{word-spacing:-16.008000px;}
.ws11a{word-spacing:-16.002000px;}
.ws48{word-spacing:-15.939000px;}
.ws3b{word-spacing:-15.870000px;}
.ws73{word-spacing:-15.801000px;}
.ws59{word-spacing:-15.732000px;}
.ws6f{word-spacing:-15.663000px;}
.ws74{word-spacing:-15.594000px;}
.ws109{word-spacing:-15.561000px;}
.ws72{word-spacing:-15.525000px;}
.ws3a{word-spacing:-15.456000px;}
.ws36{word-spacing:-15.387000px;}
.ws81{word-spacing:-15.318000px;}
.ws33{word-spacing:-15.249000px;}
.ws58{word-spacing:-15.180000px;}
.ws37{word-spacing:-15.111000px;}
.ws32{word-spacing:-15.042000px;}
.ws1d{word-spacing:-15.000000px;}
.ws96{word-spacing:-14.973000px;}
.ws98{word-spacing:-14.904000px;}
.ws31{word-spacing:-14.835000px;}
.wsf{word-spacing:-14.820000px;}
.wsce{word-spacing:-14.766000px;}
.wsc{word-spacing:-14.760000px;}
.ws119{word-spacing:-14.742000px;}
.ws4a{word-spacing:-14.697000px;}
.ws9{word-spacing:-14.640000px;}
.ws127{word-spacing:-14.616000px;}
.ws10{word-spacing:-14.580000px;}
.ws82{word-spacing:-14.559000px;}
.ws8{word-spacing:-14.520000px;}
.ws118{word-spacing:-14.490000px;}
.ws136{word-spacing:-14.460000px;}
.ws126{word-spacing:-14.427000px;}
.ws70{word-spacing:-14.421000px;}
.ws135{word-spacing:-14.400000px;}
.wsf0{word-spacing:-14.352000px;}
.ws1c{word-spacing:-14.340000px;}
.ws75{word-spacing:-14.283000px;}
.ws1e{word-spacing:-14.280000px;}
.wsd{word-spacing:-14.220000px;}
.wse{word-spacing:-14.160000px;}
.ws11{word-spacing:-14.100000px;}
.ws128{word-spacing:-14.049000px;}
.ws4{word-spacing:-14.040000px;}
.wsa{word-spacing:-13.980000px;}
.ws6{word-spacing:-13.920000px;}
.ws12{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.761132px;}
.ws38{word-spacing:-13.731000px;}
.ws5{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.500000px;}
.wsf6{word-spacing:-13.338000px;}
.ws1b{word-spacing:-13.200000px;}
.ws41{word-spacing:-13.179000px;}
.ws1{word-spacing:-13.062000px;}
.wse4{word-spacing:-12.960000px;}
.ws39{word-spacing:-12.631278px;}
.wsf7{word-spacing:-12.582000px;}
.ws11b{word-spacing:-12.537000px;}
.wsad{word-spacing:-12.144000px;}
.wscc{word-spacing:-11.799000px;}
.wseb{word-spacing:-11.523000px;}
.ws106{word-spacing:-11.466018px;}
.ws8d{word-spacing:-11.454000px;}
.ws57{word-spacing:-11.303787px;}
.ws7f{word-spacing:-11.142879px;}
.ws1a{word-spacing:-11.088660px;}
.wse1{word-spacing:-11.062425px;}
.wsc1{word-spacing:-10.488000px;}
.wsa5{word-spacing:-10.419000px;}
.wsf5{word-spacing:-10.378566px;}
.wsc5{word-spacing:-10.350000px;}
.wscd{word-spacing:-10.074000px;}
.ws4b{word-spacing:-9.936000px;}
.wsa8{word-spacing:-9.867000px;}
.ws2d{word-spacing:-9.829380px;}
.wsf8{word-spacing:-9.039000px;}
.wsd4{word-spacing:-8.970000px;}
.ws132{word-spacing:-8.568000px;}
.ws125{word-spacing:-8.379000px;}
.wsbe{word-spacing:-8.004000px;}
.ws6e{word-spacing:-7.935000px;}
.ws120{word-spacing:-7.623000px;}
.ws124{word-spacing:-7.560000px;}
.ws116{word-spacing:-7.056000px;}
.wsef{word-spacing:-7.038000px;}
.wsf3{word-spacing:-6.900000px;}
.wsd9{word-spacing:-6.762000px;}
.ws12b{word-spacing:-6.615000px;}
.wsca{word-spacing:-6.486000px;}
.ws121{word-spacing:-6.300000px;}
.wsba{word-spacing:-6.279000px;}
.ws114{word-spacing:-6.111000px;}
.ws14{word-spacing:-6.000000px;}
.ws12d{word-spacing:-5.859000px;}
.ws12f{word-spacing:-5.796000px;}
.wsae{word-spacing:-5.658000px;}
.wsdf{word-spacing:-5.589000px;}
.ws130{word-spacing:-5.418000px;}
.wsb5{word-spacing:-5.244000px;}
.ws55{word-spacing:-4.968000px;}
.ws23{word-spacing:-4.620000px;}
.wse8{word-spacing:-4.554000px;}
.wsfe{word-spacing:-4.485000px;}
.wsb1{word-spacing:-4.416000px;}
.ws104{word-spacing:-4.347000px;}
.ws2c{word-spacing:-4.200000px;}
.ws13b{word-spacing:-4.080000px;}
.wsaa{word-spacing:-4.071000px;}
.wse9{word-spacing:-3.726000px;}
.ws29{word-spacing:-3.696000px;}
.wsd3{word-spacing:-3.243000px;}
.ws10d{word-spacing:-3.087000px;}
.wse5{word-spacing:-2.898000px;}
.wsdc{word-spacing:-2.829000px;}
.wsdb{word-spacing:-2.691000px;}
.wsd8{word-spacing:-2.553000px;}
.ws27{word-spacing:-2.460000px;}
.wsd7{word-spacing:-2.415000px;}
.ws2e{word-spacing:-2.400000px;}
.wsa0{word-spacing:-2.346000px;}
.ws10c{word-spacing:-2.331000px;}
.wsf1{word-spacing:-2.139000px;}
.wsde{word-spacing:-2.001000px;}
.wsc9{word-spacing:-1.932000px;}
.ws77{word-spacing:-1.863000px;}
.wsed{word-spacing:-1.794000px;}
.ws16{word-spacing:-1.740000px;}
.ws9d{word-spacing:-1.725000px;}
.ws85{word-spacing:-1.656000px;}
.ws8b{word-spacing:-1.587000px;}
.ws139{word-spacing:-1.560000px;}
.ws90{word-spacing:-1.518000px;}
.ws9b{word-spacing:-1.449000px;}
.ws67{word-spacing:-1.380000px;}
.ws7e{word-spacing:-1.311000px;}
.ws2a{word-spacing:-1.260000px;}
.wsd2{word-spacing:-1.242000px;}
.ws10f{word-spacing:-1.197000px;}
.ws92{word-spacing:-1.173000px;}
.ws123{word-spacing:-1.134000px;}
.ws89{word-spacing:-1.104000px;}
.ws94{word-spacing:-0.966000px;}
.ws11d{word-spacing:-0.945000px;}
.ws8a{word-spacing:-0.828000px;}
.ws93{word-spacing:-0.759000px;}
.ws22{word-spacing:-0.720000px;}
.wsfa{word-spacing:-0.702000px;}
.wsc6{word-spacing:-0.690000px;}
.ws42{word-spacing:-0.621000px;}
.ws13a{word-spacing:-0.600000px;}
.ws131{word-spacing:-0.567000px;}
.wsa1{word-spacing:-0.552000px;}
.ws26{word-spacing:-0.480000px;}
.ws4c{word-spacing:-0.414000px;}
.wsc4{word-spacing:-0.345000px;}
.ws133{word-spacing:-0.315000px;}
.ws6a{word-spacing:-0.276000px;}
.wsec{word-spacing:-0.207000px;}
.ws2f{word-spacing:-0.138000px;}
.ws12e{word-spacing:-0.126000px;}
.ws103{word-spacing:-0.057210px;}
.ws13{word-spacing:0.000000px;}
.ws2b{word-spacing:0.060000px;}
.wse6{word-spacing:0.062964px;}
.ws6b{word-spacing:0.069000px;}
.ws138{word-spacing:0.120000px;}
.ws115{word-spacing:0.126000px;}
.wsbc{word-spacing:0.138000px;}
.ws66{word-spacing:0.207000px;}
.ws21{word-spacing:0.240000px;}
.ws112{word-spacing:0.252000px;}
.ws50{word-spacing:0.276000px;}
.ws15{word-spacing:0.300000px;}
.ws10e{word-spacing:0.315000px;}
.ws65{word-spacing:0.345000px;}
.ws24{word-spacing:0.360000px;}
.ws8c{word-spacing:0.378000px;}
.wsdd{word-spacing:0.414000px;}
.ws117{word-spacing:0.441000px;}
.ws56{word-spacing:0.483000px;}
.ws86{word-spacing:0.552000px;}
.ws110{word-spacing:0.567000px;}
.wsf9{word-spacing:0.598158px;}
.ws17{word-spacing:0.600000px;}
.ws4f{word-spacing:0.621000px;}
.ws12c{word-spacing:0.630000px;}
.ws52{word-spacing:0.690000px;}
.ws111{word-spacing:0.693000px;}
.ws13e{word-spacing:0.720000px;}
.ws7c{word-spacing:0.759000px;}
.ws113{word-spacing:0.819000px;}
.ws44{word-spacing:0.828000px;}
.ws19{word-spacing:0.840000px;}
.ws79{word-spacing:0.897000px;}
.ws11f{word-spacing:0.945000px;}
.ws18{word-spacing:0.960000px;}
.ws43{word-spacing:0.966000px;}
.ws105{word-spacing:0.984779px;}
.ws107{word-spacing:0.994500px;}
.ws5f{word-spacing:1.035000px;}
.ws11c{word-spacing:1.071000px;}
.ws51{word-spacing:1.104000px;}
.ws53{word-spacing:1.173000px;}
.ws134{word-spacing:1.197000px;}
.ws54{word-spacing:1.242000px;}
.ws122{word-spacing:1.260000px;}
.ws60{word-spacing:1.311000px;}
.ws63{word-spacing:1.380000px;}
.wsfb{word-spacing:1.404000px;}
.ws88{word-spacing:1.449000px;}
.ws12a{word-spacing:1.512000px;}
.ws64{word-spacing:1.518000px;}
.ws3f{word-spacing:1.587000px;}
.ws3e{word-spacing:1.656000px;}
.ws28{word-spacing:1.680000px;}
.ws3d{word-spacing:1.725000px;}
.ws69{word-spacing:1.794000px;}
.ws7b{word-spacing:1.863000px;}
.ws4e{word-spacing:1.932000px;}
.ws7a{word-spacing:2.001000px;}
.ws11e{word-spacing:2.016000px;}
.ws62{word-spacing:2.070000px;}
.wsc3{word-spacing:2.139000px;}
.wsbb{word-spacing:2.208000px;}
.ws5e{word-spacing:2.277000px;}
.ws78{word-spacing:2.346000px;}
.ws87{word-spacing:2.415000px;}
.ws40{word-spacing:2.484000px;}
.wsbd{word-spacing:2.553000px;}
.wsb6{word-spacing:2.622000px;}
.ws137{word-spacing:2.640000px;}
.ws4d{word-spacing:2.760000px;}
.ws7d{word-spacing:2.829000px;}
.wscb{word-spacing:2.898000px;}
.wsc2{word-spacing:2.967000px;}
.ws25{word-spacing:3.000000px;}
.ws6d{word-spacing:3.105000px;}
.wsfd{word-spacing:3.159000px;}
.wsbf{word-spacing:3.174000px;}
.ws10b{word-spacing:3.180000px;}
.wsc7{word-spacing:3.312000px;}
.ws13c{word-spacing:3.360000px;}
.ws91{word-spacing:3.381000px;}
.wsd0{word-spacing:3.450000px;}
.wsc8{word-spacing:3.519000px;}
.ws13d{word-spacing:3.540000px;}
.ws9f{word-spacing:3.588000px;}
.wsc0{word-spacing:3.657000px;}
.ws100{word-spacing:3.726000px;}
.wsb9{word-spacing:3.795000px;}
.wsb0{word-spacing:3.864000px;}
.ws95{word-spacing:3.933000px;}
.ws68{word-spacing:4.140000px;}
.wsb8{word-spacing:4.347000px;}
.wsa9{word-spacing:4.416000px;}
.wsd1{word-spacing:4.554000px;}
.ws6c{word-spacing:4.623000px;}
.wsb7{word-spacing:4.761000px;}
.ws9c{word-spacing:4.899000px;}
.ws9e{word-spacing:4.968000px;}
.wse0{word-spacing:5.244000px;}
.wsda{word-spacing:5.451000px;}
.wsee{word-spacing:5.520000px;}
.ws61{word-spacing:5.796000px;}
.wsb4{word-spacing:5.865000px;}
.wsd6{word-spacing:6.003000px;}
.wsb3{word-spacing:6.642000px;}
.wsd5{word-spacing:9.108000px;}
.wsaf{word-spacing:13.317000px;}
._21{margin-left:-18.033600px;}
._16{margin-left:-13.951800px;}
._18{margin-left:-12.715545px;}
._15{margin-left:-10.813839px;}
._19{margin-left:-8.853855px;}
._8{margin-left:-7.026600px;}
._9{margin-left:-5.529600px;}
._a{margin-left:-4.119900px;}
._7{margin-left:-2.350500px;}
._4{margin-left:-1.056000px;}
._2{width:1.056000px;}
._1{width:2.497500px;}
._0{width:3.547500px;}
._5{width:5.106000px;}
._3{width:6.312000px;}
._6{width:7.410000px;}
._1b{width:8.411100px;}
._10{width:9.417000px;}
._c{width:10.852914px;}
._d{width:11.944158px;}
._14{width:12.945300px;}
._17{width:13.951800px;}
._1c{width:15.076800px;}
._1a{width:16.081500px;}
._12{width:17.196900px;}
._13{width:18.358500px;}
._20{width:19.423500px;}
._1f{width:20.575200px;}
._1d{width:21.990000px;}
._22{width:23.187900px;}
._1e{width:27.767124px;}
._25{width:30.955800px;}
._24{width:35.240655px;}
._23{width:41.658780px;}
._b{width:43.445160px;}
._11{width:71.442000px;}
._f{width:253.008000px;}
._e{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fs9{font-size:31.482000px;}
.fsb{font-size:34.980000px;}
.fse{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:48.000000px;}
.fs8{font-size:48.972000px;}
.fsa{font-size:54.000000px;}
.fs11{font-size:57.210425px;}
.fs10{font-size:57.928200px;}
.fs12{font-size:58.500000px;}
.fs13{font-size:58.500090px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:62.964000px;}
.fs4{font-size:63.000000px;}
.fsc{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fsf{font-size:81.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y244{bottom:97.795200px;}
.y41{bottom:106.299150px;}
.y1f{bottom:106.299300px;}
.y51{bottom:109.294650px;}
.y243{bottom:118.527450px;}
.y1e{bottom:123.549300px;}
.y30e{bottom:126.011550px;}
.ye6{bottom:126.544800px;}
.y27b{bottom:126.549150px;}
.y9f{bottom:126.559650px;}
.y7c{bottom:126.719850px;}
.y40{bottom:126.973650px;}
.y204{bottom:126.997650px;}
.y1a1{bottom:127.093800px;}
.y26b{bottom:127.245600px;}
.y10b{bottom:127.257150px;}
.y2f1{bottom:127.370550px;}
.y17d{bottom:127.671450px;}
.y2d1{bottom:127.958700px;}
.y29f{bottom:129.511200px;}
.y12b{bottom:129.722850px;}
.y242{bottom:139.259550px;}
.yc3{bottom:140.799300px;}
.y1d{bottom:143.794800px;}
.y30d{bottom:145.723800px;}
.y27a{bottom:146.799150px;}
.y9e{bottom:146.820000px;}
.y7b{bottom:147.140400px;}
.y3f{bottom:147.648150px;}
.y203{bottom:147.696000px;}
.y1a0{bottom:147.888300px;}
.y26a{bottom:148.192050px;}
.y10a{bottom:148.215150px;}
.y17c{bottom:149.043600px;}
.y2d0{bottom:149.618400px;}
.y29e{bottom:152.722500px;}
.y12a{bottom:153.147000px;}
.y50{bottom:153.946500px;}
.y2f0{bottom:156.946500px;}
.yc2{bottom:158.049000px;}
.y241{bottom:159.991500px;}
.y1c{bottom:162.301500px;}
.y30c{bottom:165.436500px;}
.y279{bottom:167.049000px;}
.y9d{bottom:167.080500px;}
.y7a{bottom:167.560500px;}
.y3e{bottom:168.322500px;}
.y202{bottom:168.394500px;}
.y19f{bottom:168.682500px;}
.y269{bottom:169.138500px;}
.y109{bottom:169.173000px;}
.y17b{bottom:170.415000px;}
.ye5{bottom:170.563500px;}
.y2cf{bottom:171.277500px;}
.y4f{bottom:174.196500px;}
.yc1{bottom:175.299000px;}
.y29d{bottom:175.935000px;}
.y129{bottom:176.569500px;}
.y2ef{bottom:178.017000px;}
.y1b{bottom:179.551500px;}
.y240{bottom:180.724500px;}
.y30b{bottom:185.148000px;}
.y278{bottom:187.299000px;}
.y9c{bottom:187.341000px;}
.y79{bottom:187.981500px;}
.y1a9{bottom:188.340000px;}
.y3d{bottom:188.997000px;}
.y201{bottom:189.093000px;}
.y19e{bottom:189.477000px;}
.y268{bottom:190.084500px;}
.y108{bottom:190.131000px;}
.y220{bottom:191.187000px;}
.y1c8{bottom:191.347500px;}
.y17a{bottom:191.788500px;}
.y14c{bottom:191.817000px;}
.ye4{bottom:192.096000px;}
.y4e{bottom:194.446500px;}
.yc0{bottom:195.544500px;}
.y2ee{bottom:199.089000px;}
.y29c{bottom:199.147500px;}
.y1a{bottom:199.797000px;}
.y128{bottom:199.993500px;}
.y2ce{bottom:201.441000px;}
.y30a{bottom:204.861000px;}
.y277{bottom:207.549000px;}
.y9b{bottom:207.601500px;}
.y78{bottom:208.402500px;}
.y3c{bottom:209.671500px;}
.y200{bottom:209.791500px;}
.y19d{bottom:210.271500px;}
.y267{bottom:211.032000px;}
.y107{bottom:211.089000px;}
.y21f{bottom:211.810500px;}
.y1c7{bottom:212.133000px;}
.y1a8{bottom:212.350500px;}
.y14b{bottom:213.070500px;}
.y179{bottom:213.160500px;}
.ye3{bottom:213.630000px;}
.ybf{bottom:214.051500px;}
.y4d{bottom:214.696500px;}
.y2ed{bottom:220.159500px;}
.y29b{bottom:222.360000px;}
.y23f{bottom:222.715500px;}
.y2cd{bottom:223.101000px;}
.y127{bottom:223.417500px;}
.y309{bottom:224.572500px;}
.y276{bottom:227.799000px;}
.y9a{bottom:227.862000px;}
.y1e6{bottom:228.174000px;}
.y77{bottom:228.822000px;}
.y3b{bottom:230.346000px;}
.y1ff{bottom:230.488500px;}
.y19c{bottom:231.066000px;}
.ybe{bottom:231.301500px;}
.y266{bottom:231.978000px;}
.y106{bottom:232.047000px;}
.y21e{bottom:232.434000px;}
.y1c6{bottom:232.917000px;}
.y14a{bottom:234.325500px;}
.y178{bottom:234.532500px;}
.y4c{bottom:234.946500px;}
.ye2{bottom:235.164000px;}
.y19{bottom:243.814500px;}
.y29a{bottom:245.571000px;}
.y126{bottom:246.841500px;}
.y23e{bottom:247.198500px;}
.y275{bottom:248.049000px;}
.y99{bottom:248.122500px;}
.y1e5{bottom:248.424000px;}
.ybd{bottom:248.551500px;}
.y76{bottom:249.243000px;}
.y2ec{bottom:249.735000px;}
.y3a{bottom:251.020500px;}
.y1fe{bottom:251.187000px;}
.y19b{bottom:251.860500px;}
.y265{bottom:252.924000px;}
.y105{bottom:253.005000px;}
.y21d{bottom:253.057500px;}
.y2cc{bottom:253.264500px;}
.y1c5{bottom:253.702500px;}
.y4b{bottom:255.196500px;}
.y149{bottom:255.579000px;}
.y177{bottom:255.904500px;}
.ye1{bottom:256.696500px;}
.y308{bottom:257.041500px;}
.y18{bottom:263.395500px;}
.y274{bottom:268.299000px;}
.y98{bottom:268.383000px;}
.y1e4{bottom:268.674000px;}
.y299{bottom:268.783500px;}
.ybc{bottom:268.797000px;}
.y75{bottom:269.664000px;}
.y125{bottom:270.264000px;}
.y2eb{bottom:270.805500px;}
.y23d{bottom:271.680000px;}
.y39{bottom:271.695000px;}
.y1fd{bottom:271.885500px;}
.y19a{bottom:272.655000px;}
.y21c{bottom:273.681000px;}
.y264{bottom:273.870000px;}
.y104{bottom:273.963000px;}
.y1c4{bottom:274.486500px;}
.y1a7{bottom:274.629000px;}
.y4a{bottom:275.446500px;}
.y148{bottom:276.834000px;}
.y176{bottom:277.276500px;}
.ye0{bottom:278.230500px;}
.y17{bottom:282.975000px;}
.y2cb{bottom:283.428000px;}
.ybb{bottom:287.302500px;}
.y273{bottom:288.549000px;}
.y157{bottom:288.643500px;}
.y1e3{bottom:288.924000px;}
.y74{bottom:290.085000px;}
.y298{bottom:291.996000px;}
.y1fc{bottom:292.584000px;}
.y199{bottom:293.449500px;}
.y124{bottom:293.688000px;}
.y21b{bottom:294.304500px;}
.y263{bottom:294.817500px;}
.y1a6{bottom:294.889500px;}
.y103{bottom:294.921000px;}
.y1c3{bottom:295.270500px;}
.y49{bottom:295.696500px;}
.y147{bottom:298.087500px;}
.y175{bottom:298.648500px;}
.ydf{bottom:299.764500px;}
.y2ea{bottom:300.381000px;}
.y16{bottom:302.554500px;}
.yba{bottom:304.552500px;}
.y2ca{bottom:305.088000px;}
.y272{bottom:308.799000px;}
.y156{bottom:308.902500px;}
.y1e2{bottom:309.174000px;}
.y97{bottom:309.903000px;}
.y73{bottom:310.504500px;}
.y1fb{bottom:313.282500px;}
.y198{bottom:314.244000px;}
.y21a{bottom:314.928000px;}
.y307{bottom:315.021000px;}
.y1a5{bottom:315.150000px;}
.y297{bottom:315.207000px;}
.y262{bottom:315.763500px;}
.y102{bottom:315.879000px;}
.y48{bottom:315.946500px;}
.y1c2{bottom:316.056000px;}
.y123{bottom:317.112000px;}
.y146{bottom:319.341000px;}
.y174{bottom:320.020500px;}
.yde{bottom:321.297000px;}
.y2e9{bottom:321.453000px;}
.y15{bottom:322.134000px;}
.yb9{bottom:324.798000px;}
.y2c9{bottom:326.746500px;}
.y271{bottom:329.049000px;}
.y155{bottom:329.163000px;}
.y1e1{bottom:329.424000px;}
.y72{bottom:330.925500px;}
.y96{bottom:333.913500px;}
.y1fa{bottom:333.981000px;}
.y23c{bottom:334.429500px;}
.y197{bottom:335.038500px;}
.y1a4{bottom:335.410500px;}
.y219{bottom:335.551500px;}
.y47{bottom:336.196500px;}
.y261{bottom:336.709500px;}
.y101{bottom:336.837000px;}
.y1c1{bottom:336.840000px;}
.y296{bottom:338.419500px;}
.y122{bottom:340.534500px;}
.y145{bottom:340.596000px;}
.y173{bottom:341.392500px;}
.y14{bottom:341.713500px;}
.y306{bottom:342.234000px;}
.ydd{bottom:342.831000px;}
.yb8{bottom:343.305000px;}
.y270{bottom:349.299000px;}
.y154{bottom:349.423500px;}
.y1e0{bottom:349.674000px;}
.y2e8{bottom:351.028500px;}
.y71{bottom:351.346500px;}
.y23b{bottom:355.162500px;}
.y1a3{bottom:355.671000px;}
.y196{bottom:355.833000px;}
.y218{bottom:356.175000px;}
.y46{bottom:356.446500px;}
.y2c8{bottom:356.910000px;}
.y1c0{bottom:357.625500px;}
.y260{bottom:357.655500px;}
.y100{bottom:357.795000px;}
.y13{bottom:361.293000px;}
.y295{bottom:361.632000px;}
.y144{bottom:361.849500px;}
.y172{bottom:362.764500px;}
.yb7{bottom:363.550500px;}
.y121{bottom:363.958500px;}
.ydc{bottom:364.365000px;}
.y305{bottom:369.445500px;}
.y26f{bottom:369.549000px;}
.y153{bottom:369.684000px;}
.y1df{bottom:369.924000px;}
.y70{bottom:371.766000px;}
.y2e7{bottom:372.099000px;}
.y23a{bottom:375.894000px;}
.y1a2{bottom:375.931500px;}
.y1f9{bottom:375.939000px;}
.y38{bottom:376.321500px;}
.y195{bottom:376.627500px;}
.y45{bottom:376.696500px;}
.y1bf{bottom:378.409500px;}
.y2c7{bottom:378.570000px;}
.y25f{bottom:378.603000px;}
.yff{bottom:378.753000px;}
.y12{bottom:380.872500px;}
.y143{bottom:383.103000px;}
.y171{bottom:384.136500px;}
.y294{bottom:384.843000px;}
.ydb{bottom:385.897500px;}
.y120{bottom:387.382500px;}
.y26e{bottom:389.799000px;}
.y152{bottom:389.944500px;}
.y1de{bottom:390.174000px;}
.y6f{bottom:392.187000px;}
.y95{bottom:396.190500px;}
.y239{bottom:396.625500px;}
.y44{bottom:396.946500px;}
.y194{bottom:397.422000px;}
.y37{bottom:397.746000px;}
.y217{bottom:398.058000px;}
.y1be{bottom:399.195000px;}
.y25e{bottom:399.549000px;}
.yfe{bottom:399.711000px;}
.y1f8{bottom:400.387500px;}
.y11{bottom:400.452000px;}
.y2e6{bottom:401.674500px;}
.y142{bottom:404.358000px;}
.y170{bottom:405.508500px;}
.yda{bottom:407.431500px;}
.yb6{bottom:407.569500px;}
.y293{bottom:408.055500px;}
.y2c6{bottom:408.733500px;}
.y26d{bottom:410.049000px;}
.y151{bottom:410.205000px;}
.y1dd{bottom:410.424000px;}
.y11f{bottom:410.806500px;}
.y6e{bottom:412.608000px;}
.y94{bottom:416.451000px;}
.y43{bottom:417.196500px;}
.y238{bottom:417.358500px;}
.y193{bottom:418.216500px;}
.y1bd{bottom:419.979000px;}
.y10{bottom:420.031500px;}
.y25d{bottom:420.495000px;}
.yfd{bottom:420.669000px;}
.y216{bottom:422.431500px;}
.y2e5{bottom:422.745000px;}
.y141{bottom:425.611500px;}
.y16f{bottom:426.882000px;}
.yd9{bottom:428.964000px;}
.yb5{bottom:429.096000px;}
.y26c{bottom:430.299000px;}
.y2c5{bottom:430.393500px;}
.y150{bottom:430.465500px;}
.y1dc{bottom:430.674000px;}
.y6d{bottom:433.027500px;}
.y11e{bottom:434.229000px;}
.y93{bottom:436.711500px;}
.y42{bottom:437.446500px;}
.y237{bottom:438.090000px;}
.y304{bottom:438.379500px;}
.y192{bottom:439.011000px;}
.y36{bottom:440.430000px;}
.y1bc{bottom:440.764500px;}
.yfc{bottom:441.627000px;}
.y2e4{bottom:443.817000px;}
.y140{bottom:446.865000px;}
.y16e{bottom:448.254000px;}
.yd8{bottom:450.498000px;}
.yb4{bottom:450.624000px;}
.y14f{bottom:450.726000px;}
.y1db{bottom:450.924000px;}
.yf{bottom:452.367000px;}
.y6c{bottom:453.448500px;}
.y92{bottom:456.972000px;}
.y11d{bottom:457.653000px;}
.y236{bottom:458.823000px;}
.y303{bottom:458.842500px;}
.y191{bottom:459.805500px;}
.y35{bottom:460.354500px;}
.y2c4{bottom:460.557000px;}
.y1bb{bottom:461.548500px;}
.yfb{bottom:462.585000px;}
.y25c{bottom:462.702000px;}
.y1f7{bottom:463.104000px;}
.y2e3{bottom:464.887500px;}
.y13f{bottom:468.120000px;}
.y16d{bottom:469.626000px;}
.y2a2{bottom:469.681500px;}
.y15a{bottom:470.986500px;}
.y1da{bottom:471.174000px;}
.yd7{bottom:472.032000px;}
.yb3{bottom:472.152000px;}
.y6b{bottom:473.869500px;}
.y91{bottom:477.232500px;}
.y235{bottom:479.554500px;}
.y34{bottom:480.279000px;}
.y190{bottom:480.600000px;}
.y11c{bottom:481.077000px;}
.y2c3{bottom:482.215500px;}
.y1ba{bottom:482.334000px;}
.yfa{bottom:483.543000px;}
.y1f6{bottom:483.802500px;}
.y215{bottom:485.073000px;}
.y302{bottom:487.809000px;}
.y13e{bottom:489.373500px;}
.y2a1{bottom:489.931500px;}
.y16c{bottom:490.998000px;}
.y249{bottom:491.247000px;}
.y1d9{bottom:491.424000px;}
.y14e{bottom:492.246000px;}
.yd6{bottom:493.564500px;}
.yb2{bottom:493.678500px;}
.y6a{bottom:494.290500px;}
.y2e2{bottom:494.463000px;}
.y54{bottom:495.690000px;}
.y90{bottom:497.493000px;}
.y33{bottom:500.203500px;}
.y234{bottom:500.287500px;}
.y18f{bottom:501.394500px;}
.y1b9{bottom:503.118000px;}
.yf9{bottom:504.499500px;}
.y214{bottom:505.696500px;}
.y301{bottom:508.270500px;}
.y2a0{bottom:510.181500px;}
.ye{bottom:510.214500px;}
.y13d{bottom:510.627000px;}
.y248{bottom:511.507500px;}
.y1d8{bottom:511.674000px;}
.y16b{bottom:512.370000px;}
.y2c2{bottom:512.379000px;}
.y159{bottom:512.506500px;}
.y69{bottom:514.710000px;}
.yd5{bottom:515.098500px;}
.yb1{bottom:515.206500px;}
.y2e1{bottom:515.535000px;}
.y53{bottom:515.940000px;}
.y14d{bottom:516.256500px;}
.y27c{bottom:517.020000px;}
.y8f{bottom:517.753500px;}
.y32{bottom:520.128000px;}
.y233{bottom:521.019000px;}
.y18e{bottom:522.189000px;}
.y1f5{bottom:525.198000px;}
.yf8{bottom:525.457500px;}
.y25b{bottom:525.666000px;}
.y213{bottom:526.320000px;}
.y11b{bottom:527.923500px;}
.y2b2{bottom:531.445757px;}
.y247{bottom:531.768000px;}
.y13c{bottom:531.882000px;}
.y16a{bottom:533.742000px;}
.y2b4{bottom:533.774237px;}
.y2c1{bottom:534.039000px;}
.y2b5{bottom:534.322723px;}
.y68{bottom:535.131000px;}
.y52{bottom:536.190000px;}
.y158{bottom:536.517000px;}
.yd4{bottom:536.632500px;}
.yb0{bottom:536.734500px;}
.y300{bottom:537.237000px;}
.yd{bottom:537.295500px;}
.y8e{bottom:538.014000px;}
.y31{bottom:540.051000px;}
.y2b3{bottom:541.339210px;}
.y232{bottom:541.750500px;}
.y18d{bottom:542.983500px;}
.y2e0{bottom:545.110500px;}
.y1b8{bottom:545.163000px;}
.y1f4{bottom:545.896500px;}
.yf7{bottom:546.415500px;}
.y25a{bottom:546.612000px;}
.y212{bottom:546.943500px;}
.y28a{bottom:549.447984px;}
.y11a{bottom:551.347500px;}
.y2b6{bottom:551.377546px;}
.y13b{bottom:553.135500px;}
.y1d7{bottom:553.183500px;}
.y2ad{bottom:554.358000px;}
.y169{bottom:555.114000px;}
.y67{bottom:555.552000px;}
.y2c0{bottom:555.699000px;}
.y2ae{bottom:556.914154px;}
.yd3{bottom:558.165000px;}
.yaf{bottom:558.261000px;}
.y8d{bottom:558.274500px;}
.y30{bottom:559.975500px;}
.y2b7{bottom:560.432746px;}
.y2b0{bottom:562.129949px;}
.y231{bottom:562.483500px;}
.y2b1{bottom:563.113085px;}
.y18c{bottom:563.778000px;}
.yc{bottom:564.375000px;}
.y2df{bottom:566.181000px;}
.y2ff{bottom:566.203500px;}
.y1f3{bottom:566.595000px;}
.yf6{bottom:567.373500px;}
.y259{bottom:567.558000px;}
.y211{bottom:567.567000px;}
.y2af{bottom:567.594115px;}
.y1b7{bottom:569.697000px;}
.y288{bottom:571.531500px;}
.y246{bottom:573.288000px;}
.y292{bottom:574.116264px;}
.y13a{bottom:574.389000px;}
.y119{bottom:574.771500px;}
.y28d{bottom:575.688744px;}
.y66{bottom:575.971500px;}
.y168{bottom:576.486000px;}
.y1d6{bottom:577.183500px;}
.y290{bottom:578.047464px;}
.y8c{bottom:578.535000px;}
.y289{bottom:578.568348px;}
.y28f{bottom:579.629772px;}
.yd2{bottom:579.699000px;}
.yae{bottom:579.789000px;}
.y2f{bottom:579.900000px;}
.y291{bottom:581.212080px;}
.y28b{bottom:581.772276px;}
.y230{bottom:583.215000px;}
.y28c{bottom:583.443036px;}
.y18b{bottom:584.572500px;}
.y2bf{bottom:585.862500px;}
.y2fe{bottom:586.665000px;}
.y1f2{bottom:587.293500px;}
.y28e{bottom:587.295612px;}
.y210{bottom:588.190500px;}
.yf5{bottom:588.331500px;}
.y258{bottom:588.505500px;}
.y2a3{bottom:589.966500px;}
.y31c{bottom:593.431500px;}
.y139{bottom:595.644000px;}
.y2de{bottom:595.756500px;}
.y65{bottom:596.392500px;}
.y245{bottom:597.298500px;}
.y167{bottom:597.858000px;}
.y118{bottom:598.194000px;}
.y8b{bottom:598.795500px;}
.yd1{bottom:601.233000px;}
.yad{bottom:601.317000px;}
.y22f{bottom:603.948000px;}
.y18a{bottom:605.367000px;}
.y27d{bottom:606.192000px;}
.y2fd{bottom:607.128000px;}
.y2be{bottom:607.521000px;}
.y1f1{bottom:607.992000px;}
.y20f{bottom:608.814000px;}
.yf4{bottom:609.289500px;}
.y257{bottom:609.451500px;}
.y2e{bottom:612.580500px;}
.yb{bottom:612.714000px;}
.y31b{bottom:613.681500px;}
.y64{bottom:616.813500px;}
.y2dd{bottom:616.827000px;}
.y138{bottom:616.897500px;}
.y8a{bottom:619.056000px;}
.y166{bottom:619.230000px;}
.y117{bottom:621.618000px;}
.yd0{bottom:622.765500px;}
.yac{bottom:622.843500px;}
.y22e{bottom:624.679500px;}
.y2a4{bottom:625.505250px;}
.y189{bottom:626.161500px;}
.y1f0{bottom:628.690500px;}
.y20e{bottom:629.437500px;}
.yf3{bottom:630.247500px;}
.y256{bottom:630.397500px;}
.y1b6{bottom:632.500500px;}
.y31a{bottom:633.931500px;}
.y2fc{bottom:636.094500px;}
.y27e{bottom:636.256736px;}
.y63{bottom:637.234500px;}
.y137{bottom:638.152500px;}
.y89{bottom:639.316500px;}
.y1d5{bottom:639.451500px;}
.y165{bottom:640.602000px;}
.ya{bottom:644.293500px;}
.ycf{bottom:644.299500px;}
.yab{bottom:644.371500px;}
.y116{bottom:645.042000px;}
.y22d{bottom:645.411000px;}
.y2dc{bottom:646.402500px;}
.y188{bottom:646.956000px;}
.y1ef{bottom:649.389000px;}
.y20d{bottom:650.062500px;}
.yf2{bottom:651.205500px;}
.y255{bottom:651.345000px;}
.y1b5{bottom:653.284500px;}
.y319{bottom:654.181500px;}
.y2fb{bottom:656.556000px;}
.y62{bottom:657.654000px;}
.y2bd{bottom:658.945500px;}
.y136{bottom:659.406000px;}
.y88{bottom:659.577000px;}
.y1d4{bottom:659.701500px;}
.y2a5{bottom:661.029375px;}
.y164{bottom:661.975500px;}
.y2d{bottom:662.269500px;}
.yce{bottom:665.833500px;}
.yaa{bottom:665.899500px;}
.y22c{bottom:666.144000px;}
.y27f{bottom:666.350436px;}
.y187{bottom:667.750500px;}
.y115{bottom:668.466000px;}
.y1ee{bottom:670.087500px;}
.y20c{bottom:670.684500px;}
.yf1{bottom:672.163500px;}
.y254{bottom:672.291000px;}
.y1b4{bottom:674.070000px;}
.y9{bottom:675.873000px;}
.y2db{bottom:675.978000px;}
.y61{bottom:678.075000px;}
.y87{bottom:679.837500px;}
.y1d3{bottom:679.951500px;}
.y135{bottom:680.659500px;}
.y163{bottom:683.347500px;}
.y2fa{bottom:685.522500px;}
.y22b{bottom:686.875500px;}
.y318{bottom:687.187500px;}
.ycd{bottom:687.366000px;}
.ya9{bottom:687.426000px;}
.y186{bottom:688.545000px;}
.y1ed{bottom:690.786000px;}
.y20b{bottom:691.309500px;}
.y114{bottom:691.888500px;}
.yf0{bottom:693.121500px;}
.y253{bottom:693.237000px;}
.y1b3{bottom:694.854000px;}
.y2a6{bottom:695.368875px;}
.y280{bottom:696.415171px;}
.y2da{bottom:697.050000px;}
.y60{bottom:698.496000px;}
.y86{bottom:700.098000px;}
.y1d2{bottom:700.201500px;}
.y134{bottom:701.914500px;}
.y162{bottom:704.719500px;}
.y2c{bottom:704.953500px;}
.y8{bottom:707.452500px;}
.y22a{bottom:707.608500px;}
.ycc{bottom:708.900000px;}
.ya8{bottom:708.954000px;}
.y185{bottom:709.339500px;}
.y1ec{bottom:711.483000px;}
.yef{bottom:714.079500px;}
.y252{bottom:714.183000px;}
.y2f9{bottom:714.489000px;}
.y113{bottom:715.312500px;}
.y1b2{bottom:715.639500px;}
.y2d9{bottom:718.120500px;}
.y5f{bottom:718.915500px;}
.y85{bottom:720.357000px;}
.y1d1{bottom:720.451500px;}
.y2bc{bottom:722.622000px;}
.y133{bottom:723.168000px;}
.y2b{bottom:724.878000px;}
.y161{bottom:726.091500px;}
.y281{bottom:726.508871px;}
.y229{bottom:728.340000px;}
.y317{bottom:728.697000px;}
.y184{bottom:730.134000px;}
.ycb{bottom:730.434000px;}
.ya7{bottom:730.482000px;}
.y2a7{bottom:730.907625px;}
.y20a{bottom:733.192500px;}
.y2f8{bottom:734.950500px;}
.yee{bottom:735.037500px;}
.y251{bottom:735.130500px;}
.y1b1{bottom:736.423500px;}
.y112{bottom:738.736500px;}
.y7{bottom:739.032000px;}
.y2d8{bottom:739.192500px;}
.y5e{bottom:739.336500px;}
.y84{bottom:740.617500px;}
.y1d0{bottom:740.701500px;}
.y2bb{bottom:744.282000px;}
.y132{bottom:744.421500px;}
.y2a{bottom:744.802500px;}
.y160{bottom:747.463500px;}
.y316{bottom:748.197000px;}
.y228{bottom:749.073000px;}
.y183{bottom:750.928500px;}
.yca{bottom:751.966500px;}
.ya6{bottom:752.008500px;}
.y1eb{bottom:753.442500px;}
.y2f7{bottom:755.413500px;}
.yed{bottom:755.995500px;}
.y250{bottom:756.076500px;}
.y282{bottom:756.573607px;}
.y1b0{bottom:757.209000px;}
.y209{bottom:757.566000px;}
.y5d{bottom:759.757500px;}
.y2d7{bottom:760.263000px;}
.y83{bottom:760.878000px;}
.y1cf{bottom:760.951500px;}
.y111{bottom:762.159000px;}
.y29{bottom:764.727000px;}
.y131{bottom:765.676500px;}
.y2ba{bottom:765.940500px;}
.y2a8{bottom:766.431750px;}
.y315{bottom:767.697000px;}
.y15f{bottom:768.835500px;}
.y227{bottom:769.804500px;}
.y6{bottom:770.613000px;}
.y182{bottom:771.723000px;}
.yc9{bottom:773.500500px;}
.ya5{bottom:773.536500px;}
.yec{bottom:776.953500px;}
.y24f{bottom:777.022500px;}
.y1ea{bottom:777.891000px;}
.y1af{bottom:777.993000px;}
.y5b{bottom:780.178500px;}
.y82{bottom:781.138500px;}
.y1ce{bottom:781.201500px;}
.y2d6{bottom:781.335000px;}
.y2f6{bottom:784.380000px;}
.y5c{bottom:784.422000px;}
.y28{bottom:784.651500px;}
.y110{bottom:785.583000px;}
.y283{bottom:786.652825px;}
.y130{bottom:786.930000px;}
.y314{bottom:787.198500px;}
.y15e{bottom:790.207500px;}
.y226{bottom:790.536000px;}
.y181{bottom:792.519000px;}
.yc8{bottom:795.034500px;}
.ya4{bottom:795.064500px;}
.yeb{bottom:797.911500px;}
.y24e{bottom:797.968500px;}
.y1ae{bottom:798.778500px;}
.y5a{bottom:800.598000px;}
.y81{bottom:801.399000px;}
.y1cd{bottom:801.451500px;}
.y2a9{bottom:801.941250px;}
.y27{bottom:804.576000px;}
.y2f5{bottom:804.841500px;}
.y313{bottom:806.698500px;}
.y12f{bottom:808.185000px;}
.y10f{bottom:809.007000px;}
.y2d5{bottom:810.910500px;}
.y225{bottom:811.269000px;}
.y15d{bottom:811.579500px;}
.y180{bottom:813.313500px;}
.yc7{bottom:816.567000px;}
.ya3{bottom:816.591000px;}
.y284{bottom:816.732043px;}
.y2b9{bottom:817.365000px;}
.yea{bottom:818.869500px;}
.y24d{bottom:818.916000px;}
.y1ad{bottom:819.562500px;}
.y208{bottom:820.207500px;}
.y59{bottom:821.019000px;}
.y80{bottom:821.659500px;}
.y1cc{bottom:821.701500px;}
.y26{bottom:824.500500px;}
.y312{bottom:826.198500px;}
.y5{bottom:831.955500px;}
.y2d4{bottom:831.981000px;}
.y224{bottom:832.000500px;}
.y10e{bottom:832.431000px;}
.y15c{bottom:832.951500px;}
.y2f4{bottom:833.808000px;}
.y17f{bottom:834.108000px;}
.y2aa{bottom:836.280750px;}
.yc6{bottom:838.101000px;}
.ya2{bottom:838.119000px;}
.ye9{bottom:839.827500px;}
.y24c{bottom:839.862000px;}
.y1ac{bottom:840.346500px;}
.y1e9{bottom:840.606000px;}
.y207{bottom:840.831000px;}
.y58{bottom:841.440000px;}
.y7f{bottom:841.920000px;}
.y1cb{bottom:841.951500px;}
.y25{bottom:844.425000px;}
.y311{bottom:845.698500px;}
.y285{bottom:846.796779px;}
.y12e{bottom:850.698000px;}
.y223{bottom:852.733500px;}
.y4{bottom:853.035000px;}
.y2f3{bottom:854.271000px;}
.y10d{bottom:855.853500px;}
.yc5{bottom:859.635000px;}
.ya1{bottom:859.647000px;}
.ye8{bottom:860.785500px;}
.y24b{bottom:860.808000px;}
.y1ab{bottom:861.132000px;}
.y1e8{bottom:861.304500px;}
.y206{bottom:861.454500px;}
.y2d3{bottom:861.556500px;}
.y57{bottom:861.861000px;}
.y7e{bottom:862.180500px;}
.y1ca{bottom:862.201500px;}
.y24{bottom:864.348000px;}
.y310{bottom:865.198500px;}
.y2ab{bottom:871.819500px;}
.y222{bottom:873.465000px;}
.y15b{bottom:875.584500px;}
.y12d{bottom:875.701500px;}
.y17e{bottom:876.162000px;}
.y286{bottom:876.875997px;}
.y10c{bottom:879.277500px;}
.y2b8{bottom:881.041500px;}
.yc4{bottom:881.167500px;}
.ya0{bottom:881.173500px;}
.ye7{bottom:881.743500px;}
.y24a{bottom:881.755500px;}
.y1aa{bottom:881.916000px;}
.y1e7{bottom:882.003000px;}
.y205{bottom:882.078000px;}
.y56{bottom:882.280500px;}
.y7d{bottom:882.441000px;}
.y1c9{bottom:882.451500px;}
.y3{bottom:882.619500px;}
.y2d2{bottom:882.627000px;}
.y2f2{bottom:883.236000px;}
.y23{bottom:884.272500px;}
.y30f{bottom:884.698500px;}
.y221{bottom:894.198000px;}
.y12c{bottom:900.706500px;}
.y55{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y22{bottom:904.198500px;}
.y287{bottom:906.955214px;}
.y2ac{bottom:907.329000px;}
.y21{bottom:948.189000px;}
.y20{bottom:966.189000px;}
.h8{height:33.870539px;}
.h11{height:37.957453px;}
.h15{height:40.333349px;}
.hc{height:40.757812px;}
.h14{height:40.839381px;}
.h16{height:41.242500px;}
.h17{height:41.242564px;}
.ha{height:41.396484px;}
.he{height:41.615355px;}
.h9{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h19{height:54.417480px;}
.h1a{height:54.479004px;}
.h7{height:55.488281px;}
.h18{height:58.262695px;}
.hb{height:58.589355px;}
.h10{height:59.600098px;}
.h12{height:59.667480px;}
.h2{height:63.684082px;}
.hd{height:63.811523px;}
.hf{height:68.778809px;}
.h6{height:71.326172px;}
.h13{height:74.909180px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:80.600550px;}
.x1{left:82.214250px;}
.x5{left:83.399100px;}
.x6{left:84.769350px;}
.xc{left:90.372063px;}
.xb{left:98.625150px;}
.x4{left:105.166650px;}
.x7{left:106.615200px;}
.x18{left:107.848050px;}
.xd{left:111.126000px;}
.x19{left:117.732150px;}
.xe{left:166.489781px;}
.x1a{left:168.565588px;}
.xf{left:181.816653px;}
.x8{left:225.156000px;}
.x1b{left:227.697308px;}
.x3{left:230.857500px;}
.x9{left:232.374000px;}
.x2{left:233.415000px;}
.x10{left:263.085446px;}
.x1c{left:269.095713px;}
.x11{left:312.567865px;}
.x1d{left:315.196133px;}
.x1e{left:325.840256px;}
.x12{left:352.604773px;}
.x1f{left:384.971976px;}
.x13{left:411.511919px;}
.x20{left:421.627029px;}
.x14{left:451.538436px;}
.x21{left:466.549361px;}
.x15{left:497.477489px;}
.x22{left:538.681379px;}
.x16{left:546.959907px;}
.x17{left:585.822621px;}
.x23{left:594.268503px;}
@media print{
.v6{vertical-align:-15.088000pt;}
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.426667pt;}
.v5{vertical-align:15.088000pt;}
.v2{vertical-align:19.530667pt;}
.v1{vertical-align:26.634667pt;}
.lsfc{letter-spacing:-8.288000pt;}
.lsbb{letter-spacing:-6.317333pt;}
.lsaf{letter-spacing:-6.194667pt;}
.lsa8{letter-spacing:-5.949333pt;}
.ls96{letter-spacing:-5.904000pt;}
.ls8b{letter-spacing:-5.888000pt;}
.lsa5{letter-spacing:-5.826667pt;}
.lsb3{letter-spacing:-5.336000pt;}
.ls97{letter-spacing:-5.213333pt;}
.ls51{letter-spacing:-5.152000pt;}
.ls73{letter-spacing:-4.968000pt;}
.lscf{letter-spacing:-4.906667pt;}
.lsbc{letter-spacing:-4.845333pt;}
.lsad{letter-spacing:-4.661333pt;}
.ls5f{letter-spacing:-4.416000pt;}
.ls7e{letter-spacing:-4.354667pt;}
.ls9a{letter-spacing:-4.232000pt;}
.lsbe{letter-spacing:-4.109333pt;}
.lsae{letter-spacing:-4.048000pt;}
.ls8a{letter-spacing:-3.925333pt;}
.ls9b{letter-spacing:-3.864000pt;}
.ls88{letter-spacing:-3.733333pt;}
.ls58{letter-spacing:-3.680000pt;}
.ls92{letter-spacing:-3.618667pt;}
.ls7a{letter-spacing:-3.496000pt;}
.ls93{letter-spacing:-3.434667pt;}
.ls9c{letter-spacing:-3.373333pt;}
.lse1{letter-spacing:-3.312000pt;}
.lsa2{letter-spacing:-3.250667pt;}
.ls80{letter-spacing:-3.189333pt;}
.ls121{letter-spacing:-3.146667pt;}
.lsa9{letter-spacing:-3.128000pt;}
.lsac{letter-spacing:-3.066667pt;}
.ls75{letter-spacing:-3.005333pt;}
.ls120{letter-spacing:-2.986667pt;}
.ls34{letter-spacing:-2.944000pt;}
.lsf0{letter-spacing:-2.880000pt;}
.lseb{letter-spacing:-2.866667pt;}
.lsa1{letter-spacing:-2.821333pt;}
.lsde{letter-spacing:-2.808000pt;}
.ls5c{letter-spacing:-2.760000pt;}
.ls106{letter-spacing:-2.688000pt;}
.ls1e{letter-spacing:-2.666667pt;}
.lsa3{letter-spacing:-2.637333pt;}
.ls3a{letter-spacing:-2.576000pt;}
.ls63{letter-spacing:-2.514667pt;}
.ls41{letter-spacing:-2.453333pt;}
.lsd3{letter-spacing:-2.392000pt;}
.ls11a{letter-spacing:-2.346667pt;}
.ls99{letter-spacing:-2.330667pt;}
.ls9f{letter-spacing:-2.269333pt;}
.lscc{letter-spacing:-2.266667pt;}
.ls35{letter-spacing:-2.208000pt;}
.ls3{letter-spacing:-2.200000pt;}
.lsdf{letter-spacing:-2.160000pt;}
.ls6b{letter-spacing:-2.146667pt;}
.ls4a{letter-spacing:-2.085333pt;}
.ls4f{letter-spacing:-2.024000pt;}
.ls2c{letter-spacing:-1.962667pt;}
.ls81{letter-spacing:-1.901333pt;}
.lsc4{letter-spacing:-1.866667pt;}
.ls52{letter-spacing:-1.840000pt;}
.ls100{letter-spacing:-1.792000pt;}
.ls2d{letter-spacing:-1.778667pt;}
.ls32{letter-spacing:-1.717333pt;}
.ls5a{letter-spacing:-1.656000pt;}
.ls2e{letter-spacing:-1.594667pt;}
.ls2f{letter-spacing:-1.533333pt;}
.lse2{letter-spacing:-1.512000pt;}
.ls22{letter-spacing:-1.493333pt;}
.ls30{letter-spacing:-1.472000pt;}
.ls1c{letter-spacing:-1.440000pt;}
.ls33{letter-spacing:-1.410667pt;}
.ls54{letter-spacing:-1.349333pt;}
.ls10b{letter-spacing:-1.344000pt;}
.ls62{letter-spacing:-1.288000pt;}
.lsdc{letter-spacing:-1.248000pt;}
.ls53{letter-spacing:-1.226667pt;}
.lsd{letter-spacing:-1.173333pt;}
.ls49{letter-spacing:-1.165333pt;}
.ls104{letter-spacing:-1.120000pt;}
.ls47{letter-spacing:-1.104000pt;}
.ls116{letter-spacing:-1.064000pt;}
.ls39{letter-spacing:-1.042667pt;}
.lsb{letter-spacing:-1.013333pt;}
.ls10f{letter-spacing:-1.008000pt;}
.ls44{letter-spacing:-0.981333pt;}
.lsfe{letter-spacing:-0.952000pt;}
.ls50{letter-spacing:-0.920000pt;}
.lsee{letter-spacing:-0.884000pt;}
.lsed{letter-spacing:-0.875359pt;}
.lse9{letter-spacing:-0.864000pt;}
.ls3b{letter-spacing:-0.858667pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls101{letter-spacing:-0.840000pt;}
.lsd9{letter-spacing:-0.822419pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls61{letter-spacing:-0.797333pt;}
.ls10{letter-spacing:-0.746667pt;}
.ls3c{letter-spacing:-0.736000pt;}
.lsf8{letter-spacing:-0.728000pt;}
.lsa{letter-spacing:-0.693333pt;}
.ls2b{letter-spacing:-0.674667pt;}
.lsdb{letter-spacing:-0.672000pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsf6{letter-spacing:-0.616000pt;}
.ls45{letter-spacing:-0.613333pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls10d{letter-spacing:-0.560000pt;}
.ls42{letter-spacing:-0.552000pt;}
.lsf{letter-spacing:-0.533333pt;}
.lsda{letter-spacing:-0.531696pt;}
.lsf5{letter-spacing:-0.504000pt;}
.ls6a{letter-spacing:-0.490667pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.429333pt;}
.ls1d{letter-spacing:-0.426667pt;}
.lsfd{letter-spacing:-0.392000pt;}
.ls11e{letter-spacing:-0.373333pt;}
.ls76{letter-spacing:-0.368000pt;}
.ls70{letter-spacing:-0.336000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls55{letter-spacing:-0.306667pt;}
.lsf3{letter-spacing:-0.280000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls43{letter-spacing:-0.245333pt;}
.lsf7{letter-spacing:-0.224000pt;}
.lsc6{letter-spacing:-0.214544pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls56{letter-spacing:-0.184000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls69{letter-spacing:-0.143029pt;}
.ls46{letter-spacing:-0.122667pt;}
.lsfa{letter-spacing:-0.112000pt;}
.ls11b{letter-spacing:-0.106667pt;}
.ls5b{letter-spacing:-0.061333pt;}
.lsc7{letter-spacing:-0.055968pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.004000pt;}
.ls17{letter-spacing:0.005333pt;}
.ls7c{letter-spacing:0.018667pt;}
.ls84{letter-spacing:0.061333pt;}
.ls110{letter-spacing:0.112000pt;}
.ls29{letter-spacing:0.122667pt;}
.ls21{letter-spacing:0.160000pt;}
.lscd{letter-spacing:0.184000pt;}
.ls59{letter-spacing:0.245333pt;}
.ls115{letter-spacing:0.280000pt;}
.lsa4{letter-spacing:0.306667pt;}
.ls40{letter-spacing:0.368000pt;}
.ls105{letter-spacing:0.392000pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls83{letter-spacing:0.490667pt;}
.ls113{letter-spacing:0.504000pt;}
.lsb6{letter-spacing:0.509333pt;}
.ls11d{letter-spacing:0.533333pt;}
.ls38{letter-spacing:0.552000pt;}
.lsa7{letter-spacing:0.613333pt;}
.ls90{letter-spacing:0.618667pt;}
.ls8f{letter-spacing:0.624000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls78{letter-spacing:0.674667pt;}
.ls6d{letter-spacing:0.736000pt;}
.ls8d{letter-spacing:0.741333pt;}
.lsd7{letter-spacing:0.793656pt;}
.lsff{letter-spacing:0.840000pt;}
.lscb{letter-spacing:0.845333pt;}
.ls79{letter-spacing:0.858667pt;}
.ls6e{letter-spacing:0.920000pt;}
.ls6c{letter-spacing:0.981333pt;}
.ls77{letter-spacing:1.042667pt;}
.lsf4{letter-spacing:1.064000pt;}
.lsb0{letter-spacing:1.104000pt;}
.lse4{letter-spacing:1.112000pt;}
.lse5{letter-spacing:1.116800pt;}
.ls87{letter-spacing:1.117333pt;}
.ls18{letter-spacing:1.119360pt;}
.ls5{letter-spacing:1.120000pt;}
.ls4d{letter-spacing:1.124000pt;}
.lsb7{letter-spacing:1.154667pt;}
.ls64{letter-spacing:1.165333pt;}
.ls36{letter-spacing:1.179992pt;}
.ls57{letter-spacing:1.226667pt;}
.ls7d{letter-spacing:1.288000pt;}
.ls2{letter-spacing:1.290667pt;}
.ls118{letter-spacing:1.291200pt;}
.ls1{letter-spacing:1.296000pt;}
.ls67{letter-spacing:1.328000pt;}
.ls74{letter-spacing:1.349333pt;}
.ls4c{letter-spacing:1.369333pt;}
.ls11c{letter-spacing:1.386667pt;}
.ls6f{letter-spacing:1.410667pt;}
.ls8e{letter-spacing:1.469333pt;}
.ls68{letter-spacing:1.472000pt;}
.ls7f{letter-spacing:1.533333pt;}
.ls9{letter-spacing:1.546667pt;}
.lsce{letter-spacing:1.594667pt;}
.ls60{letter-spacing:1.656000pt;}
.lse7{letter-spacing:1.704000pt;}
.lsaa{letter-spacing:1.717333pt;}
.lsc0{letter-spacing:1.778667pt;}
.ls119{letter-spacing:1.829867pt;}
.lsd2{letter-spacing:1.901333pt;}
.ls72{letter-spacing:1.952000pt;}
.lsd5{letter-spacing:1.997333pt;}
.ls4e{letter-spacing:2.061333pt;}
.lsf1{letter-spacing:2.072000pt;}
.ls82{letter-spacing:2.085333pt;}
.ls28{letter-spacing:2.133333pt;}
.lsb4{letter-spacing:2.146667pt;}
.ls3e{letter-spacing:2.152000pt;}
.ls20{letter-spacing:2.186667pt;}
.lsb8{letter-spacing:2.253333pt;}
.lsb9{letter-spacing:2.269333pt;}
.lsbd{letter-spacing:2.392000pt;}
.ls86{letter-spacing:2.440000pt;}
.lsbf{letter-spacing:2.514667pt;}
.lsc5{letter-spacing:2.576000pt;}
.lsf2{letter-spacing:2.744000pt;}
.lsb1{letter-spacing:2.882667pt;}
.ls24{letter-spacing:3.285333pt;}
.ls117{letter-spacing:3.306667pt;}
.lsc9{letter-spacing:3.312000pt;}
.ls8c{letter-spacing:3.618667pt;}
.ls11f{letter-spacing:3.626667pt;}
.ls26{letter-spacing:3.733333pt;}
.lsec{letter-spacing:3.864000pt;}
.ls94{letter-spacing:3.925333pt;}
.lse0{letter-spacing:3.986667pt;}
.lsc8{letter-spacing:4.048000pt;}
.ls1a{letter-spacing:4.106667pt;}
.ls48{letter-spacing:4.416000pt;}
.lse6{letter-spacing:4.653333pt;}
.ls98{letter-spacing:4.661333pt;}
.ls112{letter-spacing:4.816000pt;}
.lsc1{letter-spacing:4.968000pt;}
.ls91{letter-spacing:5.029333pt;}
.ls25{letter-spacing:5.120000pt;}
.ls111{letter-spacing:5.152000pt;}
.ls10e{letter-spacing:5.208000pt;}
.ls8{letter-spacing:5.226667pt;}
.ls4{letter-spacing:5.333333pt;}
.lsf9{letter-spacing:5.432000pt;}
.ls9d{letter-spacing:5.581333pt;}
.ls103{letter-spacing:5.600000pt;}
.lsab{letter-spacing:5.765333pt;}
.ls10c{letter-spacing:5.880000pt;}
.lsba{letter-spacing:6.010667pt;}
.lsd6{letter-spacing:6.133333pt;}
.lsd0{letter-spacing:6.256000pt;}
.lsfb{letter-spacing:6.272000pt;}
.ls107{letter-spacing:6.720000pt;}
.ls102{letter-spacing:6.776000pt;}
.ls5d{letter-spacing:7.053333pt;}
.lsa0{letter-spacing:7.114667pt;}
.lsc3{letter-spacing:7.254363pt;}
.ls108{letter-spacing:7.448000pt;}
.ls114{letter-spacing:7.616000pt;}
.lsb2{letter-spacing:7.973333pt;}
.lsd8{letter-spacing:8.034667pt;}
.lse8{letter-spacing:8.512000pt;}
.ls89{letter-spacing:8.770667pt;}
.ls3f{letter-spacing:8.832000pt;}
.lsd1{letter-spacing:10.488000pt;}
.ls37{letter-spacing:11.714667pt;}
.ls10a{letter-spacing:13.090667pt;}
.lsd4{letter-spacing:422.345600pt;}
.ls0{letter-spacing:422.418667pt;}
.ls3d{letter-spacing:422.545600pt;}
.lsc2{letter-spacing:422.612267pt;}
.lsdd{letter-spacing:422.812267pt;}
.ls5e{letter-spacing:422.978667pt;}
.ls109{letter-spacing:422.985600pt;}
.ls71{letter-spacing:423.145600pt;}
.lse3{letter-spacing:423.178667pt;}
.lsea{letter-spacing:423.318933pt;}
.ls9e{letter-spacing:423.672000pt;}
.ls85{letter-spacing:424.138667pt;}
.lsa6{letter-spacing:424.205333pt;}
.lsb5{letter-spacing:424.372267pt;}
.ls27{letter-spacing:424.812267pt;}
.lsca{letter-spacing:425.338667pt;}
.lsef{letter-spacing:425.852267pt;}
.ls95{letter-spacing:426.732267pt;}
.ls7b{letter-spacing:846.688000pt;}
.ls2a{letter-spacing:847.130667pt;}
.ls4b{letter-spacing:849.461333pt;}
.ls65{letter-spacing:853.061333pt;}
.ls16{letter-spacing:854.821333pt;}
.ws3{word-spacing:-20.213333pt;}
.ws1f{word-spacing:-20.106667pt;}
.ws101{word-spacing:-19.368000pt;}
.ws129{word-spacing:-18.293333pt;}
.ws84{word-spacing:-18.154667pt;}
.ws108{word-spacing:-17.352000pt;}
.ws9a{word-spacing:-17.296000pt;}
.ws34{word-spacing:-17.234667pt;}
.ws45{word-spacing:-17.112000pt;}
.wsa3{word-spacing:-16.866667pt;}
.ws5d{word-spacing:-16.621333pt;}
.ws0{word-spacing:-16.533333pt;}
.wsa4{word-spacing:-16.498667pt;}
.wsea{word-spacing:-16.466667pt;}
.wse3{word-spacing:-16.437333pt;}
.wsf4{word-spacing:-16.376000pt;}
.ws5b{word-spacing:-16.314667pt;}
.wsff{word-spacing:-16.272000pt;}
.ws80{word-spacing:-16.253333pt;}
.ws8f{word-spacing:-16.192000pt;}
.wsf2{word-spacing:-16.069333pt;}
.wsab{word-spacing:-16.008000pt;}
.ws102{word-spacing:-15.866667pt;}
.wsac{word-spacing:-15.701333pt;}
.ws99{word-spacing:-15.640000pt;}
.wsfc{word-spacing:-15.624000pt;}
.wse2{word-spacing:-15.578667pt;}
.ws49{word-spacing:-15.394667pt;}
.ws83{word-spacing:-15.272000pt;}
.ws10a{word-spacing:-15.232000pt;}
.wsa7{word-spacing:-15.210667pt;}
.ws71{word-spacing:-15.149333pt;}
.wse7{word-spacing:-15.088000pt;}
.ws5c{word-spacing:-15.026667pt;}
.wsa2{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.986667pt;}
.wsb2{word-spacing:-14.965333pt;}
.wsa6{word-spacing:-14.904000pt;}
.ws20{word-spacing:-14.826667pt;}
.wscf{word-spacing:-14.781333pt;}
.ws35{word-spacing:-14.720000pt;}
.ws3c{word-spacing:-14.658667pt;}
.ws47{word-spacing:-14.597333pt;}
.ws8e{word-spacing:-14.536000pt;}
.ws30{word-spacing:-14.474667pt;}
.ws46{word-spacing:-14.413333pt;}
.ws76{word-spacing:-14.352000pt;}
.ws5a{word-spacing:-14.290667pt;}
.ws97{word-spacing:-14.229333pt;}
.ws11a{word-spacing:-14.224000pt;}
.ws48{word-spacing:-14.168000pt;}
.ws3b{word-spacing:-14.106667pt;}
.ws73{word-spacing:-14.045333pt;}
.ws59{word-spacing:-13.984000pt;}
.ws6f{word-spacing:-13.922667pt;}
.ws74{word-spacing:-13.861333pt;}
.ws109{word-spacing:-13.832000pt;}
.ws72{word-spacing:-13.800000pt;}
.ws3a{word-spacing:-13.738667pt;}
.ws36{word-spacing:-13.677333pt;}
.ws81{word-spacing:-13.616000pt;}
.ws33{word-spacing:-13.554667pt;}
.ws58{word-spacing:-13.493333pt;}
.ws37{word-spacing:-13.432000pt;}
.ws32{word-spacing:-13.370667pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws96{word-spacing:-13.309333pt;}
.ws98{word-spacing:-13.248000pt;}
.ws31{word-spacing:-13.186667pt;}
.wsf{word-spacing:-13.173333pt;}
.wsce{word-spacing:-13.125333pt;}
.wsc{word-spacing:-13.120000pt;}
.ws119{word-spacing:-13.104000pt;}
.ws4a{word-spacing:-13.064000pt;}
.ws9{word-spacing:-13.013333pt;}
.ws127{word-spacing:-12.992000pt;}
.ws10{word-spacing:-12.960000pt;}
.ws82{word-spacing:-12.941333pt;}
.ws8{word-spacing:-12.906667pt;}
.ws118{word-spacing:-12.880000pt;}
.ws136{word-spacing:-12.853333pt;}
.ws126{word-spacing:-12.824000pt;}
.ws70{word-spacing:-12.818667pt;}
.ws135{word-spacing:-12.800000pt;}
.wsf0{word-spacing:-12.757333pt;}
.ws1c{word-spacing:-12.746667pt;}
.ws75{word-spacing:-12.696000pt;}
.ws1e{word-spacing:-12.693333pt;}
.wsd{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.586667pt;}
.ws11{word-spacing:-12.533333pt;}
.ws128{word-spacing:-12.488000pt;}
.ws4{word-spacing:-12.480000pt;}
.wsa{word-spacing:-12.426667pt;}
.ws6{word-spacing:-12.373333pt;}
.ws12{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.232117pt;}
.ws38{word-spacing:-12.205333pt;}
.ws5{word-spacing:-12.160000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsf6{word-spacing:-11.856000pt;}
.ws1b{word-spacing:-11.733333pt;}
.ws41{word-spacing:-11.714667pt;}
.ws1{word-spacing:-11.610667pt;}
.wse4{word-spacing:-11.520000pt;}
.ws39{word-spacing:-11.227803pt;}
.wsf7{word-spacing:-11.184000pt;}
.ws11b{word-spacing:-11.144000pt;}
.wsad{word-spacing:-10.794667pt;}
.wscc{word-spacing:-10.488000pt;}
.wseb{word-spacing:-10.242667pt;}
.ws106{word-spacing:-10.192016pt;}
.ws8d{word-spacing:-10.181333pt;}
.ws57{word-spacing:-10.047811pt;}
.ws7f{word-spacing:-9.904781pt;}
.ws1a{word-spacing:-9.856587pt;}
.wse1{word-spacing:-9.833267pt;}
.wsc1{word-spacing:-9.322667pt;}
.wsa5{word-spacing:-9.261333pt;}
.wsf5{word-spacing:-9.225392pt;}
.wsc5{word-spacing:-9.200000pt;}
.wscd{word-spacing:-8.954667pt;}
.ws4b{word-spacing:-8.832000pt;}
.wsa8{word-spacing:-8.770667pt;}
.ws2d{word-spacing:-8.737227pt;}
.wsf8{word-spacing:-8.034667pt;}
.wsd4{word-spacing:-7.973333pt;}
.ws132{word-spacing:-7.616000pt;}
.ws125{word-spacing:-7.448000pt;}
.wsbe{word-spacing:-7.114667pt;}
.ws6e{word-spacing:-7.053333pt;}
.ws120{word-spacing:-6.776000pt;}
.ws124{word-spacing:-6.720000pt;}
.ws116{word-spacing:-6.272000pt;}
.wsef{word-spacing:-6.256000pt;}
.wsf3{word-spacing:-6.133333pt;}
.wsd9{word-spacing:-6.010667pt;}
.ws12b{word-spacing:-5.880000pt;}
.wsca{word-spacing:-5.765333pt;}
.ws121{word-spacing:-5.600000pt;}
.wsba{word-spacing:-5.581333pt;}
.ws114{word-spacing:-5.432000pt;}
.ws14{word-spacing:-5.333333pt;}
.ws12d{word-spacing:-5.208000pt;}
.ws12f{word-spacing:-5.152000pt;}
.wsae{word-spacing:-5.029333pt;}
.wsdf{word-spacing:-4.968000pt;}
.ws130{word-spacing:-4.816000pt;}
.wsb5{word-spacing:-4.661333pt;}
.ws55{word-spacing:-4.416000pt;}
.ws23{word-spacing:-4.106667pt;}
.wse8{word-spacing:-4.048000pt;}
.wsfe{word-spacing:-3.986667pt;}
.wsb1{word-spacing:-3.925333pt;}
.ws104{word-spacing:-3.864000pt;}
.ws2c{word-spacing:-3.733333pt;}
.ws13b{word-spacing:-3.626667pt;}
.wsaa{word-spacing:-3.618667pt;}
.wse9{word-spacing:-3.312000pt;}
.ws29{word-spacing:-3.285333pt;}
.wsd3{word-spacing:-2.882667pt;}
.ws10d{word-spacing:-2.744000pt;}
.wse5{word-spacing:-2.576000pt;}
.wsdc{word-spacing:-2.514667pt;}
.wsdb{word-spacing:-2.392000pt;}
.wsd8{word-spacing:-2.269333pt;}
.ws27{word-spacing:-2.186667pt;}
.wsd7{word-spacing:-2.146667pt;}
.ws2e{word-spacing:-2.133333pt;}
.wsa0{word-spacing:-2.085333pt;}
.ws10c{word-spacing:-2.072000pt;}
.wsf1{word-spacing:-1.901333pt;}
.wsde{word-spacing:-1.778667pt;}
.wsc9{word-spacing:-1.717333pt;}
.ws77{word-spacing:-1.656000pt;}
.wsed{word-spacing:-1.594667pt;}
.ws16{word-spacing:-1.546667pt;}
.ws9d{word-spacing:-1.533333pt;}
.ws85{word-spacing:-1.472000pt;}
.ws8b{word-spacing:-1.410667pt;}
.ws139{word-spacing:-1.386667pt;}
.ws90{word-spacing:-1.349333pt;}
.ws9b{word-spacing:-1.288000pt;}
.ws67{word-spacing:-1.226667pt;}
.ws7e{word-spacing:-1.165333pt;}
.ws2a{word-spacing:-1.120000pt;}
.wsd2{word-spacing:-1.104000pt;}
.ws10f{word-spacing:-1.064000pt;}
.ws92{word-spacing:-1.042667pt;}
.ws123{word-spacing:-1.008000pt;}
.ws89{word-spacing:-0.981333pt;}
.ws94{word-spacing:-0.858667pt;}
.ws11d{word-spacing:-0.840000pt;}
.ws8a{word-spacing:-0.736000pt;}
.ws93{word-spacing:-0.674667pt;}
.ws22{word-spacing:-0.640000pt;}
.wsfa{word-spacing:-0.624000pt;}
.wsc6{word-spacing:-0.613333pt;}
.ws42{word-spacing:-0.552000pt;}
.ws13a{word-spacing:-0.533333pt;}
.ws131{word-spacing:-0.504000pt;}
.wsa1{word-spacing:-0.490667pt;}
.ws26{word-spacing:-0.426667pt;}
.ws4c{word-spacing:-0.368000pt;}
.wsc4{word-spacing:-0.306667pt;}
.ws133{word-spacing:-0.280000pt;}
.ws6a{word-spacing:-0.245333pt;}
.wsec{word-spacing:-0.184000pt;}
.ws2f{word-spacing:-0.122667pt;}
.ws12e{word-spacing:-0.112000pt;}
.ws103{word-spacing:-0.050854pt;}
.ws13{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.053333pt;}
.wse6{word-spacing:0.055968pt;}
.ws6b{word-spacing:0.061333pt;}
.ws138{word-spacing:0.106667pt;}
.ws115{word-spacing:0.112000pt;}
.wsbc{word-spacing:0.122667pt;}
.ws66{word-spacing:0.184000pt;}
.ws21{word-spacing:0.213333pt;}
.ws112{word-spacing:0.224000pt;}
.ws50{word-spacing:0.245333pt;}
.ws15{word-spacing:0.266667pt;}
.ws10e{word-spacing:0.280000pt;}
.ws65{word-spacing:0.306667pt;}
.ws24{word-spacing:0.320000pt;}
.ws8c{word-spacing:0.336000pt;}
.wsdd{word-spacing:0.368000pt;}
.ws117{word-spacing:0.392000pt;}
.ws56{word-spacing:0.429333pt;}
.ws86{word-spacing:0.490667pt;}
.ws110{word-spacing:0.504000pt;}
.wsf9{word-spacing:0.531696pt;}
.ws17{word-spacing:0.533333pt;}
.ws4f{word-spacing:0.552000pt;}
.ws12c{word-spacing:0.560000pt;}
.ws52{word-spacing:0.613333pt;}
.ws111{word-spacing:0.616000pt;}
.ws13e{word-spacing:0.640000pt;}
.ws7c{word-spacing:0.674667pt;}
.ws113{word-spacing:0.728000pt;}
.ws44{word-spacing:0.736000pt;}
.ws19{word-spacing:0.746667pt;}
.ws79{word-spacing:0.797333pt;}
.ws11f{word-spacing:0.840000pt;}
.ws18{word-spacing:0.853333pt;}
.ws43{word-spacing:0.858667pt;}
.ws105{word-spacing:0.875359pt;}
.ws107{word-spacing:0.884000pt;}
.ws5f{word-spacing:0.920000pt;}
.ws11c{word-spacing:0.952000pt;}
.ws51{word-spacing:0.981333pt;}
.ws53{word-spacing:1.042667pt;}
.ws134{word-spacing:1.064000pt;}
.ws54{word-spacing:1.104000pt;}
.ws122{word-spacing:1.120000pt;}
.ws60{word-spacing:1.165333pt;}
.ws63{word-spacing:1.226667pt;}
.wsfb{word-spacing:1.248000pt;}
.ws88{word-spacing:1.288000pt;}
.ws12a{word-spacing:1.344000pt;}
.ws64{word-spacing:1.349333pt;}
.ws3f{word-spacing:1.410667pt;}
.ws3e{word-spacing:1.472000pt;}
.ws28{word-spacing:1.493333pt;}
.ws3d{word-spacing:1.533333pt;}
.ws69{word-spacing:1.594667pt;}
.ws7b{word-spacing:1.656000pt;}
.ws4e{word-spacing:1.717333pt;}
.ws7a{word-spacing:1.778667pt;}
.ws11e{word-spacing:1.792000pt;}
.ws62{word-spacing:1.840000pt;}
.wsc3{word-spacing:1.901333pt;}
.wsbb{word-spacing:1.962667pt;}
.ws5e{word-spacing:2.024000pt;}
.ws78{word-spacing:2.085333pt;}
.ws87{word-spacing:2.146667pt;}
.ws40{word-spacing:2.208000pt;}
.wsbd{word-spacing:2.269333pt;}
.wsb6{word-spacing:2.330667pt;}
.ws137{word-spacing:2.346667pt;}
.ws4d{word-spacing:2.453333pt;}
.ws7d{word-spacing:2.514667pt;}
.wscb{word-spacing:2.576000pt;}
.wsc2{word-spacing:2.637333pt;}
.ws25{word-spacing:2.666667pt;}
.ws6d{word-spacing:2.760000pt;}
.wsfd{word-spacing:2.808000pt;}
.wsbf{word-spacing:2.821333pt;}
.ws10b{word-spacing:2.826667pt;}
.wsc7{word-spacing:2.944000pt;}
.ws13c{word-spacing:2.986667pt;}
.ws91{word-spacing:3.005333pt;}
.wsd0{word-spacing:3.066667pt;}
.wsc8{word-spacing:3.128000pt;}
.ws13d{word-spacing:3.146667pt;}
.ws9f{word-spacing:3.189333pt;}
.wsc0{word-spacing:3.250667pt;}
.ws100{word-spacing:3.312000pt;}
.wsb9{word-spacing:3.373333pt;}
.wsb0{word-spacing:3.434667pt;}
.ws95{word-spacing:3.496000pt;}
.ws68{word-spacing:3.680000pt;}
.wsb8{word-spacing:3.864000pt;}
.wsa9{word-spacing:3.925333pt;}
.wsd1{word-spacing:4.048000pt;}
.ws6c{word-spacing:4.109333pt;}
.wsb7{word-spacing:4.232000pt;}
.ws9c{word-spacing:4.354667pt;}
.ws9e{word-spacing:4.416000pt;}
.wse0{word-spacing:4.661333pt;}
.wsda{word-spacing:4.845333pt;}
.wsee{word-spacing:4.906667pt;}
.ws61{word-spacing:5.152000pt;}
.wsb4{word-spacing:5.213333pt;}
.wsd6{word-spacing:5.336000pt;}
.wsb3{word-spacing:5.904000pt;}
.wsd5{word-spacing:8.096000pt;}
.wsaf{word-spacing:11.837333pt;}
._21{margin-left:-16.029867pt;}
._16{margin-left:-12.401600pt;}
._18{margin-left:-11.302707pt;}
._15{margin-left:-9.612301pt;}
._19{margin-left:-7.870093pt;}
._8{margin-left:-6.245867pt;}
._9{margin-left:-4.915200pt;}
._a{margin-left:-3.662133pt;}
._7{margin-left:-2.089333pt;}
._4{margin-left:-0.938667pt;}
._2{width:0.938667pt;}
._1{width:2.220000pt;}
._0{width:3.153333pt;}
._5{width:4.538667pt;}
._3{width:5.610667pt;}
._6{width:6.586667pt;}
._1b{width:7.476533pt;}
._10{width:8.370667pt;}
._c{width:9.647035pt;}
._d{width:10.617029pt;}
._14{width:11.506933pt;}
._17{width:12.401600pt;}
._1c{width:13.401600pt;}
._1a{width:14.294667pt;}
._12{width:15.286133pt;}
._13{width:16.318667pt;}
._20{width:17.265333pt;}
._1f{width:18.289067pt;}
._1d{width:19.546667pt;}
._22{width:20.611467pt;}
._1e{width:24.681888pt;}
._25{width:27.516267pt;}
._24{width:31.325027pt;}
._23{width:37.030027pt;}
._b{width:38.617920pt;}
._11{width:63.504000pt;}
._f{width:224.896000pt;}
._e{width:514.133333pt;}
.fs9{font-size:27.984000pt;}
.fsb{font-size:31.093333pt;}
.fse{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:42.666667pt;}
.fs8{font-size:43.530667pt;}
.fsa{font-size:48.000000pt;}
.fs11{font-size:50.853711pt;}
.fs10{font-size:51.491733pt;}
.fs12{font-size:52.000000pt;}
.fs13{font-size:52.000080pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:55.968000pt;}
.fs4{font-size:56.000000pt;}
.fsc{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fsf{font-size:72.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y244{bottom:86.929067pt;}
.y41{bottom:94.488133pt;}
.y1f{bottom:94.488267pt;}
.y51{bottom:97.150800pt;}
.y243{bottom:105.357733pt;}
.y1e{bottom:109.821600pt;}
.y30e{bottom:112.010267pt;}
.ye6{bottom:112.484267pt;}
.y27b{bottom:112.488133pt;}
.y9f{bottom:112.497467pt;}
.y7c{bottom:112.639867pt;}
.y40{bottom:112.865467pt;}
.y204{bottom:112.886800pt;}
.y1a1{bottom:112.972267pt;}
.y26b{bottom:113.107200pt;}
.y10b{bottom:113.117467pt;}
.y2f1{bottom:113.218267pt;}
.y17d{bottom:113.485733pt;}
.y2d1{bottom:113.741067pt;}
.y29f{bottom:115.121067pt;}
.y12b{bottom:115.309200pt;}
.y242{bottom:123.786267pt;}
.yc3{bottom:125.154933pt;}
.y1d{bottom:127.817600pt;}
.y30d{bottom:129.532267pt;}
.y27a{bottom:130.488133pt;}
.y9e{bottom:130.506667pt;}
.y7b{bottom:130.791467pt;}
.y3f{bottom:131.242800pt;}
.y203{bottom:131.285333pt;}
.y1a0{bottom:131.456267pt;}
.y26a{bottom:131.726267pt;}
.y10a{bottom:131.746800pt;}
.y17c{bottom:132.483200pt;}
.y2d0{bottom:132.994133pt;}
.y29e{bottom:135.753333pt;}
.y12a{bottom:136.130667pt;}
.y50{bottom:136.841333pt;}
.y2f0{bottom:139.508000pt;}
.yc2{bottom:140.488000pt;}
.y241{bottom:142.214667pt;}
.y1c{bottom:144.268000pt;}
.y30c{bottom:147.054667pt;}
.y279{bottom:148.488000pt;}
.y9d{bottom:148.516000pt;}
.y7a{bottom:148.942667pt;}
.y3e{bottom:149.620000pt;}
.y202{bottom:149.684000pt;}
.y19f{bottom:149.940000pt;}
.y269{bottom:150.345333pt;}
.y109{bottom:150.376000pt;}
.y17b{bottom:151.480000pt;}
.ye5{bottom:151.612000pt;}
.y2cf{bottom:152.246667pt;}
.y4f{bottom:154.841333pt;}
.yc1{bottom:155.821333pt;}
.y29d{bottom:156.386667pt;}
.y129{bottom:156.950667pt;}
.y2ef{bottom:158.237333pt;}
.y1b{bottom:159.601333pt;}
.y240{bottom:160.644000pt;}
.y30b{bottom:164.576000pt;}
.y278{bottom:166.488000pt;}
.y9c{bottom:166.525333pt;}
.y79{bottom:167.094667pt;}
.y1a9{bottom:167.413333pt;}
.y3d{bottom:167.997333pt;}
.y201{bottom:168.082667pt;}
.y19e{bottom:168.424000pt;}
.y268{bottom:168.964000pt;}
.y108{bottom:169.005333pt;}
.y220{bottom:169.944000pt;}
.y1c8{bottom:170.086667pt;}
.y17a{bottom:170.478667pt;}
.y14c{bottom:170.504000pt;}
.ye4{bottom:170.752000pt;}
.y4e{bottom:172.841333pt;}
.yc0{bottom:173.817333pt;}
.y2ee{bottom:176.968000pt;}
.y29c{bottom:177.020000pt;}
.y1a{bottom:177.597333pt;}
.y128{bottom:177.772000pt;}
.y2ce{bottom:179.058667pt;}
.y30a{bottom:182.098667pt;}
.y277{bottom:184.488000pt;}
.y9b{bottom:184.534667pt;}
.y78{bottom:185.246667pt;}
.y3c{bottom:186.374667pt;}
.y200{bottom:186.481333pt;}
.y19d{bottom:186.908000pt;}
.y267{bottom:187.584000pt;}
.y107{bottom:187.634667pt;}
.y21f{bottom:188.276000pt;}
.y1c7{bottom:188.562667pt;}
.y1a8{bottom:188.756000pt;}
.y14b{bottom:189.396000pt;}
.y179{bottom:189.476000pt;}
.ye3{bottom:189.893333pt;}
.ybf{bottom:190.268000pt;}
.y4d{bottom:190.841333pt;}
.y2ed{bottom:195.697333pt;}
.y29b{bottom:197.653333pt;}
.y23f{bottom:197.969333pt;}
.y2cd{bottom:198.312000pt;}
.y127{bottom:198.593333pt;}
.y309{bottom:199.620000pt;}
.y276{bottom:202.488000pt;}
.y9a{bottom:202.544000pt;}
.y1e6{bottom:202.821333pt;}
.y77{bottom:203.397333pt;}
.y3b{bottom:204.752000pt;}
.y1ff{bottom:204.878667pt;}
.y19c{bottom:205.392000pt;}
.ybe{bottom:205.601333pt;}
.y266{bottom:206.202667pt;}
.y106{bottom:206.264000pt;}
.y21e{bottom:206.608000pt;}
.y1c6{bottom:207.037333pt;}
.y14a{bottom:208.289333pt;}
.y178{bottom:208.473333pt;}
.y4c{bottom:208.841333pt;}
.ye2{bottom:209.034667pt;}
.y19{bottom:216.724000pt;}
.y29a{bottom:218.285333pt;}
.y126{bottom:219.414667pt;}
.y23e{bottom:219.732000pt;}
.y275{bottom:220.488000pt;}
.y99{bottom:220.553333pt;}
.y1e5{bottom:220.821333pt;}
.ybd{bottom:220.934667pt;}
.y76{bottom:221.549333pt;}
.y2ec{bottom:221.986667pt;}
.y3a{bottom:223.129333pt;}
.y1fe{bottom:223.277333pt;}
.y19b{bottom:223.876000pt;}
.y265{bottom:224.821333pt;}
.y105{bottom:224.893333pt;}
.y21d{bottom:224.940000pt;}
.y2cc{bottom:225.124000pt;}
.y1c5{bottom:225.513333pt;}
.y4b{bottom:226.841333pt;}
.y149{bottom:227.181333pt;}
.y177{bottom:227.470667pt;}
.ye1{bottom:228.174667pt;}
.y308{bottom:228.481333pt;}
.y18{bottom:234.129333pt;}
.y274{bottom:238.488000pt;}
.y98{bottom:238.562667pt;}
.y1e4{bottom:238.821333pt;}
.y299{bottom:238.918667pt;}
.ybc{bottom:238.930667pt;}
.y75{bottom:239.701333pt;}
.y125{bottom:240.234667pt;}
.y2eb{bottom:240.716000pt;}
.y23d{bottom:241.493333pt;}
.y39{bottom:241.506667pt;}
.y1fd{bottom:241.676000pt;}
.y19a{bottom:242.360000pt;}
.y21c{bottom:243.272000pt;}
.y264{bottom:243.440000pt;}
.y104{bottom:243.522667pt;}
.y1c4{bottom:243.988000pt;}
.y1a7{bottom:244.114667pt;}
.y4a{bottom:244.841333pt;}
.y148{bottom:246.074667pt;}
.y176{bottom:246.468000pt;}
.ye0{bottom:247.316000pt;}
.y17{bottom:251.533333pt;}
.y2cb{bottom:251.936000pt;}
.ybb{bottom:255.380000pt;}
.y273{bottom:256.488000pt;}
.y157{bottom:256.572000pt;}
.y1e3{bottom:256.821333pt;}
.y74{bottom:257.853333pt;}
.y298{bottom:259.552000pt;}
.y1fc{bottom:260.074667pt;}
.y199{bottom:260.844000pt;}
.y124{bottom:261.056000pt;}
.y21b{bottom:261.604000pt;}
.y263{bottom:262.060000pt;}
.y1a6{bottom:262.124000pt;}
.y103{bottom:262.152000pt;}
.y1c3{bottom:262.462667pt;}
.y49{bottom:262.841333pt;}
.y147{bottom:264.966667pt;}
.y175{bottom:265.465333pt;}
.ydf{bottom:266.457333pt;}
.y2ea{bottom:267.005333pt;}
.y16{bottom:268.937333pt;}
.yba{bottom:270.713333pt;}
.y2ca{bottom:271.189333pt;}
.y272{bottom:274.488000pt;}
.y156{bottom:274.580000pt;}
.y1e2{bottom:274.821333pt;}
.y97{bottom:275.469333pt;}
.y73{bottom:276.004000pt;}
.y1fb{bottom:278.473333pt;}
.y198{bottom:279.328000pt;}
.y21a{bottom:279.936000pt;}
.y307{bottom:280.018667pt;}
.y1a5{bottom:280.133333pt;}
.y297{bottom:280.184000pt;}
.y262{bottom:280.678667pt;}
.y102{bottom:280.781333pt;}
.y48{bottom:280.841333pt;}
.y1c2{bottom:280.938667pt;}
.y123{bottom:281.877333pt;}
.y146{bottom:283.858667pt;}
.y174{bottom:284.462667pt;}
.yde{bottom:285.597333pt;}
.y2e9{bottom:285.736000pt;}
.y15{bottom:286.341333pt;}
.yb9{bottom:288.709333pt;}
.y2c9{bottom:290.441333pt;}
.y271{bottom:292.488000pt;}
.y155{bottom:292.589333pt;}
.y1e1{bottom:292.821333pt;}
.y72{bottom:294.156000pt;}
.y96{bottom:296.812000pt;}
.y1fa{bottom:296.872000pt;}
.y23c{bottom:297.270667pt;}
.y197{bottom:297.812000pt;}
.y1a4{bottom:298.142667pt;}
.y219{bottom:298.268000pt;}
.y47{bottom:298.841333pt;}
.y261{bottom:299.297333pt;}
.y101{bottom:299.410667pt;}
.y1c1{bottom:299.413333pt;}
.y296{bottom:300.817333pt;}
.y122{bottom:302.697333pt;}
.y145{bottom:302.752000pt;}
.y173{bottom:303.460000pt;}
.y14{bottom:303.745333pt;}
.y306{bottom:304.208000pt;}
.ydd{bottom:304.738667pt;}
.yb8{bottom:305.160000pt;}
.y270{bottom:310.488000pt;}
.y154{bottom:310.598667pt;}
.y1e0{bottom:310.821333pt;}
.y2e8{bottom:312.025333pt;}
.y71{bottom:312.308000pt;}
.y23b{bottom:315.700000pt;}
.y1a3{bottom:316.152000pt;}
.y196{bottom:316.296000pt;}
.y218{bottom:316.600000pt;}
.y46{bottom:316.841333pt;}
.y2c8{bottom:317.253333pt;}
.y1c0{bottom:317.889333pt;}
.y260{bottom:317.916000pt;}
.y100{bottom:318.040000pt;}
.y13{bottom:321.149333pt;}
.y295{bottom:321.450667pt;}
.y144{bottom:321.644000pt;}
.y172{bottom:322.457333pt;}
.yb7{bottom:323.156000pt;}
.y121{bottom:323.518667pt;}
.ydc{bottom:323.880000pt;}
.y305{bottom:328.396000pt;}
.y26f{bottom:328.488000pt;}
.y153{bottom:328.608000pt;}
.y1df{bottom:328.821333pt;}
.y70{bottom:330.458667pt;}
.y2e7{bottom:330.754667pt;}
.y23a{bottom:334.128000pt;}
.y1a2{bottom:334.161333pt;}
.y1f9{bottom:334.168000pt;}
.y38{bottom:334.508000pt;}
.y195{bottom:334.780000pt;}
.y45{bottom:334.841333pt;}
.y1bf{bottom:336.364000pt;}
.y2c7{bottom:336.506667pt;}
.y25f{bottom:336.536000pt;}
.yff{bottom:336.669333pt;}
.y12{bottom:338.553333pt;}
.y143{bottom:340.536000pt;}
.y171{bottom:341.454667pt;}
.y294{bottom:342.082667pt;}
.ydb{bottom:343.020000pt;}
.y120{bottom:344.340000pt;}
.y26e{bottom:346.488000pt;}
.y152{bottom:346.617333pt;}
.y1de{bottom:346.821333pt;}
.y6f{bottom:348.610667pt;}
.y95{bottom:352.169333pt;}
.y239{bottom:352.556000pt;}
.y44{bottom:352.841333pt;}
.y194{bottom:353.264000pt;}
.y37{bottom:353.552000pt;}
.y217{bottom:353.829333pt;}
.y1be{bottom:354.840000pt;}
.y25e{bottom:355.154667pt;}
.yfe{bottom:355.298667pt;}
.y1f8{bottom:355.900000pt;}
.y11{bottom:355.957333pt;}
.y2e6{bottom:357.044000pt;}
.y142{bottom:359.429333pt;}
.y170{bottom:360.452000pt;}
.yda{bottom:362.161333pt;}
.yb6{bottom:362.284000pt;}
.y293{bottom:362.716000pt;}
.y2c6{bottom:363.318667pt;}
.y26d{bottom:364.488000pt;}
.y151{bottom:364.626667pt;}
.y1dd{bottom:364.821333pt;}
.y11f{bottom:365.161333pt;}
.y6e{bottom:366.762667pt;}
.y94{bottom:370.178667pt;}
.y43{bottom:370.841333pt;}
.y238{bottom:370.985333pt;}
.y193{bottom:371.748000pt;}
.y1bd{bottom:373.314667pt;}
.y10{bottom:373.361333pt;}
.y25d{bottom:373.773333pt;}
.yfd{bottom:373.928000pt;}
.y216{bottom:375.494667pt;}
.y2e5{bottom:375.773333pt;}
.y141{bottom:378.321333pt;}
.y16f{bottom:379.450667pt;}
.yd9{bottom:381.301333pt;}
.yb5{bottom:381.418667pt;}
.y26c{bottom:382.488000pt;}
.y2c5{bottom:382.572000pt;}
.y150{bottom:382.636000pt;}
.y1dc{bottom:382.821333pt;}
.y6d{bottom:384.913333pt;}
.y11e{bottom:385.981333pt;}
.y93{bottom:388.188000pt;}
.y42{bottom:388.841333pt;}
.y237{bottom:389.413333pt;}
.y304{bottom:389.670667pt;}
.y192{bottom:390.232000pt;}
.y36{bottom:391.493333pt;}
.y1bc{bottom:391.790667pt;}
.yfc{bottom:392.557333pt;}
.y2e4{bottom:394.504000pt;}
.y140{bottom:397.213333pt;}
.y16e{bottom:398.448000pt;}
.yd8{bottom:400.442667pt;}
.yb4{bottom:400.554667pt;}
.y14f{bottom:400.645333pt;}
.y1db{bottom:400.821333pt;}
.yf{bottom:402.104000pt;}
.y6c{bottom:403.065333pt;}
.y92{bottom:406.197333pt;}
.y11d{bottom:406.802667pt;}
.y236{bottom:407.842667pt;}
.y303{bottom:407.860000pt;}
.y191{bottom:408.716000pt;}
.y35{bottom:409.204000pt;}
.y2c4{bottom:409.384000pt;}
.y1bb{bottom:410.265333pt;}
.yfb{bottom:411.186667pt;}
.y25c{bottom:411.290667pt;}
.y1f7{bottom:411.648000pt;}
.y2e3{bottom:413.233333pt;}
.y13f{bottom:416.106667pt;}
.y16d{bottom:417.445333pt;}
.y2a2{bottom:417.494667pt;}
.y15a{bottom:418.654667pt;}
.y1da{bottom:418.821333pt;}
.yd7{bottom:419.584000pt;}
.yb3{bottom:419.690667pt;}
.y6b{bottom:421.217333pt;}
.y91{bottom:424.206667pt;}
.y235{bottom:426.270667pt;}
.y34{bottom:426.914667pt;}
.y190{bottom:427.200000pt;}
.y11c{bottom:427.624000pt;}
.y2c3{bottom:428.636000pt;}
.y1ba{bottom:428.741333pt;}
.yfa{bottom:429.816000pt;}
.y1f6{bottom:430.046667pt;}
.y215{bottom:431.176000pt;}
.y302{bottom:433.608000pt;}
.y13e{bottom:434.998667pt;}
.y2a1{bottom:435.494667pt;}
.y16c{bottom:436.442667pt;}
.y249{bottom:436.664000pt;}
.y1d9{bottom:436.821333pt;}
.y14e{bottom:437.552000pt;}
.yd6{bottom:438.724000pt;}
.yb2{bottom:438.825333pt;}
.y6a{bottom:439.369333pt;}
.y2e2{bottom:439.522667pt;}
.y54{bottom:440.613333pt;}
.y90{bottom:442.216000pt;}
.y33{bottom:444.625333pt;}
.y234{bottom:444.700000pt;}
.y18f{bottom:445.684000pt;}
.y1b9{bottom:447.216000pt;}
.yf9{bottom:448.444000pt;}
.y214{bottom:449.508000pt;}
.y301{bottom:451.796000pt;}
.y2a0{bottom:453.494667pt;}
.ye{bottom:453.524000pt;}
.y13d{bottom:453.890667pt;}
.y248{bottom:454.673333pt;}
.y1d8{bottom:454.821333pt;}
.y16b{bottom:455.440000pt;}
.y2c2{bottom:455.448000pt;}
.y159{bottom:455.561333pt;}
.y69{bottom:457.520000pt;}
.yd5{bottom:457.865333pt;}
.yb1{bottom:457.961333pt;}
.y2e1{bottom:458.253333pt;}
.y53{bottom:458.613333pt;}
.y14d{bottom:458.894667pt;}
.y27c{bottom:459.573333pt;}
.y8f{bottom:460.225333pt;}
.y32{bottom:462.336000pt;}
.y233{bottom:463.128000pt;}
.y18e{bottom:464.168000pt;}
.y1f5{bottom:466.842667pt;}
.yf8{bottom:467.073333pt;}
.y25b{bottom:467.258667pt;}
.y213{bottom:467.840000pt;}
.y11b{bottom:469.265333pt;}
.y2b2{bottom:472.396228pt;}
.y247{bottom:472.682667pt;}
.y13c{bottom:472.784000pt;}
.y16a{bottom:474.437333pt;}
.y2b4{bottom:474.465988pt;}
.y2c1{bottom:474.701333pt;}
.y2b5{bottom:474.953532pt;}
.y68{bottom:475.672000pt;}
.y52{bottom:476.613333pt;}
.y158{bottom:476.904000pt;}
.yd4{bottom:477.006667pt;}
.yb0{bottom:477.097333pt;}
.y300{bottom:477.544000pt;}
.yd{bottom:477.596000pt;}
.y8e{bottom:478.234667pt;}
.y31{bottom:480.045333pt;}
.y2b3{bottom:481.190409pt;}
.y232{bottom:481.556000pt;}
.y18d{bottom:482.652000pt;}
.y2e0{bottom:484.542667pt;}
.y1b8{bottom:484.589333pt;}
.y1f4{bottom:485.241333pt;}
.yf7{bottom:485.702667pt;}
.y25a{bottom:485.877333pt;}
.y212{bottom:486.172000pt;}
.y28a{bottom:488.398208pt;}
.y11a{bottom:490.086667pt;}
.y2b6{bottom:490.113374pt;}
.y13b{bottom:491.676000pt;}
.y1d7{bottom:491.718667pt;}
.y2ad{bottom:492.762667pt;}
.y169{bottom:493.434667pt;}
.y67{bottom:493.824000pt;}
.y2c0{bottom:493.954667pt;}
.y2ae{bottom:495.034803pt;}
.yd3{bottom:496.146667pt;}
.yaf{bottom:496.232000pt;}
.y8d{bottom:496.244000pt;}
.y30{bottom:497.756000pt;}
.y2b7{bottom:498.162441pt;}
.y2b0{bottom:499.671066pt;}
.y231{bottom:499.985333pt;}
.y2b1{bottom:500.544964pt;}
.y18c{bottom:501.136000pt;}
.yc{bottom:501.666667pt;}
.y2df{bottom:503.272000pt;}
.y2ff{bottom:503.292000pt;}
.y1f3{bottom:503.640000pt;}
.yf6{bottom:504.332000pt;}
.y259{bottom:504.496000pt;}
.y211{bottom:504.504000pt;}
.y2af{bottom:504.528102pt;}
.y1b7{bottom:506.397333pt;}
.y288{bottom:508.028000pt;}
.y246{bottom:509.589333pt;}
.y292{bottom:510.325568pt;}
.y13a{bottom:510.568000pt;}
.y119{bottom:510.908000pt;}
.y28d{bottom:511.723328pt;}
.y66{bottom:511.974667pt;}
.y168{bottom:512.432000pt;}
.y1d6{bottom:513.052000pt;}
.y290{bottom:513.819968pt;}
.y8c{bottom:514.253333pt;}
.y289{bottom:514.282976pt;}
.y28f{bottom:515.226464pt;}
.yd2{bottom:515.288000pt;}
.yae{bottom:515.368000pt;}
.y2f{bottom:515.466667pt;}
.y291{bottom:516.632960pt;}
.y28b{bottom:517.130912pt;}
.y230{bottom:518.413333pt;}
.y28c{bottom:518.616032pt;}
.y18b{bottom:519.620000pt;}
.y2bf{bottom:520.766667pt;}
.y2fe{bottom:521.480000pt;}
.y1f2{bottom:522.038667pt;}
.y28e{bottom:522.040544pt;}
.y210{bottom:522.836000pt;}
.yf5{bottom:522.961333pt;}
.y258{bottom:523.116000pt;}
.y2a3{bottom:524.414667pt;}
.y31c{bottom:527.494667pt;}
.y139{bottom:529.461333pt;}
.y2de{bottom:529.561333pt;}
.y65{bottom:530.126667pt;}
.y245{bottom:530.932000pt;}
.y167{bottom:531.429333pt;}
.y118{bottom:531.728000pt;}
.y8b{bottom:532.262667pt;}
.yd1{bottom:534.429333pt;}
.yad{bottom:534.504000pt;}
.y22f{bottom:536.842667pt;}
.y18a{bottom:538.104000pt;}
.y27d{bottom:538.837333pt;}
.y2fd{bottom:539.669333pt;}
.y2be{bottom:540.018667pt;}
.y1f1{bottom:540.437333pt;}
.y20f{bottom:541.168000pt;}
.yf4{bottom:541.590667pt;}
.y257{bottom:541.734667pt;}
.y2e{bottom:544.516000pt;}
.yb{bottom:544.634667pt;}
.y31b{bottom:545.494667pt;}
.y64{bottom:548.278667pt;}
.y2dd{bottom:548.290667pt;}
.y138{bottom:548.353333pt;}
.y8a{bottom:550.272000pt;}
.y166{bottom:550.426667pt;}
.y117{bottom:552.549333pt;}
.yd0{bottom:553.569333pt;}
.yac{bottom:553.638667pt;}
.y22e{bottom:555.270667pt;}
.y2a4{bottom:556.004667pt;}
.y189{bottom:556.588000pt;}
.y1f0{bottom:558.836000pt;}
.y20e{bottom:559.500000pt;}
.yf3{bottom:560.220000pt;}
.y256{bottom:560.353333pt;}
.y1b6{bottom:562.222667pt;}
.y31a{bottom:563.494667pt;}
.y2fc{bottom:565.417333pt;}
.y27e{bottom:565.561543pt;}
.y63{bottom:566.430667pt;}
.y137{bottom:567.246667pt;}
.y89{bottom:568.281333pt;}
.y1d5{bottom:568.401333pt;}
.y165{bottom:569.424000pt;}
.ya{bottom:572.705333pt;}
.ycf{bottom:572.710667pt;}
.yab{bottom:572.774667pt;}
.y116{bottom:573.370667pt;}
.y22d{bottom:573.698667pt;}
.y2dc{bottom:574.580000pt;}
.y188{bottom:575.072000pt;}
.y1ef{bottom:577.234667pt;}
.y20d{bottom:577.833333pt;}
.yf2{bottom:578.849333pt;}
.y255{bottom:578.973333pt;}
.y1b5{bottom:580.697333pt;}
.y319{bottom:581.494667pt;}
.y2fb{bottom:583.605333pt;}
.y62{bottom:584.581333pt;}
.y2bd{bottom:585.729333pt;}
.y136{bottom:586.138667pt;}
.y88{bottom:586.290667pt;}
.y1d4{bottom:586.401333pt;}
.y2a5{bottom:587.581667pt;}
.y164{bottom:588.422667pt;}
.y2d{bottom:588.684000pt;}
.yce{bottom:591.852000pt;}
.yaa{bottom:591.910667pt;}
.y22c{bottom:592.128000pt;}
.y27f{bottom:592.311498pt;}
.y187{bottom:593.556000pt;}
.y115{bottom:594.192000pt;}
.y1ee{bottom:595.633333pt;}
.y20c{bottom:596.164000pt;}
.yf1{bottom:597.478667pt;}
.y254{bottom:597.592000pt;}
.y1b4{bottom:599.173333pt;}
.y9{bottom:600.776000pt;}
.y2db{bottom:600.869333pt;}
.y61{bottom:602.733333pt;}
.y87{bottom:604.300000pt;}
.y1d3{bottom:604.401333pt;}
.y135{bottom:605.030667pt;}
.y163{bottom:607.420000pt;}
.y2fa{bottom:609.353333pt;}
.y22b{bottom:610.556000pt;}
.y318{bottom:610.833333pt;}
.ycd{bottom:610.992000pt;}
.ya9{bottom:611.045333pt;}
.y186{bottom:612.040000pt;}
.y1ed{bottom:614.032000pt;}
.y20b{bottom:614.497333pt;}
.y114{bottom:615.012000pt;}
.yf0{bottom:616.108000pt;}
.y253{bottom:616.210667pt;}
.y1b3{bottom:617.648000pt;}
.y2a6{bottom:618.105667pt;}
.y280{bottom:619.035708pt;}
.y2da{bottom:619.600000pt;}
.y60{bottom:620.885333pt;}
.y86{bottom:622.309333pt;}
.y1d2{bottom:622.401333pt;}
.y134{bottom:623.924000pt;}
.y162{bottom:626.417333pt;}
.y2c{bottom:626.625333pt;}
.y8{bottom:628.846667pt;}
.y22a{bottom:628.985333pt;}
.ycc{bottom:630.133333pt;}
.ya8{bottom:630.181333pt;}
.y185{bottom:630.524000pt;}
.y1ec{bottom:632.429333pt;}
.yef{bottom:634.737333pt;}
.y252{bottom:634.829333pt;}
.y2f9{bottom:635.101333pt;}
.y113{bottom:635.833333pt;}
.y1b2{bottom:636.124000pt;}
.y2d9{bottom:638.329333pt;}
.y5f{bottom:639.036000pt;}
.y85{bottom:640.317333pt;}
.y1d1{bottom:640.401333pt;}
.y2bc{bottom:642.330667pt;}
.y133{bottom:642.816000pt;}
.y2b{bottom:644.336000pt;}
.y161{bottom:645.414667pt;}
.y281{bottom:645.785663pt;}
.y229{bottom:647.413333pt;}
.y317{bottom:647.730667pt;}
.y184{bottom:649.008000pt;}
.ycb{bottom:649.274667pt;}
.ya7{bottom:649.317333pt;}
.y2a7{bottom:649.695667pt;}
.y20a{bottom:651.726667pt;}
.y2f8{bottom:653.289333pt;}
.yee{bottom:653.366667pt;}
.y251{bottom:653.449333pt;}
.y1b1{bottom:654.598667pt;}
.y112{bottom:656.654667pt;}
.y7{bottom:656.917333pt;}
.y2d8{bottom:657.060000pt;}
.y5e{bottom:657.188000pt;}
.y84{bottom:658.326667pt;}
.y1d0{bottom:658.401333pt;}
.y2bb{bottom:661.584000pt;}
.y132{bottom:661.708000pt;}
.y2a{bottom:662.046667pt;}
.y160{bottom:664.412000pt;}
.y316{bottom:665.064000pt;}
.y228{bottom:665.842667pt;}
.y183{bottom:667.492000pt;}
.yca{bottom:668.414667pt;}
.ya6{bottom:668.452000pt;}
.y1eb{bottom:669.726667pt;}
.y2f7{bottom:671.478667pt;}
.yed{bottom:671.996000pt;}
.y250{bottom:672.068000pt;}
.y282{bottom:672.509873pt;}
.y1b0{bottom:673.074667pt;}
.y209{bottom:673.392000pt;}
.y5d{bottom:675.340000pt;}
.y2d7{bottom:675.789333pt;}
.y83{bottom:676.336000pt;}
.y1cf{bottom:676.401333pt;}
.y111{bottom:677.474667pt;}
.y29{bottom:679.757333pt;}
.y131{bottom:680.601333pt;}
.y2ba{bottom:680.836000pt;}
.y2a8{bottom:681.272667pt;}
.y315{bottom:682.397333pt;}
.y15f{bottom:683.409333pt;}
.y227{bottom:684.270667pt;}
.y6{bottom:684.989333pt;}
.y182{bottom:685.976000pt;}
.yc9{bottom:687.556000pt;}
.ya5{bottom:687.588000pt;}
.yec{bottom:690.625333pt;}
.y24f{bottom:690.686667pt;}
.y1ea{bottom:691.458667pt;}
.y1af{bottom:691.549333pt;}
.y5b{bottom:693.492000pt;}
.y82{bottom:694.345333pt;}
.y1ce{bottom:694.401333pt;}
.y2d6{bottom:694.520000pt;}
.y2f6{bottom:697.226667pt;}
.y5c{bottom:697.264000pt;}
.y28{bottom:697.468000pt;}
.y110{bottom:698.296000pt;}
.y283{bottom:699.246956pt;}
.y130{bottom:699.493333pt;}
.y314{bottom:699.732000pt;}
.y15e{bottom:702.406667pt;}
.y226{bottom:702.698667pt;}
.y181{bottom:704.461333pt;}
.yc8{bottom:706.697333pt;}
.ya4{bottom:706.724000pt;}
.yeb{bottom:709.254667pt;}
.y24e{bottom:709.305333pt;}
.y1ae{bottom:710.025333pt;}
.y5a{bottom:711.642667pt;}
.y81{bottom:712.354667pt;}
.y1cd{bottom:712.401333pt;}
.y2a9{bottom:712.836667pt;}
.y27{bottom:715.178667pt;}
.y2f5{bottom:715.414667pt;}
.y313{bottom:717.065333pt;}
.y12f{bottom:718.386667pt;}
.y10f{bottom:719.117333pt;}
.y2d5{bottom:720.809333pt;}
.y225{bottom:721.128000pt;}
.y15d{bottom:721.404000pt;}
.y180{bottom:722.945333pt;}
.yc7{bottom:725.837333pt;}
.ya3{bottom:725.858667pt;}
.y284{bottom:725.984038pt;}
.y2b9{bottom:726.546667pt;}
.yea{bottom:727.884000pt;}
.y24d{bottom:727.925333pt;}
.y1ad{bottom:728.500000pt;}
.y208{bottom:729.073333pt;}
.y59{bottom:729.794667pt;}
.y80{bottom:730.364000pt;}
.y1cc{bottom:730.401333pt;}
.y26{bottom:732.889333pt;}
.y312{bottom:734.398667pt;}
.y5{bottom:739.516000pt;}
.y2d4{bottom:739.538667pt;}
.y224{bottom:739.556000pt;}
.y10e{bottom:739.938667pt;}
.y15c{bottom:740.401333pt;}
.y2f4{bottom:741.162667pt;}
.y17f{bottom:741.429333pt;}
.y2aa{bottom:743.360667pt;}
.yc6{bottom:744.978667pt;}
.ya2{bottom:744.994667pt;}
.ye9{bottom:746.513333pt;}
.y24c{bottom:746.544000pt;}
.y1ac{bottom:746.974667pt;}
.y1e9{bottom:747.205333pt;}
.y207{bottom:747.405333pt;}
.y58{bottom:747.946667pt;}
.y7f{bottom:748.373333pt;}
.y1cb{bottom:748.401333pt;}
.y25{bottom:750.600000pt;}
.y311{bottom:751.732000pt;}
.y285{bottom:752.708248pt;}
.y12e{bottom:756.176000pt;}
.y223{bottom:757.985333pt;}
.y4{bottom:758.253333pt;}
.y2f3{bottom:759.352000pt;}
.y10d{bottom:760.758667pt;}
.yc5{bottom:764.120000pt;}
.ya1{bottom:764.130667pt;}
.ye8{bottom:765.142667pt;}
.y24b{bottom:765.162667pt;}
.y1ab{bottom:765.450667pt;}
.y1e8{bottom:765.604000pt;}
.y206{bottom:765.737333pt;}
.y2d3{bottom:765.828000pt;}
.y57{bottom:766.098667pt;}
.y7e{bottom:766.382667pt;}
.y1ca{bottom:766.401333pt;}
.y24{bottom:768.309333pt;}
.y310{bottom:769.065333pt;}
.y2ab{bottom:774.950667pt;}
.y222{bottom:776.413333pt;}
.y15b{bottom:778.297333pt;}
.y12d{bottom:778.401333pt;}
.y17e{bottom:778.810667pt;}
.y286{bottom:779.445330pt;}
.y10c{bottom:781.580000pt;}
.y2b8{bottom:783.148000pt;}
.yc4{bottom:783.260000pt;}
.ya0{bottom:783.265333pt;}
.ye7{bottom:783.772000pt;}
.y24a{bottom:783.782667pt;}
.y1aa{bottom:783.925333pt;}
.y1e7{bottom:784.002667pt;}
.y205{bottom:784.069333pt;}
.y56{bottom:784.249333pt;}
.y7d{bottom:784.392000pt;}
.y1c9{bottom:784.401333pt;}
.y3{bottom:784.550667pt;}
.y2d2{bottom:784.557333pt;}
.y2f2{bottom:785.098667pt;}
.y23{bottom:786.020000pt;}
.y30f{bottom:786.398667pt;}
.y221{bottom:794.842667pt;}
.y12c{bottom:800.628000pt;}
.y55{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y22{bottom:803.732000pt;}
.y287{bottom:806.182413pt;}
.y2ac{bottom:806.514667pt;}
.y21{bottom:842.834667pt;}
.y20{bottom:858.834667pt;}
.h8{height:30.107146pt;}
.h11{height:33.739958pt;}
.h15{height:35.851866pt;}
.hc{height:36.229167pt;}
.h14{height:36.301672pt;}
.h16{height:36.660000pt;}
.h17{height:36.660056pt;}
.ha{height:36.796875pt;}
.he{height:36.991427pt;}
.h9{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h19{height:48.371094pt;}
.h1a{height:48.425781pt;}
.h7{height:49.322917pt;}
.h18{height:51.789062pt;}
.hb{height:52.079427pt;}
.h10{height:52.977865pt;}
.h12{height:53.037760pt;}
.h2{height:56.608073pt;}
.hd{height:56.721354pt;}
.hf{height:61.136719pt;}
.h6{height:63.401042pt;}
.h13{height:66.585938pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:71.644933pt;}
.x1{left:73.079333pt;}
.x5{left:74.132533pt;}
.x6{left:75.350533pt;}
.xc{left:80.330723pt;}
.xb{left:87.666800pt;}
.x4{left:93.481467pt;}
.x7{left:94.769067pt;}
.x18{left:95.864933pt;}
.xd{left:98.778667pt;}
.x19{left:104.650800pt;}
.xe{left:147.990916pt;}
.x1a{left:149.836078pt;}
.xf{left:161.614803pt;}
.x8{left:200.138667pt;}
.x1b{left:202.397607pt;}
.x3{left:205.206667pt;}
.x9{left:206.554667pt;}
.x2{left:207.480000pt;}
.x10{left:233.853730pt;}
.x1c{left:239.196189pt;}
.x11{left:277.838102pt;}
.x1d{left:280.174340pt;}
.x1e{left:289.635783pt;}
.x12{left:313.426465pt;}
.x1f{left:342.197312pt;}
.x13{left:365.788372pt;}
.x20{left:374.779581pt;}
.x14{left:401.367499pt;}
.x21{left:414.710543pt;}
.x15{left:442.202213pt;}
.x22{left:478.827893pt;}
.x16{left:486.186584pt;}
.x17{left:520.731219pt;}
.x23{left:528.238670pt;}
}




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