
    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_ebd1f38f0940cedc93c1ef0a.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_156a89d99157a9b10f4a74a8.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_5c3205940de2146dc66fd68a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_238cd799ea8f86cbb65fab06.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_6cb770931c2d1f840f773968.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8764b605b8e69dbbcb3def1f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9737ee4b0a9eafec4473f838.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_9f7666372039d92cf0050540.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d7ab8a7962b3ba70a39c8040.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_210e798a5f0940e29ac670d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c5cdde2c8d4be80f85ef734d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0b0fb658033b30c1d87ed514.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.v4{vertical-align:32.976000px;}
.v5{vertical-align:65.952000px;}
.ls5b{letter-spacing:-3.300000px;}
.ls98{letter-spacing:-2.640000px;}
.ls6e{letter-spacing:-1.776000px;}
.ls59{letter-spacing:-1.080000px;}
.ls58{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.780000px;}
.ls6a{letter-spacing:-0.540000px;}
.ls30{letter-spacing:-0.360000px;}
.lsa7{letter-spacing:-0.336000px;}
.ls2f{letter-spacing:-0.300000px;}
.ls49{letter-spacing:-0.288000px;}
.ls2d{letter-spacing:-0.240000px;}
.ls64{letter-spacing:-0.191995px;}
.ls2e{letter-spacing:-0.180000px;}
.ls97{letter-spacing:-0.144000px;}
.ls63{letter-spacing:-0.143996px;}
.ls57{letter-spacing:-0.120000px;}
.ls82{letter-spacing:-0.096000px;}
.ls65{letter-spacing:-0.095998px;}
.ls48{letter-spacing:-0.060000px;}
.lsa6{letter-spacing:-0.048000px;}
.ls62{letter-spacing:-0.047999px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005676px;}
.ls96{letter-spacing:0.048000px;}
.ls54{letter-spacing:0.055800px;}
.ls13{letter-spacing:0.060000px;}
.ls90{letter-spacing:0.096000px;}
.ls2a{letter-spacing:0.120000px;}
.ls3d{letter-spacing:0.120600px;}
.ls60{letter-spacing:0.143996px;}
.ls79{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.180000px;}
.ls73{letter-spacing:0.192000px;}
.lse{letter-spacing:0.240000px;}
.lsa0{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.300000px;}
.ls92{letter-spacing:0.336000px;}
.ls23{letter-spacing:0.360000px;}
.ls99{letter-spacing:0.384000px;}
.ls46{letter-spacing:0.400200px;}
.ls8{letter-spacing:0.420000px;}
.lsa1{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.480000px;}
.ls86{letter-spacing:0.528000px;}
.ls9{letter-spacing:0.540000px;}
.lsa2{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.600000px;}
.ls5f{letter-spacing:0.624000px;}
.ls7e{letter-spacing:0.640800px;}
.ls4{letter-spacing:0.660000px;}
.ls7d{letter-spacing:0.672000px;}
.ls20{letter-spacing:0.720000px;}
.ls81{letter-spacing:0.768000px;}
.ls12{letter-spacing:0.780000px;}
.ls75{letter-spacing:0.816000px;}
.ls5{letter-spacing:0.840000px;}
.ls4d{letter-spacing:0.848400px;}
.ls7c{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.900000px;}
.ls8f{letter-spacing:0.912000px;}
.ls4f{letter-spacing:0.930000px;}
.ls36{letter-spacing:0.960000px;}
.ls52{letter-spacing:0.962400px;}
.ls71{letter-spacing:1.008000px;}
.ls35{letter-spacing:1.020000px;}
.ls9b{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.080000px;}
.ls9c{letter-spacing:1.104000px;}
.lsf{letter-spacing:1.140000px;}
.ls94{letter-spacing:1.152000px;}
.ls41{letter-spacing:1.181400px;}
.ls7{letter-spacing:1.200000px;}
.ls89{letter-spacing:1.248000px;}
.ls32{letter-spacing:1.260000px;}
.ls7b{letter-spacing:1.296000px;}
.ls25{letter-spacing:1.320000px;}
.ls7a{letter-spacing:1.344000px;}
.ls45{letter-spacing:1.380000px;}
.ls93{letter-spacing:1.392000px;}
.ls4b{letter-spacing:1.440000px;}
.ls8b{letter-spacing:1.488000px;}
.ls1c{letter-spacing:1.500000px;}
.ls4c{letter-spacing:1.503600px;}
.ls19{letter-spacing:1.560000px;}
.ls8e{letter-spacing:1.584000px;}
.ls4e{letter-spacing:1.585200px;}
.ls1f{letter-spacing:1.620000px;}
.ls83{letter-spacing:1.632000px;}
.ls51{letter-spacing:1.641000px;}
.ls15{letter-spacing:1.680000px;}
.ls88{letter-spacing:1.728000px;}
.ls14{letter-spacing:1.740000px;}
.ls74{letter-spacing:1.776000px;}
.ls10{letter-spacing:1.800000px;}
.ls76{letter-spacing:1.824000px;}
.ls47{letter-spacing:1.860000px;}
.ls9d{letter-spacing:1.872000px;}
.ls69{letter-spacing:1.920000px;}
.ls29{letter-spacing:1.980000px;}
.ls8d{letter-spacing:2.016000px;}
.ls40{letter-spacing:2.040000px;}
.ls33{letter-spacing:2.100000px;}
.ls95{letter-spacing:2.112000px;}
.ls3f{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.220000px;}
.ls85{letter-spacing:2.256000px;}
.ls38{letter-spacing:2.280000px;}
.ls44{letter-spacing:2.340000px;}
.ls5e{letter-spacing:2.352000px;}
.ls21{letter-spacing:2.400000px;}
.ls9a{letter-spacing:2.448000px;}
.ls42{letter-spacing:2.460000px;}
.ls26{letter-spacing:2.520000px;}
.ls8c{letter-spacing:2.544000px;}
.ls4a{letter-spacing:2.580000px;}
.lsa8{letter-spacing:2.592000px;}
.ls2c{letter-spacing:2.640000px;}
.lsb{letter-spacing:2.700000px;}
.ls1e{letter-spacing:2.760000px;}
.ls24{letter-spacing:2.820000px;}
.ls43{letter-spacing:2.880000px;}
.ls77{letter-spacing:2.928000px;}
.ls53{letter-spacing:2.940000px;}
.ls91{letter-spacing:2.976000px;}
.ls5a{letter-spacing:3.000000px;}
.ls72{letter-spacing:3.024000px;}
.ls56{letter-spacing:3.060000px;}
.ls3c{letter-spacing:3.120000px;}
.ls3e{letter-spacing:3.180000px;}
.ls5c{letter-spacing:3.240000px;}
.ls84{letter-spacing:3.264000px;}
.ls50{letter-spacing:3.300000px;}
.ls7f{letter-spacing:3.312000px;}
.ls18{letter-spacing:3.360000px;}
.ls87{letter-spacing:3.408000px;}
.ls22{letter-spacing:3.420000px;}
.ls80{letter-spacing:3.456000px;}
.ls70{letter-spacing:3.480000px;}
.ls8a{letter-spacing:3.504000px;}
.ls1d{letter-spacing:3.540000px;}
.lsd{letter-spacing:3.600000px;}
.ls31{letter-spacing:3.660000px;}
.lsa{letter-spacing:3.720000px;}
.ls66{letter-spacing:3.780000px;}
.lsa4{letter-spacing:3.792000px;}
.ls9f{letter-spacing:3.888000px;}
.ls3b{letter-spacing:3.900000px;}
.lsc{letter-spacing:3.960000px;}
.ls37{letter-spacing:4.020000px;}
.ls1b{letter-spacing:4.080000px;}
.ls5d{letter-spacing:4.140000px;}
.ls39{letter-spacing:4.200000px;}
.lsa5{letter-spacing:4.224000px;}
.ls17{letter-spacing:4.260000px;}
.ls6c{letter-spacing:4.380000px;}
.ls9e{letter-spacing:4.416000px;}
.ls6d{letter-spacing:4.560000px;}
.lsa3{letter-spacing:4.752000px;}
.ls78{letter-spacing:4.992000px;}
.ls6b{letter-spacing:5.220000px;}
.ls6f{letter-spacing:5.280000px;}
.ls3a{letter-spacing:6.000000px;}
.ls67{letter-spacing:6.060000px;}
.ls2b{letter-spacing:6.120000px;}
.ls68{letter-spacing:6.660000px;}
.ls55{letter-spacing:10.080000px;}
.ls61{letter-spacing:68.335637px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws98{word-spacing:-18.780000px;}
.wsba{word-spacing:-18.360000px;}
.ws74{word-spacing:-18.300000px;}
.ws48{word-spacing:-17.520000px;}
.ws2{word-spacing:-17.514000px;}
.ws75{word-spacing:-17.400000px;}
.ws27{word-spacing:-17.280000px;}
.wsbb{word-spacing:-16.992000px;}
.ws3{word-spacing:-16.680000px;}
.ws61{word-spacing:-16.500000px;}
.ws4a{word-spacing:-16.440000px;}
.ws26{word-spacing:-16.260000px;}
.ws97{word-spacing:-16.140000px;}
.ws99{word-spacing:-16.080000px;}
.ws28{word-spacing:-15.420000px;}
.wsa2{word-spacing:-15.180000px;}
.wsb5{word-spacing:-15.120000px;}
.ws49{word-spacing:-15.000000px;}
.ws47{word-spacing:-14.940000px;}
.wsde{word-spacing:-14.928000px;}
.ws9{word-spacing:-14.760000px;}
.wsf8{word-spacing:-14.544000px;}
.wsd7{word-spacing:-14.256000px;}
.wsd8{word-spacing:-13.920000px;}
.wsc0{word-spacing:-13.824000px;}
.wsf7{word-spacing:-13.632000px;}
.wsbe{word-spacing:-13.440000px;}
.ws5{word-spacing:-13.344000px;}
.wsbf{word-spacing:-13.296000px;}
.wse0{word-spacing:-13.200000px;}
.wsdf{word-spacing:-12.960000px;}
.wsd9{word-spacing:-12.816000px;}
.wsbd{word-spacing:-12.768000px;}
.ws7c{word-spacing:-12.624000px;}
.ws4{word-spacing:-12.510000px;}
.wsf9{word-spacing:-12.432000px;}
.wsdd{word-spacing:-12.384000px;}
.wsfb{word-spacing:-12.288000px;}
.wsdb{word-spacing:-12.240000px;}
.wsfa{word-spacing:-12.192000px;}
.wsbc{word-spacing:-12.000000px;}
.ws7d{word-spacing:-11.999700px;}
.wsda{word-spacing:-11.856000px;}
.ws1{word-spacing:-10.210662px;}
.wsdc{word-spacing:-9.360000px;}
.ws4b{word-spacing:-8.745000px;}
.ws31{word-spacing:-6.000000px;}
.wsb6{word-spacing:-5.280000px;}
.ws5d{word-spacing:-5.040000px;}
.wscf{word-spacing:-4.992000px;}
.ws30{word-spacing:-4.260000px;}
.ws10f{word-spacing:-4.224000px;}
.ws56{word-spacing:-4.080000px;}
.ws85{word-spacing:-3.960000px;}
.ws84{word-spacing:-3.900000px;}
.ws108{word-spacing:-3.888000px;}
.ws10e{word-spacing:-3.792000px;}
.wsa1{word-spacing:-3.780000px;}
.ws9e{word-spacing:-3.720000px;}
.ws2b{word-spacing:-3.660000px;}
.ws20{word-spacing:-3.600000px;}
.ws1c{word-spacing:-3.540000px;}
.wsd6{word-spacing:-3.456000px;}
.ws1e{word-spacing:-3.420000px;}
.wscd{word-spacing:-3.408000px;}
.ws19{word-spacing:-3.360000px;}
.ws25{word-spacing:-3.300000px;}
.wse3{word-spacing:-3.264000px;}
.wsc2{word-spacing:-3.180000px;}
.ws32{word-spacing:-3.120000px;}
.wsc9{word-spacing:-3.024000px;}
.ws83{word-spacing:-3.000000px;}
.wsf0{word-spacing:-2.976000px;}
.wsf3{word-spacing:-2.928000px;}
.ws7{word-spacing:-2.886000px;}
.ws51{word-spacing:-2.880000px;}
.ws2d{word-spacing:-2.820000px;}
.ws1d{word-spacing:-2.760000px;}
.ws12{word-spacing:-2.700000px;}
.ws2c{word-spacing:-2.640000px;}
.ws107{word-spacing:-2.592000px;}
.ws57{word-spacing:-2.580000px;}
.ws10d{word-spacing:-2.544000px;}
.ws21{word-spacing:-2.520000px;}
.wsc1{word-spacing:-2.460000px;}
.wsfc{word-spacing:-2.448000px;}
.ws5a{word-spacing:-2.400000px;}
.ws3b{word-spacing:-2.340000px;}
.ws8{word-spacing:-2.331000px;}
.wsc5{word-spacing:-2.280000px;}
.wse5{word-spacing:-2.256000px;}
.ws2f{word-spacing:-2.220000px;}
.ws34{word-spacing:-2.160000px;}
.wsf5{word-spacing:-2.112000px;}
.ws7f{word-spacing:-2.100000px;}
.wsb8{word-spacing:-2.040000px;}
.wse9{word-spacing:-2.016000px;}
.wsb7{word-spacing:-1.980000px;}
.wsa0{word-spacing:-1.920000px;}
.wsce{word-spacing:-1.872000px;}
.ws80{word-spacing:-1.860000px;}
.ws3d{word-spacing:-1.800000px;}
.wscb{word-spacing:-1.776000px;}
.ws87{word-spacing:-1.740000px;}
.wse8{word-spacing:-1.728000px;}
.ws18{word-spacing:-1.680000px;}
.wse2{word-spacing:-1.632000px;}
.ws58{word-spacing:-1.620000px;}
.wsee{word-spacing:-1.584000px;}
.ws54{word-spacing:-1.560000px;}
.ws62{word-spacing:-1.500000px;}
.wsec{word-spacing:-1.488000px;}
.ws9b{word-spacing:-1.440000px;}
.wse4{word-spacing:-1.392000px;}
.ws4c{word-spacing:-1.380000px;}
.wsd2{word-spacing:-1.344000px;}
.ws94{word-spacing:-1.320000px;}
.wsd3{word-spacing:-1.296000px;}
.ws2e{word-spacing:-1.260000px;}
.wsea{word-spacing:-1.248000px;}
.wsd{word-spacing:-1.200000px;}
.ws101{word-spacing:-1.152000px;}
.ws13{word-spacing:-1.140000px;}
.ws109{word-spacing:-1.104000px;}
.ws5b{word-spacing:-1.080000px;}
.wsfd{word-spacing:-1.056000px;}
.ws63{word-spacing:-1.020000px;}
.wsc8{word-spacing:-1.008000px;}
.ws35{word-spacing:-0.960000px;}
.ws103{word-spacing:-0.912000px;}
.ws5e{word-spacing:-0.900000px;}
.wsd4{word-spacing:-0.864000px;}
.ws11{word-spacing:-0.840000px;}
.wscc{word-spacing:-0.816000px;}
.ws14{word-spacing:-0.780000px;}
.wsd1{word-spacing:-0.768000px;}
.ws42{word-spacing:-0.720000px;}
.ws36{word-spacing:-0.660000px;}
.ws8a{word-spacing:-0.624000px;}
.ws3c{word-spacing:-0.600000px;}
.ws10c{word-spacing:-0.576000px;}
.wsf{word-spacing:-0.540000px;}
.wse6{word-spacing:-0.528000px;}
.ws23{word-spacing:-0.480000px;}
.ws10b{word-spacing:-0.432000px;}
.ws29{word-spacing:-0.420000px;}
.wsf1{word-spacing:-0.384000px;}
.ws1f{word-spacing:-0.360000px;}
.wsf2{word-spacing:-0.336000px;}
.ws93{word-spacing:-0.300000px;}
.ws10a{word-spacing:-0.288000px;}
.ws4e{word-spacing:-0.240000px;}
.wsca{word-spacing:-0.192000px;}
.ws33{word-spacing:-0.180000px;}
.wsd0{word-spacing:-0.144000px;}
.ws8d{word-spacing:-0.143996px;}
.ws3e{word-spacing:-0.120000px;}
.wsef{word-spacing:-0.096000px;}
.ws16{word-spacing:-0.060000px;}
.wse1{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws8b{word-spacing:0.047999px;}
.wsfe{word-spacing:0.048000px;}
.ws38{word-spacing:0.060000px;}
.ws8f{word-spacing:0.095998px;}
.wsd5{word-spacing:0.096000px;}
.ws9f{word-spacing:0.120000px;}
.ws8c{word-spacing:0.143996px;}
.wseb{word-spacing:0.144000px;}
.ws5f{word-spacing:0.180000px;}
.ws8e{word-spacing:0.191995px;}
.ws45{word-spacing:0.288000px;}
.ws15{word-spacing:0.300000px;}
.wsff{word-spacing:0.336000px;}
.ws22{word-spacing:0.420000px;}
.ws81{word-spacing:0.660000px;}
.ws86{word-spacing:0.720000px;}
.ws39{word-spacing:0.780000px;}
.ws95{word-spacing:0.816000px;}
.ws59{word-spacing:0.840000px;}
.wsf6{word-spacing:0.912000px;}
.ws9a{word-spacing:0.960000px;}
.ws65{word-spacing:1.056000px;}
.ws53{word-spacing:1.080000px;}
.wsb{word-spacing:1.140000px;}
.ws72{word-spacing:1.152000px;}
.ws92{word-spacing:1.200000px;}
.ws50{word-spacing:1.260000px;}
.ws104{word-spacing:1.296000px;}
.ws41{word-spacing:1.320000px;}
.ws105{word-spacing:1.344000px;}
.ws46{word-spacing:1.440000px;}
.ws100{word-spacing:1.488000px;}
.ws9c{word-spacing:1.500000px;}
.ws66{word-spacing:1.584000px;}
.wsb3{word-spacing:1.620000px;}
.ws3f{word-spacing:1.680000px;}
.ws24{word-spacing:1.740000px;}
.wsb4{word-spacing:1.776000px;}
.ws1b{word-spacing:1.800000px;}
.ws73{word-spacing:1.860000px;}
.ws70{word-spacing:1.980000px;}
.wsc6{word-spacing:2.400000px;}
.ws106{word-spacing:2.448000px;}
.ws3a{word-spacing:2.520000px;}
.ws64{word-spacing:2.580000px;}
.wsa{word-spacing:2.640000px;}
.ws90{word-spacing:2.700000px;}
.ws91{word-spacing:2.760000px;}
.wse7{word-spacing:2.784000px;}
.ws4d{word-spacing:2.820000px;}
.ws40{word-spacing:2.880000px;}
.wsc3{word-spacing:3.000000px;}
.ws96{word-spacing:3.072000px;}
.ws17{word-spacing:3.180000px;}
.ws43{word-spacing:3.240000px;}
.wsf4{word-spacing:3.264000px;}
.ws10{word-spacing:3.480000px;}
.wsed{word-spacing:3.600000px;}
.ws1a{word-spacing:3.660000px;}
.ws2a{word-spacing:3.720000px;}
.ws37{word-spacing:3.840000px;}
.ws82{word-spacing:3.900000px;}
.ws89{word-spacing:3.936000px;}
.ws4f{word-spacing:3.960000px;}
.ws44{word-spacing:3.984000px;}
.ws52{word-spacing:4.080000px;}
.ws5c{word-spacing:4.260000px;}
.ws60{word-spacing:4.380000px;}
.ws9d{word-spacing:4.680000px;}
.ws55{word-spacing:4.860000px;}
.wse{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.wsb9{word-spacing:5.160000px;}
.wsc7{word-spacing:5.460000px;}
.wsc4{word-spacing:5.520000px;}
.ws102{word-spacing:5.712000px;}
.ws71{word-spacing:6.120000px;}
.ws88{word-spacing:7.320000px;}
.ws7e{word-spacing:110.685233px;}
.ws76{word-spacing:184.608000px;}
.wsab{word-spacing:196.032000px;}
.wsae{word-spacing:202.272000px;}
.wsa5{word-spacing:210.288000px;}
.wsaf{word-spacing:213.024000px;}
.wsa9{word-spacing:218.304000px;}
.wsac{word-spacing:223.344000px;}
.wsb2{word-spacing:225.984000px;}
.wsaa{word-spacing:255.360000px;}
.ws7a{word-spacing:260.160000px;}
.ws77{word-spacing:272.160000px;}
.ws78{word-spacing:296.160000px;}
.ws7b{word-spacing:303.168000px;}
.ws79{word-spacing:314.160000px;}
.wsb1{word-spacing:332.640000px;}
.wsa7{word-spacing:354.720000px;}
.wsa8{word-spacing:367.392000px;}
.wsa6{word-spacing:372.672000px;}
.wsb0{word-spacing:385.968000px;}
.wsa3{word-spacing:386.304000px;}
.wsa4{word-spacing:447.264000px;}
.ws69{word-spacing:466.848000px;}
.ws6a{word-spacing:478.848000px;}
.ws6b{word-spacing:479.760000px;}
.ws6d{word-spacing:490.848000px;}
.ws6f{word-spacing:496.848000px;}
.ws6c{word-spacing:508.848000px;}
.wsad{word-spacing:529.344000px;}
.ws68{word-spacing:626.496000px;}
.ws6e{word-spacing:627.168000px;}
.ws67{word-spacing:1529.472000px;}
._d{margin-left:-2898.096000px;}
._f{margin-left:-2874.288000px;}
._3{margin-left:-9.368400px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.960000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.020000px;}
._8{width:1.020000px;}
._4{width:2.331000px;}
._c{width:3.678000px;}
._9{width:4.740000px;}
._7{width:6.180000px;}
._a{width:7.680000px;}
._b{width:9.300000px;}
._e{width:10.920000px;}
._22{width:43.728000px;}
._20{width:96.912000px;}
._21{width:99.888000px;}
._34{width:148.940276px;}
._11{width:167.952000px;}
._32{width:172.603685px;}
._33{width:175.483613px;}
._45{width:206.934000px;}
._10{width:222.864000px;}
._2b{width:228.528000px;}
._23{width:252.480000px;}
._35{width:255.264000px;}
._2c{width:258.480000px;}
._44{width:260.016000px;}
._28{width:270.480000px;}
._12{width:275.352000px;}
._2d{width:284.160000px;}
._2f{width:295.152000px;}
._2e{width:308.160000px;}
._30{width:311.712000px;}
._41{width:313.014000px;}
._26{width:315.168000px;}
._29{width:317.850000px;}
._27{width:320.550000px;}
._3e{width:322.752000px;}
._24{width:326.160000px;}
._25{width:332.160000px;}
._2a{width:333.264000px;}
._46{width:340.656000px;}
._3c{width:353.376000px;}
._3f{width:358.032000px;}
._3a{width:360.720000px;}
._36{width:366.000000px;}
._39{width:368.592000px;}
._43{width:382.704000px;}
._3d{width:388.662000px;}
._40{width:401.328000px;}
._3b{width:404.016000px;}
._31{width:406.392000px;}
._42{width:425.328000px;}
._37{width:428.016000px;}
._38{width:446.688000px;}
._1c{width:478.848000px;}
._13{width:490.848000px;}
._17{width:520.848000px;}
._1d{width:614.544000px;}
._1a{width:636.480000px;}
._1b{width:645.168000px;}
._1e{width:662.496000px;}
._14{width:686.496000px;}
._19{width:703.104000px;}
._15{width:710.448000px;}
._1f{width:716.496000px;}
._16{width:753.792000px;}
._18{width:761.760000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsb{font-size:47.998800px;}
.fs9{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;}
.y2f{bottom:47.777250px;}
.y1e6{bottom:80.263500px;}
.y177{bottom:83.635350px;}
.y94{bottom:83.770350px;}
.y167{bottom:83.851650px;}
.yba{bottom:83.912100px;}
.y12d{bottom:83.920350px;}
.y118{bottom:83.956650px;}
.ybf{bottom:84.169200px;}
.yd1{bottom:84.393600px;}
.y2c{bottom:88.233900px;}
.y5a{bottom:88.378950px;}
.yfe{bottom:93.036450px;}
.yec{bottom:93.076200px;}
.y1a4{bottom:95.121900px;}
.y1e5{bottom:95.263500px;}
.y110{bottom:95.548350px;}
.y117{bottom:99.700650px;}
.ybe{bottom:99.913200px;}
.yd0{bottom:100.137600px;}
.y166{bottom:100.351650px;}
.y179{bottom:101.365350px;}
.y176{bottom:101.635350px;}
.y93{bottom:101.770350px;}
.yb9{bottom:101.912100px;}
.y12c{bottom:101.920350px;}
.y2b{bottom:103.230150px;}
.y59{bottom:106.378950px;}
.yeb{bottom:109.324200px;}
.y1a3{bottom:110.121900px;}
.y1e4{bottom:110.263500px;}
.y116{bottom:115.444650px;}
.ybd{bottom:115.657200px;}
.ycf{bottom:115.881600px;}
.y2a{bottom:118.223700px;}
.y175{bottom:119.635350px;}
.y92{bottom:119.770350px;}
.yb8{bottom:119.912100px;}
.y12b{bottom:119.920350px;}
.yfd{bottom:122.040450px;}
.y58{bottom:124.378950px;}
.y1a2{bottom:125.121900px;}
.y1e3{bottom:125.263500px;}
.yea{bottom:125.572200px;}
.y165{bottom:125.863650px;}
.y115{bottom:131.188650px;}
.ybc{bottom:131.401200px;}
.yce{bottom:131.625600px;}
.yca{bottom:137.365350px;}
.y174{bottom:137.635350px;}
.y91{bottom:137.770350px;}
.yb7{bottom:137.912100px;}
.y12a{bottom:137.920350px;}
.yfc{bottom:138.288450px;}
.y1a1{bottom:140.121900px;}
.y1e2{bottom:140.263500px;}
.y57{bottom:142.378950px;}
.y114{bottom:146.932650px;}
.ybb{bottom:147.145200px;}
.yfb{bottom:154.536450px;}
.ye9{bottom:154.576200px;}
.y164{bottom:154.867650px;}
.y1a0{bottom:155.121900px;}
.y1e1{bottom:155.263500px;}
.yc9{bottom:155.365350px;}
.y173{bottom:155.635350px;}
.y90{bottom:155.770350px;}
.yb6{bottom:155.912100px;}
.y129{bottom:155.920350px;}
.y56{bottom:160.378950px;}
.y19f{bottom:170.121900px;}
.y1e0{bottom:170.263500px;}
.yfa{bottom:170.784450px;}
.y172{bottom:173.635350px;}
.y8f{bottom:173.770350px;}
.yb5{bottom:173.912100px;}
.y128{bottom:173.920350px;}
.y55{bottom:178.378950px;}
.ye8{bottom:183.580200px;}
.y163{bottom:183.871650px;}
.y19e{bottom:185.121900px;}
.y1df{bottom:185.263500px;}
.yf9{bottom:187.032450px;}
.y29{bottom:188.959200px;}
.yc8{bottom:191.230350px;}
.y171{bottom:191.635350px;}
.y8e{bottom:191.770350px;}
.yb4{bottom:191.912100px;}
.y127{bottom:191.920350px;}
.y54{bottom:196.378950px;}
.ye7{bottom:199.828200px;}
.y162{bottom:200.119650px;}
.y19d{bottom:200.121900px;}
.y1de{bottom:200.263500px;}
.y28{bottom:206.959200px;}
.y170{bottom:209.635350px;}
.y8d{bottom:209.770350px;}
.yb3{bottom:209.912100px;}
.y126{bottom:209.920350px;}
.y53{bottom:214.378950px;}
.y19c{bottom:215.121900px;}
.y1dd{bottom:215.263500px;}
.yf7{bottom:216.048450px;}
.yf6{bottom:216.060450px;}
.ye6{bottom:216.076200px;}
.y161{bottom:216.367650px;}
.y27{bottom:224.959200px;}
.y112{bottom:225.798150px;}
.y16f{bottom:227.635350px;}
.y8c{bottom:227.770350px;}
.yb2{bottom:227.912100px;}
.y125{bottom:227.920350px;}
.y19b{bottom:230.121900px;}
.y1dc{bottom:230.263500px;}
.ye5{bottom:232.324200px;}
.y52{bottom:232.378950px;}
.yf8{bottom:232.548450px;}
.yf5{bottom:232.560450px;}
.y160{bottom:232.615650px;}
.y26{bottom:242.959200px;}
.y19a{bottom:245.121900px;}
.y1db{bottom:245.263500px;}
.y16e{bottom:245.635350px;}
.y8b{bottom:245.770350px;}
.yb1{bottom:245.912100px;}
.y124{bottom:245.920350px;}
.ye4{bottom:248.572200px;}
.y15f{bottom:248.863650px;}
.y51{bottom:250.378950px;}
.y199{bottom:260.121900px;}
.y1da{bottom:260.263500px;}
.y25{bottom:260.959200px;}
.yc0{bottom:263.003700px;}
.y178{bottom:263.365350px;}
.y16d{bottom:263.635350px;}
.y8a{bottom:263.770350px;}
.yb0{bottom:263.912100px;}
.y123{bottom:263.920350px;}
.ye3{bottom:264.820200px;}
.yf4{bottom:264.955350px;}
.y15e{bottom:265.111650px;}
.y50{bottom:268.378950px;}
.y198{bottom:275.121900px;}
.y1d9{bottom:275.263500px;}
.y24{bottom:278.959200px;}
.ye2{bottom:281.068200px;}
.y16c{bottom:281.635350px;}
.y89{bottom:281.770350px;}
.yaf{bottom:281.912100px;}
.y122{bottom:281.920350px;}
.yf3{bottom:284.455350px;}
.y4f{bottom:286.378950px;}
.y197{bottom:290.121900px;}
.y1d8{bottom:290.263500px;}
.y15d{bottom:294.115650px;}
.y23{bottom:296.959200px;}
.ye1{bottom:297.316200px;}
.y16b{bottom:299.635350px;}
.y88{bottom:299.770350px;}
.yae{bottom:299.912100px;}
.y121{bottom:299.920350px;}
.yf2{bottom:303.955350px;}
.y4e{bottom:304.378950px;}
.y196{bottom:305.121900px;}
.y1d7{bottom:305.263500px;}
.y15c{bottom:310.363650px;}
.ye0{bottom:313.564200px;}
.y22{bottom:314.959200px;}
.y87{bottom:317.770350px;}
.yad{bottom:317.912100px;}
.y120{bottom:317.920350px;}
.y195{bottom:320.121900px;}
.y1d6{bottom:320.263500px;}
.y4d{bottom:322.378950px;}
.y15b{bottom:326.611650px;}
.ydf{bottom:329.812200px;}
.y21{bottom:332.959200px;}
.y194{bottom:335.121900px;}
.y16a{bottom:335.230350px;}
.y1d5{bottom:335.263500px;}
.y86{bottom:335.770350px;}
.yac{bottom:335.912100px;}
.y11f{bottom:335.920350px;}
.y4c{bottom:340.378950px;}
.y15a{bottom:342.859650px;}
.yde{bottom:346.060200px;}
.y193{bottom:350.121900px;}
.y1d4{bottom:350.263500px;}
.y20{bottom:350.959200px;}
.y102{bottom:351.312450px;}
.y85{bottom:353.770350px;}
.yab{bottom:353.912100px;}
.y11e{bottom:353.920350px;}
.y4b{bottom:358.378950px;}
.y159{bottom:359.107650px;}
.y192{bottom:365.121900px;}
.y1d3{bottom:365.263500px;}
.y101{bottom:367.056450px;}
.y1f{bottom:368.959200px;}
.y84{bottom:371.770350px;}
.yaa{bottom:371.912100px;}
.y11d{bottom:371.920350px;}
.ydd{bottom:375.064200px;}
.y158{bottom:375.355650px;}
.y4a{bottom:376.378950px;}
.y191{bottom:380.121900px;}
.y1d2{bottom:380.263500px;}
.y100{bottom:382.800450px;}
.y1e{bottom:386.959200px;}
.y83{bottom:389.770350px;}
.ya9{bottom:389.912100px;}
.y11c{bottom:389.920350px;}
.y157{bottom:391.603650px;}
.y49{bottom:394.378950px;}
.y190{bottom:395.121900px;}
.y1d1{bottom:395.263500px;}
.yff{bottom:398.544450px;}
.ydc{bottom:404.068200px;}
.y1d{bottom:404.959200px;}
.y82{bottom:407.770350px;}
.y156{bottom:407.851650px;}
.ya8{bottom:407.912100px;}
.y11b{bottom:407.920350px;}
.y18f{bottom:410.121900px;}
.y1d0{bottom:410.263500px;}
.y48{bottom:412.378950px;}
.y10f{bottom:421.584000px;}
.y1c{bottom:422.959200px;}
.y155{bottom:424.099650px;}
.y18e{bottom:425.121900px;}
.y111{bottom:425.262900px;}
.y1cf{bottom:425.263500px;}
.y81{bottom:425.770350px;}
.ya7{bottom:425.912100px;}
.y11a{bottom:425.920350px;}
.y47{bottom:430.378950px;}
.ydb{bottom:436.459350px;}
.y18d{bottom:440.121900px;}
.y1ce{bottom:440.263500px;}
.y154{bottom:440.347650px;}
.y1b{bottom:440.959200px;}
.y80{bottom:443.770350px;}
.y10e{bottom:443.856065px;}
.ycd{bottom:443.912100px;}
.ya6{bottom:443.920350px;}
.y46{bottom:448.378950px;}
.y103{bottom:452.471850px;}
.yd4{bottom:452.877600px;}
.y18c{bottom:455.121900px;}
.y1cd{bottom:455.263500px;}
.yda{bottom:455.959350px;}
.y153{bottom:456.595650px;}
.y1a{bottom:458.959200px;}
.y7f{bottom:461.770350px;}
.ycc{bottom:461.912100px;}
.ya5{bottom:461.920350px;}
.y45{bottom:466.378950px;}
.y18b{bottom:470.121900px;}
.y1cc{bottom:470.263500px;}
.y104{bottom:470.531399px;}
.y152{bottom:472.843650px;}
.y19{bottom:476.959200px;}
.y7e{bottom:479.770350px;}
.y14d{bottom:479.785350px;}
.ya4{bottom:479.920350px;}
.y44{bottom:484.378950px;}
.y18a{bottom:485.121900px;}
.y1cb{bottom:485.263500px;}
.y105{bottom:488.506949px;}
.y18{bottom:494.959200px;}
.y7d{bottom:497.770350px;}
.y14c{bottom:497.785350px;}
.ya3{bottom:497.920350px;}
.y189{bottom:500.121900px;}
.y1ca{bottom:500.263500px;}
.y151{bottom:501.847650px;}
.y43{bottom:502.378950px;}
.y106{bottom:506.482500px;}
.yd8{bottom:507.582450px;}
.y17{bottom:512.959200px;}
.y188{bottom:515.121900px;}
.y1c9{bottom:515.263500px;}
.y169{bottom:515.515350px;}
.yc7{bottom:515.770350px;}
.y14b{bottom:515.785350px;}
.ya2{bottom:515.920350px;}
.y14f{bottom:516.355650px;}
.y42{bottom:520.378950px;}
.yd7{bottom:523.326450px;}
.y107{bottom:524.542048px;}
.y187{bottom:530.121900px;}
.y1c8{bottom:530.263500px;}
.y150{bottom:530.863650px;}
.y16{bottom:530.959200px;}
.y7c{bottom:533.365350px;}
.ycb{bottom:533.515350px;}
.yc6{bottom:533.770350px;}
.y14a{bottom:533.785350px;}
.ya1{bottom:533.920350px;}
.y41{bottom:538.378950px;}
.yd6{bottom:539.070450px;}
.y108{bottom:542.517599px;}
.y186{bottom:545.121900px;}
.y1c7{bottom:545.263500px;}
.y15{bottom:548.959200px;}
.yc5{bottom:551.770350px;}
.y149{bottom:551.785350px;}
.ya0{bottom:551.920350px;}
.y40{bottom:556.378950px;}
.y185{bottom:560.121900px;}
.y1c6{bottom:560.263500px;}
.y109{bottom:560.493149px;}
.y14e{bottom:563.245350px;}
.y14{bottom:566.959200px;}
.y7b{bottom:569.230350px;}
.yc4{bottom:569.770350px;}
.y148{bottom:569.785350px;}
.y9f{bottom:569.920350px;}
.y3f{bottom:574.378950px;}
.y184{bottom:575.121900px;}
.y1c5{bottom:575.263500px;}
.y10a{bottom:578.552698px;}
.y13{bottom:584.959200px;}
.yc3{bottom:587.770350px;}
.y147{bottom:587.785350px;}
.y9e{bottom:587.920350px;}
.y183{bottom:590.121900px;}
.y1c4{bottom:590.263500px;}
.y3e{bottom:592.378950px;}
.y10b{bottom:596.528249px;}
.y12{bottom:602.959200px;}
.y182{bottom:605.121900px;}
.y1c3{bottom:605.263500px;}
.yc2{bottom:605.770350px;}
.y146{bottom:605.785350px;}
.y9d{bottom:605.920350px;}
.y3d{bottom:610.378950px;}
.y10c{bottom:614.515799px;}
.y181{bottom:620.121900px;}
.y1c2{bottom:620.263500px;}
.y7a{bottom:623.770350px;}
.y145{bottom:623.785350px;}
.y9c{bottom:623.920350px;}
.y3c{bottom:628.378950px;}
.y10d{bottom:632.575347px;}
.y180{bottom:635.121900px;}
.y1c1{bottom:635.263500px;}
.y79{bottom:641.770350px;}
.y144{bottom:641.785350px;}
.y9b{bottom:641.920350px;}
.y3b{bottom:646.378950px;}
.y11{bottom:648.117300px;}
.y17f{bottom:650.121900px;}
.y1c0{bottom:650.263500px;}
.y78{bottom:659.770350px;}
.y143{bottom:659.785350px;}
.y9a{bottom:659.920350px;}
.y10{bottom:660.568050px;}
.y3a{bottom:664.378950px;}
.y17e{bottom:665.121900px;}
.y1bf{bottom:665.263500px;}
.y77{bottom:677.770350px;}
.y142{bottom:677.785350px;}
.y99{bottom:677.920350px;}
.y17d{bottom:680.121900px;}
.y1be{bottom:680.263500px;}
.y39{bottom:682.378950px;}
.yf{bottom:692.283600px;}
.y1bd{bottom:695.263500px;}
.y76{bottom:695.770350px;}
.y141{bottom:695.785350px;}
.y98{bottom:695.920350px;}
.y38{bottom:700.378950px;}
.y1bc{bottom:710.263500px;}
.ye{bottom:711.208950px;}
.y17c{bottom:713.230350px;}
.y75{bottom:713.770350px;}
.y140{bottom:713.785350px;}
.y97{bottom:713.920350px;}
.y37{bottom:718.378950px;}
.yd{bottom:719.283600px;}
.y1bb{bottom:725.263500px;}
.y74{bottom:731.770350px;}
.y13f{bottom:731.785350px;}
.y96{bottom:731.920350px;}
.yc{bottom:732.783600px;}
.y36{bottom:736.378950px;}
.y1ba{bottom:740.263500px;}
.yb{bottom:746.283600px;}
.y119{bottom:749.515350px;}
.y73{bottom:749.770350px;}
.y13e{bottom:749.785350px;}
.y35{bottom:754.378950px;}
.y1b9{bottom:755.263500px;}
.ya{bottom:765.208950px;}
.y95{bottom:767.515350px;}
.y72{bottom:767.770350px;}
.y13d{bottom:767.785350px;}
.y1b8{bottom:770.263500px;}
.y34{bottom:772.378950px;}
.yd3{bottom:776.661600px;}
.y1b7{bottom:785.263500px;}
.yf1{bottom:785.365350px;}
.y71{bottom:785.770350px;}
.y13c{bottom:785.785350px;}
.y33{bottom:790.378950px;}
.y9{bottom:793.936050px;}
.yd2{bottom:798.129600px;}
.y1b6{bottom:800.263500px;}
.yf0{bottom:803.365350px;}
.y70{bottom:803.770350px;}
.y13b{bottom:803.785350px;}
.y32{bottom:808.378950px;}
.y8{bottom:814.930800px;}
.y1b5{bottom:815.263500px;}
.yef{bottom:821.365350px;}
.y6f{bottom:821.770350px;}
.y13a{bottom:821.785350px;}
.y31{bottom:826.378950px;}
.y1b4{bottom:830.263500px;}
.y6e{bottom:839.770350px;}
.y139{bottom:839.785350px;}
.y5c{bottom:844.378950px;}
.yd9{bottom:844.686450px;}
.y1b3{bottom:845.263500px;}
.yee{bottom:857.230350px;}
.y6d{bottom:857.770350px;}
.y138{bottom:857.785350px;}
.y1b2{bottom:860.263500px;}
.y7{bottom:861.114450px;}
.y30{bottom:861.973950px;}
.y5b{bottom:862.378950px;}
.y1b1{bottom:875.263500px;}
.y17b{bottom:875.365350px;}
.y6c{bottom:875.770350px;}
.y137{bottom:875.785350px;}
.y1b0{bottom:890.263500px;}
.y6b{bottom:893.770350px;}
.y136{bottom:893.785350px;}
.y6{bottom:897.575250px;}
.y1af{bottom:905.263500px;}
.y6a{bottom:911.770350px;}
.y135{bottom:911.785350px;}
.y1ae{bottom:920.263500px;}
.y17a{bottom:929.365350px;}
.y69{bottom:929.770350px;}
.y134{bottom:929.785350px;}
.y5{bottom:934.036050px;}
.y1ad{bottom:935.263500px;}
.y61{bottom:939.011100px;}
.y68{bottom:947.770350px;}
.y133{bottom:947.785350px;}
.y1ac{bottom:950.263500px;}
.y1ab{bottom:965.263500px;}
.y67{bottom:965.770350px;}
.y132{bottom:965.785350px;}
.y60{bottom:966.356100px;}
.y4{bottom:970.465200px;}
.y1aa{bottom:980.263500px;}
.y66{bottom:983.770350px;}
.y131{bottom:983.785350px;}
.y5f{bottom:984.356100px;}
.y1a9{bottom:995.263500px;}
.y65{bottom:1001.770350px;}
.y130{bottom:1001.785350px;}
.y5e{bottom:1002.356100px;}
.y3{bottom:1006.926000px;}
.y1a8{bottom:1010.263500px;}
.y64{bottom:1019.770350px;}
.y12f{bottom:1019.785350px;}
.y5d{bottom:1020.356100px;}
.y1a7{bottom:1025.263500px;}
.y63{bottom:1037.770350px;}
.y12e{bottom:1037.785350px;}
.y1a6{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1a5{bottom:1132.413900px;}
.yc1{bottom:1132.415700px;}
.y62{bottom:1132.418700px;}
.y113{bottom:1132.421700px;}
.y1e7{bottom:1132.423500px;}
.yd5{bottom:1132.437600px;}
.yed{bottom:1132.480200px;}
.y168{bottom:1132.483650px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h7{height:19.099797px;}
.h9{height:19.125417px;}
.ha{height:28.412109px;}
.h2{height:30.597656px;}
.h10{height:32.761230px;}
.hf{height:32.783203px;}
.he{height:32.794003px;}
.h8{height:32.805176px;}
.h12{height:34.945312px;}
.h1b{height:34.968750px;}
.h11{height:34.992188px;}
.h19{height:42.116135px;}
.h16{height:42.117188px;}
.hd{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.740234px;}
.h13{height:52.646484px;}
.h1c{height:54.266484px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h15{height:58.922900px;}
.h14{height:58.955900px;}
.h18{height:75.093187px;}
.h4{height:92.168262px;}
.h17{height:108.069187px;}
.h1a{height:235.770000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:338.032500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:9.972000px;}
.x29{left:70.582650px;}
.x7{left:76.535400px;}
.x1a{left:78.661350px;}
.xc{left:85.039350px;}
.x24{left:90.191999px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x18{left:99.929100px;}
.x23{left:102.167700px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x28{left:115.566150px;}
.x36{left:123.307350px;}
.x3{left:125.427900px;}
.x10{left:131.800350px;}
.x16{left:137.335350px;}
.x25{left:140.962730px;}
.xf{left:165.970350px;}
.x1b{left:182.533350px;}
.x8{left:190.553550px;}
.x1c{left:193.273350px;}
.x27{left:211.659600px;}
.x15{left:232.360350px;}
.x2d{left:250.871250px;}
.x17{left:270.869100px;}
.x1d{left:276.073350px;}
.x1e{left:282.157350px;}
.x2e{left:378.455250px;}
.x2b{left:450.311250px;}
.x6{left:455.041500px;}
.xa{left:457.088550px;}
.x1f{left:476.149350px;}
.x11{left:478.338750px;}
.x35{left:482.615400px;}
.xb{left:491.108550px;}
.x33{left:503.858400px;}
.x12{left:512.358750px;}
.x2f{left:527.339250px;}
.x20{left:546.409350px;}
.x31{left:570.688050px;}
.x19{left:579.425400px;}
.x32{left:596.095350px;}
.x14{left:601.450950px;}
.x22{left:661.021350px;}
.xe{left:663.492300px;}
.x21{left:668.425350px;}
.x2{left:693.365400px;}
.x2c{left:718.583250px;}
.x2a{left:721.717650px;}
.xd{left:728.391600px;}
.x34{left:742.986600px;}
.x30{left:744.059250px;}
.x13{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.v4{vertical-align:29.312000pt;}
.v5{vertical-align:58.624000pt;}
.ls5b{letter-spacing:-2.933333pt;}
.ls98{letter-spacing:-2.346667pt;}
.ls6e{letter-spacing:-1.578667pt;}
.ls59{letter-spacing:-0.960000pt;}
.ls58{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.693333pt;}
.ls6a{letter-spacing:-0.480000pt;}
.ls30{letter-spacing:-0.320000pt;}
.lsa7{letter-spacing:-0.298667pt;}
.ls2f{letter-spacing:-0.266667pt;}
.ls49{letter-spacing:-0.256000pt;}
.ls2d{letter-spacing:-0.213333pt;}
.ls64{letter-spacing:-0.170662pt;}
.ls2e{letter-spacing:-0.160000pt;}
.ls97{letter-spacing:-0.128000pt;}
.ls63{letter-spacing:-0.127997pt;}
.ls57{letter-spacing:-0.106667pt;}
.ls82{letter-spacing:-0.085333pt;}
.ls65{letter-spacing:-0.085331pt;}
.ls48{letter-spacing:-0.053333pt;}
.lsa6{letter-spacing:-0.042667pt;}
.ls62{letter-spacing:-0.042666pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.005045pt;}
.ls96{letter-spacing:0.042667pt;}
.ls54{letter-spacing:0.049600pt;}
.ls13{letter-spacing:0.053333pt;}
.ls90{letter-spacing:0.085333pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls3d{letter-spacing:0.107200pt;}
.ls60{letter-spacing:0.127997pt;}
.ls79{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.160000pt;}
.ls73{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.213333pt;}
.lsa0{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.266667pt;}
.ls92{letter-spacing:0.298667pt;}
.ls23{letter-spacing:0.320000pt;}
.ls99{letter-spacing:0.341333pt;}
.ls46{letter-spacing:0.355733pt;}
.ls8{letter-spacing:0.373333pt;}
.lsa1{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls86{letter-spacing:0.469333pt;}
.ls9{letter-spacing:0.480000pt;}
.lsa2{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.533333pt;}
.ls5f{letter-spacing:0.554667pt;}
.ls7e{letter-spacing:0.569600pt;}
.ls4{letter-spacing:0.586667pt;}
.ls7d{letter-spacing:0.597333pt;}
.ls20{letter-spacing:0.640000pt;}
.ls81{letter-spacing:0.682667pt;}
.ls12{letter-spacing:0.693333pt;}
.ls75{letter-spacing:0.725333pt;}
.ls5{letter-spacing:0.746667pt;}
.ls4d{letter-spacing:0.754133pt;}
.ls7c{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls8f{letter-spacing:0.810667pt;}
.ls4f{letter-spacing:0.826667pt;}
.ls36{letter-spacing:0.853333pt;}
.ls52{letter-spacing:0.855467pt;}
.ls71{letter-spacing:0.896000pt;}
.ls35{letter-spacing:0.906667pt;}
.ls9b{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls9c{letter-spacing:0.981333pt;}
.lsf{letter-spacing:1.013333pt;}
.ls94{letter-spacing:1.024000pt;}
.ls41{letter-spacing:1.050133pt;}
.ls7{letter-spacing:1.066667pt;}
.ls89{letter-spacing:1.109333pt;}
.ls32{letter-spacing:1.120000pt;}
.ls7b{letter-spacing:1.152000pt;}
.ls25{letter-spacing:1.173333pt;}
.ls7a{letter-spacing:1.194667pt;}
.ls45{letter-spacing:1.226667pt;}
.ls93{letter-spacing:1.237333pt;}
.ls4b{letter-spacing:1.280000pt;}
.ls8b{letter-spacing:1.322667pt;}
.ls1c{letter-spacing:1.333333pt;}
.ls4c{letter-spacing:1.336533pt;}
.ls19{letter-spacing:1.386667pt;}
.ls8e{letter-spacing:1.408000pt;}
.ls4e{letter-spacing:1.409067pt;}
.ls1f{letter-spacing:1.440000pt;}
.ls83{letter-spacing:1.450667pt;}
.ls51{letter-spacing:1.458667pt;}
.ls15{letter-spacing:1.493333pt;}
.ls88{letter-spacing:1.536000pt;}
.ls14{letter-spacing:1.546667pt;}
.ls74{letter-spacing:1.578667pt;}
.ls10{letter-spacing:1.600000pt;}
.ls76{letter-spacing:1.621333pt;}
.ls47{letter-spacing:1.653333pt;}
.ls9d{letter-spacing:1.664000pt;}
.ls69{letter-spacing:1.706667pt;}
.ls29{letter-spacing:1.760000pt;}
.ls8d{letter-spacing:1.792000pt;}
.ls40{letter-spacing:1.813333pt;}
.ls33{letter-spacing:1.866667pt;}
.ls95{letter-spacing:1.877333pt;}
.ls3f{letter-spacing:1.920000pt;}
.ls6{letter-spacing:1.973333pt;}
.ls85{letter-spacing:2.005333pt;}
.ls38{letter-spacing:2.026667pt;}
.ls44{letter-spacing:2.080000pt;}
.ls5e{letter-spacing:2.090667pt;}
.ls21{letter-spacing:2.133333pt;}
.ls9a{letter-spacing:2.176000pt;}
.ls42{letter-spacing:2.186667pt;}
.ls26{letter-spacing:2.240000pt;}
.ls8c{letter-spacing:2.261333pt;}
.ls4a{letter-spacing:2.293333pt;}
.lsa8{letter-spacing:2.304000pt;}
.ls2c{letter-spacing:2.346667pt;}
.lsb{letter-spacing:2.400000pt;}
.ls1e{letter-spacing:2.453333pt;}
.ls24{letter-spacing:2.506667pt;}
.ls43{letter-spacing:2.560000pt;}
.ls77{letter-spacing:2.602667pt;}
.ls53{letter-spacing:2.613333pt;}
.ls91{letter-spacing:2.645333pt;}
.ls5a{letter-spacing:2.666667pt;}
.ls72{letter-spacing:2.688000pt;}
.ls56{letter-spacing:2.720000pt;}
.ls3c{letter-spacing:2.773333pt;}
.ls3e{letter-spacing:2.826667pt;}
.ls5c{letter-spacing:2.880000pt;}
.ls84{letter-spacing:2.901333pt;}
.ls50{letter-spacing:2.933333pt;}
.ls7f{letter-spacing:2.944000pt;}
.ls18{letter-spacing:2.986667pt;}
.ls87{letter-spacing:3.029333pt;}
.ls22{letter-spacing:3.040000pt;}
.ls80{letter-spacing:3.072000pt;}
.ls70{letter-spacing:3.093333pt;}
.ls8a{letter-spacing:3.114667pt;}
.ls1d{letter-spacing:3.146667pt;}
.lsd{letter-spacing:3.200000pt;}
.ls31{letter-spacing:3.253333pt;}
.lsa{letter-spacing:3.306667pt;}
.ls66{letter-spacing:3.360000pt;}
.lsa4{letter-spacing:3.370667pt;}
.ls9f{letter-spacing:3.456000pt;}
.ls3b{letter-spacing:3.466667pt;}
.lsc{letter-spacing:3.520000pt;}
.ls37{letter-spacing:3.573333pt;}
.ls1b{letter-spacing:3.626667pt;}
.ls5d{letter-spacing:3.680000pt;}
.ls39{letter-spacing:3.733333pt;}
.lsa5{letter-spacing:3.754667pt;}
.ls17{letter-spacing:3.786667pt;}
.ls6c{letter-spacing:3.893333pt;}
.ls9e{letter-spacing:3.925333pt;}
.ls6d{letter-spacing:4.053333pt;}
.lsa3{letter-spacing:4.224000pt;}
.ls78{letter-spacing:4.437333pt;}
.ls6b{letter-spacing:4.640000pt;}
.ls6f{letter-spacing:4.693333pt;}
.ls3a{letter-spacing:5.333333pt;}
.ls67{letter-spacing:5.386667pt;}
.ls2b{letter-spacing:5.440000pt;}
.ls68{letter-spacing:5.920000pt;}
.ls55{letter-spacing:8.960000pt;}
.ls61{letter-spacing:60.742788pt;}
.ws0{word-spacing:-31.284267pt;}
.ws98{word-spacing:-16.693333pt;}
.wsba{word-spacing:-16.320000pt;}
.ws74{word-spacing:-16.266667pt;}
.ws48{word-spacing:-15.573333pt;}
.ws2{word-spacing:-15.568000pt;}
.ws75{word-spacing:-15.466667pt;}
.ws27{word-spacing:-15.360000pt;}
.wsbb{word-spacing:-15.104000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws61{word-spacing:-14.666667pt;}
.ws4a{word-spacing:-14.613333pt;}
.ws26{word-spacing:-14.453333pt;}
.ws97{word-spacing:-14.346667pt;}
.ws99{word-spacing:-14.293333pt;}
.ws28{word-spacing:-13.706667pt;}
.wsa2{word-spacing:-13.493333pt;}
.wsb5{word-spacing:-13.440000pt;}
.ws49{word-spacing:-13.333333pt;}
.ws47{word-spacing:-13.280000pt;}
.wsde{word-spacing:-13.269333pt;}
.ws9{word-spacing:-13.120000pt;}
.wsf8{word-spacing:-12.928000pt;}
.wsd7{word-spacing:-12.672000pt;}
.wsd8{word-spacing:-12.373333pt;}
.wsc0{word-spacing:-12.288000pt;}
.wsf7{word-spacing:-12.117333pt;}
.wsbe{word-spacing:-11.946667pt;}
.ws5{word-spacing:-11.861333pt;}
.wsbf{word-spacing:-11.818667pt;}
.wse0{word-spacing:-11.733333pt;}
.wsdf{word-spacing:-11.520000pt;}
.wsd9{word-spacing:-11.392000pt;}
.wsbd{word-spacing:-11.349333pt;}
.ws7c{word-spacing:-11.221333pt;}
.ws4{word-spacing:-11.120000pt;}
.wsf9{word-spacing:-11.050667pt;}
.wsdd{word-spacing:-11.008000pt;}
.wsfb{word-spacing:-10.922667pt;}
.wsdb{word-spacing:-10.880000pt;}
.wsfa{word-spacing:-10.837333pt;}
.wsbc{word-spacing:-10.666667pt;}
.ws7d{word-spacing:-10.666400pt;}
.wsda{word-spacing:-10.538667pt;}
.ws1{word-spacing:-9.076144pt;}
.wsdc{word-spacing:-8.320000pt;}
.ws4b{word-spacing:-7.773333pt;}
.ws31{word-spacing:-5.333333pt;}
.wsb6{word-spacing:-4.693333pt;}
.ws5d{word-spacing:-4.480000pt;}
.wscf{word-spacing:-4.437333pt;}
.ws30{word-spacing:-3.786667pt;}
.ws10f{word-spacing:-3.754667pt;}
.ws56{word-spacing:-3.626667pt;}
.ws85{word-spacing:-3.520000pt;}
.ws84{word-spacing:-3.466667pt;}
.ws108{word-spacing:-3.456000pt;}
.ws10e{word-spacing:-3.370667pt;}
.wsa1{word-spacing:-3.360000pt;}
.ws9e{word-spacing:-3.306667pt;}
.ws2b{word-spacing:-3.253333pt;}
.ws20{word-spacing:-3.200000pt;}
.ws1c{word-spacing:-3.146667pt;}
.wsd6{word-spacing:-3.072000pt;}
.ws1e{word-spacing:-3.040000pt;}
.wscd{word-spacing:-3.029333pt;}
.ws19{word-spacing:-2.986667pt;}
.ws25{word-spacing:-2.933333pt;}
.wse3{word-spacing:-2.901333pt;}
.wsc2{word-spacing:-2.826667pt;}
.ws32{word-spacing:-2.773333pt;}
.wsc9{word-spacing:-2.688000pt;}
.ws83{word-spacing:-2.666667pt;}
.wsf0{word-spacing:-2.645333pt;}
.wsf3{word-spacing:-2.602667pt;}
.ws7{word-spacing:-2.565333pt;}
.ws51{word-spacing:-2.560000pt;}
.ws2d{word-spacing:-2.506667pt;}
.ws1d{word-spacing:-2.453333pt;}
.ws12{word-spacing:-2.400000pt;}
.ws2c{word-spacing:-2.346667pt;}
.ws107{word-spacing:-2.304000pt;}
.ws57{word-spacing:-2.293333pt;}
.ws10d{word-spacing:-2.261333pt;}
.ws21{word-spacing:-2.240000pt;}
.wsc1{word-spacing:-2.186667pt;}
.wsfc{word-spacing:-2.176000pt;}
.ws5a{word-spacing:-2.133333pt;}
.ws3b{word-spacing:-2.080000pt;}
.ws8{word-spacing:-2.072000pt;}
.wsc5{word-spacing:-2.026667pt;}
.wse5{word-spacing:-2.005333pt;}
.ws2f{word-spacing:-1.973333pt;}
.ws34{word-spacing:-1.920000pt;}
.wsf5{word-spacing:-1.877333pt;}
.ws7f{word-spacing:-1.866667pt;}
.wsb8{word-spacing:-1.813333pt;}
.wse9{word-spacing:-1.792000pt;}
.wsb7{word-spacing:-1.760000pt;}
.wsa0{word-spacing:-1.706667pt;}
.wsce{word-spacing:-1.664000pt;}
.ws80{word-spacing:-1.653333pt;}
.ws3d{word-spacing:-1.600000pt;}
.wscb{word-spacing:-1.578667pt;}
.ws87{word-spacing:-1.546667pt;}
.wse8{word-spacing:-1.536000pt;}
.ws18{word-spacing:-1.493333pt;}
.wse2{word-spacing:-1.450667pt;}
.ws58{word-spacing:-1.440000pt;}
.wsee{word-spacing:-1.408000pt;}
.ws54{word-spacing:-1.386667pt;}
.ws62{word-spacing:-1.333333pt;}
.wsec{word-spacing:-1.322667pt;}
.ws9b{word-spacing:-1.280000pt;}
.wse4{word-spacing:-1.237333pt;}
.ws4c{word-spacing:-1.226667pt;}
.wsd2{word-spacing:-1.194667pt;}
.ws94{word-spacing:-1.173333pt;}
.wsd3{word-spacing:-1.152000pt;}
.ws2e{word-spacing:-1.120000pt;}
.wsea{word-spacing:-1.109333pt;}
.wsd{word-spacing:-1.066667pt;}
.ws101{word-spacing:-1.024000pt;}
.ws13{word-spacing:-1.013333pt;}
.ws109{word-spacing:-0.981333pt;}
.ws5b{word-spacing:-0.960000pt;}
.wsfd{word-spacing:-0.938667pt;}
.ws63{word-spacing:-0.906667pt;}
.wsc8{word-spacing:-0.896000pt;}
.ws35{word-spacing:-0.853333pt;}
.ws103{word-spacing:-0.810667pt;}
.ws5e{word-spacing:-0.800000pt;}
.wsd4{word-spacing:-0.768000pt;}
.ws11{word-spacing:-0.746667pt;}
.wscc{word-spacing:-0.725333pt;}
.ws14{word-spacing:-0.693333pt;}
.wsd1{word-spacing:-0.682667pt;}
.ws42{word-spacing:-0.640000pt;}
.ws36{word-spacing:-0.586667pt;}
.ws8a{word-spacing:-0.554667pt;}
.ws3c{word-spacing:-0.533333pt;}
.ws10c{word-spacing:-0.512000pt;}
.wsf{word-spacing:-0.480000pt;}
.wse6{word-spacing:-0.469333pt;}
.ws23{word-spacing:-0.426667pt;}
.ws10b{word-spacing:-0.384000pt;}
.ws29{word-spacing:-0.373333pt;}
.wsf1{word-spacing:-0.341333pt;}
.ws1f{word-spacing:-0.320000pt;}
.wsf2{word-spacing:-0.298667pt;}
.ws93{word-spacing:-0.266667pt;}
.ws10a{word-spacing:-0.256000pt;}
.ws4e{word-spacing:-0.213333pt;}
.wsca{word-spacing:-0.170667pt;}
.ws33{word-spacing:-0.160000pt;}
.wsd0{word-spacing:-0.128000pt;}
.ws8d{word-spacing:-0.127997pt;}
.ws3e{word-spacing:-0.106667pt;}
.wsef{word-spacing:-0.085333pt;}
.ws16{word-spacing:-0.053333pt;}
.wse1{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.042666pt;}
.wsfe{word-spacing:0.042667pt;}
.ws38{word-spacing:0.053333pt;}
.ws8f{word-spacing:0.085331pt;}
.wsd5{word-spacing:0.085333pt;}
.ws9f{word-spacing:0.106667pt;}
.ws8c{word-spacing:0.127997pt;}
.wseb{word-spacing:0.128000pt;}
.ws5f{word-spacing:0.160000pt;}
.ws8e{word-spacing:0.170662pt;}
.ws45{word-spacing:0.256000pt;}
.ws15{word-spacing:0.266667pt;}
.wsff{word-spacing:0.298667pt;}
.ws22{word-spacing:0.373333pt;}
.ws81{word-spacing:0.586667pt;}
.ws86{word-spacing:0.640000pt;}
.ws39{word-spacing:0.693333pt;}
.ws95{word-spacing:0.725333pt;}
.ws59{word-spacing:0.746667pt;}
.wsf6{word-spacing:0.810667pt;}
.ws9a{word-spacing:0.853333pt;}
.ws65{word-spacing:0.938667pt;}
.ws53{word-spacing:0.960000pt;}
.wsb{word-spacing:1.013333pt;}
.ws72{word-spacing:1.024000pt;}
.ws92{word-spacing:1.066667pt;}
.ws50{word-spacing:1.120000pt;}
.ws104{word-spacing:1.152000pt;}
.ws41{word-spacing:1.173333pt;}
.ws105{word-spacing:1.194667pt;}
.ws46{word-spacing:1.280000pt;}
.ws100{word-spacing:1.322667pt;}
.ws9c{word-spacing:1.333333pt;}
.ws66{word-spacing:1.408000pt;}
.wsb3{word-spacing:1.440000pt;}
.ws3f{word-spacing:1.493333pt;}
.ws24{word-spacing:1.546667pt;}
.wsb4{word-spacing:1.578667pt;}
.ws1b{word-spacing:1.600000pt;}
.ws73{word-spacing:1.653333pt;}
.ws70{word-spacing:1.760000pt;}
.wsc6{word-spacing:2.133333pt;}
.ws106{word-spacing:2.176000pt;}
.ws3a{word-spacing:2.240000pt;}
.ws64{word-spacing:2.293333pt;}
.wsa{word-spacing:2.346667pt;}
.ws90{word-spacing:2.400000pt;}
.ws91{word-spacing:2.453333pt;}
.wse7{word-spacing:2.474667pt;}
.ws4d{word-spacing:2.506667pt;}
.ws40{word-spacing:2.560000pt;}
.wsc3{word-spacing:2.666667pt;}
.ws96{word-spacing:2.730667pt;}
.ws17{word-spacing:2.826667pt;}
.ws43{word-spacing:2.880000pt;}
.wsf4{word-spacing:2.901333pt;}
.ws10{word-spacing:3.093333pt;}
.wsed{word-spacing:3.200000pt;}
.ws1a{word-spacing:3.253333pt;}
.ws2a{word-spacing:3.306667pt;}
.ws37{word-spacing:3.413333pt;}
.ws82{word-spacing:3.466667pt;}
.ws89{word-spacing:3.498667pt;}
.ws4f{word-spacing:3.520000pt;}
.ws44{word-spacing:3.541333pt;}
.ws52{word-spacing:3.626667pt;}
.ws5c{word-spacing:3.786667pt;}
.ws60{word-spacing:3.893333pt;}
.ws9d{word-spacing:4.160000pt;}
.ws55{word-spacing:4.320000pt;}
.wse{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.wsb9{word-spacing:4.586667pt;}
.wsc7{word-spacing:4.853333pt;}
.wsc4{word-spacing:4.906667pt;}
.ws102{word-spacing:5.077333pt;}
.ws71{word-spacing:5.440000pt;}
.ws88{word-spacing:6.506667pt;}
.ws7e{word-spacing:98.386874pt;}
.ws76{word-spacing:164.096000pt;}
.wsab{word-spacing:174.250667pt;}
.wsae{word-spacing:179.797333pt;}
.wsa5{word-spacing:186.922667pt;}
.wsaf{word-spacing:189.354667pt;}
.wsa9{word-spacing:194.048000pt;}
.wsac{word-spacing:198.528000pt;}
.wsb2{word-spacing:200.874667pt;}
.wsaa{word-spacing:226.986667pt;}
.ws7a{word-spacing:231.253333pt;}
.ws77{word-spacing:241.920000pt;}
.ws78{word-spacing:263.253333pt;}
.ws7b{word-spacing:269.482667pt;}
.ws79{word-spacing:279.253333pt;}
.wsb1{word-spacing:295.680000pt;}
.wsa7{word-spacing:315.306667pt;}
.wsa8{word-spacing:326.570667pt;}
.wsa6{word-spacing:331.264000pt;}
.wsb0{word-spacing:343.082667pt;}
.wsa3{word-spacing:343.381333pt;}
.wsa4{word-spacing:397.568000pt;}
.ws69{word-spacing:414.976000pt;}
.ws6a{word-spacing:425.642667pt;}
.ws6b{word-spacing:426.453333pt;}
.ws6d{word-spacing:436.309333pt;}
.ws6f{word-spacing:441.642667pt;}
.ws6c{word-spacing:452.309333pt;}
.wsad{word-spacing:470.528000pt;}
.ws68{word-spacing:556.885333pt;}
.ws6e{word-spacing:557.482667pt;}
.ws67{word-spacing:1359.530667pt;}
._d{margin-left:-2576.085333pt;}
._f{margin-left:-2554.922667pt;}
._3{margin-left:-8.327467pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.520000pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.906667pt;}
._8{width:0.906667pt;}
._4{width:2.072000pt;}
._c{width:3.269333pt;}
._9{width:4.213333pt;}
._7{width:5.493333pt;}
._a{width:6.826667pt;}
._b{width:8.266667pt;}
._e{width:9.706667pt;}
._22{width:38.869333pt;}
._20{width:86.144000pt;}
._21{width:88.789333pt;}
._34{width:132.391357pt;}
._11{width:149.290667pt;}
._32{width:153.425498pt;}
._33{width:155.985434pt;}
._45{width:183.941333pt;}
._10{width:198.101333pt;}
._2b{width:203.136000pt;}
._23{width:224.426667pt;}
._35{width:226.901333pt;}
._2c{width:229.760000pt;}
._44{width:231.125333pt;}
._28{width:240.426667pt;}
._12{width:244.757333pt;}
._2d{width:252.586667pt;}
._2f{width:262.357333pt;}
._2e{width:273.920000pt;}
._30{width:277.077333pt;}
._41{width:278.234667pt;}
._26{width:280.149333pt;}
._29{width:282.533333pt;}
._27{width:284.933333pt;}
._3e{width:286.890667pt;}
._24{width:289.920000pt;}
._25{width:295.253333pt;}
._2a{width:296.234667pt;}
._46{width:302.805333pt;}
._3c{width:314.112000pt;}
._3f{width:318.250667pt;}
._3a{width:320.640000pt;}
._36{width:325.333333pt;}
._39{width:327.637333pt;}
._43{width:340.181333pt;}
._3d{width:345.477333pt;}
._40{width:356.736000pt;}
._3b{width:359.125333pt;}
._31{width:361.237333pt;}
._42{width:378.069333pt;}
._37{width:380.458667pt;}
._38{width:397.056000pt;}
._1c{width:425.642667pt;}
._13{width:436.309333pt;}
._17{width:462.976000pt;}
._1d{width:546.261333pt;}
._1a{width:565.760000pt;}
._1b{width:573.482667pt;}
._1e{width:588.885333pt;}
._14{width:610.218667pt;}
._19{width:624.981333pt;}
._15{width:631.509333pt;}
._1f{width:636.885333pt;}
._16{width:670.037333pt;}
._18{width:677.120000pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsb{font-size:42.665600pt;}
.fs9{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;}
.y2f{bottom:42.468667pt;}
.y1e6{bottom:71.345333pt;}
.y177{bottom:74.342533pt;}
.y94{bottom:74.462533pt;}
.y167{bottom:74.534800pt;}
.yba{bottom:74.588533pt;}
.y12d{bottom:74.595867pt;}
.y118{bottom:74.628133pt;}
.ybf{bottom:74.817067pt;}
.yd1{bottom:75.016533pt;}
.y2c{bottom:78.430133pt;}
.y5a{bottom:78.559067pt;}
.yfe{bottom:82.699067pt;}
.yec{bottom:82.734400pt;}
.y1a4{bottom:84.552800pt;}
.y1e5{bottom:84.678667pt;}
.y110{bottom:84.931867pt;}
.y117{bottom:88.622800pt;}
.ybe{bottom:88.811733pt;}
.yd0{bottom:89.011200pt;}
.y166{bottom:89.201467pt;}
.y179{bottom:90.102533pt;}
.y176{bottom:90.342533pt;}
.y93{bottom:90.462533pt;}
.yb9{bottom:90.588533pt;}
.y12c{bottom:90.595867pt;}
.y2b{bottom:91.760133pt;}
.y59{bottom:94.559067pt;}
.yeb{bottom:97.177067pt;}
.y1a3{bottom:97.886133pt;}
.y1e4{bottom:98.012000pt;}
.y116{bottom:102.617467pt;}
.ybd{bottom:102.806400pt;}
.ycf{bottom:103.005867pt;}
.y2a{bottom:105.087733pt;}
.y175{bottom:106.342533pt;}
.y92{bottom:106.462533pt;}
.yb8{bottom:106.588533pt;}
.y12b{bottom:106.595867pt;}
.yfd{bottom:108.480400pt;}
.y58{bottom:110.559067pt;}
.y1a2{bottom:111.219467pt;}
.y1e3{bottom:111.345333pt;}
.yea{bottom:111.619733pt;}
.y165{bottom:111.878800pt;}
.y115{bottom:116.612133pt;}
.ybc{bottom:116.801067pt;}
.yce{bottom:117.000533pt;}
.yca{bottom:122.102533pt;}
.y174{bottom:122.342533pt;}
.y91{bottom:122.462533pt;}
.yb7{bottom:122.588533pt;}
.y12a{bottom:122.595867pt;}
.yfc{bottom:122.923067pt;}
.y1a1{bottom:124.552800pt;}
.y1e2{bottom:124.678667pt;}
.y57{bottom:126.559067pt;}
.y114{bottom:130.606800pt;}
.ybb{bottom:130.795733pt;}
.yfb{bottom:137.365733pt;}
.ye9{bottom:137.401067pt;}
.y164{bottom:137.660133pt;}
.y1a0{bottom:137.886133pt;}
.y1e1{bottom:138.012000pt;}
.yc9{bottom:138.102533pt;}
.y173{bottom:138.342533pt;}
.y90{bottom:138.462533pt;}
.yb6{bottom:138.588533pt;}
.y129{bottom:138.595867pt;}
.y56{bottom:142.559067pt;}
.y19f{bottom:151.219467pt;}
.y1e0{bottom:151.345333pt;}
.yfa{bottom:151.808400pt;}
.y172{bottom:154.342533pt;}
.y8f{bottom:154.462533pt;}
.yb5{bottom:154.588533pt;}
.y128{bottom:154.595867pt;}
.y55{bottom:158.559067pt;}
.ye8{bottom:163.182400pt;}
.y163{bottom:163.441467pt;}
.y19e{bottom:164.552800pt;}
.y1df{bottom:164.678667pt;}
.yf9{bottom:166.251067pt;}
.y29{bottom:167.963733pt;}
.yc8{bottom:169.982533pt;}
.y171{bottom:170.342533pt;}
.y8e{bottom:170.462533pt;}
.yb4{bottom:170.588533pt;}
.y127{bottom:170.595867pt;}
.y54{bottom:174.559067pt;}
.ye7{bottom:177.625067pt;}
.y162{bottom:177.884133pt;}
.y19d{bottom:177.886133pt;}
.y1de{bottom:178.012000pt;}
.y28{bottom:183.963733pt;}
.y170{bottom:186.342533pt;}
.y8d{bottom:186.462533pt;}
.yb3{bottom:186.588533pt;}
.y126{bottom:186.595867pt;}
.y53{bottom:190.559067pt;}
.y19c{bottom:191.219467pt;}
.y1dd{bottom:191.345333pt;}
.yf7{bottom:192.043067pt;}
.yf6{bottom:192.053733pt;}
.ye6{bottom:192.067733pt;}
.y161{bottom:192.326800pt;}
.y27{bottom:199.963733pt;}
.y112{bottom:200.709467pt;}
.y16f{bottom:202.342533pt;}
.y8c{bottom:202.462533pt;}
.yb2{bottom:202.588533pt;}
.y125{bottom:202.595867pt;}
.y19b{bottom:204.552800pt;}
.y1dc{bottom:204.678667pt;}
.ye5{bottom:206.510400pt;}
.y52{bottom:206.559067pt;}
.yf8{bottom:206.709733pt;}
.yf5{bottom:206.720400pt;}
.y160{bottom:206.769467pt;}
.y26{bottom:215.963733pt;}
.y19a{bottom:217.886133pt;}
.y1db{bottom:218.012000pt;}
.y16e{bottom:218.342533pt;}
.y8b{bottom:218.462533pt;}
.yb1{bottom:218.588533pt;}
.y124{bottom:218.595867pt;}
.ye4{bottom:220.953067pt;}
.y15f{bottom:221.212133pt;}
.y51{bottom:222.559067pt;}
.y199{bottom:231.219467pt;}
.y1da{bottom:231.345333pt;}
.y25{bottom:231.963733pt;}
.yc0{bottom:233.781067pt;}
.y178{bottom:234.102533pt;}
.y16d{bottom:234.342533pt;}
.y8a{bottom:234.462533pt;}
.yb0{bottom:234.588533pt;}
.y123{bottom:234.595867pt;}
.ye3{bottom:235.395733pt;}
.yf4{bottom:235.515867pt;}
.y15e{bottom:235.654800pt;}
.y50{bottom:238.559067pt;}
.y198{bottom:244.552800pt;}
.y1d9{bottom:244.678667pt;}
.y24{bottom:247.963733pt;}
.ye2{bottom:249.838400pt;}
.y16c{bottom:250.342533pt;}
.y89{bottom:250.462533pt;}
.yaf{bottom:250.588533pt;}
.y122{bottom:250.595867pt;}
.yf3{bottom:252.849200pt;}
.y4f{bottom:254.559067pt;}
.y197{bottom:257.886133pt;}
.y1d8{bottom:258.012000pt;}
.y15d{bottom:261.436133pt;}
.y23{bottom:263.963733pt;}
.ye1{bottom:264.281067pt;}
.y16b{bottom:266.342533pt;}
.y88{bottom:266.462533pt;}
.yae{bottom:266.588533pt;}
.y121{bottom:266.595867pt;}
.yf2{bottom:270.182533pt;}
.y4e{bottom:270.559067pt;}
.y196{bottom:271.219467pt;}
.y1d7{bottom:271.345333pt;}
.y15c{bottom:275.878800pt;}
.ye0{bottom:278.723733pt;}
.y22{bottom:279.963733pt;}
.y87{bottom:282.462533pt;}
.yad{bottom:282.588533pt;}
.y120{bottom:282.595867pt;}
.y195{bottom:284.552800pt;}
.y1d6{bottom:284.678667pt;}
.y4d{bottom:286.559067pt;}
.y15b{bottom:290.321467pt;}
.ydf{bottom:293.166400pt;}
.y21{bottom:295.963733pt;}
.y194{bottom:297.886133pt;}
.y16a{bottom:297.982533pt;}
.y1d5{bottom:298.012000pt;}
.y86{bottom:298.462533pt;}
.yac{bottom:298.588533pt;}
.y11f{bottom:298.595867pt;}
.y4c{bottom:302.559067pt;}
.y15a{bottom:304.764133pt;}
.yde{bottom:307.609067pt;}
.y193{bottom:311.219467pt;}
.y1d4{bottom:311.345333pt;}
.y20{bottom:311.963733pt;}
.y102{bottom:312.277733pt;}
.y85{bottom:314.462533pt;}
.yab{bottom:314.588533pt;}
.y11e{bottom:314.595867pt;}
.y4b{bottom:318.559067pt;}
.y159{bottom:319.206800pt;}
.y192{bottom:324.552800pt;}
.y1d3{bottom:324.678667pt;}
.y101{bottom:326.272400pt;}
.y1f{bottom:327.963733pt;}
.y84{bottom:330.462533pt;}
.yaa{bottom:330.588533pt;}
.y11d{bottom:330.595867pt;}
.ydd{bottom:333.390400pt;}
.y158{bottom:333.649467pt;}
.y4a{bottom:334.559067pt;}
.y191{bottom:337.886133pt;}
.y1d2{bottom:338.012000pt;}
.y100{bottom:340.267067pt;}
.y1e{bottom:343.963733pt;}
.y83{bottom:346.462533pt;}
.ya9{bottom:346.588533pt;}
.y11c{bottom:346.595867pt;}
.y157{bottom:348.092133pt;}
.y49{bottom:350.559067pt;}
.y190{bottom:351.219467pt;}
.y1d1{bottom:351.345333pt;}
.yff{bottom:354.261733pt;}
.ydc{bottom:359.171733pt;}
.y1d{bottom:359.963733pt;}
.y82{bottom:362.462533pt;}
.y156{bottom:362.534800pt;}
.ya8{bottom:362.588533pt;}
.y11b{bottom:362.595867pt;}
.y18f{bottom:364.552800pt;}
.y1d0{bottom:364.678667pt;}
.y48{bottom:366.559067pt;}
.y10f{bottom:374.741333pt;}
.y1c{bottom:375.963733pt;}
.y155{bottom:376.977467pt;}
.y18e{bottom:377.886133pt;}
.y111{bottom:378.011467pt;}
.y1cf{bottom:378.012000pt;}
.y81{bottom:378.462533pt;}
.ya7{bottom:378.588533pt;}
.y11a{bottom:378.595867pt;}
.y47{bottom:382.559067pt;}
.ydb{bottom:387.963867pt;}
.y18d{bottom:391.219467pt;}
.y1ce{bottom:391.345333pt;}
.y154{bottom:391.420133pt;}
.y1b{bottom:391.963733pt;}
.y80{bottom:394.462533pt;}
.y10e{bottom:394.538725pt;}
.ycd{bottom:394.588533pt;}
.ya6{bottom:394.595867pt;}
.y46{bottom:398.559067pt;}
.y103{bottom:402.197200pt;}
.yd4{bottom:402.557867pt;}
.y18c{bottom:404.552800pt;}
.y1cd{bottom:404.678667pt;}
.yda{bottom:405.297200pt;}
.y153{bottom:405.862800pt;}
.y1a{bottom:407.963733pt;}
.y7f{bottom:410.462533pt;}
.ycc{bottom:410.588533pt;}
.ya5{bottom:410.595867pt;}
.y45{bottom:414.559067pt;}
.y18b{bottom:417.886133pt;}
.y1cc{bottom:418.012000pt;}
.y104{bottom:418.250132pt;}
.y152{bottom:420.305467pt;}
.y19{bottom:423.963733pt;}
.y7e{bottom:426.462533pt;}
.y14d{bottom:426.475867pt;}
.ya4{bottom:426.595867pt;}
.y44{bottom:430.559067pt;}
.y18a{bottom:431.219467pt;}
.y1cb{bottom:431.345333pt;}
.y105{bottom:434.228399pt;}
.y18{bottom:439.963733pt;}
.y7d{bottom:442.462533pt;}
.y14c{bottom:442.475867pt;}
.ya3{bottom:442.595867pt;}
.y189{bottom:444.552800pt;}
.y1ca{bottom:444.678667pt;}
.y151{bottom:446.086800pt;}
.y43{bottom:446.559067pt;}
.y106{bottom:450.206666pt;}
.yd8{bottom:451.184400pt;}
.y17{bottom:455.963733pt;}
.y188{bottom:457.886133pt;}
.y1c9{bottom:458.012000pt;}
.y169{bottom:458.235867pt;}
.yc7{bottom:458.462533pt;}
.y14b{bottom:458.475867pt;}
.ya2{bottom:458.595867pt;}
.y14f{bottom:458.982800pt;}
.y42{bottom:462.559067pt;}
.yd7{bottom:465.179067pt;}
.y107{bottom:466.259598pt;}
.y187{bottom:471.219467pt;}
.y1c8{bottom:471.345333pt;}
.y150{bottom:471.878800pt;}
.y16{bottom:471.963733pt;}
.y7c{bottom:474.102533pt;}
.ycb{bottom:474.235867pt;}
.yc6{bottom:474.462533pt;}
.y14a{bottom:474.475867pt;}
.ya1{bottom:474.595867pt;}
.y41{bottom:478.559067pt;}
.yd6{bottom:479.173733pt;}
.y108{bottom:482.237866pt;}
.y186{bottom:484.552800pt;}
.y1c7{bottom:484.678667pt;}
.y15{bottom:487.963733pt;}
.yc5{bottom:490.462533pt;}
.y149{bottom:490.475867pt;}
.ya0{bottom:490.595867pt;}
.y40{bottom:494.559067pt;}
.y185{bottom:497.886133pt;}
.y1c6{bottom:498.012000pt;}
.y109{bottom:498.216133pt;}
.y14e{bottom:500.662533pt;}
.y14{bottom:503.963733pt;}
.y7b{bottom:505.982533pt;}
.yc4{bottom:506.462533pt;}
.y148{bottom:506.475867pt;}
.y9f{bottom:506.595867pt;}
.y3f{bottom:510.559067pt;}
.y184{bottom:511.219467pt;}
.y1c5{bottom:511.345333pt;}
.y10a{bottom:514.269065pt;}
.y13{bottom:519.963733pt;}
.yc3{bottom:522.462533pt;}
.y147{bottom:522.475867pt;}
.y9e{bottom:522.595867pt;}
.y183{bottom:524.552800pt;}
.y1c4{bottom:524.678667pt;}
.y3e{bottom:526.559067pt;}
.y10b{bottom:530.247332pt;}
.y12{bottom:535.963733pt;}
.y182{bottom:537.886133pt;}
.y1c3{bottom:538.012000pt;}
.yc2{bottom:538.462533pt;}
.y146{bottom:538.475867pt;}
.y9d{bottom:538.595867pt;}
.y3d{bottom:542.559067pt;}
.y10c{bottom:546.236266pt;}
.y181{bottom:551.219467pt;}
.y1c2{bottom:551.345333pt;}
.y7a{bottom:554.462533pt;}
.y145{bottom:554.475867pt;}
.y9c{bottom:554.595867pt;}
.y3c{bottom:558.559067pt;}
.y10d{bottom:562.289198pt;}
.y180{bottom:564.552800pt;}
.y1c1{bottom:564.678667pt;}
.y79{bottom:570.462533pt;}
.y144{bottom:570.475867pt;}
.y9b{bottom:570.595867pt;}
.y3b{bottom:574.559067pt;}
.y11{bottom:576.104267pt;}
.y17f{bottom:577.886133pt;}
.y1c0{bottom:578.012000pt;}
.y78{bottom:586.462533pt;}
.y143{bottom:586.475867pt;}
.y9a{bottom:586.595867pt;}
.y10{bottom:587.171600pt;}
.y3a{bottom:590.559067pt;}
.y17e{bottom:591.219467pt;}
.y1bf{bottom:591.345333pt;}
.y77{bottom:602.462533pt;}
.y142{bottom:602.475867pt;}
.y99{bottom:602.595867pt;}
.y17d{bottom:604.552800pt;}
.y1be{bottom:604.678667pt;}
.y39{bottom:606.559067pt;}
.yf{bottom:615.363200pt;}
.y1bd{bottom:618.012000pt;}
.y76{bottom:618.462533pt;}
.y141{bottom:618.475867pt;}
.y98{bottom:618.595867pt;}
.y38{bottom:622.559067pt;}
.y1bc{bottom:631.345333pt;}
.ye{bottom:632.185733pt;}
.y17c{bottom:633.982533pt;}
.y75{bottom:634.462533pt;}
.y140{bottom:634.475867pt;}
.y97{bottom:634.595867pt;}
.y37{bottom:638.559067pt;}
.yd{bottom:639.363200pt;}
.y1bb{bottom:644.678667pt;}
.y74{bottom:650.462533pt;}
.y13f{bottom:650.475867pt;}
.y96{bottom:650.595867pt;}
.yc{bottom:651.363200pt;}
.y36{bottom:654.559067pt;}
.y1ba{bottom:658.012000pt;}
.yb{bottom:663.363200pt;}
.y119{bottom:666.235867pt;}
.y73{bottom:666.462533pt;}
.y13e{bottom:666.475867pt;}
.y35{bottom:670.559067pt;}
.y1b9{bottom:671.345333pt;}
.ya{bottom:680.185733pt;}
.y95{bottom:682.235867pt;}
.y72{bottom:682.462533pt;}
.y13d{bottom:682.475867pt;}
.y1b8{bottom:684.678667pt;}
.y34{bottom:686.559067pt;}
.yd3{bottom:690.365867pt;}
.y1b7{bottom:698.012000pt;}
.yf1{bottom:698.102533pt;}
.y71{bottom:698.462533pt;}
.y13c{bottom:698.475867pt;}
.y33{bottom:702.559067pt;}
.y9{bottom:705.720933pt;}
.yd2{bottom:709.448533pt;}
.y1b6{bottom:711.345333pt;}
.yf0{bottom:714.102533pt;}
.y70{bottom:714.462533pt;}
.y13b{bottom:714.475867pt;}
.y32{bottom:718.559067pt;}
.y8{bottom:724.382933pt;}
.y1b5{bottom:724.678667pt;}
.yef{bottom:730.102533pt;}
.y6f{bottom:730.462533pt;}
.y13a{bottom:730.475867pt;}
.y31{bottom:734.559067pt;}
.y1b4{bottom:738.012000pt;}
.y6e{bottom:746.462533pt;}
.y139{bottom:746.475867pt;}
.y5c{bottom:750.559067pt;}
.yd9{bottom:750.832400pt;}
.y1b3{bottom:751.345333pt;}
.yee{bottom:761.982533pt;}
.y6d{bottom:762.462533pt;}
.y138{bottom:762.475867pt;}
.y1b2{bottom:764.678667pt;}
.y7{bottom:765.435067pt;}
.y30{bottom:766.199067pt;}
.y5b{bottom:766.559067pt;}
.y1b1{bottom:778.012000pt;}
.y17b{bottom:778.102533pt;}
.y6c{bottom:778.462533pt;}
.y137{bottom:778.475867pt;}
.y1b0{bottom:791.345333pt;}
.y6b{bottom:794.462533pt;}
.y136{bottom:794.475867pt;}
.y6{bottom:797.844667pt;}
.y1af{bottom:804.678667pt;}
.y6a{bottom:810.462533pt;}
.y135{bottom:810.475867pt;}
.y1ae{bottom:818.012000pt;}
.y17a{bottom:826.102533pt;}
.y69{bottom:826.462533pt;}
.y134{bottom:826.475867pt;}
.y5{bottom:830.254267pt;}
.y1ad{bottom:831.345333pt;}
.y61{bottom:834.676533pt;}
.y68{bottom:842.462533pt;}
.y133{bottom:842.475867pt;}
.y1ac{bottom:844.678667pt;}
.y1ab{bottom:858.012000pt;}
.y67{bottom:858.462533pt;}
.y132{bottom:858.475867pt;}
.y60{bottom:858.983200pt;}
.y4{bottom:862.635733pt;}
.y1aa{bottom:871.345333pt;}
.y66{bottom:874.462533pt;}
.y131{bottom:874.475867pt;}
.y5f{bottom:874.983200pt;}
.y1a9{bottom:884.678667pt;}
.y65{bottom:890.462533pt;}
.y130{bottom:890.475867pt;}
.y5e{bottom:890.983200pt;}
.y3{bottom:895.045333pt;}
.y1a8{bottom:898.012000pt;}
.y64{bottom:906.462533pt;}
.y12f{bottom:906.475867pt;}
.y5d{bottom:906.983200pt;}
.y1a7{bottom:911.345333pt;}
.y63{bottom:922.462533pt;}
.y12e{bottom:922.475867pt;}
.y1a6{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1a5{bottom:1006.590133pt;}
.yc1{bottom:1006.591733pt;}
.y62{bottom:1006.594400pt;}
.y113{bottom:1006.597067pt;}
.y1e7{bottom:1006.598667pt;}
.yd5{bottom:1006.611200pt;}
.yed{bottom:1006.649067pt;}
.y168{bottom:1006.652133pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:16.977598pt;}
.h9{height:17.000371pt;}
.ha{height:25.255208pt;}
.h2{height:27.197917pt;}
.h10{height:29.121094pt;}
.hf{height:29.140625pt;}
.he{height:29.150225pt;}
.h8{height:29.160156pt;}
.h12{height:31.062500pt;}
.h1b{height:31.083333pt;}
.h11{height:31.104167pt;}
.h19{height:37.436564pt;}
.h16{height:37.437500pt;}
.hd{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.880208pt;}
.h13{height:46.796875pt;}
.h1c{height:48.236875pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h15{height:52.375911pt;}
.h14{height:52.405245pt;}
.h18{height:66.749500pt;}
.h4{height:81.927344pt;}
.h17{height:96.061500pt;}
.h1a{height:209.573333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:300.473333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:8.864000pt;}
.x29{left:62.740133pt;}
.x7{left:68.031467pt;}
.x1a{left:69.921200pt;}
.xc{left:75.590533pt;}
.x24{left:80.170666pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x18{left:88.825867pt;}
.x23{left:90.815733pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x28{left:102.725467pt;}
.x36{left:109.606533pt;}
.x3{left:111.491467pt;}
.x10{left:117.155867pt;}
.x16{left:122.075867pt;}
.x25{left:125.300205pt;}
.xf{left:147.529200pt;}
.x1b{left:162.251867pt;}
.x8{left:169.380933pt;}
.x1c{left:171.798533pt;}
.x27{left:188.141867pt;}
.x15{left:206.542533pt;}
.x2d{left:222.996667pt;}
.x17{left:240.772533pt;}
.x1d{left:245.398533pt;}
.x1e{left:250.806533pt;}
.x2e{left:336.404667pt;}
.x2b{left:400.276667pt;}
.x6{left:404.481333pt;}
.xa{left:406.300933pt;}
.x1f{left:423.243867pt;}
.x11{left:425.190000pt;}
.x35{left:428.991467pt;}
.xb{left:436.540933pt;}
.x33{left:447.874133pt;}
.x12{left:455.430000pt;}
.x2f{left:468.746000pt;}
.x20{left:485.697200pt;}
.x31{left:507.278267pt;}
.x19{left:515.044800pt;}
.x32{left:529.862533pt;}
.x14{left:534.623067pt;}
.x22{left:587.574533pt;}
.xe{left:589.770933pt;}
.x21{left:594.155867pt;}
.x2{left:616.324800pt;}
.x2c{left:638.740667pt;}
.x2a{left:641.526800pt;}
.xd{left:647.459200pt;}
.x34{left:660.432533pt;}
.x30{left:661.386000pt;}
.x13{left:666.356800pt;}
}




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