
    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_ed9e6764785ea96d4845f68b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_332120550dca3d400d309b6e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_8319e4bfce37c86f9292db0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_017f187554156290d5bf4f7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_b51e79edb67559bbac6e03e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191406;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_f123c22488fa557135d83808.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_4701577aa8fc1c3db2366146.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.362000;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.384000;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_f290c5bf6407dd78e13d482a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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);}
.v3{vertical-align:-21.000000px;}
.v5{vertical-align:-18.899963px;}
.v6{vertical-align:-17.849991px;}
.v7{vertical-align:-10.799927px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.799927px;}
.v4{vertical-align:18.707927px;}
.v2{vertical-align:21.000000px;}
.ls39{letter-spacing:-2.862000px;}
.ls6b{letter-spacing:-1.485000px;}
.ls54{letter-spacing:-1.296000px;}
.ls6f{letter-spacing:-1.125000px;}
.ls69{letter-spacing:-1.080000px;}
.ls5c{letter-spacing:-0.990000px;}
.ls2b{letter-spacing:-0.972000px;}
.ls2e{letter-spacing:-0.918000px;}
.ls74{letter-spacing:-0.900000px;}
.ls72{letter-spacing:-0.855000px;}
.ls31{letter-spacing:-0.810000px;}
.ls70{letter-spacing:-0.765000px;}
.ls2c{letter-spacing:-0.756000px;}
.ls6e{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.702000px;}
.ls2a{letter-spacing:-0.648000px;}
.ls71{letter-spacing:-0.630000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls56{letter-spacing:-0.495000px;}
.ls47{letter-spacing:-0.486000px;}
.ls21{letter-spacing:-0.432000px;}
.ls7e{letter-spacing:-0.405000px;}
.ls45{letter-spacing:-0.378000px;}
.ls5b{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.324000px;}
.ls55{letter-spacing:-0.315000px;}
.ls22{letter-spacing:-0.270000px;}
.ls46{letter-spacing:-0.245700px;}
.ls7f{letter-spacing:-0.225000px;}
.ls12{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.210600px;}
.ls5a{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.162000px;}
.ls13{letter-spacing:-0.140400px;}
.ls73{letter-spacing:-0.135000px;}
.ls14{letter-spacing:-0.108000px;}
.ls43{letter-spacing:-0.105300px;}
.ls7d{letter-spacing:-0.090000px;}
.ls16{letter-spacing:-0.054000px;}
.ls59{letter-spacing:-0.045000px;}
.ls17{letter-spacing:-0.035100px;}
.lsf{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000083px;}
.ls40{letter-spacing:0.000267px;}
.ls2{letter-spacing:0.013040px;}
.ls1{letter-spacing:0.013132px;}
.ls4{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013767px;}
.lse{letter-spacing:0.016140px;}
.ls5{letter-spacing:0.026783px;}
.ls3c{letter-spacing:0.035100px;}
.ls65{letter-spacing:0.045000px;}
.ls19{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.070200px;}
.ls8{letter-spacing:0.078348px;}
.ls52{letter-spacing:0.090000px;}
.ls2f{letter-spacing:0.091819px;}
.ls38{letter-spacing:0.105300px;}
.ls10{letter-spacing:0.108000px;}
.ls66{letter-spacing:0.112500px;}
.ls50{letter-spacing:0.135000px;}
.ls3d{letter-spacing:0.140400px;}
.ls48{letter-spacing:0.151200px;}
.ls9{letter-spacing:0.157950px;}
.lsc{letter-spacing:0.162000px;}
.ls27{letter-spacing:0.172844px;}
.ls15{letter-spacing:0.175500px;}
.ls4f{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.202500px;}
.ls33{letter-spacing:0.210600px;}
.ls6{letter-spacing:0.216000px;}
.ls4b{letter-spacing:0.225000px;}
.ls28{letter-spacing:0.243000px;}
.ls36{letter-spacing:0.245700px;}
.ls49{letter-spacing:0.264000px;}
.ls11{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.280800px;}
.ls26{letter-spacing:0.282432px;}
.ls76{letter-spacing:0.292500px;}
.ls79{letter-spacing:0.315000px;}
.ls1f{letter-spacing:0.315900px;}
.ls1a{letter-spacing:0.324000px;}
.ls35{letter-spacing:0.351000px;}
.ls53{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.368550px;}
.ls37{letter-spacing:0.378000px;}
.ls3a{letter-spacing:0.386100px;}
.ls51{letter-spacing:0.405000px;}
.ls42{letter-spacing:0.421200px;}
.ls25{letter-spacing:0.432000px;}
.ls61{letter-spacing:0.450000px;}
.ls3e{letter-spacing:0.456300px;}
.ls1e{letter-spacing:0.486000px;}
.ls30{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.561600px;}
.ls3b{letter-spacing:0.594000px;}
.lsb{letter-spacing:0.596700px;}
.ls57{letter-spacing:0.630000px;}
.ls41{letter-spacing:0.648000px;}
.ls7b{letter-spacing:0.675000px;}
.ls7c{letter-spacing:0.697500px;}
.ls44{letter-spacing:0.702000px;}
.ls6c{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.756000px;}
.ls6d{letter-spacing:0.765000px;}
.ls24{letter-spacing:0.810000px;}
.ls5e{letter-spacing:0.855000px;}
.lsa{letter-spacing:0.864000px;}
.ls5f{letter-spacing:0.877500px;}
.ls6a{letter-spacing:0.900000px;}
.ls63{letter-spacing:0.913438px;}
.ls23{letter-spacing:0.918000px;}
.ls58{letter-spacing:0.945000px;}
.ls4d{letter-spacing:0.990000px;}
.ls4e{letter-spacing:1.034916px;}
.ls60{letter-spacing:1.035000px;}
.ls75{letter-spacing:1.161000px;}
.ls77{letter-spacing:1.305000px;}
.ls68{letter-spacing:1.386049px;}
.ls67{letter-spacing:1.395000px;}
.ls62{letter-spacing:1.714417px;}
.ls78{letter-spacing:1.908000px;}
.ls7a{letter-spacing:2.533450px;}
.ls64{letter-spacing:2.880000px;}
.ls0{letter-spacing:3.000000px;}
.ls5d{letter-spacing:3.640500px;}
.ls4c{letter-spacing:4.275000px;}
.lsd{letter-spacing:14.818050px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.wsa7{word-spacing:-13.860000px;}
.ws1f{word-spacing:-13.596000px;}
.ws12{word-spacing:-13.122000px;}
.ws27{word-spacing:-12.744000px;}
.ws75{word-spacing:-12.582000px;}
.ws21{word-spacing:-12.528000px;}
.ws52{word-spacing:-12.501000px;}
.ws6f{word-spacing:-12.474000px;}
.ws73{word-spacing:-12.420000px;}
.wsa6{word-spacing:-12.366000px;}
.ws61{word-spacing:-12.360000px;}
.ws53{word-spacing:-12.312000px;}
.ws20{word-spacing:-12.258000px;}
.ws15{word-spacing:-12.204000px;}
.ws63{word-spacing:-12.150000px;}
.ws81{word-spacing:-12.096000px;}
.ws24{word-spacing:-11.934000px;}
.wsa5{word-spacing:-11.772000px;}
.ws4f{word-spacing:-11.718000px;}
.ws5c{word-spacing:-11.448000px;}
.wscf{word-spacing:-10.755000px;}
.wsaf{word-spacing:-10.710000px;}
.wsd3{word-spacing:-10.530000px;}
.wsaa{word-spacing:-10.440000px;}
.wsac{word-spacing:-10.417500px;}
.wse3{word-spacing:-10.395000px;}
.wsab{word-spacing:-10.260000px;}
.wse4{word-spacing:-10.125000px;}
.wsa8{word-spacing:-9.990000px;}
.wsad{word-spacing:-9.945000px;}
.wsae{word-spacing:-9.855000px;}
.wsa9{word-spacing:-9.810000px;}
.ws0{word-spacing:-9.600000px;}
.wsd6{word-spacing:-9.540000px;}
.wsd2{word-spacing:-9.450000px;}
.wsd5{word-spacing:-9.405000px;}
.ws71{word-spacing:-9.396000px;}
.wsd4{word-spacing:-9.315000px;}
.wsce{word-spacing:-9.225000px;}
.wsd1{word-spacing:-9.180000px;}
.wsd0{word-spacing:-8.820000px;}
.ws7{word-spacing:-8.529300px;}
.ws7c{word-spacing:-8.424000px;}
.ws79{word-spacing:-8.388900px;}
.ws65{word-spacing:-8.353800px;}
.ws1e{word-spacing:-8.283600px;}
.ws69{word-spacing:-8.248500px;}
.ws62{word-spacing:-8.213400px;}
.ws67{word-spacing:-8.178300px;}
.ws5{word-spacing:-8.143200px;}
.ws68{word-spacing:-8.108100px;}
.ws64{word-spacing:-8.073000px;}
.ws7a{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws66{word-spacing:-8.002800px;}
.ws3{word-spacing:-7.967700px;}
.ws6{word-spacing:-7.932600px;}
.ws7b{word-spacing:-7.862400px;}
.ws4{word-spacing:-7.827300px;}
.ws1d{word-spacing:-7.757100px;}
.ws7d{word-spacing:-7.722000px;}
.ws8{word-spacing:-6.630000px;}
.wsc7{word-spacing:-6.210000px;}
.wsdf{word-spacing:-6.165000px;}
.wse5{word-spacing:-6.120000px;}
.wse6{word-spacing:-6.075000px;}
.wsca{word-spacing:-6.030000px;}
.wsc8{word-spacing:-5.940000px;}
.wsc9{word-spacing:-5.895000px;}
.wse1{word-spacing:-5.850000px;}
.wsc6{word-spacing:-5.805000px;}
.wsee{word-spacing:-5.715000px;}
.wsda{word-spacing:-5.625000px;}
.wsed{word-spacing:-5.580000px;}
.wsdd{word-spacing:-5.535000px;}
.ws5b{word-spacing:-5.508000px;}
.ws8d{word-spacing:-3.456000px;}
.ws9f{word-spacing:-2.700000px;}
.wsb2{word-spacing:-2.430000px;}
.ws34{word-spacing:-2.322000px;}
.ws99{word-spacing:-2.160000px;}
.ws6a{word-spacing:-1.944000px;}
.ws38{word-spacing:-1.890000px;}
.wsb3{word-spacing:-1.836000px;}
.ws3c{word-spacing:-1.728000px;}
.wsa2{word-spacing:-1.566000px;}
.wsa3{word-spacing:-1.512000px;}
.ws6c{word-spacing:-1.458000px;}
.ws92{word-spacing:-1.350000px;}
.ws6b{word-spacing:-1.296000px;}
.wsc{word-spacing:-1.242000px;}
.wse{word-spacing:-1.188000px;}
.wsd{word-spacing:-1.134000px;}
.ws8f{word-spacing:-1.080000px;}
.wsb6{word-spacing:-1.035000px;}
.ws23{word-spacing:-1.026000px;}
.wsc5{word-spacing:-0.990000px;}
.wsb4{word-spacing:-0.972000px;}
.wsbc{word-spacing:-0.945000px;}
.ws77{word-spacing:-0.918000px;}
.ws2e{word-spacing:-0.864000px;}
.wse7{word-spacing:-0.855000px;}
.ws74{word-spacing:-0.810000px;}
.wsd7{word-spacing:-0.765000px;}
.ws49{word-spacing:-0.756000px;}
.wsdb{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.648000px;}
.wsb7{word-spacing:-0.585000px;}
.ws13{word-spacing:-0.561600px;}
.wsb{word-spacing:-0.540000px;}
.ws3f{word-spacing:-0.486000px;}
.ws83{word-spacing:-0.456300px;}
.wsb5{word-spacing:-0.450000px;}
.ws59{word-spacing:-0.432000px;}
.wsdc{word-spacing:-0.405000px;}
.ws72{word-spacing:-0.386100px;}
.ws33{word-spacing:-0.378000px;}
.wsbf{word-spacing:-0.360000px;}
.ws60{word-spacing:-0.324000px;}
.ws28{word-spacing:-0.315900px;}
.wsc3{word-spacing:-0.315000px;}
.ws36{word-spacing:-0.270000px;}
.wsf0{word-spacing:-0.264000px;}
.ws70{word-spacing:-0.245700px;}
.wsc0{word-spacing:-0.225000px;}
.wsa{word-spacing:-0.216000px;}
.ws76{word-spacing:-0.210600px;}
.wsb8{word-spacing:-0.180000px;}
.ws82{word-spacing:-0.162000px;}
.wsc2{word-spacing:-0.135000px;}
.ws2a{word-spacing:-0.108000px;}
.wsb9{word-spacing:-0.090000px;}
.ws84{word-spacing:-0.070200px;}
.ws30{word-spacing:-0.054000px;}
.wsc4{word-spacing:-0.045000px;}
.ws9{word-spacing:0.000000px;}
.ws16{word-spacing:0.035100px;}
.wsc1{word-spacing:0.045000px;}
.ws97{word-spacing:0.054000px;}
.wsde{word-spacing:0.090000px;}
.ws5d{word-spacing:0.108000px;}
.ws43{word-spacing:0.162000px;}
.wse0{word-spacing:0.180000px;}
.ws25{word-spacing:0.210600px;}
.ws5e{word-spacing:0.216000px;}
.ws51{word-spacing:0.270000px;}
.ws5f{word-spacing:0.324000px;}
.ws7f{word-spacing:0.378000px;}
.ws80{word-spacing:0.432000px;}
.ws11{word-spacing:0.486000px;}
.wsbd{word-spacing:0.495000px;}
.ws89{word-spacing:0.540000px;}
.ws6d{word-spacing:0.594000px;}
.ws47{word-spacing:0.648000px;}
.ws2f{word-spacing:0.702000px;}
.ws2b{word-spacing:0.756000px;}
.wscd{word-spacing:0.765000px;}
.ws2c{word-spacing:0.810000px;}
.ws41{word-spacing:0.864000px;}
.wse2{word-spacing:0.900000px;}
.wsf{word-spacing:0.918000px;}
.ws78{word-spacing:0.972000px;}
.wscb{word-spacing:0.990000px;}
.ws4e{word-spacing:1.026000px;}
.wsbe{word-spacing:1.035000px;}
.ws26{word-spacing:1.080000px;}
.wse8{word-spacing:1.125000px;}
.ws46{word-spacing:1.134000px;}
.ws29{word-spacing:1.188000px;}
.ws22{word-spacing:1.242000px;}
.wsea{word-spacing:1.260000px;}
.ws48{word-spacing:1.296000px;}
.ws7e{word-spacing:1.350000px;}
.wsef{word-spacing:1.404000px;}
.wscc{word-spacing:1.440000px;}
.ws88{word-spacing:1.458000px;}
.ws2d{word-spacing:1.512000px;}
.ws90{word-spacing:1.566000px;}
.ws40{word-spacing:1.620000px;}
.ws3b{word-spacing:1.674000px;}
.ws44{word-spacing:1.728000px;}
.wse9{word-spacing:1.755000px;}
.wsa1{word-spacing:1.782000px;}
.wseb{word-spacing:1.935000px;}
.ws55{word-spacing:1.944000px;}
.wsec{word-spacing:1.980000px;}
.ws56{word-spacing:1.998000px;}
.wsa4{word-spacing:2.052000px;}
.ws4a{word-spacing:2.106000px;}
.ws45{word-spacing:2.160000px;}
.ws6e{word-spacing:2.214000px;}
.ws5a{word-spacing:2.268000px;}
.ws32{word-spacing:2.376000px;}
.ws1a{word-spacing:2.397000px;}
.ws4d{word-spacing:2.430000px;}
.wsb0{word-spacing:2.538000px;}
.ws14{word-spacing:2.592000px;}
.ws58{word-spacing:2.646000px;}
.ws57{word-spacing:2.700000px;}
.ws8c{word-spacing:2.808000px;}
.wsd8{word-spacing:2.835000px;}
.ws35{word-spacing:2.862000px;}
.wsd9{word-spacing:2.880000px;}
.ws98{word-spacing:2.970000px;}
.wsf3{word-spacing:3.024000px;}
.wsa0{word-spacing:3.078000px;}
.wsf4{word-spacing:3.132000px;}
.ws4c{word-spacing:3.240000px;}
.wsba{word-spacing:3.285000px;}
.ws31{word-spacing:3.294000px;}
.ws94{word-spacing:3.348000px;}
.ws54{word-spacing:3.618000px;}
.wsbb{word-spacing:3.690000px;}
.ws91{word-spacing:3.726000px;}
.ws4b{word-spacing:3.900000px;}
.ws8e{word-spacing:3.996000px;}
.ws3e{word-spacing:4.050000px;}
.ws96{word-spacing:4.104000px;}
.ws8a{word-spacing:4.158000px;}
.ws1b{word-spacing:4.233000px;}
.ws9c{word-spacing:4.374000px;}
.ws8b{word-spacing:4.482000px;}
.ws37{word-spacing:4.536000px;}
.ws9b{word-spacing:4.590000px;}
.ws3d{word-spacing:4.644000px;}
.ws3a{word-spacing:5.022000px;}
.ws9e{word-spacing:5.184000px;}
.wsf6{word-spacing:5.670000px;}
.ws93{word-spacing:5.940000px;}
.ws87{word-spacing:6.156000px;}
.ws9a{word-spacing:6.210000px;}
.wsf7{word-spacing:6.264000px;}
.wsb1{word-spacing:6.372000px;}
.ws86{word-spacing:6.480000px;}
.ws95{word-spacing:6.588000px;}
.ws39{word-spacing:6.642000px;}
.wsf5{word-spacing:6.750000px;}
.ws19{word-spacing:7.089000px;}
.ws42{word-spacing:11.286000px;}
.wsf1{word-spacing:11.826000px;}
.wsf2{word-spacing:12.366000px;}
.ws9d{word-spacing:12.528000px;}
.ws17{word-spacing:13.107000px;}
.ws1c{word-spacing:13.770000px;}
.ws50{word-spacing:15.282000px;}
.ws85{word-spacing:17.496000px;}
.ws18{word-spacing:26.418000px;}
._1a{margin-left:-20.952007px;}
._1b{margin-left:-15.133200px;}
._8{margin-left:-14.072401px;}
._14{margin-left:-12.932417px;}
._6{margin-left:-10.902693px;}
._19{margin-left:-9.711414px;}
._17{margin-left:-8.401813px;}
._5{margin-left:-7.268400px;}
._7{margin-left:-6.080400px;}
._2{margin-left:-4.610986px;}
._4{margin-left:-3.292800px;}
._0{margin-left:-1.876800px;}
._3{width:1.333800px;}
._e{width:2.888853px;}
._15{width:3.938695px;}
._f{width:5.128047px;}
._18{width:6.532200px;}
._d{width:7.777500px;}
._c{width:9.027000px;}
._20{width:10.553400px;}
._11{width:11.566800px;}
._1d{width:12.600000px;}
._10{width:13.749600px;}
._9{width:15.390000px;}
._1e{width:17.055000px;}
._1f{width:18.720000px;}
._13{width:20.542800px;}
._12{width:22.771500px;}
._a{width:26.146314px;}
._b{width:27.657299px;}
._1c{width:41.449559px;}
._16{width:48.157433px;}
._1{width:342.916800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.199200px;}
.y34{bottom:3.199350px;}
.y9f{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y33{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y85{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.ya8{bottom:67.992148px;}
.y32{bottom:68.037452px;}
.y94{bottom:68.122652px;}
.y209{bottom:69.915784px;}
.y180{bottom:74.007148px;}
.y76{bottom:74.050052px;}
.y101{bottom:78.644248px;}
.y208{bottom:82.662034px;}
.ya7{bottom:82.990648px;}
.y31{bottom:83.037452px;}
.y93{bottom:83.121152px;}
.y17f{bottom:89.005648px;}
.y75{bottom:89.048552px;}
.yb4{bottom:89.075995px;}
.y1b8{bottom:89.133898px;}
.y83{bottom:91.361850px;}
.y142{bottom:91.986148px;}
.y100{bottom:93.642748px;}
.y207{bottom:95.408284px;}
.ya6{bottom:97.989148px;}
.y30{bottom:98.037452px;}
.y92{bottom:98.121152px;}
.y1b7{bottom:101.880148px;}
.y17e{bottom:104.004148px;}
.y74{bottom:104.047052px;}
.yb3{bottom:104.074495px;}
.y82{bottom:106.360350px;}
.y141{bottom:106.984648px;}
.y206{bottom:108.154534px;}
.yff{bottom:108.641248px;}
.ya5{bottom:112.987648px;}
.y2f{bottom:113.037452px;}
.y91{bottom:113.134652px;}
.y1b6{bottom:114.626398px;}
.y17d{bottom:119.002648px;}
.y73{bottom:119.045552px;}
.yb2{bottom:119.072995px;}
.y219{bottom:120.636761px;}
.y205{bottom:120.900784px;}
.y81{bottom:121.358850px;}
.y140{bottom:121.983148px;}
.yfe{bottom:123.641248px;}
.y1b5{bottom:127.372648px;}
.ya4{bottom:127.986148px;}
.y2e{bottom:128.037452px;}
.y90{bottom:128.133152px;}
.y204{bottom:133.647034px;}
.y17c{bottom:134.001148px;}
.y72{bottom:134.044052px;}
.yb1{bottom:134.072995px;}
.y218{bottom:135.635261px;}
.y80{bottom:136.357350px;}
.y13f{bottom:136.981648px;}
.yfd{bottom:138.647248px;}
.y1b4{bottom:140.118898px;}
.ya3{bottom:142.984648px;}
.y2d{bottom:143.037452px;}
.y8f{bottom:143.131652px;}
.y203{bottom:146.393284px;}
.y17b{bottom:148.999648px;}
.y71{bottom:149.044052px;}
.yb0{bottom:149.071495px;}
.y217{bottom:150.633761px;}
.y7f{bottom:151.355850px;}
.y13e{bottom:151.981648px;}
.y1b3{bottom:152.865148px;}
.yfc{bottom:153.645748px;}
.ya2{bottom:157.983148px;}
.y2c{bottom:158.037452px;}
.y8e{bottom:158.130152px;}
.y202{bottom:159.139534px;}
.y17a{bottom:163.998148px;}
.y1b2{bottom:165.611398px;}
.y216{bottom:165.632261px;}
.y13d{bottom:167.001148px;}
.yfb{bottom:168.644248px;}
.y201{bottom:171.885784px;}
.ya1{bottom:172.981648px;}
.y2b{bottom:173.037452px;}
.y8d{bottom:173.128652px;}
.y1b1{bottom:178.357648px;}
.y179{bottom:178.996648px;}
.y215{bottom:180.630761px;}
.y13c{bottom:181.999648px;}
.y70{bottom:182.065052px;}
.yfa{bottom:183.642748px;}
.y200{bottom:184.632034px;}
.ya0{bottom:187.980148px;}
.y8c{bottom:188.127152px;}
.y1b0{bottom:191.103898px;}
.y2a{bottom:192.493950px;}
.y178{bottom:193.995148px;}
.y214{bottom:195.629261px;}
.y13b{bottom:196.998148px;}
.y6f{bottom:197.063552px;}
.y1ff{bottom:197.378284px;}
.yf9{bottom:198.641248px;}
.y8b{bottom:203.125652px;}
.y1af{bottom:203.850148px;}
.ybe{bottom:204.276160px;}
.y177{bottom:208.993648px;}
.y1fe{bottom:210.124534px;}
.y213{bottom:210.627761px;}
.y6e{bottom:212.062052px;}
.yf8{bottom:213.651748px;}
.y1ae{bottom:216.596398px;}
.y8a{bottom:218.124152px;}
.ybd{bottom:219.274660px;}
.y1fd{bottom:222.870784px;}
.y176{bottom:223.992148px;}
.y212{bottom:225.626261px;}
.y6d{bottom:227.060552px;}
.yf7{bottom:228.650248px;}
.y1ad{bottom:229.342648px;}
.y13a{bottom:229.992148px;}
.yaf{bottom:231.280660px;}
.y89{bottom:233.122652px;}
.ybc{bottom:234.273160px;}
.y1fc{bottom:235.617034px;}
.y175{bottom:238.990648px;}
.y211{bottom:240.624761px;}
.y28{bottom:241.572305px;}
.y6c{bottom:242.059052px;}
.y1ac{bottom:242.088898px;}
.yf6{bottom:243.648748px;}
.y139{bottom:244.990648px;}
.yae{bottom:246.279160px;}
.y88{bottom:248.121152px;}
.y1fb{bottom:248.363284px;}
.ybb{bottom:249.280660px;}
.y174{bottom:253.989148px;}
.y1ab{bottom:254.835148px;}
.y210{bottom:255.623261px;}
.y27{bottom:256.570805px;}
.y6b{bottom:257.057552px;}
.yf5{bottom:258.647248px;}
.y138{bottom:259.989148px;}
.y1fa{bottom:261.109534px;}
.yad{bottom:261.277660px;}
.y87{bottom:263.119652px;}
.yba{bottom:264.279160px;}
.y1aa{bottom:267.581398px;}
.y173{bottom:268.987648px;}
.y20f{bottom:270.621761px;}
.y26{bottom:271.573805px;}
.y6a{bottom:272.056052px;}
.yf4{bottom:273.645748px;}
.y1f9{bottom:273.855784px;}
.y137{bottom:274.987648px;}
.yac{bottom:276.276160px;}
.yb9{bottom:279.277660px;}
.y1a9{bottom:280.327648px;}
.y172{bottom:283.986148px;}
.y20e{bottom:285.620261px;}
.y25{bottom:286.572305px;}
.y1f8{bottom:286.602034px;}
.y69{bottom:287.054552px;}
.yf3{bottom:288.644248px;}
.y136{bottom:289.986148px;}
.yab{bottom:291.274660px;}
.y1a8{bottom:293.073898px;}
.yb8{bottom:294.276160px;}
.y171{bottom:298.984648px;}
.y1f7{bottom:299.348284px;}
.y20d{bottom:300.618761px;}
.y24{bottom:301.570805px;}
.y68{bottom:302.053052px;}
.yf2{bottom:303.642748px;}
.y135{bottom:304.984648px;}
.y1a7{bottom:305.820148px;}
.yaa{bottom:306.273160px;}
.yb7{bottom:309.274660px;}
.y1f6{bottom:312.094534px;}
.y170{bottom:313.983148px;}
.y20c{bottom:315.617261px;}
.y23{bottom:316.570805px;}
.y67{bottom:317.051552px;}
.y1a6{bottom:318.566398px;}
.yf1{bottom:318.641248px;}
.y9e{bottom:319.665157px;}
.y134{bottom:319.983148px;}
.ya9{bottom:321.271660px;}
.yb6{bottom:324.273160px;}
.y1f5{bottom:324.840784px;}
.y16f{bottom:328.981648px;}
.y20b{bottom:330.615761px;}
.y1a5{bottom:331.312648px;}
.y22{bottom:331.573805px;}
.y66{bottom:332.050052px;}
.yf0{bottom:333.641248px;}
.y9d{bottom:334.663657px;}
.y133{bottom:334.981648px;}
.y1f4{bottom:337.587034px;}
.yb5{bottom:339.271660px;}
.y16e{bottom:343.980148px;}
.y1a4{bottom:344.058898px;}
.y20a{bottom:345.615761px;}
.y21{bottom:346.572305px;}
.y65{bottom:347.048552px;}
.yef{bottom:348.641248px;}
.y9c{bottom:349.662157px;}
.y132{bottom:349.981648px;}
.y1f3{bottom:350.333284px;}
.y1a3{bottom:356.805148px;}
.y20{bottom:361.570805px;}
.y64{bottom:362.047052px;}
.y1f2{bottom:363.079534px;}
.yee{bottom:363.642771px;}
.y9b{bottom:364.660657px;}
.y131{bottom:364.983148px;}
.y1a2{bottom:369.551398px;}
.y1f1{bottom:375.825784px;}
.y1f{bottom:376.572305px;}
.y16d{bottom:376.998148px;}
.y63{bottom:377.045552px;}
.yed{bottom:378.641271px;}
.y9a{bottom:379.659157px;}
.y130{bottom:379.981648px;}
.y1a1{bottom:382.297648px;}
.y1f0{bottom:388.572034px;}
.y1e{bottom:391.570805px;}
.y16c{bottom:391.996648px;}
.y62{bottom:392.044052px;}
.yec{bottom:393.641271px;}
.y99{bottom:394.657657px;}
.y12f{bottom:394.981648px;}
.y1a0{bottom:395.043898px;}
.y1ef{bottom:401.318284px;}
.y1d{bottom:406.572305px;}
.y16b{bottom:406.995148px;}
.y61{bottom:407.044052px;}
.y19f{bottom:407.790148px;}
.yeb{bottom:408.641271px;}
.y98{bottom:409.656157px;}
.y12e{bottom:409.980148px;}
.y1ee{bottom:414.064534px;}
.y19e{bottom:420.536398px;}
.y1c{bottom:421.570805px;}
.y16a{bottom:421.993648px;}
.yea{bottom:423.642771px;}
.y97{bottom:424.654657px;}
.y12d{bottom:424.980148px;}
.y1ed{bottom:426.810784px;}
.y19d{bottom:433.282648px;}
.y1b{bottom:436.617315px;}
.y169{bottom:436.992148px;}
.ye9{bottom:438.641271px;}
.y1ec{bottom:439.557034px;}
.y96{bottom:439.653157px;}
.y60{bottom:440.071052px;}
.y19c{bottom:446.028898px;}
.y168{bottom:451.990648px;}
.y1eb{bottom:452.303284px;}
.ye8{bottom:453.641271px;}
.y95{bottom:454.651657px;}
.y5f{bottom:455.069552px;}
.y12c{bottom:457.983148px;}
.y19b{bottom:458.775148px;}
.y1ea{bottom:465.049534px;}
.y167{bottom:466.989148px;}
.ye7{bottom:468.648771px;}
.y5e{bottom:470.068052px;}
.y19a{bottom:471.521398px;}
.y12b{bottom:472.981648px;}
.y1e9{bottom:477.795784px;}
.y1a{bottom:481.761315px;}
.y166{bottom:481.987648px;}
.ye6{bottom:483.647271px;}
.y199{bottom:484.267648px;}
.y5d{bottom:485.066552px;}
.y12a{bottom:487.984648px;}
.y1e8{bottom:490.542034px;}
.y165{bottom:496.986148px;}
.y198{bottom:497.013898px;}
.y19{bottom:498.258315px;}
.ye5{bottom:498.645771px;}
.y5c{bottom:500.065052px;}
.y129{bottom:502.983148px;}
.y1e7{bottom:503.288284px;}
.y197{bottom:509.760148px;}
.y164{bottom:511.984648px;}
.ye4{bottom:513.644271px;}
.y18{bottom:514.755315px;}
.y5b{bottom:515.063552px;}
.y1e6{bottom:516.034534px;}
.y128{bottom:517.981648px;}
.y196{bottom:522.506398px;}
.y163{bottom:526.983148px;}
.ye3{bottom:528.642771px;}
.y1e5{bottom:528.780784px;}
.y5a{bottom:530.062052px;}
.y17{bottom:531.252315px;}
.y127{bottom:532.983148px;}
.y195{bottom:535.252648px;}
.y1e4{bottom:541.527034px;}
.y162{bottom:541.981648px;}
.ye2{bottom:543.641271px;}
.y59{bottom:545.060552px;}
.y16{bottom:547.749315px;}
.y126{bottom:547.981648px;}
.y194{bottom:547.998898px;}
.y1e3{bottom:554.273284px;}
.y161{bottom:556.981648px;}
.ye1{bottom:558.648771px;}
.y58{bottom:560.059052px;}
.y193{bottom:560.745148px;}
.y125{bottom:562.986148px;}
.y15{bottom:564.246315px;}
.y7e{bottom:566.440641px;}
.y1e2{bottom:567.019534px;}
.y160{bottom:571.980148px;}
.y192{bottom:573.491398px;}
.ye0{bottom:573.647271px;}
.y57{bottom:575.057552px;}
.y124{bottom:577.984648px;}
.y1e1{bottom:579.765784px;}
.y14{bottom:580.743315px;}
.y7d{bottom:581.439141px;}
.y191{bottom:586.237648px;}
.ydf{bottom:588.645771px;}
.y56{bottom:590.056052px;}
.y1e0{bottom:592.512034px;}
.y123{bottom:592.983148px;}
.y7c{bottom:596.437641px;}
.y13{bottom:597.240315px;}
.y190{bottom:598.983898px;}
.yde{bottom:603.644271px;}
.y15f{bottom:604.999694px;}
.y55{bottom:605.054552px;}
.y1df{bottom:605.258284px;}
.y122{bottom:607.981648px;}
.y7b{bottom:611.436141px;}
.y18f{bottom:611.730148px;}
.y12{bottom:613.737315px;}
.y1de{bottom:618.004534px;}
.ydd{bottom:618.642771px;}
.y15e{bottom:619.998194px;}
.y54{bottom:620.053052px;}
.y121{bottom:622.983148px;}
.y18e{bottom:624.480148px;}
.y7a{bottom:626.434641px;}
.y11{bottom:630.234315px;}
.y1dd{bottom:630.750784px;}
.ydc{bottom:633.641271px;}
.y15d{bottom:634.996694px;}
.y53{bottom:635.051552px;}
.y120{bottom:637.981648px;}
.y79{bottom:641.433141px;}
.y1dc{bottom:643.497034px;}
.y10{bottom:646.731315px;}
.ydb{bottom:648.648771px;}
.y15c{bottom:649.995194px;}
.y52{bottom:650.050052px;}
.y11f{bottom:652.981648px;}
.y1db{bottom:656.243284px;}
.y78{bottom:656.431641px;}
.yf{bottom:663.228315px;}
.yda{bottom:663.647271px;}
.y231{bottom:664.070661px;}
.y15b{bottom:664.993694px;}
.y51{bottom:665.048552px;}
.y11e{bottom:667.981648px;}
.y1da{bottom:668.989534px;}
.y18d{bottom:673.980148px;}
.yd9{bottom:678.645771px;}
.ye{bottom:679.725315px;}
.y15a{bottom:679.992194px;}
.y50{bottom:680.047052px;}
.y1d9{bottom:681.735784px;}
.y11d{bottom:682.981648px;}
.yd8{bottom:693.644271px;}
.y230{bottom:694.067659px;}
.y1d8{bottom:694.482034px;}
.y159{bottom:694.990694px;}
.y4f{bottom:695.045552px;}
.yd{bottom:696.222315px;}
.y11c{bottom:697.983148px;}
.y1d7{bottom:707.228284px;}
.yd7{bottom:708.642771px;}
.y22f{bottom:709.066159px;}
.y158{bottom:709.989194px;}
.y4e{bottom:710.044052px;}
.yc{bottom:712.719315px;}
.y11b{bottom:712.981648px;}
.y1d6{bottom:719.974534px;}
.yd6{bottom:723.641271px;}
.y22e{bottom:724.064659px;}
.y157{bottom:724.987694px;}
.y4d{bottom:725.044052px;}
.y11a{bottom:727.984694px;}
.y1d5{bottom:732.720784px;}
.y18c{bottom:736.983148px;}
.yd5{bottom:738.644271px;}
.y22d{bottom:739.063159px;}
.y156{bottom:739.986194px;}
.yb{bottom:742.719315px;}
.y119{bottom:742.983194px;}
.y1d4{bottom:745.467034px;}
.y18b{bottom:751.981648px;}
.yd4{bottom:753.642771px;}
.y22c{bottom:754.061659px;}
.y155{bottom:754.984694px;}
.y118{bottom:757.981694px;}
.y4c{bottom:758.060506px;}
.y1d3{bottom:758.213284px;}
.ya{bottom:760.719269px;}
.y18a{bottom:766.980148px;}
.yd3{bottom:768.641271px;}
.y22b{bottom:769.060159px;}
.y154{bottom:769.983194px;}
.y1d2{bottom:770.959534px;}
.y117{bottom:772.983194px;}
.y4b{bottom:773.059006px;}
.y9{bottom:778.719269px;}
.yd2{bottom:783.647271px;}
.y1d1{bottom:783.705784px;}
.y22a{bottom:784.058659px;}
.y153{bottom:784.981694px;}
.y116{bottom:787.981694px;}
.y4a{bottom:788.057506px;}
.y1d0{bottom:796.452034px;}
.yd1{bottom:798.645771px;}
.y229{bottom:799.057159px;}
.y152{bottom:799.984694px;}
.y189{bottom:799.992194px;}
.y115{bottom:802.983194px;}
.y49{bottom:803.056006px;}
.y1cf{bottom:809.198284px;}
.y8{bottom:811.701269px;}
.yd0{bottom:813.644271px;}
.y151{bottom:814.983194px;}
.y188{bottom:814.990694px;}
.y114{bottom:817.981694px;}
.y48{bottom:818.054506px;}
.y228{bottom:821.546659px;}
.y1ce{bottom:821.944534px;}
.ycf{bottom:828.642771px;}
.y150{bottom:829.981694px;}
.y187{bottom:829.989194px;}
.y113{bottom:832.983194px;}
.y47{bottom:833.053006px;}
.y1cd{bottom:834.690784px;}
.y227{bottom:836.545159px;}
.yce{bottom:843.641271px;}
.y14f{bottom:844.980194px;}
.y186{bottom:844.987694px;}
.y1cc{bottom:847.437034px;}
.y112{bottom:847.981694px;}
.y46{bottom:848.051506px;}
.y7{bottom:856.707269px;}
.ycd{bottom:858.644271px;}
.y226{bottom:859.049659px;}
.y185{bottom:859.986194px;}
.y1cb{bottom:860.183284px;}
.y111{bottom:862.981694px;}
.y45{bottom:863.050006px;}
.y1ca{bottom:872.929534px;}
.ycc{bottom:873.642771px;}
.y184{bottom:874.984694px;}
.y110{bottom:877.987694px;}
.y14e{bottom:878.001194px;}
.y44{bottom:878.048506px;}
.y225{bottom:881.554159px;}
.y1c9{bottom:885.675784px;}
.ycb{bottom:888.641271px;}
.y183{bottom:889.983194px;}
.y10f{bottom:892.986194px;}
.y14d{bottom:892.999694px;}
.y43{bottom:893.047006px;}
.y1c8{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.yca{bottom:903.641271px;}
.y224{bottom:904.058659px;}
.y182{bottom:904.981694px;}
.y10e{bottom:907.984694px;}
.y14c{bottom:907.998194px;}
.y42{bottom:908.045506px;}
.y1c7{bottom:911.168284px;}
.yc9{bottom:918.639771px;}
.y223{bottom:919.057159px;}
.y181{bottom:919.980194px;}
.y10d{bottom:922.983194px;}
.y14b{bottom:922.996694px;}
.y41{bottom:923.047006px;}
.y1c6{bottom:923.914534px;}
.yc8{bottom:933.639771px;}
.y222{bottom:934.057159px;}
.y1c5{bottom:936.660784px;}
.y10c{bottom:937.981694px;}
.y14a{bottom:937.995194px;}
.y40{bottom:938.045506px;}
.y5{bottom:946.719269px;}
.y1c4{bottom:949.407034px;}
.y10b{bottom:952.984694px;}
.y149{bottom:952.993694px;}
.y3f{bottom:953.045506px;}
.y29{bottom:954.366760px;}
.y1c3{bottom:962.153284px;}
.y221{bottom:964.057159px;}
.yc7{bottom:966.641271px;}
.y10a{bottom:967.983194px;}
.y148{bottom:967.992194px;}
.y3e{bottom:968.048506px;}
.y1c2{bottom:974.899534px;}
.y220{bottom:979.057159px;}
.yc6{bottom:981.642771px;}
.y109{bottom:982.981694px;}
.y147{bottom:982.990694px;}
.y3d{bottom:983.047006px;}
.y1c1{bottom:987.645784px;}
.yc5{bottom:996.641271px;}
.y108{bottom:997.981694px;}
.y146{bottom:997.989194px;}
.y3c{bottom:998.045506px;}
.y1c0{bottom:1000.392034px;}
.y21f{bottom:1010.530200px;}
.yc4{bottom:1011.641271px;}
.y107{bottom:1012.983194px;}
.y145{bottom:1012.987694px;}
.y3b{bottom:1013.048506px;}
.y1bf{bottom:1013.138284px;}
.y21e{bottom:1025.528700px;}
.y1be{bottom:1025.884534px;}
.yc3{bottom:1026.644271px;}
.y106{bottom:1027.981694px;}
.y144{bottom:1027.986194px;}
.y3a{bottom:1028.047006px;}
.y1bd{bottom:1038.630784px;}
.y21d{bottom:1040.527200px;}
.yc2{bottom:1041.642771px;}
.y105{bottom:1042.981694px;}
.y143{bottom:1042.984694px;}
.y39{bottom:1043.045506px;}
.y1bc{bottom:1051.377034px;}
.y21c{bottom:1055.525700px;}
.yc1{bottom:1056.641271px;}
.y104{bottom:1057.983194px;}
.y38{bottom:1058.047006px;}
.y1bb{bottom:1064.123284px;}
.y21b{bottom:1070.524200px;}
.yc0{bottom:1071.639771px;}
.y103{bottom:1072.981694px;}
.y37{bottom:1073.045506px;}
.y1ba{bottom:1076.869534px;}
.y21a{bottom:1085.524200px;}
.ybf{bottom:1086.639771px;}
.y102{bottom:1087.980194px;}
.y36{bottom:1088.044006px;}
.y1b9{bottom:1089.615784px;}
.y77{bottom:1140.640320px;}
.y86{bottom:1140.746521px;}
.y35{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h11{height:30.684677px;}
.h2{height:34.523438px;}
.h31{height:35.411133px;}
.h16{height:36.681152px;}
.h9{height:38.838867px;}
.h14{height:41.668740px;}
.h1c{height:43.154297px;}
.h32{height:44.505000px;}
.h34{height:45.090000px;}
.h3{height:45.679688px;}
.h33{height:46.080000px;}
.h1b{height:47.469727px;}
.h13{height:48.510668px;}
.h12{height:48.534668px;}
.h6{height:49.050293px;}
.h8{height:49.183594px;}
.h7{height:49.183777px;}
.h15{height:49.373525px;}
.h35{height:50.439000px;}
.ha{height:51.416016px;}
.hc{height:53.406000px;}
.hb{height:53.421827px;}
.h1f{height:53.553909px;}
.h2d{height:53.565310px;}
.h28{height:53.577131px;}
.h26{height:53.583680px;}
.h2e{height:53.583910px;}
.h30{height:53.589863px;}
.h23{height:53.595680px;}
.he{height:53.595863px;}
.h18{height:53.596046px;}
.h2a{height:53.601131px;}
.h2b{height:53.601218px;}
.h25{height:53.601680px;}
.hd{height:53.601863px;}
.h17{height:53.602046px;}
.h29{height:53.607131px;}
.h2c{height:53.607310px;}
.h24{height:53.607680px;}
.hf{height:53.607863px;}
.h20{height:53.607909px;}
.h19{height:53.608046px;}
.h2f{height:53.613680px;}
.h21{height:53.613909px;}
.h27{height:54.090000px;}
.h1a{height:54.108000px;}
.h22{height:55.260000px;}
.h1e{height:55.296000px;}
.h4{height:57.099609px;}
.h1d{height:57.128906px;}
.h10{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.x5{left:233.858253px;}
.x6{left:251.862302px;}
.xb{left:254.108391px;}
.xc{left:302.498703px;}
.x4{left:586.814117px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.xa{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v5{vertical-align:-16.799967pt;}
.v6{vertical-align:-15.866659pt;}
.v7{vertical-align:-9.599935pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.599935pt;}
.v4{vertical-align:16.629268pt;}
.v2{vertical-align:18.666667pt;}
.ls39{letter-spacing:-2.544000pt;}
.ls6b{letter-spacing:-1.320000pt;}
.ls54{letter-spacing:-1.152000pt;}
.ls6f{letter-spacing:-1.000000pt;}
.ls69{letter-spacing:-0.960000pt;}
.ls5c{letter-spacing:-0.880000pt;}
.ls2b{letter-spacing:-0.864000pt;}
.ls2e{letter-spacing:-0.816000pt;}
.ls74{letter-spacing:-0.800000pt;}
.ls72{letter-spacing:-0.760000pt;}
.ls31{letter-spacing:-0.720000pt;}
.ls70{letter-spacing:-0.680000pt;}
.ls2c{letter-spacing:-0.672000pt;}
.ls6e{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.624000pt;}
.ls2a{letter-spacing:-0.576000pt;}
.ls71{letter-spacing:-0.560000pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls56{letter-spacing:-0.440000pt;}
.ls47{letter-spacing:-0.432000pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls7e{letter-spacing:-0.360000pt;}
.ls45{letter-spacing:-0.336000pt;}
.ls5b{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls55{letter-spacing:-0.280000pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls46{letter-spacing:-0.218400pt;}
.ls7f{letter-spacing:-0.200000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.187200pt;}
.ls5a{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.144000pt;}
.ls13{letter-spacing:-0.124800pt;}
.ls73{letter-spacing:-0.120000pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls43{letter-spacing:-0.093600pt;}
.ls7d{letter-spacing:-0.080000pt;}
.ls16{letter-spacing:-0.048000pt;}
.ls59{letter-spacing:-0.040000pt;}
.ls17{letter-spacing:-0.031200pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000074pt;}
.ls40{letter-spacing:0.000237pt;}
.ls2{letter-spacing:0.011591pt;}
.ls1{letter-spacing:0.011673pt;}
.ls4{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012238pt;}
.lse{letter-spacing:0.014347pt;}
.ls5{letter-spacing:0.023807pt;}
.ls3c{letter-spacing:0.031200pt;}
.ls65{letter-spacing:0.040000pt;}
.ls19{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.062400pt;}
.ls8{letter-spacing:0.069643pt;}
.ls52{letter-spacing:0.080000pt;}
.ls2f{letter-spacing:0.081617pt;}
.ls38{letter-spacing:0.093600pt;}
.ls10{letter-spacing:0.096000pt;}
.ls66{letter-spacing:0.100000pt;}
.ls50{letter-spacing:0.120000pt;}
.ls3d{letter-spacing:0.124800pt;}
.ls48{letter-spacing:0.134400pt;}
.ls9{letter-spacing:0.140400pt;}
.lsc{letter-spacing:0.144000pt;}
.ls27{letter-spacing:0.153639pt;}
.ls15{letter-spacing:0.156000pt;}
.ls4f{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.180000pt;}
.ls33{letter-spacing:0.187200pt;}
.ls6{letter-spacing:0.192000pt;}
.ls4b{letter-spacing:0.200000pt;}
.ls28{letter-spacing:0.216000pt;}
.ls36{letter-spacing:0.218400pt;}
.ls49{letter-spacing:0.234667pt;}
.ls11{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.249600pt;}
.ls26{letter-spacing:0.251051pt;}
.ls76{letter-spacing:0.260000pt;}
.ls79{letter-spacing:0.280000pt;}
.ls1f{letter-spacing:0.280800pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls35{letter-spacing:0.312000pt;}
.ls53{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.327600pt;}
.ls37{letter-spacing:0.336000pt;}
.ls3a{letter-spacing:0.343200pt;}
.ls51{letter-spacing:0.360000pt;}
.ls42{letter-spacing:0.374400pt;}
.ls25{letter-spacing:0.384000pt;}
.ls61{letter-spacing:0.400000pt;}
.ls3e{letter-spacing:0.405600pt;}
.ls1e{letter-spacing:0.432000pt;}
.ls30{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.499200pt;}
.ls3b{letter-spacing:0.528000pt;}
.lsb{letter-spacing:0.530400pt;}
.ls57{letter-spacing:0.560000pt;}
.ls41{letter-spacing:0.576000pt;}
.ls7b{letter-spacing:0.600000pt;}
.ls7c{letter-spacing:0.620000pt;}
.ls44{letter-spacing:0.624000pt;}
.ls6c{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.672000pt;}
.ls6d{letter-spacing:0.680000pt;}
.ls24{letter-spacing:0.720000pt;}
.ls5e{letter-spacing:0.760000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls5f{letter-spacing:0.780000pt;}
.ls6a{letter-spacing:0.800000pt;}
.ls63{letter-spacing:0.811945pt;}
.ls23{letter-spacing:0.816000pt;}
.ls58{letter-spacing:0.840000pt;}
.ls4d{letter-spacing:0.880000pt;}
.ls4e{letter-spacing:0.919925pt;}
.ls60{letter-spacing:0.920000pt;}
.ls75{letter-spacing:1.032000pt;}
.ls77{letter-spacing:1.160000pt;}
.ls68{letter-spacing:1.232044pt;}
.ls67{letter-spacing:1.240000pt;}
.ls62{letter-spacing:1.523927pt;}
.ls78{letter-spacing:1.696000pt;}
.ls7a{letter-spacing:2.251956pt;}
.ls64{letter-spacing:2.560000pt;}
.ls0{letter-spacing:2.666667pt;}
.ls5d{letter-spacing:3.236000pt;}
.ls4c{letter-spacing:3.800000pt;}
.lsd{letter-spacing:13.171600pt;}
.ws1{word-spacing:-13.333333pt;}
.wsa7{word-spacing:-12.320000pt;}
.ws1f{word-spacing:-12.085333pt;}
.ws12{word-spacing:-11.664000pt;}
.ws27{word-spacing:-11.328000pt;}
.ws75{word-spacing:-11.184000pt;}
.ws21{word-spacing:-11.136000pt;}
.ws52{word-spacing:-11.112000pt;}
.ws6f{word-spacing:-11.088000pt;}
.ws73{word-spacing:-11.040000pt;}
.wsa6{word-spacing:-10.992000pt;}
.ws61{word-spacing:-10.986667pt;}
.ws53{word-spacing:-10.944000pt;}
.ws20{word-spacing:-10.896000pt;}
.ws15{word-spacing:-10.848000pt;}
.ws63{word-spacing:-10.800000pt;}
.ws81{word-spacing:-10.752000pt;}
.ws24{word-spacing:-10.608000pt;}
.wsa5{word-spacing:-10.464000pt;}
.ws4f{word-spacing:-10.416000pt;}
.ws5c{word-spacing:-10.176000pt;}
.wscf{word-spacing:-9.560000pt;}
.wsaf{word-spacing:-9.520000pt;}
.wsd3{word-spacing:-9.360000pt;}
.wsaa{word-spacing:-9.280000pt;}
.wsac{word-spacing:-9.260000pt;}
.wse3{word-spacing:-9.240000pt;}
.wsab{word-spacing:-9.120000pt;}
.wse4{word-spacing:-9.000000pt;}
.wsa8{word-spacing:-8.880000pt;}
.wsad{word-spacing:-8.840000pt;}
.wsae{word-spacing:-8.760000pt;}
.wsa9{word-spacing:-8.720000pt;}
.ws0{word-spacing:-8.533333pt;}
.wsd6{word-spacing:-8.480000pt;}
.wsd2{word-spacing:-8.400000pt;}
.wsd5{word-spacing:-8.360000pt;}
.ws71{word-spacing:-8.352000pt;}
.wsd4{word-spacing:-8.280000pt;}
.wsce{word-spacing:-8.200000pt;}
.wsd1{word-spacing:-8.160000pt;}
.wsd0{word-spacing:-7.840000pt;}
.ws7{word-spacing:-7.581600pt;}
.ws7c{word-spacing:-7.488000pt;}
.ws79{word-spacing:-7.456800pt;}
.ws65{word-spacing:-7.425600pt;}
.ws1e{word-spacing:-7.363200pt;}
.ws69{word-spacing:-7.332000pt;}
.ws62{word-spacing:-7.300800pt;}
.ws67{word-spacing:-7.269600pt;}
.ws5{word-spacing:-7.238400pt;}
.ws68{word-spacing:-7.207200pt;}
.ws64{word-spacing:-7.176000pt;}
.ws7a{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws66{word-spacing:-7.113600pt;}
.ws3{word-spacing:-7.082400pt;}
.ws6{word-spacing:-7.051200pt;}
.ws7b{word-spacing:-6.988800pt;}
.ws4{word-spacing:-6.957600pt;}
.ws1d{word-spacing:-6.895200pt;}
.ws7d{word-spacing:-6.864000pt;}
.ws8{word-spacing:-5.893333pt;}
.wsc7{word-spacing:-5.520000pt;}
.wsdf{word-spacing:-5.480000pt;}
.wse5{word-spacing:-5.440000pt;}
.wse6{word-spacing:-5.400000pt;}
.wsca{word-spacing:-5.360000pt;}
.wsc8{word-spacing:-5.280000pt;}
.wsc9{word-spacing:-5.240000pt;}
.wse1{word-spacing:-5.200000pt;}
.wsc6{word-spacing:-5.160000pt;}
.wsee{word-spacing:-5.080000pt;}
.wsda{word-spacing:-5.000000pt;}
.wsed{word-spacing:-4.960000pt;}
.wsdd{word-spacing:-4.920000pt;}
.ws5b{word-spacing:-4.896000pt;}
.ws8d{word-spacing:-3.072000pt;}
.ws9f{word-spacing:-2.400000pt;}
.wsb2{word-spacing:-2.160000pt;}
.ws34{word-spacing:-2.064000pt;}
.ws99{word-spacing:-1.920000pt;}
.ws6a{word-spacing:-1.728000pt;}
.ws38{word-spacing:-1.680000pt;}
.wsb3{word-spacing:-1.632000pt;}
.ws3c{word-spacing:-1.536000pt;}
.wsa2{word-spacing:-1.392000pt;}
.wsa3{word-spacing:-1.344000pt;}
.ws6c{word-spacing:-1.296000pt;}
.ws92{word-spacing:-1.200000pt;}
.ws6b{word-spacing:-1.152000pt;}
.wsc{word-spacing:-1.104000pt;}
.wse{word-spacing:-1.056000pt;}
.wsd{word-spacing:-1.008000pt;}
.ws8f{word-spacing:-0.960000pt;}
.wsb6{word-spacing:-0.920000pt;}
.ws23{word-spacing:-0.912000pt;}
.wsc5{word-spacing:-0.880000pt;}
.wsb4{word-spacing:-0.864000pt;}
.wsbc{word-spacing:-0.840000pt;}
.ws77{word-spacing:-0.816000pt;}
.ws2e{word-spacing:-0.768000pt;}
.wse7{word-spacing:-0.760000pt;}
.ws74{word-spacing:-0.720000pt;}
.wsd7{word-spacing:-0.680000pt;}
.ws49{word-spacing:-0.672000pt;}
.wsdb{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.576000pt;}
.wsb7{word-spacing:-0.520000pt;}
.ws13{word-spacing:-0.499200pt;}
.wsb{word-spacing:-0.480000pt;}
.ws3f{word-spacing:-0.432000pt;}
.ws83{word-spacing:-0.405600pt;}
.wsb5{word-spacing:-0.400000pt;}
.ws59{word-spacing:-0.384000pt;}
.wsdc{word-spacing:-0.360000pt;}
.ws72{word-spacing:-0.343200pt;}
.ws33{word-spacing:-0.336000pt;}
.wsbf{word-spacing:-0.320000pt;}
.ws60{word-spacing:-0.288000pt;}
.ws28{word-spacing:-0.280800pt;}
.wsc3{word-spacing:-0.280000pt;}
.ws36{word-spacing:-0.240000pt;}
.wsf0{word-spacing:-0.234667pt;}
.ws70{word-spacing:-0.218400pt;}
.wsc0{word-spacing:-0.200000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws76{word-spacing:-0.187200pt;}
.wsb8{word-spacing:-0.160000pt;}
.ws82{word-spacing:-0.144000pt;}
.wsc2{word-spacing:-0.120000pt;}
.ws2a{word-spacing:-0.096000pt;}
.wsb9{word-spacing:-0.080000pt;}
.ws84{word-spacing:-0.062400pt;}
.ws30{word-spacing:-0.048000pt;}
.wsc4{word-spacing:-0.040000pt;}
.ws9{word-spacing:0.000000pt;}
.ws16{word-spacing:0.031200pt;}
.wsc1{word-spacing:0.040000pt;}
.ws97{word-spacing:0.048000pt;}
.wsde{word-spacing:0.080000pt;}
.ws5d{word-spacing:0.096000pt;}
.ws43{word-spacing:0.144000pt;}
.wse0{word-spacing:0.160000pt;}
.ws25{word-spacing:0.187200pt;}
.ws5e{word-spacing:0.192000pt;}
.ws51{word-spacing:0.240000pt;}
.ws5f{word-spacing:0.288000pt;}
.ws7f{word-spacing:0.336000pt;}
.ws80{word-spacing:0.384000pt;}
.ws11{word-spacing:0.432000pt;}
.wsbd{word-spacing:0.440000pt;}
.ws89{word-spacing:0.480000pt;}
.ws6d{word-spacing:0.528000pt;}
.ws47{word-spacing:0.576000pt;}
.ws2f{word-spacing:0.624000pt;}
.ws2b{word-spacing:0.672000pt;}
.wscd{word-spacing:0.680000pt;}
.ws2c{word-spacing:0.720000pt;}
.ws41{word-spacing:0.768000pt;}
.wse2{word-spacing:0.800000pt;}
.wsf{word-spacing:0.816000pt;}
.ws78{word-spacing:0.864000pt;}
.wscb{word-spacing:0.880000pt;}
.ws4e{word-spacing:0.912000pt;}
.wsbe{word-spacing:0.920000pt;}
.ws26{word-spacing:0.960000pt;}
.wse8{word-spacing:1.000000pt;}
.ws46{word-spacing:1.008000pt;}
.ws29{word-spacing:1.056000pt;}
.ws22{word-spacing:1.104000pt;}
.wsea{word-spacing:1.120000pt;}
.ws48{word-spacing:1.152000pt;}
.ws7e{word-spacing:1.200000pt;}
.wsef{word-spacing:1.248000pt;}
.wscc{word-spacing:1.280000pt;}
.ws88{word-spacing:1.296000pt;}
.ws2d{word-spacing:1.344000pt;}
.ws90{word-spacing:1.392000pt;}
.ws40{word-spacing:1.440000pt;}
.ws3b{word-spacing:1.488000pt;}
.ws44{word-spacing:1.536000pt;}
.wse9{word-spacing:1.560000pt;}
.wsa1{word-spacing:1.584000pt;}
.wseb{word-spacing:1.720000pt;}
.ws55{word-spacing:1.728000pt;}
.wsec{word-spacing:1.760000pt;}
.ws56{word-spacing:1.776000pt;}
.wsa4{word-spacing:1.824000pt;}
.ws4a{word-spacing:1.872000pt;}
.ws45{word-spacing:1.920000pt;}
.ws6e{word-spacing:1.968000pt;}
.ws5a{word-spacing:2.016000pt;}
.ws32{word-spacing:2.112000pt;}
.ws1a{word-spacing:2.130667pt;}
.ws4d{word-spacing:2.160000pt;}
.wsb0{word-spacing:2.256000pt;}
.ws14{word-spacing:2.304000pt;}
.ws58{word-spacing:2.352000pt;}
.ws57{word-spacing:2.400000pt;}
.ws8c{word-spacing:2.496000pt;}
.wsd8{word-spacing:2.520000pt;}
.ws35{word-spacing:2.544000pt;}
.wsd9{word-spacing:2.560000pt;}
.ws98{word-spacing:2.640000pt;}
.wsf3{word-spacing:2.688000pt;}
.wsa0{word-spacing:2.736000pt;}
.wsf4{word-spacing:2.784000pt;}
.ws4c{word-spacing:2.880000pt;}
.wsba{word-spacing:2.920000pt;}
.ws31{word-spacing:2.928000pt;}
.ws94{word-spacing:2.976000pt;}
.ws54{word-spacing:3.216000pt;}
.wsbb{word-spacing:3.280000pt;}
.ws91{word-spacing:3.312000pt;}
.ws4b{word-spacing:3.466667pt;}
.ws8e{word-spacing:3.552000pt;}
.ws3e{word-spacing:3.600000pt;}
.ws96{word-spacing:3.648000pt;}
.ws8a{word-spacing:3.696000pt;}
.ws1b{word-spacing:3.762667pt;}
.ws9c{word-spacing:3.888000pt;}
.ws8b{word-spacing:3.984000pt;}
.ws37{word-spacing:4.032000pt;}
.ws9b{word-spacing:4.080000pt;}
.ws3d{word-spacing:4.128000pt;}
.ws3a{word-spacing:4.464000pt;}
.ws9e{word-spacing:4.608000pt;}
.wsf6{word-spacing:5.040000pt;}
.ws93{word-spacing:5.280000pt;}
.ws87{word-spacing:5.472000pt;}
.ws9a{word-spacing:5.520000pt;}
.wsf7{word-spacing:5.568000pt;}
.wsb1{word-spacing:5.664000pt;}
.ws86{word-spacing:5.760000pt;}
.ws95{word-spacing:5.856000pt;}
.ws39{word-spacing:5.904000pt;}
.wsf5{word-spacing:6.000000pt;}
.ws19{word-spacing:6.301333pt;}
.ws42{word-spacing:10.032000pt;}
.wsf1{word-spacing:10.512000pt;}
.wsf2{word-spacing:10.992000pt;}
.ws9d{word-spacing:11.136000pt;}
.ws17{word-spacing:11.650667pt;}
.ws1c{word-spacing:12.240000pt;}
.ws50{word-spacing:13.584000pt;}
.ws85{word-spacing:15.552000pt;}
.ws18{word-spacing:23.482667pt;}
._1a{margin-left:-18.624006pt;}
._1b{margin-left:-13.451733pt;}
._8{margin-left:-12.508801pt;}
._14{margin-left:-11.495482pt;}
._6{margin-left:-9.691283pt;}
._19{margin-left:-8.632368pt;}
._17{margin-left:-7.468278pt;}
._5{margin-left:-6.460800pt;}
._7{margin-left:-5.404800pt;}
._2{margin-left:-4.098654pt;}
._4{margin-left:-2.926933pt;}
._0{margin-left:-1.668267pt;}
._3{width:1.185600pt;}
._e{width:2.567869pt;}
._15{width:3.501062pt;}
._f{width:4.558264pt;}
._18{width:5.806400pt;}
._d{width:6.913333pt;}
._c{width:8.024000pt;}
._20{width:9.380800pt;}
._11{width:10.281600pt;}
._1d{width:11.200000pt;}
._10{width:12.221867pt;}
._9{width:13.680000pt;}
._1e{width:15.160000pt;}
._1f{width:16.640000pt;}
._13{width:18.260267pt;}
._12{width:20.241333pt;}
._a{width:23.241168pt;}
._b{width:24.584266pt;}
._1c{width:36.844052pt;}
._16{width:42.806607pt;}
._1{width:304.814933pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:2.843733pt;}
.y34{bottom:2.843867pt;}
.y9f{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y33{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y85{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.ya8{bottom:60.437465pt;}
.y32{bottom:60.477735pt;}
.y94{bottom:60.553468pt;}
.y209{bottom:62.147363pt;}
.y180{bottom:65.784132pt;}
.y76{bottom:65.822269pt;}
.y101{bottom:69.905998pt;}
.y208{bottom:73.477363pt;}
.ya7{bottom:73.769465pt;}
.y31{bottom:73.811069pt;}
.y93{bottom:73.885468pt;}
.y17f{bottom:79.116132pt;}
.y75{bottom:79.154269pt;}
.yb4{bottom:79.178662pt;}
.y1b8{bottom:79.230132pt;}
.y83{bottom:81.210533pt;}
.y142{bottom:81.765465pt;}
.y100{bottom:83.237998pt;}
.y207{bottom:84.807363pt;}
.ya6{bottom:87.101465pt;}
.y30{bottom:87.144402pt;}
.y92{bottom:87.218802pt;}
.y1b7{bottom:90.560132pt;}
.y17e{bottom:92.448132pt;}
.y74{bottom:92.486269pt;}
.yb3{bottom:92.510662pt;}
.y82{bottom:94.542533pt;}
.y141{bottom:95.097465pt;}
.y206{bottom:96.137363pt;}
.yff{bottom:96.569998pt;}
.ya5{bottom:100.433465pt;}
.y2f{bottom:100.477735pt;}
.y91{bottom:100.564135pt;}
.y1b6{bottom:101.890132pt;}
.y17d{bottom:105.780132pt;}
.y73{bottom:105.818269pt;}
.yb2{bottom:105.842662pt;}
.y219{bottom:107.232676pt;}
.y205{bottom:107.467363pt;}
.y81{bottom:107.874533pt;}
.y140{bottom:108.429465pt;}
.yfe{bottom:109.903331pt;}
.y1b5{bottom:113.220132pt;}
.ya4{bottom:113.765465pt;}
.y2e{bottom:113.811069pt;}
.y90{bottom:113.896135pt;}
.y204{bottom:118.797363pt;}
.y17c{bottom:119.112132pt;}
.y72{bottom:119.150269pt;}
.yb1{bottom:119.175996pt;}
.y218{bottom:120.564676pt;}
.y80{bottom:121.206533pt;}
.y13f{bottom:121.761465pt;}
.yfd{bottom:123.241998pt;}
.y1b4{bottom:124.550132pt;}
.ya3{bottom:127.097465pt;}
.y2d{bottom:127.144402pt;}
.y8f{bottom:127.228135pt;}
.y203{bottom:130.127363pt;}
.y17b{bottom:132.444132pt;}
.y71{bottom:132.483602pt;}
.yb0{bottom:132.507996pt;}
.y217{bottom:133.896676pt;}
.y7f{bottom:134.538533pt;}
.y13e{bottom:135.094799pt;}
.y1b3{bottom:135.880132pt;}
.yfc{bottom:136.573998pt;}
.ya2{bottom:140.429465pt;}
.y2c{bottom:140.477735pt;}
.y8e{bottom:140.560135pt;}
.y202{bottom:141.457363pt;}
.y17a{bottom:145.776132pt;}
.y1b2{bottom:147.210132pt;}
.y216{bottom:147.228676pt;}
.y13d{bottom:148.445465pt;}
.yfb{bottom:149.905998pt;}
.y201{bottom:152.787363pt;}
.ya1{bottom:153.761465pt;}
.y2b{bottom:153.811069pt;}
.y8d{bottom:153.892135pt;}
.y1b1{bottom:158.540132pt;}
.y179{bottom:159.108132pt;}
.y215{bottom:160.560676pt;}
.y13c{bottom:161.777465pt;}
.y70{bottom:161.835602pt;}
.yfa{bottom:163.237998pt;}
.y200{bottom:164.117363pt;}
.ya0{bottom:167.093465pt;}
.y8c{bottom:167.224135pt;}
.y1b0{bottom:169.870132pt;}
.y2a{bottom:171.105733pt;}
.y178{bottom:172.440132pt;}
.y214{bottom:173.892676pt;}
.y13b{bottom:175.109465pt;}
.y6f{bottom:175.167602pt;}
.y1ff{bottom:175.447363pt;}
.yf9{bottom:176.569998pt;}
.y8b{bottom:180.556135pt;}
.y1af{bottom:181.200132pt;}
.ybe{bottom:181.578809pt;}
.y177{bottom:185.772132pt;}
.y1fe{bottom:186.777363pt;}
.y213{bottom:187.224676pt;}
.y6e{bottom:188.499602pt;}
.yf8{bottom:189.912665pt;}
.y1ae{bottom:192.530132pt;}
.y8a{bottom:193.888135pt;}
.ybd{bottom:194.910809pt;}
.y1fd{bottom:198.107363pt;}
.y176{bottom:199.104132pt;}
.y212{bottom:200.556676pt;}
.y6d{bottom:201.831602pt;}
.yf7{bottom:203.244665pt;}
.y1ad{bottom:203.860132pt;}
.y13a{bottom:204.437465pt;}
.yaf{bottom:205.582809pt;}
.y89{bottom:207.220135pt;}
.ybc{bottom:208.242809pt;}
.y1fc{bottom:209.437363pt;}
.y175{bottom:212.436132pt;}
.y211{bottom:213.888676pt;}
.y28{bottom:214.730938pt;}
.y6c{bottom:215.163602pt;}
.y1ac{bottom:215.190132pt;}
.yf6{bottom:216.576665pt;}
.y139{bottom:217.769465pt;}
.yae{bottom:218.914809pt;}
.y88{bottom:220.552135pt;}
.y1fb{bottom:220.767363pt;}
.ybb{bottom:221.582809pt;}
.y174{bottom:225.768132pt;}
.y1ab{bottom:226.520132pt;}
.y210{bottom:227.220676pt;}
.y27{bottom:228.062938pt;}
.y6b{bottom:228.495602pt;}
.yf5{bottom:229.908665pt;}
.y138{bottom:231.101465pt;}
.y1fa{bottom:232.097363pt;}
.yad{bottom:232.246809pt;}
.y87{bottom:233.884135pt;}
.yba{bottom:234.914809pt;}
.y1aa{bottom:237.850132pt;}
.y173{bottom:239.100132pt;}
.y20f{bottom:240.552676pt;}
.y26{bottom:241.398938pt;}
.y6a{bottom:241.827602pt;}
.yf4{bottom:243.240665pt;}
.y1f9{bottom:243.427363pt;}
.y137{bottom:244.433465pt;}
.yac{bottom:245.578809pt;}
.yb9{bottom:248.246809pt;}
.y1a9{bottom:249.180132pt;}
.y172{bottom:252.432132pt;}
.y20e{bottom:253.884676pt;}
.y25{bottom:254.730938pt;}
.y1f8{bottom:254.757363pt;}
.y69{bottom:255.159602pt;}
.yf3{bottom:256.572665pt;}
.y136{bottom:257.765465pt;}
.yab{bottom:258.910809pt;}
.y1a8{bottom:260.510132pt;}
.yb8{bottom:261.578809pt;}
.y171{bottom:265.764132pt;}
.y1f7{bottom:266.087363pt;}
.y20d{bottom:267.216676pt;}
.y24{bottom:268.062938pt;}
.y68{bottom:268.491602pt;}
.yf2{bottom:269.904665pt;}
.y135{bottom:271.097465pt;}
.y1a7{bottom:271.840132pt;}
.yaa{bottom:272.242809pt;}
.yb7{bottom:274.910809pt;}
.y1f6{bottom:277.417363pt;}
.y170{bottom:279.096132pt;}
.y20c{bottom:280.548676pt;}
.y23{bottom:281.396271pt;}
.y67{bottom:281.823602pt;}
.y1a6{bottom:283.170132pt;}
.yf1{bottom:283.236665pt;}
.y9e{bottom:284.146806pt;}
.y134{bottom:284.429465pt;}
.ya9{bottom:285.574809pt;}
.yb6{bottom:288.242809pt;}
.y1f5{bottom:288.747363pt;}
.y16f{bottom:292.428132pt;}
.y20b{bottom:293.880676pt;}
.y1a5{bottom:294.500132pt;}
.y22{bottom:294.732271pt;}
.y66{bottom:295.155602pt;}
.yf0{bottom:296.569998pt;}
.y9d{bottom:297.478806pt;}
.y133{bottom:297.761465pt;}
.y1f4{bottom:300.077363pt;}
.yb5{bottom:301.574809pt;}
.y16e{bottom:305.760132pt;}
.y1a4{bottom:305.830132pt;}
.y20a{bottom:307.214010pt;}
.y21{bottom:308.064271pt;}
.y65{bottom:308.487602pt;}
.yef{bottom:309.903331pt;}
.y9c{bottom:310.810806pt;}
.y132{bottom:311.094799pt;}
.y1f3{bottom:311.407363pt;}
.y1a3{bottom:317.160132pt;}
.y20{bottom:321.396271pt;}
.y64{bottom:321.819602pt;}
.y1f2{bottom:322.737363pt;}
.yee{bottom:323.238018pt;}
.y9b{bottom:324.142806pt;}
.y131{bottom:324.429465pt;}
.y1a2{bottom:328.490132pt;}
.y1f1{bottom:334.067363pt;}
.y1f{bottom:334.730938pt;}
.y16d{bottom:335.109465pt;}
.y63{bottom:335.151602pt;}
.yed{bottom:336.570018pt;}
.y9a{bottom:337.474806pt;}
.y130{bottom:337.761465pt;}
.y1a1{bottom:339.820132pt;}
.y1f0{bottom:345.397363pt;}
.y1e{bottom:348.062938pt;}
.y16c{bottom:348.441465pt;}
.y62{bottom:348.483602pt;}
.yec{bottom:349.903352pt;}
.y99{bottom:350.806806pt;}
.y12f{bottom:351.094799pt;}
.y1a0{bottom:351.150132pt;}
.y1ef{bottom:356.727363pt;}
.y1d{bottom:361.397605pt;}
.y16b{bottom:361.773465pt;}
.y61{bottom:361.816935pt;}
.y19f{bottom:362.480132pt;}
.yeb{bottom:363.236685pt;}
.y98{bottom:364.138806pt;}
.y12e{bottom:364.426799pt;}
.y1ee{bottom:368.057363pt;}
.y19e{bottom:373.810132pt;}
.y1c{bottom:374.729605pt;}
.y16a{bottom:375.105465pt;}
.yea{bottom:376.571352pt;}
.y97{bottom:377.470806pt;}
.y12d{bottom:377.760132pt;}
.y1ed{bottom:379.387363pt;}
.y19d{bottom:385.140132pt;}
.y1b{bottom:388.104280pt;}
.y169{bottom:388.437465pt;}
.ye9{bottom:389.903352pt;}
.y1ec{bottom:390.717363pt;}
.y96{bottom:390.802806pt;}
.y60{bottom:391.174269pt;}
.y19c{bottom:396.470132pt;}
.y168{bottom:401.769465pt;}
.y1eb{bottom:402.047363pt;}
.ye8{bottom:403.236685pt;}
.y95{bottom:404.134806pt;}
.y5f{bottom:404.506269pt;}
.y12c{bottom:407.096132pt;}
.y19b{bottom:407.800132pt;}
.y1ea{bottom:413.377363pt;}
.y167{bottom:415.101465pt;}
.ye7{bottom:416.576685pt;}
.y5e{bottom:417.838269pt;}
.y19a{bottom:419.130132pt;}
.y12b{bottom:420.428132pt;}
.y1e9{bottom:424.707363pt;}
.y1a{bottom:428.232280pt;}
.y166{bottom:428.433465pt;}
.ye6{bottom:429.908685pt;}
.y199{bottom:430.460132pt;}
.y5d{bottom:431.170269pt;}
.y12a{bottom:433.764132pt;}
.y1e8{bottom:436.037363pt;}
.y165{bottom:441.765465pt;}
.y198{bottom:441.790132pt;}
.y19{bottom:442.896280pt;}
.ye5{bottom:443.240685pt;}
.y5c{bottom:444.502269pt;}
.y129{bottom:447.096132pt;}
.y1e7{bottom:447.367363pt;}
.y197{bottom:453.120132pt;}
.y164{bottom:455.097465pt;}
.ye4{bottom:456.572685pt;}
.y18{bottom:457.560280pt;}
.y5b{bottom:457.834269pt;}
.y1e6{bottom:458.697363pt;}
.y128{bottom:460.428132pt;}
.y196{bottom:464.450132pt;}
.y163{bottom:468.429465pt;}
.ye3{bottom:469.904685pt;}
.y1e5{bottom:470.027363pt;}
.y5a{bottom:471.166269pt;}
.y17{bottom:472.224280pt;}
.y127{bottom:473.762799pt;}
.y195{bottom:475.780132pt;}
.y1e4{bottom:481.357363pt;}
.y162{bottom:481.761465pt;}
.ye2{bottom:483.236685pt;}
.y59{bottom:484.498269pt;}
.y16{bottom:486.888280pt;}
.y126{bottom:487.094799pt;}
.y194{bottom:487.110132pt;}
.y1e3{bottom:492.687363pt;}
.y161{bottom:495.094799pt;}
.ye1{bottom:496.576685pt;}
.y58{bottom:497.830269pt;}
.y193{bottom:498.440132pt;}
.y125{bottom:500.432132pt;}
.y15{bottom:501.552280pt;}
.y7e{bottom:503.502792pt;}
.y1e2{bottom:504.017363pt;}
.y160{bottom:508.426799pt;}
.y192{bottom:509.770132pt;}
.ye0{bottom:509.908685pt;}
.y57{bottom:511.162269pt;}
.y124{bottom:513.764132pt;}
.y1e1{bottom:515.347363pt;}
.y14{bottom:516.216280pt;}
.y7d{bottom:516.834792pt;}
.y191{bottom:521.100132pt;}
.ydf{bottom:523.240685pt;}
.y56{bottom:524.494269pt;}
.y1e0{bottom:526.677363pt;}
.y123{bottom:527.096132pt;}
.y7c{bottom:530.166792pt;}
.y13{bottom:530.880280pt;}
.y190{bottom:532.430132pt;}
.yde{bottom:536.572685pt;}
.y15f{bottom:537.777506pt;}
.y55{bottom:537.826269pt;}
.y1df{bottom:538.007363pt;}
.y122{bottom:540.428132pt;}
.y7b{bottom:543.498792pt;}
.y18f{bottom:543.760132pt;}
.y12{bottom:545.544280pt;}
.y1de{bottom:549.337363pt;}
.ydd{bottom:549.904685pt;}
.y15e{bottom:551.109506pt;}
.y54{bottom:551.158269pt;}
.y121{bottom:553.762799pt;}
.y18e{bottom:555.093465pt;}
.y7a{bottom:556.830792pt;}
.y11{bottom:560.208280pt;}
.y1dd{bottom:560.667363pt;}
.ydc{bottom:563.236685pt;}
.y15d{bottom:564.441506pt;}
.y53{bottom:564.490269pt;}
.y120{bottom:567.094799pt;}
.y79{bottom:570.162792pt;}
.y1dc{bottom:571.997363pt;}
.y10{bottom:574.872280pt;}
.ydb{bottom:576.576685pt;}
.y15c{bottom:577.773506pt;}
.y52{bottom:577.822269pt;}
.y11f{bottom:580.428132pt;}
.y1db{bottom:583.327363pt;}
.y78{bottom:583.494792pt;}
.yf{bottom:589.536280pt;}
.yda{bottom:589.908685pt;}
.y231{bottom:590.285032pt;}
.y15b{bottom:591.105506pt;}
.y51{bottom:591.154269pt;}
.y11e{bottom:593.761465pt;}
.y1da{bottom:594.657363pt;}
.y18d{bottom:599.093465pt;}
.yd9{bottom:603.240685pt;}
.ye{bottom:604.200280pt;}
.y15a{bottom:604.437506pt;}
.y50{bottom:604.486269pt;}
.y1d9{bottom:605.987363pt;}
.y11d{bottom:607.094799pt;}
.yd8{bottom:616.572685pt;}
.y230{bottom:616.949031pt;}
.y1d8{bottom:617.317363pt;}
.y159{bottom:617.769506pt;}
.y4f{bottom:617.818269pt;}
.yd{bottom:618.864280pt;}
.y11c{bottom:620.429465pt;}
.y1d7{bottom:628.647363pt;}
.yd7{bottom:629.904685pt;}
.y22f{bottom:630.281031pt;}
.y158{bottom:631.101506pt;}
.y4e{bottom:631.150269pt;}
.yc{bottom:633.528280pt;}
.y11b{bottom:633.761465pt;}
.y1d6{bottom:639.977363pt;}
.yd6{bottom:643.236685pt;}
.y22e{bottom:643.613031pt;}
.y157{bottom:644.433506pt;}
.y4d{bottom:644.483602pt;}
.y11a{bottom:647.097506pt;}
.y1d5{bottom:651.307363pt;}
.y18c{bottom:655.096132pt;}
.yd5{bottom:656.572685pt;}
.y22d{bottom:656.945031pt;}
.y156{bottom:657.765506pt;}
.yb{bottom:660.194946pt;}
.y119{bottom:660.429506pt;}
.y1d4{bottom:662.637363pt;}
.y18b{bottom:668.428132pt;}
.yd4{bottom:669.904685pt;}
.y22c{bottom:670.277031pt;}
.y155{bottom:671.097506pt;}
.y118{bottom:673.761506pt;}
.y4c{bottom:673.831561pt;}
.y1d3{bottom:673.967363pt;}
.ya{bottom:676.194906pt;}
.y18a{bottom:681.760132pt;}
.yd3{bottom:683.236685pt;}
.y22b{bottom:683.609031pt;}
.y154{bottom:684.429506pt;}
.y1d2{bottom:685.297363pt;}
.y117{bottom:687.096173pt;}
.y4b{bottom:687.163561pt;}
.y9{bottom:692.194906pt;}
.yd2{bottom:696.575352pt;}
.y1d1{bottom:696.627363pt;}
.y22a{bottom:696.941031pt;}
.y153{bottom:697.761506pt;}
.y116{bottom:700.428173pt;}
.y4a{bottom:700.495561pt;}
.y1d0{bottom:707.957363pt;}
.yd1{bottom:709.907352pt;}
.y229{bottom:710.273031pt;}
.y152{bottom:711.097506pt;}
.y189{bottom:711.104173pt;}
.y115{bottom:713.762839pt;}
.y49{bottom:713.827561pt;}
.y1cf{bottom:719.287363pt;}
.y8{bottom:721.512239pt;}
.yd0{bottom:723.239352pt;}
.y151{bottom:724.429506pt;}
.y188{bottom:724.436173pt;}
.y114{bottom:727.094839pt;}
.y48{bottom:727.159561pt;}
.y228{bottom:730.263697pt;}
.y1ce{bottom:730.617363pt;}
.ycf{bottom:736.571352pt;}
.y150{bottom:737.761506pt;}
.y187{bottom:737.768173pt;}
.y113{bottom:740.429506pt;}
.y47{bottom:740.491561pt;}
.y1cd{bottom:741.947363pt;}
.y227{bottom:743.595697pt;}
.yce{bottom:749.903352pt;}
.y14f{bottom:751.093506pt;}
.y186{bottom:751.100173pt;}
.y1cc{bottom:753.277363pt;}
.y112{bottom:753.761506pt;}
.y46{bottom:753.823561pt;}
.y7{bottom:761.517572pt;}
.ycd{bottom:763.239352pt;}
.y226{bottom:763.599697pt;}
.y185{bottom:764.432173pt;}
.y1cb{bottom:764.607363pt;}
.y111{bottom:767.094839pt;}
.y45{bottom:767.155561pt;}
.y1ca{bottom:775.937363pt;}
.ycc{bottom:776.571352pt;}
.y184{bottom:777.764173pt;}
.y110{bottom:780.433506pt;}
.y14e{bottom:780.445506pt;}
.y44{bottom:780.487561pt;}
.y225{bottom:783.603697pt;}
.y1c9{bottom:787.267363pt;}
.ycb{bottom:789.903352pt;}
.y183{bottom:791.096173pt;}
.y10f{bottom:793.765506pt;}
.y14d{bottom:793.777506pt;}
.y43{bottom:793.819561pt;}
.y1c8{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.yca{bottom:803.236685pt;}
.y224{bottom:803.607697pt;}
.y182{bottom:804.428173pt;}
.y10e{bottom:807.097506pt;}
.y14c{bottom:807.109506pt;}
.y42{bottom:807.151561pt;}
.y1c7{bottom:809.927363pt;}
.yc9{bottom:816.568685pt;}
.y223{bottom:816.939697pt;}
.y181{bottom:817.760173pt;}
.y10d{bottom:820.429506pt;}
.y14b{bottom:820.441506pt;}
.y41{bottom:820.486228pt;}
.y1c6{bottom:821.257363pt;}
.yc8{bottom:829.902018pt;}
.y222{bottom:830.273031pt;}
.y1c5{bottom:832.587363pt;}
.y10c{bottom:833.761506pt;}
.y14a{bottom:833.773506pt;}
.y40{bottom:833.818228pt;}
.y5{bottom:841.528239pt;}
.y1c4{bottom:843.917363pt;}
.y10b{bottom:847.097506pt;}
.y149{bottom:847.105506pt;}
.y3f{bottom:847.151561pt;}
.y29{bottom:848.326009pt;}
.y1c3{bottom:855.247363pt;}
.y221{bottom:856.939697pt;}
.yc7{bottom:859.236685pt;}
.y10a{bottom:860.429506pt;}
.y148{bottom:860.437506pt;}
.y3e{bottom:860.487561pt;}
.y1c2{bottom:866.577363pt;}
.y220{bottom:870.273031pt;}
.yc6{bottom:872.571352pt;}
.y109{bottom:873.761506pt;}
.y147{bottom:873.769506pt;}
.y3d{bottom:873.819561pt;}
.y1c1{bottom:877.907363pt;}
.yc5{bottom:885.903352pt;}
.y108{bottom:887.094839pt;}
.y146{bottom:887.101506pt;}
.y3c{bottom:887.151561pt;}
.y1c0{bottom:889.237363pt;}
.y21f{bottom:898.249067pt;}
.yc4{bottom:899.236685pt;}
.y107{bottom:900.429506pt;}
.y145{bottom:900.433506pt;}
.y3b{bottom:900.487561pt;}
.y1bf{bottom:900.567363pt;}
.y21e{bottom:911.581067pt;}
.y1be{bottom:911.897363pt;}
.yc3{bottom:912.572685pt;}
.y106{bottom:913.761506pt;}
.y144{bottom:913.765506pt;}
.y3a{bottom:913.819561pt;}
.y1bd{bottom:923.227363pt;}
.y21d{bottom:924.913067pt;}
.yc2{bottom:925.904685pt;}
.y105{bottom:927.094839pt;}
.y143{bottom:927.097506pt;}
.y39{bottom:927.151561pt;}
.y1bc{bottom:934.557363pt;}
.y21c{bottom:938.245067pt;}
.yc1{bottom:939.236685pt;}
.y104{bottom:940.429506pt;}
.y38{bottom:940.486228pt;}
.y1bb{bottom:945.887363pt;}
.y21b{bottom:951.577067pt;}
.yc0{bottom:952.568685pt;}
.y103{bottom:953.761506pt;}
.y37{bottom:953.818228pt;}
.y1ba{bottom:957.217363pt;}
.y21a{bottom:964.910400pt;}
.ybf{bottom:965.902018pt;}
.y102{bottom:967.093506pt;}
.y36{bottom:967.150228pt;}
.y1b9{bottom:968.547363pt;}
.y77{bottom:1013.902507pt;}
.y86{bottom:1013.996908pt;}
.y35{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h11{height:27.275268pt;}
.h2{height:30.687500pt;}
.h31{height:31.476562pt;}
.h16{height:32.605469pt;}
.h9{height:34.523438pt;}
.h14{height:37.038880pt;}
.h1c{height:38.359375pt;}
.h32{height:39.560000pt;}
.h34{height:40.080000pt;}
.h3{height:40.604167pt;}
.h33{height:40.960000pt;}
.h1b{height:42.195312pt;}
.h13{height:43.120594pt;}
.h12{height:43.141927pt;}
.h6{height:43.600260pt;}
.h8{height:43.718750pt;}
.h7{height:43.718913pt;}
.h15{height:43.887578pt;}
.h35{height:44.834667pt;}
.ha{height:45.703125pt;}
.hc{height:47.472000pt;}
.hb{height:47.486068pt;}
.h1f{height:47.603475pt;}
.h2d{height:47.613608pt;}
.h28{height:47.624116pt;}
.h26{height:47.629938pt;}
.h2e{height:47.630142pt;}
.h30{height:47.635434pt;}
.h23{height:47.640605pt;}
.he{height:47.640767pt;}
.h18{height:47.640930pt;}
.h2a{height:47.645450pt;}
.h2b{height:47.645527pt;}
.h25{height:47.645938pt;}
.hd{height:47.646101pt;}
.h17{height:47.646264pt;}
.h29{height:47.650783pt;}
.h2c{height:47.650942pt;}
.h24{height:47.651271pt;}
.hf{height:47.651434pt;}
.h20{height:47.651475pt;}
.h19{height:47.651597pt;}
.h2f{height:47.656605pt;}
.h21{height:47.656808pt;}
.h27{height:48.080000pt;}
.h1a{height:48.096000pt;}
.h22{height:49.120000pt;}
.h1e{height:49.152000pt;}
.h4{height:50.755208pt;}
.h1d{height:50.781250pt;}
.h10{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.x5{left:207.874003pt;}
.x6{left:223.877602pt;}
.xb{left:225.874125pt;}
.xc{left:268.887736pt;}
.x4{left:521.612549pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.xa{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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