
    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_c51172692f2a3f579368f6e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_cfe7f9d1a85a12c4345ee1c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_0d655cd742242e80aa6c961d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_53f2de11c825283b4c56d6fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_5295d89931832af11c24b828.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_254ed50abfdfb1ef6b8adde0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_cb95bb8544277adf78d5c690.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1a2ded85861c21e873e03ef7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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_3329433e92e40c68eb9812b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_c60338eab966449b3b450c06.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v5{vertical-align:-11.730000px;}
.va{vertical-align:-9.358200px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.620000px;}
.vb{vertical-align:9.358200px;}
.v8{vertical-align:11.697000px;}
.v4{vertical-align:22.445400px;}
.v3{vertical-align:28.949400px;}
.v1{vertical-align:30.381600px;}
.v9{vertical-align:32.976000px;}
.v7{vertical-align:35.692200px;}
.v6{vertical-align:47.389200px;}
.ls62{letter-spacing:-6.192000px;}
.ls63{letter-spacing:-4.416000px;}
.ls5c{letter-spacing:-3.300000px;}
.ls8b{letter-spacing:-2.400000px;}
.ls82{letter-spacing:-1.776000px;}
.ls79{letter-spacing:-0.864000px;}
.ls5{letter-spacing:-0.780000px;}
.ls78{letter-spacing:-0.540000px;}
.ls5b{letter-spacing:-0.420000px;}
.lsa0{letter-spacing:-0.384000px;}
.lsa1{letter-spacing:-0.336000px;}
.ls6{letter-spacing:-0.315000px;}
.ls7{letter-spacing:-0.183645px;}
.ls44{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.120000px;}
.ls30{letter-spacing:-0.060000px;}
.ls46{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.000600px;}
.ls4d{letter-spacing:0.001200px;}
.ls0{letter-spacing:0.004140px;}
.ls3{letter-spacing:0.005520px;}
.ls7e{letter-spacing:0.007200px;}
.ls7c{letter-spacing:0.008400px;}
.ls74{letter-spacing:0.009600px;}
.ls58{letter-spacing:0.013200px;}
.ls73{letter-spacing:0.013800px;}
.ls1{letter-spacing:0.021000px;}
.ls2{letter-spacing:0.027600px;}
.ls45{letter-spacing:0.048000px;}
.ls26{letter-spacing:0.060000px;}
.ls6b{letter-spacing:0.064560px;}
.ls69{letter-spacing:0.065160px;}
.ls51{letter-spacing:0.068760px;}
.ls4f{letter-spacing:0.069360px;}
.ls68{letter-spacing:0.088800px;}
.ls50{letter-spacing:0.105600px;}
.ls6a{letter-spacing:0.117600px;}
.ls25{letter-spacing:0.120000px;}
.ls41{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls72{letter-spacing:0.182160px;}
.ls70{letter-spacing:0.188400px;}
.ls94{letter-spacing:0.192000px;}
.ls28{letter-spacing:0.240000px;}
.ls57{letter-spacing:0.241560px;}
.ls3f{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.300000px;}
.ls5f{letter-spacing:0.304620px;}
.ls61{letter-spacing:0.305220px;}
.ls5e{letter-spacing:0.314820px;}
.ls71{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.360000px;}
.ls56{letter-spacing:0.366000px;}
.ls53{letter-spacing:0.388560px;}
.ls13{letter-spacing:0.420000px;}
.ls8d{letter-spacing:0.432000px;}
.ls6f{letter-spacing:0.444360px;}
.ls6d{letter-spacing:0.444960px;}
.ls31{letter-spacing:0.480000px;}
.ls60{letter-spacing:0.511800px;}
.ls43{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.540000px;}
.ls5d{letter-spacing:0.553200px;}
.ls8e{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.600000px;}
.ls52{letter-spacing:0.619800px;}
.ls9a{letter-spacing:0.624000px;}
.ls1a{letter-spacing:0.660000px;}
.ls3c{letter-spacing:0.672000px;}
.ls55{letter-spacing:0.707400px;}
.ls18{letter-spacing:0.720000px;}
.ls6c{letter-spacing:0.747000px;}
.ls3d{letter-spacing:0.768000px;}
.ls6e{letter-spacing:0.775800px;}
.ls2e{letter-spacing:0.780000px;}
.ls42{letter-spacing:0.816000px;}
.lsc{letter-spacing:0.840000px;}
.ls8f{letter-spacing:0.864000px;}
.ls65{letter-spacing:0.864360px;}
.ls67{letter-spacing:0.864960px;}
.ls32{letter-spacing:0.900000px;}
.ls3b{letter-spacing:0.912000px;}
.ls1f{letter-spacing:0.960000px;}
.ls3e{letter-spacing:1.008000px;}
.ls20{letter-spacing:1.020000px;}
.ls2a{letter-spacing:1.080000px;}
.ls91{letter-spacing:1.104000px;}
.ls17{letter-spacing:1.140000px;}
.ls77{letter-spacing:1.152000px;}
.ls1b{letter-spacing:1.200000px;}
.ls1e{letter-spacing:1.260000px;}
.lsa3{letter-spacing:1.296000px;}
.ls29{letter-spacing:1.320000px;}
.ls97{letter-spacing:1.344000px;}
.ls23{letter-spacing:1.380000px;}
.ls96{letter-spacing:1.392000px;}
.ls27{letter-spacing:1.440000px;}
.ls66{letter-spacing:1.483200px;}
.lsa4{letter-spacing:1.488000px;}
.ls2d{letter-spacing:1.500000px;}
.ls92{letter-spacing:1.536000px;}
.ls85{letter-spacing:1.560000px;}
.ls95{letter-spacing:1.584000px;}
.ls19{letter-spacing:1.620000px;}
.ls39{letter-spacing:1.680000px;}
.ls37{letter-spacing:1.740000px;}
.ls40{letter-spacing:1.776000px;}
.ls11{letter-spacing:1.800000px;}
.ls1c{letter-spacing:1.860000px;}
.lsa5{letter-spacing:1.872000px;}
.ls36{letter-spacing:1.920000px;}
.ls9e{letter-spacing:1.968000px;}
.ls90{letter-spacing:2.016000px;}
.ls21{letter-spacing:2.040000px;}
.ls93{letter-spacing:2.064000px;}
.ls24{letter-spacing:2.100000px;}
.ls8c{letter-spacing:2.112000px;}
.ls88{letter-spacing:2.160000px;}
.ls76{letter-spacing:2.208000px;}
.ls5a{letter-spacing:2.220000px;}
.ls98{letter-spacing:2.256000px;}
.ls9{letter-spacing:2.280000px;}
.ls35{letter-spacing:2.340000px;}
.ls86{letter-spacing:2.460000px;}
.ls9b{letter-spacing:2.496000px;}
.ls38{letter-spacing:2.520000px;}
.ls99{letter-spacing:2.544000px;}
.ls1d{letter-spacing:2.580000px;}
.ls22{letter-spacing:2.640000px;}
.ls10{letter-spacing:2.700000px;}
.ls14{letter-spacing:2.760000px;}
.ls7a{letter-spacing:2.880000px;}
.ls47{letter-spacing:2.940000px;}
.lsa2{letter-spacing:2.976000px;}
.lse{letter-spacing:3.000000px;}
.ls9c{letter-spacing:3.024000px;}
.ls2c{letter-spacing:3.060000px;}
.lsb{letter-spacing:3.120000px;}
.ls59{letter-spacing:3.180000px;}
.ls75{letter-spacing:3.240000px;}
.ls48{letter-spacing:3.300000px;}
.ls4a{letter-spacing:3.420000px;}
.ls3a{letter-spacing:3.480000px;}
.ls34{letter-spacing:3.540000px;}
.ls84{letter-spacing:3.600000px;}
.ls2f{letter-spacing:3.720000px;}
.ls9f{letter-spacing:3.936000px;}
.ls4c{letter-spacing:3.960000px;}
.ls9d{letter-spacing:3.984000px;}
.ls33{letter-spacing:4.200000px;}
.ls16{letter-spacing:4.500000px;}
.ls4e{letter-spacing:4.560000px;}
.ls64{letter-spacing:4.740000px;}
.ls49{letter-spacing:4.920000px;}
.ls83{letter-spacing:5.040000px;}
.ls54{letter-spacing:5.640000px;}
.lsd{letter-spacing:5.760000px;}
.ls8a{letter-spacing:6.120000px;}
.ls87{letter-spacing:7.380000px;}
.ls89{letter-spacing:8.700000px;}
.ls80{letter-spacing:316.057248px;}
.ls7f{letter-spacing:316.866048px;}
.ls7d{letter-spacing:318.202248px;}
.ls7b{letter-spacing:318.706248px;}
.ls81{letter-spacing:522.864000px;}
.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;}
}
.ws70{word-spacing:-19.140000px;}
.ws3{word-spacing:-16.680000px;}
.ws3a{word-spacing:-15.000000px;}
.ws82{word-spacing:-14.880000px;}
.ws7f{word-spacing:-14.112000px;}
.ws7e{word-spacing:-14.064000px;}
.ws6{word-spacing:-13.344000px;}
.ws84{word-spacing:-13.200000px;}
.ws7d{word-spacing:-13.104000px;}
.ws86{word-spacing:-12.864000px;}
.ws85{word-spacing:-12.816000px;}
.ws6f{word-spacing:-12.600000px;}
.ws7c{word-spacing:-12.576000px;}
.ws5{word-spacing:-12.510000px;}
.ws83{word-spacing:-12.480000px;}
.ws80{word-spacing:-12.144000px;}
.ws81{word-spacing:-12.048000px;}
.ws4f{word-spacing:-12.000000px;}
.ws3b{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.210662px;}
.ws1{word-spacing:-10.027017px;}
.ws4{word-spacing:-9.724440px;}
.wsb{word-spacing:-8.745000px;}
.ws2e{word-spacing:-6.996000px;}
.ws9a{word-spacing:-3.984000px;}
.ws41{word-spacing:-3.300000px;}
.ws8{word-spacing:-2.886000px;}
.ws99{word-spacing:-2.880000px;}
.ws4a{word-spacing:-2.700000px;}
.ws25{word-spacing:-2.640000px;}
.ws1e{word-spacing:-2.220000px;}
.ws8e{word-spacing:-2.112000px;}
.ws8d{word-spacing:-1.536000px;}
.ws76{word-spacing:-1.500000px;}
.wsa4{word-spacing:-1.440000px;}
.ws9{word-spacing:-1.134000px;}
.ws89{word-spacing:-1.104000px;}
.ws57{word-spacing:-1.080000px;}
.ws9e{word-spacing:-0.768000px;}
.ws59{word-spacing:-0.720000px;}
.ws4b{word-spacing:-0.600000px;}
.ws96{word-spacing:-0.576000px;}
.ws9c{word-spacing:-0.480000px;}
.ws88{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.420000px;}
.ws2a{word-spacing:-0.360000px;}
.ws5b{word-spacing:-0.314820px;}
.ws1c{word-spacing:-0.300000px;}
.ws90{word-spacing:-0.288000px;}
.ws40{word-spacing:-0.240000px;}
.ws91{word-spacing:-0.192000px;}
.ws1a{word-spacing:-0.060000px;}
.ws95{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws19{word-spacing:0.060000px;}
.ws97{word-spacing:0.096000px;}
.ws15{word-spacing:0.120000px;}
.ws56{word-spacing:0.180000px;}
.ws39{word-spacing:0.192000px;}
.ws9b{word-spacing:0.240000px;}
.ws3d{word-spacing:0.300000px;}
.wsa{word-spacing:0.315000px;}
.ws38{word-spacing:0.384000px;}
.ws44{word-spacing:0.420000px;}
.wsa2{word-spacing:0.432000px;}
.ws3c{word-spacing:0.540000px;}
.ws46{word-spacing:0.600000px;}
.ws8a{word-spacing:0.624000px;}
.ws2b{word-spacing:0.660000px;}
.ws9f{word-spacing:0.672000px;}
.ws71{word-spacing:0.720000px;}
.wsa5{word-spacing:0.768000px;}
.ws7b{word-spacing:0.780000px;}
.ws20{word-spacing:0.840000px;}
.ws64{word-spacing:0.864000px;}
.ws47{word-spacing:0.900000px;}
.ws63{word-spacing:0.912000px;}
.ws13{word-spacing:0.960000px;}
.ws8f{word-spacing:1.008000px;}
.ws32{word-spacing:1.020000px;}
.ws62{word-spacing:1.080000px;}
.wsa0{word-spacing:1.104000px;}
.ws1f{word-spacing:1.200000px;}
.ws5c{word-spacing:1.260000px;}
.ws98{word-spacing:1.296000px;}
.ws79{word-spacing:1.320000px;}
.ws55{word-spacing:1.380000px;}
.ws87{word-spacing:1.488000px;}
.ws24{word-spacing:1.500000px;}
.wsd{word-spacing:1.560000px;}
.wsa1{word-spacing:1.584000px;}
.ws49{word-spacing:1.680000px;}
.ws31{word-spacing:1.800000px;}
.ws48{word-spacing:1.860000px;}
.ws92{word-spacing:1.968000px;}
.wsa6{word-spacing:2.064000px;}
.ws29{word-spacing:2.100000px;}
.ws5a{word-spacing:2.160000px;}
.ws34{word-spacing:2.220000px;}
.ws8b{word-spacing:2.256000px;}
.ws10{word-spacing:2.340000px;}
.ws93{word-spacing:2.352000px;}
.ws72{word-spacing:2.400000px;}
.ws94{word-spacing:2.496000px;}
.ws1d{word-spacing:2.520000px;}
.ws58{word-spacing:2.580000px;}
.wsa3{word-spacing:2.592000px;}
.ws6e{word-spacing:2.640000px;}
.ws37{word-spacing:2.688000px;}
.ws21{word-spacing:2.820000px;}
.ws3e{word-spacing:2.880000px;}
.ws4c{word-spacing:2.940000px;}
.ws3f{word-spacing:3.000000px;}
.ws73{word-spacing:3.060000px;}
.ws9d{word-spacing:3.120000px;}
.ws1b{word-spacing:3.240000px;}
.ws61{word-spacing:3.300000px;}
.ws74{word-spacing:3.360000px;}
.ws23{word-spacing:3.420000px;}
.ws33{word-spacing:3.480000px;}
.ws4d{word-spacing:3.600000px;}
.ws16{word-spacing:3.720000px;}
.ws43{word-spacing:3.780000px;}
.ws18{word-spacing:3.840000px;}
.ws8c{word-spacing:3.888000px;}
.ws12{word-spacing:3.900000px;}
.ws35{word-spacing:3.936000px;}
.ws77{word-spacing:3.960000px;}
.ws36{word-spacing:3.984000px;}
.ws26{word-spacing:4.080000px;}
.ws75{word-spacing:4.200000px;}
.ws22{word-spacing:4.260000px;}
.ws17{word-spacing:4.320000px;}
.ws42{word-spacing:4.380000px;}
.ws5e{word-spacing:4.416000px;}
.wse{word-spacing:4.440000px;}
.ws14{word-spacing:4.500000px;}
.ws27{word-spacing:4.560000px;}
.ws11{word-spacing:4.740000px;}
.ws54{word-spacing:4.860000px;}
.wsf{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.ws60{word-spacing:5.280000px;}
.ws7a{word-spacing:5.460000px;}
.ws78{word-spacing:5.520000px;}
.ws45{word-spacing:5.640000px;}
.ws5d{word-spacing:6.192000px;}
.ws52{word-spacing:42.576000px;}
.ws0{word-spacing:49.321608px;}
.ws51{word-spacing:58.560000px;}
.ws2d{word-spacing:75.168000px;}
.ws30{word-spacing:79.152000px;}
.ws2f{word-spacing:90.720000px;}
.ws50{word-spacing:91.824000px;}
.ws53{word-spacing:100.560000px;}
.ws6a{word-spacing:222.768000px;}
.ws67{word-spacing:224.544000px;}
.ws66{word-spacing:225.648000px;}
.ws6d{word-spacing:226.560000px;}
.ws6b{word-spacing:227.568000px;}
.ws6c{word-spacing:228.495000px;}
.ws4e{word-spacing:231.024000px;}
.ws69{word-spacing:234.672000px;}
.ws68{word-spacing:237.168000px;}
.ws2c{word-spacing:337.632000px;}
.ws65{word-spacing:440.304000px;}
.ws5f{word-spacing:600.864000px;}
._a{margin-left:-2898.188400px;}
._c{margin-left:-2874.380400px;}
._28{margin-left:-8.700000px;}
._4{margin-left:-7.500000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.507600px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._3{width:1.134000px;}
._8{width:2.224800px;}
._6{width:3.327600px;}
._7{width:4.564800px;}
._9{width:5.810400px;}
._b{width:7.560000px;}
._26{width:8.880000px;}
._20{width:42.672000px;}
._59{width:53.295000px;}
._51{width:54.576000px;}
._f{width:56.787600px;}
._27{width:62.245800px;}
._12{width:69.408000px;}
._4c{width:70.560000px;}
._4e{width:72.870000px;}
._54{width:78.576000px;}
._14{width:81.408000px;}
._22{width:84.096000px;}
._1d{width:85.392000px;}
._16{width:88.080000px;}
._55{width:94.560000px;}
._11{width:96.096000px;}
._1a{width:100.992000px;}
._1f{width:102.720000px;}
._18{width:104.496000px;}
._1c{width:114.672000px;}
._21{width:149.232000px;}
._56{width:205.728000px;}
._50{width:208.416000px;}
._53{width:213.366000px;}
._58{width:227.088000px;}
._4a{width:232.368000px;}
._66{width:239.280000px;}
._74{width:241.050000px;}
._4d{width:243.072000px;}
._2c{width:244.416000px;}
._65{width:249.168000px;}
._4f{width:251.040000px;}
._49{width:252.288000px;}
._4b{width:253.350000px;}
._6b{width:254.454000px;}
._45{width:257.424000px;}
._57{width:259.056000px;}
._52{width:270.099600px;}
._48{width:281.958000px;}
._44{width:296.784000px;}
._69{width:302.208000px;}
._5b{width:306.672000px;}
._43{width:309.792000px;}
._46{width:314.535600px;}
._68{width:320.208000px;}
._47{width:324.870000px;}
._38{width:329.424000px;}
._5a{width:330.432000px;}
._15{width:334.608000px;}
._67{width:338.208000px;}
._2b{width:344.112000px;}
._6a{width:348.672000px;}
._3c{width:353.562000px;}
._42{width:355.279200px;}
._13{width:357.216000px;}
._70{width:362.208000px;}
._64{width:366.048000px;}
._25{width:368.125200px;}
._6f{width:374.208000px;}
._31{width:376.848000px;}
._71{width:378.672000px;}
._40{width:382.224000px;}
._33{width:387.456000px;}
._34{width:390.192000px;}
._39{width:395.190000px;}
._41{width:406.224000px;}
._2d{width:408.912000px;}
._36{width:411.414000px;}
._2f{width:413.766000px;}
._32{width:416.784000px;}
._37{width:424.848000px;}
._30{width:427.200000px;}
._29{width:429.696000px;}
._e{width:436.608000px;}
._35{width:440.784000px;}
._23{width:446.544000px;}
._2a{width:461.376000px;}
._3d{width:464.880000px;}
._1b{width:471.888000px;}
._19{width:477.648000px;}
._1e{width:478.704000px;}
._3a{width:488.784000px;}
._17{width:492.768000px;}
._2e{width:512.784000px;}
._3e{width:536.784000px;}
._5e{width:542.304000px;}
._72{width:546.864000px;}
._6d{width:549.504000px;}
._6e{width:554.502000px;}
._73{width:568.224000px;}
._6c{width:576.192000px;}
._63{width:597.120000px;}
._10{width:600.771600px;}
._d{width:603.792000px;}
._24{width:624.579600px;}
._5d{width:648.672000px;}
._62{width:703.824000px;}
._5c{width:754.560000px;}
._60{width:757.200000px;}
._5f{width:778.512000px;}
._61{width:807.840000px;}
._3b{width:856.950000px;}
._3f{width:878.640000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y269{bottom:80.263500px;}
.y1bb{bottom:83.183700px;}
.y71{bottom:83.770350px;}
.y62{bottom:83.772600px;}
.yf1{bottom:83.912100px;}
.y158{bottom:84.024750px;}
.yb3{bottom:84.428700px;}
.y2a{bottom:88.023000px;}
.y228{bottom:89.263500px;}
.y11e{bottom:91.825500px;}
.yde{bottom:92.788800px;}
.y268{bottom:95.263500px;}
.y189{bottom:97.852950px;}
.y1ba{bottom:99.682050px;}
.y70{bottom:101.770350px;}
.y61{bottom:101.772600px;}
.y29{bottom:103.023000px;}
.y227{bottom:104.263500px;}
.ydd{bottom:109.292700px;}
.y157{bottom:109.540800px;}
.y11d{bottom:109.825500px;}
.y267{bottom:110.263500px;}
.y188{bottom:114.365250px;}
.y226{bottom:119.263500px;}
.y1ea{bottom:119.635350px;}
.y6f{bottom:119.770350px;}
.y60{bottom:119.772600px;}
.yf0{bottom:119.920350px;}
.y1b9{bottom:125.194050px;}
.y266{bottom:125.263500px;}
.ydc{bottom:125.540700px;}
.y156{bottom:125.792700px;}
.y11c{bottom:127.825500px;}
.y187{bottom:130.865250px;}
.y225{bottom:134.263500px;}
.y1e9{bottom:137.230350px;}
.y6e{bottom:137.770350px;}
.y5f{bottom:137.772600px;}
.y265{bottom:140.263500px;}
.y1b8{bottom:141.442050px;}
.ydb{bottom:142.081950px;}
.y155{bottom:142.090200px;}
.y11b{bottom:145.825500px;}
.y224{bottom:149.263500px;}
.y264{bottom:155.263500px;}
.y6d{bottom:155.770350px;}
.y5e{bottom:155.772600px;}
.yef{bottom:155.920350px;}
.y186{bottom:156.377250px;}
.y1b7{bottom:157.721850px;}
.yda{bottom:158.329950px;}
.y154{bottom:158.338200px;}
.y11a{bottom:163.825500px;}
.y223{bottom:164.263500px;}
.y263{bottom:170.263500px;}
.y185{bottom:172.625250px;}
.y1e8{bottom:173.635350px;}
.y6c{bottom:173.770350px;}
.y5d{bottom:173.772600px;}
.yee{bottom:173.920350px;}
.y1b6{bottom:173.969850px;}
.y153{bottom:174.586200px;}
.yd9{bottom:174.829950px;}
.y222{bottom:179.263500px;}
.y262{bottom:185.263500px;}
.y184{bottom:188.873250px;}
.y1b5{bottom:190.217850px;}
.y152{bottom:190.834200px;}
.y1e7{bottom:191.230350px;}
.yd8{bottom:191.329950px;}
.y6b{bottom:191.770350px;}
.y5c{bottom:191.772600px;}
.yed{bottom:191.920350px;}
.y221{bottom:194.263500px;}
.y119{bottom:199.420500px;}
.y261{bottom:200.263500px;}
.y183{bottom:205.121250px;}
.y1b4{bottom:206.465850px;}
.y151{bottom:207.082200px;}
.yd7{bottom:207.829950px;}
.y220{bottom:209.263500px;}
.y6a{bottom:209.770350px;}
.y5b{bottom:209.772600px;}
.yec{bottom:209.920350px;}
.y260{bottom:215.263500px;}
.y28{bottom:216.064200px;}
.y118{bottom:217.420500px;}
.y182{bottom:221.369250px;}
.y1b3{bottom:222.713850px;}
.y150{bottom:223.330200px;}
.yd6{bottom:224.077950px;}
.y21f{bottom:224.263500px;}
.y1e6{bottom:227.635350px;}
.y69{bottom:227.770350px;}
.y5a{bottom:227.772600px;}
.yeb{bottom:227.920350px;}
.y25f{bottom:230.263500px;}
.y1b2{bottom:238.961850px;}
.y21e{bottom:239.263500px;}
.y14f{bottom:239.578200px;}
.yd5{bottom:240.577950px;}
.y27{bottom:243.409200px;}
.y25e{bottom:245.263500px;}
.y1e5{bottom:245.635350px;}
.y68{bottom:245.770350px;}
.y59{bottom:245.772600px;}
.yea{bottom:245.920350px;}
.y181{bottom:253.253250px;}
.y117{bottom:253.285500px;}
.y21d{bottom:254.263500px;}
.y1b1{bottom:255.209850px;}
.y14e{bottom:255.826200px;}
.yd4{bottom:256.825950px;}
.y25d{bottom:260.263500px;}
.y26{bottom:261.409200px;}
.y1e4{bottom:263.635350px;}
.y67{bottom:263.770350px;}
.y58{bottom:263.772600px;}
.ye9{bottom:263.920350px;}
.y21c{bottom:269.263500px;}
.y1b0{bottom:271.513350px;}
.y14d{bottom:272.074200px;}
.yd3{bottom:273.325950px;}
.y25c{bottom:275.263500px;}
.y25{bottom:279.409200px;}
.y1e3{bottom:281.230350px;}
.y1c0{bottom:281.770350px;}
.y57{bottom:281.772600px;}
.ye8{bottom:281.920350px;}
.y21b{bottom:284.263500px;}
.y1af{bottom:287.761350px;}
.y180{bottom:288.148350px;}
.y14c{bottom:288.322200px;}
.y25b{bottom:290.263500px;}
.y24{bottom:297.409200px;}
.y21a{bottom:299.263500px;}
.y1bf{bottom:299.770350px;}
.y56{bottom:299.772600px;}
.ye7{bottom:299.920350px;}
.yd2{bottom:302.329950px;}
.y1ae{bottom:304.009350px;}
.y14b{bottom:304.570200px;}
.y25a{bottom:305.263500px;}
.y116{bottom:307.825500px;}
.y219{bottom:314.263500px;}
.y23{bottom:315.409200px;}
.y1e2{bottom:317.635350px;}
.y1be{bottom:317.770350px;}
.y55{bottom:317.772600px;}
.ye6{bottom:317.920350px;}
.yd1{bottom:318.829950px;}
.y1ad{bottom:320.257350px;}
.y259{bottom:320.263500px;}
.y14a{bottom:320.818200px;}
.y115{bottom:325.825500px;}
.y218{bottom:329.263500px;}
.y22{bottom:333.409200px;}
.y17f{bottom:334.621950px;}
.y1e1{bottom:335.230350px;}
.y258{bottom:335.263500px;}
.yd0{bottom:335.329950px;}
.y1bd{bottom:335.770350px;}
.y54{bottom:335.772600px;}
.ye5{bottom:335.920350px;}
.y1ac{bottom:336.505350px;}
.y114{bottom:343.825500px;}
.y146{bottom:344.068200px;}
.y149{bottom:344.074200px;}
.y217{bottom:344.263500px;}
.y257{bottom:350.263500px;}
.y17e{bottom:350.365950px;}
.y21{bottom:351.409200px;}
.ycf{bottom:351.577950px;}
.y145{bottom:352.324200px;}
.y1ab{bottom:352.753350px;}
.y17b{bottom:353.770350px;}
.y53{bottom:353.772600px;}
.ye4{bottom:353.920350px;}
.y216{bottom:359.263500px;}
.y147{bottom:360.568200px;}
.y148{bottom:360.574200px;}
.y113{bottom:361.825500px;}
.y256{bottom:365.263500px;}
.y17d{bottom:366.109950px;}
.yce{bottom:368.077950px;}
.y1aa{bottom:369.001350px;}
.y20{bottom:369.409200px;}
.y1e0{bottom:371.635350px;}
.y17a{bottom:371.770350px;}
.y52{bottom:371.772600px;}
.ye3{bottom:371.920350px;}
.y215{bottom:374.263500px;}
.y112{bottom:379.825500px;}
.y255{bottom:380.263500px;}
.y17c{bottom:381.853950px;}
.ycd{bottom:384.577950px;}
.y1a9{bottom:385.249350px;}
.y144{bottom:387.219300px;}
.y1f{bottom:387.409200px;}
.y214{bottom:389.263500px;}
.y66{bottom:389.367600px;}
.y1df{bottom:389.635350px;}
.y179{bottom:389.770350px;}
.y51{bottom:389.772600px;}
.ye2{bottom:389.920350px;}
.y254{bottom:395.263500px;}
.y111{bottom:397.825500px;}
.ycc{bottom:400.825950px;}
.y1a8{bottom:401.497350px;}
.yb4{bottom:402.043050px;}
.y213{bottom:404.263500px;}
.y1e{bottom:405.409200px;}
.y1de{bottom:407.635350px;}
.y178{bottom:407.770350px;}
.y50{bottom:407.772600px;}
.ye1{bottom:407.920350px;}
.y253{bottom:410.263500px;}
.y110{bottom:415.825500px;}
.ycb{bottom:417.325950px;}
.y1a7{bottom:417.745350px;}
.y212{bottom:419.263500px;}
.y1d{bottom:423.409200px;}
.y65{bottom:425.232600px;}
.y252{bottom:425.263500px;}
.y1dd{bottom:425.635350px;}
.y177{bottom:425.770350px;}
.y4f{bottom:425.772600px;}
.ye0{bottom:425.920350px;}
.y143{bottom:431.623200px;}
.y10f{bottom:433.825500px;}
.yca{bottom:433.825950px;}
.y1a6{bottom:433.993350px;}
.y211{bottom:434.263500px;}
.y251{bottom:440.263500px;}
.y1c{bottom:441.409200px;}
.y1dc{bottom:443.635350px;}
.y176{bottom:443.770350px;}
.y4e{bottom:443.772600px;}
.y92{bottom:443.920350px;}
.yb2{bottom:443.935350px;}
.y210{bottom:449.263500px;}
.y1a5{bottom:450.241350px;}
.y10e{bottom:451.825500px;}
.y250{bottom:455.263500px;}
.y142{bottom:457.139100px;}
.y1b{bottom:459.409200px;}
.y1db{bottom:461.635350px;}
.y175{bottom:461.770350px;}
.y4d{bottom:461.772600px;}
.y91{bottom:461.920350px;}
.yb1{bottom:461.935350px;}
.yc9{bottom:462.829950px;}
.y20f{bottom:464.263500px;}
.y1a4{bottom:466.489350px;}
.y10d{bottom:469.825500px;}
.y24f{bottom:470.263500px;}
.y141{bottom:473.434500px;}
.y1a{bottom:477.409200px;}
.y20e{bottom:479.263500px;}
.yc8{bottom:479.329950px;}
.y1da{bottom:479.635350px;}
.y174{bottom:479.770350px;}
.y4c{bottom:479.772600px;}
.y90{bottom:479.920350px;}
.yb0{bottom:479.935350px;}
.y1a3{bottom:482.737350px;}
.y24e{bottom:485.263500px;}
.y10c{bottom:487.825500px;}
.y140{bottom:489.682500px;}
.y20d{bottom:494.263500px;}
.y19{bottom:495.409200px;}
.yc7{bottom:495.577950px;}
.y1d9{bottom:497.230350px;}
.y173{bottom:497.770350px;}
.y4b{bottom:497.772600px;}
.y8f{bottom:497.920350px;}
.yaf{bottom:497.935350px;}
.y1a2{bottom:499.060800px;}
.y24d{bottom:500.263500px;}
.y10b{bottom:505.825500px;}
.y13f{bottom:505.930500px;}
.y20c{bottom:509.263500px;}
.yc6{bottom:512.077950px;}
.y18{bottom:513.409200px;}
.y24c{bottom:515.263500px;}
.y1a1{bottom:515.308800px;}
.y172{bottom:515.770350px;}
.y4a{bottom:515.772600px;}
.y8e{bottom:515.920350px;}
.yae{bottom:515.935350px;}
.y13e{bottom:522.178500px;}
.y10a{bottom:523.825500px;}
.y20b{bottom:524.263500px;}
.yc5{bottom:528.577950px;}
.y24b{bottom:530.263500px;}
.y17{bottom:531.409200px;}
.y1a0{bottom:531.556800px;}
.y1d8{bottom:533.635350px;}
.y171{bottom:533.770350px;}
.y49{bottom:533.772600px;}
.y8d{bottom:533.920350px;}
.yad{bottom:533.935350px;}
.y13d{bottom:538.426500px;}
.y20a{bottom:539.263500px;}
.y109{bottom:541.825500px;}
.yc4{bottom:544.825950px;}
.y24a{bottom:545.263500px;}
.y19f{bottom:547.804800px;}
.y16{bottom:549.409200px;}
.y1d7{bottom:551.635350px;}
.y170{bottom:551.770350px;}
.y48{bottom:551.772600px;}
.y8c{bottom:551.920350px;}
.yac{bottom:551.935350px;}
.y209{bottom:554.263500px;}
.y13c{bottom:554.674500px;}
.y108{bottom:559.825500px;}
.y249{bottom:560.263500px;}
.yc3{bottom:561.325950px;}
.y19e{bottom:564.052800px;}
.y15{bottom:567.409200px;}
.y208{bottom:569.263500px;}
.y1d6{bottom:569.635350px;}
.y16f{bottom:569.770350px;}
.y47{bottom:569.772600px;}
.y8b{bottom:569.920350px;}
.yab{bottom:569.935350px;}
.y13b{bottom:570.922500px;}
.y248{bottom:575.263500px;}
.y107{bottom:577.825500px;}
.yc2{bottom:577.825950px;}
.y19d{bottom:580.300800px;}
.y207{bottom:584.263500px;}
.y14{bottom:585.409200px;}
.y13a{bottom:587.170500px;}
.y1d5{bottom:587.635350px;}
.y16e{bottom:587.770350px;}
.y46{bottom:587.772600px;}
.y8a{bottom:587.920350px;}
.yaa{bottom:587.935350px;}
.y247{bottom:590.263500px;}
.yc1{bottom:594.073950px;}
.y106{bottom:595.825500px;}
.y19c{bottom:596.548800px;}
.y206{bottom:599.263500px;}
.y13{bottom:603.409200px;}
.y139{bottom:603.418500px;}
.y246{bottom:605.263500px;}
.y1d4{bottom:605.635350px;}
.y16d{bottom:605.770350px;}
.y45{bottom:605.772600px;}
.y89{bottom:605.920350px;}
.ya9{bottom:605.935350px;}
.yc0{bottom:610.573950px;}
.y19b{bottom:612.796800px;}
.y205{bottom:614.263500px;}
.y138{bottom:619.666500px;}
.y245{bottom:620.263500px;}
.y12{bottom:621.409200px;}
.y1d3{bottom:623.635350px;}
.y16c{bottom:623.770350px;}
.y44{bottom:623.772600px;}
.y88{bottom:623.920350px;}
.ya8{bottom:623.935350px;}
.ybf{bottom:627.073950px;}
.y19a{bottom:629.044800px;}
.y204{bottom:629.263500px;}
.y105{bottom:631.825500px;}
.y244{bottom:635.263500px;}
.y137{bottom:635.914500px;}
.y11{bottom:639.409200px;}
.y1d2{bottom:641.230350px;}
.y16b{bottom:641.770350px;}
.y43{bottom:641.772600px;}
.y87{bottom:641.920350px;}
.ya7{bottom:641.935350px;}
.ybe{bottom:643.321950px;}
.y203{bottom:644.263500px;}
.y199{bottom:645.292800px;}
.y104{bottom:649.825500px;}
.y243{bottom:650.263500px;}
.y136{bottom:652.162500px;}
.y202{bottom:659.263500px;}
.y16a{bottom:659.770350px;}
.y42{bottom:659.772600px;}
.ybd{bottom:659.821950px;}
.y86{bottom:659.920350px;}
.ya6{bottom:659.935350px;}
.y198{bottom:661.540800px;}
.y242{bottom:665.263500px;}
.y135{bottom:668.410500px;}
.y201{bottom:674.263500px;}
.ybc{bottom:676.321950px;}
.y1d1{bottom:677.635350px;}
.y169{bottom:677.770350px;}
.y41{bottom:677.772600px;}
.y197{bottom:677.788800px;}
.y85{bottom:677.920350px;}
.ya5{bottom:677.935350px;}
.y241{bottom:680.263500px;}
.y10{bottom:684.567300px;}
.y103{bottom:685.825500px;}
.y200{bottom:689.263500px;}
.y196{bottom:694.036800px;}
.y240{bottom:695.263500px;}
.y1d0{bottom:695.635350px;}
.y168{bottom:695.770350px;}
.y40{bottom:695.772600px;}
.y84{bottom:695.920350px;}
.ya4{bottom:695.935350px;}
.yf{bottom:697.018050px;}
.ybb{bottom:698.953950px;}
.y134{bottom:699.922500px;}
.y102{bottom:703.825500px;}
.y1ff{bottom:704.263500px;}
.y23f{bottom:710.263500px;}
.y195{bottom:710.284800px;}
.y1cf{bottom:713.635350px;}
.y167{bottom:713.770350px;}
.y3f{bottom:713.772600px;}
.y83{bottom:713.920350px;}
.ya3{bottom:713.935350px;}
.yba{bottom:715.453950px;}
.y1fe{bottom:719.263500px;}
.y101{bottom:721.825500px;}
.y23e{bottom:725.263500px;}
.y194{bottom:726.532800px;}
.y1ce{bottom:731.635350px;}
.y166{bottom:731.770350px;}
.y3e{bottom:731.772600px;}
.y82{bottom:731.920350px;}
.ya2{bottom:731.935350px;}
.ye{bottom:734.158800px;}
.y1fd{bottom:734.263500px;}
.y133{bottom:734.815350px;}
.y100{bottom:739.825500px;}
.y23d{bottom:740.263500px;}
.y193{bottom:742.780800px;}
.yb9{bottom:746.965950px;}
.yd{bottom:747.658800px;}
.y1fc{bottom:749.263500px;}
.y1cd{bottom:749.635350px;}
.y165{bottom:749.770350px;}
.y3d{bottom:749.772600px;}
.y81{bottom:749.920350px;}
.ya1{bottom:749.935350px;}
.y23c{bottom:755.263500px;}
.yff{bottom:757.825500px;}
.y192{bottom:759.028800px;}
.yc{bottom:761.158800px;}
.y1fb{bottom:764.263500px;}
.y1cc{bottom:767.635350px;}
.y164{bottom:767.770350px;}
.y3c{bottom:767.772600px;}
.y80{bottom:767.920350px;}
.ya0{bottom:767.935350px;}
.y23b{bottom:770.263500px;}
.yb{bottom:774.658950px;}
.y191{bottom:775.276800px;}
.yfe{bottom:775.825500px;}
.y1fa{bottom:779.263500px;}
.yb8{bottom:781.855350px;}
.ya{bottom:782.733600px;}
.y23a{bottom:785.263500px;}
.y1cb{bottom:785.635350px;}
.y132{bottom:785.770350px;}
.y3b{bottom:785.772600px;}
.y160{bottom:785.912100px;}
.y7f{bottom:785.920350px;}
.y9f{bottom:785.935350px;}
.y190{bottom:791.524800px;}
.yfd{bottom:793.825500px;}
.y1f9{bottom:794.263500px;}
.y239{bottom:800.263500px;}
.yb7{bottom:801.355350px;}
.y9{bottom:801.658950px;}
.y1ca{bottom:803.635350px;}
.y131{bottom:803.770350px;}
.y3a{bottom:803.772600px;}
.y15f{bottom:803.912100px;}
.y7e{bottom:803.920350px;}
.y9e{bottom:803.935350px;}
.y18f{bottom:807.772800px;}
.y1f8{bottom:809.263500px;}
.yfc{bottom:811.825500px;}
.y238{bottom:815.263500px;}
.y1c9{bottom:821.635350px;}
.y130{bottom:821.770350px;}
.y39{bottom:821.772600px;}
.y15e{bottom:821.912100px;}
.y126{bottom:821.920350px;}
.y9d{bottom:821.935350px;}
.y1f7{bottom:824.263500px;}
.yfb{bottom:829.825500px;}
.y237{bottom:830.263500px;}
.y8{bottom:830.386200px;}
.y1f6{bottom:839.263500px;}
.y7d{bottom:839.515350px;}
.y1c8{bottom:839.635350px;}
.y18e{bottom:839.658750px;}
.y12f{bottom:839.770350px;}
.y38{bottom:839.772600px;}
.y15d{bottom:839.912100px;}
.y125{bottom:839.920350px;}
.y9c{bottom:839.935350px;}
.y236{bottom:845.263500px;}
.yfa{bottom:847.825500px;}
.y7{bottom:851.380950px;}
.y1f5{bottom:854.263500px;}
.y1c7{bottom:857.635350px;}
.yb6{bottom:857.770350px;}
.y37{bottom:857.772600px;}
.y12e{bottom:857.785350px;}
.y15c{bottom:857.912100px;}
.y124{bottom:857.920350px;}
.y9b{bottom:857.935350px;}
.y235{bottom:860.263500px;}
.yf9{bottom:865.825500px;}
.y1f4{bottom:869.263500px;}
.y18d{bottom:874.553850px;}
.y234{bottom:875.263500px;}
.y1c6{bottom:875.635350px;}
.y7c{bottom:875.770350px;}
.y36{bottom:875.772600px;}
.y12d{bottom:875.785350px;}
.y15b{bottom:875.912100px;}
.y123{bottom:875.920350px;}
.y9a{bottom:875.935350px;}
.yf8{bottom:883.825500px;}
.y1f3{bottom:884.263500px;}
.y233{bottom:890.263500px;}
.y163{bottom:893.365350px;}
.y1c5{bottom:893.635350px;}
.y7b{bottom:893.770350px;}
.y35{bottom:893.772600px;}
.y12c{bottom:893.785350px;}
.y122{bottom:893.920350px;}
.y99{bottom:893.935350px;}
.y18c{bottom:894.057600px;}
.y6{bottom:897.543600px;}
.y1f2{bottom:899.263500px;}
.y232{bottom:905.263500px;}
.y162{bottom:911.365350px;}
.y1c4{bottom:911.635350px;}
.y7a{bottom:911.770350px;}
.y34{bottom:911.772600px;}
.y12b{bottom:911.785350px;}
.y121{bottom:911.920350px;}
.y98{bottom:911.935350px;}
.y1f1{bottom:914.263500px;}
.y231{bottom:920.263500px;}
.yf7{bottom:924.269400px;}
.y1f0{bottom:929.263500px;}
.y1c3{bottom:929.635350px;}
.y79{bottom:929.770350px;}
.y33{bottom:929.772600px;}
.y12a{bottom:929.785350px;}
.y120{bottom:929.920350px;}
.y97{bottom:929.935350px;}
.yf6{bottom:933.797100px;}
.y5{bottom:934.004400px;}
.y230{bottom:935.263500px;}
.y1ef{bottom:944.263500px;}
.y161{bottom:947.230350px;}
.y15a{bottom:947.515350px;}
.y1c2{bottom:947.635350px;}
.y78{bottom:947.770350px;}
.y32{bottom:947.772600px;}
.y129{bottom:947.785350px;}
.y22f{bottom:950.263500px;}
.y1ee{bottom:959.263500px;}
.y22e{bottom:965.263500px;}
.y11f{bottom:965.515350px;}
.y96{bottom:965.530350px;}
.y77{bottom:965.770350px;}
.y31{bottom:965.772600px;}
.y128{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y1ed{bottom:974.263500px;}
.y22d{bottom:980.263500px;}
.y1c1{bottom:983.230350px;}
.y76{bottom:983.770350px;}
.y30{bottom:983.772600px;}
.yf5{bottom:983.777100px;}
.y127{bottom:983.785350px;}
.y1ec{bottom:989.263500px;}
.y22c{bottom:995.263500px;}
.y75{bottom:1001.770350px;}
.y2f{bottom:1001.772600px;}
.yf4{bottom:1001.777100px;}
.y95{bottom:1001.785350px;}
.y1eb{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y22b{bottom:1010.263500px;}
.y18b{bottom:1019.367600px;}
.y74{bottom:1019.770350px;}
.y64{bottom:1019.772600px;}
.yf3{bottom:1019.777100px;}
.y94{bottom:1019.785350px;}
.y22a{bottom:1025.263500px;}
.y2e{bottom:1037.367600px;}
.y73{bottom:1037.770350px;}
.y63{bottom:1037.772600px;}
.yf2{bottom:1037.777100px;}
.y93{bottom:1037.785350px;}
.y229{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1bc{bottom:1132.415700px;}
.y159{bottom:1132.416750px;}
.y72{bottom:1132.418700px;}
.ydf{bottom:1132.420800px;}
.y18a{bottom:1132.421100px;}
.yb5{bottom:1132.423050px;}
.y26a{bottom:1132.423500px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.h10{height:32.783203px;}
.h8{height:32.805176px;}
.h15{height:33.351562px;}
.h23{height:33.358162px;}
.h12{height:34.968750px;}
.h11{height:34.992188px;}
.h13{height:41.689453px;}
.h22{height:41.832361px;}
.h1a{height:41.864761px;}
.h16{height:41.889361px;}
.h20{height:42.005161px;}
.h1e{height:42.038161px;}
.h17{height:42.038761px;}
.h1d{height:42.054361px;}
.h21{height:42.054961px;}
.h1c{height:42.078361px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hf{height:43.718034px;}
.hb{height:43.740234px;}
.h19{height:52.507951px;}
.h14{height:52.558951px;}
.h1f{height:52.567951px;}
.he{height:54.424477px;}
.hd{height:54.449957px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h1b{height:66.327563px;}
.h18{height:89.078653px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x14{left:78.661350px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x32{left:99.921300px;}
.x3e{left:102.047400px;}
.x4{left:106.299300px;}
.x9{left:110.558550px;}
.x41{left:123.307350px;}
.x3{left:125.428050px;}
.xf{left:131.815350px;}
.x1b{left:183.745350px;}
.x16{left:184.981350px;}
.x8{left:190.553550px;}
.x17{left:193.525350px;}
.x1c{left:228.721350px;}
.x3b{left:232.243350px;}
.x35{left:244.189350px;}
.x34{left:248.701350px;}
.x3c{left:249.835350px;}
.x33{left:253.237350px;}
.x36{left:255.793350px;}
.x3a{left:259.169100px;}
.x37{left:260.209350px;}
.x38{left:262.021350px;}
.x39{left:263.321100px;}
.x1d{left:274.033350px;}
.x1e{left:317.677350px;}
.x1f{left:363.313350px;}
.x20{left:405.961350px;}
.x21{left:406.969350px;}
.x18{left:419.857350px;}
.x22{left:450.613350px;}
.x23{left:451.621350px;}
.x6{left:455.041500px;}
.xa{left:457.088550px;}
.x15{left:474.109350px;}
.x10{left:478.345350px;}
.x3f{left:482.603400px;}
.xb{left:491.108550px;}
.x24{left:495.265350px;}
.x25{left:498.541350px;}
.x11{left:512.365350px;}
.xc{left:525.278550px;}
.x27{left:538.249350px;}
.x12{left:539.655750px;}
.x26{left:541.909350px;}
.x19{left:557.998800px;}
.x29{left:582.889350px;}
.x28{left:585.553350px;}
.x3d{left:591.946650px;}
.x31{left:600.690150px;}
.x1a{left:612.923400px;}
.x2a{left:630.529350px;}
.xe{left:663.492300px;}
.x2c{left:672.181350px;}
.x2b{left:675.841350px;}
.x2{left:693.365400px;}
.x2e{left:717.733350px;}
.x2d{left:720.589350px;}
.x40{left:722.598750px;}
.xd{left:729.282150px;}
.x42{left:744.758850px;}
.x13{left:750.543750px;}
.x30{left:762.381600px;}
.x2f{left:766.005600px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v5{vertical-align:-10.426667pt;}
.va{vertical-align:-8.318400pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.440000pt;}
.vb{vertical-align:8.318400pt;}
.v8{vertical-align:10.397333pt;}
.v4{vertical-align:19.951467pt;}
.v3{vertical-align:25.732800pt;}
.v1{vertical-align:27.005867pt;}
.v9{vertical-align:29.312000pt;}
.v7{vertical-align:31.726400pt;}
.v6{vertical-align:42.123733pt;}
.ls62{letter-spacing:-5.504000pt;}
.ls63{letter-spacing:-3.925333pt;}
.ls5c{letter-spacing:-2.933333pt;}
.ls8b{letter-spacing:-2.133333pt;}
.ls82{letter-spacing:-1.578667pt;}
.ls79{letter-spacing:-0.768000pt;}
.ls5{letter-spacing:-0.693333pt;}
.ls78{letter-spacing:-0.480000pt;}
.ls5b{letter-spacing:-0.373333pt;}
.lsa0{letter-spacing:-0.341333pt;}
.lsa1{letter-spacing:-0.298667pt;}
.ls6{letter-spacing:-0.280000pt;}
.ls7{letter-spacing:-0.163240pt;}
.ls44{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.106667pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls46{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.000533pt;}
.ls4d{letter-spacing:0.001067pt;}
.ls0{letter-spacing:0.003680pt;}
.ls3{letter-spacing:0.004907pt;}
.ls7e{letter-spacing:0.006400pt;}
.ls7c{letter-spacing:0.007467pt;}
.ls74{letter-spacing:0.008533pt;}
.ls58{letter-spacing:0.011733pt;}
.ls73{letter-spacing:0.012267pt;}
.ls1{letter-spacing:0.018667pt;}
.ls2{letter-spacing:0.024533pt;}
.ls45{letter-spacing:0.042667pt;}
.ls26{letter-spacing:0.053333pt;}
.ls6b{letter-spacing:0.057387pt;}
.ls69{letter-spacing:0.057920pt;}
.ls51{letter-spacing:0.061120pt;}
.ls4f{letter-spacing:0.061653pt;}
.ls68{letter-spacing:0.078933pt;}
.ls50{letter-spacing:0.093867pt;}
.ls6a{letter-spacing:0.104533pt;}
.ls25{letter-spacing:0.106667pt;}
.ls41{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls72{letter-spacing:0.161920pt;}
.ls70{letter-spacing:0.167467pt;}
.ls94{letter-spacing:0.170667pt;}
.ls28{letter-spacing:0.213333pt;}
.ls57{letter-spacing:0.214720pt;}
.ls3f{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.266667pt;}
.ls5f{letter-spacing:0.270773pt;}
.ls61{letter-spacing:0.271307pt;}
.ls5e{letter-spacing:0.279840pt;}
.ls71{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.320000pt;}
.ls56{letter-spacing:0.325333pt;}
.ls53{letter-spacing:0.345387pt;}
.ls13{letter-spacing:0.373333pt;}
.ls8d{letter-spacing:0.384000pt;}
.ls6f{letter-spacing:0.394987pt;}
.ls6d{letter-spacing:0.395520pt;}
.ls31{letter-spacing:0.426667pt;}
.ls60{letter-spacing:0.454933pt;}
.ls43{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls5d{letter-spacing:0.491733pt;}
.ls8e{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.533333pt;}
.ls52{letter-spacing:0.550933pt;}
.ls9a{letter-spacing:0.554667pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls3c{letter-spacing:0.597333pt;}
.ls55{letter-spacing:0.628800pt;}
.ls18{letter-spacing:0.640000pt;}
.ls6c{letter-spacing:0.664000pt;}
.ls3d{letter-spacing:0.682667pt;}
.ls6e{letter-spacing:0.689600pt;}
.ls2e{letter-spacing:0.693333pt;}
.ls42{letter-spacing:0.725333pt;}
.lsc{letter-spacing:0.746667pt;}
.ls8f{letter-spacing:0.768000pt;}
.ls65{letter-spacing:0.768320pt;}
.ls67{letter-spacing:0.768853pt;}
.ls32{letter-spacing:0.800000pt;}
.ls3b{letter-spacing:0.810667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls3e{letter-spacing:0.896000pt;}
.ls20{letter-spacing:0.906667pt;}
.ls2a{letter-spacing:0.960000pt;}
.ls91{letter-spacing:0.981333pt;}
.ls17{letter-spacing:1.013333pt;}
.ls77{letter-spacing:1.024000pt;}
.ls1b{letter-spacing:1.066667pt;}
.ls1e{letter-spacing:1.120000pt;}
.lsa3{letter-spacing:1.152000pt;}
.ls29{letter-spacing:1.173333pt;}
.ls97{letter-spacing:1.194667pt;}
.ls23{letter-spacing:1.226667pt;}
.ls96{letter-spacing:1.237333pt;}
.ls27{letter-spacing:1.280000pt;}
.ls66{letter-spacing:1.318400pt;}
.lsa4{letter-spacing:1.322667pt;}
.ls2d{letter-spacing:1.333333pt;}
.ls92{letter-spacing:1.365333pt;}
.ls85{letter-spacing:1.386667pt;}
.ls95{letter-spacing:1.408000pt;}
.ls19{letter-spacing:1.440000pt;}
.ls39{letter-spacing:1.493333pt;}
.ls37{letter-spacing:1.546667pt;}
.ls40{letter-spacing:1.578667pt;}
.ls11{letter-spacing:1.600000pt;}
.ls1c{letter-spacing:1.653333pt;}
.lsa5{letter-spacing:1.664000pt;}
.ls36{letter-spacing:1.706667pt;}
.ls9e{letter-spacing:1.749333pt;}
.ls90{letter-spacing:1.792000pt;}
.ls21{letter-spacing:1.813333pt;}
.ls93{letter-spacing:1.834667pt;}
.ls24{letter-spacing:1.866667pt;}
.ls8c{letter-spacing:1.877333pt;}
.ls88{letter-spacing:1.920000pt;}
.ls76{letter-spacing:1.962667pt;}
.ls5a{letter-spacing:1.973333pt;}
.ls98{letter-spacing:2.005333pt;}
.ls9{letter-spacing:2.026667pt;}
.ls35{letter-spacing:2.080000pt;}
.ls86{letter-spacing:2.186667pt;}
.ls9b{letter-spacing:2.218667pt;}
.ls38{letter-spacing:2.240000pt;}
.ls99{letter-spacing:2.261333pt;}
.ls1d{letter-spacing:2.293333pt;}
.ls22{letter-spacing:2.346667pt;}
.ls10{letter-spacing:2.400000pt;}
.ls14{letter-spacing:2.453333pt;}
.ls7a{letter-spacing:2.560000pt;}
.ls47{letter-spacing:2.613333pt;}
.lsa2{letter-spacing:2.645333pt;}
.lse{letter-spacing:2.666667pt;}
.ls9c{letter-spacing:2.688000pt;}
.ls2c{letter-spacing:2.720000pt;}
.lsb{letter-spacing:2.773333pt;}
.ls59{letter-spacing:2.826667pt;}
.ls75{letter-spacing:2.880000pt;}
.ls48{letter-spacing:2.933333pt;}
.ls4a{letter-spacing:3.040000pt;}
.ls3a{letter-spacing:3.093333pt;}
.ls34{letter-spacing:3.146667pt;}
.ls84{letter-spacing:3.200000pt;}
.ls2f{letter-spacing:3.306667pt;}
.ls9f{letter-spacing:3.498667pt;}
.ls4c{letter-spacing:3.520000pt;}
.ls9d{letter-spacing:3.541333pt;}
.ls33{letter-spacing:3.733333pt;}
.ls16{letter-spacing:4.000000pt;}
.ls4e{letter-spacing:4.053333pt;}
.ls64{letter-spacing:4.213333pt;}
.ls49{letter-spacing:4.373333pt;}
.ls83{letter-spacing:4.480000pt;}
.ls54{letter-spacing:5.013333pt;}
.lsd{letter-spacing:5.120000pt;}
.ls8a{letter-spacing:5.440000pt;}
.ls87{letter-spacing:6.560000pt;}
.ls89{letter-spacing:7.733333pt;}
.ls80{letter-spacing:280.939776pt;}
.ls7f{letter-spacing:281.658709pt;}
.ls7d{letter-spacing:282.846443pt;}
.ls7b{letter-spacing:283.294443pt;}
.ls81{letter-spacing:464.768000pt;}
.ws70{word-spacing:-17.013333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws3a{word-spacing:-13.333333pt;}
.ws82{word-spacing:-13.226667pt;}
.ws7f{word-spacing:-12.544000pt;}
.ws7e{word-spacing:-12.501333pt;}
.ws6{word-spacing:-11.861333pt;}
.ws84{word-spacing:-11.733333pt;}
.ws7d{word-spacing:-11.648000pt;}
.ws86{word-spacing:-11.434667pt;}
.ws85{word-spacing:-11.392000pt;}
.ws6f{word-spacing:-11.200000pt;}
.ws7c{word-spacing:-11.178667pt;}
.ws5{word-spacing:-11.120000pt;}
.ws83{word-spacing:-11.093333pt;}
.ws80{word-spacing:-10.794667pt;}
.ws81{word-spacing:-10.709333pt;}
.ws4f{word-spacing:-10.666667pt;}
.ws3b{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.076144pt;}
.ws1{word-spacing:-8.912904pt;}
.ws4{word-spacing:-8.643947pt;}
.wsb{word-spacing:-7.773333pt;}
.ws2e{word-spacing:-6.218667pt;}
.ws9a{word-spacing:-3.541333pt;}
.ws41{word-spacing:-2.933333pt;}
.ws8{word-spacing:-2.565333pt;}
.ws99{word-spacing:-2.560000pt;}
.ws4a{word-spacing:-2.400000pt;}
.ws25{word-spacing:-2.346667pt;}
.ws1e{word-spacing:-1.973333pt;}
.ws8e{word-spacing:-1.877333pt;}
.ws8d{word-spacing:-1.365333pt;}
.ws76{word-spacing:-1.333333pt;}
.wsa4{word-spacing:-1.280000pt;}
.ws9{word-spacing:-1.008000pt;}
.ws89{word-spacing:-0.981333pt;}
.ws57{word-spacing:-0.960000pt;}
.ws9e{word-spacing:-0.682667pt;}
.ws59{word-spacing:-0.640000pt;}
.ws4b{word-spacing:-0.533333pt;}
.ws96{word-spacing:-0.512000pt;}
.ws9c{word-spacing:-0.426667pt;}
.ws88{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.373333pt;}
.ws2a{word-spacing:-0.320000pt;}
.ws5b{word-spacing:-0.279840pt;}
.ws1c{word-spacing:-0.266667pt;}
.ws90{word-spacing:-0.256000pt;}
.ws40{word-spacing:-0.213333pt;}
.ws91{word-spacing:-0.170667pt;}
.ws1a{word-spacing:-0.053333pt;}
.ws95{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws19{word-spacing:0.053333pt;}
.ws97{word-spacing:0.085333pt;}
.ws15{word-spacing:0.106667pt;}
.ws56{word-spacing:0.160000pt;}
.ws39{word-spacing:0.170667pt;}
.ws9b{word-spacing:0.213333pt;}
.ws3d{word-spacing:0.266667pt;}
.wsa{word-spacing:0.280000pt;}
.ws38{word-spacing:0.341333pt;}
.ws44{word-spacing:0.373333pt;}
.wsa2{word-spacing:0.384000pt;}
.ws3c{word-spacing:0.480000pt;}
.ws46{word-spacing:0.533333pt;}
.ws8a{word-spacing:0.554667pt;}
.ws2b{word-spacing:0.586667pt;}
.ws9f{word-spacing:0.597333pt;}
.ws71{word-spacing:0.640000pt;}
.wsa5{word-spacing:0.682667pt;}
.ws7b{word-spacing:0.693333pt;}
.ws20{word-spacing:0.746667pt;}
.ws64{word-spacing:0.768000pt;}
.ws47{word-spacing:0.800000pt;}
.ws63{word-spacing:0.810667pt;}
.ws13{word-spacing:0.853333pt;}
.ws8f{word-spacing:0.896000pt;}
.ws32{word-spacing:0.906667pt;}
.ws62{word-spacing:0.960000pt;}
.wsa0{word-spacing:0.981333pt;}
.ws1f{word-spacing:1.066667pt;}
.ws5c{word-spacing:1.120000pt;}
.ws98{word-spacing:1.152000pt;}
.ws79{word-spacing:1.173333pt;}
.ws55{word-spacing:1.226667pt;}
.ws87{word-spacing:1.322667pt;}
.ws24{word-spacing:1.333333pt;}
.wsd{word-spacing:1.386667pt;}
.wsa1{word-spacing:1.408000pt;}
.ws49{word-spacing:1.493333pt;}
.ws31{word-spacing:1.600000pt;}
.ws48{word-spacing:1.653333pt;}
.ws92{word-spacing:1.749333pt;}
.wsa6{word-spacing:1.834667pt;}
.ws29{word-spacing:1.866667pt;}
.ws5a{word-spacing:1.920000pt;}
.ws34{word-spacing:1.973333pt;}
.ws8b{word-spacing:2.005333pt;}
.ws10{word-spacing:2.080000pt;}
.ws93{word-spacing:2.090667pt;}
.ws72{word-spacing:2.133333pt;}
.ws94{word-spacing:2.218667pt;}
.ws1d{word-spacing:2.240000pt;}
.ws58{word-spacing:2.293333pt;}
.wsa3{word-spacing:2.304000pt;}
.ws6e{word-spacing:2.346667pt;}
.ws37{word-spacing:2.389333pt;}
.ws21{word-spacing:2.506667pt;}
.ws3e{word-spacing:2.560000pt;}
.ws4c{word-spacing:2.613333pt;}
.ws3f{word-spacing:2.666667pt;}
.ws73{word-spacing:2.720000pt;}
.ws9d{word-spacing:2.773333pt;}
.ws1b{word-spacing:2.880000pt;}
.ws61{word-spacing:2.933333pt;}
.ws74{word-spacing:2.986667pt;}
.ws23{word-spacing:3.040000pt;}
.ws33{word-spacing:3.093333pt;}
.ws4d{word-spacing:3.200000pt;}
.ws16{word-spacing:3.306667pt;}
.ws43{word-spacing:3.360000pt;}
.ws18{word-spacing:3.413333pt;}
.ws8c{word-spacing:3.456000pt;}
.ws12{word-spacing:3.466667pt;}
.ws35{word-spacing:3.498667pt;}
.ws77{word-spacing:3.520000pt;}
.ws36{word-spacing:3.541333pt;}
.ws26{word-spacing:3.626667pt;}
.ws75{word-spacing:3.733333pt;}
.ws22{word-spacing:3.786667pt;}
.ws17{word-spacing:3.840000pt;}
.ws42{word-spacing:3.893333pt;}
.ws5e{word-spacing:3.925333pt;}
.wse{word-spacing:3.946667pt;}
.ws14{word-spacing:4.000000pt;}
.ws27{word-spacing:4.053333pt;}
.ws11{word-spacing:4.213333pt;}
.ws54{word-spacing:4.320000pt;}
.wsf{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.ws60{word-spacing:4.693333pt;}
.ws7a{word-spacing:4.853333pt;}
.ws78{word-spacing:4.906667pt;}
.ws45{word-spacing:5.013333pt;}
.ws5d{word-spacing:5.504000pt;}
.ws52{word-spacing:37.845333pt;}
.ws0{word-spacing:43.841429pt;}
.ws51{word-spacing:52.053333pt;}
.ws2d{word-spacing:66.816000pt;}
.ws30{word-spacing:70.357333pt;}
.ws2f{word-spacing:80.640000pt;}
.ws50{word-spacing:81.621333pt;}
.ws53{word-spacing:89.386667pt;}
.ws6a{word-spacing:198.016000pt;}
.ws67{word-spacing:199.594667pt;}
.ws66{word-spacing:200.576000pt;}
.ws6d{word-spacing:201.386667pt;}
.ws6b{word-spacing:202.282667pt;}
.ws6c{word-spacing:203.106667pt;}
.ws4e{word-spacing:205.354667pt;}
.ws69{word-spacing:208.597333pt;}
.ws68{word-spacing:210.816000pt;}
.ws2c{word-spacing:300.117333pt;}
.ws65{word-spacing:391.381333pt;}
.ws5f{word-spacing:534.101333pt;}
._a{margin-left:-2576.167467pt;}
._c{margin-left:-2555.004800pt;}
._28{margin-left:-7.733333pt;}
._4{margin-left:-6.666667pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.117867pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._3{width:1.008000pt;}
._8{width:1.977600pt;}
._6{width:2.957867pt;}
._7{width:4.057600pt;}
._9{width:5.164800pt;}
._b{width:6.720000pt;}
._26{width:7.893333pt;}
._20{width:37.930667pt;}
._59{width:47.373333pt;}
._51{width:48.512000pt;}
._f{width:50.477867pt;}
._27{width:55.329600pt;}
._12{width:61.696000pt;}
._4c{width:62.720000pt;}
._4e{width:64.773333pt;}
._54{width:69.845333pt;}
._14{width:72.362667pt;}
._22{width:74.752000pt;}
._1d{width:75.904000pt;}
._16{width:78.293333pt;}
._55{width:84.053333pt;}
._11{width:85.418667pt;}
._1a{width:89.770667pt;}
._1f{width:91.306667pt;}
._18{width:92.885333pt;}
._1c{width:101.930667pt;}
._21{width:132.650667pt;}
._56{width:182.869333pt;}
._50{width:185.258667pt;}
._53{width:189.658667pt;}
._58{width:201.856000pt;}
._4a{width:206.549333pt;}
._66{width:212.693333pt;}
._74{width:214.266667pt;}
._4d{width:216.064000pt;}
._2c{width:217.258667pt;}
._65{width:221.482667pt;}
._4f{width:223.146667pt;}
._49{width:224.256000pt;}
._4b{width:225.200000pt;}
._6b{width:226.181333pt;}
._45{width:228.821333pt;}
._57{width:230.272000pt;}
._52{width:240.088533pt;}
._48{width:250.629333pt;}
._44{width:263.808000pt;}
._69{width:268.629333pt;}
._5b{width:272.597333pt;}
._43{width:275.370667pt;}
._46{width:279.587200pt;}
._68{width:284.629333pt;}
._47{width:288.773333pt;}
._38{width:292.821333pt;}
._5a{width:293.717333pt;}
._15{width:297.429333pt;}
._67{width:300.629333pt;}
._2b{width:305.877333pt;}
._6a{width:309.930667pt;}
._3c{width:314.277333pt;}
._42{width:315.803733pt;}
._13{width:317.525333pt;}
._70{width:321.962667pt;}
._64{width:325.376000pt;}
._25{width:327.222400pt;}
._6f{width:332.629333pt;}
._31{width:334.976000pt;}
._71{width:336.597333pt;}
._40{width:339.754667pt;}
._33{width:344.405333pt;}
._34{width:346.837333pt;}
._39{width:351.280000pt;}
._41{width:361.088000pt;}
._2d{width:363.477333pt;}
._36{width:365.701333pt;}
._2f{width:367.792000pt;}
._32{width:370.474667pt;}
._37{width:377.642667pt;}
._30{width:379.733333pt;}
._29{width:381.952000pt;}
._e{width:388.096000pt;}
._35{width:391.808000pt;}
._23{width:396.928000pt;}
._2a{width:410.112000pt;}
._3d{width:413.226667pt;}
._1b{width:419.456000pt;}
._19{width:424.576000pt;}
._1e{width:425.514667pt;}
._3a{width:434.474667pt;}
._17{width:438.016000pt;}
._2e{width:455.808000pt;}
._3e{width:477.141333pt;}
._5e{width:482.048000pt;}
._72{width:486.101333pt;}
._6d{width:488.448000pt;}
._6e{width:492.890667pt;}
._73{width:505.088000pt;}
._6c{width:512.170667pt;}
._63{width:530.773333pt;}
._10{width:534.019200pt;}
._d{width:536.704000pt;}
._24{width:555.181867pt;}
._5d{width:576.597333pt;}
._62{width:625.621333pt;}
._5c{width:670.720000pt;}
._60{width:673.066667pt;}
._5f{width:692.010667pt;}
._61{width:718.080000pt;}
._3b{width:761.733333pt;}
._3f{width:781.013333pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y269{bottom:71.345333pt;}
.y1bb{bottom:73.941067pt;}
.y71{bottom:74.462533pt;}
.y62{bottom:74.464533pt;}
.yf1{bottom:74.588533pt;}
.y158{bottom:74.688667pt;}
.yb3{bottom:75.047733pt;}
.y2a{bottom:78.242667pt;}
.y228{bottom:79.345333pt;}
.y11e{bottom:81.622667pt;}
.yde{bottom:82.478933pt;}
.y268{bottom:84.678667pt;}
.y189{bottom:86.980400pt;}
.y1ba{bottom:88.606267pt;}
.y70{bottom:90.462533pt;}
.y61{bottom:90.464533pt;}
.y29{bottom:91.576000pt;}
.y227{bottom:92.678667pt;}
.ydd{bottom:97.149067pt;}
.y157{bottom:97.369600pt;}
.y11d{bottom:97.622667pt;}
.y267{bottom:98.012000pt;}
.y188{bottom:101.658000pt;}
.y226{bottom:106.012000pt;}
.y1ea{bottom:106.342533pt;}
.y6f{bottom:106.462533pt;}
.y60{bottom:106.464533pt;}
.yf0{bottom:106.595867pt;}
.y1b9{bottom:111.283600pt;}
.y266{bottom:111.345333pt;}
.ydc{bottom:111.591733pt;}
.y156{bottom:111.815733pt;}
.y11c{bottom:113.622667pt;}
.y187{bottom:116.324667pt;}
.y225{bottom:119.345333pt;}
.y1e9{bottom:121.982533pt;}
.y6e{bottom:122.462533pt;}
.y5f{bottom:122.464533pt;}
.y265{bottom:124.678667pt;}
.y1b8{bottom:125.726267pt;}
.ydb{bottom:126.295067pt;}
.y155{bottom:126.302400pt;}
.y11b{bottom:129.622667pt;}
.y224{bottom:132.678667pt;}
.y264{bottom:138.012000pt;}
.y6d{bottom:138.462533pt;}
.y5e{bottom:138.464533pt;}
.yef{bottom:138.595867pt;}
.y186{bottom:139.002000pt;}
.y1b7{bottom:140.197200pt;}
.yda{bottom:140.737733pt;}
.y154{bottom:140.745067pt;}
.y11a{bottom:145.622667pt;}
.y223{bottom:146.012000pt;}
.y263{bottom:151.345333pt;}
.y185{bottom:153.444667pt;}
.y1e8{bottom:154.342533pt;}
.y6c{bottom:154.462533pt;}
.y5d{bottom:154.464533pt;}
.yee{bottom:154.595867pt;}
.y1b6{bottom:154.639867pt;}
.y153{bottom:155.187733pt;}
.yd9{bottom:155.404400pt;}
.y222{bottom:159.345333pt;}
.y262{bottom:164.678667pt;}
.y184{bottom:167.887333pt;}
.y1b5{bottom:169.082533pt;}
.y152{bottom:169.630400pt;}
.y1e7{bottom:169.982533pt;}
.yd8{bottom:170.071067pt;}
.y6b{bottom:170.462533pt;}
.y5c{bottom:170.464533pt;}
.yed{bottom:170.595867pt;}
.y221{bottom:172.678667pt;}
.y119{bottom:177.262667pt;}
.y261{bottom:178.012000pt;}
.y183{bottom:182.330000pt;}
.y1b4{bottom:183.525200pt;}
.y151{bottom:184.073067pt;}
.yd7{bottom:184.737733pt;}
.y220{bottom:186.012000pt;}
.y6a{bottom:186.462533pt;}
.y5b{bottom:186.464533pt;}
.yec{bottom:186.595867pt;}
.y260{bottom:191.345333pt;}
.y28{bottom:192.057067pt;}
.y118{bottom:193.262667pt;}
.y182{bottom:196.772667pt;}
.y1b3{bottom:197.967867pt;}
.y150{bottom:198.515733pt;}
.yd6{bottom:199.180400pt;}
.y21f{bottom:199.345333pt;}
.y1e6{bottom:202.342533pt;}
.y69{bottom:202.462533pt;}
.y5a{bottom:202.464533pt;}
.yeb{bottom:202.595867pt;}
.y25f{bottom:204.678667pt;}
.y1b2{bottom:212.410533pt;}
.y21e{bottom:212.678667pt;}
.y14f{bottom:212.958400pt;}
.yd5{bottom:213.847067pt;}
.y27{bottom:216.363733pt;}
.y25e{bottom:218.012000pt;}
.y1e5{bottom:218.342533pt;}
.y68{bottom:218.462533pt;}
.y59{bottom:218.464533pt;}
.yea{bottom:218.595867pt;}
.y181{bottom:225.114000pt;}
.y117{bottom:225.142667pt;}
.y21d{bottom:226.012000pt;}
.y1b1{bottom:226.853200pt;}
.y14e{bottom:227.401067pt;}
.yd4{bottom:228.289733pt;}
.y25d{bottom:231.345333pt;}
.y26{bottom:232.363733pt;}
.y1e4{bottom:234.342533pt;}
.y67{bottom:234.462533pt;}
.y58{bottom:234.464533pt;}
.ye9{bottom:234.595867pt;}
.y21c{bottom:239.345333pt;}
.y1b0{bottom:241.345200pt;}
.y14d{bottom:241.843733pt;}
.yd3{bottom:242.956400pt;}
.y25c{bottom:244.678667pt;}
.y25{bottom:248.363733pt;}
.y1e3{bottom:249.982533pt;}
.y1c0{bottom:250.462533pt;}
.y57{bottom:250.464533pt;}
.ye8{bottom:250.595867pt;}
.y21b{bottom:252.678667pt;}
.y1af{bottom:255.787867pt;}
.y180{bottom:256.131867pt;}
.y14c{bottom:256.286400pt;}
.y25b{bottom:258.012000pt;}
.y24{bottom:264.363733pt;}
.y21a{bottom:266.012000pt;}
.y1bf{bottom:266.462533pt;}
.y56{bottom:266.464533pt;}
.ye7{bottom:266.595867pt;}
.yd2{bottom:268.737733pt;}
.y1ae{bottom:270.230533pt;}
.y14b{bottom:270.729067pt;}
.y25a{bottom:271.345333pt;}
.y116{bottom:273.622667pt;}
.y219{bottom:279.345333pt;}
.y23{bottom:280.363733pt;}
.y1e2{bottom:282.342533pt;}
.y1be{bottom:282.462533pt;}
.y55{bottom:282.464533pt;}
.ye6{bottom:282.595867pt;}
.yd1{bottom:283.404400pt;}
.y1ad{bottom:284.673200pt;}
.y259{bottom:284.678667pt;}
.y14a{bottom:285.171733pt;}
.y115{bottom:289.622667pt;}
.y218{bottom:292.678667pt;}
.y22{bottom:296.363733pt;}
.y17f{bottom:297.441733pt;}
.y1e1{bottom:297.982533pt;}
.y258{bottom:298.012000pt;}
.yd0{bottom:298.071067pt;}
.y1bd{bottom:298.462533pt;}
.y54{bottom:298.464533pt;}
.ye5{bottom:298.595867pt;}
.y1ac{bottom:299.115867pt;}
.y114{bottom:305.622667pt;}
.y146{bottom:305.838400pt;}
.y149{bottom:305.843733pt;}
.y217{bottom:306.012000pt;}
.y257{bottom:311.345333pt;}
.y17e{bottom:311.436400pt;}
.y21{bottom:312.363733pt;}
.ycf{bottom:312.513733pt;}
.y145{bottom:313.177067pt;}
.y1ab{bottom:313.558533pt;}
.y17b{bottom:314.462533pt;}
.y53{bottom:314.464533pt;}
.ye4{bottom:314.595867pt;}
.y216{bottom:319.345333pt;}
.y147{bottom:320.505067pt;}
.y148{bottom:320.510400pt;}
.y113{bottom:321.622667pt;}
.y256{bottom:324.678667pt;}
.y17d{bottom:325.431067pt;}
.yce{bottom:327.180400pt;}
.y1aa{bottom:328.001200pt;}
.y20{bottom:328.363733pt;}
.y1e0{bottom:330.342533pt;}
.y17a{bottom:330.462533pt;}
.y52{bottom:330.464533pt;}
.ye3{bottom:330.595867pt;}
.y215{bottom:332.678667pt;}
.y112{bottom:337.622667pt;}
.y255{bottom:338.012000pt;}
.y17c{bottom:339.425733pt;}
.ycd{bottom:341.847067pt;}
.y1a9{bottom:342.443867pt;}
.y144{bottom:344.194933pt;}
.y1f{bottom:344.363733pt;}
.y214{bottom:346.012000pt;}
.y66{bottom:346.104533pt;}
.y1df{bottom:346.342533pt;}
.y179{bottom:346.462533pt;}
.y51{bottom:346.464533pt;}
.ye2{bottom:346.595867pt;}
.y254{bottom:351.345333pt;}
.y111{bottom:353.622667pt;}
.ycc{bottom:356.289733pt;}
.y1a8{bottom:356.886533pt;}
.yb4{bottom:357.371600pt;}
.y213{bottom:359.345333pt;}
.y1e{bottom:360.363733pt;}
.y1de{bottom:362.342533pt;}
.y178{bottom:362.462533pt;}
.y50{bottom:362.464533pt;}
.ye1{bottom:362.595867pt;}
.y253{bottom:364.678667pt;}
.y110{bottom:369.622667pt;}
.ycb{bottom:370.956400pt;}
.y1a7{bottom:371.329200pt;}
.y212{bottom:372.678667pt;}
.y1d{bottom:376.363733pt;}
.y65{bottom:377.984533pt;}
.y252{bottom:378.012000pt;}
.y1dd{bottom:378.342533pt;}
.y177{bottom:378.462533pt;}
.y4f{bottom:378.464533pt;}
.ye0{bottom:378.595867pt;}
.y143{bottom:383.665067pt;}
.y10f{bottom:385.622667pt;}
.yca{bottom:385.623067pt;}
.y1a6{bottom:385.771867pt;}
.y211{bottom:386.012000pt;}
.y251{bottom:391.345333pt;}
.y1c{bottom:392.363733pt;}
.y1dc{bottom:394.342533pt;}
.y176{bottom:394.462533pt;}
.y4e{bottom:394.464533pt;}
.y92{bottom:394.595867pt;}
.yb2{bottom:394.609200pt;}
.y210{bottom:399.345333pt;}
.y1a5{bottom:400.214533pt;}
.y10e{bottom:401.622667pt;}
.y250{bottom:404.678667pt;}
.y142{bottom:406.345867pt;}
.y1b{bottom:408.363733pt;}
.y1db{bottom:410.342533pt;}
.y175{bottom:410.462533pt;}
.y4d{bottom:410.464533pt;}
.y91{bottom:410.595867pt;}
.yb1{bottom:410.609200pt;}
.yc9{bottom:411.404400pt;}
.y20f{bottom:412.678667pt;}
.y1a4{bottom:414.657200pt;}
.y10d{bottom:417.622667pt;}
.y24f{bottom:418.012000pt;}
.y141{bottom:420.830667pt;}
.y1a{bottom:424.363733pt;}
.y20e{bottom:426.012000pt;}
.yc8{bottom:426.071067pt;}
.y1da{bottom:426.342533pt;}
.y174{bottom:426.462533pt;}
.y4c{bottom:426.464533pt;}
.y90{bottom:426.595867pt;}
.yb0{bottom:426.609200pt;}
.y1a3{bottom:429.099867pt;}
.y24e{bottom:431.345333pt;}
.y10c{bottom:433.622667pt;}
.y140{bottom:435.273333pt;}
.y20d{bottom:439.345333pt;}
.y19{bottom:440.363733pt;}
.yc7{bottom:440.513733pt;}
.y1d9{bottom:441.982533pt;}
.y173{bottom:442.462533pt;}
.y4b{bottom:442.464533pt;}
.y8f{bottom:442.595867pt;}
.yaf{bottom:442.609200pt;}
.y1a2{bottom:443.609600pt;}
.y24d{bottom:444.678667pt;}
.y10b{bottom:449.622667pt;}
.y13f{bottom:449.716000pt;}
.y20c{bottom:452.678667pt;}
.yc6{bottom:455.180400pt;}
.y18{bottom:456.363733pt;}
.y24c{bottom:458.012000pt;}
.y1a1{bottom:458.052267pt;}
.y172{bottom:458.462533pt;}
.y4a{bottom:458.464533pt;}
.y8e{bottom:458.595867pt;}
.yae{bottom:458.609200pt;}
.y13e{bottom:464.158667pt;}
.y10a{bottom:465.622667pt;}
.y20b{bottom:466.012000pt;}
.yc5{bottom:469.847067pt;}
.y24b{bottom:471.345333pt;}
.y17{bottom:472.363733pt;}
.y1a0{bottom:472.494933pt;}
.y1d8{bottom:474.342533pt;}
.y171{bottom:474.462533pt;}
.y49{bottom:474.464533pt;}
.y8d{bottom:474.595867pt;}
.yad{bottom:474.609200pt;}
.y13d{bottom:478.601333pt;}
.y20a{bottom:479.345333pt;}
.y109{bottom:481.622667pt;}
.yc4{bottom:484.289733pt;}
.y24a{bottom:484.678667pt;}
.y19f{bottom:486.937600pt;}
.y16{bottom:488.363733pt;}
.y1d7{bottom:490.342533pt;}
.y170{bottom:490.462533pt;}
.y48{bottom:490.464533pt;}
.y8c{bottom:490.595867pt;}
.yac{bottom:490.609200pt;}
.y209{bottom:492.678667pt;}
.y13c{bottom:493.044000pt;}
.y108{bottom:497.622667pt;}
.y249{bottom:498.012000pt;}
.yc3{bottom:498.956400pt;}
.y19e{bottom:501.380267pt;}
.y15{bottom:504.363733pt;}
.y208{bottom:506.012000pt;}
.y1d6{bottom:506.342533pt;}
.y16f{bottom:506.462533pt;}
.y47{bottom:506.464533pt;}
.y8b{bottom:506.595867pt;}
.yab{bottom:506.609200pt;}
.y13b{bottom:507.486667pt;}
.y248{bottom:511.345333pt;}
.y107{bottom:513.622667pt;}
.yc2{bottom:513.623067pt;}
.y19d{bottom:515.822933pt;}
.y207{bottom:519.345333pt;}
.y14{bottom:520.363733pt;}
.y13a{bottom:521.929333pt;}
.y1d5{bottom:522.342533pt;}
.y16e{bottom:522.462533pt;}
.y46{bottom:522.464533pt;}
.y8a{bottom:522.595867pt;}
.yaa{bottom:522.609200pt;}
.y247{bottom:524.678667pt;}
.yc1{bottom:528.065733pt;}
.y106{bottom:529.622667pt;}
.y19c{bottom:530.265600pt;}
.y206{bottom:532.678667pt;}
.y13{bottom:536.363733pt;}
.y139{bottom:536.372000pt;}
.y246{bottom:538.012000pt;}
.y1d4{bottom:538.342533pt;}
.y16d{bottom:538.462533pt;}
.y45{bottom:538.464533pt;}
.y89{bottom:538.595867pt;}
.ya9{bottom:538.609200pt;}
.yc0{bottom:542.732400pt;}
.y19b{bottom:544.708267pt;}
.y205{bottom:546.012000pt;}
.y138{bottom:550.814667pt;}
.y245{bottom:551.345333pt;}
.y12{bottom:552.363733pt;}
.y1d3{bottom:554.342533pt;}
.y16c{bottom:554.462533pt;}
.y44{bottom:554.464533pt;}
.y88{bottom:554.595867pt;}
.ya8{bottom:554.609200pt;}
.ybf{bottom:557.399067pt;}
.y19a{bottom:559.150933pt;}
.y204{bottom:559.345333pt;}
.y105{bottom:561.622667pt;}
.y244{bottom:564.678667pt;}
.y137{bottom:565.257333pt;}
.y11{bottom:568.363733pt;}
.y1d2{bottom:569.982533pt;}
.y16b{bottom:570.462533pt;}
.y43{bottom:570.464533pt;}
.y87{bottom:570.595867pt;}
.ya7{bottom:570.609200pt;}
.ybe{bottom:571.841733pt;}
.y203{bottom:572.678667pt;}
.y199{bottom:573.593600pt;}
.y104{bottom:577.622667pt;}
.y243{bottom:578.012000pt;}
.y136{bottom:579.700000pt;}
.y202{bottom:586.012000pt;}
.y16a{bottom:586.462533pt;}
.y42{bottom:586.464533pt;}
.ybd{bottom:586.508400pt;}
.y86{bottom:586.595867pt;}
.ya6{bottom:586.609200pt;}
.y198{bottom:588.036267pt;}
.y242{bottom:591.345333pt;}
.y135{bottom:594.142667pt;}
.y201{bottom:599.345333pt;}
.ybc{bottom:601.175067pt;}
.y1d1{bottom:602.342533pt;}
.y169{bottom:602.462533pt;}
.y41{bottom:602.464533pt;}
.y197{bottom:602.478933pt;}
.y85{bottom:602.595867pt;}
.ya5{bottom:602.609200pt;}
.y241{bottom:604.678667pt;}
.y10{bottom:608.504267pt;}
.y103{bottom:609.622667pt;}
.y200{bottom:612.678667pt;}
.y196{bottom:616.921600pt;}
.y240{bottom:618.012000pt;}
.y1d0{bottom:618.342533pt;}
.y168{bottom:618.462533pt;}
.y40{bottom:618.464533pt;}
.y84{bottom:618.595867pt;}
.ya4{bottom:618.609200pt;}
.yf{bottom:619.571600pt;}
.ybb{bottom:621.292400pt;}
.y134{bottom:622.153333pt;}
.y102{bottom:625.622667pt;}
.y1ff{bottom:626.012000pt;}
.y23f{bottom:631.345333pt;}
.y195{bottom:631.364267pt;}
.y1cf{bottom:634.342533pt;}
.y167{bottom:634.462533pt;}
.y3f{bottom:634.464533pt;}
.y83{bottom:634.595867pt;}
.ya3{bottom:634.609200pt;}
.yba{bottom:635.959067pt;}
.y1fe{bottom:639.345333pt;}
.y101{bottom:641.622667pt;}
.y23e{bottom:644.678667pt;}
.y194{bottom:645.806933pt;}
.y1ce{bottom:650.342533pt;}
.y166{bottom:650.462533pt;}
.y3e{bottom:650.464533pt;}
.y82{bottom:650.595867pt;}
.ya2{bottom:650.609200pt;}
.ye{bottom:652.585600pt;}
.y1fd{bottom:652.678667pt;}
.y133{bottom:653.169200pt;}
.y100{bottom:657.622667pt;}
.y23d{bottom:658.012000pt;}
.y193{bottom:660.249600pt;}
.yb9{bottom:663.969733pt;}
.yd{bottom:664.585600pt;}
.y1fc{bottom:666.012000pt;}
.y1cd{bottom:666.342533pt;}
.y165{bottom:666.462533pt;}
.y3d{bottom:666.464533pt;}
.y81{bottom:666.595867pt;}
.ya1{bottom:666.609200pt;}
.y23c{bottom:671.345333pt;}
.yff{bottom:673.622667pt;}
.y192{bottom:674.692267pt;}
.yc{bottom:676.585600pt;}
.y1fb{bottom:679.345333pt;}
.y1cc{bottom:682.342533pt;}
.y164{bottom:682.462533pt;}
.y3c{bottom:682.464533pt;}
.y80{bottom:682.595867pt;}
.ya0{bottom:682.609200pt;}
.y23b{bottom:684.678667pt;}
.yb{bottom:688.585733pt;}
.y191{bottom:689.134933pt;}
.yfe{bottom:689.622667pt;}
.y1fa{bottom:692.678667pt;}
.yb8{bottom:694.982533pt;}
.ya{bottom:695.763200pt;}
.y23a{bottom:698.012000pt;}
.y1cb{bottom:698.342533pt;}
.y132{bottom:698.462533pt;}
.y3b{bottom:698.464533pt;}
.y160{bottom:698.588533pt;}
.y7f{bottom:698.595867pt;}
.y9f{bottom:698.609200pt;}
.y190{bottom:703.577600pt;}
.yfd{bottom:705.622667pt;}
.y1f9{bottom:706.012000pt;}
.y239{bottom:711.345333pt;}
.yb7{bottom:712.315867pt;}
.y9{bottom:712.585733pt;}
.y1ca{bottom:714.342533pt;}
.y131{bottom:714.462533pt;}
.y3a{bottom:714.464533pt;}
.y15f{bottom:714.588533pt;}
.y7e{bottom:714.595867pt;}
.y9e{bottom:714.609200pt;}
.y18f{bottom:718.020267pt;}
.y1f8{bottom:719.345333pt;}
.yfc{bottom:721.622667pt;}
.y238{bottom:724.678667pt;}
.y1c9{bottom:730.342533pt;}
.y130{bottom:730.462533pt;}
.y39{bottom:730.464533pt;}
.y15e{bottom:730.588533pt;}
.y126{bottom:730.595867pt;}
.y9d{bottom:730.609200pt;}
.y1f7{bottom:732.678667pt;}
.yfb{bottom:737.622667pt;}
.y237{bottom:738.012000pt;}
.y8{bottom:738.121067pt;}
.y1f6{bottom:746.012000pt;}
.y7d{bottom:746.235867pt;}
.y1c8{bottom:746.342533pt;}
.y18e{bottom:746.363333pt;}
.y12f{bottom:746.462533pt;}
.y38{bottom:746.464533pt;}
.y15d{bottom:746.588533pt;}
.y125{bottom:746.595867pt;}
.y9c{bottom:746.609200pt;}
.y236{bottom:751.345333pt;}
.yfa{bottom:753.622667pt;}
.y7{bottom:756.783067pt;}
.y1f5{bottom:759.345333pt;}
.y1c7{bottom:762.342533pt;}
.yb6{bottom:762.462533pt;}
.y37{bottom:762.464533pt;}
.y12e{bottom:762.475867pt;}
.y15c{bottom:762.588533pt;}
.y124{bottom:762.595867pt;}
.y9b{bottom:762.609200pt;}
.y235{bottom:764.678667pt;}
.yf9{bottom:769.622667pt;}
.y1f4{bottom:772.678667pt;}
.y18d{bottom:777.381200pt;}
.y234{bottom:778.012000pt;}
.y1c6{bottom:778.342533pt;}
.y7c{bottom:778.462533pt;}
.y36{bottom:778.464533pt;}
.y12d{bottom:778.475867pt;}
.y15b{bottom:778.588533pt;}
.y123{bottom:778.595867pt;}
.y9a{bottom:778.609200pt;}
.yf8{bottom:785.622667pt;}
.y1f3{bottom:786.012000pt;}
.y233{bottom:791.345333pt;}
.y163{bottom:794.102533pt;}
.y1c5{bottom:794.342533pt;}
.y7b{bottom:794.462533pt;}
.y35{bottom:794.464533pt;}
.y12c{bottom:794.475867pt;}
.y122{bottom:794.595867pt;}
.y99{bottom:794.609200pt;}
.y18c{bottom:794.717867pt;}
.y6{bottom:797.816533pt;}
.y1f2{bottom:799.345333pt;}
.y232{bottom:804.678667pt;}
.y162{bottom:810.102533pt;}
.y1c4{bottom:810.342533pt;}
.y7a{bottom:810.462533pt;}
.y34{bottom:810.464533pt;}
.y12b{bottom:810.475867pt;}
.y121{bottom:810.595867pt;}
.y98{bottom:810.609200pt;}
.y1f1{bottom:812.678667pt;}
.y231{bottom:818.012000pt;}
.yf7{bottom:821.572800pt;}
.y1f0{bottom:826.012000pt;}
.y1c3{bottom:826.342533pt;}
.y79{bottom:826.462533pt;}
.y33{bottom:826.464533pt;}
.y12a{bottom:826.475867pt;}
.y120{bottom:826.595867pt;}
.y97{bottom:826.609200pt;}
.yf6{bottom:830.041867pt;}
.y5{bottom:830.226133pt;}
.y230{bottom:831.345333pt;}
.y1ef{bottom:839.345333pt;}
.y161{bottom:841.982533pt;}
.y15a{bottom:842.235867pt;}
.y1c2{bottom:842.342533pt;}
.y78{bottom:842.462533pt;}
.y32{bottom:842.464533pt;}
.y129{bottom:842.475867pt;}
.y22f{bottom:844.678667pt;}
.y1ee{bottom:852.678667pt;}
.y22e{bottom:858.012000pt;}
.y11f{bottom:858.235867pt;}
.y96{bottom:858.249200pt;}
.y77{bottom:858.462533pt;}
.y31{bottom:858.464533pt;}
.y128{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y1ed{bottom:866.012000pt;}
.y22d{bottom:871.345333pt;}
.y1c1{bottom:873.982533pt;}
.y76{bottom:874.462533pt;}
.y30{bottom:874.464533pt;}
.yf5{bottom:874.468533pt;}
.y127{bottom:874.475867pt;}
.y1ec{bottom:879.345333pt;}
.y22c{bottom:884.678667pt;}
.y75{bottom:890.462533pt;}
.y2f{bottom:890.464533pt;}
.yf4{bottom:890.468533pt;}
.y95{bottom:890.475867pt;}
.y1eb{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y22b{bottom:898.012000pt;}
.y18b{bottom:906.104533pt;}
.y74{bottom:906.462533pt;}
.y64{bottom:906.464533pt;}
.yf3{bottom:906.468533pt;}
.y94{bottom:906.475867pt;}
.y22a{bottom:911.345333pt;}
.y2e{bottom:922.104533pt;}
.y73{bottom:922.462533pt;}
.y63{bottom:922.464533pt;}
.yf2{bottom:922.468533pt;}
.y93{bottom:922.475867pt;}
.y229{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1bc{bottom:1006.591733pt;}
.y159{bottom:1006.592667pt;}
.y72{bottom:1006.594400pt;}
.ydf{bottom:1006.596267pt;}
.y18a{bottom:1006.596533pt;}
.yb5{bottom:1006.598267pt;}
.y26a{bottom:1006.598667pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.h10{height:29.140625pt;}
.h8{height:29.160156pt;}
.h15{height:29.645833pt;}
.h23{height:29.651700pt;}
.h12{height:31.083333pt;}
.h11{height:31.104167pt;}
.h13{height:37.057292pt;}
.h22{height:37.184321pt;}
.h1a{height:37.213121pt;}
.h16{height:37.234988pt;}
.h20{height:37.337921pt;}
.h1e{height:37.367254pt;}
.h17{height:37.367788pt;}
.h1d{height:37.381654pt;}
.h21{height:37.382187pt;}
.h1c{height:37.402987pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hf{height:38.860475pt;}
.hb{height:38.880208pt;}
.h19{height:46.673734pt;}
.h14{height:46.719068pt;}
.h1f{height:46.727068pt;}
.he{height:48.377312pt;}
.hd{height:48.399961pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h1b{height:58.957833pt;}
.h18{height:79.181025pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x14{left:69.921200pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x32{left:88.818933pt;}
.x3e{left:90.708800pt;}
.x4{left:94.488267pt;}
.x9{left:98.274267pt;}
.x41{left:109.606533pt;}
.x3{left:111.491600pt;}
.xf{left:117.169200pt;}
.x1b{left:163.329200pt;}
.x16{left:164.427867pt;}
.x8{left:169.380933pt;}
.x17{left:172.022533pt;}
.x1c{left:203.307867pt;}
.x3b{left:206.438533pt;}
.x35{left:217.057200pt;}
.x34{left:221.067867pt;}
.x3c{left:222.075867pt;}
.x33{left:225.099867pt;}
.x36{left:227.371867pt;}
.x3a{left:230.372533pt;}
.x37{left:231.297200pt;}
.x38{left:232.907867pt;}
.x39{left:234.063200pt;}
.x1d{left:243.585200pt;}
.x1e{left:282.379867pt;}
.x1f{left:322.945200pt;}
.x20{left:360.854533pt;}
.x21{left:361.750533pt;}
.x18{left:373.206533pt;}
.x22{left:400.545200pt;}
.x23{left:401.441200pt;}
.x6{left:404.481333pt;}
.xa{left:406.300933pt;}
.x15{left:421.430533pt;}
.x10{left:425.195867pt;}
.x3f{left:428.980800pt;}
.xb{left:436.540933pt;}
.x24{left:440.235867pt;}
.x25{left:443.147867pt;}
.x11{left:455.435867pt;}
.xc{left:466.914267pt;}
.x27{left:478.443867pt;}
.x12{left:479.694000pt;}
.x26{left:481.697200pt;}
.x19{left:495.998933pt;}
.x29{left:518.123867pt;}
.x28{left:520.491867pt;}
.x3d{left:526.174800pt;}
.x31{left:533.946800pt;}
.x1a{left:544.820800pt;}
.x2a{left:560.470533pt;}
.xe{left:589.770933pt;}
.x2c{left:597.494533pt;}
.x2b{left:600.747867pt;}
.x2{left:616.324800pt;}
.x2e{left:637.985200pt;}
.x2d{left:640.523867pt;}
.x40{left:642.310000pt;}
.xd{left:648.250800pt;}
.x42{left:662.007867pt;}
.x13{left:667.150000pt;}
.x30{left:677.672533pt;}
.x2f{left:680.893867pt;}
}




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