
    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_593b95ff5f7c552e2e54b9d7.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_77153224e31fafd3e37e51f0.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_59e00daad9c189fe73ad647e.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_f0c4a3f3dca0d50dbb12497d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9c919f6c69c58b6d2e464b12.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_73205b475de0a0c6a7f78eb9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_623bddc798dd8cb152b0fe2f.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_044af527b25cbe70de9a6b5f.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7b3fa8c9ef5a90f2856156da.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_d50bfa89eb28e1667121b12d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b1177c44a24a03f14584b8a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.810000;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;}
.v3{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls17{letter-spacing:-0.780000px;}
.ls38{letter-spacing:-0.588000px;}
.ls7d{letter-spacing:-0.432000px;}
.ls37{letter-spacing:-0.420000px;}
.ls53{letter-spacing:-0.300000px;}
.ls85{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.240000px;}
.ls2f{letter-spacing:-0.180000px;}
.ls7c{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.120000px;}
.ls7b{letter-spacing:-0.096000px;}
.ls36{letter-spacing:-0.060000px;}
.ls84{letter-spacing:-0.048000px;}
.ls16{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003540px;}
.ls65{letter-spacing:0.048000px;}
.ls14{letter-spacing:0.060000px;}
.ls3b{letter-spacing:0.096000px;}
.ls3d{letter-spacing:0.120000px;}
.ls6e{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls5a{letter-spacing:0.192000px;}
.lsd{letter-spacing:0.240000px;}
.ls5c{letter-spacing:0.288000px;}
.ls44{letter-spacing:0.300000px;}
.ls60{letter-spacing:0.336000px;}
.ls2c{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.384000px;}
.ls3{letter-spacing:0.420000px;}
.ls7e{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.480000px;}
.ls74{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.540000px;}
.ls78{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.600000px;}
.ls68{letter-spacing:0.624000px;}
.ls24{letter-spacing:0.660000px;}
.ls5e{letter-spacing:0.672000px;}
.ls4e{letter-spacing:0.720000px;}
.ls70{letter-spacing:0.768000px;}
.ls19{letter-spacing:0.780000px;}
.ls48{letter-spacing:0.816000px;}
.ls2b{letter-spacing:0.840000px;}
.ls76{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.900000px;}
.ls71{letter-spacing:0.912000px;}
.ls22{letter-spacing:0.960000px;}
.ls5b{letter-spacing:1.008000px;}
.ls15{letter-spacing:1.020000px;}
.ls64{letter-spacing:1.056000px;}
.ls5{letter-spacing:1.080000px;}
.ls66{letter-spacing:1.104000px;}
.lsb{letter-spacing:1.140000px;}
.ls72{letter-spacing:1.152000px;}
.ls29{letter-spacing:1.200000px;}
.ls58{letter-spacing:1.248000px;}
.ls4{letter-spacing:1.260000px;}
.ls52{letter-spacing:1.320000px;}
.ls63{letter-spacing:1.344000px;}
.ls2d{letter-spacing:1.380000px;}
.ls67{letter-spacing:1.392000px;}
.ls26{letter-spacing:1.440000px;}
.ls49{letter-spacing:1.488000px;}
.ls23{letter-spacing:1.500000px;}
.ls33{letter-spacing:1.560000px;}
.ls5d{letter-spacing:1.584000px;}
.ls13{letter-spacing:1.620000px;}
.ls62{letter-spacing:1.632000px;}
.ls1a{letter-spacing:1.680000px;}
.ls7a{letter-spacing:1.728000px;}
.ls25{letter-spacing:1.740000px;}
.ls1e{letter-spacing:1.800000px;}
.ls57{letter-spacing:1.824000px;}
.ls35{letter-spacing:1.860000px;}
.ls81{letter-spacing:1.872000px;}
.ls1b{letter-spacing:1.920000px;}
.ls28{letter-spacing:1.980000px;}
.ls69{letter-spacing:2.016000px;}
.lse{letter-spacing:2.040000px;}
.ls27{letter-spacing:2.100000px;}
.ls6c{letter-spacing:2.112000px;}
.ls9{letter-spacing:2.160000px;}
.ls3f{letter-spacing:2.208000px;}
.ls21{letter-spacing:2.220000px;}
.ls80{letter-spacing:2.256000px;}
.ls51{letter-spacing:2.280000px;}
.ls30{letter-spacing:2.340000px;}
.ls3e{letter-spacing:2.352000px;}
.ls6{letter-spacing:2.400000px;}
.ls5f{letter-spacing:2.448000px;}
.ls4c{letter-spacing:2.460000px;}
.ls83{letter-spacing:2.496000px;}
.lsc{letter-spacing:2.520000px;}
.ls20{letter-spacing:2.580000px;}
.ls6f{letter-spacing:2.592000px;}
.ls7{letter-spacing:2.640000px;}
.ls82{letter-spacing:2.688000px;}
.ls45{letter-spacing:2.700000px;}
.ls39{letter-spacing:2.736000px;}
.ls11{letter-spacing:2.760000px;}
.ls54{letter-spacing:2.820000px;}
.ls6a{letter-spacing:2.832000px;}
.ls4d{letter-spacing:2.880000px;}
.ls6b{letter-spacing:2.928000px;}
.ls4b{letter-spacing:2.940000px;}
.ls59{letter-spacing:2.976000px;}
.ls2e{letter-spacing:3.000000px;}
.ls61{letter-spacing:3.024000px;}
.ls79{letter-spacing:3.168000px;}
.ls10{letter-spacing:3.180000px;}
.lsa{letter-spacing:3.240000px;}
.ls31{letter-spacing:3.300000px;}
.ls34{letter-spacing:3.360000px;}
.ls3a{letter-spacing:3.480000px;}
.ls3c{letter-spacing:3.504000px;}
.ls7f{letter-spacing:3.552000px;}
.ls75{letter-spacing:3.696000px;}
.ls1d{letter-spacing:3.720000px;}
.ls77{letter-spacing:3.792000px;}
.ls43{letter-spacing:3.840000px;}
.ls40{letter-spacing:3.900000px;}
.ls46{letter-spacing:3.960000px;}
.ls4f{letter-spacing:4.020000px;}
.ls41{letter-spacing:4.200000px;}
.ls73{letter-spacing:4.224000px;}
.ls47{letter-spacing:4.260000px;}
.ls50{letter-spacing:4.320000px;}
.ls56{letter-spacing:4.440000px;}
.ls55{letter-spacing:4.560000px;}
.ls32{letter-spacing:4.680000px;}
.ls4a{letter-spacing:4.860000px;}
.ls42{letter-spacing:5.100000px;}
.ls1f{letter-spacing:5.460000px;}
.ls0{letter-spacing:59.532876px;}
.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;}
}
.ws2d{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws35{word-spacing:-19.680000px;}
.ws4d{word-spacing:-19.260000px;}
.ws4c{word-spacing:-18.960000px;}
.ws48{word-spacing:-18.900000px;}
.ws4a{word-spacing:-18.840000px;}
.ws85{word-spacing:-18.480000px;}
.ws6a{word-spacing:-18.240000px;}
.ws7{word-spacing:-17.760000px;}
.ws4b{word-spacing:-17.700000px;}
.ws47{word-spacing:-17.640000px;}
.ws70{word-spacing:-17.460000px;}
.ws20{word-spacing:-17.160000px;}
.ws6{word-spacing:-17.040000px;}
.ws6f{word-spacing:-16.920000px;}
.ws6b{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws9{word-spacing:-16.620000px;}
.ws1f{word-spacing:-16.440000px;}
.ws71{word-spacing:-16.200000px;}
.ws4{word-spacing:-16.080000px;}
.wsb{word-spacing:-16.020000px;}
.ws49{word-spacing:-15.960000px;}
.ws1e{word-spacing:-15.900000px;}
.wsa8{word-spacing:-15.792000px;}
.ws86{word-spacing:-15.780000px;}
.wsa{word-spacing:-15.540000px;}
.wsbe{word-spacing:-15.504000px;}
.ws3{word-spacing:-15.480000px;}
.ws82{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.240000px;}
.ws36{word-spacing:-15.180000px;}
.ws57{word-spacing:-15.120000px;}
.ws83{word-spacing:-15.060000px;}
.ws88{word-spacing:-15.024000px;}
.ws2e{word-spacing:-15.000000px;}
.wsbd{word-spacing:-14.928000px;}
.ws84{word-spacing:-14.880000px;}
.ws8{word-spacing:-14.760000px;}
.wsc0{word-spacing:-14.256000px;}
.wsc2{word-spacing:-13.872000px;}
.ws89{word-spacing:-13.632000px;}
.ws9f{word-spacing:-13.440000px;}
.wsd{word-spacing:-13.344000px;}
.ws87{word-spacing:-13.248000px;}
.wsa1{word-spacing:-13.152000px;}
.wsc1{word-spacing:-12.912000px;}
.wsa5{word-spacing:-12.864000px;}
.wsa3{word-spacing:-12.672000px;}
.ws9d{word-spacing:-12.624000px;}
.wsa9{word-spacing:-12.576000px;}
.wsbf{word-spacing:-12.528000px;}
.wsc{word-spacing:-12.510000px;}
.wsa4{word-spacing:-12.336000px;}
.wsaa{word-spacing:-12.288000px;}
.wsa2{word-spacing:-12.240000px;}
.wsa0{word-spacing:-12.144000px;}
.ws9e{word-spacing:-12.096000px;}
.wsa6{word-spacing:-12.048000px;}
.ws9c{word-spacing:-12.000000px;}
.ws5f{word-spacing:-11.760000px;}
.wsc3{word-spacing:-11.712000px;}
.wsa7{word-spacing:-11.568000px;}
.ws66{word-spacing:-10.224000px;}
.ws1{word-spacing:-10.210662px;}
.ws68{word-spacing:-9.888000px;}
.ws67{word-spacing:-8.880000px;}
.ws65{word-spacing:-8.208000px;}
.ws5b{word-spacing:-7.824000px;}
.ws63{word-spacing:-5.568000px;}
.ws5d{word-spacing:-4.992000px;}
.ws59{word-spacing:-4.860000px;}
.ws4e{word-spacing:-4.200000px;}
.ws69{word-spacing:-4.128000px;}
.ws60{word-spacing:-3.696000px;}
.ws91{word-spacing:-3.180000px;}
.wscf{word-spacing:-2.928000px;}
.wsf{word-spacing:-2.886000px;}
.ws75{word-spacing:-2.880000px;}
.ws2c{word-spacing:-2.640000px;}
.wsb2{word-spacing:-2.592000px;}
.ws8c{word-spacing:-2.520000px;}
.ws5e{word-spacing:-2.304000px;}
.wscc{word-spacing:-2.256000px;}
.ws25{word-spacing:-2.220000px;}
.wsc5{word-spacing:-2.160000px;}
.ws5a{word-spacing:-2.112000px;}
.ws73{word-spacing:-1.920000px;}
.ws23{word-spacing:-1.680000px;}
.ws6d{word-spacing:-1.620000px;}
.ws78{word-spacing:-1.380000px;}
.ws61{word-spacing:-1.344000px;}
.ws95{word-spacing:-1.248000px;}
.ws7f{word-spacing:-1.200000px;}
.wsb4{word-spacing:-1.152000px;}
.ws13{word-spacing:-1.080000px;}
.ws1a{word-spacing:-1.020000px;}
.wsc8{word-spacing:-1.008000px;}
.ws2b{word-spacing:-0.864000px;}
.ws81{word-spacing:-0.840000px;}
.ws5c{word-spacing:-0.816000px;}
.wsb3{word-spacing:-0.768000px;}
.ws74{word-spacing:-0.720000px;}
.ws19{word-spacing:-0.540000px;}
.wsbc{word-spacing:-0.528000px;}
.ws1d{word-spacing:-0.480000px;}
.wsb1{word-spacing:-0.384000px;}
.ws9b{word-spacing:-0.336000px;}
.ws7b{word-spacing:-0.300000px;}
.wsad{word-spacing:-0.288000px;}
.ws24{word-spacing:-0.240000px;}
.ws96{word-spacing:-0.192000px;}
.ws1c{word-spacing:-0.180000px;}
.ws42{word-spacing:-0.144000px;}
.ws8f{word-spacing:-0.120000px;}
.ws3a{word-spacing:-0.060000px;}
.wsaf{word-spacing:-0.048000px;}
.wse{word-spacing:0.000000px;}
.ws56{word-spacing:0.048000px;}
.wsd1{word-spacing:0.096000px;}
.ws27{word-spacing:0.120000px;}
.ws8b{word-spacing:0.180000px;}
.wscb{word-spacing:0.192000px;}
.ws17{word-spacing:0.240000px;}
.ws3b{word-spacing:0.288000px;}
.ws77{word-spacing:0.360000px;}
.ws3f{word-spacing:0.420000px;}
.wsb8{word-spacing:0.432000px;}
.ws45{word-spacing:0.528000px;}
.ws80{word-spacing:0.600000px;}
.wsd0{word-spacing:0.720000px;}
.ws7d{word-spacing:0.780000px;}
.ws53{word-spacing:0.816000px;}
.ws18{word-spacing:0.840000px;}
.ws8e{word-spacing:0.900000px;}
.ws62{word-spacing:0.912000px;}
.ws32{word-spacing:1.080000px;}
.ws51{word-spacing:1.140000px;}
.wsac{word-spacing:1.152000px;}
.ws30{word-spacing:1.260000px;}
.wsc4{word-spacing:1.296000px;}
.wsb7{word-spacing:1.344000px;}
.ws50{word-spacing:1.380000px;}
.ws54{word-spacing:1.488000px;}
.ws99{word-spacing:1.536000px;}
.ws8d{word-spacing:1.620000px;}
.ws98{word-spacing:1.632000px;}
.ws16{word-spacing:1.680000px;}
.ws52{word-spacing:1.740000px;}
.wsc7{word-spacing:1.824000px;}
.ws2f{word-spacing:1.860000px;}
.wsca{word-spacing:1.872000px;}
.ws2a{word-spacing:2.040000px;}
.ws37{word-spacing:2.160000px;}
.ws46{word-spacing:2.208000px;}
.ws93{word-spacing:2.280000px;}
.ws44{word-spacing:2.304000px;}
.ws55{word-spacing:2.340000px;}
.ws34{word-spacing:2.400000px;}
.ws97{word-spacing:2.496000px;}
.ws14{word-spacing:2.520000px;}
.ws4f{word-spacing:2.580000px;}
.ws33{word-spacing:2.700000px;}
.ws9a{word-spacing:2.736000px;}
.ws15{word-spacing:2.760000px;}
.ws40{word-spacing:2.784000px;}
.ws90{word-spacing:2.880000px;}
.ws58{word-spacing:2.940000px;}
.ws28{word-spacing:3.000000px;}
.ws79{word-spacing:3.120000px;}
.wsb6{word-spacing:3.216000px;}
.ws29{word-spacing:3.240000px;}
.ws6e{word-spacing:3.264000px;}
.ws8a{word-spacing:3.300000px;}
.wsc9{word-spacing:3.312000px;}
.wsc6{word-spacing:3.360000px;}
.ws7c{word-spacing:3.420000px;}
.wsce{word-spacing:3.456000px;}
.ws76{word-spacing:3.480000px;}
.ws43{word-spacing:3.504000px;}
.wscd{word-spacing:3.552000px;}
.wsb0{word-spacing:3.648000px;}
.wsae{word-spacing:3.744000px;}
.ws6c{word-spacing:3.840000px;}
.wsab{word-spacing:3.888000px;}
.ws26{word-spacing:3.900000px;}
.ws41{word-spacing:3.936000px;}
.ws12{word-spacing:3.960000px;}
.ws64{word-spacing:3.984000px;}
.ws39{word-spacing:4.020000px;}
.ws38{word-spacing:4.080000px;}
.ws22{word-spacing:4.140000px;}
.ws7e{word-spacing:4.200000px;}
.wsb5{word-spacing:4.224000px;}
.wsbb{word-spacing:4.272000px;}
.ws31{word-spacing:4.380000px;}
.ws7a{word-spacing:4.500000px;}
.wsba{word-spacing:4.512000px;}
.ws11{word-spacing:4.920000px;}
.ws10{word-spacing:4.980000px;}
.ws94{word-spacing:5.232000px;}
.ws92{word-spacing:5.520000px;}
.wsb9{word-spacing:7.776000px;}
.ws3e{word-spacing:133.980000px;}
.ws1b{word-spacing:351.648000px;}
.ws21{word-spacing:405.744000px;}
.ws3d{word-spacing:493.584000px;}
.ws3c{word-spacing:515.760000px;}
.ws72{word-spacing:536.640000px;}
._47{margin-left:-2898.096000px;}
._6d{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._4{margin-left:-7.620000px;}
._b8{margin-left:-6.477000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.699000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.080000px;}
._49{width:1.200000px;}
._48{width:3.096000px;}
._7{width:4.284000px;}
._5{width:5.916000px;}
._a6{width:8.029800px;}
._a7{width:11.271600px;}
._9e{width:17.892000px;}
._8e{width:30.108000px;}
._88{width:33.348000px;}
._9f{width:38.556000px;}
._a0{width:41.328000px;}
._a4{width:43.824000px;}
._9b{width:49.308000px;}
._86{width:58.143000px;}
._a8{width:59.664000px;}
._a5{width:63.840000px;}
._8b{width:71.022000px;}
._9c{width:74.844000px;}
._6f{width:81.648000px;}
._9d{width:83.328000px;}
._83{width:84.630000px;}
._8d{width:85.641000px;}
._91{width:89.796000px;}
._9a{width:94.164000px;}
._70{width:95.214000px;}
._72{width:99.162000px;}
._85{width:100.338000px;}
._84{width:102.648000px;}
._ac{width:108.486000px;}
._97{width:109.794000px;}
._94{width:110.994000px;}
._ab{width:112.851000px;}
._4d{width:114.912000px;}
._a2{width:118.725000px;}
._8c{width:120.123000px;}
._73{width:121.338000px;}
._7c{width:122.892000px;}
._71{width:124.068000px;}
._81{width:128.310000px;}
._6e{width:130.662000px;}
._7f{width:133.392000px;}
._95{width:135.330000px;}
._7a{width:140.028000px;}
._7b{width:141.540000px;}
._a{width:145.488000px;}
._6b{width:148.329000px;}
._75{width:150.054000px;}
._a3{width:152.895000px;}
._7e{width:160.872000px;}
._27{width:162.096000px;}
._8a{width:170.310000px;}
._74{width:176.862000px;}
._79{width:181.482000px;}
._98{width:182.781000px;}
._96{width:191.352000px;}
._a1{width:195.636000px;}
._80{width:199.878000px;}
._65{width:202.176000px;}
._89{width:204.120000px;}
._6c{width:206.160000px;}
._54{width:207.600000px;}
._56{width:208.950000px;}
._2c{width:212.832000px;}
._c{width:215.136000px;}
._99{width:216.312000px;}
._59{width:218.160000px;}
._f{width:223.104000px;}
._93{width:228.504000px;}
._8f{width:230.154000px;}
._82{width:233.310000px;}
._92{width:237.636000px;}
._90{width:241.806000px;}
._67{width:243.939000px;}
._7d{width:246.120000px;}
._58{width:248.931000px;}
._46{width:250.128000px;}
._55{width:251.136000px;}
._19{width:253.728000px;}
._14{width:255.504000px;}
._87{width:256.620000px;}
._78{width:258.972000px;}
._51{width:261.027000px;}
._b4{width:263.040000px;}
._ae{width:265.104000px;}
._3e{width:271.488000px;}
._9{width:278.544000px;}
._77{width:280.560000px;}
._11{width:283.488000px;}
._17{width:284.832000px;}
._76{width:291.648000px;}
._b3{width:293.904000px;}
._4b{width:297.552000px;}
._b7{width:303.648000px;}
._4c{width:310.230000px;}
._b2{width:316.176000px;}
._6a{width:318.048000px;}
._b5{width:324.624000px;}
._25{width:330.096000px;}
._5c{width:332.880000px;}
._ad{width:340.083000px;}
._2e{width:348.150000px;}
._af{width:350.160000px;}
._b6{width:351.696000px;}
._30{width:353.766000px;}
._31{width:356.832000px;}
._50{width:368.448000px;}
._61{width:374.208000px;}
._b0{width:375.696000px;}
._5d{width:385.824000px;}
._b1{width:388.560000px;}
._64{width:398.208000px;}
._26{width:400.848000px;}
._45{width:404.544000px;}
._13{width:408.432000px;}
._5f{width:413.472000px;}
._52{width:414.720000px;}
._1e{width:416.496000px;}
._53{width:419.376000px;}
._a9{width:438.048000px;}
._5a{width:442.848000px;}
._28{width:447.168000px;}
._69{width:449.472000px;}
._57{width:459.750000px;}
._4a{width:467.520000px;}
._21{width:476.400000px;}
._32{width:477.792000px;}
._1c{width:480.486000px;}
._aa{width:484.620000px;}
._5e{width:493.488000px;}
._5b{width:501.984000px;}
._68{width:506.076000px;}
._41{width:511.536000px;}
._2b{width:512.784000px;}
._e{width:523.536000px;}
._2f{width:529.920000px;}
._20{width:534.144000px;}
._4f{width:536.688000px;}
._4e{width:538.800000px;}
._66{width:540.732000px;}
._60{width:544.272000px;}
._40{width:555.456000px;}
._3a{width:561.804000px;}
._d{width:563.424000px;}
._63{width:567.360000px;}
._42{width:571.824000px;}
._29{width:574.224000px;}
._62{width:581.094000px;}
._10{width:583.104000px;}
._43{width:602.208000px;}
._12{width:611.424000px;}
._1d{width:614.112000px;}
._2d{width:616.422000px;}
._39{width:619.104000px;}
._18{width:623.568000px;}
._35{width:630.144000px;}
._15{width:632.784000px;}
._2a{width:633.792000px;}
._44{width:635.472000px;}
._38{width:643.110000px;}
._16{width:653.808000px;}
._34{width:657.792000px;}
._33{width:664.800000px;}
._8{width:788.784000px;}
._3f{width:1342.134000px;}
._37{width:1361.184000px;}
._b{width:1362.960000px;}
._36{width:1369.200000px;}
._23{width:1371.840000px;}
._1b{width:1382.448000px;}
._22{width:1398.576000px;}
._3d{width:1420.806000px;}
._1f{width:1427.478000px;}
._1a{width:1443.888000px;}
._24{width:1449.216000px;}
._3c{width:1461.804000px;}
._3b{width:1536.822000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.235000px;}
.fs5{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y30{bottom:47.777250px;}
.y119{bottom:82.822500px;}
.yb7{bottom:83.046900px;}
.y1e4{bottom:83.121900px;}
.y140{bottom:83.141400px;}
.y1c5{bottom:83.635350px;}
.y151{bottom:84.098100px;}
.yba{bottom:84.523350px;}
.y143{bottom:84.735900px;}
.y13c{bottom:85.104150px;}
.y114{bottom:86.312100px;}
.ye0{bottom:86.320350px;}
.y2d{bottom:88.026750px;}
.y198{bottom:92.772600px;}
.y1b3{bottom:93.399150px;}
.y9e{bottom:93.572250px;}
.y68{bottom:93.954600px;}
.y225{bottom:95.263500px;}
.y1e3{bottom:98.121900px;}
.y118{bottom:98.566500px;}
.y13f{bottom:98.885400px;}
.y150{bottom:99.842100px;}
.yb9{bottom:100.267350px;}
.y142{bottom:100.479900px;}
.y1c4{bottom:101.635350px;}
.y2c{bottom:103.023000px;}
.y113{bottom:104.312100px;}
.ydf{bottom:104.320350px;}
.y169{bottom:104.335350px;}
.y1b2{bottom:109.647150px;}
.y9d{bottom:109.820250px;}
.y67{bottom:110.202600px;}
.y224{bottom:110.263500px;}
.y13b{bottom:110.356650px;}
.y197{bottom:110.772600px;}
.y1e2{bottom:113.121900px;}
.y1c3{bottom:119.635350px;}
.y14f{bottom:122.312100px;}
.yde{bottom:122.320350px;}
.y112{bottom:122.335350px;}
.y13a{bottom:125.098950px;}
.y223{bottom:125.263500px;}
.y1b1{bottom:125.895150px;}
.y66{bottom:126.450600px;}
.y1e1{bottom:128.121900px;}
.y1c2{bottom:137.635350px;}
.y9c{bottom:138.824250px;}
.y139{bottom:139.851450px;}
.y222{bottom:140.263500px;}
.ydd{bottom:140.320350px;}
.y111{bottom:140.335350px;}
.y1b0{bottom:142.143150px;}
.y65{bottom:142.698600px;}
.y1e0{bottom:143.121900px;}
.y196{bottom:146.367600px;}
.y138{bottom:154.603950px;}
.y9b{bottom:155.072250px;}
.y221{bottom:155.263500px;}
.y1c1{bottom:155.635350px;}
.y1df{bottom:158.121900px;}
.ydc{bottom:158.320350px;}
.y110{bottom:158.335350px;}
.y1af{bottom:158.391150px;}
.y64{bottom:158.946600px;}
.y29{bottom:159.668100px;}
.y137{bottom:169.356450px;}
.y220{bottom:170.263500px;}
.y9a{bottom:171.320250px;}
.y1de{bottom:173.121900px;}
.y1c0{bottom:173.635350px;}
.y1ae{bottom:174.639150px;}
.y63{bottom:175.194600px;}
.ydb{bottom:176.320350px;}
.y10f{bottom:176.335350px;}
.y28{bottom:177.668100px;}
.y136{bottom:184.108950px;}
.y21f{bottom:185.263500px;}
.y99{bottom:187.568250px;}
.y1dd{bottom:188.121900px;}
.y1ad{bottom:190.887150px;}
.y62{bottom:191.442600px;}
.y1bf{bottom:191.635350px;}
.yda{bottom:194.320350px;}
.y10e{bottom:194.335350px;}
.y27{bottom:195.668100px;}
.y135{bottom:198.861450px;}
.y21e{bottom:200.263500px;}
.y195{bottom:200.405250px;}
.y1dc{bottom:203.121900px;}
.y98{bottom:203.816250px;}
.y1ac{bottom:207.135150px;}
.y61{bottom:207.690600px;}
.y1be{bottom:209.635350px;}
.yd9{bottom:212.320350px;}
.y10d{bottom:212.335350px;}
.y134{bottom:213.613950px;}
.y26{bottom:213.668100px;}
.y21d{bottom:215.263500px;}
.y194{bottom:215.405250px;}
.y1db{bottom:218.121900px;}
.y1ab{bottom:223.383150px;}
.y60{bottom:223.938600px;}
.y1bd{bottom:227.635350px;}
.y133{bottom:228.366450px;}
.y21c{bottom:230.263500px;}
.yd8{bottom:230.320350px;}
.y10c{bottom:230.335350px;}
.y193{bottom:230.405250px;}
.y25{bottom:231.668100px;}
.y97{bottom:232.820250px;}
.y1da{bottom:233.121900px;}
.y1aa{bottom:239.631150px;}
.y5f{bottom:240.186600px;}
.y132{bottom:243.118950px;}
.y21b{bottom:245.263500px;}
.y192{bottom:245.405250px;}
.y1bc{bottom:245.635350px;}
.y1d9{bottom:248.121900px;}
.yd7{bottom:248.320350px;}
.y10b{bottom:248.335350px;}
.y96{bottom:249.068250px;}
.y24{bottom:249.668100px;}
.y1a9{bottom:255.879150px;}
.y5e{bottom:256.434600px;}
.y131{bottom:257.871450px;}
.y21a{bottom:260.263500px;}
.y191{bottom:260.405250px;}
.y1d8{bottom:263.121900px;}
.y1bb{bottom:263.635350px;}
.yd6{bottom:266.320350px;}
.y10a{bottom:266.335350px;}
.y23{bottom:267.668100px;}
.y1a8{bottom:272.127150px;}
.y130{bottom:272.623950px;}
.y5d{bottom:272.682600px;}
.y219{bottom:275.263500px;}
.y190{bottom:275.405250px;}
.y95{bottom:278.072250px;}
.y1d7{bottom:278.121900px;}
.y1ba{bottom:281.635350px;}
.yd5{bottom:284.320350px;}
.y109{bottom:284.335350px;}
.y22{bottom:285.668100px;}
.y12f{bottom:287.376450px;}
.y1a7{bottom:288.375150px;}
.y5c{bottom:288.930600px;}
.y218{bottom:290.263500px;}
.y18f{bottom:290.405250px;}
.y1d6{bottom:293.121900px;}
.y94{bottom:294.320250px;}
.y12e{bottom:302.128950px;}
.yd4{bottom:302.320350px;}
.y108{bottom:302.335350px;}
.y21{bottom:303.668100px;}
.y5b{bottom:305.178600px;}
.y217{bottom:305.263500px;}
.y18e{bottom:305.405250px;}
.y1d5{bottom:308.121900px;}
.y93{bottom:310.568250px;}
.y12d{bottom:316.881450px;}
.y1b9{bottom:317.230350px;}
.y1a6{bottom:317.379150px;}
.y216{bottom:320.263500px;}
.yd3{bottom:320.320350px;}
.y107{bottom:320.335350px;}
.y18d{bottom:320.405250px;}
.y5a{bottom:321.426600px;}
.y20{bottom:321.668100px;}
.y1d4{bottom:323.121900px;}
.y92{bottom:326.816250px;}
.y215{bottom:335.263500px;}
.y18c{bottom:335.405250px;}
.y59{bottom:337.674600px;}
.y1d3{bottom:338.121900px;}
.yd2{bottom:338.320350px;}
.y106{bottom:338.335350px;}
.y1f{bottom:339.668100px;}
.y91{bottom:343.064250px;}
.y1a5{bottom:346.383150px;}
.y12c{bottom:347.646450px;}
.y214{bottom:350.263500px;}
.y18b{bottom:350.405250px;}
.y1d2{bottom:353.121900px;}
.y58{bottom:353.922600px;}
.yd1{bottom:356.320350px;}
.y105{bottom:356.335350px;}
.y1e{bottom:357.668100px;}
.y90{bottom:359.312250px;}
.y213{bottom:365.263500px;}
.y18a{bottom:365.405250px;}
.y1d1{bottom:368.121900px;}
.y56{bottom:370.170600px;}
.y1b8{bottom:371.770350px;}
.yd0{bottom:374.320350px;}
.y104{bottom:374.335350px;}
.y8f{bottom:375.560250px;}
.y1d{bottom:375.668100px;}
.y1a4{bottom:378.775350px;}
.y212{bottom:380.263500px;}
.y189{bottom:380.405250px;}
.y1d0{bottom:383.121900px;}
.y57{bottom:386.670600px;}
.y55{bottom:386.785500px;}
.y1b7{bottom:389.770350px;}
.y8e{bottom:391.808250px;}
.ycf{bottom:392.320350px;}
.y103{bottom:392.335350px;}
.y1c{bottom:393.668100px;}
.y211{bottom:395.263500px;}
.y188{bottom:395.405250px;}
.y1cf{bottom:398.121900px;}
.y1a3{bottom:398.275350px;}
.y12b{bottom:400.402500px;}
.y54{bottom:403.033500px;}
.y1b6{bottom:407.770350px;}
.y8d{bottom:408.056250px;}
.y210{bottom:410.263500px;}
.yce{bottom:410.320350px;}
.y102{bottom:410.335350px;}
.y187{bottom:410.405250px;}
.y1b{bottom:411.668100px;}
.y1ce{bottom:413.121900px;}
.y12a{bottom:415.155000px;}
.y53{bottom:419.281500px;}
.y20f{bottom:425.263500px;}
.y186{bottom:425.405250px;}
.y1b5{bottom:425.770350px;}
.y1cd{bottom:428.121900px;}
.ycd{bottom:428.320350px;}
.y101{bottom:428.335350px;}
.y1a{bottom:429.668100px;}
.y129{bottom:429.907500px;}
.y52{bottom:435.529500px;}
.y8c{bottom:437.060250px;}
.y20e{bottom:440.263500px;}
.y185{bottom:440.405250px;}
.y1a2{bottom:443.770350px;}
.y128{bottom:444.660000px;}
.ycc{bottom:446.320350px;}
.y100{bottom:446.335350px;}
.y2b{bottom:447.668100px;}
.y51{bottom:451.777500px;}
.y8b{bottom:453.308250px;}
.y20d{bottom:455.263500px;}
.y184{bottom:455.405250px;}
.y127{bottom:459.412500px;}
.y1cc{bottom:461.230350px;}
.y1a1{bottom:461.770350px;}
.ycb{bottom:464.320350px;}
.yff{bottom:464.335350px;}
.y19{bottom:465.265200px;}
.y2a{bottom:465.668100px;}
.y50{bottom:468.025500px;}
.y8a{bottom:469.556250px;}
.y20c{bottom:470.263500px;}
.y183{bottom:470.405250px;}
.y126{bottom:474.165000px;}
.y1a0{bottom:479.770350px;}
.yca{bottom:482.320350px;}
.yfe{bottom:482.335350px;}
.y4f{bottom:484.273500px;}
.y20b{bottom:485.263500px;}
.y182{bottom:485.405250px;}
.y89{bottom:485.804250px;}
.y125{bottom:488.917500px;}
.y19f{bottom:497.770350px;}
.y20a{bottom:500.263500px;}
.yc9{bottom:500.320350px;}
.yfd{bottom:500.335350px;}
.y181{bottom:500.405250px;}
.y4e{bottom:500.521500px;}
.y88{bottom:502.052250px;}
.y124{bottom:503.670000px;}
.y209{bottom:515.263500px;}
.y180{bottom:515.405250px;}
.y19e{bottom:515.770350px;}
.y4d{bottom:517.021500px;}
.yc8{bottom:518.320350px;}
.yfc{bottom:518.335350px;}
.y123{bottom:518.422500px;}
.y208{bottom:530.263500px;}
.y17f{bottom:530.405250px;}
.y122{bottom:533.175000px;}
.y4c{bottom:533.269500px;}
.y1cb{bottom:533.365350px;}
.y87{bottom:533.564250px;}
.y19d{bottom:533.770350px;}
.yc7{bottom:536.320350px;}
.yfb{bottom:536.335350px;}
.y18{bottom:538.160250px;}
.y207{bottom:545.263500px;}
.y17e{bottom:545.405250px;}
.y121{bottom:547.927500px;}
.y4b{bottom:549.517500px;}
.y19c{bottom:551.770350px;}
.yc6{bottom:554.320350px;}
.yfa{bottom:554.335350px;}
.y206{bottom:560.263500px;}
.y17d{bottom:560.405250px;}
.y120{bottom:562.680000px;}
.y17{bottom:565.505250px;}
.y4a{bottom:565.765500px;}
.y86{bottom:568.465350px;}
.y1ca{bottom:569.365350px;}
.y19b{bottom:569.770350px;}
.y174{bottom:569.920350px;}
.yc5{bottom:572.320350px;}
.yf9{bottom:572.335350px;}
.y205{bottom:575.263500px;}
.y17c{bottom:575.405250px;}
.y11f{bottom:577.432500px;}
.y49{bottom:582.013500px;}
.y16{bottom:583.505250px;}
.y173{bottom:587.515350px;}
.y19a{bottom:587.770350px;}
.y159{bottom:587.920350px;}
.y204{bottom:590.263500px;}
.yc4{bottom:590.320350px;}
.yf8{bottom:590.335350px;}
.y17b{bottom:590.405250px;}
.yb6{bottom:590.455350px;}
.y11e{bottom:592.185000px;}
.y48{bottom:598.261500px;}
.y15{bottom:601.505250px;}
.y203{bottom:605.263500px;}
.y158{bottom:605.515350px;}
.y199{bottom:605.770350px;}
.y11d{bottom:606.937500px;}
.yc3{bottom:608.320350px;}
.yf7{bottom:608.335350px;}
.yb5{bottom:608.455350px;}
.y47{bottom:614.509500px;}
.y14{bottom:619.505250px;}
.y202{bottom:620.263500px;}
.y7b{bottom:623.635350px;}
.y85{bottom:623.770350px;}
.y146{bottom:623.920350px;}
.y17a{bottom:623.935350px;}
.yc2{bottom:626.320350px;}
.yf6{bottom:626.335350px;}
.yb4{bottom:626.455350px;}
.y46{bottom:630.757500px;}
.y201{bottom:635.263500px;}
.y13{bottom:637.505250px;}
.y11c{bottom:637.702500px;}
.y145{bottom:641.515350px;}
.y179{bottom:641.530350px;}
.y7a{bottom:641.635350px;}
.y84{bottom:641.770350px;}
.yc1{bottom:644.320350px;}
.yf5{bottom:644.335350px;}
.yb3{bottom:644.455350px;}
.y45{bottom:647.005500px;}
.y200{bottom:650.263500px;}
.y12{bottom:655.505250px;}
.y178{bottom:659.530350px;}
.y79{bottom:659.635350px;}
.y83{bottom:659.770350px;}
.yc0{bottom:662.320350px;}
.yf4{bottom:662.335350px;}
.yb2{bottom:662.455350px;}
.y44{bottom:663.253500px;}
.y1ff{bottom:665.263500px;}
.y11b{bottom:672.100350px;}
.y11{bottom:673.505250px;}
.y1c9{bottom:677.365350px;}
.y78{bottom:677.635350px;}
.y82{bottom:677.770350px;}
.y43{bottom:679.501500px;}
.y1fe{bottom:680.263500px;}
.ybf{bottom:680.320350px;}
.yf3{bottom:680.335350px;}
.yb1{bottom:680.455350px;}
.y10{bottom:691.505250px;}
.y1fd{bottom:695.263500px;}
.y77{bottom:695.635350px;}
.y42{bottom:695.749500px;}
.y81{bottom:695.770350px;}
.y177{bottom:695.785350px;}
.y15d{bottom:695.935350px;}
.ybe{bottom:698.320350px;}
.yf2{bottom:698.335350px;}
.yb0{bottom:698.455350px;}
.yf{bottom:709.505250px;}
.y1fc{bottom:710.263500px;}
.y41{bottom:711.997500px;}
.y15c{bottom:713.530350px;}
.y76{bottom:713.635350px;}
.y80{bottom:713.770350px;}
.y176{bottom:713.785350px;}
.yf1{bottom:716.335350px;}
.yaf{bottom:716.455350px;}
.y1fb{bottom:725.263500px;}
.y40{bottom:728.245500px;}
.y1c8{bottom:731.365350px;}
.y15b{bottom:731.530350px;}
.y7f{bottom:731.770350px;}
.y175{bottom:731.785350px;}
.ybd{bottom:731.920350px;}
.y14e{bottom:731.935350px;}
.yf0{bottom:734.335350px;}
.yae{bottom:734.455350px;}
.y1fa{bottom:740.263500px;}
.ye{bottom:742.640100px;}
.y3f{bottom:744.493500px;}
.y75{bottom:749.230350px;}
.ybc{bottom:749.515350px;}
.y14d{bottom:749.530350px;}
.y7e{bottom:749.770350px;}
.y168{bottom:749.785350px;}
.yef{bottom:752.335350px;}
.yad{bottom:752.455350px;}
.y1f9{bottom:755.263500px;}
.y3e{bottom:760.741500px;}
.y7d{bottom:767.770350px;}
.y15a{bottom:767.785350px;}
.yd{bottom:769.768200px;}
.y1f8{bottom:770.263500px;}
.yee{bottom:770.335350px;}
.yac{bottom:770.455350px;}
.y3d{bottom:776.989500px;}
.yc{bottom:781.468200px;}
.y1f7{bottom:785.263500px;}
.y7c{bottom:785.770350px;}
.y14c{bottom:785.785350px;}
.yed{bottom:788.335350px;}
.yab{bottom:788.455350px;}
.y3c{bottom:793.237500px;}
.y1f6{bottom:800.263500px;}
.y74{bottom:803.770350px;}
.y14b{bottom:803.785350px;}
.yec{bottom:806.335350px;}
.yaa{bottom:806.455350px;}
.y3b{bottom:809.485500px;}
.yb{bottom:813.183600px;}
.y1f5{bottom:815.263500px;}
.y73{bottom:821.770350px;}
.y14a{bottom:821.785350px;}
.ya9{bottom:824.455350px;}
.y3a{bottom:825.733500px;}
.y1f4{bottom:830.263500px;}
.ya{bottom:832.108950px;}
.y1c7{bottom:839.365350px;}
.y72{bottom:839.770350px;}
.y149{bottom:839.785350px;}
.yeb{bottom:839.935350px;}
.y9{bottom:840.183600px;}
.y39{bottom:841.981500px;}
.ya8{bottom:842.455350px;}
.y1f3{bottom:845.263500px;}
.yea{bottom:857.530350px;}
.y71{bottom:857.770350px;}
.y148{bottom:857.785350px;}
.y38{bottom:858.229500px;}
.y8{bottom:859.108950px;}
.y1f2{bottom:860.263500px;}
.ya7{bottom:860.455350px;}
.y37{bottom:874.477500px;}
.y1f1{bottom:875.263500px;}
.y70{bottom:875.770350px;}
.y147{bottom:875.785350px;}
.ya6{bottom:878.455350px;}
.y7{bottom:887.830950px;}
.y1f0{bottom:890.263500px;}
.y6f{bottom:893.770350px;}
.ye9{bottom:893.785350px;}
.ya5{bottom:896.455350px;}
.y1ef{bottom:905.263500px;}
.y36{bottom:905.989500px;}
.y6e{bottom:911.770350px;}
.ye8{bottom:911.785350px;}
.y1ee{bottom:920.263500px;}
.y6d{bottom:929.770350px;}
.ye7{bottom:929.785350px;}
.ya4{bottom:930.055350px;}
.y155{bottom:932.320350px;}
.y6{bottom:934.004400px;}
.y1ed{bottom:935.263500px;}
.y35{bottom:940.885350px;}
.ya3{bottom:947.650350px;}
.y6c{bottom:947.770350px;}
.y172{bottom:947.772600px;}
.y167{bottom:947.776200px;}
.ye6{bottom:947.785350px;}
.y117{bottom:950.170350px;}
.y16d{bottom:950.172600px;}
.y162{bottom:950.176200px;}
.y1ec{bottom:950.263500px;}
.y34{bottom:960.385350px;}
.y1eb{bottom:965.263500px;}
.y6b{bottom:965.770350px;}
.y171{bottom:965.772600px;}
.y166{bottom:965.776200px;}
.ye5{bottom:965.785350px;}
.y154{bottom:965.920350px;}
.y116{bottom:968.170350px;}
.y16c{bottom:968.172600px;}
.y161{bottom:968.176200px;}
.y5{bottom:970.465200px;}
.y1ea{bottom:980.263500px;}
.ya2{bottom:983.500350px;}
.y153{bottom:983.515350px;}
.y6a{bottom:983.770350px;}
.y170{bottom:983.772600px;}
.y165{bottom:983.776200px;}
.ye4{bottom:983.785350px;}
.y13e{bottom:986.170350px;}
.y16b{bottom:986.172600px;}
.y160{bottom:986.176200px;}
.y1e9{bottom:995.263500px;}
.y1c6{bottom:1001.365350px;}
.ya1{bottom:1001.500350px;}
.y152{bottom:1001.515350px;}
.y33{bottom:1001.770350px;}
.y16f{bottom:1001.772600px;}
.y164{bottom:1001.776200px;}
.ye3{bottom:1001.785350px;}
.y4{bottom:1006.926000px;}
.y1e8{bottom:1010.263500px;}
.y115{bottom:1019.365350px;}
.y32{bottom:1019.770350px;}
.y16a{bottom:1019.772600px;}
.y15f{bottom:1019.776200px;}
.ye2{bottom:1019.785350px;}
.y1e7{bottom:1025.263500px;}
.ya0{bottom:1037.365350px;}
.y15e{bottom:1037.371200px;}
.y31{bottom:1037.770350px;}
.y16e{bottom:1037.772600px;}
.y163{bottom:1037.776200px;}
.ye1{bottom:1037.785350px;}
.y1e6{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.721650px;}
.y1e5{bottom:1132.413900px;}
.y13d{bottom:1132.416150px;}
.ybb{bottom:1132.418700px;}
.y144{bottom:1132.419900px;}
.y141{bottom:1132.421400px;}
.y156{bottom:1132.421700px;}
.yb8{bottom:1132.422900px;}
.y226{bottom:1132.423500px;}
.y11a{bottom:1132.426500px;}
.y157{bottom:1132.430100px;}
.y1b4{bottom:1132.479150px;}
.y69{bottom:1132.482600px;}
.y9f{bottom:1132.508250px;}
.y2f{bottom:1136.092500px;}
.y2e{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.412109px;}
.h17{height:29.182617px;}
.h18{height:29.223417px;}
.h2{height:30.597656px;}
.h4{height:32.761230px;}
.h10{height:32.783203px;}
.h8{height:32.805176px;}
.h15{height:33.328125px;}
.h14{height:33.351562px;}
.ha{height:34.945312px;}
.h12{height:34.968750px;}
.h11{height:34.992188px;}
.h13{height:41.660156px;}
.hf{height:41.689453px;}
.he{height:43.681641px;}
.hb{height:43.710938px;}
.hd{height:43.717434px;}
.hc{height:43.740234px;}
.h16{height:44.100000px;}
.h3{height:56.786133px;}
.h6{height:57.121316px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:70.582650px;}
.xa{left:76.535400px;}
.xc{left:78.661350px;}
.x20{left:90.080400px;}
.x32{left:93.590400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x17{left:99.921300px;}
.x39{left:102.047250px;}
.x2d{left:103.835400px;}
.x3{left:106.299150px;}
.x1a{left:110.555400px;}
.x29{left:114.680400px;}
.x2b{left:117.980400px;}
.x3b{left:123.307050px;}
.x4{left:125.427900px;}
.x6{left:131.811000px;}
.x26{left:163.700850px;}
.x14{left:165.985350px;}
.x34{left:181.385400px;}
.x2e{left:193.505400px;}
.x21{left:197.270400px;}
.x37{left:211.435350px;}
.x5{left:212.876400px;}
.x36{left:221.377350px;}
.x18{left:310.269300px;}
.xd{left:312.529350px;}
.xf{left:325.309350px;}
.x9{left:455.041500px;}
.xb{left:457.085400px;}
.x22{left:460.235400px;}
.x33{left:467.525400px;}
.x15{left:478.345350px;}
.x7{left:480.471000px;}
.x3a{left:482.627250px;}
.x1f{left:491.090400px;}
.x2a{left:499.415400px;}
.x1c{left:503.570400px;}
.x10{left:510.325350px;}
.x16{left:512.365350px;}
.x30{left:515.840400px;}
.xe{left:527.977350px;}
.x24{left:529.390350px;}
.x1d{left:555.650400px;}
.x23{left:557.725350px;}
.x2f{left:561.680400px;}
.x31{left:574.385400px;}
.x1e{left:577.805400px;}
.x35{left:579.428700px;}
.x1b{left:591.650400px;}
.x38{left:596.140350px;}
.x25{left:599.080350px;}
.x11{left:610.155600px;}
.x13{left:663.492300px;}
.x2{left:693.365400px;}
.x27{left:721.724250px;}
.x12{left:728.391600px;}
.x28{left:743.875350px;}
.x19{left:749.757300px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls17{letter-spacing:-0.693333pt;}
.ls38{letter-spacing:-0.522667pt;}
.ls7d{letter-spacing:-0.384000pt;}
.ls37{letter-spacing:-0.373333pt;}
.ls53{letter-spacing:-0.266667pt;}
.ls85{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls2f{letter-spacing:-0.160000pt;}
.ls7c{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.106667pt;}
.ls7b{letter-spacing:-0.085333pt;}
.ls36{letter-spacing:-0.053333pt;}
.ls84{letter-spacing:-0.042667pt;}
.ls16{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003147pt;}
.ls65{letter-spacing:0.042667pt;}
.ls14{letter-spacing:0.053333pt;}
.ls3b{letter-spacing:0.085333pt;}
.ls3d{letter-spacing:0.106667pt;}
.ls6e{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5a{letter-spacing:0.170667pt;}
.lsd{letter-spacing:0.213333pt;}
.ls5c{letter-spacing:0.256000pt;}
.ls44{letter-spacing:0.266667pt;}
.ls60{letter-spacing:0.298667pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.341333pt;}
.ls3{letter-spacing:0.373333pt;}
.ls7e{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls74{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls78{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.533333pt;}
.ls68{letter-spacing:0.554667pt;}
.ls24{letter-spacing:0.586667pt;}
.ls5e{letter-spacing:0.597333pt;}
.ls4e{letter-spacing:0.640000pt;}
.ls70{letter-spacing:0.682667pt;}
.ls19{letter-spacing:0.693333pt;}
.ls48{letter-spacing:0.725333pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls76{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls71{letter-spacing:0.810667pt;}
.ls22{letter-spacing:0.853333pt;}
.ls5b{letter-spacing:0.896000pt;}
.ls15{letter-spacing:0.906667pt;}
.ls64{letter-spacing:0.938667pt;}
.ls5{letter-spacing:0.960000pt;}
.ls66{letter-spacing:0.981333pt;}
.lsb{letter-spacing:1.013333pt;}
.ls72{letter-spacing:1.024000pt;}
.ls29{letter-spacing:1.066667pt;}
.ls58{letter-spacing:1.109333pt;}
.ls4{letter-spacing:1.120000pt;}
.ls52{letter-spacing:1.173333pt;}
.ls63{letter-spacing:1.194667pt;}
.ls2d{letter-spacing:1.226667pt;}
.ls67{letter-spacing:1.237333pt;}
.ls26{letter-spacing:1.280000pt;}
.ls49{letter-spacing:1.322667pt;}
.ls23{letter-spacing:1.333333pt;}
.ls33{letter-spacing:1.386667pt;}
.ls5d{letter-spacing:1.408000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls62{letter-spacing:1.450667pt;}
.ls1a{letter-spacing:1.493333pt;}
.ls7a{letter-spacing:1.536000pt;}
.ls25{letter-spacing:1.546667pt;}
.ls1e{letter-spacing:1.600000pt;}
.ls57{letter-spacing:1.621333pt;}
.ls35{letter-spacing:1.653333pt;}
.ls81{letter-spacing:1.664000pt;}
.ls1b{letter-spacing:1.706667pt;}
.ls28{letter-spacing:1.760000pt;}
.ls69{letter-spacing:1.792000pt;}
.lse{letter-spacing:1.813333pt;}
.ls27{letter-spacing:1.866667pt;}
.ls6c{letter-spacing:1.877333pt;}
.ls9{letter-spacing:1.920000pt;}
.ls3f{letter-spacing:1.962667pt;}
.ls21{letter-spacing:1.973333pt;}
.ls80{letter-spacing:2.005333pt;}
.ls51{letter-spacing:2.026667pt;}
.ls30{letter-spacing:2.080000pt;}
.ls3e{letter-spacing:2.090667pt;}
.ls6{letter-spacing:2.133333pt;}
.ls5f{letter-spacing:2.176000pt;}
.ls4c{letter-spacing:2.186667pt;}
.ls83{letter-spacing:2.218667pt;}
.lsc{letter-spacing:2.240000pt;}
.ls20{letter-spacing:2.293333pt;}
.ls6f{letter-spacing:2.304000pt;}
.ls7{letter-spacing:2.346667pt;}
.ls82{letter-spacing:2.389333pt;}
.ls45{letter-spacing:2.400000pt;}
.ls39{letter-spacing:2.432000pt;}
.ls11{letter-spacing:2.453333pt;}
.ls54{letter-spacing:2.506667pt;}
.ls6a{letter-spacing:2.517333pt;}
.ls4d{letter-spacing:2.560000pt;}
.ls6b{letter-spacing:2.602667pt;}
.ls4b{letter-spacing:2.613333pt;}
.ls59{letter-spacing:2.645333pt;}
.ls2e{letter-spacing:2.666667pt;}
.ls61{letter-spacing:2.688000pt;}
.ls79{letter-spacing:2.816000pt;}
.ls10{letter-spacing:2.826667pt;}
.lsa{letter-spacing:2.880000pt;}
.ls31{letter-spacing:2.933333pt;}
.ls34{letter-spacing:2.986667pt;}
.ls3a{letter-spacing:3.093333pt;}
.ls3c{letter-spacing:3.114667pt;}
.ls7f{letter-spacing:3.157333pt;}
.ls75{letter-spacing:3.285333pt;}
.ls1d{letter-spacing:3.306667pt;}
.ls77{letter-spacing:3.370667pt;}
.ls43{letter-spacing:3.413333pt;}
.ls40{letter-spacing:3.466667pt;}
.ls46{letter-spacing:3.520000pt;}
.ls4f{letter-spacing:3.573333pt;}
.ls41{letter-spacing:3.733333pt;}
.ls73{letter-spacing:3.754667pt;}
.ls47{letter-spacing:3.786667pt;}
.ls50{letter-spacing:3.840000pt;}
.ls56{letter-spacing:3.946667pt;}
.ls55{letter-spacing:4.053333pt;}
.ls32{letter-spacing:4.160000pt;}
.ls4a{letter-spacing:4.320000pt;}
.ls42{letter-spacing:4.533333pt;}
.ls1f{letter-spacing:4.853333pt;}
.ls0{letter-spacing:52.918112pt;}
.ws2d{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws35{word-spacing:-17.493333pt;}
.ws4d{word-spacing:-17.120000pt;}
.ws4c{word-spacing:-16.853333pt;}
.ws48{word-spacing:-16.800000pt;}
.ws4a{word-spacing:-16.746667pt;}
.ws85{word-spacing:-16.426667pt;}
.ws6a{word-spacing:-16.213333pt;}
.ws7{word-spacing:-15.786667pt;}
.ws4b{word-spacing:-15.733333pt;}
.ws47{word-spacing:-15.680000pt;}
.ws70{word-spacing:-15.520000pt;}
.ws20{word-spacing:-15.253333pt;}
.ws6{word-spacing:-15.146667pt;}
.ws6f{word-spacing:-15.040000pt;}
.ws6b{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws9{word-spacing:-14.773333pt;}
.ws1f{word-spacing:-14.613333pt;}
.ws71{word-spacing:-14.400000pt;}
.ws4{word-spacing:-14.293333pt;}
.wsb{word-spacing:-14.240000pt;}
.ws49{word-spacing:-14.186667pt;}
.ws1e{word-spacing:-14.133333pt;}
.wsa8{word-spacing:-14.037333pt;}
.ws86{word-spacing:-14.026667pt;}
.wsa{word-spacing:-13.813333pt;}
.wsbe{word-spacing:-13.781333pt;}
.ws3{word-spacing:-13.760000pt;}
.ws82{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.546667pt;}
.ws36{word-spacing:-13.493333pt;}
.ws57{word-spacing:-13.440000pt;}
.ws83{word-spacing:-13.386667pt;}
.ws88{word-spacing:-13.354667pt;}
.ws2e{word-spacing:-13.333333pt;}
.wsbd{word-spacing:-13.269333pt;}
.ws84{word-spacing:-13.226667pt;}
.ws8{word-spacing:-13.120000pt;}
.wsc0{word-spacing:-12.672000pt;}
.wsc2{word-spacing:-12.330667pt;}
.ws89{word-spacing:-12.117333pt;}
.ws9f{word-spacing:-11.946667pt;}
.wsd{word-spacing:-11.861333pt;}
.ws87{word-spacing:-11.776000pt;}
.wsa1{word-spacing:-11.690667pt;}
.wsc1{word-spacing:-11.477333pt;}
.wsa5{word-spacing:-11.434667pt;}
.wsa3{word-spacing:-11.264000pt;}
.ws9d{word-spacing:-11.221333pt;}
.wsa9{word-spacing:-11.178667pt;}
.wsbf{word-spacing:-11.136000pt;}
.wsc{word-spacing:-11.120000pt;}
.wsa4{word-spacing:-10.965333pt;}
.wsaa{word-spacing:-10.922667pt;}
.wsa2{word-spacing:-10.880000pt;}
.wsa0{word-spacing:-10.794667pt;}
.ws9e{word-spacing:-10.752000pt;}
.wsa6{word-spacing:-10.709333pt;}
.ws9c{word-spacing:-10.666667pt;}
.ws5f{word-spacing:-10.453333pt;}
.wsc3{word-spacing:-10.410667pt;}
.wsa7{word-spacing:-10.282667pt;}
.ws66{word-spacing:-9.088000pt;}
.ws1{word-spacing:-9.076144pt;}
.ws68{word-spacing:-8.789333pt;}
.ws67{word-spacing:-7.893333pt;}
.ws65{word-spacing:-7.296000pt;}
.ws5b{word-spacing:-6.954667pt;}
.ws63{word-spacing:-4.949333pt;}
.ws5d{word-spacing:-4.437333pt;}
.ws59{word-spacing:-4.320000pt;}
.ws4e{word-spacing:-3.733333pt;}
.ws69{word-spacing:-3.669333pt;}
.ws60{word-spacing:-3.285333pt;}
.ws91{word-spacing:-2.826667pt;}
.wscf{word-spacing:-2.602667pt;}
.wsf{word-spacing:-2.565333pt;}
.ws75{word-spacing:-2.560000pt;}
.ws2c{word-spacing:-2.346667pt;}
.wsb2{word-spacing:-2.304000pt;}
.ws8c{word-spacing:-2.240000pt;}
.ws5e{word-spacing:-2.048000pt;}
.wscc{word-spacing:-2.005333pt;}
.ws25{word-spacing:-1.973333pt;}
.wsc5{word-spacing:-1.920000pt;}
.ws5a{word-spacing:-1.877333pt;}
.ws73{word-spacing:-1.706667pt;}
.ws23{word-spacing:-1.493333pt;}
.ws6d{word-spacing:-1.440000pt;}
.ws78{word-spacing:-1.226667pt;}
.ws61{word-spacing:-1.194667pt;}
.ws95{word-spacing:-1.109333pt;}
.ws7f{word-spacing:-1.066667pt;}
.wsb4{word-spacing:-1.024000pt;}
.ws13{word-spacing:-0.960000pt;}
.ws1a{word-spacing:-0.906667pt;}
.wsc8{word-spacing:-0.896000pt;}
.ws2b{word-spacing:-0.768000pt;}
.ws81{word-spacing:-0.746667pt;}
.ws5c{word-spacing:-0.725333pt;}
.wsb3{word-spacing:-0.682667pt;}
.ws74{word-spacing:-0.640000pt;}
.ws19{word-spacing:-0.480000pt;}
.wsbc{word-spacing:-0.469333pt;}
.ws1d{word-spacing:-0.426667pt;}
.wsb1{word-spacing:-0.341333pt;}
.ws9b{word-spacing:-0.298667pt;}
.ws7b{word-spacing:-0.266667pt;}
.wsad{word-spacing:-0.256000pt;}
.ws24{word-spacing:-0.213333pt;}
.ws96{word-spacing:-0.170667pt;}
.ws1c{word-spacing:-0.160000pt;}
.ws42{word-spacing:-0.128000pt;}
.ws8f{word-spacing:-0.106667pt;}
.ws3a{word-spacing:-0.053333pt;}
.wsaf{word-spacing:-0.042667pt;}
.wse{word-spacing:0.000000pt;}
.ws56{word-spacing:0.042667pt;}
.wsd1{word-spacing:0.085333pt;}
.ws27{word-spacing:0.106667pt;}
.ws8b{word-spacing:0.160000pt;}
.wscb{word-spacing:0.170667pt;}
.ws17{word-spacing:0.213333pt;}
.ws3b{word-spacing:0.256000pt;}
.ws77{word-spacing:0.320000pt;}
.ws3f{word-spacing:0.373333pt;}
.wsb8{word-spacing:0.384000pt;}
.ws45{word-spacing:0.469333pt;}
.ws80{word-spacing:0.533333pt;}
.wsd0{word-spacing:0.640000pt;}
.ws7d{word-spacing:0.693333pt;}
.ws53{word-spacing:0.725333pt;}
.ws18{word-spacing:0.746667pt;}
.ws8e{word-spacing:0.800000pt;}
.ws62{word-spacing:0.810667pt;}
.ws32{word-spacing:0.960000pt;}
.ws51{word-spacing:1.013333pt;}
.wsac{word-spacing:1.024000pt;}
.ws30{word-spacing:1.120000pt;}
.wsc4{word-spacing:1.152000pt;}
.wsb7{word-spacing:1.194667pt;}
.ws50{word-spacing:1.226667pt;}
.ws54{word-spacing:1.322667pt;}
.ws99{word-spacing:1.365333pt;}
.ws8d{word-spacing:1.440000pt;}
.ws98{word-spacing:1.450667pt;}
.ws16{word-spacing:1.493333pt;}
.ws52{word-spacing:1.546667pt;}
.wsc7{word-spacing:1.621333pt;}
.ws2f{word-spacing:1.653333pt;}
.wsca{word-spacing:1.664000pt;}
.ws2a{word-spacing:1.813333pt;}
.ws37{word-spacing:1.920000pt;}
.ws46{word-spacing:1.962667pt;}
.ws93{word-spacing:2.026667pt;}
.ws44{word-spacing:2.048000pt;}
.ws55{word-spacing:2.080000pt;}
.ws34{word-spacing:2.133333pt;}
.ws97{word-spacing:2.218667pt;}
.ws14{word-spacing:2.240000pt;}
.ws4f{word-spacing:2.293333pt;}
.ws33{word-spacing:2.400000pt;}
.ws9a{word-spacing:2.432000pt;}
.ws15{word-spacing:2.453333pt;}
.ws40{word-spacing:2.474667pt;}
.ws90{word-spacing:2.560000pt;}
.ws58{word-spacing:2.613333pt;}
.ws28{word-spacing:2.666667pt;}
.ws79{word-spacing:2.773333pt;}
.wsb6{word-spacing:2.858667pt;}
.ws29{word-spacing:2.880000pt;}
.ws6e{word-spacing:2.901333pt;}
.ws8a{word-spacing:2.933333pt;}
.wsc9{word-spacing:2.944000pt;}
.wsc6{word-spacing:2.986667pt;}
.ws7c{word-spacing:3.040000pt;}
.wsce{word-spacing:3.072000pt;}
.ws76{word-spacing:3.093333pt;}
.ws43{word-spacing:3.114667pt;}
.wscd{word-spacing:3.157333pt;}
.wsb0{word-spacing:3.242667pt;}
.wsae{word-spacing:3.328000pt;}
.ws6c{word-spacing:3.413333pt;}
.wsab{word-spacing:3.456000pt;}
.ws26{word-spacing:3.466667pt;}
.ws41{word-spacing:3.498667pt;}
.ws12{word-spacing:3.520000pt;}
.ws64{word-spacing:3.541333pt;}
.ws39{word-spacing:3.573333pt;}
.ws38{word-spacing:3.626667pt;}
.ws22{word-spacing:3.680000pt;}
.ws7e{word-spacing:3.733333pt;}
.wsb5{word-spacing:3.754667pt;}
.wsbb{word-spacing:3.797333pt;}
.ws31{word-spacing:3.893333pt;}
.ws7a{word-spacing:4.000000pt;}
.wsba{word-spacing:4.010667pt;}
.ws11{word-spacing:4.373333pt;}
.ws10{word-spacing:4.426667pt;}
.ws94{word-spacing:4.650667pt;}
.ws92{word-spacing:4.906667pt;}
.wsb9{word-spacing:6.912000pt;}
.ws3e{word-spacing:119.093333pt;}
.ws1b{word-spacing:312.576000pt;}
.ws21{word-spacing:360.661333pt;}
.ws3d{word-spacing:438.741333pt;}
.ws3c{word-spacing:458.453333pt;}
.ws72{word-spacing:477.013333pt;}
._47{margin-left:-2576.085333pt;}
._6d{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._4{margin-left:-6.773333pt;}
._b8{margin-left:-5.757333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.288000pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.960000pt;}
._49{width:1.066667pt;}
._48{width:2.752000pt;}
._7{width:3.808000pt;}
._5{width:5.258667pt;}
._a6{width:7.137600pt;}
._a7{width:10.019200pt;}
._9e{width:15.904000pt;}
._8e{width:26.762667pt;}
._88{width:29.642667pt;}
._9f{width:34.272000pt;}
._a0{width:36.736000pt;}
._a4{width:38.954667pt;}
._9b{width:43.829333pt;}
._86{width:51.682667pt;}
._a8{width:53.034667pt;}
._a5{width:56.746667pt;}
._8b{width:63.130667pt;}
._9c{width:66.528000pt;}
._6f{width:72.576000pt;}
._9d{width:74.069333pt;}
._83{width:75.226667pt;}
._8d{width:76.125333pt;}
._91{width:79.818667pt;}
._9a{width:83.701333pt;}
._70{width:84.634667pt;}
._72{width:88.144000pt;}
._85{width:89.189333pt;}
._84{width:91.242667pt;}
._ac{width:96.432000pt;}
._97{width:97.594667pt;}
._94{width:98.661333pt;}
._ab{width:100.312000pt;}
._4d{width:102.144000pt;}
._a2{width:105.533333pt;}
._8c{width:106.776000pt;}
._73{width:107.856000pt;}
._7c{width:109.237333pt;}
._71{width:110.282667pt;}
._81{width:114.053333pt;}
._6e{width:116.144000pt;}
._7f{width:118.570667pt;}
._95{width:120.293333pt;}
._7a{width:124.469333pt;}
._7b{width:125.813333pt;}
._a{width:129.322667pt;}
._6b{width:131.848000pt;}
._75{width:133.381333pt;}
._a3{width:135.906667pt;}
._7e{width:142.997333pt;}
._27{width:144.085333pt;}
._8a{width:151.386667pt;}
._74{width:157.210667pt;}
._79{width:161.317333pt;}
._98{width:162.472000pt;}
._96{width:170.090667pt;}
._a1{width:173.898667pt;}
._80{width:177.669333pt;}
._65{width:179.712000pt;}
._89{width:181.440000pt;}
._6c{width:183.253333pt;}
._54{width:184.533333pt;}
._56{width:185.733333pt;}
._2c{width:189.184000pt;}
._c{width:191.232000pt;}
._99{width:192.277333pt;}
._59{width:193.920000pt;}
._f{width:198.314667pt;}
._93{width:203.114667pt;}
._8f{width:204.581333pt;}
._82{width:207.386667pt;}
._92{width:211.232000pt;}
._90{width:214.938667pt;}
._67{width:216.834667pt;}
._7d{width:218.773333pt;}
._58{width:221.272000pt;}
._46{width:222.336000pt;}
._55{width:223.232000pt;}
._19{width:225.536000pt;}
._14{width:227.114667pt;}
._87{width:228.106667pt;}
._78{width:230.197333pt;}
._51{width:232.024000pt;}
._b4{width:233.813333pt;}
._ae{width:235.648000pt;}
._3e{width:241.322667pt;}
._9{width:247.594667pt;}
._77{width:249.386667pt;}
._11{width:251.989333pt;}
._17{width:253.184000pt;}
._76{width:259.242667pt;}
._b3{width:261.248000pt;}
._4b{width:264.490667pt;}
._b7{width:269.909333pt;}
._4c{width:275.760000pt;}
._b2{width:281.045333pt;}
._6a{width:282.709333pt;}
._b5{width:288.554667pt;}
._25{width:293.418667pt;}
._5c{width:295.893333pt;}
._ad{width:302.296000pt;}
._2e{width:309.466667pt;}
._af{width:311.253333pt;}
._b6{width:312.618667pt;}
._30{width:314.458667pt;}
._31{width:317.184000pt;}
._50{width:327.509333pt;}
._61{width:332.629333pt;}
._b0{width:333.952000pt;}
._5d{width:342.954667pt;}
._b1{width:345.386667pt;}
._64{width:353.962667pt;}
._26{width:356.309333pt;}
._45{width:359.594667pt;}
._13{width:363.050667pt;}
._5f{width:367.530667pt;}
._52{width:368.640000pt;}
._1e{width:370.218667pt;}
._53{width:372.778667pt;}
._a9{width:389.376000pt;}
._5a{width:393.642667pt;}
._28{width:397.482667pt;}
._69{width:399.530667pt;}
._57{width:408.666667pt;}
._4a{width:415.573333pt;}
._21{width:423.466667pt;}
._32{width:424.704000pt;}
._1c{width:427.098667pt;}
._aa{width:430.773333pt;}
._5e{width:438.656000pt;}
._5b{width:446.208000pt;}
._68{width:449.845333pt;}
._41{width:454.698667pt;}
._2b{width:455.808000pt;}
._e{width:465.365333pt;}
._2f{width:471.040000pt;}
._20{width:474.794667pt;}
._4f{width:477.056000pt;}
._4e{width:478.933333pt;}
._66{width:480.650667pt;}
._60{width:483.797333pt;}
._40{width:493.738667pt;}
._3a{width:499.381333pt;}
._d{width:500.821333pt;}
._63{width:504.320000pt;}
._42{width:508.288000pt;}
._29{width:510.421333pt;}
._62{width:516.528000pt;}
._10{width:518.314667pt;}
._43{width:535.296000pt;}
._12{width:543.488000pt;}
._1d{width:545.877333pt;}
._2d{width:547.930667pt;}
._39{width:550.314667pt;}
._18{width:554.282667pt;}
._35{width:560.128000pt;}
._15{width:562.474667pt;}
._2a{width:563.370667pt;}
._44{width:564.864000pt;}
._38{width:571.653333pt;}
._16{width:581.162667pt;}
._34{width:584.704000pt;}
._33{width:590.933333pt;}
._8{width:701.141333pt;}
._3f{width:1193.008000pt;}
._37{width:1209.941333pt;}
._b{width:1211.520000pt;}
._36{width:1217.066667pt;}
._23{width:1219.413333pt;}
._1b{width:1228.842667pt;}
._22{width:1243.178667pt;}
._3d{width:1262.938667pt;}
._1f{width:1268.869333pt;}
._1a{width:1283.456000pt;}
._24{width:1288.192000pt;}
._3c{width:1299.381333pt;}
._3b{width:1366.064000pt;}
.fs6{font-size:23.320000pt;}
.fs5{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y30{bottom:42.468667pt;}
.y119{bottom:73.620000pt;}
.yb7{bottom:73.819467pt;}
.y1e4{bottom:73.886133pt;}
.y140{bottom:73.903467pt;}
.y1c5{bottom:74.342533pt;}
.y151{bottom:74.753867pt;}
.yba{bottom:75.131867pt;}
.y143{bottom:75.320800pt;}
.y13c{bottom:75.648133pt;}
.y114{bottom:76.721867pt;}
.ye0{bottom:76.729200pt;}
.y2d{bottom:78.246000pt;}
.y198{bottom:82.464533pt;}
.y1b3{bottom:83.021467pt;}
.y9e{bottom:83.175333pt;}
.y68{bottom:83.515200pt;}
.y225{bottom:84.678667pt;}
.y1e3{bottom:87.219467pt;}
.y118{bottom:87.614667pt;}
.y13f{bottom:87.898133pt;}
.y150{bottom:88.748533pt;}
.yb9{bottom:89.126533pt;}
.y142{bottom:89.315467pt;}
.y1c4{bottom:90.342533pt;}
.y2c{bottom:91.576000pt;}
.y113{bottom:92.721867pt;}
.ydf{bottom:92.729200pt;}
.y169{bottom:92.742533pt;}
.y1b2{bottom:97.464133pt;}
.y9d{bottom:97.618000pt;}
.y67{bottom:97.957867pt;}
.y224{bottom:98.012000pt;}
.y13b{bottom:98.094800pt;}
.y197{bottom:98.464533pt;}
.y1e2{bottom:100.552800pt;}
.y1c3{bottom:106.342533pt;}
.y14f{bottom:108.721867pt;}
.yde{bottom:108.729200pt;}
.y112{bottom:108.742533pt;}
.y13a{bottom:111.199067pt;}
.y223{bottom:111.345333pt;}
.y1b1{bottom:111.906800pt;}
.y66{bottom:112.400533pt;}
.y1e1{bottom:113.886133pt;}
.y1c2{bottom:122.342533pt;}
.y9c{bottom:123.399333pt;}
.y139{bottom:124.312400pt;}
.y222{bottom:124.678667pt;}
.ydd{bottom:124.729200pt;}
.y111{bottom:124.742533pt;}
.y1b0{bottom:126.349467pt;}
.y65{bottom:126.843200pt;}
.y1e0{bottom:127.219467pt;}
.y196{bottom:130.104533pt;}
.y138{bottom:137.425733pt;}
.y9b{bottom:137.842000pt;}
.y221{bottom:138.012000pt;}
.y1c1{bottom:138.342533pt;}
.y1df{bottom:140.552800pt;}
.ydc{bottom:140.729200pt;}
.y110{bottom:140.742533pt;}
.y1af{bottom:140.792133pt;}
.y64{bottom:141.285867pt;}
.y29{bottom:141.927200pt;}
.y137{bottom:150.539067pt;}
.y220{bottom:151.345333pt;}
.y9a{bottom:152.284667pt;}
.y1de{bottom:153.886133pt;}
.y1c0{bottom:154.342533pt;}
.y1ae{bottom:155.234800pt;}
.y63{bottom:155.728533pt;}
.ydb{bottom:156.729200pt;}
.y10f{bottom:156.742533pt;}
.y28{bottom:157.927200pt;}
.y136{bottom:163.652400pt;}
.y21f{bottom:164.678667pt;}
.y99{bottom:166.727333pt;}
.y1dd{bottom:167.219467pt;}
.y1ad{bottom:169.677467pt;}
.y62{bottom:170.171200pt;}
.y1bf{bottom:170.342533pt;}
.yda{bottom:172.729200pt;}
.y10e{bottom:172.742533pt;}
.y27{bottom:173.927200pt;}
.y135{bottom:176.765733pt;}
.y21e{bottom:178.012000pt;}
.y195{bottom:178.138000pt;}
.y1dc{bottom:180.552800pt;}
.y98{bottom:181.170000pt;}
.y1ac{bottom:184.120133pt;}
.y61{bottom:184.613867pt;}
.y1be{bottom:186.342533pt;}
.yd9{bottom:188.729200pt;}
.y10d{bottom:188.742533pt;}
.y134{bottom:189.879067pt;}
.y26{bottom:189.927200pt;}
.y21d{bottom:191.345333pt;}
.y194{bottom:191.471333pt;}
.y1db{bottom:193.886133pt;}
.y1ab{bottom:198.562800pt;}
.y60{bottom:199.056533pt;}
.y1bd{bottom:202.342533pt;}
.y133{bottom:202.992400pt;}
.y21c{bottom:204.678667pt;}
.yd8{bottom:204.729200pt;}
.y10c{bottom:204.742533pt;}
.y193{bottom:204.804667pt;}
.y25{bottom:205.927200pt;}
.y97{bottom:206.951333pt;}
.y1da{bottom:207.219467pt;}
.y1aa{bottom:213.005467pt;}
.y5f{bottom:213.499200pt;}
.y132{bottom:216.105733pt;}
.y21b{bottom:218.012000pt;}
.y192{bottom:218.138000pt;}
.y1bc{bottom:218.342533pt;}
.y1d9{bottom:220.552800pt;}
.yd7{bottom:220.729200pt;}
.y10b{bottom:220.742533pt;}
.y96{bottom:221.394000pt;}
.y24{bottom:221.927200pt;}
.y1a9{bottom:227.448133pt;}
.y5e{bottom:227.941867pt;}
.y131{bottom:229.219067pt;}
.y21a{bottom:231.345333pt;}
.y191{bottom:231.471333pt;}
.y1d8{bottom:233.886133pt;}
.y1bb{bottom:234.342533pt;}
.yd6{bottom:236.729200pt;}
.y10a{bottom:236.742533pt;}
.y23{bottom:237.927200pt;}
.y1a8{bottom:241.890800pt;}
.y130{bottom:242.332400pt;}
.y5d{bottom:242.384533pt;}
.y219{bottom:244.678667pt;}
.y190{bottom:244.804667pt;}
.y95{bottom:247.175333pt;}
.y1d7{bottom:247.219467pt;}
.y1ba{bottom:250.342533pt;}
.yd5{bottom:252.729200pt;}
.y109{bottom:252.742533pt;}
.y22{bottom:253.927200pt;}
.y12f{bottom:255.445733pt;}
.y1a7{bottom:256.333467pt;}
.y5c{bottom:256.827200pt;}
.y218{bottom:258.012000pt;}
.y18f{bottom:258.138000pt;}
.y1d6{bottom:260.552800pt;}
.y94{bottom:261.618000pt;}
.y12e{bottom:268.559067pt;}
.yd4{bottom:268.729200pt;}
.y108{bottom:268.742533pt;}
.y21{bottom:269.927200pt;}
.y5b{bottom:271.269867pt;}
.y217{bottom:271.345333pt;}
.y18e{bottom:271.471333pt;}
.y1d5{bottom:273.886133pt;}
.y93{bottom:276.060667pt;}
.y12d{bottom:281.672400pt;}
.y1b9{bottom:281.982533pt;}
.y1a6{bottom:282.114800pt;}
.y216{bottom:284.678667pt;}
.yd3{bottom:284.729200pt;}
.y107{bottom:284.742533pt;}
.y18d{bottom:284.804667pt;}
.y5a{bottom:285.712533pt;}
.y20{bottom:285.927200pt;}
.y1d4{bottom:287.219467pt;}
.y92{bottom:290.503333pt;}
.y215{bottom:298.012000pt;}
.y18c{bottom:298.138000pt;}
.y59{bottom:300.155200pt;}
.y1d3{bottom:300.552800pt;}
.yd2{bottom:300.729200pt;}
.y106{bottom:300.742533pt;}
.y1f{bottom:301.927200pt;}
.y91{bottom:304.946000pt;}
.y1a5{bottom:307.896133pt;}
.y12c{bottom:309.019067pt;}
.y214{bottom:311.345333pt;}
.y18b{bottom:311.471333pt;}
.y1d2{bottom:313.886133pt;}
.y58{bottom:314.597867pt;}
.yd1{bottom:316.729200pt;}
.y105{bottom:316.742533pt;}
.y1e{bottom:317.927200pt;}
.y90{bottom:319.388667pt;}
.y213{bottom:324.678667pt;}
.y18a{bottom:324.804667pt;}
.y1d1{bottom:327.219467pt;}
.y56{bottom:329.040533pt;}
.y1b8{bottom:330.462533pt;}
.yd0{bottom:332.729200pt;}
.y104{bottom:332.742533pt;}
.y8f{bottom:333.831333pt;}
.y1d{bottom:333.927200pt;}
.y1a4{bottom:336.689200pt;}
.y212{bottom:338.012000pt;}
.y189{bottom:338.138000pt;}
.y1d0{bottom:340.552800pt;}
.y57{bottom:343.707200pt;}
.y55{bottom:343.809333pt;}
.y1b7{bottom:346.462533pt;}
.y8e{bottom:348.274000pt;}
.ycf{bottom:348.729200pt;}
.y103{bottom:348.742533pt;}
.y1c{bottom:349.927200pt;}
.y211{bottom:351.345333pt;}
.y188{bottom:351.471333pt;}
.y1cf{bottom:353.886133pt;}
.y1a3{bottom:354.022533pt;}
.y12b{bottom:355.913333pt;}
.y54{bottom:358.252000pt;}
.y1b6{bottom:362.462533pt;}
.y8d{bottom:362.716667pt;}
.y210{bottom:364.678667pt;}
.yce{bottom:364.729200pt;}
.y102{bottom:364.742533pt;}
.y187{bottom:364.804667pt;}
.y1b{bottom:365.927200pt;}
.y1ce{bottom:367.219467pt;}
.y12a{bottom:369.026667pt;}
.y53{bottom:372.694667pt;}
.y20f{bottom:378.012000pt;}
.y186{bottom:378.138000pt;}
.y1b5{bottom:378.462533pt;}
.y1cd{bottom:380.552800pt;}
.ycd{bottom:380.729200pt;}
.y101{bottom:380.742533pt;}
.y1a{bottom:381.927200pt;}
.y129{bottom:382.140000pt;}
.y52{bottom:387.137333pt;}
.y8c{bottom:388.498000pt;}
.y20e{bottom:391.345333pt;}
.y185{bottom:391.471333pt;}
.y1a2{bottom:394.462533pt;}
.y128{bottom:395.253333pt;}
.ycc{bottom:396.729200pt;}
.y100{bottom:396.742533pt;}
.y2b{bottom:397.927200pt;}
.y51{bottom:401.580000pt;}
.y8b{bottom:402.940667pt;}
.y20d{bottom:404.678667pt;}
.y184{bottom:404.804667pt;}
.y127{bottom:408.366667pt;}
.y1cc{bottom:409.982533pt;}
.y1a1{bottom:410.462533pt;}
.ycb{bottom:412.729200pt;}
.yff{bottom:412.742533pt;}
.y19{bottom:413.569067pt;}
.y2a{bottom:413.927200pt;}
.y50{bottom:416.022667pt;}
.y8a{bottom:417.383333pt;}
.y20c{bottom:418.012000pt;}
.y183{bottom:418.138000pt;}
.y126{bottom:421.480000pt;}
.y1a0{bottom:426.462533pt;}
.yca{bottom:428.729200pt;}
.yfe{bottom:428.742533pt;}
.y4f{bottom:430.465333pt;}
.y20b{bottom:431.345333pt;}
.y182{bottom:431.471333pt;}
.y89{bottom:431.826000pt;}
.y125{bottom:434.593333pt;}
.y19f{bottom:442.462533pt;}
.y20a{bottom:444.678667pt;}
.yc9{bottom:444.729200pt;}
.yfd{bottom:444.742533pt;}
.y181{bottom:444.804667pt;}
.y4e{bottom:444.908000pt;}
.y88{bottom:446.268667pt;}
.y124{bottom:447.706667pt;}
.y209{bottom:458.012000pt;}
.y180{bottom:458.138000pt;}
.y19e{bottom:458.462533pt;}
.y4d{bottom:459.574667pt;}
.yc8{bottom:460.729200pt;}
.yfc{bottom:460.742533pt;}
.y123{bottom:460.820000pt;}
.y208{bottom:471.345333pt;}
.y17f{bottom:471.471333pt;}
.y122{bottom:473.933333pt;}
.y4c{bottom:474.017333pt;}
.y1cb{bottom:474.102533pt;}
.y87{bottom:474.279333pt;}
.y19d{bottom:474.462533pt;}
.yc7{bottom:476.729200pt;}
.yfb{bottom:476.742533pt;}
.y18{bottom:478.364667pt;}
.y207{bottom:484.678667pt;}
.y17e{bottom:484.804667pt;}
.y121{bottom:487.046667pt;}
.y4b{bottom:488.460000pt;}
.y19c{bottom:490.462533pt;}
.yc6{bottom:492.729200pt;}
.yfa{bottom:492.742533pt;}
.y206{bottom:498.012000pt;}
.y17d{bottom:498.138000pt;}
.y120{bottom:500.160000pt;}
.y17{bottom:502.671333pt;}
.y4a{bottom:502.902667pt;}
.y86{bottom:505.302533pt;}
.y1ca{bottom:506.102533pt;}
.y19b{bottom:506.462533pt;}
.y174{bottom:506.595867pt;}
.yc5{bottom:508.729200pt;}
.yf9{bottom:508.742533pt;}
.y205{bottom:511.345333pt;}
.y17c{bottom:511.471333pt;}
.y11f{bottom:513.273333pt;}
.y49{bottom:517.345333pt;}
.y16{bottom:518.671333pt;}
.y173{bottom:522.235867pt;}
.y19a{bottom:522.462533pt;}
.y159{bottom:522.595867pt;}
.y204{bottom:524.678667pt;}
.yc4{bottom:524.729200pt;}
.yf8{bottom:524.742533pt;}
.y17b{bottom:524.804667pt;}
.yb6{bottom:524.849200pt;}
.y11e{bottom:526.386667pt;}
.y48{bottom:531.788000pt;}
.y15{bottom:534.671333pt;}
.y203{bottom:538.012000pt;}
.y158{bottom:538.235867pt;}
.y199{bottom:538.462533pt;}
.y11d{bottom:539.500000pt;}
.yc3{bottom:540.729200pt;}
.yf7{bottom:540.742533pt;}
.yb5{bottom:540.849200pt;}
.y47{bottom:546.230667pt;}
.y14{bottom:550.671333pt;}
.y202{bottom:551.345333pt;}
.y7b{bottom:554.342533pt;}
.y85{bottom:554.462533pt;}
.y146{bottom:554.595867pt;}
.y17a{bottom:554.609200pt;}
.yc2{bottom:556.729200pt;}
.yf6{bottom:556.742533pt;}
.yb4{bottom:556.849200pt;}
.y46{bottom:560.673333pt;}
.y201{bottom:564.678667pt;}
.y13{bottom:566.671333pt;}
.y11c{bottom:566.846667pt;}
.y145{bottom:570.235867pt;}
.y179{bottom:570.249200pt;}
.y7a{bottom:570.342533pt;}
.y84{bottom:570.462533pt;}
.yc1{bottom:572.729200pt;}
.yf5{bottom:572.742533pt;}
.yb3{bottom:572.849200pt;}
.y45{bottom:575.116000pt;}
.y200{bottom:578.012000pt;}
.y12{bottom:582.671333pt;}
.y178{bottom:586.249200pt;}
.y79{bottom:586.342533pt;}
.y83{bottom:586.462533pt;}
.yc0{bottom:588.729200pt;}
.yf4{bottom:588.742533pt;}
.yb2{bottom:588.849200pt;}
.y44{bottom:589.558667pt;}
.y1ff{bottom:591.345333pt;}
.y11b{bottom:597.422533pt;}
.y11{bottom:598.671333pt;}
.y1c9{bottom:602.102533pt;}
.y78{bottom:602.342533pt;}
.y82{bottom:602.462533pt;}
.y43{bottom:604.001333pt;}
.y1fe{bottom:604.678667pt;}
.ybf{bottom:604.729200pt;}
.yf3{bottom:604.742533pt;}
.yb1{bottom:604.849200pt;}
.y10{bottom:614.671333pt;}
.y1fd{bottom:618.012000pt;}
.y77{bottom:618.342533pt;}
.y42{bottom:618.444000pt;}
.y81{bottom:618.462533pt;}
.y177{bottom:618.475867pt;}
.y15d{bottom:618.609200pt;}
.ybe{bottom:620.729200pt;}
.yf2{bottom:620.742533pt;}
.yb0{bottom:620.849200pt;}
.yf{bottom:630.671333pt;}
.y1fc{bottom:631.345333pt;}
.y41{bottom:632.886667pt;}
.y15c{bottom:634.249200pt;}
.y76{bottom:634.342533pt;}
.y80{bottom:634.462533pt;}
.y176{bottom:634.475867pt;}
.yf1{bottom:636.742533pt;}
.yaf{bottom:636.849200pt;}
.y1fb{bottom:644.678667pt;}
.y40{bottom:647.329333pt;}
.y1c8{bottom:650.102533pt;}
.y15b{bottom:650.249200pt;}
.y7f{bottom:650.462533pt;}
.y175{bottom:650.475867pt;}
.ybd{bottom:650.595867pt;}
.y14e{bottom:650.609200pt;}
.yf0{bottom:652.742533pt;}
.yae{bottom:652.849200pt;}
.y1fa{bottom:658.012000pt;}
.ye{bottom:660.124533pt;}
.y3f{bottom:661.772000pt;}
.y75{bottom:665.982533pt;}
.ybc{bottom:666.235867pt;}
.y14d{bottom:666.249200pt;}
.y7e{bottom:666.462533pt;}
.y168{bottom:666.475867pt;}
.yef{bottom:668.742533pt;}
.yad{bottom:668.849200pt;}
.y1f9{bottom:671.345333pt;}
.y3e{bottom:676.214667pt;}
.y7d{bottom:682.462533pt;}
.y15a{bottom:682.475867pt;}
.yd{bottom:684.238400pt;}
.y1f8{bottom:684.678667pt;}
.yee{bottom:684.742533pt;}
.yac{bottom:684.849200pt;}
.y3d{bottom:690.657333pt;}
.yc{bottom:694.638400pt;}
.y1f7{bottom:698.012000pt;}
.y7c{bottom:698.462533pt;}
.y14c{bottom:698.475867pt;}
.yed{bottom:700.742533pt;}
.yab{bottom:700.849200pt;}
.y3c{bottom:705.100000pt;}
.y1f6{bottom:711.345333pt;}
.y74{bottom:714.462533pt;}
.y14b{bottom:714.475867pt;}
.yec{bottom:716.742533pt;}
.yaa{bottom:716.849200pt;}
.y3b{bottom:719.542667pt;}
.yb{bottom:722.829867pt;}
.y1f5{bottom:724.678667pt;}
.y73{bottom:730.462533pt;}
.y14a{bottom:730.475867pt;}
.ya9{bottom:732.849200pt;}
.y3a{bottom:733.985333pt;}
.y1f4{bottom:738.012000pt;}
.ya{bottom:739.652400pt;}
.y1c7{bottom:746.102533pt;}
.y72{bottom:746.462533pt;}
.y149{bottom:746.475867pt;}
.yeb{bottom:746.609200pt;}
.y9{bottom:746.829867pt;}
.y39{bottom:748.428000pt;}
.ya8{bottom:748.849200pt;}
.y1f3{bottom:751.345333pt;}
.yea{bottom:762.249200pt;}
.y71{bottom:762.462533pt;}
.y148{bottom:762.475867pt;}
.y38{bottom:762.870667pt;}
.y8{bottom:763.652400pt;}
.y1f2{bottom:764.678667pt;}
.ya7{bottom:764.849200pt;}
.y37{bottom:777.313333pt;}
.y1f1{bottom:778.012000pt;}
.y70{bottom:778.462533pt;}
.y147{bottom:778.475867pt;}
.ya6{bottom:780.849200pt;}
.y7{bottom:789.183067pt;}
.y1f0{bottom:791.345333pt;}
.y6f{bottom:794.462533pt;}
.ye9{bottom:794.475867pt;}
.ya5{bottom:796.849200pt;}
.y1ef{bottom:804.678667pt;}
.y36{bottom:805.324000pt;}
.y6e{bottom:810.462533pt;}
.ye8{bottom:810.475867pt;}
.y1ee{bottom:818.012000pt;}
.y6d{bottom:826.462533pt;}
.ye7{bottom:826.475867pt;}
.ya4{bottom:826.715867pt;}
.y155{bottom:828.729200pt;}
.y6{bottom:830.226133pt;}
.y1ed{bottom:831.345333pt;}
.y35{bottom:836.342533pt;}
.ya3{bottom:842.355867pt;}
.y6c{bottom:842.462533pt;}
.y172{bottom:842.464533pt;}
.y167{bottom:842.467733pt;}
.ye6{bottom:842.475867pt;}
.y117{bottom:844.595867pt;}
.y16d{bottom:844.597867pt;}
.y162{bottom:844.601067pt;}
.y1ec{bottom:844.678667pt;}
.y34{bottom:853.675867pt;}
.y1eb{bottom:858.012000pt;}
.y6b{bottom:858.462533pt;}
.y171{bottom:858.464533pt;}
.y166{bottom:858.467733pt;}
.ye5{bottom:858.475867pt;}
.y154{bottom:858.595867pt;}
.y116{bottom:860.595867pt;}
.y16c{bottom:860.597867pt;}
.y161{bottom:860.601067pt;}
.y5{bottom:862.635733pt;}
.y1ea{bottom:871.345333pt;}
.ya2{bottom:874.222533pt;}
.y153{bottom:874.235867pt;}
.y6a{bottom:874.462533pt;}
.y170{bottom:874.464533pt;}
.y165{bottom:874.467733pt;}
.ye4{bottom:874.475867pt;}
.y13e{bottom:876.595867pt;}
.y16b{bottom:876.597867pt;}
.y160{bottom:876.601067pt;}
.y1e9{bottom:884.678667pt;}
.y1c6{bottom:890.102533pt;}
.ya1{bottom:890.222533pt;}
.y152{bottom:890.235867pt;}
.y33{bottom:890.462533pt;}
.y16f{bottom:890.464533pt;}
.y164{bottom:890.467733pt;}
.ye3{bottom:890.475867pt;}
.y4{bottom:895.045333pt;}
.y1e8{bottom:898.012000pt;}
.y115{bottom:906.102533pt;}
.y32{bottom:906.462533pt;}
.y16a{bottom:906.464533pt;}
.y15f{bottom:906.467733pt;}
.ye2{bottom:906.475867pt;}
.y1e7{bottom:911.345333pt;}
.ya0{bottom:922.102533pt;}
.y15e{bottom:922.107733pt;}
.y31{bottom:922.462533pt;}
.y16e{bottom:922.464533pt;}
.y163{bottom:922.467733pt;}
.ye1{bottom:922.475867pt;}
.y1e6{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.641467pt;}
.y1e5{bottom:1006.590133pt;}
.y13d{bottom:1006.592133pt;}
.ybb{bottom:1006.594400pt;}
.y144{bottom:1006.595467pt;}
.y141{bottom:1006.596800pt;}
.y156{bottom:1006.597067pt;}
.yb8{bottom:1006.598133pt;}
.y226{bottom:1006.598667pt;}
.y11a{bottom:1006.601333pt;}
.y157{bottom:1006.604533pt;}
.y1b4{bottom:1006.648133pt;}
.y69{bottom:1006.651200pt;}
.y9f{bottom:1006.674000pt;}
.y2f{bottom:1009.860000pt;}
.y2e{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.255208pt;}
.h17{height:25.940104pt;}
.h18{height:25.976371pt;}
.h2{height:27.197917pt;}
.h4{height:29.121094pt;}
.h10{height:29.140625pt;}
.h8{height:29.160156pt;}
.h15{height:29.625000pt;}
.h14{height:29.645833pt;}
.ha{height:31.062500pt;}
.h12{height:31.083333pt;}
.h11{height:31.104167pt;}
.h13{height:37.031250pt;}
.hf{height:37.057292pt;}
.he{height:38.828125pt;}
.hb{height:38.854167pt;}
.hd{height:38.859942pt;}
.hc{height:38.880208pt;}
.h16{height:39.200000pt;}
.h3{height:50.476562pt;}
.h6{height:50.774503pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:62.740133pt;}
.xa{left:68.031467pt;}
.xc{left:69.921200pt;}
.x20{left:80.071467pt;}
.x32{left:83.191467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x17{left:88.818933pt;}
.x39{left:90.708667pt;}
.x2d{left:92.298133pt;}
.x3{left:94.488133pt;}
.x1a{left:98.271467pt;}
.x29{left:101.938133pt;}
.x2b{left:104.871467pt;}
.x3b{left:109.606267pt;}
.x4{left:111.491467pt;}
.x6{left:117.165333pt;}
.x26{left:145.511867pt;}
.x14{left:147.542533pt;}
.x34{left:161.231467pt;}
.x2e{left:172.004800pt;}
.x21{left:175.351467pt;}
.x37{left:187.942533pt;}
.x5{left:189.223467pt;}
.x36{left:196.779867pt;}
.x18{left:275.794933pt;}
.xd{left:277.803867pt;}
.xf{left:289.163867pt;}
.x9{left:404.481333pt;}
.xb{left:406.298133pt;}
.x22{left:409.098133pt;}
.x33{left:415.578133pt;}
.x15{left:425.195867pt;}
.x7{left:427.085333pt;}
.x3a{left:429.002000pt;}
.x1f{left:436.524800pt;}
.x2a{left:443.924800pt;}
.x1c{left:447.618133pt;}
.x10{left:453.622533pt;}
.x16{left:455.435867pt;}
.x30{left:458.524800pt;}
.xe{left:469.313200pt;}
.x24{left:470.569200pt;}
.x1d{left:493.911467pt;}
.x23{left:495.755867pt;}
.x2f{left:499.271467pt;}
.x31{left:510.564800pt;}
.x1e{left:513.604800pt;}
.x35{left:515.047733pt;}
.x1b{left:525.911467pt;}
.x38{left:529.902533pt;}
.x25{left:532.515867pt;}
.x11{left:542.360533pt;}
.x13{left:589.770933pt;}
.x2{left:616.324800pt;}
.x27{left:641.532667pt;}
.x12{left:647.459200pt;}
.x28{left:661.222533pt;}
.x19{left:666.450933pt;}
}




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