
    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_60eefaf7f1f489cbab33f0c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_856eb66ef5cbd27929b747cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711000;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_df6d8d64131e763b5bb6ac7e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_5dcdb8ad5c8059ea360eee14.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.990000;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_37585ebffc23de867b81406c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_e3a8cc5d88584e91802a235b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.715000;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_e3f7d6931af78b32e2250ea5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3428e9b4e2a1ff5753b443d8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f0245c89ea32784c124248e6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5984305e0bf1d3e3e15cf2ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0f85e2288de58c474700c5f9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_42ca4880be4555c7fc6e0861.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d95089068e8ed30fe26e1aae.woff2')format("woff");}.fff{font-family:fff;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9e27e601fdccb5527534662f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9e4f0b29e345180f191f50b8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_776b09c91e2322e48147fd3e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.238000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.740600px;}
.ls70{letter-spacing:-6.072000px;}
.ls68{letter-spacing:-5.676000px;}
.ls1f{letter-spacing:-5.040000px;}
.ls4a{letter-spacing:-4.824000px;}
.ls25{letter-spacing:-4.374000px;}
.ls6b{letter-spacing:-4.092000px;}
.ls29{letter-spacing:-3.942000px;}
.ls28{letter-spacing:-3.834000px;}
.ls24{letter-spacing:-3.726000px;}
.ls49{letter-spacing:-3.720000px;}
.ls62{letter-spacing:-3.696000px;}
.ls6d{letter-spacing:-3.630000px;}
.ls3d{letter-spacing:-3.600000px;}
.ls32{letter-spacing:-3.300000px;}
.ls6{letter-spacing:-3.294000px;}
.ls47{letter-spacing:-3.264000px;}
.ls27{letter-spacing:-3.240000px;}
.ls58{letter-spacing:-3.216000px;}
.ls1b{letter-spacing:-3.186000px;}
.ls42{letter-spacing:-3.168000px;}
.ls2d{letter-spacing:-3.132000px;}
.ls36{letter-spacing:-3.120000px;}
.ls53{letter-spacing:-3.072000px;}
.ls64{letter-spacing:-3.036000px;}
.ls59{letter-spacing:-2.736000px;}
.ls23{letter-spacing:-2.700000px;}
.ls3e{letter-spacing:-2.640000px;}
.ls61{letter-spacing:-2.574000px;}
.ls52{letter-spacing:-2.544000px;}
.ls38{letter-spacing:-2.520000px;}
.ls56{letter-spacing:-2.448000px;}
.ls4b{letter-spacing:-2.400000px;}
.ls22{letter-spacing:-2.376000px;}
.ls4d{letter-spacing:-2.352000px;}
.ls1e{letter-spacing:-2.340000px;}
.ls16{letter-spacing:-2.214000px;}
.ls41{letter-spacing:-2.208000px;}
.ls17{letter-spacing:-2.160000px;}
.ls60{letter-spacing:-1.980000px;}
.ls4c{letter-spacing:-1.968000px;}
.ls2e{letter-spacing:-1.890000px;}
.ls48{letter-spacing:-1.872000px;}
.ls3f{letter-spacing:-1.728000px;}
.ls2f{letter-spacing:-1.674000px;}
.ls21{letter-spacing:-1.650000px;}
.ls57{letter-spacing:-1.584000px;}
.ls2c{letter-spacing:-1.512000px;}
.ls5b{letter-spacing:-1.488000px;}
.ls26{letter-spacing:-1.458000px;}
.ls6a{letter-spacing:-1.452000px;}
.ls45{letter-spacing:-1.440000px;}
.ls30{letter-spacing:-1.404000px;}
.ls55{letter-spacing:-1.344000px;}
.ls2a{letter-spacing:-1.296000px;}
.ls4e{letter-spacing:-1.200000px;}
.ls15{letter-spacing:-1.188000px;}
.ls43{letter-spacing:-1.152000px;}
.ls6f{letter-spacing:-1.122000px;}
.ls44{letter-spacing:-1.104000px;}
.ls5c{letter-spacing:-1.008000px;}
.ls20{letter-spacing:-0.990000px;}
.ls40{letter-spacing:-0.960000px;}
.ls1d{letter-spacing:-0.858000px;}
.ls5a{letter-spacing:-0.816000px;}
.ls67{letter-spacing:-0.792000px;}
.ls69{letter-spacing:-0.726000px;}
.ls12{letter-spacing:-0.660000px;}
.ls5f{letter-spacing:-0.624000px;}
.ls4f{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.546000px;}
.ls31{letter-spacing:-0.540000px;}
.ls51{letter-spacing:-0.528000px;}
.ls13{letter-spacing:-0.504000px;}
.ls5d{letter-spacing:-0.468000px;}
.ls19{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.378000px;}
.lsf{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.324000px;}
.ls5e{letter-spacing:-0.300000px;}
.ls46{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.270000px;}
.ls6c{letter-spacing:-0.264000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls6e{letter-spacing:-0.198000px;}
.ls3b{letter-spacing:-0.192000px;}
.ls66{letter-spacing:-0.132000px;}
.ls8{letter-spacing:-0.096000px;}
.ls63{letter-spacing:-0.066000px;}
.ls4{letter-spacing:-0.054000px;}
.ls50{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.ls3a{letter-spacing:0.096000px;}
.ls39{letter-spacing:0.192000px;}
.ls3c{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.270000px;}
.ls54{letter-spacing:0.288000px;}
.ls35{letter-spacing:0.330000px;}
.ls37{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.378000px;}
.ls34{letter-spacing:0.462000px;}
.ls3{letter-spacing:0.702000px;}
.lsd{letter-spacing:0.756000px;}
.ls7{letter-spacing:0.795600px;}
.lsc{letter-spacing:0.918000px;}
.ls1a{letter-spacing:0.972000px;}
.lsb{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.242000px;}
.ls65{letter-spacing:1.320000px;}
.ls11{letter-spacing:56.592000px;}
.lsa{letter-spacing:86.757600px;}
.ls10{letter-spacing:90.234000px;}
.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;}
}
.ws6{word-spacing:-18.912000px;}
.wsfb{word-spacing:-15.444000px;}
.wsfc{word-spacing:-15.312000px;}
.ws177{word-spacing:-15.114000px;}
.ws176{word-spacing:-15.048000px;}
.ws175{word-spacing:-14.982000px;}
.ws17a{word-spacing:-14.784000px;}
.ws17b{word-spacing:-14.718000px;}
.ws172{word-spacing:-14.352000px;}
.ws174{word-spacing:-13.992000px;}
.ws7{word-spacing:-13.878000px;}
.ws23{word-spacing:-13.554000px;}
.ws178{word-spacing:-13.530000px;}
.ws42{word-spacing:-13.464000px;}
.wsa6{word-spacing:-12.420000px;}
.ws173{word-spacing:-12.408000px;}
.ws17c{word-spacing:-11.682000px;}
.wsc7{word-spacing:-11.610000px;}
.wsb0{word-spacing:-11.502000px;}
.wsdc{word-spacing:-11.448000px;}
.ws69{word-spacing:-11.232000px;}
.ws179{word-spacing:-11.022000px;}
.ws3{word-spacing:-10.638000px;}
.wsd5{word-spacing:-10.530000px;}
.wse0{word-spacing:-10.422000px;}
.wsba{word-spacing:-10.368000px;}
.ws5{word-spacing:-10.314000px;}
.ws2{word-spacing:-10.206000px;}
.wse3{word-spacing:-10.152000px;}
.ws1{word-spacing:-9.990000px;}
.ws4{word-spacing:-9.882000px;}
.ws112{word-spacing:-9.744000px;}
.ws151{word-spacing:-9.696000px;}
.ws113{word-spacing:-9.600000px;}
.ws114{word-spacing:-9.504000px;}
.ws115{word-spacing:-9.408000px;}
.ws11e{word-spacing:-9.360000px;}
.ws60{word-spacing:-9.234000px;}
.wscc{word-spacing:-8.694000px;}
.ws127{word-spacing:-8.352000px;}
.ws15a{word-spacing:-7.776000px;}
.ws14c{word-spacing:-7.440000px;}
.ws13a{word-spacing:-7.008000px;}
.ws47{word-spacing:-3.300000px;}
.ws10f{word-spacing:-3.036000px;}
.ws4a{word-spacing:-2.970000px;}
.ws166{word-spacing:-2.904000px;}
.ws136{word-spacing:-2.838000px;}
.ws48{word-spacing:-2.772000px;}
.ws12d{word-spacing:-2.706000px;}
.ws14d{word-spacing:-2.640000px;}
.ws7d{word-spacing:-2.574000px;}
.ws108{word-spacing:-2.508000px;}
.ws16f{word-spacing:-2.442000px;}
.ws19{word-spacing:-2.376000px;}
.ws75{word-spacing:-2.310000px;}
.ws41{word-spacing:-2.244000px;}
.ws85{word-spacing:-2.178000px;}
.ws7f{word-spacing:-2.112000px;}
.ws3b{word-spacing:-2.046000px;}
.ws12f{word-spacing:-1.980000px;}
.ws134{word-spacing:-1.914000px;}
.ws100{word-spacing:-1.848000px;}
.ws34{word-spacing:-1.782000px;}
.ws110{word-spacing:-1.716000px;}
.ws164{word-spacing:-1.650000px;}
.ws74{word-spacing:-1.584000px;}
.wsf2{word-spacing:-1.518000px;}
.ws89{word-spacing:-1.452000px;}
.ws72{word-spacing:-1.386000px;}
.ws36{word-spacing:-1.320000px;}
.ws99{word-spacing:-1.254000px;}
.ws37{word-spacing:-1.188000px;}
.wsf{word-spacing:-1.080000px;}
.ws92{word-spacing:-1.056000px;}
.ws76{word-spacing:-0.990000px;}
.wsef{word-spacing:-0.924000px;}
.ws50{word-spacing:-0.858000px;}
.wsa{word-spacing:-0.795600px;}
.ws56{word-spacing:-0.792000px;}
.ws29{word-spacing:-0.756000px;}
.ws12b{word-spacing:-0.726000px;}
.ws18{word-spacing:-0.702000px;}
.wsf4{word-spacing:-0.660000px;}
.ws40{word-spacing:-0.594000px;}
.ws25{word-spacing:-0.540000px;}
.ws8d{word-spacing:-0.528000px;}
.ws52{word-spacing:-0.462000px;}
.ws4e{word-spacing:-0.396000px;}
.ws6c{word-spacing:-0.330000px;}
.ws28{word-spacing:-0.270000px;}
.ws16b{word-spacing:-0.264000px;}
.ws51{word-spacing:-0.198000px;}
.ws11{word-spacing:-0.162000px;}
.ws8a{word-spacing:-0.132000px;}
.ws128{word-spacing:-0.096000px;}
.ws106{word-spacing:-0.066000px;}
.ws8{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws39{word-spacing:0.066000px;}
.wsb{word-spacing:0.096000px;}
.ws57{word-spacing:0.132000px;}
.ws129{word-spacing:0.192000px;}
.ws77{word-spacing:0.198000px;}
.ws79{word-spacing:0.216000px;}
.ws32{word-spacing:0.264000px;}
.ws78{word-spacing:0.324000px;}
.ws8c{word-spacing:0.330000px;}
.ws1a{word-spacing:0.378000px;}
.ws12c{word-spacing:0.396000px;}
.ws3e{word-spacing:0.462000px;}
.ws168{word-spacing:0.468000px;}
.ws71{word-spacing:0.504000px;}
.ws10e{word-spacing:0.528000px;}
.ws2a{word-spacing:0.546000px;}
.ws24{word-spacing:0.594000px;}
.ws6b{word-spacing:0.660000px;}
.ws4f{word-spacing:0.726000px;}
.wsc{word-spacing:0.756000px;}
.ws17e{word-spacing:0.792000px;}
.ws70{word-spacing:0.858000px;}
.ws4b{word-spacing:0.924000px;}
.ws17d{word-spacing:0.990000px;}
.ws2c{word-spacing:1.056000px;}
.ws22{word-spacing:1.080000px;}
.ws3a{word-spacing:1.122000px;}
.ws8e{word-spacing:1.188000px;}
.wse{word-spacing:1.242000px;}
.ws54{word-spacing:1.254000px;}
.ws150{word-spacing:1.320000px;}
.ws91{word-spacing:1.386000px;}
.ws10d{word-spacing:1.452000px;}
.wsf3{word-spacing:1.518000px;}
.ws2f{word-spacing:1.584000px;}
.ws15{word-spacing:1.620000px;}
.ws97{word-spacing:1.650000px;}
.ws20{word-spacing:1.674000px;}
.wsf8{word-spacing:1.716000px;}
.ws14{word-spacing:1.728000px;}
.ws73{word-spacing:1.782000px;}
.ws4c{word-spacing:1.848000px;}
.ws35{word-spacing:1.914000px;}
.ws10c{word-spacing:1.980000px;}
.ws86{word-spacing:2.046000px;}
.ws82{word-spacing:2.112000px;}
.ws1d{word-spacing:2.160000px;}
.ws55{word-spacing:2.178000px;}
.ws1e{word-spacing:2.214000px;}
.ws94{word-spacing:2.244000px;}
.ws9d{word-spacing:2.310000px;}
.ws170{word-spacing:2.340000px;}
.ws6d{word-spacing:2.376000px;}
.ws45{word-spacing:2.442000px;}
.ws1b{word-spacing:2.484000px;}
.ws2d{word-spacing:2.508000px;}
.ws21{word-spacing:2.538000px;}
.ws3f{word-spacing:2.574000px;}
.ws163{word-spacing:2.640000px;}
.ws6a{word-spacing:2.706000px;}
.ws83{word-spacing:2.772000px;}
.ws6f{word-spacing:2.838000px;}
.ws2e{word-spacing:2.904000px;}
.ws135{word-spacing:2.970000px;}
.ws3c{word-spacing:3.036000px;}
.ws84{word-spacing:3.102000px;}
.ws10a{word-spacing:3.120000px;}
.wsed{word-spacing:3.168000px;}
.wsfa{word-spacing:3.180000px;}
.ws96{word-spacing:3.234000px;}
.ws9{word-spacing:3.294000px;}
.ws9f{word-spacing:3.300000px;}
.ws109{word-spacing:3.366000px;}
.ws46{word-spacing:3.564000px;}
.ws33{word-spacing:3.630000px;}
.ws8b{word-spacing:3.696000px;}
.ws131{word-spacing:3.720000px;}
.ws26{word-spacing:3.834000px;}
.ws7a{word-spacing:3.894000px;}
.ws7c{word-spacing:3.960000px;}
.ws27{word-spacing:3.996000px;}
.ws44{word-spacing:4.026000px;}
.ws9b{word-spacing:4.092000px;}
.ws137{word-spacing:4.158000px;}
.ws59{word-spacing:4.290000px;}
.ws38{word-spacing:4.356000px;}
.wsff{word-spacing:4.422000px;}
.ws10b{word-spacing:4.488000px;}
.ws165{word-spacing:4.554000px;}
.ws53{word-spacing:4.620000px;}
.ws49{word-spacing:4.686000px;}
.ws101{word-spacing:4.818000px;}
.ws133{word-spacing:4.824000px;}
.ws102{word-spacing:4.884000px;}
.ws13{word-spacing:4.914000px;}
.ws7b{word-spacing:4.950000px;}
.ws12e{word-spacing:5.016000px;}
.wse4{word-spacing:5.040000px;}
.wsf5{word-spacing:5.082000px;}
.ws16{word-spacing:5.130000px;}
.ws130{word-spacing:5.214000px;}
.ws88{word-spacing:5.280000px;}
.ws80{word-spacing:5.478000px;}
.ws81{word-spacing:5.610000px;}
.ws58{word-spacing:5.676000px;}
.ws17{word-spacing:5.724000px;}
.ws9e{word-spacing:5.742000px;}
.ws3d{word-spacing:5.808000px;}
.ws12{word-spacing:5.832000px;}
.ws95{word-spacing:6.072000px;}
.ws7e{word-spacing:6.138000px;}
.wsf1{word-spacing:6.204000px;}
.wsf0{word-spacing:6.336000px;}
.ws1f{word-spacing:6.480000px;}
.ws14e{word-spacing:6.534000px;}
.ws9a{word-spacing:6.600000px;}
.ws14f{word-spacing:6.732000px;}
.ws87{word-spacing:6.798000px;}
.wsea{word-spacing:6.864000px;}
.ws12a{word-spacing:6.930000px;}
.ws98{word-spacing:6.996000px;}
.ws105{word-spacing:7.062000px;}
.ws169{word-spacing:7.194000px;}
.ws16c{word-spacing:7.392000px;}
.ws16d{word-spacing:7.524000px;}
.ws2b{word-spacing:7.656000px;}
.ws4d{word-spacing:7.722000px;}
.ws1c{word-spacing:7.776000px;}
.ws138{word-spacing:7.788000px;}
.ws5b{word-spacing:7.854000px;}
.ws16e{word-spacing:7.920000px;}
.wsfd{word-spacing:7.986000px;}
.ws16a{word-spacing:8.052000px;}
.ws5c{word-spacing:8.184000px;}
.ws103{word-spacing:8.250000px;}
.ws5a{word-spacing:8.382000px;}
.ws93{word-spacing:8.448000px;}
.ws8f{word-spacing:8.580000px;}
.wsd{word-spacing:8.586000px;}
.ws31{word-spacing:8.646000px;}
.ws107{word-spacing:8.712000px;}
.wsfe{word-spacing:8.778000px;}
.ws43{word-spacing:8.910000px;}
.wsf9{word-spacing:9.240000px;}
.ws10{word-spacing:9.558000px;}
.wse8{word-spacing:9.570000px;}
.wsf6{word-spacing:9.702000px;}
.ws6e{word-spacing:10.032000px;}
.ws30{word-spacing:10.098000px;}
.ws9c{word-spacing:10.956000px;}
.wsf7{word-spacing:11.154000px;}
.wsec{word-spacing:12.210000px;}
.wse5{word-spacing:12.540000px;}
.wse9{word-spacing:14.586000px;}
.wseb{word-spacing:15.048000px;}
.ws132{word-spacing:17.094000px;}
.wse6{word-spacing:17.688000px;}
.wse7{word-spacing:19.140000px;}
.ws64{word-spacing:24.408000px;}
.ws63{word-spacing:26.298000px;}
.ws62{word-spacing:26.730000px;}
.ws61{word-spacing:31.212000px;}
.ws146{word-spacing:50.400000px;}
.ws121{word-spacing:53.040000px;}
.ws13d{word-spacing:55.632000px;}
.ws154{word-spacing:55.824000px;}
.ws147{word-spacing:56.304000px;}
.ws13e{word-spacing:57.360000px;}
.ws118{word-spacing:57.984000px;}
.ws122{word-spacing:59.376000px;}
.ws145{word-spacing:60.192000px;}
.ws15d{word-spacing:62.784000px;}
.ws119{word-spacing:63.072000px;}
.ws167{word-spacing:70.041600px;}
.ws15e{word-spacing:70.464000px;}
.ws171{word-spacing:70.797600px;}
.ws13f{word-spacing:72.000000px;}
.ws90{word-spacing:75.900600px;}
.ws139{word-spacing:76.356600px;}
.ws111{word-spacing:76.392600px;}
.ws104{word-spacing:78.138600px;}
.wsee{word-spacing:78.306600px;}
.ws148{word-spacing:80.304000px;}
.ws123{word-spacing:81.120000px;}
.ws15f{word-spacing:83.808000px;}
.ws13c{word-spacing:84.000000px;}
.ws117{word-spacing:84.864000px;}
.ws15c{word-spacing:85.776000px;}
.ws153{word-spacing:86.304000px;}
.ws120{word-spacing:86.352000px;}
.ws155{word-spacing:88.272000px;}
.ws144{word-spacing:92.784000px;}
.ws11a{word-spacing:95.712000px;}
.ws124{word-spacing:98.784000px;}
.ws149{word-spacing:99.792000px;}
.wsa4{word-spacing:100.332000px;}
.wsc5{word-spacing:100.440000px;}
.ws140{word-spacing:101.712000px;}
.ws15b{word-spacing:103.296000px;}
.wsbe{word-spacing:103.410000px;}
.wsc9{word-spacing:103.572000px;}
.wsc3{word-spacing:103.842000px;}
.wsc4{word-spacing:104.328000px;}
.wsad{word-spacing:105.030000px;}
.wsb8{word-spacing:105.408000px;}
.wsb7{word-spacing:106.920000px;}
.wsc0{word-spacing:107.352000px;}
.wsc1{word-spacing:107.946000px;}
.wsae{word-spacing:108.270000px;}
.ws156{word-spacing:108.432000px;}
.wsb5{word-spacing:108.594000px;}
.wscb{word-spacing:108.810000px;}
.wsaf{word-spacing:109.188000px;}
.wsab{word-spacing:109.674000px;}
.wsb9{word-spacing:109.782000px;}
.wsa5{word-spacing:110.160000px;}
.wsa8{word-spacing:110.430000px;}
.wsa9{word-spacing:113.832000px;}
.ws160{word-spacing:113.952000px;}
.wsbd{word-spacing:114.534000px;}
.ws67{word-spacing:115.506000px;}
.ws11f{word-spacing:116.736000px;}
.ws159{word-spacing:116.784000px;}
.wsa0{word-spacing:116.802000px;}
.wsb2{word-spacing:117.180000px;}
.wsb4{word-spacing:117.234000px;}
.wsb3{word-spacing:118.368000px;}
.wsbc{word-spacing:118.638000px;}
.wsaa{word-spacing:118.746000px;}
.wsac{word-spacing:121.770000px;}
.wsbf{word-spacing:122.580000px;}
.wsc6{word-spacing:122.796000px;}
.wsb6{word-spacing:125.928000px;}
.ws14a{word-spacing:128.112000px;}
.wsa3{word-spacing:128.358000px;}
.ws143{word-spacing:128.448000px;}
.wsa2{word-spacing:128.790000px;}
.ws11d{word-spacing:129.120000px;}
.ws11b{word-spacing:131.088000px;}
.wsca{word-spacing:132.300000px;}
.ws157{word-spacing:133.152000px;}
.wsa1{word-spacing:133.272000px;}
.ws125{word-spacing:133.872000px;}
.ws141{word-spacing:133.968000px;}
.ws161{word-spacing:138.624000px;}
.wsc2{word-spacing:138.834000px;}
.wsa7{word-spacing:139.644000px;}
.ws162{word-spacing:141.072000px;}
.wsbb{word-spacing:142.722000px;}
.ws158{word-spacing:144.096000px;}
.ws142{word-spacing:144.720000px;}
.wsb1{word-spacing:145.692000px;}
.ws11c{word-spacing:145.776000px;}
.ws126{word-spacing:147.744000px;}
.wsc8{word-spacing:148.392000px;}
.ws66{word-spacing:148.662000px;}
.ws14b{word-spacing:149.856000px;}
.ws65{word-spacing:151.146000px;}
.ws152{word-spacing:179.376000px;}
.ws116{word-spacing:184.080000px;}
.ws5f{word-spacing:186.408000px;}
.ws13b{word-spacing:191.376000px;}
.ws68{word-spacing:198.342000px;}
.ws5d{word-spacing:286.092000px;}
.ws5e{word-spacing:287.820000px;}
.wscd{word-spacing:294.462000px;}
.wsd8{word-spacing:325.566000px;}
.wsdf{word-spacing:326.484000px;}
.wse2{word-spacing:326.646000px;}
.wsd7{word-spacing:327.996000px;}
.wsda{word-spacing:329.130000px;}
.wsde{word-spacing:329.238000px;}
.wsd2{word-spacing:330.750000px;}
.wsd4{word-spacing:339.660000px;}
.wsd3{word-spacing:341.442000px;}
.wsdb{word-spacing:342.954000px;}
.wsd0{word-spacing:349.434000px;}
.wscf{word-spacing:349.866000px;}
.wsd9{word-spacing:352.188000px;}
.wsd1{word-spacing:352.350000px;}
.wsdd{word-spacing:352.944000px;}
.wsce{word-spacing:354.402000px;}
.wsd6{word-spacing:355.536000px;}
.wse1{word-spacing:361.206000px;}
._9{margin-left:-89.964000px;}
._13{margin-left:-14.472000px;}
._7{margin-left:-6.240000px;}
._4{margin-left:-4.302000px;}
._2{margin-left:-2.760000px;}
._1{margin-left:-1.026000px;}
._0{width:1.248000px;}
._3{width:3.024000px;}
._5{width:4.482000px;}
._6{width:5.862000px;}
._1e{width:7.194000px;}
._1c{width:9.054000px;}
._1d{width:10.572000px;}
._1a{width:12.096000px;}
._1b{width:13.806000px;}
._16{width:39.078000px;}
._17{width:40.326000px;}
._18{width:41.910000px;}
._15{width:43.038000px;}
._19{width:45.816000px;}
._14{width:76.128000px;}
._f{width:84.060000px;}
._10{width:85.086000px;}
._e{width:86.820000px;}
._b{width:117.228000px;}
._a{width:125.802000px;}
._11{width:187.374000px;}
._12{width:201.630000px;}
._8{width:296.868000px;}
._d{width:340.770000px;}
._c{width:517.842000px;}
.fc2{color:rgb(123,121,121);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:46.800000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs9{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y1f5{bottom:87.979050px;}
.y77{bottom:88.544250px;}
.yfb{bottom:88.930350px;}
.y51{bottom:89.038050px;}
.y18c{bottom:89.395050px;}
.y134{bottom:89.974050px;}
.yd8{bottom:90.771150px;}
.ybf{bottom:91.026450px;}
.y9d{bottom:93.694350px;}
.y14a{bottom:94.091400px;}
.y1a9{bottom:96.883350px;}
.y4{bottom:97.125005px;}
.y50{bottom:105.238050px;}
.y1f4{bottom:107.779050px;}
.y76{bottom:108.344250px;}
.y18b{bottom:109.195050px;}
.y133{bottom:109.774050px;}
.y114{bottom:110.567550px;}
.yd7{bottom:110.571150px;}
.ybe{bottom:110.826450px;}
.y9c{bottom:113.494350px;}
.y149{bottom:113.891400px;}
.yeb{bottom:114.295050px;}
.y1a8{bottom:116.683350px;}
.yfa{bottom:117.833850px;}
.y4f{bottom:121.438050px;}
.y1e1{bottom:122.042850px;}
.y1f3{bottom:127.579050px;}
.y75{bottom:128.144250px;}
.y18a{bottom:128.995050px;}
.y113{bottom:130.367550px;}
.yd6{bottom:130.371150px;}
.y164{bottom:133.166850px;}
.y9b{bottom:133.294350px;}
.y148{bottom:133.691400px;}
.yea{bottom:134.095050px;}
.y1a7{bottom:136.483350px;}
.y4e{bottom:137.638050px;}
.yf9{bottom:139.096350px;}
.y23{bottom:139.264499px;}
.y1e0{bottom:141.842850px;}
.y132{bottom:146.585550px;}
.y1f2{bottom:147.379050px;}
.y74{bottom:147.944250px;}
.y189{bottom:148.795050px;}
.y112{bottom:150.167550px;}
.yd5{bottom:150.171150px;}
.ybd{bottom:151.475400px;}
.y163{bottom:152.966850px;}
.y9a{bottom:153.094350px;}
.y147{bottom:153.491400px;}
.y4d{bottom:153.838050px;}
.ye9{bottom:153.895050px;}
.yf8{bottom:160.358850px;}
.y1df{bottom:161.642850px;}
.y1bd{bottom:162.807300px;}
.y131{bottom:166.385550px;}
.y1f1{bottom:167.179050px;}
.y73{bottom:167.744250px;}
.y188{bottom:168.595050px;}
.y111{bottom:169.967550px;}
.yd4{bottom:169.971150px;}
.y4c{bottom:170.038050px;}
.ybc{bottom:172.724400px;}
.y162{bottom:172.766850px;}
.y99{bottom:172.894350px;}
.y146{bottom:173.291400px;}
.ye8{bottom:173.695050px;}
.y1a6{bottom:177.543300px;}
.y1de{bottom:181.442850px;}
.yf7{bottom:181.621350px;}
.y1bc{bottom:182.607300px;}
.y130{bottom:186.185550px;}
.y4b{bottom:186.238050px;}
.y1f0{bottom:186.979050px;}
.y72{bottom:187.544250px;}
.y187{bottom:188.395050px;}
.y110{bottom:189.767550px;}
.yd3{bottom:189.771150px;}
.y161{bottom:192.566850px;}
.y98{bottom:192.694350px;}
.y145{bottom:193.091400px;}
.ye7{bottom:193.495050px;}
.ybb{bottom:193.973400px;}
.y1a{bottom:196.933500px;}
.y1dd{bottom:201.242850px;}
.y1bb{bottom:202.407300px;}
.y4a{bottom:202.438050px;}
.yf6{bottom:202.883850px;}
.y217{bottom:203.628450px;}
.y1ef{bottom:206.779050px;}
.y71{bottom:207.344250px;}
.y186{bottom:208.195050px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y10f{bottom:209.567550px;}
.y160{bottom:212.366850px;}
.y97{bottom:212.494350px;}
.y144{bottom:212.891400px;}
.ye6{bottom:213.295050px;}
.y49{bottom:218.638050px;}
.y1dc{bottom:221.042850px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1ba{bottom:222.207300px;}
.y12f{bottom:222.997050px;}
.y216{bottom:223.428450px;}
.yf5{bottom:224.146350px;}
.y1ee{bottom:226.579050px;}
.yd2{bottom:226.582650px;}
.y70{bottom:227.144250px;}
.y185{bottom:227.995050px;}
.y10e{bottom:229.367550px;}
.yba{bottom:230.202900px;}
.y15f{bottom:232.166850px;}
.y96{bottom:232.294350px;}
.ye5{bottom:233.095050px;}
.y1a5{bottom:233.158950px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y48{bottom:234.838050px;}
.y1db{bottom:240.842850px;}
.y1b9{bottom:242.007300px;}
.y12e{bottom:242.797050px;}
.y215{bottom:243.228450px;}
.y1ed{bottom:246.379050px;}
.yd1{bottom:246.382650px;}
.y6f{bottom:246.944250px;}
.y10d{bottom:249.167550px;}
.y47{bottom:251.038050px;}
.yb9{bottom:251.370900px;}
.y15e{bottom:251.966850px;}
.y95{bottom:252.094350px;}
.ye4{bottom:252.895050px;}
.y1a4{bottom:252.958950px;}
.y143{bottom:253.953000px;}
.yf4{bottom:254.717700px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y1da{bottom:260.642850px;}
.y1b8{bottom:261.807300px;}
.y214{bottom:263.028450px;}
.y184{bottom:264.806550px;}
.y1ec{bottom:266.179050px;}
.yd0{bottom:266.182650px;}
.y6e{bottom:266.744250px;}
.y46{bottom:267.238050px;}
.y10c{bottom:268.967550px;}
.y15d{bottom:271.766850px;}
.y94{bottom:271.894350px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.yb8{bottom:272.633400px;}
.ye3{bottom:272.695050px;}
.y1a3{bottom:272.758950px;}
.y12d{bottom:279.608550px;}
.y1d9{bottom:280.442850px;}
.y1b7{bottom:281.607300px;}
.y213{bottom:282.828450px;}
.y45{bottom:283.438050px;}
.y183{bottom:284.606550px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1eb{bottom:285.979050px;}
.ycf{bottom:285.982650px;}
.y6d{bottom:286.544250px;}
.y10b{bottom:288.767550px;}
.y15c{bottom:291.566850px;}
.y93{bottom:291.694350px;}
.ye2{bottom:292.495050px;}
.y1a2{bottom:292.558950px;}
.yb7{bottom:293.801400px;}
.y142{bottom:296.811000px;}
.yf3{bottom:298.210500px;}
.y12c{bottom:299.408550px;}
.y44{bottom:299.638050px;}
.y212{bottom:302.628450px;}
.y182{bottom:304.406550px;}
.yce{bottom:305.782650px;}
.y6c{bottom:306.344250px;}
.y10a{bottom:308.567550px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y15b{bottom:311.366850px;}
.y92{bottom:311.494350px;}
.ye1{bottom:312.295050px;}
.y1a1{bottom:312.358950px;}
.yb6{bottom:315.252900px;}
.y43{bottom:315.838050px;}
.yb4{bottom:317.534400px;}
.y12b{bottom:319.208550px;}
.y1d8{bottom:321.502800px;}
.y211{bottom:322.428450px;}
.y1b6{bottom:322.669050px;}
.y1ea{bottom:322.790550px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y181{bottom:324.206550px;}
.ycd{bottom:325.582650px;}
.y6b{bottom:326.144250px;}
.y15a{bottom:331.166850px;}
.y91{bottom:331.294350px;}
.yf2{bottom:331.366500px;}
.y42{bottom:332.038050px;}
.ye0{bottom:332.095050px;}
.y1a0{bottom:332.158950px;}
.yb3{bottom:334.031400px;}
.yb5{bottom:336.326400px;}
.y12a{bottom:339.008550px;}
.y210{bottom:342.228450px;}
.y1e9{bottom:342.590550px;}
.y180{bottom:344.006550px;}
.y109{bottom:345.379050px;}
.ycc{bottom:345.382650px;}
.y6a{bottom:345.944250px;}
.y11{bottom:348.133500px;}
.y141{bottom:348.174750px;}
.y41{bottom:348.238050px;}
.y159{bottom:350.966850px;}
.y90{bottom:351.094350px;}
.ydf{bottom:351.895050px;}
.y19f{bottom:351.958950px;}
.yf1{bottom:352.629000px;}
.y1d7{bottom:355.393200px;}
.y129{bottom:358.808550px;}
.y20f{bottom:362.028450px;}
.y1e8{bottom:362.390550px;}
.y17f{bottom:363.806550px;}
.y40{bottom:364.438050px;}
.ycb{bottom:365.182650px;}
.y1b5{bottom:365.527050px;}
.y69{bottom:365.744250px;}
.y140{bottom:367.974750px;}
.y158{bottom:370.766850px;}
.y8f{bottom:370.894350px;}
.yde{bottom:371.695050px;}
.y19e{bottom:371.758950px;}
.yf0{bottom:373.891500px;}
.yb2{bottom:375.486600px;}
.y1d6{bottom:376.813200px;}
.y3f{bottom:380.638050px;}
.y20e{bottom:381.828450px;}
.y108{bottom:382.190550px;}
.y17e{bottom:383.606550px;}
.yca{bottom:384.982650px;}
.y10{bottom:386.785499px;}
.y157{bottom:390.566850px;}
.y8e{bottom:390.694350px;}
.ydd{bottom:391.495050px;}
.y19d{bottom:391.558950px;}
.yef{bottom:395.154000px;}
.yb1{bottom:395.286600px;}
.y128{bottom:395.620050px;}
.y1d5{bottom:396.193200px;}
.y3e{bottom:396.838050px;}
.y20d{bottom:401.628450px;}
.y107{bottom:401.990550px;}
.y68{bottom:402.555750px;}
.y1d1{bottom:402.937200px;}
.y17d{bottom:403.406550px;}
.yc9{bottom:404.782650px;}
.yf{bottom:408.044999px;}
.y13f{bottom:409.034700px;}
.y1d4{bottom:409.693200px;}
.y8d{bottom:410.494350px;}
.y19c{bottom:411.358950px;}
.y3d{bottom:413.038050px;}
.yb0{bottom:415.086600px;}
.yee{bottom:416.416500px;}
.y1cf{bottom:416.437200px;}
.y1b4{bottom:421.142700px;}
.y20c{bottom:421.428450px;}
.y106{bottom:421.790550px;}
.y67{bottom:422.355750px;}
.y1d3{bottom:423.193200px;}
.y17c{bottom:423.206550px;}
.ydc{bottom:428.306550px;}
.y3c{bottom:429.238050px;}
.y1d0{bottom:429.937200px;}
.y8c{bottom:430.294350px;}
.y19b{bottom:431.158950px;}
.y156{bottom:431.626650px;}
.y127{bottom:432.431550px;}
.yaf{bottom:434.886600px;}
.y1d2{bottom:436.693200px;}
.yed{bottom:437.679000px;}
.y20b{bottom:441.228450px;}
.y105{bottom:441.590550px;}
.y66{bottom:442.155750px;}
.y17b{bottom:443.006550px;}
.y3b{bottom:445.438050px;}
.yc8{bottom:445.842600px;}
.ydb{bottom:448.106550px;}
.y8b{bottom:450.094350px;}
.y19a{bottom:450.958950px;}
.y126{bottom:452.231550px;}
.yae{bottom:454.686600px;}
.y1b3{bottom:455.033250px;}
.y20a{bottom:461.028450px;}
.y104{bottom:461.390550px;}
.y3a{bottom:461.638050px;}
.y65{bottom:461.955750px;}
.y17a{bottom:462.806550px;}
.y1ce{bottom:464.818050px;}
.yda{bottom:467.906550px;}
.yec{bottom:468.250350px;}
.y13e{bottom:470.695050px;}
.y199{bottom:470.758950px;}
.y125{bottom:472.031550px;}
.yad{bottom:474.486600px;}
.y1b2{bottom:476.453250px;}
.y39{bottom:477.838050px;}
.y209{bottom:480.828450px;}
.y103{bottom:481.190550px;}
.y64{bottom:481.755750px;}
.y179{bottom:482.606550px;}
.ye{bottom:484.864502px;}
.y155{bottom:487.242450px;}
.yd9{bottom:487.706550px;}
.y13d{bottom:490.495050px;}
.y8a{bottom:491.154300px;}
.y124{bottom:491.831550px;}
.yac{bottom:494.286600px;}
.y1b1{bottom:495.833250px;}
.y208{bottom:500.628450px;}
.y102{bottom:500.990550px;}
.y63{bottom:501.555750px;}
.y178{bottom:502.406550px;}
.y1ad{bottom:502.577250px;}
.yd{bottom:502.864502px;}
.y1cd{bottom:504.078000px;}
.y154{bottom:507.042450px;}
.yc7{bottom:507.506550px;}
.y1b0{bottom:509.333250px;}
.y13c{bottom:510.295050px;}
.y123{bottom:511.631550px;}
.y198{bottom:511.818750px;}
.y89{bottom:512.754300px;}
.yab{bottom:514.086600px;}
.y1ab{bottom:516.077250px;}
.y207{bottom:520.428450px;}
.y101{bottom:520.790550px;}
.yc{bottom:520.864502px;}
.y62{bottom:521.355750px;}
.y177{bottom:522.206550px;}
.y1af{bottom:522.833250px;}
.y1cc{bottom:523.878000px;}
.y153{bottom:526.842450px;}
.yc6{bottom:527.306550px;}
.y1ac{bottom:529.577250px;}
.y13b{bottom:530.095050px;}
.y122{bottom:531.431550px;}
.yaa{bottom:533.886600px;}
.y1ae{bottom:536.333250px;}
.yb{bottom:538.864499px;}
.y206{bottom:540.228450px;}
.y1e7{bottom:540.590550px;}
.y61{bottom:541.155750px;}
.y176{bottom:542.006550px;}
.y38{bottom:545.061600px;}
.y152{bottom:546.642450px;}
.yc5{bottom:547.106550px;}
.y13a{bottom:549.895050px;}
.y121{bottom:551.231550px;}
.ya9{bottom:553.686600px;}
.ya{bottom:556.864499px;}
.y205{bottom:560.028450px;}
.y1e6{bottom:560.390550px;}
.y60{bottom:560.955750px;}
.y175{bottom:561.806550px;}
.y100{bottom:561.850500px;}
.y88{bottom:564.118050px;}
.y1aa{bottom:564.458250px;}
.y1cb{bottom:564.937800px;}
.yff{bottom:566.021400px;}
.y151{bottom:566.442450px;}
.yc4{bottom:566.906550px;}
.y197{bottom:567.434550px;}
.y139{bottom:569.695050px;}
.y120{bottom:571.031550px;}
.ya8{bottom:573.486600px;}
.y37{bottom:573.861600px;}
.y204{bottom:579.828450px;}
.y1e5{bottom:580.190550px;}
.y5f{bottom:580.755750px;}
.yfe{bottom:582.221400px;}
.y87{bottom:583.918050px;}
.y150{bottom:586.242450px;}
.yc3{bottom:586.706550px;}
.y196{bottom:587.234550px;}
.y138{bottom:589.495050px;}
.y11f{bottom:590.831550px;}
.y2d{bottom:591.112050px;}
.y174{bottom:598.618050px;}
.y203{bottom:599.628450px;}
.y1e4{bottom:599.990550px;}
.y5e{bottom:600.555750px;}
.y36{bottom:602.661600px;}
.y86{bottom:603.718050px;}
.y14f{bottom:606.042450px;}
.yc2{bottom:606.506550px;}
.y195{bottom:607.034550px;}
.y2c{bottom:607.312050px;}
.y137{bottom:609.295050px;}
.ya7{bottom:614.546400px;}
.y173{bottom:618.418050px;}
.y202{bottom:619.428450px;}
.y1e3{bottom:619.790550px;}
.y1ca{bottom:620.553450px;}
.y85{bottom:623.518050px;}
.y14e{bottom:625.842450px;}
.yc1{bottom:626.306550px;}
.y194{bottom:626.834550px;}
.y136{bottom:629.095050px;}
.y35{bottom:631.461600px;}
.y11e{bottom:631.883550px;}
.y2b{bottom:632.017050px;}
.y172{bottom:638.218050px;}
.y201{bottom:639.228450px;}
.y1c9{bottom:640.353450px;}
.y5d{bottom:641.615550px;}
.y84{bottom:643.318050px;}
.y9{bottom:645.510000px;}
.y14d{bottom:645.642450px;}
.yc0{bottom:646.106550px;}
.y193{bottom:646.634550px;}
.y2a{bottom:648.217050px;}
.y135{bottom:648.895050px;}
.y171{bottom:658.018050px;}
.y200{bottom:659.028450px;}
.y1c8{bottom:660.153450px;}
.y34{bottom:660.261600px;}
.y1e2{bottom:660.850350px;}
.y83{bottom:663.118050px;}
.y14c{bottom:665.442450px;}
.ya6{bottom:665.906550px;}
.y192{bottom:666.434550px;}
.y8{bottom:666.771000px;}
.y11d{bottom:668.695050px;}
.y170{bottom:677.818050px;}
.y1ff{bottom:678.828450px;}
.y1c7{bottom:679.953450px;}
.y29{bottom:681.427050px;}
.y82{bottom:682.918050px;}
.ya5{bottom:685.706550px;}
.y191{bottom:686.234550px;}
.y11c{bottom:688.495050px;}
.y16f{bottom:697.618050px;}
.y28{bottom:697.627050px;}
.y1fe{bottom:698.628450px;}
.y5c{bottom:699.026550px;}
.y1c6{bottom:699.753450px;}
.y81{bottom:702.718050px;}
.ya4{bottom:705.506550px;}
.y190{bottom:706.034550px;}
.y14b{bottom:706.502250px;}
.y11b{bottom:708.295050px;}
.y33{bottom:710.321400px;}
.y1fd{bottom:718.428450px;}
.y1c5{bottom:719.553450px;}
.y27{bottom:722.332050px;}
.y80{bottom:722.518050px;}
.ya3{bottom:725.306550px;}
.y18f{bottom:725.834550px;}
.y7{bottom:726.298500px;}
.y5b{bottom:727.984050px;}
.y11a{bottom:728.095050px;}
.y32{bottom:733.721400px;}
.y1fc{bottom:738.228450px;}
.y26{bottom:738.532050px;}
.y16e{bottom:738.677850px;}
.y1c4{bottom:739.353450px;}
.y7f{bottom:742.318050px;}
.y5a{bottom:744.184050px;}
.ya2{bottom:745.106550px;}
.y119{bottom:747.895050px;}
.y3{bottom:752.599495px;}
.y1fb{bottom:758.028450px;}
.y1c3{bottom:759.153450px;}
.y7e{bottom:762.118050px;}
.ya1{bottom:764.906550px;}
.y18e{bottom:766.896300px;}
.y118{bottom:767.695050px;}
.y16d{bottom:772.394250px;}
.y59{bottom:773.141550px;}
.y1fa{bottom:777.828450px;}
.y1c2{bottom:778.953450px;}
.y7d{bottom:781.918050px;}
.ya0{bottom:784.706550px;}
.y117{bottom:787.495050px;}
.y58{bottom:789.341550px;}
.y16c{bottom:793.658250px;}
.y2f{bottom:794.300550px;}
.y1f9{bottom:797.628450px;}
.y1c1{bottom:798.753450px;}
.y7c{bottom:801.718050px;}
.y9f{bottom:804.506550px;}
.y57{bottom:805.541550px;}
.y116{bottom:807.295050px;}
.y18d{bottom:809.754300px;}
.y2e{bottom:810.500550px;}
.y16b{bottom:813.038250px;}
.y1f8{bottom:817.428450px;}
.y1c0{bottom:818.553450px;}
.y167{bottom:819.782250px;}
.y7b{bottom:821.518050px;}
.y56{bottom:821.741550px;}
.y9e{bottom:824.306550px;}
.y16a{bottom:826.538250px;}
.y165{bottom:833.282250px;}
.y1f7{bottom:837.228450px;}
.y55{bottom:837.941550px;}
.y1bf{bottom:838.353450px;}
.y169{bottom:840.038250px;}
.y7a{bottom:841.318050px;}
.y115{bottom:844.106550px;}
.y166{bottom:846.782250px;}
.y168{bottom:853.538250px;}
.y79{bottom:861.118050px;}
.yfd{bottom:863.663400px;}
.y31{bottom:866.579550px;}
.y54{bottom:866.899050px;}
.y1f6{bottom:878.288400px;}
.y2{bottom:879.369000px;}
.y1be{bottom:879.413400px;}
.y78{bottom:880.918050px;}
.yfc{bottom:881.663400px;}
.y30{bottom:882.779550px;}
.y53{bottom:883.099050px;}
.y52{bottom:950.111250px;}
.y25{bottom:950.197650px;}
.y24{bottom:950.217450px;}
.y1{bottom:966.726000px;}
.h7{height:32.130000px;}
.hb{height:34.320000px;}
.h15{height:37.800000px;}
.hd{height:38.610000px;}
.hc{height:38.880000px;}
.h16{height:38.934000px;}
.ha{height:42.000000px;}
.h17{height:43.260000px;}
.h11{height:43.470000px;}
.h6{height:45.900000px;}
.h18{height:47.124000px;}
.h3{height:48.195000px;}
.h14{height:51.480000px;}
.h13{height:52.734000px;}
.h2{height:55.080000px;}
.h12{height:55.770000px;}
.hf{height:58.734000px;}
.he{height:58.734600px;}
.h10{height:69.216000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:722.835000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:59.658150px;}
.x8{left:63.528900px;}
.x9{left:85.039350px;}
.xf{left:89.291400px;}
.xe{left:93.144600px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x45{left:110.549700px;}
.x6{left:119.054100px;}
.x12{left:120.654000px;}
.xa{left:133.731150px;}
.x14{left:136.062450px;}
.x13{left:137.493450px;}
.xb{left:147.158100px;}
.x16{left:157.350900px;}
.xd{left:162.251100px;}
.x2e{left:175.421700px;}
.xc{left:194.300100px;}
.x4{left:203.484001px;}
.x18{left:209.838900px;}
.x19{left:212.922900px;}
.x17{left:215.190900px;}
.x30{left:227.909700px;}
.x2f{left:233.261700px;}
.x1b{left:256.638900px;}
.x1a{left:257.946900px;}
.x1c{left:263.766900px;}
.x32{left:276.833700px;}
.x31{left:278.141700px;}
.x33{left:283.961700px;}
.x1d{left:302.922900px;}
.x34{left:325.241700px;}
.x1f{left:345.894900px;}
.x20{left:348.366900px;}
.x1e{left:351.822900px;}
.x36{left:368.213700px;}
.x37{left:370.685700px;}
.x35{left:374.141700px;}
.x15{left:383.132700px;}
.x23{left:393.966900px;}
.x21{left:395.682900px;}
.x24{left:406.326900px;}
.x22{left:407.898900px;}
.x3a{left:416.285700px;}
.x38{left:418.001700px;}
.x39{left:430.217700px;}
.x2d{left:453.954900px;}
.x3{left:454.959000px;}
.x25{left:458.274900px;}
.x26{left:467.034900px;}
.x3c{left:476.273700px;}
.x3b{left:477.521700px;}
.x3d{left:480.581700px;}
.x3e{left:489.341700px;}
.x7{left:505.984200px;}
.x2a{left:511.686900px;}
.x27{left:518.994900px;}
.x28{left:523.806900px;}
.x29{left:525.990900px;}
.x42{left:533.993700px;}
.x3f{left:541.301700px;}
.x40{left:546.113700px;}
.x41{left:548.297700px;}
.x2c{left:579.498900px;}
.x2b{left:592.290900px;}
.x44{left:601.805700px;}
.x43{left:614.597700px;}
.x11{left:647.450700px;}
.x5{left:650.980800px;}
@media print{
.v2{vertical-align:-4.656000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.880533pt;}
.ls70{letter-spacing:-5.397333pt;}
.ls68{letter-spacing:-5.045333pt;}
.ls1f{letter-spacing:-4.480000pt;}
.ls4a{letter-spacing:-4.288000pt;}
.ls25{letter-spacing:-3.888000pt;}
.ls6b{letter-spacing:-3.637333pt;}
.ls29{letter-spacing:-3.504000pt;}
.ls28{letter-spacing:-3.408000pt;}
.ls24{letter-spacing:-3.312000pt;}
.ls49{letter-spacing:-3.306667pt;}
.ls62{letter-spacing:-3.285333pt;}
.ls6d{letter-spacing:-3.226667pt;}
.ls3d{letter-spacing:-3.200000pt;}
.ls32{letter-spacing:-2.933333pt;}
.ls6{letter-spacing:-2.928000pt;}
.ls47{letter-spacing:-2.901333pt;}
.ls27{letter-spacing:-2.880000pt;}
.ls58{letter-spacing:-2.858667pt;}
.ls1b{letter-spacing:-2.832000pt;}
.ls42{letter-spacing:-2.816000pt;}
.ls2d{letter-spacing:-2.784000pt;}
.ls36{letter-spacing:-2.773333pt;}
.ls53{letter-spacing:-2.730667pt;}
.ls64{letter-spacing:-2.698667pt;}
.ls59{letter-spacing:-2.432000pt;}
.ls23{letter-spacing:-2.400000pt;}
.ls3e{letter-spacing:-2.346667pt;}
.ls61{letter-spacing:-2.288000pt;}
.ls52{letter-spacing:-2.261333pt;}
.ls38{letter-spacing:-2.240000pt;}
.ls56{letter-spacing:-2.176000pt;}
.ls4b{letter-spacing:-2.133333pt;}
.ls22{letter-spacing:-2.112000pt;}
.ls4d{letter-spacing:-2.090667pt;}
.ls1e{letter-spacing:-2.080000pt;}
.ls16{letter-spacing:-1.968000pt;}
.ls41{letter-spacing:-1.962667pt;}
.ls17{letter-spacing:-1.920000pt;}
.ls60{letter-spacing:-1.760000pt;}
.ls4c{letter-spacing:-1.749333pt;}
.ls2e{letter-spacing:-1.680000pt;}
.ls48{letter-spacing:-1.664000pt;}
.ls3f{letter-spacing:-1.536000pt;}
.ls2f{letter-spacing:-1.488000pt;}
.ls21{letter-spacing:-1.466667pt;}
.ls57{letter-spacing:-1.408000pt;}
.ls2c{letter-spacing:-1.344000pt;}
.ls5b{letter-spacing:-1.322667pt;}
.ls26{letter-spacing:-1.296000pt;}
.ls6a{letter-spacing:-1.290667pt;}
.ls45{letter-spacing:-1.280000pt;}
.ls30{letter-spacing:-1.248000pt;}
.ls55{letter-spacing:-1.194667pt;}
.ls2a{letter-spacing:-1.152000pt;}
.ls4e{letter-spacing:-1.066667pt;}
.ls15{letter-spacing:-1.056000pt;}
.ls43{letter-spacing:-1.024000pt;}
.ls6f{letter-spacing:-0.997333pt;}
.ls44{letter-spacing:-0.981333pt;}
.ls5c{letter-spacing:-0.896000pt;}
.ls20{letter-spacing:-0.880000pt;}
.ls40{letter-spacing:-0.853333pt;}
.ls1d{letter-spacing:-0.762667pt;}
.ls5a{letter-spacing:-0.725333pt;}
.ls67{letter-spacing:-0.704000pt;}
.ls69{letter-spacing:-0.645333pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls5f{letter-spacing:-0.554667pt;}
.ls4f{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.485333pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls51{letter-spacing:-0.469333pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls5d{letter-spacing:-0.416000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.336000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.288000pt;}
.ls5e{letter-spacing:-0.266667pt;}
.ls46{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.240000pt;}
.ls6c{letter-spacing:-0.234667pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls6e{letter-spacing:-0.176000pt;}
.ls3b{letter-spacing:-0.170667pt;}
.ls66{letter-spacing:-0.117333pt;}
.ls8{letter-spacing:-0.085333pt;}
.ls63{letter-spacing:-0.058667pt;}
.ls4{letter-spacing:-0.048000pt;}
.ls50{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.ls3a{letter-spacing:0.085333pt;}
.ls39{letter-spacing:0.170667pt;}
.ls3c{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.240000pt;}
.ls54{letter-spacing:0.256000pt;}
.ls35{letter-spacing:0.293333pt;}
.ls37{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.336000pt;}
.ls34{letter-spacing:0.410667pt;}
.ls3{letter-spacing:0.624000pt;}
.lsd{letter-spacing:0.672000pt;}
.ls7{letter-spacing:0.707200pt;}
.lsc{letter-spacing:0.816000pt;}
.ls1a{letter-spacing:0.864000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls9{letter-spacing:1.104000pt;}
.ls65{letter-spacing:1.173333pt;}
.ls11{letter-spacing:50.304000pt;}
.lsa{letter-spacing:77.117867pt;}
.ls10{letter-spacing:80.208000pt;}
.ws6{word-spacing:-16.810667pt;}
.wsfb{word-spacing:-13.728000pt;}
.wsfc{word-spacing:-13.610667pt;}
.ws177{word-spacing:-13.434667pt;}
.ws176{word-spacing:-13.376000pt;}
.ws175{word-spacing:-13.317333pt;}
.ws17a{word-spacing:-13.141333pt;}
.ws17b{word-spacing:-13.082667pt;}
.ws172{word-spacing:-12.757333pt;}
.ws174{word-spacing:-12.437333pt;}
.ws7{word-spacing:-12.336000pt;}
.ws23{word-spacing:-12.048000pt;}
.ws178{word-spacing:-12.026667pt;}
.ws42{word-spacing:-11.968000pt;}
.wsa6{word-spacing:-11.040000pt;}
.ws173{word-spacing:-11.029333pt;}
.ws17c{word-spacing:-10.384000pt;}
.wsc7{word-spacing:-10.320000pt;}
.wsb0{word-spacing:-10.224000pt;}
.wsdc{word-spacing:-10.176000pt;}
.ws69{word-spacing:-9.984000pt;}
.ws179{word-spacing:-9.797333pt;}
.ws3{word-spacing:-9.456000pt;}
.wsd5{word-spacing:-9.360000pt;}
.wse0{word-spacing:-9.264000pt;}
.wsba{word-spacing:-9.216000pt;}
.ws5{word-spacing:-9.168000pt;}
.ws2{word-spacing:-9.072000pt;}
.wse3{word-spacing:-9.024000pt;}
.ws1{word-spacing:-8.880000pt;}
.ws4{word-spacing:-8.784000pt;}
.ws112{word-spacing:-8.661333pt;}
.ws151{word-spacing:-8.618667pt;}
.ws113{word-spacing:-8.533333pt;}
.ws114{word-spacing:-8.448000pt;}
.ws115{word-spacing:-8.362667pt;}
.ws11e{word-spacing:-8.320000pt;}
.ws60{word-spacing:-8.208000pt;}
.wscc{word-spacing:-7.728000pt;}
.ws127{word-spacing:-7.424000pt;}
.ws15a{word-spacing:-6.912000pt;}
.ws14c{word-spacing:-6.613333pt;}
.ws13a{word-spacing:-6.229333pt;}
.ws47{word-spacing:-2.933333pt;}
.ws10f{word-spacing:-2.698667pt;}
.ws4a{word-spacing:-2.640000pt;}
.ws166{word-spacing:-2.581333pt;}
.ws136{word-spacing:-2.522667pt;}
.ws48{word-spacing:-2.464000pt;}
.ws12d{word-spacing:-2.405333pt;}
.ws14d{word-spacing:-2.346667pt;}
.ws7d{word-spacing:-2.288000pt;}
.ws108{word-spacing:-2.229333pt;}
.ws16f{word-spacing:-2.170667pt;}
.ws19{word-spacing:-2.112000pt;}
.ws75{word-spacing:-2.053333pt;}
.ws41{word-spacing:-1.994667pt;}
.ws85{word-spacing:-1.936000pt;}
.ws7f{word-spacing:-1.877333pt;}
.ws3b{word-spacing:-1.818667pt;}
.ws12f{word-spacing:-1.760000pt;}
.ws134{word-spacing:-1.701333pt;}
.ws100{word-spacing:-1.642667pt;}
.ws34{word-spacing:-1.584000pt;}
.ws110{word-spacing:-1.525333pt;}
.ws164{word-spacing:-1.466667pt;}
.ws74{word-spacing:-1.408000pt;}
.wsf2{word-spacing:-1.349333pt;}
.ws89{word-spacing:-1.290667pt;}
.ws72{word-spacing:-1.232000pt;}
.ws36{word-spacing:-1.173333pt;}
.ws99{word-spacing:-1.114667pt;}
.ws37{word-spacing:-1.056000pt;}
.wsf{word-spacing:-0.960000pt;}
.ws92{word-spacing:-0.938667pt;}
.ws76{word-spacing:-0.880000pt;}
.wsef{word-spacing:-0.821333pt;}
.ws50{word-spacing:-0.762667pt;}
.wsa{word-spacing:-0.707200pt;}
.ws56{word-spacing:-0.704000pt;}
.ws29{word-spacing:-0.672000pt;}
.ws12b{word-spacing:-0.645333pt;}
.ws18{word-spacing:-0.624000pt;}
.wsf4{word-spacing:-0.586667pt;}
.ws40{word-spacing:-0.528000pt;}
.ws25{word-spacing:-0.480000pt;}
.ws8d{word-spacing:-0.469333pt;}
.ws52{word-spacing:-0.410667pt;}
.ws4e{word-spacing:-0.352000pt;}
.ws6c{word-spacing:-0.293333pt;}
.ws28{word-spacing:-0.240000pt;}
.ws16b{word-spacing:-0.234667pt;}
.ws51{word-spacing:-0.176000pt;}
.ws11{word-spacing:-0.144000pt;}
.ws8a{word-spacing:-0.117333pt;}
.ws128{word-spacing:-0.085333pt;}
.ws106{word-spacing:-0.058667pt;}
.ws8{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws39{word-spacing:0.058667pt;}
.wsb{word-spacing:0.085333pt;}
.ws57{word-spacing:0.117333pt;}
.ws129{word-spacing:0.170667pt;}
.ws77{word-spacing:0.176000pt;}
.ws79{word-spacing:0.192000pt;}
.ws32{word-spacing:0.234667pt;}
.ws78{word-spacing:0.288000pt;}
.ws8c{word-spacing:0.293333pt;}
.ws1a{word-spacing:0.336000pt;}
.ws12c{word-spacing:0.352000pt;}
.ws3e{word-spacing:0.410667pt;}
.ws168{word-spacing:0.416000pt;}
.ws71{word-spacing:0.448000pt;}
.ws10e{word-spacing:0.469333pt;}
.ws2a{word-spacing:0.485333pt;}
.ws24{word-spacing:0.528000pt;}
.ws6b{word-spacing:0.586667pt;}
.ws4f{word-spacing:0.645333pt;}
.wsc{word-spacing:0.672000pt;}
.ws17e{word-spacing:0.704000pt;}
.ws70{word-spacing:0.762667pt;}
.ws4b{word-spacing:0.821333pt;}
.ws17d{word-spacing:0.880000pt;}
.ws2c{word-spacing:0.938667pt;}
.ws22{word-spacing:0.960000pt;}
.ws3a{word-spacing:0.997333pt;}
.ws8e{word-spacing:1.056000pt;}
.wse{word-spacing:1.104000pt;}
.ws54{word-spacing:1.114667pt;}
.ws150{word-spacing:1.173333pt;}
.ws91{word-spacing:1.232000pt;}
.ws10d{word-spacing:1.290667pt;}
.wsf3{word-spacing:1.349333pt;}
.ws2f{word-spacing:1.408000pt;}
.ws15{word-spacing:1.440000pt;}
.ws97{word-spacing:1.466667pt;}
.ws20{word-spacing:1.488000pt;}
.wsf8{word-spacing:1.525333pt;}
.ws14{word-spacing:1.536000pt;}
.ws73{word-spacing:1.584000pt;}
.ws4c{word-spacing:1.642667pt;}
.ws35{word-spacing:1.701333pt;}
.ws10c{word-spacing:1.760000pt;}
.ws86{word-spacing:1.818667pt;}
.ws82{word-spacing:1.877333pt;}
.ws1d{word-spacing:1.920000pt;}
.ws55{word-spacing:1.936000pt;}
.ws1e{word-spacing:1.968000pt;}
.ws94{word-spacing:1.994667pt;}
.ws9d{word-spacing:2.053333pt;}
.ws170{word-spacing:2.080000pt;}
.ws6d{word-spacing:2.112000pt;}
.ws45{word-spacing:2.170667pt;}
.ws1b{word-spacing:2.208000pt;}
.ws2d{word-spacing:2.229333pt;}
.ws21{word-spacing:2.256000pt;}
.ws3f{word-spacing:2.288000pt;}
.ws163{word-spacing:2.346667pt;}
.ws6a{word-spacing:2.405333pt;}
.ws83{word-spacing:2.464000pt;}
.ws6f{word-spacing:2.522667pt;}
.ws2e{word-spacing:2.581333pt;}
.ws135{word-spacing:2.640000pt;}
.ws3c{word-spacing:2.698667pt;}
.ws84{word-spacing:2.757333pt;}
.ws10a{word-spacing:2.773333pt;}
.wsed{word-spacing:2.816000pt;}
.wsfa{word-spacing:2.826667pt;}
.ws96{word-spacing:2.874667pt;}
.ws9{word-spacing:2.928000pt;}
.ws9f{word-spacing:2.933333pt;}
.ws109{word-spacing:2.992000pt;}
.ws46{word-spacing:3.168000pt;}
.ws33{word-spacing:3.226667pt;}
.ws8b{word-spacing:3.285333pt;}
.ws131{word-spacing:3.306667pt;}
.ws26{word-spacing:3.408000pt;}
.ws7a{word-spacing:3.461333pt;}
.ws7c{word-spacing:3.520000pt;}
.ws27{word-spacing:3.552000pt;}
.ws44{word-spacing:3.578667pt;}
.ws9b{word-spacing:3.637333pt;}
.ws137{word-spacing:3.696000pt;}
.ws59{word-spacing:3.813333pt;}
.ws38{word-spacing:3.872000pt;}
.wsff{word-spacing:3.930667pt;}
.ws10b{word-spacing:3.989333pt;}
.ws165{word-spacing:4.048000pt;}
.ws53{word-spacing:4.106667pt;}
.ws49{word-spacing:4.165333pt;}
.ws101{word-spacing:4.282667pt;}
.ws133{word-spacing:4.288000pt;}
.ws102{word-spacing:4.341333pt;}
.ws13{word-spacing:4.368000pt;}
.ws7b{word-spacing:4.400000pt;}
.ws12e{word-spacing:4.458667pt;}
.wse4{word-spacing:4.480000pt;}
.wsf5{word-spacing:4.517333pt;}
.ws16{word-spacing:4.560000pt;}
.ws130{word-spacing:4.634667pt;}
.ws88{word-spacing:4.693333pt;}
.ws80{word-spacing:4.869333pt;}
.ws81{word-spacing:4.986667pt;}
.ws58{word-spacing:5.045333pt;}
.ws17{word-spacing:5.088000pt;}
.ws9e{word-spacing:5.104000pt;}
.ws3d{word-spacing:5.162667pt;}
.ws12{word-spacing:5.184000pt;}
.ws95{word-spacing:5.397333pt;}
.ws7e{word-spacing:5.456000pt;}
.wsf1{word-spacing:5.514667pt;}
.wsf0{word-spacing:5.632000pt;}
.ws1f{word-spacing:5.760000pt;}
.ws14e{word-spacing:5.808000pt;}
.ws9a{word-spacing:5.866667pt;}
.ws14f{word-spacing:5.984000pt;}
.ws87{word-spacing:6.042667pt;}
.wsea{word-spacing:6.101333pt;}
.ws12a{word-spacing:6.160000pt;}
.ws98{word-spacing:6.218667pt;}
.ws105{word-spacing:6.277333pt;}
.ws169{word-spacing:6.394667pt;}
.ws16c{word-spacing:6.570667pt;}
.ws16d{word-spacing:6.688000pt;}
.ws2b{word-spacing:6.805333pt;}
.ws4d{word-spacing:6.864000pt;}
.ws1c{word-spacing:6.912000pt;}
.ws138{word-spacing:6.922667pt;}
.ws5b{word-spacing:6.981333pt;}
.ws16e{word-spacing:7.040000pt;}
.wsfd{word-spacing:7.098667pt;}
.ws16a{word-spacing:7.157333pt;}
.ws5c{word-spacing:7.274667pt;}
.ws103{word-spacing:7.333333pt;}
.ws5a{word-spacing:7.450667pt;}
.ws93{word-spacing:7.509333pt;}
.ws8f{word-spacing:7.626667pt;}
.wsd{word-spacing:7.632000pt;}
.ws31{word-spacing:7.685333pt;}
.ws107{word-spacing:7.744000pt;}
.wsfe{word-spacing:7.802667pt;}
.ws43{word-spacing:7.920000pt;}
.wsf9{word-spacing:8.213333pt;}
.ws10{word-spacing:8.496000pt;}
.wse8{word-spacing:8.506667pt;}
.wsf6{word-spacing:8.624000pt;}
.ws6e{word-spacing:8.917333pt;}
.ws30{word-spacing:8.976000pt;}
.ws9c{word-spacing:9.738667pt;}
.wsf7{word-spacing:9.914667pt;}
.wsec{word-spacing:10.853333pt;}
.wse5{word-spacing:11.146667pt;}
.wse9{word-spacing:12.965333pt;}
.wseb{word-spacing:13.376000pt;}
.ws132{word-spacing:15.194667pt;}
.wse6{word-spacing:15.722667pt;}
.wse7{word-spacing:17.013333pt;}
.ws64{word-spacing:21.696000pt;}
.ws63{word-spacing:23.376000pt;}
.ws62{word-spacing:23.760000pt;}
.ws61{word-spacing:27.744000pt;}
.ws146{word-spacing:44.800000pt;}
.ws121{word-spacing:47.146667pt;}
.ws13d{word-spacing:49.450667pt;}
.ws154{word-spacing:49.621333pt;}
.ws147{word-spacing:50.048000pt;}
.ws13e{word-spacing:50.986667pt;}
.ws118{word-spacing:51.541333pt;}
.ws122{word-spacing:52.778667pt;}
.ws145{word-spacing:53.504000pt;}
.ws15d{word-spacing:55.808000pt;}
.ws119{word-spacing:56.064000pt;}
.ws167{word-spacing:62.259200pt;}
.ws15e{word-spacing:62.634667pt;}
.ws171{word-spacing:62.931200pt;}
.ws13f{word-spacing:64.000000pt;}
.ws90{word-spacing:67.467200pt;}
.ws139{word-spacing:67.872533pt;}
.ws111{word-spacing:67.904533pt;}
.ws104{word-spacing:69.456533pt;}
.wsee{word-spacing:69.605867pt;}
.ws148{word-spacing:71.381333pt;}
.ws123{word-spacing:72.106667pt;}
.ws15f{word-spacing:74.496000pt;}
.ws13c{word-spacing:74.666667pt;}
.ws117{word-spacing:75.434667pt;}
.ws15c{word-spacing:76.245333pt;}
.ws153{word-spacing:76.714667pt;}
.ws120{word-spacing:76.757333pt;}
.ws155{word-spacing:78.464000pt;}
.ws144{word-spacing:82.474667pt;}
.ws11a{word-spacing:85.077333pt;}
.ws124{word-spacing:87.808000pt;}
.ws149{word-spacing:88.704000pt;}
.wsa4{word-spacing:89.184000pt;}
.wsc5{word-spacing:89.280000pt;}
.ws140{word-spacing:90.410667pt;}
.ws15b{word-spacing:91.818667pt;}
.wsbe{word-spacing:91.920000pt;}
.wsc9{word-spacing:92.064000pt;}
.wsc3{word-spacing:92.304000pt;}
.wsc4{word-spacing:92.736000pt;}
.wsad{word-spacing:93.360000pt;}
.wsb8{word-spacing:93.696000pt;}
.wsb7{word-spacing:95.040000pt;}
.wsc0{word-spacing:95.424000pt;}
.wsc1{word-spacing:95.952000pt;}
.wsae{word-spacing:96.240000pt;}
.ws156{word-spacing:96.384000pt;}
.wsb5{word-spacing:96.528000pt;}
.wscb{word-spacing:96.720000pt;}
.wsaf{word-spacing:97.056000pt;}
.wsab{word-spacing:97.488000pt;}
.wsb9{word-spacing:97.584000pt;}
.wsa5{word-spacing:97.920000pt;}
.wsa8{word-spacing:98.160000pt;}
.wsa9{word-spacing:101.184000pt;}
.ws160{word-spacing:101.290667pt;}
.wsbd{word-spacing:101.808000pt;}
.ws67{word-spacing:102.672000pt;}
.ws11f{word-spacing:103.765333pt;}
.ws159{word-spacing:103.808000pt;}
.wsa0{word-spacing:103.824000pt;}
.wsb2{word-spacing:104.160000pt;}
.wsb4{word-spacing:104.208000pt;}
.wsb3{word-spacing:105.216000pt;}
.wsbc{word-spacing:105.456000pt;}
.wsaa{word-spacing:105.552000pt;}
.wsac{word-spacing:108.240000pt;}
.wsbf{word-spacing:108.960000pt;}
.wsc6{word-spacing:109.152000pt;}
.wsb6{word-spacing:111.936000pt;}
.ws14a{word-spacing:113.877333pt;}
.wsa3{word-spacing:114.096000pt;}
.ws143{word-spacing:114.176000pt;}
.wsa2{word-spacing:114.480000pt;}
.ws11d{word-spacing:114.773333pt;}
.ws11b{word-spacing:116.522667pt;}
.wsca{word-spacing:117.600000pt;}
.ws157{word-spacing:118.357333pt;}
.wsa1{word-spacing:118.464000pt;}
.ws125{word-spacing:118.997333pt;}
.ws141{word-spacing:119.082667pt;}
.ws161{word-spacing:123.221333pt;}
.wsc2{word-spacing:123.408000pt;}
.wsa7{word-spacing:124.128000pt;}
.ws162{word-spacing:125.397333pt;}
.wsbb{word-spacing:126.864000pt;}
.ws158{word-spacing:128.085333pt;}
.ws142{word-spacing:128.640000pt;}
.wsb1{word-spacing:129.504000pt;}
.ws11c{word-spacing:129.578667pt;}
.ws126{word-spacing:131.328000pt;}
.wsc8{word-spacing:131.904000pt;}
.ws66{word-spacing:132.144000pt;}
.ws14b{word-spacing:133.205333pt;}
.ws65{word-spacing:134.352000pt;}
.ws152{word-spacing:159.445333pt;}
.ws116{word-spacing:163.626667pt;}
.ws5f{word-spacing:165.696000pt;}
.ws13b{word-spacing:170.112000pt;}
.ws68{word-spacing:176.304000pt;}
.ws5d{word-spacing:254.304000pt;}
.ws5e{word-spacing:255.840000pt;}
.wscd{word-spacing:261.744000pt;}
.wsd8{word-spacing:289.392000pt;}
.wsdf{word-spacing:290.208000pt;}
.wse2{word-spacing:290.352000pt;}
.wsd7{word-spacing:291.552000pt;}
.wsda{word-spacing:292.560000pt;}
.wsde{word-spacing:292.656000pt;}
.wsd2{word-spacing:294.000000pt;}
.wsd4{word-spacing:301.920000pt;}
.wsd3{word-spacing:303.504000pt;}
.wsdb{word-spacing:304.848000pt;}
.wsd0{word-spacing:310.608000pt;}
.wscf{word-spacing:310.992000pt;}
.wsd9{word-spacing:313.056000pt;}
.wsd1{word-spacing:313.200000pt;}
.wsdd{word-spacing:313.728000pt;}
.wsce{word-spacing:315.024000pt;}
.wsd6{word-spacing:316.032000pt;}
.wse1{word-spacing:321.072000pt;}
._9{margin-left:-79.968000pt;}
._13{margin-left:-12.864000pt;}
._7{margin-left:-5.546667pt;}
._4{margin-left:-3.824000pt;}
._2{margin-left:-2.453333pt;}
._1{margin-left:-0.912000pt;}
._0{width:1.109333pt;}
._3{width:2.688000pt;}
._5{width:3.984000pt;}
._6{width:5.210667pt;}
._1e{width:6.394667pt;}
._1c{width:8.048000pt;}
._1d{width:9.397333pt;}
._1a{width:10.752000pt;}
._1b{width:12.272000pt;}
._16{width:34.736000pt;}
._17{width:35.845333pt;}
._18{width:37.253333pt;}
._15{width:38.256000pt;}
._19{width:40.725333pt;}
._14{width:67.669333pt;}
._f{width:74.720000pt;}
._10{width:75.632000pt;}
._e{width:77.173333pt;}
._b{width:104.202667pt;}
._a{width:111.824000pt;}
._11{width:166.554667pt;}
._12{width:179.226667pt;}
._8{width:263.882667pt;}
._d{width:302.906667pt;}
._c{width:460.304000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:41.600000pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs9{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y1f5{bottom:78.203600pt;}
.y77{bottom:78.706000pt;}
.yfb{bottom:79.049200pt;}
.y51{bottom:79.144933pt;}
.y18c{bottom:79.462267pt;}
.y134{bottom:79.976933pt;}
.yd8{bottom:80.685467pt;}
.ybf{bottom:80.912400pt;}
.y9d{bottom:83.283867pt;}
.y14a{bottom:83.636800pt;}
.y1a9{bottom:86.118533pt;}
.y4{bottom:86.333337pt;}
.y50{bottom:93.544933pt;}
.y1f4{bottom:95.803600pt;}
.y76{bottom:96.306000pt;}
.y18b{bottom:97.062267pt;}
.y133{bottom:97.576933pt;}
.y114{bottom:98.282267pt;}
.yd7{bottom:98.285467pt;}
.ybe{bottom:98.512400pt;}
.y9c{bottom:100.883867pt;}
.y149{bottom:101.236800pt;}
.yeb{bottom:101.595600pt;}
.y1a8{bottom:103.718533pt;}
.yfa{bottom:104.741200pt;}
.y4f{bottom:107.944933pt;}
.y1e1{bottom:108.482533pt;}
.y1f3{bottom:113.403600pt;}
.y75{bottom:113.906000pt;}
.y18a{bottom:114.662267pt;}
.y113{bottom:115.882267pt;}
.yd6{bottom:115.885467pt;}
.y164{bottom:118.370533pt;}
.y9b{bottom:118.483867pt;}
.y148{bottom:118.836800pt;}
.yea{bottom:119.195600pt;}
.y1a7{bottom:121.318533pt;}
.y4e{bottom:122.344933pt;}
.yf9{bottom:123.641200pt;}
.y23{bottom:123.790666pt;}
.y1e0{bottom:126.082533pt;}
.y132{bottom:130.298267pt;}
.y1f2{bottom:131.003600pt;}
.y74{bottom:131.506000pt;}
.y189{bottom:132.262267pt;}
.y112{bottom:133.482267pt;}
.yd5{bottom:133.485467pt;}
.ybd{bottom:134.644800pt;}
.y163{bottom:135.970533pt;}
.y9a{bottom:136.083867pt;}
.y147{bottom:136.436800pt;}
.y4d{bottom:136.744933pt;}
.ye9{bottom:136.795600pt;}
.yf8{bottom:142.541200pt;}
.y1df{bottom:143.682533pt;}
.y1bd{bottom:144.717600pt;}
.y131{bottom:147.898267pt;}
.y1f1{bottom:148.603600pt;}
.y73{bottom:149.106000pt;}
.y188{bottom:149.862267pt;}
.y111{bottom:151.082267pt;}
.yd4{bottom:151.085467pt;}
.y4c{bottom:151.144933pt;}
.ybc{bottom:153.532800pt;}
.y162{bottom:153.570533pt;}
.y99{bottom:153.683867pt;}
.y146{bottom:154.036800pt;}
.ye8{bottom:154.395600pt;}
.y1a6{bottom:157.816267pt;}
.y1de{bottom:161.282533pt;}
.yf7{bottom:161.441200pt;}
.y1bc{bottom:162.317600pt;}
.y130{bottom:165.498267pt;}
.y4b{bottom:165.544933pt;}
.y1f0{bottom:166.203600pt;}
.y72{bottom:166.706000pt;}
.y187{bottom:167.462267pt;}
.y110{bottom:168.682267pt;}
.yd3{bottom:168.685467pt;}
.y161{bottom:171.170533pt;}
.y98{bottom:171.283867pt;}
.y145{bottom:171.636800pt;}
.ye7{bottom:171.995600pt;}
.ybb{bottom:172.420800pt;}
.y1a{bottom:175.052000pt;}
.y1dd{bottom:178.882533pt;}
.y1bb{bottom:179.917600pt;}
.y4a{bottom:179.944933pt;}
.yf6{bottom:180.341200pt;}
.y217{bottom:181.003067pt;}
.y1ef{bottom:183.803600pt;}
.y71{bottom:184.306000pt;}
.y186{bottom:185.062267pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y10f{bottom:186.282267pt;}
.y160{bottom:188.770533pt;}
.y97{bottom:188.883867pt;}
.y144{bottom:189.236800pt;}
.ye6{bottom:189.595600pt;}
.y49{bottom:194.344933pt;}
.y1dc{bottom:196.482533pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1ba{bottom:197.517600pt;}
.y12f{bottom:198.219600pt;}
.y216{bottom:198.603067pt;}
.yf5{bottom:199.241200pt;}
.y1ee{bottom:201.403600pt;}
.yd2{bottom:201.406800pt;}
.y70{bottom:201.906000pt;}
.y185{bottom:202.662267pt;}
.y10e{bottom:203.882267pt;}
.yba{bottom:204.624800pt;}
.y15f{bottom:206.370533pt;}
.y96{bottom:206.483867pt;}
.ye5{bottom:207.195600pt;}
.y1a5{bottom:207.252400pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y48{bottom:208.744933pt;}
.y1db{bottom:214.082533pt;}
.y1b9{bottom:215.117600pt;}
.y12e{bottom:215.819600pt;}
.y215{bottom:216.203067pt;}
.y1ed{bottom:219.003600pt;}
.yd1{bottom:219.006800pt;}
.y6f{bottom:219.506000pt;}
.y10d{bottom:221.482267pt;}
.y47{bottom:223.144933pt;}
.yb9{bottom:223.440800pt;}
.y15e{bottom:223.970533pt;}
.y95{bottom:224.083867pt;}
.ye4{bottom:224.795600pt;}
.y1a4{bottom:224.852400pt;}
.y143{bottom:225.736000pt;}
.yf4{bottom:226.415733pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y1da{bottom:231.682533pt;}
.y1b8{bottom:232.717600pt;}
.y214{bottom:233.803067pt;}
.y184{bottom:235.383600pt;}
.y1ec{bottom:236.603600pt;}
.yd0{bottom:236.606800pt;}
.y6e{bottom:237.106000pt;}
.y46{bottom:237.544933pt;}
.y10c{bottom:239.082267pt;}
.y15d{bottom:241.570533pt;}
.y94{bottom:241.683867pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.yb8{bottom:242.340800pt;}
.ye3{bottom:242.395600pt;}
.y1a3{bottom:242.452400pt;}
.y12d{bottom:248.540933pt;}
.y1d9{bottom:249.282533pt;}
.y1b7{bottom:250.317600pt;}
.y213{bottom:251.403067pt;}
.y45{bottom:251.944933pt;}
.y183{bottom:252.983600pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1eb{bottom:254.203600pt;}
.ycf{bottom:254.206800pt;}
.y6d{bottom:254.706000pt;}
.y10b{bottom:256.682267pt;}
.y15c{bottom:259.170533pt;}
.y93{bottom:259.283867pt;}
.ye2{bottom:259.995600pt;}
.y1a2{bottom:260.052400pt;}
.yb7{bottom:261.156800pt;}
.y142{bottom:263.832000pt;}
.yf3{bottom:265.076000pt;}
.y12c{bottom:266.140933pt;}
.y44{bottom:266.344933pt;}
.y212{bottom:269.003067pt;}
.y182{bottom:270.583600pt;}
.yce{bottom:271.806800pt;}
.y6c{bottom:272.306000pt;}
.y10a{bottom:274.282267pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y15b{bottom:276.770533pt;}
.y92{bottom:276.883867pt;}
.ye1{bottom:277.595600pt;}
.y1a1{bottom:277.652400pt;}
.yb6{bottom:280.224800pt;}
.y43{bottom:280.744933pt;}
.yb4{bottom:282.252800pt;}
.y12b{bottom:283.740933pt;}
.y1d8{bottom:285.780267pt;}
.y211{bottom:286.603067pt;}
.y1b6{bottom:286.816933pt;}
.y1ea{bottom:286.924933pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y181{bottom:288.183600pt;}
.ycd{bottom:289.406800pt;}
.y6b{bottom:289.906000pt;}
.y15a{bottom:294.370533pt;}
.y91{bottom:294.483867pt;}
.yf2{bottom:294.548000pt;}
.y42{bottom:295.144933pt;}
.ye0{bottom:295.195600pt;}
.y1a0{bottom:295.252400pt;}
.yb3{bottom:296.916800pt;}
.yb5{bottom:298.956800pt;}
.y12a{bottom:301.340933pt;}
.y210{bottom:304.203067pt;}
.y1e9{bottom:304.524933pt;}
.y180{bottom:305.783600pt;}
.y109{bottom:307.003600pt;}
.ycc{bottom:307.006800pt;}
.y6a{bottom:307.506000pt;}
.y11{bottom:309.452000pt;}
.y141{bottom:309.488667pt;}
.y41{bottom:309.544933pt;}
.y159{bottom:311.970533pt;}
.y90{bottom:312.083867pt;}
.ydf{bottom:312.795600pt;}
.y19f{bottom:312.852400pt;}
.yf1{bottom:313.448000pt;}
.y1d7{bottom:315.905067pt;}
.y129{bottom:318.940933pt;}
.y20f{bottom:321.803067pt;}
.y1e8{bottom:322.124933pt;}
.y17f{bottom:323.383600pt;}
.y40{bottom:323.944933pt;}
.ycb{bottom:324.606800pt;}
.y1b5{bottom:324.912933pt;}
.y69{bottom:325.106000pt;}
.y140{bottom:327.088667pt;}
.y158{bottom:329.570533pt;}
.y8f{bottom:329.683867pt;}
.yde{bottom:330.395600pt;}
.y19e{bottom:330.452400pt;}
.yf0{bottom:332.348000pt;}
.yb2{bottom:333.765867pt;}
.y1d6{bottom:334.945067pt;}
.y3f{bottom:338.344933pt;}
.y20e{bottom:339.403067pt;}
.y108{bottom:339.724933pt;}
.y17e{bottom:340.983600pt;}
.yca{bottom:342.206800pt;}
.y10{bottom:343.809333pt;}
.y157{bottom:347.170533pt;}
.y8e{bottom:347.283867pt;}
.ydd{bottom:347.995600pt;}
.y19d{bottom:348.052400pt;}
.yef{bottom:351.248000pt;}
.yb1{bottom:351.365867pt;}
.y128{bottom:351.662267pt;}
.y1d5{bottom:352.171733pt;}
.y3e{bottom:352.744933pt;}
.y20d{bottom:357.003067pt;}
.y107{bottom:357.324933pt;}
.y68{bottom:357.827333pt;}
.y1d1{bottom:358.166400pt;}
.y17d{bottom:358.583600pt;}
.yc9{bottom:359.806800pt;}
.yf{bottom:362.706666pt;}
.y13f{bottom:363.586400pt;}
.y1d4{bottom:364.171733pt;}
.y8d{bottom:364.883867pt;}
.y19c{bottom:365.652400pt;}
.y3d{bottom:367.144933pt;}
.yb0{bottom:368.965867pt;}
.yee{bottom:370.148000pt;}
.y1cf{bottom:370.166400pt;}
.y1b4{bottom:374.349067pt;}
.y20c{bottom:374.603067pt;}
.y106{bottom:374.924933pt;}
.y67{bottom:375.427333pt;}
.y1d3{bottom:376.171733pt;}
.y17c{bottom:376.183600pt;}
.ydc{bottom:380.716933pt;}
.y3c{bottom:381.544933pt;}
.y1d0{bottom:382.166400pt;}
.y8c{bottom:382.483867pt;}
.y19b{bottom:383.252400pt;}
.y156{bottom:383.668133pt;}
.y127{bottom:384.383600pt;}
.yaf{bottom:386.565867pt;}
.y1d2{bottom:388.171733pt;}
.yed{bottom:389.048000pt;}
.y20b{bottom:392.203067pt;}
.y105{bottom:392.524933pt;}
.y66{bottom:393.027333pt;}
.y17b{bottom:393.783600pt;}
.y3b{bottom:395.944933pt;}
.yc8{bottom:396.304533pt;}
.ydb{bottom:398.316933pt;}
.y8b{bottom:400.083867pt;}
.y19a{bottom:400.852400pt;}
.y126{bottom:401.983600pt;}
.yae{bottom:404.165867pt;}
.y1b3{bottom:404.474000pt;}
.y20a{bottom:409.803067pt;}
.y104{bottom:410.124933pt;}
.y3a{bottom:410.344933pt;}
.y65{bottom:410.627333pt;}
.y17a{bottom:411.383600pt;}
.y1ce{bottom:413.171600pt;}
.yda{bottom:415.916933pt;}
.yec{bottom:416.222533pt;}
.y13e{bottom:418.395600pt;}
.y199{bottom:418.452400pt;}
.y125{bottom:419.583600pt;}
.yad{bottom:421.765867pt;}
.y1b2{bottom:423.514000pt;}
.y39{bottom:424.744933pt;}
.y209{bottom:427.403067pt;}
.y103{bottom:427.724933pt;}
.y64{bottom:428.227333pt;}
.y179{bottom:428.983600pt;}
.ye{bottom:430.990669pt;}
.y155{bottom:433.104400pt;}
.yd9{bottom:433.516933pt;}
.y13d{bottom:435.995600pt;}
.y8a{bottom:436.581600pt;}
.y124{bottom:437.183600pt;}
.yac{bottom:439.365867pt;}
.y1b1{bottom:440.740667pt;}
.y208{bottom:445.003067pt;}
.y102{bottom:445.324933pt;}
.y63{bottom:445.827333pt;}
.y178{bottom:446.583600pt;}
.y1ad{bottom:446.735333pt;}
.yd{bottom:446.990669pt;}
.y1cd{bottom:448.069333pt;}
.y154{bottom:450.704400pt;}
.yc7{bottom:451.116933pt;}
.y1b0{bottom:452.740667pt;}
.y13c{bottom:453.595600pt;}
.y123{bottom:454.783600pt;}
.y198{bottom:454.950000pt;}
.y89{bottom:455.781600pt;}
.yab{bottom:456.965867pt;}
.y1ab{bottom:458.735333pt;}
.y207{bottom:462.603067pt;}
.y101{bottom:462.924933pt;}
.yc{bottom:462.990669pt;}
.y62{bottom:463.427333pt;}
.y177{bottom:464.183600pt;}
.y1af{bottom:464.740667pt;}
.y1cc{bottom:465.669333pt;}
.y153{bottom:468.304400pt;}
.yc6{bottom:468.716933pt;}
.y1ac{bottom:470.735333pt;}
.y13b{bottom:471.195600pt;}
.y122{bottom:472.383600pt;}
.yaa{bottom:474.565867pt;}
.y1ae{bottom:476.740667pt;}
.yb{bottom:478.990666pt;}
.y206{bottom:480.203067pt;}
.y1e7{bottom:480.524933pt;}
.y61{bottom:481.027333pt;}
.y176{bottom:481.783600pt;}
.y38{bottom:484.499200pt;}
.y152{bottom:485.904400pt;}
.yc5{bottom:486.316933pt;}
.y13a{bottom:488.795600pt;}
.y121{bottom:489.983600pt;}
.ya9{bottom:492.165867pt;}
.ya{bottom:494.990666pt;}
.y205{bottom:497.803067pt;}
.y1e6{bottom:498.124933pt;}
.y60{bottom:498.627333pt;}
.y175{bottom:499.383600pt;}
.y100{bottom:499.422667pt;}
.y88{bottom:501.438267pt;}
.y1aa{bottom:501.740667pt;}
.y1cb{bottom:502.166933pt;}
.yff{bottom:503.130133pt;}
.y151{bottom:503.504400pt;}
.yc4{bottom:503.916933pt;}
.y197{bottom:504.386267pt;}
.y139{bottom:506.395600pt;}
.y120{bottom:507.583600pt;}
.ya8{bottom:509.765867pt;}
.y37{bottom:510.099200pt;}
.y204{bottom:515.403067pt;}
.y1e5{bottom:515.724933pt;}
.y5f{bottom:516.227333pt;}
.yfe{bottom:517.530133pt;}
.y87{bottom:519.038267pt;}
.y150{bottom:521.104400pt;}
.yc3{bottom:521.516933pt;}
.y196{bottom:521.986267pt;}
.y138{bottom:523.995600pt;}
.y11f{bottom:525.183600pt;}
.y2d{bottom:525.432933pt;}
.y174{bottom:532.104933pt;}
.y203{bottom:533.003067pt;}
.y1e4{bottom:533.324933pt;}
.y5e{bottom:533.827333pt;}
.y36{bottom:535.699200pt;}
.y86{bottom:536.638267pt;}
.y14f{bottom:538.704400pt;}
.yc2{bottom:539.116933pt;}
.y195{bottom:539.586267pt;}
.y2c{bottom:539.832933pt;}
.y137{bottom:541.595600pt;}
.ya7{bottom:546.263467pt;}
.y173{bottom:549.704933pt;}
.y202{bottom:550.603067pt;}
.y1e3{bottom:550.924933pt;}
.y1ca{bottom:551.603067pt;}
.y85{bottom:554.238267pt;}
.y14e{bottom:556.304400pt;}
.yc1{bottom:556.716933pt;}
.y194{bottom:557.186267pt;}
.y136{bottom:559.195600pt;}
.y35{bottom:561.299200pt;}
.y11e{bottom:561.674267pt;}
.y2b{bottom:561.792933pt;}
.y172{bottom:567.304933pt;}
.y201{bottom:568.203067pt;}
.y1c9{bottom:569.203067pt;}
.y5d{bottom:570.324933pt;}
.y84{bottom:571.838267pt;}
.y9{bottom:573.786667pt;}
.y14d{bottom:573.904400pt;}
.yc0{bottom:574.316933pt;}
.y193{bottom:574.786267pt;}
.y2a{bottom:576.192933pt;}
.y135{bottom:576.795600pt;}
.y171{bottom:584.904933pt;}
.y200{bottom:585.803067pt;}
.y1c8{bottom:586.803067pt;}
.y34{bottom:586.899200pt;}
.y1e2{bottom:587.422533pt;}
.y83{bottom:589.438267pt;}
.y14c{bottom:591.504400pt;}
.ya6{bottom:591.916933pt;}
.y192{bottom:592.386267pt;}
.y8{bottom:592.685334pt;}
.y11d{bottom:594.395600pt;}
.y170{bottom:602.504933pt;}
.y1ff{bottom:603.403067pt;}
.y1c7{bottom:604.403067pt;}
.y29{bottom:605.712933pt;}
.y82{bottom:607.038267pt;}
.ya5{bottom:609.516933pt;}
.y191{bottom:609.986267pt;}
.y11c{bottom:611.995600pt;}
.y16f{bottom:620.104933pt;}
.y28{bottom:620.112933pt;}
.y1fe{bottom:621.003067pt;}
.y5c{bottom:621.356933pt;}
.y1c6{bottom:622.003067pt;}
.y81{bottom:624.638267pt;}
.ya4{bottom:627.116933pt;}
.y190{bottom:627.586267pt;}
.y14b{bottom:628.002000pt;}
.y11b{bottom:629.595600pt;}
.y33{bottom:631.396800pt;}
.y1fd{bottom:638.603067pt;}
.y1c5{bottom:639.603067pt;}
.y27{bottom:642.072933pt;}
.y80{bottom:642.238267pt;}
.ya3{bottom:644.716933pt;}
.y18f{bottom:645.186267pt;}
.y7{bottom:645.598667pt;}
.y5b{bottom:647.096933pt;}
.y11a{bottom:647.195600pt;}
.y32{bottom:652.196800pt;}
.y1fc{bottom:656.203067pt;}
.y26{bottom:656.472933pt;}
.y16e{bottom:656.602533pt;}
.y1c4{bottom:657.203067pt;}
.y7f{bottom:659.838267pt;}
.y5a{bottom:661.496933pt;}
.ya2{bottom:662.316933pt;}
.y119{bottom:664.795600pt;}
.y3{bottom:668.977329pt;}
.y1fb{bottom:673.803067pt;}
.y1c3{bottom:674.803067pt;}
.y7e{bottom:677.438267pt;}
.ya1{bottom:679.916933pt;}
.y18e{bottom:681.685600pt;}
.y118{bottom:682.395600pt;}
.y16d{bottom:686.572667pt;}
.y59{bottom:687.236933pt;}
.y1fa{bottom:691.403067pt;}
.y1c2{bottom:692.403067pt;}
.y7d{bottom:695.038267pt;}
.ya0{bottom:697.516933pt;}
.y117{bottom:699.995600pt;}
.y58{bottom:701.636933pt;}
.y16c{bottom:705.474000pt;}
.y2f{bottom:706.044933pt;}
.y1f9{bottom:709.003067pt;}
.y1c1{bottom:710.003067pt;}
.y7c{bottom:712.638267pt;}
.y9f{bottom:715.116933pt;}
.y57{bottom:716.036933pt;}
.y116{bottom:717.595600pt;}
.y18d{bottom:719.781600pt;}
.y2e{bottom:720.444933pt;}
.y16b{bottom:722.700667pt;}
.y1f8{bottom:726.603067pt;}
.y1c0{bottom:727.603067pt;}
.y167{bottom:728.695333pt;}
.y7b{bottom:730.238267pt;}
.y56{bottom:730.436933pt;}
.y9e{bottom:732.716933pt;}
.y16a{bottom:734.700667pt;}
.y165{bottom:740.695333pt;}
.y1f7{bottom:744.203067pt;}
.y55{bottom:744.836933pt;}
.y1bf{bottom:745.203067pt;}
.y169{bottom:746.700667pt;}
.y7a{bottom:747.838267pt;}
.y115{bottom:750.316933pt;}
.y166{bottom:752.695333pt;}
.y168{bottom:758.700667pt;}
.y79{bottom:765.438267pt;}
.yfd{bottom:767.700800pt;}
.y31{bottom:770.292933pt;}
.y54{bottom:770.576933pt;}
.y1f6{bottom:780.700800pt;}
.y2{bottom:781.661334pt;}
.y1be{bottom:781.700800pt;}
.y78{bottom:783.038267pt;}
.yfc{bottom:783.700800pt;}
.y30{bottom:784.692933pt;}
.y53{bottom:784.976933pt;}
.y52{bottom:844.543333pt;}
.y25{bottom:844.620133pt;}
.y24{bottom:844.637733pt;}
.y1{bottom:859.312000pt;}
.h7{height:28.560000pt;}
.hb{height:30.506667pt;}
.h15{height:33.600000pt;}
.hd{height:34.320000pt;}
.hc{height:34.560000pt;}
.h16{height:34.608000pt;}
.ha{height:37.333333pt;}
.h17{height:38.453333pt;}
.h11{height:38.640000pt;}
.h6{height:40.800000pt;}
.h18{height:41.888000pt;}
.h3{height:42.840000pt;}
.h14{height:45.760000pt;}
.h13{height:46.874667pt;}
.h2{height:48.960000pt;}
.h12{height:49.573333pt;}
.hf{height:52.208000pt;}
.he{height:52.208533pt;}
.h10{height:61.525333pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:642.520000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:53.029467pt;}
.x8{left:56.470133pt;}
.x9{left:75.590533pt;}
.xf{left:79.370133pt;}
.xe{left:82.795200pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x45{left:98.266400pt;}
.x6{left:105.825867pt;}
.x12{left:107.248000pt;}
.xa{left:118.872133pt;}
.x14{left:120.944400pt;}
.x13{left:122.216400pt;}
.xb{left:130.807200pt;}
.x16{left:139.867467pt;}
.xd{left:144.223200pt;}
.x2e{left:155.930400pt;}
.xc{left:172.711200pt;}
.x4{left:180.874667pt;}
.x18{left:186.523467pt;}
.x19{left:189.264800pt;}
.x17{left:191.280800pt;}
.x30{left:202.586400pt;}
.x2f{left:207.343733pt;}
.x1b{left:228.123467pt;}
.x1a{left:229.286133pt;}
.x1c{left:234.459467pt;}
.x32{left:246.074400pt;}
.x31{left:247.237067pt;}
.x33{left:252.410400pt;}
.x1d{left:269.264800pt;}
.x34{left:289.103733pt;}
.x1f{left:307.462133pt;}
.x20{left:309.659467pt;}
.x1e{left:312.731467pt;}
.x36{left:327.301067pt;}
.x37{left:329.498400pt;}
.x35{left:332.570400pt;}
.x15{left:340.562400pt;}
.x23{left:350.192800pt;}
.x21{left:351.718133pt;}
.x24{left:361.179467pt;}
.x22{left:362.576800pt;}
.x3a{left:370.031733pt;}
.x38{left:371.557067pt;}
.x39{left:382.415733pt;}
.x2d{left:403.515467pt;}
.x3{left:404.408000pt;}
.x25{left:407.355467pt;}
.x26{left:415.142133pt;}
.x3c{left:423.354400pt;}
.x3b{left:424.463733pt;}
.x3d{left:427.183733pt;}
.x3e{left:434.970400pt;}
.x7{left:449.763733pt;}
.x2a{left:454.832800pt;}
.x27{left:461.328800pt;}
.x28{left:465.606133pt;}
.x29{left:467.547467pt;}
.x42{left:474.661067pt;}
.x3f{left:481.157067pt;}
.x40{left:485.434400pt;}
.x41{left:487.375733pt;}
.x2c{left:515.110133pt;}
.x2b{left:526.480800pt;}
.x44{left:534.938400pt;}
.x43{left:546.309067pt;}
.x11{left:575.511733pt;}
.x5{left:578.649600pt;}
}




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