
    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_b97b6dbda5b83004254ffaba.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_893d1aecc955f595cec8cab7.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_935965df3c510ed0c7a338f4.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_a6e48373e13f01d64c02ba57.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bc509fd4b3db5d9b480f12da.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6d499658d6e2d965e6fcde85.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_09311d65df61d80a98b71084.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f94951b2fac94f811c1ba090.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_28e7dd77a574d6c3c61ceb00.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2b6c925a10e83c02bec7212d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-65.610000px;}
.v7{vertical-align:-39.150000px;}
.v2{vertical-align:-15.442800px;}
.v8{vertical-align:-1.710000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.620000px;}
.v6{vertical-align:20.430000px;}
.v1{vertical-align:21.619200px;}
.v5{vertical-align:35.730000px;}
.v3{vertical-align:59.490000px;}
.ls56{letter-spacing:-3.840000px;}
.ls3f{letter-spacing:-1.776000px;}
.ls18{letter-spacing:-0.780000px;}
.ls8a{letter-spacing:-0.432000px;}
.ls3d{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.300000px;}
.ls88{letter-spacing:-0.240000px;}
.ls3e{letter-spacing:-0.180000px;}
.ls85{letter-spacing:-0.144000px;}
.ls44{letter-spacing:-0.120000px;}
.ls28{letter-spacing:-0.060000px;}
.ls29{letter-spacing:-0.048000px;}
.ls17{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004200px;}
.ls72{letter-spacing:0.048000px;}
.ls14{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.120000px;}
.ls4f{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls82{letter-spacing:0.192000px;}
.ls3{letter-spacing:0.240000px;}
.ls6a{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls67{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.420000px;}
.ls71{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.540000px;}
.ls7a{letter-spacing:0.576000px;}
.ls25{letter-spacing:0.600000px;}
.ls6d{letter-spacing:0.624000px;}
.ls7{letter-spacing:0.660000px;}
.ls41{letter-spacing:0.672000px;}
.ls1e{letter-spacing:0.720000px;}
.ls37{letter-spacing:0.768000px;}
.ls15{letter-spacing:0.780000px;}
.ls23{letter-spacing:0.840000px;}
.ls45{letter-spacing:0.900000px;}
.ls8{letter-spacing:0.960000px;}
.ls3b{letter-spacing:1.020000px;}
.ls63{letter-spacing:1.056000px;}
.ls32{letter-spacing:1.080000px;}
.ls65{letter-spacing:1.104000px;}
.lsb{letter-spacing:1.140000px;}
.ls69{letter-spacing:1.152000px;}
.ls1f{letter-spacing:1.200000px;}
.ls86{letter-spacing:1.248000px;}
.ls3c{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.320000px;}
.ls89{letter-spacing:1.344000px;}
.ls2{letter-spacing:1.380000px;}
.ls77{letter-spacing:1.392000px;}
.ls42{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.500000px;}
.ls2b{letter-spacing:1.560000px;}
.ls6b{letter-spacing:1.584000px;}
.lsd{letter-spacing:1.620000px;}
.ls48{letter-spacing:1.680000px;}
.ls79{letter-spacing:1.728000px;}
.lse{letter-spacing:1.740000px;}
.ls73{letter-spacing:1.776000px;}
.ls6{letter-spacing:1.800000px;}
.ls31{letter-spacing:1.860000px;}
.ls87{letter-spacing:1.872000px;}
.ls13{letter-spacing:1.920000px;}
.ls57{letter-spacing:1.980000px;}
.ls7b{letter-spacing:2.016000px;}
.ls11{letter-spacing:2.040000px;}
.ls7e{letter-spacing:2.064000px;}
.ls34{letter-spacing:2.100000px;}
.ls58{letter-spacing:2.160000px;}
.ls7f{letter-spacing:2.208000px;}
.lsc{letter-spacing:2.220000px;}
.ls43{letter-spacing:2.280000px;}
.ls62{letter-spacing:2.304000px;}
.ls2f{letter-spacing:2.340000px;}
.ls39{letter-spacing:2.400000px;}
.ls36{letter-spacing:2.460000px;}
.ls81{letter-spacing:2.496000px;}
.ls1d{letter-spacing:2.580000px;}
.ls74{letter-spacing:2.592000px;}
.ls6c{letter-spacing:2.640000px;}
.ls2c{letter-spacing:2.700000px;}
.ls83{letter-spacing:2.736000px;}
.lsf{letter-spacing:2.760000px;}
.ls6f{letter-spacing:2.784000px;}
.ls26{letter-spacing:2.820000px;}
.ls64{letter-spacing:2.832000px;}
.ls1c{letter-spacing:2.880000px;}
.ls70{letter-spacing:2.928000px;}
.ls19{letter-spacing:2.940000px;}
.ls80{letter-spacing:2.976000px;}
.ls33{letter-spacing:3.000000px;}
.ls8b{letter-spacing:3.024000px;}
.ls59{letter-spacing:3.060000px;}
.ls4c{letter-spacing:3.120000px;}
.ls68{letter-spacing:3.168000px;}
.ls5b{letter-spacing:3.180000px;}
.ls49{letter-spacing:3.300000px;}
.ls78{letter-spacing:3.312000px;}
.ls46{letter-spacing:3.360000px;}
.ls22{letter-spacing:3.420000px;}
.ls75{letter-spacing:3.456000px;}
.ls4a{letter-spacing:3.540000px;}
.ls38{letter-spacing:3.600000px;}
.ls4b{letter-spacing:3.660000px;}
.ls5a{letter-spacing:3.780000px;}
.ls35{letter-spacing:3.900000px;}
.ls5d{letter-spacing:4.020000px;}
.ls7c{letter-spacing:4.176000px;}
.ls4d{letter-spacing:4.260000px;}
.ls47{letter-spacing:4.320000px;}
.ls7d{letter-spacing:4.368000px;}
.ls1a{letter-spacing:4.380000px;}
.ls1b{letter-spacing:4.440000px;}
.ls3a{letter-spacing:4.500000px;}
.ls84{letter-spacing:4.512000px;}
.ls6e{letter-spacing:4.560000px;}
.ls2d{letter-spacing:4.680000px;}
.ls21{letter-spacing:4.740000px;}
.ls20{letter-spacing:4.800000px;}
.ls66{letter-spacing:4.848000px;}
.ls40{letter-spacing:4.980000px;}
.ls76{letter-spacing:5.040000px;}
.ls61{letter-spacing:5.160000px;}
.ls5f{letter-spacing:5.880000px;}
.ls2a{letter-spacing:6.120000px;}
.ls5c{letter-spacing:6.360000px;}
.ls4e{letter-spacing:6.540000px;}
.ls60{letter-spacing:6.720000px;}
.ls30{letter-spacing:7.260000px;}
.ls5e{letter-spacing:7.680000px;}
.ls2e{letter-spacing:9.600000px;}
.ls52{letter-spacing:409.140000px;}
.ls51{letter-spacing:734.400000px;}
.ls50{letter-spacing:783.540000px;}
.ls54{letter-spacing:788.580000px;}
.ls55{letter-spacing:817.830000px;}
.ls53{letter-spacing:933.390000px;}
.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;}
.ws4d{word-spacing:-21.120000px;}
.ws88{word-spacing:-19.980000px;}
.ws2e{word-spacing:-19.800000px;}
.ws4e{word-spacing:-19.680000px;}
.ws2a{word-spacing:-19.440000px;}
.ws87{word-spacing:-18.600000px;}
.ws9b{word-spacing:-18.540000px;}
.ws9a{word-spacing:-18.300000px;}
.ws29{word-spacing:-17.940000px;}
.ws2b{word-spacing:-17.880000px;}
.wsb8{word-spacing:-17.700000px;}
.wsb6{word-spacing:-17.580000px;}
.ws89{word-spacing:-17.460000px;}
.wsb7{word-spacing:-17.280000px;}
.ws8a{word-spacing:-17.220000px;}
.wsb{word-spacing:-17.040000px;}
.wsc{word-spacing:-16.920000px;}
.ws4f{word-spacing:-16.860000px;}
.ws5{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws9{word-spacing:-16.620000px;}
.ws51{word-spacing:-16.560000px;}
.ws9c{word-spacing:-16.500000px;}
.wsb5{word-spacing:-16.380000px;}
.ws7{word-spacing:-16.320000px;}
.ws2d{word-spacing:-16.200000px;}
.ws64{word-spacing:-16.140000px;}
.wsa8{word-spacing:-16.020000px;}
.ws6{word-spacing:-15.960000px;}
.wsd{word-spacing:-15.780000px;}
.ws50{word-spacing:-15.600000px;}
.ws4{word-spacing:-15.540000px;}
.ws8{word-spacing:-15.420000px;}
.ws2f{word-spacing:-15.360000px;}
.ws30{word-spacing:-15.300000px;}
.ws2c{word-spacing:-15.180000px;}
.ws98{word-spacing:-15.120000px;}
.ws99{word-spacing:-15.060000px;}
.wsa{word-spacing:-15.000000px;}
.wsb9{word-spacing:-14.832000px;}
.ws65{word-spacing:-14.820000px;}
.wsd0{word-spacing:-14.784000px;}
.wsd6{word-spacing:-14.208000px;}
.wsd1{word-spacing:-13.920000px;}
.wsd2{word-spacing:-13.728000px;}
.wsd8{word-spacing:-13.680000px;}
.wsba{word-spacing:-13.584000px;}
.wse{word-spacing:-13.344000px;}
.wsd7{word-spacing:-12.720000px;}
.ws8b{word-spacing:-12.672000px;}
.wsd3{word-spacing:-12.624000px;}
.wsda{word-spacing:-12.576000px;}
.ws3{word-spacing:-12.510000px;}
.ws52{word-spacing:-12.480000px;}
.wsd5{word-spacing:-12.432000px;}
.wsd9{word-spacing:-12.336000px;}
.wsd4{word-spacing:-12.144000px;}
.ws31{word-spacing:-12.000000px;}
.ws32{word-spacing:-11.952000px;}
.ws1{word-spacing:-10.508400px;}
.ws53{word-spacing:-6.120000px;}
.wsc3{word-spacing:-5.880000px;}
.wse5{word-spacing:-5.040000px;}
.ws3e{word-spacing:-4.800000px;}
.ws42{word-spacing:-4.740000px;}
.ws57{word-spacing:-4.680000px;}
.ws81{word-spacing:-4.500000px;}
.ws3b{word-spacing:-4.440000px;}
.ws35{word-spacing:-4.380000px;}
.wsee{word-spacing:-4.368000px;}
.wsa2{word-spacing:-4.320000px;}
.wsed{word-spacing:-4.176000px;}
.ws5f{word-spacing:-3.900000px;}
.wsab{word-spacing:-3.660000px;}
.ws60{word-spacing:-3.600000px;}
.wsb3{word-spacing:-3.540000px;}
.ws44{word-spacing:-3.480000px;}
.wse4{word-spacing:-3.456000px;}
.ws59{word-spacing:-3.420000px;}
.wsa1{word-spacing:-3.360000px;}
.wse7{word-spacing:-3.312000px;}
.wsa5{word-spacing:-3.300000px;}
.wsaa{word-spacing:-3.180000px;}
.wscc{word-spacing:-3.168000px;}
.wsb0{word-spacing:-3.120000px;}
.wsb2{word-spacing:-3.060000px;}
.wsf4{word-spacing:-3.024000px;}
.ws5d{word-spacing:-3.000000px;}
.wsf2{word-spacing:-2.976000px;}
.ws34{word-spacing:-2.940000px;}
.ws10{word-spacing:-2.886000px;}
.ws3c{word-spacing:-2.880000px;}
.wsc9{word-spacing:-2.832000px;}
.ws48{word-spacing:-2.820000px;}
.wsdc{word-spacing:-2.784000px;}
.ws37{word-spacing:-2.760000px;}
.ws55{word-spacing:-2.700000px;}
.wsc2{word-spacing:-2.640000px;}
.wse8{word-spacing:-2.592000px;}
.ws3d{word-spacing:-2.580000px;}
.wsf3{word-spacing:-2.496000px;}
.ws93{word-spacing:-2.460000px;}
.ws7f{word-spacing:-2.400000px;}
.ws58{word-spacing:-2.340000px;}
.wsc7{word-spacing:-2.304000px;}
.ws94{word-spacing:-2.280000px;}
.wsf1{word-spacing:-2.256000px;}
.ws43{word-spacing:-2.220000px;}
.wsf0{word-spacing:-2.160000px;}
.ws5e{word-spacing:-2.100000px;}
.wsef{word-spacing:-2.064000px;}
.ws22{word-spacing:-2.040000px;}
.wsec{word-spacing:-2.016000px;}
.wsa6{word-spacing:-1.980000px;}
.ws25{word-spacing:-1.920000px;}
.wse3{word-spacing:-1.872000px;}
.ws17{word-spacing:-1.860000px;}
.ws27{word-spacing:-1.800000px;}
.wse1{word-spacing:-1.776000px;}
.wsbb{word-spacing:-1.740000px;}
.wse9{word-spacing:-1.728000px;}
.wsa3{word-spacing:-1.680000px;}
.ws1f{word-spacing:-1.620000px;}
.ws9d{word-spacing:-1.560000px;}
.ws23{word-spacing:-1.500000px;}
.ws92{word-spacing:-1.440000px;}
.wse6{word-spacing:-1.392000px;}
.ws49{word-spacing:-1.380000px;}
.wseb{word-spacing:-1.344000px;}
.ws1b{word-spacing:-1.320000px;}
.ws84{word-spacing:-1.260000px;}
.wse2{word-spacing:-1.248000px;}
.ws47{word-spacing:-1.200000px;}
.wscd{word-spacing:-1.152000px;}
.ws1d{word-spacing:-1.140000px;}
.wsca{word-spacing:-1.104000px;}
.ws5a{word-spacing:-1.080000px;}
.wsc8{word-spacing:-1.056000px;}
.ws1e{word-spacing:-1.020000px;}
.ws1a{word-spacing:-0.960000px;}
.ws45{word-spacing:-0.900000px;}
.ws80{word-spacing:-0.840000px;}
.ws41{word-spacing:-0.780000px;}
.ws63{word-spacing:-0.768000px;}
.ws19{word-spacing:-0.720000px;}
.ws97{word-spacing:-0.672000px;}
.ws54{word-spacing:-0.660000px;}
.wsdb{word-spacing:-0.624000px;}
.ws56{word-spacing:-0.600000px;}
.wsea{word-spacing:-0.576000px;}
.ws16{word-spacing:-0.540000px;}
.ws26{word-spacing:-0.480000px;}
.wsde{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.420000px;}
.ws21{word-spacing:-0.360000px;}
.wscb{word-spacing:-0.336000px;}
.ws12{word-spacing:-0.300000px;}
.wsce{word-spacing:-0.288000px;}
.ws61{word-spacing:-0.240000px;}
.wsf5{word-spacing:-0.192000px;}
.ws20{word-spacing:-0.180000px;}
.wsad{word-spacing:-0.144000px;}
.ws46{word-spacing:-0.120000px;}
.ws28{word-spacing:-0.060000px;}
.wse0{word-spacing:-0.048000px;}
.wsf{word-spacing:0.000000px;}
.ws4b{word-spacing:0.048000px;}
.ws3a{word-spacing:0.060000px;}
.ws95{word-spacing:0.120000px;}
.wsdf{word-spacing:0.144000px;}
.ws86{word-spacing:0.180000px;}
.ws4c{word-spacing:0.240000px;}
.ws36{word-spacing:0.300000px;}
.ws85{word-spacing:0.360000px;}
.wsa7{word-spacing:0.420000px;}
.wscf{word-spacing:0.432000px;}
.wsac{word-spacing:0.540000px;}
.ws8f{word-spacing:0.780000px;}
.wsb1{word-spacing:0.840000px;}
.wsbc{word-spacing:1.140000px;}
.wsbe{word-spacing:1.200000px;}
.ws13{word-spacing:1.380000px;}
.wsc6{word-spacing:1.500000px;}
.ws14{word-spacing:1.560000px;}
.ws8e{word-spacing:1.680000px;}
.wsbf{word-spacing:1.800000px;}
.wsa0{word-spacing:1.860000px;}
.ws9f{word-spacing:1.920000px;}
.wsae{word-spacing:1.968000px;}
.ws33{word-spacing:1.980000px;}
.wsa4{word-spacing:2.160000px;}
.ws24{word-spacing:2.220000px;}
.wsc1{word-spacing:2.340000px;}
.wsbd{word-spacing:2.400000px;}
.ws7e{word-spacing:2.580000px;}
.ws82{word-spacing:2.940000px;}
.ws4a{word-spacing:3.072000px;}
.ws83{word-spacing:3.120000px;}
.wsc0{word-spacing:3.240000px;}
.ws18{word-spacing:3.420000px;}
.ws9e{word-spacing:3.600000px;}
.wsa9{word-spacing:3.660000px;}
.ws5c{word-spacing:3.840000px;}
.ws3f{word-spacing:3.900000px;}
.ws96{word-spacing:3.936000px;}
.ws62{word-spacing:3.984000px;}
.wsaf{word-spacing:4.140000px;}
.wsb4{word-spacing:4.200000px;}
.wsdd{word-spacing:4.272000px;}
.ws39{word-spacing:4.320000px;}
.ws38{word-spacing:4.380000px;}
.ws8d{word-spacing:4.440000px;}
.ws91{word-spacing:4.500000px;}
.ws90{word-spacing:4.860000px;}
.ws15{word-spacing:4.920000px;}
.ws11{word-spacing:4.980000px;}
.ws40{word-spacing:5.280000px;}
.wsc5{word-spacing:5.460000px;}
.wsc4{word-spacing:5.520000px;}
.ws5b{word-spacing:6.180000px;}
.ws75{word-spacing:191.904000px;}
.ws74{word-spacing:203.904000px;}
.ws7a{word-spacing:223.920000px;}
.ws69{word-spacing:227.280000px;}
.ws76{word-spacing:237.936000px;}
.ws70{word-spacing:239.904000px;}
.ws6b{word-spacing:249.264000px;}
.ws7b{word-spacing:259.920000px;}
.ws7d{word-spacing:261.888000px;}
.ws6c{word-spacing:264.576000px;}
.ws68{word-spacing:267.408000px;}
.ws7c{word-spacing:295.248000px;}
.ws77{word-spacing:299.664000px;}
.ws79{word-spacing:305.904000px;}
.ws73{word-spacing:314.352000px;}
.ws6a{word-spacing:320.976000px;}
.ws6f{word-spacing:321.216000px;}
.ws66{word-spacing:344.592000px;}
.ws6e{word-spacing:379.200000px;}
.ws72{word-spacing:380.112000px;}
.ws71{word-spacing:394.944000px;}
.ws6d{word-spacing:409.632000px;}
.ws78{word-spacing:437.616000px;}
.ws8c{word-spacing:451.530000px;}
.ws67{word-spacing:479.952000px;}
._c{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._55{margin-left:-11.394000px;}
._f{margin-left:-8.496000px;}
._b{margin-left:-7.104000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.110000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.050000px;}
._4{width:1.057800px;}
._8{width:2.910000px;}
._5{width:4.440000px;}
._6{width:6.240000px;}
._7{width:7.522200px;}
._9{width:8.535600px;}
._a{width:10.064400px;}
._d{width:12.015600px;}
._13{width:44.064000px;}
._12{width:49.968000px;}
._14{width:52.128000px;}
._11{width:60.624000px;}
._2c{width:80.016000px;}
._2b{width:85.920000px;}
._2d{width:94.608000px;}
._2a{width:111.648000px;}
._46{width:162.576000px;}
._18{width:176.064000px;}
._40{width:198.960000px;}
._20{width:203.376000px;}
._43{width:227.904000px;}
._41{width:231.606000px;}
._48{width:241.632000px;}
._39{width:251.856000px;}
._33{width:261.216000px;}
._49{width:267.606000px;}
._53{width:268.608000px;}
._4e{width:271.968000px;}
._1d{width:275.376000px;}
._52{width:279.744000px;}
._32{width:285.216000px;}
._54{width:292.560000px;}
._23{width:293.664000px;}
._26{width:301.302000px;}
._4a{width:307.200000px;}
._4b{width:309.840000px;}
._15{width:312.288000px;}
._4d{width:317.856000px;}
._3f{width:319.200000px;}
._3b{width:321.888000px;}
._42{width:331.200000px;}
._10{width:334.416000px;}
._2e{width:335.952000px;}
._29{width:342.912000px;}
._19{width:349.776000px;}
._30{width:355.200000px;}
._35{width:358.656000px;}
._17{width:359.952000px;}
._45{width:367.200000px;}
._51{width:373.296000px;}
._3a{width:375.984000px;}
._44{width:381.312000px;}
._28{width:383.958000px;}
._1f{width:387.264000px;}
._37{width:389.328000px;}
._38{width:391.200000px;}
._36{width:398.544000px;}
._3c{width:401.280000px;}
._3e{width:402.912000px;}
._21{width:405.648000px;}
._4c{width:410.640000px;}
._1b{width:411.936000px;}
._1a{width:418.992000px;}
._4f{width:421.248000px;}
._24{width:423.936000px;}
._1c{width:427.296000px;}
._47{width:431.952000px;}
._50{width:434.592000px;}
._2f{width:438.912000px;}
._34{width:439.920000px;}
._16{width:447.936000px;}
._1e{width:458.976000px;}
._27{width:463.296000px;}
._25{width:467.952000px;}
._31{width:471.936000px;}
._3d{width:474.624000px;}
._22{width:478.608000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.000000px;}
.fs5{font-size:37.800000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fsa{font-size:90.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y31{bottom:47.777250px;}
.y199{bottom:80.121900px;}
.y76{bottom:83.017350px;}
.y114{bottom:83.129700px;}
.y4e{bottom:83.224350px;}
.ya0{bottom:83.460300px;}
.y17b{bottom:83.635350px;}
.y13a{bottom:83.920350px;}
.y166{bottom:83.935350px;}
.yf4{bottom:84.203850px;}
.yd0{bottom:84.337350px;}
.y17{bottom:88.026750px;}
.y9d{bottom:92.584350px;}
.y198{bottom:95.121900px;}
.y75{bottom:98.767350px;}
.y113{bottom:98.873700px;}
.y4d{bottom:98.968350px;}
.y9f{bottom:99.204300px;}
.y17a{bottom:101.635350px;}
.y139{bottom:101.920350px;}
.y165{bottom:101.935350px;}
.yf3{bottom:102.203850px;}
.y16{bottom:103.023000px;}
.y9c{bottom:108.832350px;}
.y197{bottom:110.121900px;}
.y74{bottom:114.511350px;}
.y112{bottom:114.617700px;}
.y4c{bottom:114.712350px;}
.y179{bottom:119.635350px;}
.y138{bottom:119.920350px;}
.y164{bottom:119.935350px;}
.ycf{bottom:119.940600px;}
.yf2{bottom:120.203850px;}
.y9b{bottom:125.080350px;}
.y196{bottom:125.121900px;}
.y4b{bottom:130.456350px;}
.y178{bottom:137.635350px;}
.y137{bottom:137.920350px;}
.y163{bottom:137.935350px;}
.yf1{bottom:138.203850px;}
.y195{bottom:140.121900px;}
.y9a{bottom:141.328350px;}
.y11f{bottom:152.934000px;}
.y194{bottom:155.121900px;}
.y1d6{bottom:155.263500px;}
.y177{bottom:155.635350px;}
.y136{bottom:155.920350px;}
.y162{bottom:155.935350px;}
.yce{bottom:156.195600px;}
.yf0{bottom:156.203850px;}
.y99{bottom:157.576350px;}
.y2c{bottom:158.359200px;}
.y1d8{bottom:158.914350px;}
.y193{bottom:170.121900px;}
.y1d5{bottom:170.263500px;}
.y176{bottom:173.635350px;}
.y98{bottom:173.824350px;}
.y135{bottom:173.920350px;}
.y161{bottom:173.935350px;}
.ycd{bottom:174.195600px;}
.y2b{bottom:176.359200px;}
.y192{bottom:185.121900px;}
.y1d4{bottom:185.263500px;}
.y97{bottom:190.072350px;}
.y175{bottom:191.635350px;}
.yef{bottom:191.798850px;}
.y134{bottom:191.920350px;}
.y160{bottom:191.935350px;}
.ycc{bottom:192.195600px;}
.y2a{bottom:194.359200px;}
.y1d7{bottom:194.509350px;}
.y191{bottom:200.121900px;}
.y1d3{bottom:200.263500px;}
.y96{bottom:206.320350px;}
.y174{bottom:209.635350px;}
.y133{bottom:209.920350px;}
.y15f{bottom:209.935350px;}
.ycb{bottom:210.195600px;}
.y29{bottom:212.359200px;}
.y190{bottom:215.121900px;}
.y1d2{bottom:215.263500px;}
.y95{bottom:222.568350px;}
.y173{bottom:227.635350px;}
.y132{bottom:227.920350px;}
.y15e{bottom:227.935350px;}
.yee{bottom:228.053850px;}
.yca{bottom:228.195600px;}
.y18f{bottom:230.121900px;}
.y1d1{bottom:230.263500px;}
.y28{bottom:230.359200px;}
.y94{bottom:238.816350px;}
.y11e{bottom:242.236500px;}
.y18e{bottom:245.121900px;}
.y1d0{bottom:245.263500px;}
.y172{bottom:245.635350px;}
.y131{bottom:245.920350px;}
.y15d{bottom:245.935350px;}
.yed{bottom:246.053850px;}
.yc9{bottom:246.195600px;}
.y27{bottom:248.359200px;}
.y93{bottom:255.064350px;}
.y18d{bottom:260.121900px;}
.y1cf{bottom:260.263500px;}
.y171{bottom:263.635350px;}
.y130{bottom:263.920350px;}
.y15c{bottom:263.935350px;}
.yec{bottom:264.053850px;}
.yc8{bottom:264.195600px;}
.y26{bottom:266.359200px;}
.y92{bottom:271.312350px;}
.y18c{bottom:275.121900px;}
.y1ce{bottom:275.263500px;}
.y170{bottom:281.635350px;}
.y12f{bottom:281.920350px;}
.y15b{bottom:281.935350px;}
.yeb{bottom:282.053850px;}
.yc7{bottom:282.195600px;}
.y25{bottom:284.359200px;}
.y91{bottom:287.560350px;}
.y18b{bottom:290.121900px;}
.y1cd{bottom:290.263500px;}
.y11d{bottom:291.129000px;}
.y16f{bottom:299.635350px;}
.y12e{bottom:299.920350px;}
.y15a{bottom:299.935350px;}
.yea{bottom:300.053850px;}
.yc6{bottom:300.195600px;}
.y24{bottom:302.359200px;}
.y90{bottom:303.808350px;}
.y18a{bottom:305.121900px;}
.y1cc{bottom:305.263500px;}
.y16e{bottom:317.635350px;}
.y12d{bottom:317.920350px;}
.y159{bottom:317.935350px;}
.ye9{bottom:318.053850px;}
.yc5{bottom:318.195600px;}
.y8f{bottom:320.056350px;}
.y189{bottom:320.121900px;}
.y1cb{bottom:320.263500px;}
.y23{bottom:320.359200px;}
.y11c{bottom:327.264000px;}
.y188{bottom:335.121900px;}
.y1ca{bottom:335.263500px;}
.y16d{bottom:335.635350px;}
.y12c{bottom:335.920350px;}
.y158{bottom:335.935350px;}
.ye8{bottom:336.053850px;}
.yc4{bottom:336.195600px;}
.y8e{bottom:336.304350px;}
.y22{bottom:338.359200px;}
.ya2{bottom:342.746700px;}
.y11b{bottom:343.846500px;}
.y187{bottom:350.121900px;}
.y1c9{bottom:350.263500px;}
.y8d{bottom:352.552350px;}
.y16c{bottom:353.635350px;}
.y157{bottom:353.935350px;}
.ye7{bottom:354.053850px;}
.yc3{bottom:354.195600px;}
.y21{bottom:356.359200px;}
.y186{bottom:365.121900px;}
.y1c8{bottom:365.263500px;}
.y8c{bottom:368.800350px;}
.y12b{bottom:371.515350px;}
.y16b{bottom:371.635350px;}
.y156{bottom:371.935350px;}
.ye6{bottom:372.053850px;}
.yc2{bottom:372.195600px;}
.y20{bottom:374.359200px;}
.y185{bottom:380.121900px;}
.y1c7{bottom:380.263500px;}
.y8b{bottom:385.048350px;}
.y12a{bottom:389.515350px;}
.y16a{bottom:389.635350px;}
.ye5{bottom:390.053850px;}
.yc1{bottom:390.195600px;}
.y1f{bottom:392.359200px;}
.y184{bottom:395.121900px;}
.y1c6{bottom:395.263500px;}
.y8a{bottom:401.296350px;}
.y11a{bottom:405.924000px;}
.y155{bottom:407.530350px;}
.y169{bottom:407.635350px;}
.yc0{bottom:408.195600px;}
.y183{bottom:410.121900px;}
.y1c5{bottom:410.263500px;}
.y1e{bottom:410.359200px;}
.y89{bottom:417.544350px;}
.y1c4{bottom:425.263500px;}
.y168{bottom:425.635350px;}
.y129{bottom:425.770350px;}
.ye4{bottom:426.053850px;}
.ybf{bottom:426.195600px;}
.y1d{bottom:428.359200px;}
.y1c3{bottom:440.263500px;}
.y182{bottom:443.230350px;}
.y128{bottom:443.770350px;}
.y154{bottom:443.785350px;}
.ye3{bottom:444.053850px;}
.ybe{bottom:444.195600px;}
.y1c{bottom:446.359200px;}
.y88{bottom:449.056350px;}
.y1c2{bottom:455.263500px;}
.y167{bottom:461.230350px;}
.y127{bottom:461.770350px;}
.y153{bottom:461.785350px;}
.ybd{bottom:462.195600px;}
.y1b{bottom:464.359200px;}
.y1c1{bottom:470.263500px;}
.ye2{bottom:479.657100px;}
.y126{bottom:479.770350px;}
.y6a{bottom:479.772600px;}
.y152{bottom:479.785350px;}
.ybc{bottom:480.195600px;}
.y1a{bottom:482.359200px;}
.y87{bottom:483.951450px;}
.y1c0{bottom:485.263500px;}
.y116{bottom:489.646500px;}
.y125{bottom:497.770350px;}
.y69{bottom:497.772600px;}
.y151{bottom:497.785350px;}
.ybb{bottom:498.195600px;}
.y1bf{bottom:500.263500px;}
.y19{bottom:500.359200px;}
.y1be{bottom:515.263500px;}
.y124{bottom:515.770350px;}
.y68{bottom:515.772600px;}
.y150{bottom:515.785350px;}
.ye1{bottom:515.912100px;}
.yba{bottom:516.195600px;}
.y2e{bottom:518.359200px;}
.y118{bottom:527.086500px;}
.y1bd{bottom:530.263500px;}
.y181{bottom:533.365350px;}
.y123{bottom:533.770350px;}
.y67{bottom:533.772600px;}
.y14f{bottom:533.785350px;}
.ye0{bottom:533.912100px;}
.y18{bottom:535.954200px;}
.y2d{bottom:536.359200px;}
.y86{bottom:540.458100px;}
.y1bc{bottom:545.263500px;}
.y117{bottom:551.746500px;}
.y122{bottom:551.770350px;}
.y66{bottom:551.772600px;}
.y14e{bottom:551.785350px;}
.ydf{bottom:551.912100px;}
.yb9{bottom:552.195600px;}
.y85{bottom:556.958100px;}
.y1bb{bottom:560.263500px;}
.y180{bottom:569.365350px;}
.y121{bottom:569.770350px;}
.y73{bottom:569.772600px;}
.y14d{bottom:569.785350px;}
.yde{bottom:569.912100px;}
.yb8{bottom:570.195600px;}
.y84{bottom:573.206100px;}
.y1ba{bottom:575.263500px;}
.y65{bottom:587.367600px;}
.y120{bottom:587.770350px;}
.y72{bottom:587.772600px;}
.y14c{bottom:587.785350px;}
.ydd{bottom:587.912100px;}
.y83{bottom:589.454100px;}
.y1b9{bottom:590.263500px;}
.y119{bottom:595.126500px;}
.y1b8{bottom:605.263500px;}
.y64{bottom:605.367600px;}
.y4a{bottom:605.770350px;}
.y71{bottom:605.772600px;}
.y14b{bottom:605.785350px;}
.yb7{bottom:605.798850px;}
.ydc{bottom:605.912100px;}
.y82{bottom:605.954100px;}
.y15{bottom:610.614000px;}
.y115{bottom:617.806500px;}
.y1b7{bottom:620.263500px;}
.y81{bottom:622.202100px;}
.y49{bottom:623.770350px;}
.y70{bottom:623.772600px;}
.y14a{bottom:623.785350px;}
.ydb{bottom:623.912100px;}
.y1b6{bottom:635.263500px;}
.y14{bottom:637.959000px;}
.y80{bottom:638.702100px;}
.y63{bottom:641.232600px;}
.y48{bottom:641.770350px;}
.y6f{bottom:641.772600px;}
.y149{bottom:641.785350px;}
.yda{bottom:641.912100px;}
.yb6{bottom:642.053850px;}
.y1b5{bottom:650.263500px;}
.y7f{bottom:654.950100px;}
.y13{bottom:655.959000px;}
.ya3{bottom:658.241700px;}
.ya1{bottom:658.242750px;}
.y47{bottom:659.770350px;}
.y6e{bottom:659.772600px;}
.y148{bottom:659.785350px;}
.yd9{bottom:659.912100px;}
.yb5{bottom:660.053850px;}
.y1b4{bottom:665.263500px;}
.y7e{bottom:671.198100px;}
.y12{bottom:673.959000px;}
.y46{bottom:677.770350px;}
.y6d{bottom:677.772600px;}
.y147{bottom:677.785350px;}
.yd8{bottom:677.912100px;}
.yb4{bottom:678.053850px;}
.y1b3{bottom:680.263500px;}
.y7d{bottom:687.446100px;}
.y11{bottom:691.959000px;}
.y1b2{bottom:695.263500px;}
.y45{bottom:695.770350px;}
.y62{bottom:695.772600px;}
.y146{bottom:695.785350px;}
.yd7{bottom:695.912100px;}
.yb3{bottom:696.053850px;}
.y7c{bottom:703.694100px;}
.y10{bottom:709.959000px;}
.y1b1{bottom:710.263500px;}
.y17f{bottom:713.365350px;}
.y44{bottom:713.770350px;}
.y61{bottom:713.772600px;}
.y145{bottom:713.785350px;}
.yd6{bottom:713.912100px;}
.yb2{bottom:714.053850px;}
.y7b{bottom:720.194100px;}
.y1b0{bottom:725.263500px;}
.yf{bottom:727.959000px;}
.y43{bottom:731.770350px;}
.y60{bottom:731.772600px;}
.y144{bottom:731.785350px;}
.y101{bottom:731.920350px;}
.y111{bottom:731.935350px;}
.yb1{bottom:732.053850px;}
.y7a{bottom:736.442100px;}
.y1af{bottom:740.263500px;}
.ye{bottom:745.959000px;}
.y42{bottom:749.770350px;}
.y5f{bottom:749.772600px;}
.y143{bottom:749.785350px;}
.yd5{bottom:749.912100px;}
.y100{bottom:749.920350px;}
.y110{bottom:749.935350px;}
.yb0{bottom:750.053850px;}
.y1ae{bottom:755.263500px;}
.y17e{bottom:767.365350px;}
.y41{bottom:767.770350px;}
.y5e{bottom:767.772600px;}
.y142{bottom:767.785350px;}
.yd4{bottom:767.912100px;}
.yff{bottom:767.920350px;}
.y10f{bottom:767.935350px;}
.y79{bottom:767.954100px;}
.yaf{bottom:768.053850px;}
.y1ad{bottom:770.263500px;}
.yd{bottom:779.090100px;}
.y1ac{bottom:785.263500px;}
.y40{bottom:785.770350px;}
.y5d{bottom:785.772600px;}
.y141{bottom:785.785350px;}
.yfe{bottom:785.920350px;}
.y10e{bottom:785.935350px;}
.yae{bottom:786.053850px;}
.y1ab{bottom:800.263500px;}
.y78{bottom:802.855350px;}
.yd3{bottom:803.515350px;}
.y3f{bottom:803.770350px;}
.y5c{bottom:803.772600px;}
.y140{bottom:803.785350px;}
.yfd{bottom:803.920350px;}
.y10d{bottom:803.935350px;}
.yad{bottom:804.053850px;}
.yc{bottom:804.418050px;}
.y1aa{bottom:815.263500px;}
.y17d{bottom:821.365350px;}
.y3e{bottom:821.770350px;}
.y5b{bottom:821.772600px;}
.y13f{bottom:821.785350px;}
.yfc{bottom:821.920350px;}
.y10c{bottom:821.935350px;}
.yac{bottom:822.053850px;}
.y1a9{bottom:830.263500px;}
.yb{bottom:836.133600px;}
.y3d{bottom:839.770350px;}
.y5a{bottom:839.772600px;}
.y13e{bottom:839.785350px;}
.yfb{bottom:839.920350px;}
.y10b{bottom:839.935350px;}
.y1a8{bottom:845.263500px;}
.ya{bottom:853.494300px;}
.y3c{bottom:857.770350px;}
.y59{bottom:857.772600px;}
.y13d{bottom:857.785350px;}
.yfa{bottom:857.920350px;}
.yab{bottom:858.053850px;}
.y1a7{bottom:860.263500px;}
.y9{bottom:863.133600px;}
.y1a6{bottom:875.263500px;}
.y10a{bottom:875.530350px;}
.y3b{bottom:875.770350px;}
.y58{bottom:875.772600px;}
.y13c{bottom:875.785350px;}
.yf9{bottom:875.920350px;}
.yaa{bottom:876.053850px;}
.y8{bottom:876.633600px;}
.y1a5{bottom:890.263500px;}
.y3a{bottom:893.770350px;}
.y57{bottom:893.772600px;}
.y13b{bottom:893.785350px;}
.yf8{bottom:893.920350px;}
.y7{bottom:893.994300px;}
.y1a4{bottom:905.263500px;}
.ya9{bottom:911.652600px;}
.y39{bottom:911.770350px;}
.y56{bottom:911.772600px;}
.y109{bottom:911.785350px;}
.yf7{bottom:911.920350px;}
.y1a3{bottom:920.263500px;}
.y6{bottom:924.280950px;}
.y38{bottom:929.770350px;}
.y55{bottom:929.772600px;}
.y108{bottom:929.785350px;}
.yf6{bottom:929.920350px;}
.y1a2{bottom:935.263500px;}
.ya8{bottom:947.502600px;}
.y37{bottom:947.770350px;}
.y54{bottom:947.772600px;}
.y107{bottom:947.785350px;}
.y1a1{bottom:950.263500px;}
.y1a0{bottom:965.263500px;}
.y17c{bottom:965.365350px;}
.ya7{bottom:965.502600px;}
.yf5{bottom:965.515350px;}
.y36{bottom:965.770350px;}
.y53{bottom:965.772600px;}
.y106{bottom:965.785350px;}
.y5{bottom:970.465200px;}
.y19f{bottom:980.263500px;}
.ya6{bottom:983.502600px;}
.y35{bottom:983.770350px;}
.y52{bottom:983.772600px;}
.y105{bottom:983.785350px;}
.y19e{bottom:995.263500px;}
.ya5{bottom:1001.502600px;}
.y34{bottom:1001.770350px;}
.y51{bottom:1001.772600px;}
.y104{bottom:1001.785350px;}
.y4{bottom:1006.926000px;}
.y19d{bottom:1010.263500px;}
.yd2{bottom:1019.767350px;}
.y33{bottom:1019.770350px;}
.y6c{bottom:1019.772600px;}
.y103{bottom:1019.785350px;}
.y19c{bottom:1025.263500px;}
.y50{bottom:1037.367600px;}
.yd1{bottom:1037.767350px;}
.y32{bottom:1037.770350px;}
.y6b{bottom:1037.772600px;}
.y102{bottom:1037.785350px;}
.y19b{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.618450px;}
.y19a{bottom:1132.413900px;}
.ya4{bottom:1132.418700px;}
.y77{bottom:1132.429350px;}
.y4f{bottom:1132.432350px;}
.y9e{bottom:1132.492350px;}
.y30{bottom:1136.089500px;}
.y2f{bottom:1150.492500px;}
.h7{height:19.683105px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h11{height:33.351562px;}
.h4{height:34.945312px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.he{height:41.689453px;}
.hb{height:43.681641px;}
.hc{height:43.710938px;}
.ha{height:43.740234px;}
.h6{height:49.138634px;}
.h3{height:56.786133px;}
.h12{height:65.566406px;}
.h15{height:85.996406px;}
.h5{height:92.168262px;}
.h14{height:101.296406px;}
.h13{height:125.056406px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x17{left:78.661350px;}
.x2f{left:84.635400px;}
.x23{left:93.543300px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x20{left:100.084500px;}
.x34{left:102.047400px;}
.x5{left:104.173200px;}
.x3{left:106.724400px;}
.xd{left:110.555400px;}
.x22{left:118.159500px;}
.x24{left:122.739150px;}
.x4{left:125.433150px;}
.x7{left:131.816400px;}
.x1f{left:138.814500px;}
.x21{left:153.439500px;}
.x12{left:165.982200px;}
.x1e{left:202.909500px;}
.x31{left:211.405350px;}
.x6{left:212.876400px;}
.x30{left:228.860400px;}
.x13{left:232.357200px;}
.x1b{left:242.787450px;}
.x2b{left:253.417350px;}
.x1a{left:292.110300px;}
.x1d{left:410.569950px;}
.xb{left:455.041500px;}
.xe{left:457.100400px;}
.x26{left:474.094500px;}
.x14{left:478.312200px;}
.x9{left:480.491400px;}
.x35{left:482.591400px;}
.x25{left:486.849150px;}
.x29{left:488.680350px;}
.xf{left:491.135400px;}
.x28{left:499.105350px;}
.x33{left:503.858400px;}
.x27{left:505.360350px;}
.x2d{left:508.117350px;}
.x15{left:512.302200px;}
.x8{left:514.511400px;}
.x2c{left:519.592350px;}
.x2e{left:552.779850px;}
.x2a{left:555.239100px;}
.x1c{left:575.292450px;}
.x32{left:596.125350px;}
.x18{left:619.525350px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x36{left:721.717650px;}
.x10{left:728.387400px;}
.x19{left:735.541350px;}
.x16{left:749.662950px;}
@media print{
.v4{vertical-align:-58.320000pt;}
.v7{vertical-align:-34.800000pt;}
.v2{vertical-align:-13.726933pt;}
.v8{vertical-align:-1.520000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.440000pt;}
.v6{vertical-align:18.160000pt;}
.v1{vertical-align:19.217067pt;}
.v5{vertical-align:31.760000pt;}
.v3{vertical-align:52.880000pt;}
.ls56{letter-spacing:-3.413333pt;}
.ls3f{letter-spacing:-1.578667pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls8a{letter-spacing:-0.384000pt;}
.ls3d{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls88{letter-spacing:-0.213333pt;}
.ls3e{letter-spacing:-0.160000pt;}
.ls85{letter-spacing:-0.128000pt;}
.ls44{letter-spacing:-0.106667pt;}
.ls28{letter-spacing:-0.053333pt;}
.ls29{letter-spacing:-0.042667pt;}
.ls17{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003733pt;}
.ls72{letter-spacing:0.042667pt;}
.ls14{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.106667pt;}
.ls4f{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls82{letter-spacing:0.170667pt;}
.ls3{letter-spacing:0.213333pt;}
.ls6a{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls67{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.373333pt;}
.ls71{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.480000pt;}
.ls7a{letter-spacing:0.512000pt;}
.ls25{letter-spacing:0.533333pt;}
.ls6d{letter-spacing:0.554667pt;}
.ls7{letter-spacing:0.586667pt;}
.ls41{letter-spacing:0.597333pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls37{letter-spacing:0.682667pt;}
.ls15{letter-spacing:0.693333pt;}
.ls23{letter-spacing:0.746667pt;}
.ls45{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.853333pt;}
.ls3b{letter-spacing:0.906667pt;}
.ls63{letter-spacing:0.938667pt;}
.ls32{letter-spacing:0.960000pt;}
.ls65{letter-spacing:0.981333pt;}
.lsb{letter-spacing:1.013333pt;}
.ls69{letter-spacing:1.024000pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls86{letter-spacing:1.109333pt;}
.ls3c{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.173333pt;}
.ls89{letter-spacing:1.194667pt;}
.ls2{letter-spacing:1.226667pt;}
.ls77{letter-spacing:1.237333pt;}
.ls42{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.333333pt;}
.ls2b{letter-spacing:1.386667pt;}
.ls6b{letter-spacing:1.408000pt;}
.lsd{letter-spacing:1.440000pt;}
.ls48{letter-spacing:1.493333pt;}
.ls79{letter-spacing:1.536000pt;}
.lse{letter-spacing:1.546667pt;}
.ls73{letter-spacing:1.578667pt;}
.ls6{letter-spacing:1.600000pt;}
.ls31{letter-spacing:1.653333pt;}
.ls87{letter-spacing:1.664000pt;}
.ls13{letter-spacing:1.706667pt;}
.ls57{letter-spacing:1.760000pt;}
.ls7b{letter-spacing:1.792000pt;}
.ls11{letter-spacing:1.813333pt;}
.ls7e{letter-spacing:1.834667pt;}
.ls34{letter-spacing:1.866667pt;}
.ls58{letter-spacing:1.920000pt;}
.ls7f{letter-spacing:1.962667pt;}
.lsc{letter-spacing:1.973333pt;}
.ls43{letter-spacing:2.026667pt;}
.ls62{letter-spacing:2.048000pt;}
.ls2f{letter-spacing:2.080000pt;}
.ls39{letter-spacing:2.133333pt;}
.ls36{letter-spacing:2.186667pt;}
.ls81{letter-spacing:2.218667pt;}
.ls1d{letter-spacing:2.293333pt;}
.ls74{letter-spacing:2.304000pt;}
.ls6c{letter-spacing:2.346667pt;}
.ls2c{letter-spacing:2.400000pt;}
.ls83{letter-spacing:2.432000pt;}
.lsf{letter-spacing:2.453333pt;}
.ls6f{letter-spacing:2.474667pt;}
.ls26{letter-spacing:2.506667pt;}
.ls64{letter-spacing:2.517333pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls70{letter-spacing:2.602667pt;}
.ls19{letter-spacing:2.613333pt;}
.ls80{letter-spacing:2.645333pt;}
.ls33{letter-spacing:2.666667pt;}
.ls8b{letter-spacing:2.688000pt;}
.ls59{letter-spacing:2.720000pt;}
.ls4c{letter-spacing:2.773333pt;}
.ls68{letter-spacing:2.816000pt;}
.ls5b{letter-spacing:2.826667pt;}
.ls49{letter-spacing:2.933333pt;}
.ls78{letter-spacing:2.944000pt;}
.ls46{letter-spacing:2.986667pt;}
.ls22{letter-spacing:3.040000pt;}
.ls75{letter-spacing:3.072000pt;}
.ls4a{letter-spacing:3.146667pt;}
.ls38{letter-spacing:3.200000pt;}
.ls4b{letter-spacing:3.253333pt;}
.ls5a{letter-spacing:3.360000pt;}
.ls35{letter-spacing:3.466667pt;}
.ls5d{letter-spacing:3.573333pt;}
.ls7c{letter-spacing:3.712000pt;}
.ls4d{letter-spacing:3.786667pt;}
.ls47{letter-spacing:3.840000pt;}
.ls7d{letter-spacing:3.882667pt;}
.ls1a{letter-spacing:3.893333pt;}
.ls1b{letter-spacing:3.946667pt;}
.ls3a{letter-spacing:4.000000pt;}
.ls84{letter-spacing:4.010667pt;}
.ls6e{letter-spacing:4.053333pt;}
.ls2d{letter-spacing:4.160000pt;}
.ls21{letter-spacing:4.213333pt;}
.ls20{letter-spacing:4.266667pt;}
.ls66{letter-spacing:4.309333pt;}
.ls40{letter-spacing:4.426667pt;}
.ls76{letter-spacing:4.480000pt;}
.ls61{letter-spacing:4.586667pt;}
.ls5f{letter-spacing:5.226667pt;}
.ls2a{letter-spacing:5.440000pt;}
.ls5c{letter-spacing:5.653333pt;}
.ls4e{letter-spacing:5.813333pt;}
.ls60{letter-spacing:5.973333pt;}
.ls30{letter-spacing:6.453333pt;}
.ls5e{letter-spacing:6.826667pt;}
.ls2e{letter-spacing:8.533333pt;}
.ls52{letter-spacing:363.680000pt;}
.ls51{letter-spacing:652.800000pt;}
.ls50{letter-spacing:696.480000pt;}
.ls54{letter-spacing:700.960000pt;}
.ls55{letter-spacing:726.960000pt;}
.ls53{letter-spacing:829.680000pt;}
.ws0{word-spacing:-31.284267pt;}
.ws4d{word-spacing:-18.773333pt;}
.ws88{word-spacing:-17.760000pt;}
.ws2e{word-spacing:-17.600000pt;}
.ws4e{word-spacing:-17.493333pt;}
.ws2a{word-spacing:-17.280000pt;}
.ws87{word-spacing:-16.533333pt;}
.ws9b{word-spacing:-16.480000pt;}
.ws9a{word-spacing:-16.266667pt;}
.ws29{word-spacing:-15.946667pt;}
.ws2b{word-spacing:-15.893333pt;}
.wsb8{word-spacing:-15.733333pt;}
.wsb6{word-spacing:-15.626667pt;}
.ws89{word-spacing:-15.520000pt;}
.wsb7{word-spacing:-15.360000pt;}
.ws8a{word-spacing:-15.306667pt;}
.wsb{word-spacing:-15.146667pt;}
.wsc{word-spacing:-15.040000pt;}
.ws4f{word-spacing:-14.986667pt;}
.ws5{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws9{word-spacing:-14.773333pt;}
.ws51{word-spacing:-14.720000pt;}
.ws9c{word-spacing:-14.666667pt;}
.wsb5{word-spacing:-14.560000pt;}
.ws7{word-spacing:-14.506667pt;}
.ws2d{word-spacing:-14.400000pt;}
.ws64{word-spacing:-14.346667pt;}
.wsa8{word-spacing:-14.240000pt;}
.ws6{word-spacing:-14.186667pt;}
.wsd{word-spacing:-14.026667pt;}
.ws50{word-spacing:-13.866667pt;}
.ws4{word-spacing:-13.813333pt;}
.ws8{word-spacing:-13.706667pt;}
.ws2f{word-spacing:-13.653333pt;}
.ws30{word-spacing:-13.600000pt;}
.ws2c{word-spacing:-13.493333pt;}
.ws98{word-spacing:-13.440000pt;}
.ws99{word-spacing:-13.386667pt;}
.wsa{word-spacing:-13.333333pt;}
.wsb9{word-spacing:-13.184000pt;}
.ws65{word-spacing:-13.173333pt;}
.wsd0{word-spacing:-13.141333pt;}
.wsd6{word-spacing:-12.629333pt;}
.wsd1{word-spacing:-12.373333pt;}
.wsd2{word-spacing:-12.202667pt;}
.wsd8{word-spacing:-12.160000pt;}
.wsba{word-spacing:-12.074667pt;}
.wse{word-spacing:-11.861333pt;}
.wsd7{word-spacing:-11.306667pt;}
.ws8b{word-spacing:-11.264000pt;}
.wsd3{word-spacing:-11.221333pt;}
.wsda{word-spacing:-11.178667pt;}
.ws3{word-spacing:-11.120000pt;}
.ws52{word-spacing:-11.093333pt;}
.wsd5{word-spacing:-11.050667pt;}
.wsd9{word-spacing:-10.965333pt;}
.wsd4{word-spacing:-10.794667pt;}
.ws31{word-spacing:-10.666667pt;}
.ws32{word-spacing:-10.624000pt;}
.ws1{word-spacing:-9.340800pt;}
.ws53{word-spacing:-5.440000pt;}
.wsc3{word-spacing:-5.226667pt;}
.wse5{word-spacing:-4.480000pt;}
.ws3e{word-spacing:-4.266667pt;}
.ws42{word-spacing:-4.213333pt;}
.ws57{word-spacing:-4.160000pt;}
.ws81{word-spacing:-4.000000pt;}
.ws3b{word-spacing:-3.946667pt;}
.ws35{word-spacing:-3.893333pt;}
.wsee{word-spacing:-3.882667pt;}
.wsa2{word-spacing:-3.840000pt;}
.wsed{word-spacing:-3.712000pt;}
.ws5f{word-spacing:-3.466667pt;}
.wsab{word-spacing:-3.253333pt;}
.ws60{word-spacing:-3.200000pt;}
.wsb3{word-spacing:-3.146667pt;}
.ws44{word-spacing:-3.093333pt;}
.wse4{word-spacing:-3.072000pt;}
.ws59{word-spacing:-3.040000pt;}
.wsa1{word-spacing:-2.986667pt;}
.wse7{word-spacing:-2.944000pt;}
.wsa5{word-spacing:-2.933333pt;}
.wsaa{word-spacing:-2.826667pt;}
.wscc{word-spacing:-2.816000pt;}
.wsb0{word-spacing:-2.773333pt;}
.wsb2{word-spacing:-2.720000pt;}
.wsf4{word-spacing:-2.688000pt;}
.ws5d{word-spacing:-2.666667pt;}
.wsf2{word-spacing:-2.645333pt;}
.ws34{word-spacing:-2.613333pt;}
.ws10{word-spacing:-2.565333pt;}
.ws3c{word-spacing:-2.560000pt;}
.wsc9{word-spacing:-2.517333pt;}
.ws48{word-spacing:-2.506667pt;}
.wsdc{word-spacing:-2.474667pt;}
.ws37{word-spacing:-2.453333pt;}
.ws55{word-spacing:-2.400000pt;}
.wsc2{word-spacing:-2.346667pt;}
.wse8{word-spacing:-2.304000pt;}
.ws3d{word-spacing:-2.293333pt;}
.wsf3{word-spacing:-2.218667pt;}
.ws93{word-spacing:-2.186667pt;}
.ws7f{word-spacing:-2.133333pt;}
.ws58{word-spacing:-2.080000pt;}
.wsc7{word-spacing:-2.048000pt;}
.ws94{word-spacing:-2.026667pt;}
.wsf1{word-spacing:-2.005333pt;}
.ws43{word-spacing:-1.973333pt;}
.wsf0{word-spacing:-1.920000pt;}
.ws5e{word-spacing:-1.866667pt;}
.wsef{word-spacing:-1.834667pt;}
.ws22{word-spacing:-1.813333pt;}
.wsec{word-spacing:-1.792000pt;}
.wsa6{word-spacing:-1.760000pt;}
.ws25{word-spacing:-1.706667pt;}
.wse3{word-spacing:-1.664000pt;}
.ws17{word-spacing:-1.653333pt;}
.ws27{word-spacing:-1.600000pt;}
.wse1{word-spacing:-1.578667pt;}
.wsbb{word-spacing:-1.546667pt;}
.wse9{word-spacing:-1.536000pt;}
.wsa3{word-spacing:-1.493333pt;}
.ws1f{word-spacing:-1.440000pt;}
.ws9d{word-spacing:-1.386667pt;}
.ws23{word-spacing:-1.333333pt;}
.ws92{word-spacing:-1.280000pt;}
.wse6{word-spacing:-1.237333pt;}
.ws49{word-spacing:-1.226667pt;}
.wseb{word-spacing:-1.194667pt;}
.ws1b{word-spacing:-1.173333pt;}
.ws84{word-spacing:-1.120000pt;}
.wse2{word-spacing:-1.109333pt;}
.ws47{word-spacing:-1.066667pt;}
.wscd{word-spacing:-1.024000pt;}
.ws1d{word-spacing:-1.013333pt;}
.wsca{word-spacing:-0.981333pt;}
.ws5a{word-spacing:-0.960000pt;}
.wsc8{word-spacing:-0.938667pt;}
.ws1e{word-spacing:-0.906667pt;}
.ws1a{word-spacing:-0.853333pt;}
.ws45{word-spacing:-0.800000pt;}
.ws80{word-spacing:-0.746667pt;}
.ws41{word-spacing:-0.693333pt;}
.ws63{word-spacing:-0.682667pt;}
.ws19{word-spacing:-0.640000pt;}
.ws97{word-spacing:-0.597333pt;}
.ws54{word-spacing:-0.586667pt;}
.wsdb{word-spacing:-0.554667pt;}
.ws56{word-spacing:-0.533333pt;}
.wsea{word-spacing:-0.512000pt;}
.ws16{word-spacing:-0.480000pt;}
.ws26{word-spacing:-0.426667pt;}
.wsde{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.373333pt;}
.ws21{word-spacing:-0.320000pt;}
.wscb{word-spacing:-0.298667pt;}
.ws12{word-spacing:-0.266667pt;}
.wsce{word-spacing:-0.256000pt;}
.ws61{word-spacing:-0.213333pt;}
.wsf5{word-spacing:-0.170667pt;}
.ws20{word-spacing:-0.160000pt;}
.wsad{word-spacing:-0.128000pt;}
.ws46{word-spacing:-0.106667pt;}
.ws28{word-spacing:-0.053333pt;}
.wse0{word-spacing:-0.042667pt;}
.wsf{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.042667pt;}
.ws3a{word-spacing:0.053333pt;}
.ws95{word-spacing:0.106667pt;}
.wsdf{word-spacing:0.128000pt;}
.ws86{word-spacing:0.160000pt;}
.ws4c{word-spacing:0.213333pt;}
.ws36{word-spacing:0.266667pt;}
.ws85{word-spacing:0.320000pt;}
.wsa7{word-spacing:0.373333pt;}
.wscf{word-spacing:0.384000pt;}
.wsac{word-spacing:0.480000pt;}
.ws8f{word-spacing:0.693333pt;}
.wsb1{word-spacing:0.746667pt;}
.wsbc{word-spacing:1.013333pt;}
.wsbe{word-spacing:1.066667pt;}
.ws13{word-spacing:1.226667pt;}
.wsc6{word-spacing:1.333333pt;}
.ws14{word-spacing:1.386667pt;}
.ws8e{word-spacing:1.493333pt;}
.wsbf{word-spacing:1.600000pt;}
.wsa0{word-spacing:1.653333pt;}
.ws9f{word-spacing:1.706667pt;}
.wsae{word-spacing:1.749333pt;}
.ws33{word-spacing:1.760000pt;}
.wsa4{word-spacing:1.920000pt;}
.ws24{word-spacing:1.973333pt;}
.wsc1{word-spacing:2.080000pt;}
.wsbd{word-spacing:2.133333pt;}
.ws7e{word-spacing:2.293333pt;}
.ws82{word-spacing:2.613333pt;}
.ws4a{word-spacing:2.730667pt;}
.ws83{word-spacing:2.773333pt;}
.wsc0{word-spacing:2.880000pt;}
.ws18{word-spacing:3.040000pt;}
.ws9e{word-spacing:3.200000pt;}
.wsa9{word-spacing:3.253333pt;}
.ws5c{word-spacing:3.413333pt;}
.ws3f{word-spacing:3.466667pt;}
.ws96{word-spacing:3.498667pt;}
.ws62{word-spacing:3.541333pt;}
.wsaf{word-spacing:3.680000pt;}
.wsb4{word-spacing:3.733333pt;}
.wsdd{word-spacing:3.797333pt;}
.ws39{word-spacing:3.840000pt;}
.ws38{word-spacing:3.893333pt;}
.ws8d{word-spacing:3.946667pt;}
.ws91{word-spacing:4.000000pt;}
.ws90{word-spacing:4.320000pt;}
.ws15{word-spacing:4.373333pt;}
.ws11{word-spacing:4.426667pt;}
.ws40{word-spacing:4.693333pt;}
.wsc5{word-spacing:4.853333pt;}
.wsc4{word-spacing:4.906667pt;}
.ws5b{word-spacing:5.493333pt;}
.ws75{word-spacing:170.581333pt;}
.ws74{word-spacing:181.248000pt;}
.ws7a{word-spacing:199.040000pt;}
.ws69{word-spacing:202.026667pt;}
.ws76{word-spacing:211.498667pt;}
.ws70{word-spacing:213.248000pt;}
.ws6b{word-spacing:221.568000pt;}
.ws7b{word-spacing:231.040000pt;}
.ws7d{word-spacing:232.789333pt;}
.ws6c{word-spacing:235.178667pt;}
.ws68{word-spacing:237.696000pt;}
.ws7c{word-spacing:262.442667pt;}
.ws77{word-spacing:266.368000pt;}
.ws79{word-spacing:271.914667pt;}
.ws73{word-spacing:279.424000pt;}
.ws6a{word-spacing:285.312000pt;}
.ws6f{word-spacing:285.525333pt;}
.ws66{word-spacing:306.304000pt;}
.ws6e{word-spacing:337.066667pt;}
.ws72{word-spacing:337.877333pt;}
.ws71{word-spacing:351.061333pt;}
.ws6d{word-spacing:364.117333pt;}
.ws78{word-spacing:388.992000pt;}
.ws8c{word-spacing:401.360000pt;}
.ws67{word-spacing:426.624000pt;}
._c{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._55{margin-left:-10.128000pt;}
._f{margin-left:-7.552000pt;}
._b{margin-left:-6.314667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.653333pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.933333pt;}
._4{width:0.940267pt;}
._8{width:2.586667pt;}
._5{width:3.946667pt;}
._6{width:5.546667pt;}
._7{width:6.686400pt;}
._9{width:7.587200pt;}
._a{width:8.946133pt;}
._d{width:10.680533pt;}
._13{width:39.168000pt;}
._12{width:44.416000pt;}
._14{width:46.336000pt;}
._11{width:53.888000pt;}
._2c{width:71.125333pt;}
._2b{width:76.373333pt;}
._2d{width:84.096000pt;}
._2a{width:99.242667pt;}
._46{width:144.512000pt;}
._18{width:156.501333pt;}
._40{width:176.853333pt;}
._20{width:180.778667pt;}
._43{width:202.581333pt;}
._41{width:205.872000pt;}
._48{width:214.784000pt;}
._39{width:223.872000pt;}
._33{width:232.192000pt;}
._49{width:237.872000pt;}
._53{width:238.762667pt;}
._4e{width:241.749333pt;}
._1d{width:244.778667pt;}
._52{width:248.661333pt;}
._32{width:253.525333pt;}
._54{width:260.053333pt;}
._23{width:261.034667pt;}
._26{width:267.824000pt;}
._4a{width:273.066667pt;}
._4b{width:275.413333pt;}
._15{width:277.589333pt;}
._4d{width:282.538667pt;}
._3f{width:283.733333pt;}
._3b{width:286.122667pt;}
._42{width:294.400000pt;}
._10{width:297.258667pt;}
._2e{width:298.624000pt;}
._29{width:304.810667pt;}
._19{width:310.912000pt;}
._30{width:315.733333pt;}
._35{width:318.805333pt;}
._17{width:319.957333pt;}
._45{width:326.400000pt;}
._51{width:331.818667pt;}
._3a{width:334.208000pt;}
._44{width:338.944000pt;}
._28{width:341.296000pt;}
._1f{width:344.234667pt;}
._37{width:346.069333pt;}
._38{width:347.733333pt;}
._36{width:354.261333pt;}
._3c{width:356.693333pt;}
._3e{width:358.144000pt;}
._21{width:360.576000pt;}
._4c{width:365.013333pt;}
._1b{width:366.165333pt;}
._1a{width:372.437333pt;}
._4f{width:374.442667pt;}
._24{width:376.832000pt;}
._1c{width:379.818667pt;}
._47{width:383.957333pt;}
._50{width:386.304000pt;}
._2f{width:390.144000pt;}
._34{width:391.040000pt;}
._16{width:398.165333pt;}
._1e{width:407.978667pt;}
._27{width:411.818667pt;}
._25{width:415.957333pt;}
._31{width:419.498667pt;}
._3d{width:421.888000pt;}
._22{width:425.429333pt;}
.fs6{font-size:24.000000pt;}
.fs5{font-size:33.600000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fsa{font-size:80.000000pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y31{bottom:42.468667pt;}
.y199{bottom:71.219467pt;}
.y76{bottom:73.793200pt;}
.y114{bottom:73.893067pt;}
.y4e{bottom:73.977200pt;}
.ya0{bottom:74.186933pt;}
.y17b{bottom:74.342533pt;}
.y13a{bottom:74.595867pt;}
.y166{bottom:74.609200pt;}
.yf4{bottom:74.847867pt;}
.yd0{bottom:74.966533pt;}
.y17{bottom:78.246000pt;}
.y9d{bottom:82.297200pt;}
.y198{bottom:84.552800pt;}
.y75{bottom:87.793200pt;}
.y113{bottom:87.887733pt;}
.y4d{bottom:87.971867pt;}
.y9f{bottom:88.181600pt;}
.y17a{bottom:90.342533pt;}
.y139{bottom:90.595867pt;}
.y165{bottom:90.609200pt;}
.yf3{bottom:90.847867pt;}
.y16{bottom:91.576000pt;}
.y9c{bottom:96.739867pt;}
.y197{bottom:97.886133pt;}
.y74{bottom:101.787867pt;}
.y112{bottom:101.882400pt;}
.y4c{bottom:101.966533pt;}
.y179{bottom:106.342533pt;}
.y138{bottom:106.595867pt;}
.y164{bottom:106.609200pt;}
.ycf{bottom:106.613867pt;}
.yf2{bottom:106.847867pt;}
.y9b{bottom:111.182533pt;}
.y196{bottom:111.219467pt;}
.y4b{bottom:115.961200pt;}
.y178{bottom:122.342533pt;}
.y137{bottom:122.595867pt;}
.y163{bottom:122.609200pt;}
.yf1{bottom:122.847867pt;}
.y195{bottom:124.552800pt;}
.y9a{bottom:125.625200pt;}
.y11f{bottom:135.941333pt;}
.y194{bottom:137.886133pt;}
.y1d6{bottom:138.012000pt;}
.y177{bottom:138.342533pt;}
.y136{bottom:138.595867pt;}
.y162{bottom:138.609200pt;}
.yce{bottom:138.840533pt;}
.yf0{bottom:138.847867pt;}
.y99{bottom:140.067867pt;}
.y2c{bottom:140.763733pt;}
.y1d8{bottom:141.257200pt;}
.y193{bottom:151.219467pt;}
.y1d5{bottom:151.345333pt;}
.y176{bottom:154.342533pt;}
.y98{bottom:154.510533pt;}
.y135{bottom:154.595867pt;}
.y161{bottom:154.609200pt;}
.ycd{bottom:154.840533pt;}
.y2b{bottom:156.763733pt;}
.y192{bottom:164.552800pt;}
.y1d4{bottom:164.678667pt;}
.y97{bottom:168.953200pt;}
.y175{bottom:170.342533pt;}
.yef{bottom:170.487867pt;}
.y134{bottom:170.595867pt;}
.y160{bottom:170.609200pt;}
.ycc{bottom:170.840533pt;}
.y2a{bottom:172.763733pt;}
.y1d7{bottom:172.897200pt;}
.y191{bottom:177.886133pt;}
.y1d3{bottom:178.012000pt;}
.y96{bottom:183.395867pt;}
.y174{bottom:186.342533pt;}
.y133{bottom:186.595867pt;}
.y15f{bottom:186.609200pt;}
.ycb{bottom:186.840533pt;}
.y29{bottom:188.763733pt;}
.y190{bottom:191.219467pt;}
.y1d2{bottom:191.345333pt;}
.y95{bottom:197.838533pt;}
.y173{bottom:202.342533pt;}
.y132{bottom:202.595867pt;}
.y15e{bottom:202.609200pt;}
.yee{bottom:202.714533pt;}
.yca{bottom:202.840533pt;}
.y18f{bottom:204.552800pt;}
.y1d1{bottom:204.678667pt;}
.y28{bottom:204.763733pt;}
.y94{bottom:212.281200pt;}
.y11e{bottom:215.321333pt;}
.y18e{bottom:217.886133pt;}
.y1d0{bottom:218.012000pt;}
.y172{bottom:218.342533pt;}
.y131{bottom:218.595867pt;}
.y15d{bottom:218.609200pt;}
.yed{bottom:218.714533pt;}
.yc9{bottom:218.840533pt;}
.y27{bottom:220.763733pt;}
.y93{bottom:226.723867pt;}
.y18d{bottom:231.219467pt;}
.y1cf{bottom:231.345333pt;}
.y171{bottom:234.342533pt;}
.y130{bottom:234.595867pt;}
.y15c{bottom:234.609200pt;}
.yec{bottom:234.714533pt;}
.yc8{bottom:234.840533pt;}
.y26{bottom:236.763733pt;}
.y92{bottom:241.166533pt;}
.y18c{bottom:244.552800pt;}
.y1ce{bottom:244.678667pt;}
.y170{bottom:250.342533pt;}
.y12f{bottom:250.595867pt;}
.y15b{bottom:250.609200pt;}
.yeb{bottom:250.714533pt;}
.yc7{bottom:250.840533pt;}
.y25{bottom:252.763733pt;}
.y91{bottom:255.609200pt;}
.y18b{bottom:257.886133pt;}
.y1cd{bottom:258.012000pt;}
.y11d{bottom:258.781333pt;}
.y16f{bottom:266.342533pt;}
.y12e{bottom:266.595867pt;}
.y15a{bottom:266.609200pt;}
.yea{bottom:266.714533pt;}
.yc6{bottom:266.840533pt;}
.y24{bottom:268.763733pt;}
.y90{bottom:270.051867pt;}
.y18a{bottom:271.219467pt;}
.y1cc{bottom:271.345333pt;}
.y16e{bottom:282.342533pt;}
.y12d{bottom:282.595867pt;}
.y159{bottom:282.609200pt;}
.ye9{bottom:282.714533pt;}
.yc5{bottom:282.840533pt;}
.y8f{bottom:284.494533pt;}
.y189{bottom:284.552800pt;}
.y1cb{bottom:284.678667pt;}
.y23{bottom:284.763733pt;}
.y11c{bottom:290.901333pt;}
.y188{bottom:297.886133pt;}
.y1ca{bottom:298.012000pt;}
.y16d{bottom:298.342533pt;}
.y12c{bottom:298.595867pt;}
.y158{bottom:298.609200pt;}
.ye8{bottom:298.714533pt;}
.yc4{bottom:298.840533pt;}
.y8e{bottom:298.937200pt;}
.y22{bottom:300.763733pt;}
.ya2{bottom:304.663733pt;}
.y11b{bottom:305.641333pt;}
.y187{bottom:311.219467pt;}
.y1c9{bottom:311.345333pt;}
.y8d{bottom:313.379867pt;}
.y16c{bottom:314.342533pt;}
.y157{bottom:314.609200pt;}
.ye7{bottom:314.714533pt;}
.yc3{bottom:314.840533pt;}
.y21{bottom:316.763733pt;}
.y186{bottom:324.552800pt;}
.y1c8{bottom:324.678667pt;}
.y8c{bottom:327.822533pt;}
.y12b{bottom:330.235867pt;}
.y16b{bottom:330.342533pt;}
.y156{bottom:330.609200pt;}
.ye6{bottom:330.714533pt;}
.yc2{bottom:330.840533pt;}
.y20{bottom:332.763733pt;}
.y185{bottom:337.886133pt;}
.y1c7{bottom:338.012000pt;}
.y8b{bottom:342.265200pt;}
.y12a{bottom:346.235867pt;}
.y16a{bottom:346.342533pt;}
.ye5{bottom:346.714533pt;}
.yc1{bottom:346.840533pt;}
.y1f{bottom:348.763733pt;}
.y184{bottom:351.219467pt;}
.y1c6{bottom:351.345333pt;}
.y8a{bottom:356.707867pt;}
.y11a{bottom:360.821333pt;}
.y155{bottom:362.249200pt;}
.y169{bottom:362.342533pt;}
.yc0{bottom:362.840533pt;}
.y183{bottom:364.552800pt;}
.y1c5{bottom:364.678667pt;}
.y1e{bottom:364.763733pt;}
.y89{bottom:371.150533pt;}
.y1c4{bottom:378.012000pt;}
.y168{bottom:378.342533pt;}
.y129{bottom:378.462533pt;}
.ye4{bottom:378.714533pt;}
.ybf{bottom:378.840533pt;}
.y1d{bottom:380.763733pt;}
.y1c3{bottom:391.345333pt;}
.y182{bottom:393.982533pt;}
.y128{bottom:394.462533pt;}
.y154{bottom:394.475867pt;}
.ye3{bottom:394.714533pt;}
.ybe{bottom:394.840533pt;}
.y1c{bottom:396.763733pt;}
.y88{bottom:399.161200pt;}
.y1c2{bottom:404.678667pt;}
.y167{bottom:409.982533pt;}
.y127{bottom:410.462533pt;}
.y153{bottom:410.475867pt;}
.ybd{bottom:410.840533pt;}
.y1b{bottom:412.763733pt;}
.y1c1{bottom:418.012000pt;}
.ye2{bottom:426.361867pt;}
.y126{bottom:426.462533pt;}
.y6a{bottom:426.464533pt;}
.y152{bottom:426.475867pt;}
.ybc{bottom:426.840533pt;}
.y1a{bottom:428.763733pt;}
.y87{bottom:430.179067pt;}
.y1c0{bottom:431.345333pt;}
.y116{bottom:435.241333pt;}
.y125{bottom:442.462533pt;}
.y69{bottom:442.464533pt;}
.y151{bottom:442.475867pt;}
.ybb{bottom:442.840533pt;}
.y1bf{bottom:444.678667pt;}
.y19{bottom:444.763733pt;}
.y1be{bottom:458.012000pt;}
.y124{bottom:458.462533pt;}
.y68{bottom:458.464533pt;}
.y150{bottom:458.475867pt;}
.ye1{bottom:458.588533pt;}
.yba{bottom:458.840533pt;}
.y2e{bottom:460.763733pt;}
.y118{bottom:468.521333pt;}
.y1bd{bottom:471.345333pt;}
.y181{bottom:474.102533pt;}
.y123{bottom:474.462533pt;}
.y67{bottom:474.464533pt;}
.y14f{bottom:474.475867pt;}
.ye0{bottom:474.588533pt;}
.y18{bottom:476.403733pt;}
.y2d{bottom:476.763733pt;}
.y86{bottom:480.407200pt;}
.y1bc{bottom:484.678667pt;}
.y117{bottom:490.441333pt;}
.y122{bottom:490.462533pt;}
.y66{bottom:490.464533pt;}
.y14e{bottom:490.475867pt;}
.ydf{bottom:490.588533pt;}
.yb9{bottom:490.840533pt;}
.y85{bottom:495.073867pt;}
.y1bb{bottom:498.012000pt;}
.y180{bottom:506.102533pt;}
.y121{bottom:506.462533pt;}
.y73{bottom:506.464533pt;}
.y14d{bottom:506.475867pt;}
.yde{bottom:506.588533pt;}
.yb8{bottom:506.840533pt;}
.y84{bottom:509.516533pt;}
.y1ba{bottom:511.345333pt;}
.y65{bottom:522.104533pt;}
.y120{bottom:522.462533pt;}
.y72{bottom:522.464533pt;}
.y14c{bottom:522.475867pt;}
.ydd{bottom:522.588533pt;}
.y83{bottom:523.959200pt;}
.y1b9{bottom:524.678667pt;}
.y119{bottom:529.001333pt;}
.y1b8{bottom:538.012000pt;}
.y64{bottom:538.104533pt;}
.y4a{bottom:538.462533pt;}
.y71{bottom:538.464533pt;}
.y14b{bottom:538.475867pt;}
.yb7{bottom:538.487867pt;}
.ydc{bottom:538.588533pt;}
.y82{bottom:538.625867pt;}
.y15{bottom:542.768000pt;}
.y115{bottom:549.161333pt;}
.y1b7{bottom:551.345333pt;}
.y81{bottom:553.068533pt;}
.y49{bottom:554.462533pt;}
.y70{bottom:554.464533pt;}
.y14a{bottom:554.475867pt;}
.ydb{bottom:554.588533pt;}
.y1b6{bottom:564.678667pt;}
.y14{bottom:567.074667pt;}
.y80{bottom:567.735200pt;}
.y63{bottom:569.984533pt;}
.y48{bottom:570.462533pt;}
.y6f{bottom:570.464533pt;}
.y149{bottom:570.475867pt;}
.yda{bottom:570.588533pt;}
.yb6{bottom:570.714533pt;}
.y1b5{bottom:578.012000pt;}
.y7f{bottom:582.177867pt;}
.y13{bottom:583.074667pt;}
.ya3{bottom:585.103733pt;}
.ya1{bottom:585.104667pt;}
.y47{bottom:586.462533pt;}
.y6e{bottom:586.464533pt;}
.y148{bottom:586.475867pt;}
.yd9{bottom:586.588533pt;}
.yb5{bottom:586.714533pt;}
.y1b4{bottom:591.345333pt;}
.y7e{bottom:596.620533pt;}
.y12{bottom:599.074667pt;}
.y46{bottom:602.462533pt;}
.y6d{bottom:602.464533pt;}
.y147{bottom:602.475867pt;}
.yd8{bottom:602.588533pt;}
.yb4{bottom:602.714533pt;}
.y1b3{bottom:604.678667pt;}
.y7d{bottom:611.063200pt;}
.y11{bottom:615.074667pt;}
.y1b2{bottom:618.012000pt;}
.y45{bottom:618.462533pt;}
.y62{bottom:618.464533pt;}
.y146{bottom:618.475867pt;}
.yd7{bottom:618.588533pt;}
.yb3{bottom:618.714533pt;}
.y7c{bottom:625.505867pt;}
.y10{bottom:631.074667pt;}
.y1b1{bottom:631.345333pt;}
.y17f{bottom:634.102533pt;}
.y44{bottom:634.462533pt;}
.y61{bottom:634.464533pt;}
.y145{bottom:634.475867pt;}
.yd6{bottom:634.588533pt;}
.yb2{bottom:634.714533pt;}
.y7b{bottom:640.172533pt;}
.y1b0{bottom:644.678667pt;}
.yf{bottom:647.074667pt;}
.y43{bottom:650.462533pt;}
.y60{bottom:650.464533pt;}
.y144{bottom:650.475867pt;}
.y101{bottom:650.595867pt;}
.y111{bottom:650.609200pt;}
.yb1{bottom:650.714533pt;}
.y7a{bottom:654.615200pt;}
.y1af{bottom:658.012000pt;}
.ye{bottom:663.074667pt;}
.y42{bottom:666.462533pt;}
.y5f{bottom:666.464533pt;}
.y143{bottom:666.475867pt;}
.yd5{bottom:666.588533pt;}
.y100{bottom:666.595867pt;}
.y110{bottom:666.609200pt;}
.yb0{bottom:666.714533pt;}
.y1ae{bottom:671.345333pt;}
.y17e{bottom:682.102533pt;}
.y41{bottom:682.462533pt;}
.y5e{bottom:682.464533pt;}
.y142{bottom:682.475867pt;}
.yd4{bottom:682.588533pt;}
.yff{bottom:682.595867pt;}
.y10f{bottom:682.609200pt;}
.y79{bottom:682.625867pt;}
.yaf{bottom:682.714533pt;}
.y1ad{bottom:684.678667pt;}
.yd{bottom:692.524533pt;}
.y1ac{bottom:698.012000pt;}
.y40{bottom:698.462533pt;}
.y5d{bottom:698.464533pt;}
.y141{bottom:698.475867pt;}
.yfe{bottom:698.595867pt;}
.y10e{bottom:698.609200pt;}
.yae{bottom:698.714533pt;}
.y1ab{bottom:711.345333pt;}
.y78{bottom:713.649200pt;}
.yd3{bottom:714.235867pt;}
.y3f{bottom:714.462533pt;}
.y5c{bottom:714.464533pt;}
.y140{bottom:714.475867pt;}
.yfd{bottom:714.595867pt;}
.y10d{bottom:714.609200pt;}
.yad{bottom:714.714533pt;}
.yc{bottom:715.038267pt;}
.y1aa{bottom:724.678667pt;}
.y17d{bottom:730.102533pt;}
.y3e{bottom:730.462533pt;}
.y5b{bottom:730.464533pt;}
.y13f{bottom:730.475867pt;}
.yfc{bottom:730.595867pt;}
.y10c{bottom:730.609200pt;}
.yac{bottom:730.714533pt;}
.y1a9{bottom:738.012000pt;}
.yb{bottom:743.229867pt;}
.y3d{bottom:746.462533pt;}
.y5a{bottom:746.464533pt;}
.y13e{bottom:746.475867pt;}
.yfb{bottom:746.595867pt;}
.y10b{bottom:746.609200pt;}
.y1a8{bottom:751.345333pt;}
.ya{bottom:758.661600pt;}
.y3c{bottom:762.462533pt;}
.y59{bottom:762.464533pt;}
.y13d{bottom:762.475867pt;}
.yfa{bottom:762.595867pt;}
.yab{bottom:762.714533pt;}
.y1a7{bottom:764.678667pt;}
.y9{bottom:767.229867pt;}
.y1a6{bottom:778.012000pt;}
.y10a{bottom:778.249200pt;}
.y3b{bottom:778.462533pt;}
.y58{bottom:778.464533pt;}
.y13c{bottom:778.475867pt;}
.yf9{bottom:778.595867pt;}
.yaa{bottom:778.714533pt;}
.y8{bottom:779.229867pt;}
.y1a5{bottom:791.345333pt;}
.y3a{bottom:794.462533pt;}
.y57{bottom:794.464533pt;}
.y13b{bottom:794.475867pt;}
.yf8{bottom:794.595867pt;}
.y7{bottom:794.661600pt;}
.y1a4{bottom:804.678667pt;}
.ya9{bottom:810.357867pt;}
.y39{bottom:810.462533pt;}
.y56{bottom:810.464533pt;}
.y109{bottom:810.475867pt;}
.yf7{bottom:810.595867pt;}
.y1a3{bottom:818.012000pt;}
.y6{bottom:821.583067pt;}
.y38{bottom:826.462533pt;}
.y55{bottom:826.464533pt;}
.y108{bottom:826.475867pt;}
.yf6{bottom:826.595867pt;}
.y1a2{bottom:831.345333pt;}
.ya8{bottom:842.224533pt;}
.y37{bottom:842.462533pt;}
.y54{bottom:842.464533pt;}
.y107{bottom:842.475867pt;}
.y1a1{bottom:844.678667pt;}
.y1a0{bottom:858.012000pt;}
.y17c{bottom:858.102533pt;}
.ya7{bottom:858.224533pt;}
.yf5{bottom:858.235867pt;}
.y36{bottom:858.462533pt;}
.y53{bottom:858.464533pt;}
.y106{bottom:858.475867pt;}
.y5{bottom:862.635733pt;}
.y19f{bottom:871.345333pt;}
.ya6{bottom:874.224533pt;}
.y35{bottom:874.462533pt;}
.y52{bottom:874.464533pt;}
.y105{bottom:874.475867pt;}
.y19e{bottom:884.678667pt;}
.ya5{bottom:890.224533pt;}
.y34{bottom:890.462533pt;}
.y51{bottom:890.464533pt;}
.y104{bottom:890.475867pt;}
.y4{bottom:895.045333pt;}
.y19d{bottom:898.012000pt;}
.yd2{bottom:906.459867pt;}
.y33{bottom:906.462533pt;}
.y6c{bottom:906.464533pt;}
.y103{bottom:906.475867pt;}
.y19c{bottom:911.345333pt;}
.y50{bottom:922.104533pt;}
.yd1{bottom:922.459867pt;}
.y32{bottom:922.462533pt;}
.y6b{bottom:922.464533pt;}
.y102{bottom:922.475867pt;}
.y19b{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.549733pt;}
.y19a{bottom:1006.590133pt;}
.ya4{bottom:1006.594400pt;}
.y77{bottom:1006.603867pt;}
.y4f{bottom:1006.606533pt;}
.y9e{bottom:1006.659867pt;}
.y30{bottom:1009.857333pt;}
.y2f{bottom:1022.660000pt;}
.h7{height:17.496094pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h11{height:29.645833pt;}
.h4{height:31.062500pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.he{height:37.057292pt;}
.hb{height:38.828125pt;}
.hc{height:38.854167pt;}
.ha{height:38.880208pt;}
.h6{height:43.678785pt;}
.h3{height:50.476562pt;}
.h12{height:58.281250pt;}
.h15{height:76.441250pt;}
.h5{height:81.927344pt;}
.h14{height:90.041250pt;}
.h13{height:111.161250pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x17{left:69.921200pt;}
.x2f{left:75.231467pt;}
.x23{left:83.149600pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x20{left:88.964000pt;}
.x34{left:90.708800pt;}
.x5{left:92.598400pt;}
.x3{left:94.866133pt;}
.xd{left:98.271467pt;}
.x22{left:105.030667pt;}
.x24{left:109.101467pt;}
.x4{left:111.496133pt;}
.x7{left:117.170133pt;}
.x1f{left:123.390667pt;}
.x21{left:136.390667pt;}
.x12{left:147.539733pt;}
.x1e{left:180.364000pt;}
.x31{left:187.915867pt;}
.x6{left:189.223467pt;}
.x30{left:203.431467pt;}
.x13{left:206.539733pt;}
.x1b{left:215.811067pt;}
.x2b{left:225.259867pt;}
.x1a{left:259.653600pt;}
.x1d{left:364.951067pt;}
.xb{left:404.481333pt;}
.xe{left:406.311467pt;}
.x26{left:421.417333pt;}
.x14{left:425.166400pt;}
.x9{left:427.103467pt;}
.x35{left:428.970133pt;}
.x25{left:432.754800pt;}
.x29{left:434.382533pt;}
.xf{left:436.564800pt;}
.x28{left:443.649200pt;}
.x33{left:447.874133pt;}
.x27{left:449.209200pt;}
.x2d{left:451.659867pt;}
.x15{left:455.379733pt;}
.x8{left:457.343467pt;}
.x2c{left:461.859867pt;}
.x2e{left:491.359867pt;}
.x2a{left:493.545867pt;}
.x1c{left:511.371067pt;}
.x32{left:529.889200pt;}
.x18{left:550.689200pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x36{left:641.526800pt;}
.x10{left:647.455467pt;}
.x19{left:653.814533pt;}
.x16{left:666.367067pt;}
}




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