
    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_063c55fc349478694398fad1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_3a027cb5cab0883868445e2d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fc6708378d44db450db21383.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_e6b808fb478cefb1244c151c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_4d09a432f031a7a2d8f8d785.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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_b8a9b269b279c3169bfc5e52.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.695000;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_0dca0fef2b3d67a31f1aee5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.870000;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_771a2c5baf811d40b9f62286.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688000;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_9f405e65ec56d0c8c0f32648.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.892000;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_36d13a888ed1e202774b8dad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.913000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.vb{vertical-align:-29.424000px;}
.va{vertical-align:-24.798600px;}
.v9{vertical-align:-18.823800px;}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.819400px;}
.v3{vertical-align:20.826000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:32.400000px;}
.v6{vertical-align:34.200000px;}
.v8{vertical-align:36.024000px;}
.v7{vertical-align:68.400000px;}
.ls4c{letter-spacing:-4.698000px;}
.ls3f{letter-spacing:-4.644000px;}
.ls51{letter-spacing:-4.374000px;}
.ls3e{letter-spacing:-4.266000px;}
.ls4d{letter-spacing:-4.104000px;}
.ls44{letter-spacing:-3.942000px;}
.ls60{letter-spacing:-3.762000px;}
.ls4a{letter-spacing:-3.726000px;}
.ls40{letter-spacing:-3.618000px;}
.ls3d{letter-spacing:-3.564000px;}
.ls46{letter-spacing:-3.510000px;}
.ls48{letter-spacing:-3.294000px;}
.ls24{letter-spacing:-3.215520px;}
.ls41{letter-spacing:-3.132000px;}
.ls2f{letter-spacing:-3.032820px;}
.ls5e{letter-spacing:-2.996280px;}
.ls42{letter-spacing:-2.970000px;}
.ls52{letter-spacing:-2.916000px;}
.ls27{letter-spacing:-2.850120px;}
.ls81{letter-spacing:-2.777040px;}
.ls3c{letter-spacing:-2.646000px;}
.ls4f{letter-spacing:-2.430000px;}
.ls4b{letter-spacing:-2.376000px;}
.ls39{letter-spacing:-2.268000px;}
.ls30{letter-spacing:-2.265480px;}
.ls29{letter-spacing:-2.228940px;}
.ls43{letter-spacing:-2.214000px;}
.ls45{letter-spacing:-1.998000px;}
.ls5f{letter-spacing:-1.973160px;}
.ls47{letter-spacing:-1.836000px;}
.ls28{letter-spacing:-1.753920px;}
.ls50{letter-spacing:-1.674000px;}
.ls26{letter-spacing:-1.498140px;}
.ls25{letter-spacing:-1.351980px;}
.ls3a{letter-spacing:-1.350000px;}
.ls17{letter-spacing:-1.211040px;}
.ls89{letter-spacing:-1.200000px;}
.ls22{letter-spacing:-1.132740px;}
.ls3b{letter-spacing:-1.080000px;}
.ls31{letter-spacing:-1.059660px;}
.ls4e{letter-spacing:-1.026000px;}
.ls9c{letter-spacing:-0.876960px;}
.ls37{letter-spacing:-0.864000px;}
.ls20{letter-spacing:-0.756000px;}
.ls5d{letter-spacing:-0.693000px;}
.ls1e{letter-spacing:-0.630000px;}
.ls97{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.567000px;}
.ls63{letter-spacing:-0.562020px;}
.ls96{letter-spacing:-0.528000px;}
.ls34{letter-spacing:-0.504000px;}
.ls87{letter-spacing:-0.480000px;}
.ls61{letter-spacing:-0.462840px;}
.ls94{letter-spacing:-0.441000px;}
.ls9b{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.420000px;}
.ls82{letter-spacing:-0.384000px;}
.ls36{letter-spacing:-0.378000px;}
.ls66{letter-spacing:-0.357000px;}
.ls65{letter-spacing:-0.354960px;}
.ls21{letter-spacing:-0.315000px;}
.ls83{letter-spacing:-0.288000px;}
.ls64{letter-spacing:-0.255000px;}
.ls32{letter-spacing:-0.252000px;}
.ls88{letter-spacing:-0.240000px;}
.ls62{letter-spacing:-0.231420px;}
.ls84{letter-spacing:-0.192000px;}
.ls33{letter-spacing:-0.189000px;}
.ls1b{letter-spacing:-0.180000px;}
.ls85{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.126000px;}
.ls1a{letter-spacing:-0.120000px;}
.ls49{letter-spacing:-0.108000px;}
.ls86{letter-spacing:-0.096000px;}
.ls38{letter-spacing:-0.093960px;}
.ls1c{letter-spacing:-0.063000px;}
.ls19{letter-spacing:-0.060000px;}
.ls16{letter-spacing:0.000000px;}
.ls98{letter-spacing:0.000120px;}
.ls91{letter-spacing:0.000600px;}
.ls68{letter-spacing:0.033060px;}
.ls54{letter-spacing:0.043800px;}
.ls9{letter-spacing:0.046200px;}
.ls79{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.054600px;}
.ls99{letter-spacing:0.061320px;}
.ls8{letter-spacing:0.063000px;}
.ls55{letter-spacing:0.068400px;}
.ls90{letter-spacing:0.073080px;}
.ls5{letter-spacing:0.093600px;}
.ls9a{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.126000px;}
.ls73{letter-spacing:0.144000px;}
.ls95{letter-spacing:0.146160px;}
.ls35{letter-spacing:0.182700px;}
.ls1d{letter-spacing:0.189000px;}
.ls8a{letter-spacing:0.192000px;}
.ls67{letter-spacing:0.207060px;}
.lsc{letter-spacing:0.216000px;}
.ls80{letter-spacing:0.219240px;}
.ls0{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.252000px;}
.ls57{letter-spacing:0.306000px;}
.lsd{letter-spacing:0.315000px;}
.ls8c{letter-spacing:0.324000px;}
.ls56{letter-spacing:0.333000px;}
.ls77{letter-spacing:0.336000px;}
.ls5c{letter-spacing:0.365400px;}
.lsb{letter-spacing:0.378000px;}
.ls7{letter-spacing:0.399000px;}
.ls75{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.441000px;}
.ls8d{letter-spacing:0.457200px;}
.ls58{letter-spacing:0.459000px;}
.ls7f{letter-spacing:0.480000px;}
.ls2d{letter-spacing:0.504000px;}
.ls7d{letter-spacing:0.528000px;}
.ls1{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.567000px;}
.ls69{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.630000px;}
.ls7b{letter-spacing:0.672000px;}
.ls6{letter-spacing:0.693000px;}
.ls8e{letter-spacing:0.749400px;}
.ls5b{letter-spacing:0.756000px;}
.ls6d{letter-spacing:0.768000px;}
.ls59{letter-spacing:0.798000px;}
.ls10{letter-spacing:0.805800px;}
.ls74{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.819000px;}
.ls3{letter-spacing:0.882000px;}
.ls11{letter-spacing:0.945000px;}
.ls2{letter-spacing:0.960000px;}
.ls8b{letter-spacing:0.972000px;}
.ls2a{letter-spacing:1.008000px;}
.ls71{letter-spacing:1.056000px;}
.lse{letter-spacing:1.071000px;}
.ls70{letter-spacing:1.104000px;}
.ls5a{letter-spacing:1.134000px;}
.ls6a{letter-spacing:1.152000px;}
.ls2c{letter-spacing:1.197000px;}
.ls7e{letter-spacing:1.200000px;}
.ls6c{letter-spacing:1.248000px;}
.ls8f{letter-spacing:1.260000px;}
.ls93{letter-spacing:1.323000px;}
.lsf{letter-spacing:1.386000px;}
.ls6b{letter-spacing:1.440000px;}
.ls7c{letter-spacing:1.536000px;}
.ls7a{letter-spacing:1.584000px;}
.ls78{letter-spacing:1.632000px;}
.ls53{letter-spacing:2.205000px;}
.ls72{letter-spacing:2.400000px;}
.ls76{letter-spacing:2.448000px;}
.ls6f{letter-spacing:2.544000px;}
.ls6e{letter-spacing:3.936000px;}
.ls92{letter-spacing:17.280000px;}
.ls2e{letter-spacing:144.342000px;}
.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;}
}
.wsf6{word-spacing:-17.073000px;}
.ws5{word-spacing:-16.632000px;}
.wsa{word-spacing:-16.569000px;}
.wsf5{word-spacing:-16.506000px;}
.wse{word-spacing:-16.128000px;}
.wsc{word-spacing:-15.750000px;}
.wsb0{word-spacing:-15.048000px;}
.ws9a{word-spacing:-14.250000px;}
.ws36{word-spacing:-13.500000px;}
.ws9f{word-spacing:-12.750000px;}
.ws35{word-spacing:-12.744000px;}
.ws2{word-spacing:-12.720000px;}
.ws34{word-spacing:-12.636000px;}
.ws3{word-spacing:-11.448000px;}
.wsc6{word-spacing:-10.176000px;}
.ws97{word-spacing:-9.500400px;}
.wsc4{word-spacing:-9.354240px;}
.ws33{word-spacing:-9.317700px;}
.wsf8{word-spacing:-9.281160px;}
.wsf7{word-spacing:-9.208080px;}
.ws6{word-spacing:-9.135000px;}
.wsf4{word-spacing:-8.478000px;}
.wsb1{word-spacing:-8.298060px;}
.ws32{word-spacing:-8.075340px;}
.wsb2{word-spacing:-8.033580px;}
.ws7{word-spacing:-8.002260px;}
.ws9{word-spacing:-7.783020px;}
.wsb{word-spacing:-7.636860px;}
.wsaa{word-spacing:-7.602060px;}
.wsf{word-spacing:-7.381080px;}
.ws99{word-spacing:-7.161840px;}
.wsa6{word-spacing:-7.040040px;}
.ws10{word-spacing:-6.906060px;}
.ws31{word-spacing:-6.869520px;}
.wsa5{word-spacing:-6.832980px;}
.ws0{word-spacing:-6.598080px;}
.wsc5{word-spacing:-6.357960px;}
.wsd{word-spacing:-6.284880px;}
.ws98{word-spacing:-6.138720px;}
.ws30{word-spacing:-6.102180px;}
.ws8{word-spacing:-5.919480px;}
.ws4{word-spacing:-5.700240px;}
.ws1{word-spacing:-5.387040px;}
.ws10c{word-spacing:-4.932900px;}
.ws10d{word-spacing:-4.917240px;}
.ws1d{word-spacing:-1.575000px;}
.ws1f{word-spacing:-1.512000px;}
.ws106{word-spacing:-1.449000px;}
.ws21{word-spacing:-1.386000px;}
.ws111{word-spacing:-1.323000px;}
.wsba{word-spacing:-1.275000px;}
.ws14{word-spacing:-1.260000px;}
.ws10b{word-spacing:-1.200000px;}
.wsc7{word-spacing:-1.197000px;}
.wse7{word-spacing:-1.152000px;}
.ws2e{word-spacing:-1.134000px;}
.ws10e{word-spacing:-1.104000px;}
.ws102{word-spacing:-1.071000px;}
.wsfd{word-spacing:-1.056000px;}
.wsd6{word-spacing:-1.008000px;}
.wsc8{word-spacing:-0.945000px;}
.ws2d{word-spacing:-0.882000px;}
.ws92{word-spacing:-0.819000px;}
.wsb5{word-spacing:-0.693000px;}
.wsbb{word-spacing:-0.663000px;}
.ws107{word-spacing:-0.630000px;}
.wsf9{word-spacing:-0.528000px;}
.ws2f{word-spacing:-0.504000px;}
.wsbe{word-spacing:-0.459000px;}
.ws83{word-spacing:-0.441000px;}
.wse9{word-spacing:-0.384000px;}
.ws29{word-spacing:-0.315000px;}
.wscb{word-spacing:-0.252000px;}
.ws12{word-spacing:-0.240000px;}
.ws1e{word-spacing:-0.189000px;}
.ws8e{word-spacing:-0.126000px;}
.ws85{word-spacing:-0.063000px;}
.wsf0{word-spacing:-0.048000px;}
.ws11{word-spacing:0.000000px;}
.ws18{word-spacing:0.060000px;}
.ws95{word-spacing:0.093960px;}
.ws103{word-spacing:0.126000px;}
.ws28{word-spacing:0.189000px;}
.wsd9{word-spacing:0.192000px;}
.ws108{word-spacing:0.252000px;}
.ws10f{word-spacing:0.270000px;}
.wscf{word-spacing:0.315000px;}
.ws86{word-spacing:0.441000px;}
.wsed{word-spacing:0.576000px;}
.ws1a{word-spacing:0.600000px;}
.wsda{word-spacing:0.624000px;}
.wsce{word-spacing:0.630000px;}
.wsb9{word-spacing:0.693000px;}
.ws101{word-spacing:0.756000px;}
.wsd5{word-spacing:0.768000px;}
.ws8d{word-spacing:0.882000px;}
.ws114{word-spacing:0.945000px;}
.ws15{word-spacing:0.960000px;}
.wsff{word-spacing:0.972000px;}
.ws25{word-spacing:1.008000px;}
.ws16{word-spacing:1.020000px;}
.ws26{word-spacing:1.071000px;}
.ws19{word-spacing:1.080000px;}
.wsc2{word-spacing:1.134000px;}
.wscd{word-spacing:1.197000px;}
.ws17{word-spacing:1.260000px;}
.wsdd{word-spacing:1.296000px;}
.wsca{word-spacing:1.323000px;}
.ws20{word-spacing:1.386000px;}
.ws94{word-spacing:1.449000px;}
.ws89{word-spacing:1.512000px;}
.wsb7{word-spacing:1.575000px;}
.wsd0{word-spacing:1.638000px;}
.ws100{word-spacing:1.674000px;}
.ws8a{word-spacing:1.764000px;}
.ws8f{word-spacing:1.827000px;}
.ws1b{word-spacing:1.920000px;}
.ws87{word-spacing:2.016000px;}
.wse8{word-spacing:2.064000px;}
.ws115{word-spacing:2.079000px;}
.wsbd{word-spacing:2.091000px;}
.wsc9{word-spacing:2.142000px;}
.wsfa{word-spacing:2.160000px;}
.ws90{word-spacing:2.205000px;}
.wsd3{word-spacing:2.256000px;}
.wsd1{word-spacing:2.268000px;}
.ws112{word-spacing:2.394000px;}
.wsfc{word-spacing:2.400000px;}
.wscc{word-spacing:2.457000px;}
.ws13{word-spacing:2.520000px;}
.wsbc{word-spacing:2.550000px;}
.ws93{word-spacing:2.646000px;}
.wsfb{word-spacing:2.688000px;}
.ws91{word-spacing:2.709000px;}
.ws84{word-spacing:2.772000px;}
.wsee{word-spacing:2.784000px;}
.ws109{word-spacing:2.835000px;}
.ws24{word-spacing:2.898000px;}
.ws8c{word-spacing:2.961000px;}
.wsdc{word-spacing:2.976000px;}
.ws22{word-spacing:3.087000px;}
.ws1c{word-spacing:3.150000px;}
.ws2c{word-spacing:3.213000px;}
.wsbf{word-spacing:3.249000px;}
.wse4{word-spacing:3.264000px;}
.wsb6{word-spacing:3.276000px;}
.wsc3{word-spacing:3.339000px;}
.ws104{word-spacing:3.402000px;}
.wsb4{word-spacing:3.465000px;}
.wsc0{word-spacing:3.528000px;}
.ws96{word-spacing:3.618000px;}
.ws27{word-spacing:3.654000px;}
.ws2b{word-spacing:3.717000px;}
.ws113{word-spacing:3.780000px;}
.wsd8{word-spacing:3.792000px;}
.wsf3{word-spacing:3.840000px;}
.ws110{word-spacing:3.843000px;}
.wsfe{word-spacing:3.996000px;}
.wsd2{word-spacing:4.095000px;}
.ws88{word-spacing:4.158000px;}
.wsb8{word-spacing:4.221000px;}
.wse1{word-spacing:4.272000px;}
.wsef{word-spacing:4.320000px;}
.ws23{word-spacing:4.347000px;}
.wse2{word-spacing:4.368000px;}
.wse0{word-spacing:4.464000px;}
.wseb{word-spacing:4.512000px;}
.wsd4{word-spacing:4.560000px;}
.wsc1{word-spacing:4.662000px;}
.wsf2{word-spacing:4.800000px;}
.ws8b{word-spacing:4.851000px;}
.wsdb{word-spacing:4.896000px;}
.ws105{word-spacing:5.166000px;}
.ws2a{word-spacing:5.544000px;}
.wsd7{word-spacing:5.856000px;}
.wsf1{word-spacing:6.096000px;}
.wsec{word-spacing:6.432000px;}
.wsea{word-spacing:6.528000px;}
.wsb3{word-spacing:8.883000px;}
.wse6{word-spacing:8.928000px;}
.wse3{word-spacing:9.600000px;}
.wse5{word-spacing:9.840000px;}
.wsdf{word-spacing:10.176000px;}
.ws10a{word-spacing:13.200000px;}
.wsde{word-spacing:15.792000px;}
.ws9e{word-spacing:50.331000px;}
.ws39{word-spacing:85.698000px;}
.ws3e{word-spacing:86.616000px;}
.ws57{word-spacing:86.778000px;}
.ws61{word-spacing:86.832000px;}
.ws5d{word-spacing:87.480000px;}
.ws38{word-spacing:89.316000px;}
.ws4c{word-spacing:90.504000px;}
.ws7b{word-spacing:90.990000px;}
.ws49{word-spacing:91.260000px;}
.ws52{word-spacing:93.096000px;}
.ws6a{word-spacing:94.608000px;}
.ws46{word-spacing:95.634000px;}
.ws78{word-spacing:97.146000px;}
.ws82{word-spacing:98.280000px;}
.ws3c{word-spacing:98.496000px;}
.ws7f{word-spacing:98.766000px;}
.ws77{word-spacing:99.090000px;}
.ws72{word-spacing:99.792000px;}
.ws40{word-spacing:100.386000px;}
.ws56{word-spacing:100.980000px;}
.ws68{word-spacing:101.142000px;}
.ws79{word-spacing:101.304000px;}
.ws3b{word-spacing:101.628000px;}
.ws43{word-spacing:103.788000px;}
.ws64{word-spacing:105.192000px;}
.ws47{word-spacing:105.462000px;}
.ws7a{word-spacing:106.056000px;}
.ws48{word-spacing:106.542000px;}
.ws6b{word-spacing:106.758000px;}
.ws65{word-spacing:107.028000px;}
.ws5b{word-spacing:107.298000px;}
.ws53{word-spacing:107.514000px;}
.ws5a{word-spacing:108.432000px;}
.ws80{word-spacing:109.134000px;}
.ws60{word-spacing:109.728000px;}
.ws71{word-spacing:109.782000px;}
.ws7d{word-spacing:110.052000px;}
.ws73{word-spacing:110.916000px;}
.ws69{word-spacing:112.050000px;}
.ws4b{word-spacing:112.266000px;}
.ws55{word-spacing:112.320000px;}
.ws70{word-spacing:113.778000px;}
.ws63{word-spacing:113.832000px;}
.ws6e{word-spacing:113.994000px;}
.ws59{word-spacing:114.750000px;}
.ws6f{word-spacing:115.722000px;}
.ws6d{word-spacing:116.154000px;}
.ws45{word-spacing:117.720000px;}
.ws3a{word-spacing:118.098000px;}
.ws75{word-spacing:119.448000px;}
.ws4f{word-spacing:120.528000px;}
.ws76{word-spacing:121.068000px;}
.ws4d{word-spacing:121.230000px;}
.ws58{word-spacing:121.392000px;}
.ws66{word-spacing:121.608000px;}
.ws5e{word-spacing:123.282000px;}
.ws3d{word-spacing:123.768000px;}
.ws7e{word-spacing:125.496000px;}
.ws5f{word-spacing:126.738000px;}
.ws62{word-spacing:127.818000px;}
.ws74{word-spacing:129.114000px;}
.ws54{word-spacing:129.870000px;}
.ws6c{word-spacing:131.868000px;}
.ws81{word-spacing:132.678000px;}
.ws42{word-spacing:132.732000px;}
.ws50{word-spacing:133.326000px;}
.ws44{word-spacing:133.488000px;}
.ws4a{word-spacing:133.866000px;}
.ws3f{word-spacing:134.190000px;}
.ws4e{word-spacing:134.406000px;}
.ws7c{word-spacing:134.730000px;}
.ws41{word-spacing:144.018000px;}
.wsa7{word-spacing:144.267000px;}
.ws67{word-spacing:146.070000px;}
.wsa4{word-spacing:182.685000px;}
.wsa0{word-spacing:186.390000px;}
.wsa9{word-spacing:196.479000px;}
.ws9b{word-spacing:196.992000px;}
.wsa2{word-spacing:226.290000px;}
.ws37{word-spacing:229.716000px;}
.ws9d{word-spacing:233.586000px;}
.wsa8{word-spacing:246.581460px;}
.wsa1{word-spacing:255.084720px;}
.ws9c{word-spacing:259.578000px;}
.wsa3{word-spacing:262.921020px;}
.ws51{word-spacing:299.268000px;}
.ws5c{word-spacing:300.996000px;}
.wsab{word-spacing:324.387000px;}
.wsaf{word-spacing:366.567000px;}
.wsac{word-spacing:366.575520px;}
.wsae{word-spacing:374.412420px;}
.wsad{word-spacing:393.414000px;}
._23{margin-left:-21.672720px;}
._3b{margin-left:-20.636160px;}
._30{margin-left:-15.826740px;}
._2c{margin-left:-14.235720px;}
._3a{margin-left:-12.336000px;}
._37{margin-left:-7.632000px;}
._38{margin-left:-6.528000px;}
._4{margin-left:-5.437440px;}
._1{margin-left:-3.816000px;}
._3{margin-left:-2.609280px;}
._0{margin-left:-1.248000px;}
._2{width:1.008000px;}
._5{width:2.328000px;}
._6{width:3.725640px;}
._34{width:5.904000px;}
._39{width:7.632000px;}
._31{width:10.368000px;}
._35{width:12.576000px;}
._32{width:14.064000px;}
._36{width:16.176000px;}
._3c{width:17.328000px;}
._33{width:18.480000px;}
._25{width:62.073000px;}
._26{width:76.564560px;}
._27{width:90.687000px;}
._24{width:96.837000px;}
._7{width:104.004000px;}
._17{width:109.224000px;}
._1b{width:111.996000px;}
._19{width:114.570000px;}
._a{width:118.962000px;}
._f{width:121.517280px;}
._28{width:122.819280px;}
._10{width:125.280000px;}
._13{width:126.828000px;}
._1c{width:129.762000px;}
._15{width:131.652000px;}
._12{width:133.110000px;}
._e{width:134.406000px;}
._20{width:135.432000px;}
._d{width:137.394000px;}
._1f{width:138.780000px;}
._b{width:139.914000px;}
._18{width:141.989280px;}
._9{width:143.262000px;}
._8{width:146.610000px;}
._1a{width:150.084000px;}
._14{width:155.016720px;}
._1e{width:157.734000px;}
._1d{width:169.547280px;}
._21{width:178.158720px;}
._22{width:181.116000px;}
._11{width:182.466360px;}
._2a{width:244.587420px;}
._29{width:252.459840px;}
._16{width:306.941280px;}
._2b{width:324.737220px;}
._2f{width:407.901420px;}
._2e{width:412.946280px;}
._2d{width:426.531000px;}
._c{width:493.146000px;}
.fc1{color:rgb(237,29,36);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:29.580000px;}
.fs6{font-size:31.320000px;}
.fsb{font-size:33.060000px;}
.fs8{font-size:36.540000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:47.134800px;}
.ya4{bottom:76.973250px;}
.y4e{bottom:83.769150px;}
.y34{bottom:84.021300px;}
.ye7{bottom:85.448700px;}
.ya3{bottom:92.273250px;}
.y1c6{bottom:94.578150px;}
.y19e{bottom:101.669400px;}
.y4d{bottom:101.771400px;}
.y33{bottom:102.023550px;}
.ye6{bottom:102.548700px;}
.y168{bottom:105.630300px;}
.y1c5{bottom:108.978150px;}
.ye5{bottom:119.649900px;}
.y19d{bottom:119.671650px;}
.y4c{bottom:119.773650px;}
.y32{bottom:120.025800px;}
.y167{bottom:120.030300px;}
.ya2{bottom:121.480500px;}
.y1c4{bottom:123.378150px;}
.y166{bottom:134.430300px;}
.y19c{bottom:137.673900px;}
.ya1{bottom:137.680500px;}
.y4b{bottom:137.775900px;}
.y1c3{bottom:137.778150px;}
.y31{bottom:138.028050px;}
.y165{bottom:148.830300px;}
.y1c2{bottom:152.178150px;}
.ye4{bottom:152.989650px;}
.ya0{bottom:155.406000px;}
.y19b{bottom:155.635650px;}
.y120{bottom:155.719800px;}
.y4a{bottom:155.773650px;}
.y30{bottom:156.023550px;}
.y164{bottom:163.230300px;}
.y1c1{bottom:166.578150px;}
.y9f{bottom:173.131500px;}
.y19a{bottom:173.637900px;}
.y49{bottom:173.775900px;}
.y2f{bottom:174.025800px;}
.ye3{bottom:175.121400px;}
.y163{bottom:177.630300px;}
.y1c0{bottom:180.978150px;}
.y9e{bottom:190.857000px;}
.y199{bottom:191.640150px;}
.y11f{bottom:191.724300px;}
.y48{bottom:191.771400px;}
.y2e{bottom:192.028050px;}
.y162{bottom:192.030300px;}
.y1bf{bottom:195.378150px;}
.ye2{bottom:197.807400px;}
.y161{bottom:206.430300px;}
.y9d{bottom:208.582500px;}
.y198{bottom:209.642400px;}
.y47{bottom:209.773650px;}
.y2d{bottom:210.014550px;}
.y160{bottom:220.830300px;}
.y9c{bottom:226.308000px;}
.y197{bottom:227.644650px;}
.y1be{bottom:227.771400px;}
.y46{bottom:227.775900px;}
.y2c{bottom:228.016800px;}
.ye1{bottom:228.804900px;}
.y15f{bottom:235.230300px;}
.y9b{bottom:244.033500px;}
.y196{bottom:245.646900px;}
.y11e{bottom:245.731050px;}
.y45{bottom:245.775900px;}
.y2b{bottom:246.019050px;}
.ye0{bottom:246.802650px;}
.y15e{bottom:249.630300px;}
.y9a{bottom:261.759000px;}
.y195{bottom:263.649150px;}
.y11d{bottom:263.733300px;}
.y44{bottom:263.773650px;}
.y2a{bottom:264.021300px;}
.y15d{bottom:264.030300px;}
.y15c{bottom:278.430300px;}
.y99{bottom:279.484500px;}
.y194{bottom:281.651400px;}
.y11c{bottom:281.735550px;}
.y1bd{bottom:281.757900px;}
.yc6{bottom:281.771400px;}
.y43{bottom:281.775900px;}
.y29{bottom:282.023550px;}
.y15b{bottom:292.830300px;}
.ydf{bottom:297.033000px;}
.y98{bottom:297.210000px;}
.y193{bottom:299.653650px;}
.y11b{bottom:299.737800px;}
.y1bc{bottom:299.760150px;}
.yc5{bottom:299.773650px;}
.y42{bottom:299.775900px;}
.y28{bottom:300.025800px;}
.y15a{bottom:307.230300px;}
.yde{bottom:312.333000px;}
.y97{bottom:314.935500px;}
.y192{bottom:317.655900px;}
.y11a{bottom:317.740050px;}
.y1bb{bottom:317.762400px;}
.y41{bottom:317.773650px;}
.yc4{bottom:317.775900px;}
.y27{bottom:318.028050px;}
.y159{bottom:321.630300px;}
.ydd{bottom:327.633000px;}
.y96{bottom:332.661000px;}
.y191{bottom:335.658150px;}
.y119{bottom:335.742300px;}
.y1ba{bottom:335.764650px;}
.yc3{bottom:335.771400px;}
.y40{bottom:335.775900px;}
.y26{bottom:336.023550px;}
.y158{bottom:336.030300px;}
.ydc{bottom:342.933000px;}
.y95{bottom:350.386500px;}
.y157{bottom:350.430300px;}
.y190{bottom:353.660400px;}
.y118{bottom:353.744550px;}
.y1b9{bottom:353.766900px;}
.y3f{bottom:353.773650px;}
.y25{bottom:354.025800px;}
.y156{bottom:364.830300px;}
.y94{bottom:368.112000px;}
.y18f{bottom:371.662650px;}
.y117{bottom:371.746800px;}
.y1b8{bottom:371.769150px;}
.y3e{bottom:371.775900px;}
.y24{bottom:372.028050px;}
.y155{bottom:379.230300px;}
.ydb{bottom:383.370450px;}
.y92{bottom:385.840050px;}
.y8f{bottom:385.842000px;}
.y18e{bottom:389.664900px;}
.y3d{bottom:389.771400px;}
.yc2{bottom:389.773650px;}
.y23{bottom:390.028050px;}
.y93{bottom:390.940500px;}
.y154{bottom:393.630300px;}
.y18d{bottom:407.667150px;}
.y116{bottom:407.751300px;}
.y3c{bottom:407.773650px;}
.yc1{bottom:407.775900px;}
.y22{bottom:408.025800px;}
.y153{bottom:408.030300px;}
.yda{bottom:418.610700px;}
.y152{bottom:422.430300px;}
.y91{bottom:425.007300px;}
.y18c{bottom:425.669400px;}
.yc0{bottom:425.715150px;}
.y3b{bottom:425.775900px;}
.y21{bottom:426.028050px;}
.yd9{bottom:436.608450px;}
.y151{bottom:436.830300px;}
.y90{bottom:441.207300px;}
.y18b{bottom:443.671650px;}
.ybf{bottom:443.717400px;}
.y1b7{bottom:443.724150px;}
.y3a{bottom:443.751300px;}
.y20{bottom:444.028050px;}
.y150{bottom:451.230300px;}
.y18a{bottom:461.673900px;}
.ybe{bottom:461.719650px;}
.y1b6{bottom:461.726400px;}
.y39{bottom:461.753550px;}
.y115{bottom:461.758050px;}
.y1f{bottom:462.021300px;}
.y14f{bottom:465.630300px;}
.yd8{bottom:473.978400px;}
.y189{bottom:479.669400px;}
.ybd{bottom:479.721900px;}
.y1b5{bottom:479.728650px;}
.y38{bottom:479.755800px;}
.y114{bottom:479.760300px;}
.y1e{bottom:480.023550px;}
.y14e{bottom:480.030300px;}
.y8e{bottom:480.802650px;}
.yd7{bottom:491.976150px;}
.y14d{bottom:494.430300px;}
.y188{bottom:497.671650px;}
.ybc{bottom:497.724150px;}
.y1b4{bottom:497.730900px;}
.y37{bottom:497.758050px;}
.y113{bottom:497.762550px;}
.y1d{bottom:498.025800px;}
.y14c{bottom:508.830300px;}
.y187{bottom:515.673900px;}
.y1b3{bottom:515.733150px;}
.y36{bottom:515.760300px;}
.y112{bottom:515.764800px;}
.y14b{bottom:523.230300px;}
.yd6{bottom:527.976150px;}
.y186{bottom:533.651400px;}
.ybb{bottom:533.728650px;}
.y1b2{bottom:533.735400px;}
.y35{bottom:533.762550px;}
.y111{bottom:533.767050px;}
.y1c{bottom:534.030300px;}
.y14a{bottom:537.630300px;}
.yd5{bottom:543.276150px;}
.y185{bottom:551.653650px;}
.y8d{bottom:551.706150px;}
.y1b1{bottom:551.737650px;}
.y110{bottom:551.769300px;}
.y6f{bottom:552.003300px;}
.y149{bottom:552.030300px;}
.yd4{bottom:558.576150px;}
.y148{bottom:566.430300px;}
.y184{bottom:569.655900px;}
.y8c{bottom:569.708400px;}
.y1b0{bottom:569.739900px;}
.y10f{bottom:569.771550px;}
.y6e{bottom:570.005550px;}
.y147{bottom:580.830300px;}
.y183{bottom:587.658150px;}
.y8b{bottom:587.710650px;}
.yba{bottom:587.735400px;}
.y1af{bottom:587.742150px;}
.y10e{bottom:587.773800px;}
.y6d{bottom:588.007800px;}
.y1b{bottom:590.143800px;}
.y146{bottom:595.230300px;}
.yd3{bottom:598.640700px;}
.y182{bottom:605.660400px;}
.y8a{bottom:605.712900px;}
.yb9{bottom:605.737650px;}
.y1ae{bottom:605.744400px;}
.y10d{bottom:605.776050px;}
.y6c{bottom:606.010050px;}
.y145{bottom:609.630300px;}
.y1a{bottom:610.798800px;}
.yd2{bottom:620.771850px;}
.y181{bottom:623.662650px;}
.y1f8{bottom:623.697000px;}
.y1da{bottom:623.712750px;}
.y89{bottom:623.715150px;}
.yb8{bottom:623.739900px;}
.y1ad{bottom:623.746650px;}
.y10c{bottom:623.773800px;}
.y6b{bottom:624.012300px;}
.y144{bottom:624.030300px;}
.y19{bottom:626.998800px;}
.y143{bottom:638.430300px;}
.yd1{bottom:639.382350px;}
.y180{bottom:641.664900px;}
.y1f7{bottom:641.699250px;}
.y1d9{bottom:641.715000px;}
.y88{bottom:641.717400px;}
.yb7{bottom:641.742150px;}
.y1ac{bottom:641.748900px;}
.y10b{bottom:641.776050px;}
.y6a{bottom:642.014550px;}
.y18{bottom:643.198800px;}
.y142{bottom:652.830300px;}
.yd0{bottom:657.380100px;}
.y17{bottom:659.398800px;}
.y17f{bottom:659.667150px;}
.y1f6{bottom:659.701500px;}
.y1d8{bottom:659.717250px;}
.y87{bottom:659.719650px;}
.yb6{bottom:659.744400px;}
.y1ab{bottom:659.751150px;}
.y10a{bottom:659.760300px;}
.y69{bottom:660.016800px;}
.y141{bottom:667.230300px;}
.y17e{bottom:677.669400px;}
.y1f5{bottom:677.703750px;}
.y1d7{bottom:677.719500px;}
.y86{bottom:677.721900px;}
.yb5{bottom:677.746650px;}
.y1aa{bottom:677.753400px;}
.y109{bottom:677.762550px;}
.y68{bottom:678.019050px;}
.y140{bottom:681.630300px;}
.y16{bottom:686.143800px;}
.ycf{bottom:690.497850px;}
.y17d{bottom:695.671650px;}
.y1f4{bottom:695.706000px;}
.y1d6{bottom:695.721750px;}
.y85{bottom:695.724150px;}
.yb4{bottom:695.748900px;}
.y1a9{bottom:695.755650px;}
.y108{bottom:695.764800px;}
.y67{bottom:696.021300px;}
.y13f{bottom:696.030300px;}
.y15{bottom:702.343800px;}
.yce{bottom:708.495600px;}
.y13e{bottom:710.430300px;}
.y17c{bottom:713.673900px;}
.y1f3{bottom:713.708250px;}
.y1d5{bottom:713.724000px;}
.yb3{bottom:713.751150px;}
.y1a8{bottom:713.757900px;}
.y107{bottom:713.767050px;}
.y66{bottom:714.023550px;}
.y13d{bottom:724.830300px;}
.y17b{bottom:731.671350px;}
.y1f2{bottom:731.710500px;}
.y1d4{bottom:731.726250px;}
.y84{bottom:731.728650px;}
.yb2{bottom:731.753400px;}
.y1a7{bottom:731.760150px;}
.y106{bottom:731.769300px;}
.y65{bottom:732.025800px;}
.y14{bottom:736.543800px;}
.y13c{bottom:739.230300px;}
.y17a{bottom:749.673600px;}
.y1f1{bottom:749.712750px;}
.y1d3{bottom:749.728500px;}
.yf1{bottom:749.751150px;}
.yb1{bottom:749.755650px;}
.y1a6{bottom:749.762400px;}
.y105{bottom:749.771550px;}
.y64{bottom:750.028050px;}
.y13b{bottom:753.630300px;}
.y1f0{bottom:767.715000px;}
.y1d2{bottom:767.730750px;}
.yf0{bottom:767.753400px;}
.yb0{bottom:767.757900px;}
.y1a5{bottom:767.764650px;}
.y104{bottom:767.773800px;}
.y63{bottom:768.025800px;}
.y13a{bottom:768.030300px;}
.y179{bottom:768.951600px;}
.y13{bottom:772.543800px;}
.y139{bottom:782.430300px;}
.y1ef{bottom:785.717250px;}
.y1d1{bottom:785.733000px;}
.y83{bottom:785.735400px;}
.yef{bottom:785.755650px;}
.yaf{bottom:785.760150px;}
.y1a4{bottom:785.766900px;}
.y103{bottom:785.776050px;}
.y62{bottom:786.028050px;}
.y12{bottom:790.543800px;}
.y138{bottom:796.830300px;}
.y1ee{bottom:803.719500px;}
.y1d0{bottom:803.735250px;}
.y82{bottom:803.737650px;}
.yee{bottom:803.757900px;}
.yae{bottom:803.762400px;}
.y102{bottom:803.764800px;}
.y1a3{bottom:803.769150px;}
.y61{bottom:804.028050px;}
.y11{bottom:808.543800px;}
.y137{bottom:811.230300px;}
.y1ed{bottom:821.721750px;}
.y81{bottom:821.739900px;}
.yed{bottom:821.760150px;}
.yad{bottom:821.764650px;}
.y101{bottom:821.767050px;}
.y1a2{bottom:821.771400px;}
.y60{bottom:821.989800px;}
.y136{bottom:825.630300px;}
.y10{bottom:826.543800px;}
.y178{bottom:827.430300px;}
.y1ec{bottom:839.724000px;}
.y1cf{bottom:839.735400px;}
.y80{bottom:839.742150px;}
.yec{bottom:839.762400px;}
.yac{bottom:839.766900px;}
.y100{bottom:839.769300px;}
.y1a1{bottom:839.773650px;}
.y5f{bottom:839.992050px;}
.y135{bottom:840.030300px;}
.y177{bottom:843.630300px;}
.yf{bottom:844.543800px;}
.y134{bottom:854.430300px;}
.y1ce{bottom:855.935400px;}
.y1eb{bottom:857.726250px;}
.y7f{bottom:857.744400px;}
.yeb{bottom:857.764650px;}
.yab{bottom:857.769150px;}
.yff{bottom:857.771550px;}
.y1a0{bottom:857.775900px;}
.y5e{bottom:857.994300px;}
.y176{bottom:859.830300px;}
.ye{bottom:862.543800px;}
.y133{bottom:868.830300px;}
.y1ea{bottom:875.728500px;}
.y7e{bottom:875.746650px;}
.yea{bottom:875.766900px;}
.yaa{bottom:875.771400px;}
.yfe{bottom:875.773800px;}
.y5d{bottom:875.996550px;}
.y1cd{bottom:876.590400px;}
.yd{bottom:880.543800px;}
.y132{bottom:883.230300px;}
.y1cc{bottom:892.790250px;}
.y1e9{bottom:893.730750px;}
.y7d{bottom:893.748900px;}
.ye9{bottom:893.769150px;}
.ya9{bottom:893.773650px;}
.yfd{bottom:893.776050px;}
.y5c{bottom:893.998800px;}
.y175{bottom:894.021300px;}
.y131{bottom:897.630300px;}
.yc{bottom:898.543800px;}
.y1cb{bottom:908.990250px;}
.y1e8{bottom:911.733000px;}
.y7c{bottom:911.751150px;}
.ye8{bottom:911.771400px;}
.ya8{bottom:911.775900px;}
.y5b{bottom:912.001050px;}
.y130{bottom:912.030300px;}
.yb{bottom:916.543800px;}
.y1ca{bottom:920.735250px;}
.y12f{bottom:926.430300px;}
.y1e7{bottom:929.735250px;}
.y7b{bottom:929.753400px;}
.ya7{bottom:929.773650px;}
.y19f{bottom:929.775900px;}
.y5a{bottom:930.003300px;}
.y174{bottom:930.025800px;}
.ya{bottom:934.543800px;}
.y12e{bottom:940.830300px;}
.y1c9{bottom:941.390250px;}
.y1e6{bottom:947.737500px;}
.y7a{bottom:947.755650px;}
.ya6{bottom:947.775900px;}
.y59{bottom:948.005550px;}
.y173{bottom:948.028050px;}
.y9{bottom:952.543800px;}
.y12d{bottom:955.230300px;}
.y1e5{bottom:965.739750px;}
.yfc{bottom:965.755650px;}
.y79{bottom:965.757900px;}
.ya5{bottom:965.778150px;}
.y58{bottom:966.007800px;}
.y172{bottom:966.030300px;}
.y12c{bottom:969.630300px;}
.y8{bottom:970.543800px;}
.y1c8{bottom:971.130900px;}
.y1e4{bottom:983.742000px;}
.yfb{bottom:983.757900px;}
.y57{bottom:984.010050px;}
.y12b{bottom:984.030300px;}
.y7{bottom:988.543800px;}
.y12a{bottom:998.430300px;}
.y1e3{bottom:1001.744250px;}
.yfa{bottom:1001.760150px;}
.y78{bottom:1001.762400px;}
.y56{bottom:1002.012300px;}
.ycd{bottom:1005.767550px;}
.y6{bottom:1006.543800px;}
.y1c7{bottom:1007.135400px;}
.y129{bottom:1012.830300px;}
.y1e2{bottom:1019.746500px;}
.yf9{bottom:1019.762400px;}
.y77{bottom:1019.764650px;}
.y55{bottom:1020.014550px;}
.ycc{bottom:1021.067550px;}
.y5{bottom:1024.543800px;}
.y128{bottom:1027.230300px;}
.y171{bottom:1032.335400px;}
.ycb{bottom:1036.367550px;}
.y1e1{bottom:1037.748750px;}
.yf8{bottom:1037.764650px;}
.y76{bottom:1037.766900px;}
.y54{bottom:1038.016800px;}
.y127{bottom:1041.630300px;}
.y170{bottom:1046.735400px;}
.y1e0{bottom:1055.751000px;}
.yf7{bottom:1055.766900px;}
.y75{bottom:1055.769150px;}
.y53{bottom:1056.019050px;}
.y126{bottom:1056.030300px;}
.y16f{bottom:1061.135400px;}
.y4{bottom:1065.929700px;}
.yca{bottom:1069.839900px;}
.y125{bottom:1070.430300px;}
.y1df{bottom:1073.753250px;}
.yf6{bottom:1073.769150px;}
.y74{bottom:1073.771400px;}
.y52{bottom:1074.021300px;}
.y16e{bottom:1075.535400px;}
.y124{bottom:1084.830300px;}
.y16d{bottom:1089.935400px;}
.y1de{bottom:1091.755500px;}
.yf5{bottom:1091.771400px;}
.y73{bottom:1091.773650px;}
.y51{bottom:1092.023550px;}
.yc9{bottom:1096.587150px;}
.y123{bottom:1099.230300px;}
.y3{bottom:1100.285550px;}
.y16c{bottom:1104.335400px;}
.y1dd{bottom:1109.757750px;}
.yf4{bottom:1109.773650px;}
.y72{bottom:1109.775900px;}
.y50{bottom:1110.025800px;}
.y122{bottom:1113.630300px;}
.yc8{bottom:1113.687150px;}
.y16b{bottom:1118.735400px;}
.y71{bottom:1127.744550px;}
.y1dc{bottom:1127.760000px;}
.yf3{bottom:1127.775900px;}
.y16a{bottom:1133.135400px;}
.y70{bottom:1145.746800px;}
.y1db{bottom:1145.762250px;}
.yf2{bottom:1145.778150px;}
.y121{bottom:1145.969550px;}
.y4f{bottom:1146.030300px;}
.yc7{bottom:1146.802800px;}
.y169{bottom:1147.535400px;}
.y1{bottom:1183.559700px;}
.h27{height:21.924000px;}
.h7{height:22.581720px;}
.h2{height:34.080000px;}
.h1f{height:34.608000px;}
.h16{height:34.833000px;}
.h13{height:36.882000px;}
.h21{height:37.800000px;}
.h12{height:38.931000px;}
.h3{height:38.934000px;}
.h1a{height:38.952000px;}
.h15{height:39.210960px;}
.h8{height:42.966000px;}
.h9{height:43.029000px;}
.h6{height:43.260000px;}
.h20{height:44.100000px;}
.hb{height:45.755820px;}
.hc{height:45.764820px;}
.h22{height:45.766020px;}
.hd{height:45.773820px;}
.h1c{height:45.774420px;}
.ha{height:45.782820px;}
.h1d{height:45.800820px;}
.he{height:45.809820px;}
.h1e{height:45.818820px;}
.h25{height:45.827820px;}
.h1b{height:45.836820px;}
.h23{height:45.845820px;}
.hf{height:45.854220px;}
.h11{height:45.881220px;}
.h10{height:45.908820px;}
.h24{height:45.962820px;}
.h17{height:45.998820px;}
.h26{height:46.386600px;}
.h5{height:52.992000px;}
.h14{height:69.282000px;}
.h19{height:74.955000px;}
.h4{height:75.600000px;}
.h18{height:107.331000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:85.039350px;}
.x1b{left:88.812450px;}
.x3e{left:89.843850px;}
.x1c{left:92.187450px;}
.x19{left:97.789950px;}
.x1a{left:99.841950px;}
.x47{left:104.847600px;}
.x6{left:106.301700px;}
.xa{left:108.350550px;}
.x42{left:120.997650px;}
.x1e{left:125.707950px;}
.x1d{left:127.800450px;}
.x9{left:135.948750px;}
.xb{left:147.041550px;}
.x43{left:149.615400px;}
.x20{left:171.189450px;}
.x4c{left:173.264400px;}
.x1f{left:174.901950px;}
.x48{left:180.856350px;}
.xc{left:185.719050px;}
.x44{left:187.754100px;}
.x36{left:190.783050px;}
.x37{left:193.932300px;}
.x35{left:199.489200px;}
.xd{left:201.919050px;}
.x3f{left:209.771850px;}
.x4b{left:219.141750px;}
.x22{left:225.459450px;}
.x18{left:226.849950px;}
.x21{left:229.104450px;}
.x3{left:234.646500px;}
.xe{left:244.430700px;}
.x1{left:265.745400px;}
.x24{left:274.302450px;}
.x41{left:275.638650px;}
.x23{left:277.029450px;}
.x38{left:280.102050px;}
.x40{left:283.105650px;}
.x46{left:302.395350px;}
.x4{left:308.771850px;}
.x45{left:309.848100px;}
.x26{left:318.460950px;}
.x25{left:321.835950px;}
.xf{left:332.356200px;}
.x10{left:335.339700px;}
.x4a{left:347.377500px;}
.x28{left:366.898950px;}
.x27{left:370.030950px;}
.x3a{left:372.613050px;}
.x49{left:376.095600px;}
.x39{left:380.080050px;}
.x29{left:415.431450px;}
.x11{left:427.760700px;}
.x2{left:442.994100px;}
.x7{left:457.080000px;}
.x2a{left:463.045950px;}
.x2b{left:466.420950px;}
.x8{left:478.346700px;}
.x2d{left:514.615950px;}
.x2c{left:518.463450px;}
.x13{left:526.175700px;}
.x12{left:533.249700px;}
.x2f{left:562.810950px;}
.x2e{left:566.968950px;}
.x31{left:610.992450px;}
.x30{left:615.622950px;}
.x3b{left:642.009300px;}
.x33{left:659.200950px;}
.x32{left:663.021450px;}
.x34{left:716.440950px;}
.x14{left:719.183550px;}
.x3d{left:732.895800px;}
.x15{left:735.383550px;}
.x3c{left:745.350300px;}
.x16{left:751.583550px;}
.x17{left:790.382700px;}
@media print{
.vb{vertical-align:-26.154667pt;}
.va{vertical-align:-22.043200pt;}
.v9{vertical-align:-16.732267pt;}
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.839467pt;}
.v3{vertical-align:18.512000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:28.800000pt;}
.v6{vertical-align:30.400000pt;}
.v8{vertical-align:32.021333pt;}
.v7{vertical-align:60.800000pt;}
.ls4c{letter-spacing:-4.176000pt;}
.ls3f{letter-spacing:-4.128000pt;}
.ls51{letter-spacing:-3.888000pt;}
.ls3e{letter-spacing:-3.792000pt;}
.ls4d{letter-spacing:-3.648000pt;}
.ls44{letter-spacing:-3.504000pt;}
.ls60{letter-spacing:-3.344000pt;}
.ls4a{letter-spacing:-3.312000pt;}
.ls40{letter-spacing:-3.216000pt;}
.ls3d{letter-spacing:-3.168000pt;}
.ls46{letter-spacing:-3.120000pt;}
.ls48{letter-spacing:-2.928000pt;}
.ls24{letter-spacing:-2.858240pt;}
.ls41{letter-spacing:-2.784000pt;}
.ls2f{letter-spacing:-2.695840pt;}
.ls5e{letter-spacing:-2.663360pt;}
.ls42{letter-spacing:-2.640000pt;}
.ls52{letter-spacing:-2.592000pt;}
.ls27{letter-spacing:-2.533440pt;}
.ls81{letter-spacing:-2.468480pt;}
.ls3c{letter-spacing:-2.352000pt;}
.ls4f{letter-spacing:-2.160000pt;}
.ls4b{letter-spacing:-2.112000pt;}
.ls39{letter-spacing:-2.016000pt;}
.ls30{letter-spacing:-2.013760pt;}
.ls29{letter-spacing:-1.981280pt;}
.ls43{letter-spacing:-1.968000pt;}
.ls45{letter-spacing:-1.776000pt;}
.ls5f{letter-spacing:-1.753920pt;}
.ls47{letter-spacing:-1.632000pt;}
.ls28{letter-spacing:-1.559040pt;}
.ls50{letter-spacing:-1.488000pt;}
.ls26{letter-spacing:-1.331680pt;}
.ls25{letter-spacing:-1.201760pt;}
.ls3a{letter-spacing:-1.200000pt;}
.ls17{letter-spacing:-1.076480pt;}
.ls89{letter-spacing:-1.066667pt;}
.ls22{letter-spacing:-1.006880pt;}
.ls3b{letter-spacing:-0.960000pt;}
.ls31{letter-spacing:-0.941920pt;}
.ls4e{letter-spacing:-0.912000pt;}
.ls9c{letter-spacing:-0.779520pt;}
.ls37{letter-spacing:-0.768000pt;}
.ls20{letter-spacing:-0.672000pt;}
.ls5d{letter-spacing:-0.616000pt;}
.ls1e{letter-spacing:-0.560000pt;}
.ls97{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.504000pt;}
.ls63{letter-spacing:-0.499573pt;}
.ls96{letter-spacing:-0.469333pt;}
.ls34{letter-spacing:-0.448000pt;}
.ls87{letter-spacing:-0.426667pt;}
.ls61{letter-spacing:-0.411413pt;}
.ls94{letter-spacing:-0.392000pt;}
.ls9b{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.373333pt;}
.ls82{letter-spacing:-0.341333pt;}
.ls36{letter-spacing:-0.336000pt;}
.ls66{letter-spacing:-0.317333pt;}
.ls65{letter-spacing:-0.315520pt;}
.ls21{letter-spacing:-0.280000pt;}
.ls83{letter-spacing:-0.256000pt;}
.ls64{letter-spacing:-0.226667pt;}
.ls32{letter-spacing:-0.224000pt;}
.ls88{letter-spacing:-0.213333pt;}
.ls62{letter-spacing:-0.205707pt;}
.ls84{letter-spacing:-0.170667pt;}
.ls33{letter-spacing:-0.168000pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls85{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.112000pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls49{letter-spacing:-0.096000pt;}
.ls86{letter-spacing:-0.085333pt;}
.ls38{letter-spacing:-0.083520pt;}
.ls1c{letter-spacing:-0.056000pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls16{letter-spacing:0.000000pt;}
.ls98{letter-spacing:0.000107pt;}
.ls91{letter-spacing:0.000533pt;}
.ls68{letter-spacing:0.029387pt;}
.ls54{letter-spacing:0.038933pt;}
.ls9{letter-spacing:0.041067pt;}
.ls79{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.048533pt;}
.ls99{letter-spacing:0.054507pt;}
.ls8{letter-spacing:0.056000pt;}
.ls55{letter-spacing:0.060800pt;}
.ls90{letter-spacing:0.064960pt;}
.ls5{letter-spacing:0.083200pt;}
.ls9a{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.112000pt;}
.ls73{letter-spacing:0.128000pt;}
.ls95{letter-spacing:0.129920pt;}
.ls35{letter-spacing:0.162400pt;}
.ls1d{letter-spacing:0.168000pt;}
.ls8a{letter-spacing:0.170667pt;}
.ls67{letter-spacing:0.184053pt;}
.lsc{letter-spacing:0.192000pt;}
.ls80{letter-spacing:0.194880pt;}
.ls0{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.224000pt;}
.ls57{letter-spacing:0.272000pt;}
.lsd{letter-spacing:0.280000pt;}
.ls8c{letter-spacing:0.288000pt;}
.ls56{letter-spacing:0.296000pt;}
.ls77{letter-spacing:0.298667pt;}
.ls5c{letter-spacing:0.324800pt;}
.lsb{letter-spacing:0.336000pt;}
.ls7{letter-spacing:0.354667pt;}
.ls75{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.392000pt;}
.ls8d{letter-spacing:0.406400pt;}
.ls58{letter-spacing:0.408000pt;}
.ls7f{letter-spacing:0.426667pt;}
.ls2d{letter-spacing:0.448000pt;}
.ls7d{letter-spacing:0.469333pt;}
.ls1{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.504000pt;}
.ls69{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.560000pt;}
.ls7b{letter-spacing:0.597333pt;}
.ls6{letter-spacing:0.616000pt;}
.ls8e{letter-spacing:0.666133pt;}
.ls5b{letter-spacing:0.672000pt;}
.ls6d{letter-spacing:0.682667pt;}
.ls59{letter-spacing:0.709333pt;}
.ls10{letter-spacing:0.716267pt;}
.ls74{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.728000pt;}
.ls3{letter-spacing:0.784000pt;}
.ls11{letter-spacing:0.840000pt;}
.ls2{letter-spacing:0.853333pt;}
.ls8b{letter-spacing:0.864000pt;}
.ls2a{letter-spacing:0.896000pt;}
.ls71{letter-spacing:0.938667pt;}
.lse{letter-spacing:0.952000pt;}
.ls70{letter-spacing:0.981333pt;}
.ls5a{letter-spacing:1.008000pt;}
.ls6a{letter-spacing:1.024000pt;}
.ls2c{letter-spacing:1.064000pt;}
.ls7e{letter-spacing:1.066667pt;}
.ls6c{letter-spacing:1.109333pt;}
.ls8f{letter-spacing:1.120000pt;}
.ls93{letter-spacing:1.176000pt;}
.lsf{letter-spacing:1.232000pt;}
.ls6b{letter-spacing:1.280000pt;}
.ls7c{letter-spacing:1.365333pt;}
.ls7a{letter-spacing:1.408000pt;}
.ls78{letter-spacing:1.450667pt;}
.ls53{letter-spacing:1.960000pt;}
.ls72{letter-spacing:2.133333pt;}
.ls76{letter-spacing:2.176000pt;}
.ls6f{letter-spacing:2.261333pt;}
.ls6e{letter-spacing:3.498667pt;}
.ls92{letter-spacing:15.360000pt;}
.ls2e{letter-spacing:128.304000pt;}
.wsf6{word-spacing:-15.176000pt;}
.ws5{word-spacing:-14.784000pt;}
.wsa{word-spacing:-14.728000pt;}
.wsf5{word-spacing:-14.672000pt;}
.wse{word-spacing:-14.336000pt;}
.wsc{word-spacing:-14.000000pt;}
.wsb0{word-spacing:-13.376000pt;}
.ws9a{word-spacing:-12.666667pt;}
.ws36{word-spacing:-12.000000pt;}
.ws9f{word-spacing:-11.333333pt;}
.ws35{word-spacing:-11.328000pt;}
.ws2{word-spacing:-11.306667pt;}
.ws34{word-spacing:-11.232000pt;}
.ws3{word-spacing:-10.176000pt;}
.wsc6{word-spacing:-9.045333pt;}
.ws97{word-spacing:-8.444800pt;}
.wsc4{word-spacing:-8.314880pt;}
.ws33{word-spacing:-8.282400pt;}
.wsf8{word-spacing:-8.249920pt;}
.wsf7{word-spacing:-8.184960pt;}
.ws6{word-spacing:-8.120000pt;}
.wsf4{word-spacing:-7.536000pt;}
.wsb1{word-spacing:-7.376053pt;}
.ws32{word-spacing:-7.178080pt;}
.wsb2{word-spacing:-7.140960pt;}
.ws7{word-spacing:-7.113120pt;}
.ws9{word-spacing:-6.918240pt;}
.wsb{word-spacing:-6.788320pt;}
.wsaa{word-spacing:-6.757387pt;}
.wsf{word-spacing:-6.560960pt;}
.ws99{word-spacing:-6.366080pt;}
.wsa6{word-spacing:-6.257813pt;}
.ws10{word-spacing:-6.138720pt;}
.ws31{word-spacing:-6.106240pt;}
.wsa5{word-spacing:-6.073760pt;}
.ws0{word-spacing:-5.864960pt;}
.wsc5{word-spacing:-5.651520pt;}
.wsd{word-spacing:-5.586560pt;}
.ws98{word-spacing:-5.456640pt;}
.ws30{word-spacing:-5.424160pt;}
.ws8{word-spacing:-5.261760pt;}
.ws4{word-spacing:-5.066880pt;}
.ws1{word-spacing:-4.788480pt;}
.ws10c{word-spacing:-4.384800pt;}
.ws10d{word-spacing:-4.370880pt;}
.ws1d{word-spacing:-1.400000pt;}
.ws1f{word-spacing:-1.344000pt;}
.ws106{word-spacing:-1.288000pt;}
.ws21{word-spacing:-1.232000pt;}
.ws111{word-spacing:-1.176000pt;}
.wsba{word-spacing:-1.133333pt;}
.ws14{word-spacing:-1.120000pt;}
.ws10b{word-spacing:-1.066667pt;}
.wsc7{word-spacing:-1.064000pt;}
.wse7{word-spacing:-1.024000pt;}
.ws2e{word-spacing:-1.008000pt;}
.ws10e{word-spacing:-0.981333pt;}
.ws102{word-spacing:-0.952000pt;}
.wsfd{word-spacing:-0.938667pt;}
.wsd6{word-spacing:-0.896000pt;}
.wsc8{word-spacing:-0.840000pt;}
.ws2d{word-spacing:-0.784000pt;}
.ws92{word-spacing:-0.728000pt;}
.wsb5{word-spacing:-0.616000pt;}
.wsbb{word-spacing:-0.589333pt;}
.ws107{word-spacing:-0.560000pt;}
.wsf9{word-spacing:-0.469333pt;}
.ws2f{word-spacing:-0.448000pt;}
.wsbe{word-spacing:-0.408000pt;}
.ws83{word-spacing:-0.392000pt;}
.wse9{word-spacing:-0.341333pt;}
.ws29{word-spacing:-0.280000pt;}
.wscb{word-spacing:-0.224000pt;}
.ws12{word-spacing:-0.213333pt;}
.ws1e{word-spacing:-0.168000pt;}
.ws8e{word-spacing:-0.112000pt;}
.ws85{word-spacing:-0.056000pt;}
.wsf0{word-spacing:-0.042667pt;}
.ws11{word-spacing:0.000000pt;}
.ws18{word-spacing:0.053333pt;}
.ws95{word-spacing:0.083520pt;}
.ws103{word-spacing:0.112000pt;}
.ws28{word-spacing:0.168000pt;}
.wsd9{word-spacing:0.170667pt;}
.ws108{word-spacing:0.224000pt;}
.ws10f{word-spacing:0.240000pt;}
.wscf{word-spacing:0.280000pt;}
.ws86{word-spacing:0.392000pt;}
.wsed{word-spacing:0.512000pt;}
.ws1a{word-spacing:0.533333pt;}
.wsda{word-spacing:0.554667pt;}
.wsce{word-spacing:0.560000pt;}
.wsb9{word-spacing:0.616000pt;}
.ws101{word-spacing:0.672000pt;}
.wsd5{word-spacing:0.682667pt;}
.ws8d{word-spacing:0.784000pt;}
.ws114{word-spacing:0.840000pt;}
.ws15{word-spacing:0.853333pt;}
.wsff{word-spacing:0.864000pt;}
.ws25{word-spacing:0.896000pt;}
.ws16{word-spacing:0.906667pt;}
.ws26{word-spacing:0.952000pt;}
.ws19{word-spacing:0.960000pt;}
.wsc2{word-spacing:1.008000pt;}
.wscd{word-spacing:1.064000pt;}
.ws17{word-spacing:1.120000pt;}
.wsdd{word-spacing:1.152000pt;}
.wsca{word-spacing:1.176000pt;}
.ws20{word-spacing:1.232000pt;}
.ws94{word-spacing:1.288000pt;}
.ws89{word-spacing:1.344000pt;}
.wsb7{word-spacing:1.400000pt;}
.wsd0{word-spacing:1.456000pt;}
.ws100{word-spacing:1.488000pt;}
.ws8a{word-spacing:1.568000pt;}
.ws8f{word-spacing:1.624000pt;}
.ws1b{word-spacing:1.706667pt;}
.ws87{word-spacing:1.792000pt;}
.wse8{word-spacing:1.834667pt;}
.ws115{word-spacing:1.848000pt;}
.wsbd{word-spacing:1.858667pt;}
.wsc9{word-spacing:1.904000pt;}
.wsfa{word-spacing:1.920000pt;}
.ws90{word-spacing:1.960000pt;}
.wsd3{word-spacing:2.005333pt;}
.wsd1{word-spacing:2.016000pt;}
.ws112{word-spacing:2.128000pt;}
.wsfc{word-spacing:2.133333pt;}
.wscc{word-spacing:2.184000pt;}
.ws13{word-spacing:2.240000pt;}
.wsbc{word-spacing:2.266667pt;}
.ws93{word-spacing:2.352000pt;}
.wsfb{word-spacing:2.389333pt;}
.ws91{word-spacing:2.408000pt;}
.ws84{word-spacing:2.464000pt;}
.wsee{word-spacing:2.474667pt;}
.ws109{word-spacing:2.520000pt;}
.ws24{word-spacing:2.576000pt;}
.ws8c{word-spacing:2.632000pt;}
.wsdc{word-spacing:2.645333pt;}
.ws22{word-spacing:2.744000pt;}
.ws1c{word-spacing:2.800000pt;}
.ws2c{word-spacing:2.856000pt;}
.wsbf{word-spacing:2.888000pt;}
.wse4{word-spacing:2.901333pt;}
.wsb6{word-spacing:2.912000pt;}
.wsc3{word-spacing:2.968000pt;}
.ws104{word-spacing:3.024000pt;}
.wsb4{word-spacing:3.080000pt;}
.wsc0{word-spacing:3.136000pt;}
.ws96{word-spacing:3.216000pt;}
.ws27{word-spacing:3.248000pt;}
.ws2b{word-spacing:3.304000pt;}
.ws113{word-spacing:3.360000pt;}
.wsd8{word-spacing:3.370667pt;}
.wsf3{word-spacing:3.413333pt;}
.ws110{word-spacing:3.416000pt;}
.wsfe{word-spacing:3.552000pt;}
.wsd2{word-spacing:3.640000pt;}
.ws88{word-spacing:3.696000pt;}
.wsb8{word-spacing:3.752000pt;}
.wse1{word-spacing:3.797333pt;}
.wsef{word-spacing:3.840000pt;}
.ws23{word-spacing:3.864000pt;}
.wse2{word-spacing:3.882667pt;}
.wse0{word-spacing:3.968000pt;}
.wseb{word-spacing:4.010667pt;}
.wsd4{word-spacing:4.053333pt;}
.wsc1{word-spacing:4.144000pt;}
.wsf2{word-spacing:4.266667pt;}
.ws8b{word-spacing:4.312000pt;}
.wsdb{word-spacing:4.352000pt;}
.ws105{word-spacing:4.592000pt;}
.ws2a{word-spacing:4.928000pt;}
.wsd7{word-spacing:5.205333pt;}
.wsf1{word-spacing:5.418667pt;}
.wsec{word-spacing:5.717333pt;}
.wsea{word-spacing:5.802667pt;}
.wsb3{word-spacing:7.896000pt;}
.wse6{word-spacing:7.936000pt;}
.wse3{word-spacing:8.533333pt;}
.wse5{word-spacing:8.746667pt;}
.wsdf{word-spacing:9.045333pt;}
.ws10a{word-spacing:11.733333pt;}
.wsde{word-spacing:14.037333pt;}
.ws9e{word-spacing:44.738667pt;}
.ws39{word-spacing:76.176000pt;}
.ws3e{word-spacing:76.992000pt;}
.ws57{word-spacing:77.136000pt;}
.ws61{word-spacing:77.184000pt;}
.ws5d{word-spacing:77.760000pt;}
.ws38{word-spacing:79.392000pt;}
.ws4c{word-spacing:80.448000pt;}
.ws7b{word-spacing:80.880000pt;}
.ws49{word-spacing:81.120000pt;}
.ws52{word-spacing:82.752000pt;}
.ws6a{word-spacing:84.096000pt;}
.ws46{word-spacing:85.008000pt;}
.ws78{word-spacing:86.352000pt;}
.ws82{word-spacing:87.360000pt;}
.ws3c{word-spacing:87.552000pt;}
.ws7f{word-spacing:87.792000pt;}
.ws77{word-spacing:88.080000pt;}
.ws72{word-spacing:88.704000pt;}
.ws40{word-spacing:89.232000pt;}
.ws56{word-spacing:89.760000pt;}
.ws68{word-spacing:89.904000pt;}
.ws79{word-spacing:90.048000pt;}
.ws3b{word-spacing:90.336000pt;}
.ws43{word-spacing:92.256000pt;}
.ws64{word-spacing:93.504000pt;}
.ws47{word-spacing:93.744000pt;}
.ws7a{word-spacing:94.272000pt;}
.ws48{word-spacing:94.704000pt;}
.ws6b{word-spacing:94.896000pt;}
.ws65{word-spacing:95.136000pt;}
.ws5b{word-spacing:95.376000pt;}
.ws53{word-spacing:95.568000pt;}
.ws5a{word-spacing:96.384000pt;}
.ws80{word-spacing:97.008000pt;}
.ws60{word-spacing:97.536000pt;}
.ws71{word-spacing:97.584000pt;}
.ws7d{word-spacing:97.824000pt;}
.ws73{word-spacing:98.592000pt;}
.ws69{word-spacing:99.600000pt;}
.ws4b{word-spacing:99.792000pt;}
.ws55{word-spacing:99.840000pt;}
.ws70{word-spacing:101.136000pt;}
.ws63{word-spacing:101.184000pt;}
.ws6e{word-spacing:101.328000pt;}
.ws59{word-spacing:102.000000pt;}
.ws6f{word-spacing:102.864000pt;}
.ws6d{word-spacing:103.248000pt;}
.ws45{word-spacing:104.640000pt;}
.ws3a{word-spacing:104.976000pt;}
.ws75{word-spacing:106.176000pt;}
.ws4f{word-spacing:107.136000pt;}
.ws76{word-spacing:107.616000pt;}
.ws4d{word-spacing:107.760000pt;}
.ws58{word-spacing:107.904000pt;}
.ws66{word-spacing:108.096000pt;}
.ws5e{word-spacing:109.584000pt;}
.ws3d{word-spacing:110.016000pt;}
.ws7e{word-spacing:111.552000pt;}
.ws5f{word-spacing:112.656000pt;}
.ws62{word-spacing:113.616000pt;}
.ws74{word-spacing:114.768000pt;}
.ws54{word-spacing:115.440000pt;}
.ws6c{word-spacing:117.216000pt;}
.ws81{word-spacing:117.936000pt;}
.ws42{word-spacing:117.984000pt;}
.ws50{word-spacing:118.512000pt;}
.ws44{word-spacing:118.656000pt;}
.ws4a{word-spacing:118.992000pt;}
.ws3f{word-spacing:119.280000pt;}
.ws4e{word-spacing:119.472000pt;}
.ws7c{word-spacing:119.760000pt;}
.ws41{word-spacing:128.016000pt;}
.wsa7{word-spacing:128.237333pt;}
.ws67{word-spacing:129.840000pt;}
.wsa4{word-spacing:162.386667pt;}
.wsa0{word-spacing:165.680000pt;}
.wsa9{word-spacing:174.648000pt;}
.ws9b{word-spacing:175.104000pt;}
.wsa2{word-spacing:201.146667pt;}
.ws37{word-spacing:204.192000pt;}
.ws9d{word-spacing:207.632000pt;}
.wsa8{word-spacing:219.183520pt;}
.wsa1{word-spacing:226.741973pt;}
.ws9c{word-spacing:230.736000pt;}
.wsa3{word-spacing:233.707573pt;}
.ws51{word-spacing:266.016000pt;}
.ws5c{word-spacing:267.552000pt;}
.wsab{word-spacing:288.344000pt;}
.wsaf{word-spacing:325.837333pt;}
.wsac{word-spacing:325.844907pt;}
.wsae{word-spacing:332.811040pt;}
.wsad{word-spacing:349.701333pt;}
._23{margin-left:-19.264640pt;}
._3b{margin-left:-18.343253pt;}
._30{margin-left:-14.068213pt;}
._2c{margin-left:-12.653973pt;}
._3a{margin-left:-10.965333pt;}
._37{margin-left:-6.784000pt;}
._38{margin-left:-5.802667pt;}
._4{margin-left:-4.833280pt;}
._1{margin-left:-3.392000pt;}
._3{margin-left:-2.319360pt;}
._0{margin-left:-1.109333pt;}
._2{width:0.896000pt;}
._5{width:2.069333pt;}
._6{width:3.311680pt;}
._34{width:5.248000pt;}
._39{width:6.784000pt;}
._31{width:9.216000pt;}
._35{width:11.178667pt;}
._32{width:12.501333pt;}
._36{width:14.378667pt;}
._3c{width:15.402667pt;}
._33{width:16.426667pt;}
._25{width:55.176000pt;}
._26{width:68.057387pt;}
._27{width:80.610667pt;}
._24{width:86.077333pt;}
._7{width:92.448000pt;}
._17{width:97.088000pt;}
._1b{width:99.552000pt;}
._19{width:101.840000pt;}
._a{width:105.744000pt;}
._f{width:108.015360pt;}
._28{width:109.172693pt;}
._10{width:111.360000pt;}
._13{width:112.736000pt;}
._1c{width:115.344000pt;}
._15{width:117.024000pt;}
._12{width:118.320000pt;}
._e{width:119.472000pt;}
._20{width:120.384000pt;}
._d{width:122.128000pt;}
._1f{width:123.360000pt;}
._b{width:124.368000pt;}
._18{width:126.212693pt;}
._9{width:127.344000pt;}
._8{width:130.320000pt;}
._1a{width:133.408000pt;}
._14{width:137.792640pt;}
._1e{width:140.208000pt;}
._1d{width:150.708693pt;}
._21{width:158.363307pt;}
._22{width:160.992000pt;}
._11{width:162.192320pt;}
._2a{width:217.411040pt;}
._29{width:224.408747pt;}
._16{width:272.836693pt;}
._2b{width:288.655307pt;}
._2f{width:362.579040pt;}
._2e{width:367.063360pt;}
._2d{width:379.138667pt;}
._c{width:438.352000pt;}
.fsc{font-size:26.293333pt;}
.fs6{font-size:27.840000pt;}
.fsb{font-size:29.386667pt;}
.fs8{font-size:32.480000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.897600pt;}
.ya4{bottom:68.420667pt;}
.y4e{bottom:74.461467pt;}
.y34{bottom:74.685600pt;}
.ye7{bottom:75.954400pt;}
.ya3{bottom:82.020667pt;}
.y1c6{bottom:84.069467pt;}
.y19e{bottom:90.372800pt;}
.y4d{bottom:90.463467pt;}
.y33{bottom:90.687600pt;}
.ye6{bottom:91.154400pt;}
.y168{bottom:93.893600pt;}
.y1c5{bottom:96.869467pt;}
.ye5{bottom:106.355467pt;}
.y19d{bottom:106.374800pt;}
.y4c{bottom:106.465467pt;}
.y32{bottom:106.689600pt;}
.y167{bottom:106.693600pt;}
.ya2{bottom:107.982667pt;}
.y1c4{bottom:109.669467pt;}
.y166{bottom:119.493600pt;}
.y19c{bottom:122.376800pt;}
.ya1{bottom:122.382667pt;}
.y4b{bottom:122.467467pt;}
.y1c3{bottom:122.469467pt;}
.y31{bottom:122.691600pt;}
.y165{bottom:132.293600pt;}
.y1c2{bottom:135.269467pt;}
.ye4{bottom:135.990800pt;}
.ya0{bottom:138.138667pt;}
.y19b{bottom:138.342800pt;}
.y120{bottom:138.417600pt;}
.y4a{bottom:138.465467pt;}
.y30{bottom:138.687600pt;}
.y164{bottom:145.093600pt;}
.y1c1{bottom:148.069467pt;}
.y9f{bottom:153.894667pt;}
.y19a{bottom:154.344800pt;}
.y49{bottom:154.467467pt;}
.y2f{bottom:154.689600pt;}
.ye3{bottom:155.663467pt;}
.y163{bottom:157.893600pt;}
.y1c0{bottom:160.869467pt;}
.y9e{bottom:169.650667pt;}
.y199{bottom:170.346800pt;}
.y11f{bottom:170.421600pt;}
.y48{bottom:170.463467pt;}
.y2e{bottom:170.691600pt;}
.y162{bottom:170.693600pt;}
.y1bf{bottom:173.669467pt;}
.ye2{bottom:175.828800pt;}
.y161{bottom:183.493600pt;}
.y9d{bottom:185.406667pt;}
.y198{bottom:186.348800pt;}
.y47{bottom:186.465467pt;}
.y2d{bottom:186.679600pt;}
.y160{bottom:196.293600pt;}
.y9c{bottom:201.162667pt;}
.y197{bottom:202.350800pt;}
.y1be{bottom:202.463467pt;}
.y46{bottom:202.467467pt;}
.y2c{bottom:202.681600pt;}
.ye1{bottom:203.382133pt;}
.y15f{bottom:209.093600pt;}
.y9b{bottom:216.918667pt;}
.y196{bottom:218.352800pt;}
.y11e{bottom:218.427600pt;}
.y45{bottom:218.467467pt;}
.y2b{bottom:218.683600pt;}
.ye0{bottom:219.380133pt;}
.y15e{bottom:221.893600pt;}
.y9a{bottom:232.674667pt;}
.y195{bottom:234.354800pt;}
.y11d{bottom:234.429600pt;}
.y44{bottom:234.465467pt;}
.y2a{bottom:234.685600pt;}
.y15d{bottom:234.693600pt;}
.y15c{bottom:247.493600pt;}
.y99{bottom:248.430667pt;}
.y194{bottom:250.356800pt;}
.y11c{bottom:250.431600pt;}
.y1bd{bottom:250.451467pt;}
.yc6{bottom:250.463467pt;}
.y43{bottom:250.467467pt;}
.y29{bottom:250.687600pt;}
.y15b{bottom:260.293600pt;}
.ydf{bottom:264.029333pt;}
.y98{bottom:264.186667pt;}
.y193{bottom:266.358800pt;}
.y11b{bottom:266.433600pt;}
.y1bc{bottom:266.453467pt;}
.yc5{bottom:266.465467pt;}
.y42{bottom:266.467467pt;}
.y28{bottom:266.689600pt;}
.y15a{bottom:273.093600pt;}
.yde{bottom:277.629333pt;}
.y97{bottom:279.942667pt;}
.y192{bottom:282.360800pt;}
.y11a{bottom:282.435600pt;}
.y1bb{bottom:282.455467pt;}
.y41{bottom:282.465467pt;}
.yc4{bottom:282.467467pt;}
.y27{bottom:282.691600pt;}
.y159{bottom:285.893600pt;}
.ydd{bottom:291.229333pt;}
.y96{bottom:295.698667pt;}
.y191{bottom:298.362800pt;}
.y119{bottom:298.437600pt;}
.y1ba{bottom:298.457467pt;}
.yc3{bottom:298.463467pt;}
.y40{bottom:298.467467pt;}
.y26{bottom:298.687600pt;}
.y158{bottom:298.693600pt;}
.ydc{bottom:304.829333pt;}
.y95{bottom:311.454667pt;}
.y157{bottom:311.493600pt;}
.y190{bottom:314.364800pt;}
.y118{bottom:314.439600pt;}
.y1b9{bottom:314.459467pt;}
.y3f{bottom:314.465467pt;}
.y25{bottom:314.689600pt;}
.y156{bottom:324.293600pt;}
.y94{bottom:327.210667pt;}
.y18f{bottom:330.366800pt;}
.y117{bottom:330.441600pt;}
.y1b8{bottom:330.461467pt;}
.y3e{bottom:330.467467pt;}
.y24{bottom:330.691600pt;}
.y155{bottom:337.093600pt;}
.ydb{bottom:340.773733pt;}
.y92{bottom:342.968933pt;}
.y8f{bottom:342.970667pt;}
.y18e{bottom:346.368800pt;}
.y3d{bottom:346.463467pt;}
.yc2{bottom:346.465467pt;}
.y23{bottom:346.691600pt;}
.y93{bottom:347.502667pt;}
.y154{bottom:349.893600pt;}
.y18d{bottom:362.370800pt;}
.y116{bottom:362.445600pt;}
.y3c{bottom:362.465467pt;}
.yc1{bottom:362.467467pt;}
.y22{bottom:362.689600pt;}
.y153{bottom:362.693600pt;}
.yda{bottom:372.098400pt;}
.y152{bottom:375.493600pt;}
.y91{bottom:377.784267pt;}
.y18c{bottom:378.372800pt;}
.yc0{bottom:378.413467pt;}
.y3b{bottom:378.467467pt;}
.y21{bottom:378.691600pt;}
.yd9{bottom:388.096400pt;}
.y151{bottom:388.293600pt;}
.y90{bottom:392.184267pt;}
.y18b{bottom:394.374800pt;}
.ybf{bottom:394.415467pt;}
.y1b7{bottom:394.421467pt;}
.y3a{bottom:394.445600pt;}
.y20{bottom:394.691600pt;}
.y150{bottom:401.093600pt;}
.y18a{bottom:410.376800pt;}
.ybe{bottom:410.417467pt;}
.y1b6{bottom:410.423467pt;}
.y39{bottom:410.447600pt;}
.y115{bottom:410.451600pt;}
.y1f{bottom:410.685600pt;}
.y14f{bottom:413.893600pt;}
.yd8{bottom:421.314133pt;}
.y189{bottom:426.372800pt;}
.ybd{bottom:426.419467pt;}
.y1b5{bottom:426.425467pt;}
.y38{bottom:426.449600pt;}
.y114{bottom:426.453600pt;}
.y1e{bottom:426.687600pt;}
.y14e{bottom:426.693600pt;}
.y8e{bottom:427.380133pt;}
.yd7{bottom:437.312133pt;}
.y14d{bottom:439.493600pt;}
.y188{bottom:442.374800pt;}
.ybc{bottom:442.421467pt;}
.y1b4{bottom:442.427467pt;}
.y37{bottom:442.451600pt;}
.y113{bottom:442.455600pt;}
.y1d{bottom:442.689600pt;}
.y14c{bottom:452.293600pt;}
.y187{bottom:458.376800pt;}
.y1b3{bottom:458.429467pt;}
.y36{bottom:458.453600pt;}
.y112{bottom:458.457600pt;}
.y14b{bottom:465.093600pt;}
.yd6{bottom:469.312133pt;}
.y186{bottom:474.356800pt;}
.ybb{bottom:474.425467pt;}
.y1b2{bottom:474.431467pt;}
.y35{bottom:474.455600pt;}
.y111{bottom:474.459600pt;}
.y1c{bottom:474.693600pt;}
.y14a{bottom:477.893600pt;}
.yd5{bottom:482.912133pt;}
.y185{bottom:490.358800pt;}
.y8d{bottom:490.405467pt;}
.y1b1{bottom:490.433467pt;}
.y110{bottom:490.461600pt;}
.y6f{bottom:490.669600pt;}
.y149{bottom:490.693600pt;}
.yd4{bottom:496.512133pt;}
.y148{bottom:503.493600pt;}
.y184{bottom:506.360800pt;}
.y8c{bottom:506.407467pt;}
.y1b0{bottom:506.435467pt;}
.y10f{bottom:506.463600pt;}
.y6e{bottom:506.671600pt;}
.y147{bottom:516.293600pt;}
.y183{bottom:522.362800pt;}
.y8b{bottom:522.409467pt;}
.yba{bottom:522.431467pt;}
.y1af{bottom:522.437467pt;}
.y10e{bottom:522.465600pt;}
.y6d{bottom:522.673600pt;}
.y1b{bottom:524.572267pt;}
.y146{bottom:529.093600pt;}
.yd3{bottom:532.125067pt;}
.y182{bottom:538.364800pt;}
.y8a{bottom:538.411467pt;}
.yb9{bottom:538.433467pt;}
.y1ae{bottom:538.439467pt;}
.y10d{bottom:538.467600pt;}
.y6c{bottom:538.675600pt;}
.y145{bottom:541.893600pt;}
.y1a{bottom:542.932267pt;}
.yd2{bottom:551.797200pt;}
.y181{bottom:554.366800pt;}
.y1f8{bottom:554.397333pt;}
.y1da{bottom:554.411333pt;}
.y89{bottom:554.413467pt;}
.yb8{bottom:554.435467pt;}
.y1ad{bottom:554.441467pt;}
.y10c{bottom:554.465600pt;}
.y6b{bottom:554.677600pt;}
.y144{bottom:554.693600pt;}
.y19{bottom:557.332267pt;}
.y143{bottom:567.493600pt;}
.yd1{bottom:568.339867pt;}
.y180{bottom:570.368800pt;}
.y1f7{bottom:570.399333pt;}
.y1d9{bottom:570.413333pt;}
.y88{bottom:570.415467pt;}
.yb7{bottom:570.437467pt;}
.y1ac{bottom:570.443467pt;}
.y10b{bottom:570.467600pt;}
.y6a{bottom:570.679600pt;}
.y18{bottom:571.732267pt;}
.y142{bottom:580.293600pt;}
.yd0{bottom:584.337867pt;}
.y17{bottom:586.132267pt;}
.y17f{bottom:586.370800pt;}
.y1f6{bottom:586.401333pt;}
.y1d8{bottom:586.415333pt;}
.y87{bottom:586.417467pt;}
.yb6{bottom:586.439467pt;}
.y1ab{bottom:586.445467pt;}
.y10a{bottom:586.453600pt;}
.y69{bottom:586.681600pt;}
.y141{bottom:593.093600pt;}
.y17e{bottom:602.372800pt;}
.y1f5{bottom:602.403333pt;}
.y1d7{bottom:602.417333pt;}
.y86{bottom:602.419467pt;}
.yb5{bottom:602.441467pt;}
.y1aa{bottom:602.447467pt;}
.y109{bottom:602.455600pt;}
.y68{bottom:602.683600pt;}
.y140{bottom:605.893600pt;}
.y16{bottom:609.905600pt;}
.ycf{bottom:613.775867pt;}
.y17d{bottom:618.374800pt;}
.y1f4{bottom:618.405333pt;}
.y1d6{bottom:618.419333pt;}
.y85{bottom:618.421467pt;}
.yb4{bottom:618.443467pt;}
.y1a9{bottom:618.449467pt;}
.y108{bottom:618.457600pt;}
.y67{bottom:618.685600pt;}
.y13f{bottom:618.693600pt;}
.y15{bottom:624.305600pt;}
.yce{bottom:629.773867pt;}
.y13e{bottom:631.493600pt;}
.y17c{bottom:634.376800pt;}
.y1f3{bottom:634.407333pt;}
.y1d5{bottom:634.421333pt;}
.yb3{bottom:634.445467pt;}
.y1a8{bottom:634.451467pt;}
.y107{bottom:634.459600pt;}
.y66{bottom:634.687600pt;}
.y13d{bottom:644.293600pt;}
.y17b{bottom:650.374533pt;}
.y1f2{bottom:650.409333pt;}
.y1d4{bottom:650.423333pt;}
.y84{bottom:650.425467pt;}
.yb2{bottom:650.447467pt;}
.y1a7{bottom:650.453467pt;}
.y106{bottom:650.461600pt;}
.y65{bottom:650.689600pt;}
.y14{bottom:654.705600pt;}
.y13c{bottom:657.093600pt;}
.y17a{bottom:666.376533pt;}
.y1f1{bottom:666.411333pt;}
.y1d3{bottom:666.425333pt;}
.yf1{bottom:666.445467pt;}
.yb1{bottom:666.449467pt;}
.y1a6{bottom:666.455467pt;}
.y105{bottom:666.463600pt;}
.y64{bottom:666.691600pt;}
.y13b{bottom:669.893600pt;}
.y1f0{bottom:682.413333pt;}
.y1d2{bottom:682.427333pt;}
.yf0{bottom:682.447467pt;}
.yb0{bottom:682.451467pt;}
.y1a5{bottom:682.457467pt;}
.y104{bottom:682.465600pt;}
.y63{bottom:682.689600pt;}
.y13a{bottom:682.693600pt;}
.y179{bottom:683.512533pt;}
.y13{bottom:686.705600pt;}
.y139{bottom:695.493600pt;}
.y1ef{bottom:698.415333pt;}
.y1d1{bottom:698.429333pt;}
.y83{bottom:698.431467pt;}
.yef{bottom:698.449467pt;}
.yaf{bottom:698.453467pt;}
.y1a4{bottom:698.459467pt;}
.y103{bottom:698.467600pt;}
.y62{bottom:698.691600pt;}
.y12{bottom:702.705600pt;}
.y138{bottom:708.293600pt;}
.y1ee{bottom:714.417333pt;}
.y1d0{bottom:714.431333pt;}
.y82{bottom:714.433467pt;}
.yee{bottom:714.451467pt;}
.yae{bottom:714.455467pt;}
.y102{bottom:714.457600pt;}
.y1a3{bottom:714.461467pt;}
.y61{bottom:714.691600pt;}
.y11{bottom:718.705600pt;}
.y137{bottom:721.093600pt;}
.y1ed{bottom:730.419333pt;}
.y81{bottom:730.435467pt;}
.yed{bottom:730.453467pt;}
.yad{bottom:730.457467pt;}
.y101{bottom:730.459600pt;}
.y1a2{bottom:730.463467pt;}
.y60{bottom:730.657600pt;}
.y136{bottom:733.893600pt;}
.y10{bottom:734.705600pt;}
.y178{bottom:735.493600pt;}
.y1ec{bottom:746.421333pt;}
.y1cf{bottom:746.431467pt;}
.y80{bottom:746.437467pt;}
.yec{bottom:746.455467pt;}
.yac{bottom:746.459467pt;}
.y100{bottom:746.461600pt;}
.y1a1{bottom:746.465467pt;}
.y5f{bottom:746.659600pt;}
.y135{bottom:746.693600pt;}
.y177{bottom:749.893600pt;}
.yf{bottom:750.705600pt;}
.y134{bottom:759.493600pt;}
.y1ce{bottom:760.831467pt;}
.y1eb{bottom:762.423333pt;}
.y7f{bottom:762.439467pt;}
.yeb{bottom:762.457467pt;}
.yab{bottom:762.461467pt;}
.yff{bottom:762.463600pt;}
.y1a0{bottom:762.467467pt;}
.y5e{bottom:762.661600pt;}
.y176{bottom:764.293600pt;}
.ye{bottom:766.705600pt;}
.y133{bottom:772.293600pt;}
.y1ea{bottom:778.425333pt;}
.y7e{bottom:778.441467pt;}
.yea{bottom:778.459467pt;}
.yaa{bottom:778.463467pt;}
.yfe{bottom:778.465600pt;}
.y5d{bottom:778.663600pt;}
.y1cd{bottom:779.191467pt;}
.yd{bottom:782.705600pt;}
.y132{bottom:785.093600pt;}
.y1cc{bottom:793.591333pt;}
.y1e9{bottom:794.427333pt;}
.y7d{bottom:794.443467pt;}
.ye9{bottom:794.461467pt;}
.ya9{bottom:794.465467pt;}
.yfd{bottom:794.467600pt;}
.y5c{bottom:794.665600pt;}
.y175{bottom:794.685600pt;}
.y131{bottom:797.893600pt;}
.yc{bottom:798.705600pt;}
.y1cb{bottom:807.991333pt;}
.y1e8{bottom:810.429333pt;}
.y7c{bottom:810.445467pt;}
.ye8{bottom:810.463467pt;}
.ya8{bottom:810.467467pt;}
.y5b{bottom:810.667600pt;}
.y130{bottom:810.693600pt;}
.yb{bottom:814.705600pt;}
.y1ca{bottom:818.431333pt;}
.y12f{bottom:823.493600pt;}
.y1e7{bottom:826.431333pt;}
.y7b{bottom:826.447467pt;}
.ya7{bottom:826.465467pt;}
.y19f{bottom:826.467467pt;}
.y5a{bottom:826.669600pt;}
.y174{bottom:826.689600pt;}
.ya{bottom:830.705600pt;}
.y12e{bottom:836.293600pt;}
.y1c9{bottom:836.791333pt;}
.y1e6{bottom:842.433333pt;}
.y7a{bottom:842.449467pt;}
.ya6{bottom:842.467467pt;}
.y59{bottom:842.671600pt;}
.y173{bottom:842.691600pt;}
.y9{bottom:846.705600pt;}
.y12d{bottom:849.093600pt;}
.y1e5{bottom:858.435333pt;}
.yfc{bottom:858.449467pt;}
.y79{bottom:858.451467pt;}
.ya5{bottom:858.469467pt;}
.y58{bottom:858.673600pt;}
.y172{bottom:858.693600pt;}
.y12c{bottom:861.893600pt;}
.y8{bottom:862.705600pt;}
.y1c8{bottom:863.227467pt;}
.y1e4{bottom:874.437333pt;}
.yfb{bottom:874.451467pt;}
.y57{bottom:874.675600pt;}
.y12b{bottom:874.693600pt;}
.y7{bottom:878.705600pt;}
.y12a{bottom:887.493600pt;}
.y1e3{bottom:890.439333pt;}
.yfa{bottom:890.453467pt;}
.y78{bottom:890.455467pt;}
.y56{bottom:890.677600pt;}
.ycd{bottom:894.015600pt;}
.y6{bottom:894.705600pt;}
.y1c7{bottom:895.231467pt;}
.y129{bottom:900.293600pt;}
.y1e2{bottom:906.441333pt;}
.yf9{bottom:906.455467pt;}
.y77{bottom:906.457467pt;}
.y55{bottom:906.679600pt;}
.ycc{bottom:907.615600pt;}
.y5{bottom:910.705600pt;}
.y128{bottom:913.093600pt;}
.y171{bottom:917.631467pt;}
.ycb{bottom:921.215600pt;}
.y1e1{bottom:922.443333pt;}
.yf8{bottom:922.457467pt;}
.y76{bottom:922.459467pt;}
.y54{bottom:922.681600pt;}
.y127{bottom:925.893600pt;}
.y170{bottom:930.431467pt;}
.y1e0{bottom:938.445333pt;}
.yf7{bottom:938.459467pt;}
.y75{bottom:938.461467pt;}
.y53{bottom:938.683600pt;}
.y126{bottom:938.693600pt;}
.y16f{bottom:943.231467pt;}
.y4{bottom:947.493067pt;}
.yca{bottom:950.968800pt;}
.y125{bottom:951.493600pt;}
.y1df{bottom:954.447333pt;}
.yf6{bottom:954.461467pt;}
.y74{bottom:954.463467pt;}
.y52{bottom:954.685600pt;}
.y16e{bottom:956.031467pt;}
.y124{bottom:964.293600pt;}
.y16d{bottom:968.831467pt;}
.y1de{bottom:970.449333pt;}
.yf5{bottom:970.463467pt;}
.y73{bottom:970.465467pt;}
.y51{bottom:970.687600pt;}
.yc9{bottom:974.744133pt;}
.y123{bottom:977.093600pt;}
.y3{bottom:978.031600pt;}
.y16c{bottom:981.631467pt;}
.y1dd{bottom:986.451333pt;}
.yf4{bottom:986.465467pt;}
.y72{bottom:986.467467pt;}
.y50{bottom:986.689600pt;}
.y122{bottom:989.893600pt;}
.yc8{bottom:989.944133pt;}
.y16b{bottom:994.431467pt;}
.y71{bottom:1002.439600pt;}
.y1dc{bottom:1002.453333pt;}
.yf3{bottom:1002.467467pt;}
.y16a{bottom:1007.231467pt;}
.y70{bottom:1018.441600pt;}
.y1db{bottom:1018.455333pt;}
.yf2{bottom:1018.469467pt;}
.y121{bottom:1018.639600pt;}
.y4f{bottom:1018.693600pt;}
.yc7{bottom:1019.380267pt;}
.y169{bottom:1020.031467pt;}
.y1{bottom:1052.053067pt;}
.h27{height:19.488000pt;}
.h7{height:20.072640pt;}
.h2{height:30.293333pt;}
.h1f{height:30.762667pt;}
.h16{height:30.962667pt;}
.h13{height:32.784000pt;}
.h21{height:33.600000pt;}
.h12{height:34.605333pt;}
.h3{height:34.608000pt;}
.h1a{height:34.624000pt;}
.h15{height:34.854187pt;}
.h8{height:38.192000pt;}
.h9{height:38.248000pt;}
.h6{height:38.453333pt;}
.h20{height:39.200000pt;}
.hb{height:40.671840pt;}
.hc{height:40.679840pt;}
.h22{height:40.680907pt;}
.hd{height:40.687840pt;}
.h1c{height:40.688373pt;}
.ha{height:40.695840pt;}
.h1d{height:40.711840pt;}
.he{height:40.719840pt;}
.h1e{height:40.727840pt;}
.h25{height:40.735840pt;}
.h1b{height:40.743840pt;}
.h23{height:40.751840pt;}
.hf{height:40.759307pt;}
.h11{height:40.783307pt;}
.h10{height:40.807840pt;}
.h24{height:40.855840pt;}
.h17{height:40.887840pt;}
.h26{height:41.232533pt;}
.h5{height:47.104000pt;}
.h14{height:61.584000pt;}
.h19{height:66.626667pt;}
.h4{height:67.200000pt;}
.h18{height:95.405333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:75.590533pt;}
.x1b{left:78.944400pt;}
.x3e{left:79.861200pt;}
.x1c{left:81.944400pt;}
.x19{left:86.924400pt;}
.x1a{left:88.748400pt;}
.x47{left:93.197867pt;}
.x6{left:94.490400pt;}
.xa{left:96.311600pt;}
.x42{left:107.553467pt;}
.x1e{left:111.740400pt;}
.x1d{left:113.600400pt;}
.x9{left:120.843333pt;}
.xb{left:130.703600pt;}
.x43{left:132.991467pt;}
.x20{left:152.168400pt;}
.x4c{left:154.012800pt;}
.x1f{left:155.468400pt;}
.x48{left:160.761200pt;}
.xc{left:165.083600pt;}
.x44{left:166.892533pt;}
.x36{left:169.584933pt;}
.x37{left:172.384267pt;}
.x35{left:177.323733pt;}
.xd{left:179.483600pt;}
.x3f{left:186.463867pt;}
.x4b{left:194.792667pt;}
.x22{left:200.408400pt;}
.x18{left:201.644400pt;}
.x21{left:203.648400pt;}
.x3{left:208.574667pt;}
.xe{left:217.271733pt;}
.x1{left:236.218133pt;}
.x24{left:243.824400pt;}
.x41{left:245.012133pt;}
.x23{left:246.248400pt;}
.x38{left:248.979600pt;}
.x40{left:251.649467pt;}
.x46{left:268.795867pt;}
.x4{left:274.463867pt;}
.x45{left:275.420533pt;}
.x26{left:283.076400pt;}
.x25{left:286.076400pt;}
.xf{left:295.427733pt;}
.x10{left:298.079733pt;}
.x4a{left:308.780000pt;}
.x28{left:326.132400pt;}
.x27{left:328.916400pt;}
.x3a{left:331.211600pt;}
.x49{left:334.307200pt;}
.x39{left:337.848933pt;}
.x29{left:369.272400pt;}
.x11{left:380.231733pt;}
.x2{left:393.772533pt;}
.x7{left:406.293333pt;}
.x2a{left:411.596400pt;}
.x2b{left:414.596400pt;}
.x8{left:425.197067pt;}
.x2d{left:457.436400pt;}
.x2c{left:460.856400pt;}
.x13{left:467.711733pt;}
.x12{left:473.999733pt;}
.x2f{left:500.276400pt;}
.x2e{left:503.972400pt;}
.x31{left:543.104400pt;}
.x30{left:547.220400pt;}
.x3b{left:570.674933pt;}
.x33{left:585.956400pt;}
.x32{left:589.352400pt;}
.x34{left:636.836400pt;}
.x14{left:639.274267pt;}
.x3d{left:651.462933pt;}
.x15{left:653.674267pt;}
.x3c{left:662.533600pt;}
.x16{left:668.074267pt;}
.x17{left:702.562400pt;}
}




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