
    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_ca937be8f81c29057ee78826.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_4903864d69a839b053452f39.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_23934a667dc3ad38c261ec07.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_64da02daeb8569547d46729d.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_662ee3f62e138ad09d9cd254.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.715820;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_7be057f06601c5e56a3edbc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951172;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_f1fcbe4232e64019c19fca3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.952637;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_3eb8f77a07e2e21274472df4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.952637;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_eaf7517b356f6498641880be.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.952637;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;}
.m7{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.252081,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252081,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252081,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.125000,-0.216506,0.216506,0.125000,0,0);-ms-transform:matrix(0.125000,-0.216506,0.216506,0.125000,0,0);-webkit-transform:matrix(0.125000,-0.216506,0.216506,0.125000,0,0);}
.m1{transform:matrix(0.246202,-0.043412,0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,-0.043412,0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,-0.043412,0.043412,0.246202,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252077,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252081,0.000000,0.000000,0.250000,0,0);}
.m3{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:-16.471800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.580600px;}
.v1{vertical-align:22.655400px;}
.ls12{letter-spacing:-0.720000px;}
.ls4a{letter-spacing:-0.360000px;}
.ls46{letter-spacing:-0.300000px;}
.lsa0{letter-spacing:-0.288000px;}
.ls4b{letter-spacing:-0.240000px;}
.ls44{letter-spacing:-0.180000px;}
.ls55{letter-spacing:-0.120000px;}
.ls56{letter-spacing:-0.060000px;}
.ls8d{letter-spacing:-0.048000px;}
.ls11{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.006000px;}
.ls9c{letter-spacing:0.048000px;}
.ls1f{letter-spacing:0.060000px;}
.ls6{letter-spacing:0.096000px;}
.ls57{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.120000px;}
.ls91{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.180000px;}
.ls87{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.300000px;}
.ls59{letter-spacing:0.336000px;}
.ls15{letter-spacing:0.360000px;}
.ls5a{letter-spacing:0.384000px;}
.ls29{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.432000px;}
.ls36{letter-spacing:0.480000px;}
.ls79{letter-spacing:0.528000px;}
.ls2f{letter-spacing:0.540000px;}
.ls72{letter-spacing:0.576000px;}
.ls49{letter-spacing:0.600000px;}
.ls40{letter-spacing:0.612000px;}
.ls5b{letter-spacing:0.624000px;}
.ls2c{letter-spacing:0.660000px;}
.ls76{letter-spacing:0.672000px;}
.ls1a{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.768000px;}
.ls2b{letter-spacing:0.780000px;}
.ls95{letter-spacing:0.816000px;}
.ls6a{letter-spacing:0.828000px;}
.lse{letter-spacing:0.840000px;}
.ls5e{letter-spacing:0.864000px;}
.ls20{letter-spacing:0.900000px;}
.ls90{letter-spacing:0.912000px;}
.ls4{letter-spacing:0.960000px;}
.ls7f{letter-spacing:1.008000px;}
.ls16{letter-spacing:1.020000px;}
.ls65{letter-spacing:1.044000px;}
.ls98{letter-spacing:1.056000px;}
.ls24{letter-spacing:1.080000px;}
.ls8b{letter-spacing:1.104000px;}
.ls3c{letter-spacing:1.140000px;}
.ls85{letter-spacing:1.152000px;}
.ls4c{letter-spacing:1.200000px;}
.ls7b{letter-spacing:1.248000px;}
.ls3d{letter-spacing:1.260000px;}
.ls5d{letter-spacing:1.296000px;}
.ls22{letter-spacing:1.320000px;}
.ls7c{letter-spacing:1.344000px;}
.lsf{letter-spacing:1.380000px;}
.ls8f{letter-spacing:1.392000px;}
.ls35{letter-spacing:1.440000px;}
.ls6c{letter-spacing:1.488000px;}
.ls54{letter-spacing:1.500000px;}
.ls6e{letter-spacing:1.536000px;}
.ls34{letter-spacing:1.560000px;}
.ls60{letter-spacing:1.584000px;}
.ls25{letter-spacing:1.620000px;}
.ls2{letter-spacing:1.632000px;}
.ls13{letter-spacing:1.680000px;}
.ls6f{letter-spacing:1.728000px;}
.ls1c{letter-spacing:1.740000px;}
.ls89{letter-spacing:1.776000px;}
.ls47{letter-spacing:1.800000px;}
.ls80{letter-spacing:1.824000px;}
.ls10{letter-spacing:1.860000px;}
.ls7a{letter-spacing:1.872000px;}
.ls31{letter-spacing:1.920000px;}
.ls74{letter-spacing:1.968000px;}
.ls3f{letter-spacing:1.980000px;}
.ls8c{letter-spacing:2.016000px;}
.ls39{letter-spacing:2.040000px;}
.ls73{letter-spacing:2.064000px;}
.ls30{letter-spacing:2.100000px;}
.ls27{letter-spacing:2.160000px;}
.ls66{letter-spacing:2.196000px;}
.ls6d{letter-spacing:2.208000px;}
.ls14{letter-spacing:2.220000px;}
.ls2e{letter-spacing:2.280000px;}
.ls99{letter-spacing:2.304000px;}
.ls45{letter-spacing:2.340000px;}
.ls77{letter-spacing:2.352000px;}
.ls23{letter-spacing:2.400000px;}
.ls93{letter-spacing:2.448000px;}
.ls18{letter-spacing:2.460000px;}
.ls7e{letter-spacing:2.496000px;}
.ls52{letter-spacing:2.520000px;}
.ls81{letter-spacing:2.544000px;}
.ls33{letter-spacing:2.580000px;}
.ls82{letter-spacing:2.592000px;}
.ls26{letter-spacing:2.640000px;}
.ls9b{letter-spacing:2.688000px;}
.ls3b{letter-spacing:2.700000px;}
.ls71{letter-spacing:2.736000px;}
.lsb{letter-spacing:2.760000px;}
.ls5f{letter-spacing:2.784000px;}
.ls63{letter-spacing:2.820000px;}
.ls8a{letter-spacing:2.832000px;}
.ls64{letter-spacing:2.880000px;}
.ls9d{letter-spacing:2.928000px;}
.lsd{letter-spacing:2.940000px;}
.ls97{letter-spacing:3.024000px;}
.ls37{letter-spacing:3.060000px;}
.ls38{letter-spacing:3.120000px;}
.ls88{letter-spacing:3.168000px;}
.ls17{letter-spacing:3.180000px;}
.ls84{letter-spacing:3.216000px;}
.ls68{letter-spacing:3.240000px;}
.ls75{letter-spacing:3.264000px;}
.ls2d{letter-spacing:3.300000px;}
.ls83{letter-spacing:3.312000px;}
.ls42{letter-spacing:3.360000px;}
.ls9a{letter-spacing:3.408000px;}
.ls70{letter-spacing:3.504000px;}
.ls62{letter-spacing:3.540000px;}
.ls53{letter-spacing:3.600000px;}
.ls9{letter-spacing:3.660000px;}
.ls1e{letter-spacing:3.720000px;}
.ls7d{letter-spacing:3.792000px;}
.ls28{letter-spacing:3.840000px;}
.ls8e{letter-spacing:3.936000px;}
.lsa{letter-spacing:3.960000px;}
.ls96{letter-spacing:3.984000px;}
.ls3a{letter-spacing:4.020000px;}
.ls32{letter-spacing:4.080000px;}
.ls92{letter-spacing:4.128000px;}
.ls6b{letter-spacing:4.140000px;}
.ls94{letter-spacing:4.176000px;}
.ls48{letter-spacing:4.200000px;}
.ls9e{letter-spacing:4.224000px;}
.ls4f{letter-spacing:4.260000px;}
.ls4d{letter-spacing:4.320000px;}
.ls61{letter-spacing:4.440000px;}
.ls9f{letter-spacing:4.704000px;}
.ls50{letter-spacing:4.740000px;}
.ls86{letter-spacing:4.752000px;}
.lsc{letter-spacing:4.800000px;}
.ls78{letter-spacing:4.896000px;}
.ls1d{letter-spacing:5.400000px;}
.ls43{letter-spacing:5.460000px;}
.ls41{letter-spacing:5.760000px;}
.ls58{letter-spacing:5.820000px;}
.ls67{letter-spacing:5.880000px;}
.ls4e{letter-spacing:6.480000px;}
.ls5c{letter-spacing:6.780000px;}
.ls1b{letter-spacing:6.960000px;}
.ls51{letter-spacing:7.800000px;}
.ls3e{letter-spacing:8.040000px;}
.ls69{letter-spacing:10.260000px;}
.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;}
}
.ws6a{word-spacing:-21.480000px;}
.ws1{word-spacing:-20.340000px;}
.ws14{word-spacing:-19.800000px;}
.ws12{word-spacing:-18.300000px;}
.wsb4{word-spacing:-18.048000px;}
.ws9a{word-spacing:-17.520000px;}
.ws94{word-spacing:-17.472000px;}
.ws13{word-spacing:-16.920000px;}
.ws92{word-spacing:-16.704000px;}
.ws11{word-spacing:-16.680000px;}
.ws9c{word-spacing:-16.656000px;}
.ws7b{word-spacing:-16.560000px;}
.ws9d{word-spacing:-16.224000px;}
.ws7c{word-spacing:-16.176000px;}
.ws97{word-spacing:-15.408000px;}
.ws90{word-spacing:-15.312000px;}
.ws9b{word-spacing:-15.168000px;}
.ws74{word-spacing:-15.072000px;}
.ws75{word-spacing:-15.024000px;}
.wsb3{word-spacing:-14.784000px;}
.ws91{word-spacing:-14.736000px;}
.ws78{word-spacing:-14.688000px;}
.ws7a{word-spacing:-14.640000px;}
.ws77{word-spacing:-14.304000px;}
.ws98{word-spacing:-14.208000px;}
.ws15{word-spacing:-14.178000px;}
.ws95{word-spacing:-14.160000px;}
.ws79{word-spacing:-14.064000px;}
.wsb2{word-spacing:-13.872000px;}
.ws96{word-spacing:-13.776000px;}
.ws7d{word-spacing:-13.728000px;}
.ws99{word-spacing:-13.680000px;}
.ws76{word-spacing:-13.632000px;}
.ws4b{word-spacing:-13.344000px;}
.ws93{word-spacing:-13.296000px;}
.ws63{word-spacing:-12.204000px;}
.ws62{word-spacing:-11.052000px;}
.ws0{word-spacing:-11.008800px;}
.ws69{word-spacing:-10.836000px;}
.ws2f{word-spacing:-10.620000px;}
.ws42{word-spacing:-10.116000px;}
.ws41{word-spacing:-10.008000px;}
.wsbc{word-spacing:-4.704000px;}
.wsa8{word-spacing:-4.176000px;}
.ws22{word-spacing:-4.080000px;}
.ws5{word-spacing:-3.630000px;}
.ws80{word-spacing:-3.504000px;}
.wsa1{word-spacing:-3.360000px;}
.wsad{word-spacing:-3.312000px;}
.ws8d{word-spacing:-2.832000px;}
.ws3{word-spacing:-2.664000px;}
.wsac{word-spacing:-2.400000px;}
.ws30{word-spacing:-2.220000px;}
.wsa6{word-spacing:-2.064000px;}
.ws9e{word-spacing:-1.968000px;}
.wsa9{word-spacing:-1.824000px;}
.ws7f{word-spacing:-1.728000px;}
.ws21{word-spacing:-1.680000px;}
.wsb7{word-spacing:-1.440000px;}
.ws9f{word-spacing:-1.392000px;}
.ws65{word-spacing:-1.320000px;}
.ws4{word-spacing:-1.188000px;}
.ws87{word-spacing:-1.152000px;}
.ws84{word-spacing:-0.960000px;}
.ws8c{word-spacing:-0.864000px;}
.wsa4{word-spacing:-0.816000px;}
.ws82{word-spacing:-0.720000px;}
.ws8e{word-spacing:-0.672000px;}
.ws6b{word-spacing:-0.660000px;}
.ws8a{word-spacing:-0.576000px;}
.wsa5{word-spacing:-0.528000px;}
.ws61{word-spacing:-0.480000px;}
.ws88{word-spacing:-0.432000px;}
.ws8f{word-spacing:-0.384000px;}
.wsa7{word-spacing:-0.336000px;}
.ws58{word-spacing:-0.300000px;}
.ws53{word-spacing:-0.240000px;}
.wsab{word-spacing:-0.192000px;}
.wsbb{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsa2{word-spacing:0.048000px;}
.ws3f{word-spacing:0.060000px;}
.wsba{word-spacing:0.096000px;}
.ws66{word-spacing:0.120000px;}
.ws38{word-spacing:0.180000px;}
.wsc{word-spacing:0.192000px;}
.ws24{word-spacing:0.240000px;}
.wsb1{word-spacing:0.336000px;}
.ws6f{word-spacing:0.360000px;}
.ws56{word-spacing:0.420000px;}
.wsb5{word-spacing:0.528000px;}
.ws5a{word-spacing:0.540000px;}
.ws20{word-spacing:0.660000px;}
.ws18{word-spacing:0.780000px;}
.ws7e{word-spacing:0.816000px;}
.ws19{word-spacing:0.840000px;}
.ws6d{word-spacing:0.900000px;}
.ws9{word-spacing:0.912000px;}
.ws47{word-spacing:0.960000px;}
.ws67{word-spacing:1.020000px;}
.ws8b{word-spacing:1.056000px;}
.ws89{word-spacing:1.104000px;}
.ws37{word-spacing:1.140000px;}
.ws39{word-spacing:1.152000px;}
.ws23{word-spacing:1.260000px;}
.ws44{word-spacing:1.320000px;}
.ws27{word-spacing:1.380000px;}
.ws3e{word-spacing:1.440000px;}
.ws54{word-spacing:1.536000px;}
.wsb{word-spacing:1.584000px;}
.ws16{word-spacing:1.620000px;}
.ws81{word-spacing:1.776000px;}
.ws35{word-spacing:1.860000px;}
.ws5c{word-spacing:1.872000px;}
.ws1b{word-spacing:1.920000px;}
.ws85{word-spacing:1.968000px;}
.ws1d{word-spacing:1.980000px;}
.ws2a{word-spacing:2.040000px;}
.ws40{word-spacing:2.100000px;}
.ws6e{word-spacing:2.160000px;}
.ws3a{word-spacing:2.352000px;}
.ws83{word-spacing:2.400000px;}
.ws6{word-spacing:2.496000px;}
.ws1c{word-spacing:2.520000px;}
.wsb6{word-spacing:2.544000px;}
.ws3c{word-spacing:2.580000px;}
.ws71{word-spacing:2.700000px;}
.ws86{word-spacing:2.736000px;}
.ws57{word-spacing:2.760000px;}
.ws59{word-spacing:2.820000px;}
.wsae{word-spacing:2.832000px;}
.ws17{word-spacing:3.000000px;}
.ws31{word-spacing:3.060000px;}
.ws55{word-spacing:3.072000px;}
.wsd{word-spacing:3.120000px;}
.wsb8{word-spacing:3.168000px;}
.ws43{word-spacing:3.180000px;}
.ws3b{word-spacing:3.240000px;}
.ws5b{word-spacing:3.264000px;}
.ws68{word-spacing:3.360000px;}
.wsb9{word-spacing:3.408000px;}
.wse{word-spacing:3.420000px;}
.ws36{word-spacing:3.480000px;}
.wsa{word-spacing:3.504000px;}
.ws28{word-spacing:3.540000px;}
.wsaf{word-spacing:3.696000px;}
.wsaa{word-spacing:3.744000px;}
.ws49{word-spacing:3.780000px;}
.wsb0{word-spacing:3.792000px;}
.ws1e{word-spacing:3.840000px;}
.ws3d{word-spacing:3.900000px;}
.wsa3{word-spacing:3.936000px;}
.ws32{word-spacing:3.960000px;}
.ws2b{word-spacing:4.020000px;}
.ws52{word-spacing:4.080000px;}
.ws51{word-spacing:4.140000px;}
.wsa0{word-spacing:4.176000px;}
.ws6c{word-spacing:4.260000px;}
.ws25{word-spacing:4.320000px;}
.ws8{word-spacing:4.368000px;}
.ws7{word-spacing:4.416000px;}
.ws46{word-spacing:4.440000px;}
.ws73{word-spacing:4.500000px;}
.ws4a{word-spacing:4.620000px;}
.ws64{word-spacing:4.740000px;}
.ws33{word-spacing:4.800000px;}
.ws1a{word-spacing:4.860000px;}
.ws26{word-spacing:4.980000px;}
.ws72{word-spacing:5.100000px;}
.ws70{word-spacing:5.160000px;}
.ws34{word-spacing:5.220000px;}
.ws1f{word-spacing:5.280000px;}
.ws45{word-spacing:5.340000px;}
.ws48{word-spacing:5.400000px;}
.ws10{word-spacing:5.460000px;}
.wsf{word-spacing:5.520000px;}
.ws29{word-spacing:5.700000px;}
.ws4c{word-spacing:37.248000px;}
.ws4e{word-spacing:37.920000px;}
.ws5e{word-spacing:41.328000px;}
.ws5d{word-spacing:68.880000px;}
.ws50{word-spacing:73.727018px;}
.ws2c{word-spacing:80.684948px;}
.ws4d{word-spacing:128.160000px;}
.ws2d{word-spacing:141.131555px;}
.ws60{word-spacing:230.112000px;}
.ws5f{word-spacing:556.944000px;}
.ws4f{word-spacing:758.544000px;}
.ws2e{word-spacing:971.118234px;}
._b{margin-left:-2898.126000px;}
._e{margin-left:-2874.309000px;}
._2e{margin-left:-1368.096000px;}
._31{margin-left:-799.440000px;}
._3{margin-left:-8.179200px;}
._2{margin-left:-6.426000px;}
._1{margin-left:-5.376000px;}
._6{margin-left:-3.408000px;}
._0{margin-left:-2.310000px;}
._7{margin-left:-1.104000px;}
._4{width:1.188000px;}
._8{width:2.437800px;}
._5{width:3.587400px;}
._28{width:5.160000px;}
._9{width:7.140000px;}
._44{width:8.220000px;}
._a{width:9.480000px;}
._29{width:51.648000px;}
._2c{width:52.650000px;}
._2a{width:65.520000px;}
._30{width:74.106000px;}
._15{width:77.766000px;}
._2b{width:79.194000px;}
._2f{width:84.336000px;}
._d{width:89.488894px;}
._10{width:100.176000px;}
._c{width:101.513797px;}
._1a{width:103.008000px;}
._11{width:108.246000px;}
._1f{width:111.024000px;}
._1e{width:130.848000px;}
._19{width:132.480000px;}
._f{width:134.064000px;}
._22{width:135.408000px;}
._16{width:138.048000px;}
._17{width:143.184000px;}
._24{width:144.192000px;}
._36{width:147.360000px;}
._37{width:148.752000px;}
._35{width:163.488000px;}
._14{width:168.144000px;}
._3a{width:177.648000px;}
._1d{width:178.704000px;}
._18{width:180.480000px;}
._43{width:183.456000px;}
._12{width:189.600000px;}
._23{width:192.048000px;}
._40{width:203.472000px;}
._34{width:227.040000px;}
._3d{width:244.800000px;}
._13{width:261.792000px;}
._3c{width:268.704000px;}
._25{width:269.808000px;}
._39{width:280.416000px;}
._3b{width:281.856000px;}
._1b{width:283.296000px;}
._20{width:291.312000px;}
._42{width:302.016000px;}
._41{width:315.072000px;}
._38{width:318.384000px;}
._3f{width:321.936000px;}
._3e{width:335.184000px;}
._1c{width:436.848000px;}
._21{width:450.192000px;}
._26{width:468.720000px;}
._27{width:494.256000px;}
._2d{width:547.344000px;}
._32{width:600.144000px;}
._33{width:695.040000px;}
.fc2{color:rgb(4,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs11{font-size:29.106600px;}
.fs10{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fse{font-size:47.525400px;}
.fs6{font-size:48.000000px;}
.fsc{font-size:50.920200px;}
.fsd{font-size:50.920389px;}
.fsf{font-size:50.920881px;}
.fs8{font-size:51.000000px;}
.fs9{font-size:53.682600px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:65.612400px;}
.fs3{font-size:66.000000px;}
.fsb{font-size:69.685800px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y104{bottom:45.691050px;}
.y2d{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y63{bottom:83.363850px;}
.y2c{bottom:83.493900px;}
.yd4{bottom:83.513850px;}
.yf6{bottom:83.528850px;}
.yac{bottom:83.764050px;}
.y102{bottom:83.905200px;}
.y122{bottom:84.104700px;}
.y117{bottom:84.955200px;}
.y18e{bottom:85.796700px;}
.yca{bottom:92.034300px;}
.y153{bottom:93.006900px;}
.y20e{bottom:94.938300px;}
.y1ce{bottom:94.941300px;}
.yab{bottom:99.508050px;}
.y101{bottom:99.649200px;}
.y121{bottom:99.848700px;}
.y116{bottom:100.699200px;}
.y18d{bottom:100.796700px;}
.y62{bottom:101.363850px;}
.yd3{bottom:101.513850px;}
.yf5{bottom:101.528850px;}
.yc9{bottom:108.282300px;}
.y152{bottom:109.254900px;}
.y20d{bottom:109.938300px;}
.y1cd{bottom:109.941300px;}
.yaa{bottom:115.252050px;}
.y100{bottom:115.393200px;}
.y120{bottom:115.592700px;}
.y18c{bottom:115.796700px;}
.y115{bottom:116.443200px;}
.y61{bottom:119.363850px;}
.yd2{bottom:119.513850px;}
.yf4{bottom:119.528850px;}
.y23{bottom:121.513200px;}
.yc8{bottom:124.530300px;}
.y20c{bottom:124.938300px;}
.y1cc{bottom:124.941300px;}
.y151{bottom:125.502900px;}
.y18b{bottom:130.796700px;}
.y60{bottom:137.363850px;}
.yd1{bottom:137.513850px;}
.yf3{bottom:137.528850px;}
.y65{bottom:139.287000px;}
.y20b{bottom:139.938300px;}
.y1cb{bottom:139.941300px;}
.y150{bottom:141.750900px;}
.y7e{bottom:143.642558px;}
.y18a{bottom:145.796700px;}
.y67{bottom:147.686550px;}
.y75{bottom:148.287853px;}
.y20a{bottom:154.938300px;}
.y1ca{bottom:154.941300px;}
.y5f{bottom:155.363850px;}
.yd0{bottom:155.513850px;}
.yf2{bottom:155.528850px;}
.yc7{bottom:156.042300px;}
.y14f{bottom:157.998900px;}
.y189{bottom:160.796700px;}
.y209{bottom:169.938300px;}
.y1c9{bottom:169.941300px;}
.y7d{bottom:172.040653px;}
.y5e{bottom:173.363850px;}
.ycf{bottom:173.513850px;}
.yf1{bottom:173.528850px;}
.y188{bottom:175.796700px;}
.y28{bottom:176.698350px;}
.y208{bottom:184.938300px;}
.y1c8{bottom:184.941300px;}
.y14e{bottom:187.002900px;}
.y82{bottom:188.506950px;}
.y10d{bottom:190.594950px;}
.y187{bottom:190.796700px;}
.yc6{bottom:190.868850px;}
.y5d{bottom:191.363850px;}
.yf0{bottom:191.528850px;}
.y27{bottom:194.698350px;}
.y207{bottom:199.938300px;}
.y1c7{bottom:199.941300px;}
.y7c{bottom:201.056098px;}
.y186{bottom:205.796700px;}
.y5c{bottom:209.363850px;}
.yce{bottom:209.513850px;}
.yef{bottom:209.528850px;}
.y68{bottom:209.636270px;}
.yc5{bottom:210.368850px;}
.y26{bottom:212.698350px;}
.y206{bottom:214.938300px;}
.y1c6{bottom:214.941300px;}
.y14d{bottom:216.006900px;}
.y185{bottom:220.796700px;}
.y74{bottom:225.335804px;}
.y5b{bottom:227.363850px;}
.yee{bottom:227.528850px;}
.y7b{bottom:229.816551px;}
.y205{bottom:229.938300px;}
.y1c5{bottom:229.941300px;}
.y25{bottom:230.698350px;}
.y184{bottom:235.796700px;}
.y83{bottom:237.370650px;}
.y86{bottom:243.121050px;}
.y204{bottom:244.938300px;}
.y1c4{bottom:244.941300px;}
.y5a{bottom:245.363850px;}
.yed{bottom:245.528850px;}
.y14c{bottom:248.320350px;}
.y29{bottom:248.698350px;}
.y183{bottom:250.796700px;}
.y6c{bottom:251.499150px;}
.yae{bottom:252.050700px;}
.y7a{bottom:259.221195px;}
.y203{bottom:259.938300px;}
.y1c3{bottom:259.941300px;}
.y59{bottom:263.363850px;}
.yec{bottom:263.528850px;}
.y182{bottom:265.796700px;}
.y24{bottom:266.698350px;}
.yad{bottom:267.794700px;}
.y14b{bottom:267.820350px;}
.y69{bottom:273.572247px;}
.y202{bottom:274.938300px;}
.y1c2{bottom:274.941300px;}
.y181{bottom:280.796700px;}
.y58{bottom:281.363850px;}
.yeb{bottom:281.528850px;}
.y84{bottom:282.698000px;}
.y14a{bottom:287.320350px;}
.y79{bottom:287.834021px;}
.y201{bottom:289.938300px;}
.y1c1{bottom:289.941300px;}
.y76{bottom:295.614300px;}
.y180{bottom:295.796700px;}
.y57{bottom:299.363850px;}
.yea{bottom:299.528850px;}
.y73{bottom:301.511414px;}
.y200{bottom:304.938300px;}
.y1c0{bottom:304.941300px;}
.y17f{bottom:310.796700px;}
.y78{bottom:317.010514px;}
.y56{bottom:317.363850px;}
.ye9{bottom:317.528850px;}
.y1ff{bottom:319.938300px;}
.y1bf{bottom:319.941300px;}
.y17e{bottom:325.796700px;}
.y12b{bottom:329.655900px;}
.y66{bottom:330.401250px;}
.y15a{bottom:330.504300px;}
.y81{bottom:331.792650px;}
.y70{bottom:331.794300px;}
.y1fe{bottom:334.938300px;}
.y1be{bottom:334.941300px;}
.y55{bottom:335.363850px;}
.ye8{bottom:335.528850px;}
.y6d{bottom:336.040727px;}
.y127{bottom:338.363550px;}
.y22{bottom:340.088550px;}
.y6f{bottom:340.333012px;}
.y17d{bottom:340.796700px;}
.y6a{bottom:341.843094px;}
.y77{bottom:345.207300px;}
.y12a{bottom:345.399900px;}
.y159{bottom:346.248300px;}
.y12d{bottom:349.443000px;}
.y1fd{bottom:349.938300px;}
.y1bd{bottom:349.941300px;}
.y54{bottom:353.363850px;}
.ye7{bottom:353.528850px;}
.y17c{bottom:355.796700px;}
.y129{bottom:361.143900px;}
.y158{bottom:361.992300px;}
.y1fc{bottom:364.938300px;}
.y1bc{bottom:364.941300px;}
.y17b{bottom:370.796700px;}
.y53{bottom:371.363850px;}
.y21{bottom:372.944550px;}
.y11f{bottom:374.074500px;}
.y7f{bottom:375.162191px;}
.y1fb{bottom:379.938300px;}
.y1bb{bottom:379.941300px;}
.y72{bottom:380.652987px;}
.y12c{bottom:384.409500px;}
.y17a{bottom:385.796700px;}
.y20{bottom:387.944550px;}
.y13d{bottom:388.308600px;}
.y52{bottom:389.363850px;}
.ye6{bottom:389.528850px;}
.y15c{bottom:391.087950px;}
.y80{bottom:392.327202px;}
.y1fa{bottom:394.938300px;}
.y1ba{bottom:394.941300px;}
.y179{bottom:400.796700px;}
.y1f{bottom:402.944550px;}
.y13c{bottom:404.772600px;}
.y51{bottom:407.363850px;}
.y85{bottom:408.711598px;}
.y1f9{bottom:409.938300px;}
.y1b9{bottom:409.941300px;}
.y178{bottom:415.796700px;}
.y13f{bottom:416.088600px;}
.y6b{bottom:417.522139px;}
.y1e{bottom:417.944550px;}
.y1f8{bottom:424.938300px;}
.y1b8{bottom:424.941300px;}
.y50{bottom:425.363850px;}
.ye5{bottom:425.378850px;}
.y177{bottom:430.796700px;}
.y1d{bottom:432.944550px;}
.y140{bottom:434.436600px;}
.y1f7{bottom:439.938300px;}
.y1b7{bottom:439.941300px;}
.y6e{bottom:440.750250px;}
.y4f{bottom:443.363850px;}
.ye4{bottom:443.378850px;}
.y87{bottom:445.147800px;}
.y176{bottom:445.796700px;}
.y1c{bottom:447.944550px;}
.y141{bottom:452.784600px;}
.y1f6{bottom:454.938300px;}
.y1b6{bottom:454.941300px;}
.y71{bottom:459.593250px;}
.y175{bottom:460.796700px;}
.y4e{bottom:461.363850px;}
.ye3{bottom:461.378850px;}
.y1b{bottom:462.944550px;}
.y1f5{bottom:469.938300px;}
.y1b5{bottom:469.941300px;}
.y142{bottom:471.132600px;}
.y174{bottom:475.796700px;}
.y1a{bottom:477.944550px;}
.y4d{bottom:479.363850px;}
.ye2{bottom:479.378850px;}
.y1f4{bottom:484.938300px;}
.y1b4{bottom:484.941300px;}
.y143{bottom:489.480600px;}
.y173{bottom:490.796700px;}
.y19{bottom:492.944550px;}
.y4c{bottom:497.363850px;}
.ye1{bottom:497.378850px;}
.ycc{bottom:497.812350px;}
.y13b{bottom:498.199650px;}
.y1f3{bottom:499.938300px;}
.y1b3{bottom:499.941300px;}
.y172{bottom:505.796700px;}
.y144{bottom:507.828600px;}
.y18{bottom:507.944550px;}
.y15b{bottom:512.787450px;}
.y1f2{bottom:514.938300px;}
.y1b2{bottom:514.941300px;}
.y4b{bottom:515.363850px;}
.ye0{bottom:515.378850px;}
.y171{bottom:520.796700px;}
.y17{bottom:522.944550px;}
.y128{bottom:524.915550px;}
.y126{bottom:524.918700px;}
.y145{bottom:526.176600px;}
.y1f1{bottom:529.938300px;}
.y1b1{bottom:529.941300px;}
.y4a{bottom:533.363850px;}
.ydf{bottom:533.378850px;}
.y170{bottom:535.796700px;}
.y16{bottom:537.944550px;}
.y146{bottom:544.524600px;}
.y1f0{bottom:544.938300px;}
.y1b0{bottom:544.941300px;}
.y16f{bottom:550.796700px;}
.y49{bottom:551.363850px;}
.yde{bottom:551.378850px;}
.ya1{bottom:551.502600px;}
.y15{bottom:552.944550px;}
.y1ef{bottom:559.938300px;}
.y1af{bottom:559.941300px;}
.y147{bottom:562.872600px;}
.y16e{bottom:565.796700px;}
.y14{bottom:567.944550px;}
.y48{bottom:569.363850px;}
.ydd{bottom:569.378850px;}
.ya0{bottom:569.502600px;}
.y1ee{bottom:574.938300px;}
.y1ae{bottom:574.940700px;}
.y21b{bottom:574.941300px;}
.y16d{bottom:580.796700px;}
.y148{bottom:581.220600px;}
.y13{bottom:582.944550px;}
.y125{bottom:585.596700px;}
.y47{bottom:587.363850px;}
.ydc{bottom:587.378850px;}
.y9f{bottom:587.502600px;}
.y1ed{bottom:589.938300px;}
.y1ad{bottom:589.940700px;}
.y21a{bottom:589.941300px;}
.yff{bottom:591.577200px;}
.y16c{bottom:595.796700px;}
.y12{bottom:597.944550px;}
.y11e{bottom:599.434500px;}
.y149{bottom:599.568600px;}
.y124{bottom:601.340700px;}
.y1ec{bottom:604.938300px;}
.y1ac{bottom:604.940700px;}
.y219{bottom:604.941300px;}
.y46{bottom:605.363850px;}
.ydb{bottom:605.378850px;}
.y9e{bottom:605.502600px;}
.yfe{bottom:607.321200px;}
.y16b{bottom:610.796700px;}
.y13e{bottom:617.040600px;}
.y123{bottom:617.084700px;}
.y1eb{bottom:619.938300px;}
.y1ab{bottom:619.940700px;}
.y218{bottom:619.941300px;}
.yfd{bottom:623.065200px;}
.y45{bottom:623.363850px;}
.yda{bottom:623.378850px;}
.y9d{bottom:623.502600px;}
.y16a{bottom:625.796700px;}
.y1ea{bottom:634.938300px;}
.y1aa{bottom:634.940700px;}
.y217{bottom:634.941300px;}
.y169{bottom:640.796700px;}
.y44{bottom:641.363850px;}
.yd9{bottom:641.378850px;}
.y9c{bottom:641.502600px;}
.y11{bottom:646.688550px;}
.y103{bottom:648.225000px;}
.y1e9{bottom:649.938300px;}
.y1a9{bottom:649.940700px;}
.y216{bottom:649.941300px;}
.y110{bottom:652.121550px;}
.y13a{bottom:653.877150px;}
.y168{bottom:655.796700px;}
.y43{bottom:659.363850px;}
.yd8{bottom:659.378850px;}
.y9b{bottom:659.502600px;}
.y10{bottom:661.088550px;}
.y1e8{bottom:664.938300px;}
.y1a8{bottom:664.940700px;}
.y215{bottom:664.941300px;}
.y10b{bottom:667.594950px;}
.y10f{bottom:667.601550px;}
.y12e{bottom:670.353150px;}
.y167{bottom:670.796700px;}
.ycd{bottom:677.228850px;}
.y11d{bottom:677.243850px;}
.y42{bottom:677.363850px;}
.yd7{bottom:677.378850px;}
.y9a{bottom:677.502600px;}
.y119{bottom:677.513850px;}
.y105{bottom:678.504450px;}
.y1e7{bottom:679.938300px;}
.y1a7{bottom:679.940700px;}
.y214{bottom:679.941300px;}
.y12f{bottom:681.669150px;}
.y166{bottom:685.796700px;}
.yf{bottom:688.244550px;}
.ycb{bottom:690.213900px;}
.y1e6{bottom:694.938300px;}
.y1a6{bottom:694.940700px;}
.y213{bottom:694.941300px;}
.y11c{bottom:695.243850px;}
.y41{bottom:695.363850px;}
.yd6{bottom:695.378850px;}
.y99{bottom:695.502600px;}
.y118{bottom:695.513850px;}
.y130{bottom:700.017150px;}
.y165{bottom:700.796700px;}
.y106{bottom:704.314950px;}
.y1e5{bottom:709.938300px;}
.y1a5{bottom:709.940700px;}
.y212{bottom:709.941300px;}
.y11b{bottom:713.243850px;}
.y40{bottom:713.363850px;}
.yd5{bottom:713.378850px;}
.y98{bottom:713.502600px;}
.y164{bottom:715.796700px;}
.y131{bottom:718.365150px;}
.y1e4{bottom:724.938300px;}
.y1a4{bottom:724.940700px;}
.y211{bottom:724.941300px;}
.ye{bottom:726.862500px;}
.y163{bottom:730.796700px;}
.y112{bottom:731.273550px;}
.y107{bottom:731.290950px;}
.y3f{bottom:731.363850px;}
.yc4{bottom:731.378850px;}
.y97{bottom:731.502600px;}
.yb2{bottom:731.513850px;}
.y132{bottom:736.713150px;}
.yd{bottom:739.244550px;}
.y1e3{bottom:739.938300px;}
.y1a3{bottom:739.940700px;}
.y210{bottom:739.941300px;}
.y162{bottom:745.796700px;}
.y155{bottom:746.382900px;}
.y11a{bottom:749.243850px;}
.y3e{bottom:749.363850px;}
.yc3{bottom:749.378850px;}
.y96{bottom:749.502600px;}
.yb1{bottom:749.513850px;}
.y1e2{bottom:754.938300px;}
.y1a2{bottom:754.940700px;}
.y20f{bottom:754.941300px;}
.y133{bottom:755.061150px;}
.y108{bottom:758.278950px;}
.yc{bottom:759.862500px;}
.y161{bottom:760.796700px;}
.y154{bottom:762.126900px;}
.y3d{bottom:767.363850px;}
.yc2{bottom:767.378850px;}
.y95{bottom:767.502600px;}
.yb0{bottom:767.513850px;}
.y1e1{bottom:769.938300px;}
.y1a1{bottom:769.940700px;}
.yb{bottom:772.244550px;}
.y134{bottom:773.409150px;}
.y160{bottom:775.796700px;}
.y1e0{bottom:784.938300px;}
.y1a0{bottom:784.940700px;}
.y109{bottom:785.254950px;}
.y3c{bottom:785.363850px;}
.yc1{bottom:785.378850px;}
.y94{bottom:785.502600px;}
.y157{bottom:789.072300px;}
.y15f{bottom:790.796700px;}
.y135{bottom:791.757150px;}
.ya{bottom:792.862500px;}
.y111{bottom:797.645550px;}
.y10e{bottom:799.003800px;}
.y10c{bottom:799.033200px;}
.y1df{bottom:799.938300px;}
.y19f{bottom:799.940700px;}
.y3b{bottom:803.363850px;}
.yc0{bottom:803.378850px;}
.y93{bottom:803.502600px;}
.yaf{bottom:803.513850px;}
.y15e{bottom:805.796700px;}
.y9{bottom:809.362500px;}
.y136{bottom:810.105150px;}
.y10a{bottom:812.230950px;}
.y1de{bottom:814.938300px;}
.y19e{bottom:814.940700px;}
.y114{bottom:817.179000px;}
.y3a{bottom:821.363850px;}
.ybf{bottom:821.378850px;}
.y92{bottom:821.502600px;}
.y8{bottom:821.744550px;}
.y113{bottom:822.528600px;}
.y137{bottom:828.453150px;}
.y1dd{bottom:829.938300px;}
.y19d{bottom:829.940700px;}
.y156{bottom:831.685050px;}
.y15d{bottom:839.228850px;}
.y39{bottom:839.363850px;}
.ybe{bottom:839.378850px;}
.y91{bottom:839.502600px;}
.y7{bottom:842.362500px;}
.y1dc{bottom:844.938300px;}
.y19c{bottom:844.940700px;}
.y138{bottom:846.801150px;}
.y38{bottom:857.363850px;}
.ybd{bottom:857.378850px;}
.y90{bottom:857.502600px;}
.y6{bottom:857.631300px;}
.y1db{bottom:859.938300px;}
.y19b{bottom:859.940700px;}
.y139{bottom:865.149150px;}
.y1da{bottom:874.938300px;}
.y19a{bottom:874.940700px;}
.y37{bottom:875.363850px;}
.ya9{bottom:875.367600px;}
.ybc{bottom:875.378850px;}
.y8f{bottom:875.502600px;}
.yfc{bottom:875.513850px;}
.y5{bottom:880.879800px;}
.y1d9{bottom:889.938300px;}
.y199{bottom:889.940700px;}
.y36{bottom:893.363850px;}
.ya8{bottom:893.367600px;}
.ybb{bottom:893.378850px;}
.y8e{bottom:893.502600px;}
.yfb{bottom:893.513850px;}
.y1d8{bottom:904.938300px;}
.y198{bottom:904.940700px;}
.y4{bottom:908.269200px;}
.y35{bottom:911.363850px;}
.ya7{bottom:911.367600px;}
.yba{bottom:911.378850px;}
.y8d{bottom:911.502600px;}
.yfa{bottom:911.513850px;}
.y1d7{bottom:919.938300px;}
.y197{bottom:919.940700px;}
.y34{bottom:929.363850px;}
.ya6{bottom:929.367600px;}
.yb9{bottom:929.378850px;}
.y8c{bottom:929.502600px;}
.yf9{bottom:929.513850px;}
.y1d6{bottom:934.938300px;}
.y196{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.y33{bottom:947.363850px;}
.ya5{bottom:947.367600px;}
.yb8{bottom:947.378850px;}
.y8b{bottom:947.502600px;}
.yf8{bottom:947.513850px;}
.y1d5{bottom:949.938300px;}
.y195{bottom:949.940700px;}
.y1d4{bottom:964.938300px;}
.y194{bottom:964.940700px;}
.y32{bottom:965.363850px;}
.ya4{bottom:965.367600px;}
.yb7{bottom:965.378850px;}
.y8a{bottom:965.502600px;}
.y1d3{bottom:979.938300px;}
.y193{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y31{bottom:983.363850px;}
.ya3{bottom:983.367600px;}
.yb6{bottom:983.378850px;}
.yf7{bottom:983.513850px;}
.y1d2{bottom:994.938300px;}
.y192{bottom:994.940700px;}
.y30{bottom:1001.363850px;}
.ya2{bottom:1001.367600px;}
.yb5{bottom:1001.378850px;}
.y89{bottom:1001.502600px;}
.y1d1{bottom:1009.938300px;}
.y191{bottom:1009.940700px;}
.y2f{bottom:1019.363850px;}
.yb4{bottom:1019.378850px;}
.y1d0{bottom:1024.938300px;}
.y190{bottom:1024.940700px;}
.y2e{bottom:1037.363850px;}
.y88{bottom:1037.367600px;}
.yb3{bottom:1037.378850px;}
.y1cf{bottom:1039.938300px;}
.y18f{bottom:1039.940700px;}
.y2b{bottom:1070.769450px;}
.y64{bottom:1086.066450px;}
.y2a{bottom:1086.069450px;}
.h7{height:20.995312px;}
.h1c{height:21.602555px;}
.h2{height:31.171875px;}
.ha{height:34.945312px;}
.h8{height:34.992188px;}
.h16{height:35.272758px;}
.hb{height:35.554688px;}
.hc{height:35.580600px;}
.h9{height:35.625000px;}
.h1e{height:35.637000px;}
.h14{height:37.792336px;}
.h15{height:37.792476px;}
.h17{height:37.792841px;}
.hf{height:37.851562px;}
.h11{height:39.842555px;}
.hd{height:43.681641px;}
.h19{height:44.443359px;}
.he{height:44.531250px;}
.h18{height:47.299350px;}
.h1a{height:47.314350px;}
.h12{height:48.696703px;}
.h13{height:51.719930px;}
.h6{height:52.040025px;}
.h5{height:52.046025px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h1b{height:200.892000px;}
.h10{height:343.311000px;}
.h1d{height:508.503000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w4{width:231.604500px;}
.w3{width:416.251500px;}
.w2{width:718.579500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:10.298700px;}
.x10{left:18.564600px;}
.x3e{left:40.312950px;}
.x2f{left:61.496400px;}
.x36{left:70.582650px;}
.xa{left:76.535400px;}
.x27{left:78.661500px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x43{left:99.921300px;}
.x11{left:105.197100px;}
.x4c{left:106.295400px;}
.xb{left:110.555400px;}
.x3{left:125.439600px;}
.x4d{left:127.559100px;}
.x6{left:131.816400px;}
.x1e{left:137.009400px;}
.x22{left:143.847300px;}
.x39{left:151.008000px;}
.x4{left:161.571600px;}
.x1f{left:164.467200px;}
.x23{left:165.982200px;}
.x3c{left:170.968950px;}
.x3b{left:176.440950px;}
.x3a{left:180.580950px;}
.x41{left:192.216900px;}
.x4b{left:194.285400px;}
.x40{left:203.868900px;}
.x5{left:212.876400px;}
.x37{left:217.381800px;}
.x3d{left:223.612950px;}
.x2a{left:227.700000px;}
.x29{left:232.360350px;}
.x2c{left:238.052100px;}
.x44{left:243.357300px;}
.x12{left:244.614600px;}
.x2d{left:257.913040px;}
.x2e{left:262.523102px;}
.x34{left:265.779450px;}
.x20{left:274.987518px;}
.x13{left:284.638164px;}
.x28{left:288.070800px;}
.x35{left:310.528200px;}
.x32{left:317.670099px;}
.x1c{left:320.917800px;}
.x3f{left:343.756950px;}
.x42{left:365.928900px;}
.x30{left:387.556500px;}
.x16{left:397.288950px;}
.x9{left:455.041500px;}
.xc{left:457.100400px;}
.x31{left:474.847800px;}
.x24{left:478.342200px;}
.x7{left:480.476400px;}
.x45{left:486.943500px;}
.x47{left:488.644350px;}
.xd{left:491.120400px;}
.x38{left:496.945800px;}
.x4e{left:508.055100px;}
.x25{left:512.362200px;}
.x33{left:535.686097px;}
.x1d{left:565.539150px;}
.x15{left:583.715036px;}
.x14{left:600.822900px;}
.x21{left:605.153100px;}
.x46{left:608.334000px;}
.x48{left:615.137100px;}
.x18{left:649.820400px;}
.xf{left:663.492300px;}
.x2{left:704.338650px;}
.x17{left:712.703250px;}
.x49{left:717.130200px;}
.xe{left:724.221150px;}
.x4a{left:739.336350px;}
.x26{left:745.480950px;}
.x1b{left:756.567709px;}
.x19{left:786.522600px;}
.x1a{left:806.076487px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.293867pt;}
.v1{vertical-align:20.138133pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls4a{letter-spacing:-0.320000pt;}
.ls46{letter-spacing:-0.266667pt;}
.lsa0{letter-spacing:-0.256000pt;}
.ls4b{letter-spacing:-0.213333pt;}
.ls44{letter-spacing:-0.160000pt;}
.ls55{letter-spacing:-0.106667pt;}
.ls56{letter-spacing:-0.053333pt;}
.ls8d{letter-spacing:-0.042667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.005333pt;}
.ls9c{letter-spacing:0.042667pt;}
.ls1f{letter-spacing:0.053333pt;}
.ls6{letter-spacing:0.085333pt;}
.ls57{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.106667pt;}
.ls91{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls87{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls59{letter-spacing:0.298667pt;}
.ls15{letter-spacing:0.320000pt;}
.ls5a{letter-spacing:0.341333pt;}
.ls29{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.384000pt;}
.ls36{letter-spacing:0.426667pt;}
.ls79{letter-spacing:0.469333pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls72{letter-spacing:0.512000pt;}
.ls49{letter-spacing:0.533333pt;}
.ls40{letter-spacing:0.544000pt;}
.ls5b{letter-spacing:0.554667pt;}
.ls2c{letter-spacing:0.586667pt;}
.ls76{letter-spacing:0.597333pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.682667pt;}
.ls2b{letter-spacing:0.693333pt;}
.ls95{letter-spacing:0.725333pt;}
.ls6a{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.746667pt;}
.ls5e{letter-spacing:0.768000pt;}
.ls20{letter-spacing:0.800000pt;}
.ls90{letter-spacing:0.810667pt;}
.ls4{letter-spacing:0.853333pt;}
.ls7f{letter-spacing:0.896000pt;}
.ls16{letter-spacing:0.906667pt;}
.ls65{letter-spacing:0.928000pt;}
.ls98{letter-spacing:0.938667pt;}
.ls24{letter-spacing:0.960000pt;}
.ls8b{letter-spacing:0.981333pt;}
.ls3c{letter-spacing:1.013333pt;}
.ls85{letter-spacing:1.024000pt;}
.ls4c{letter-spacing:1.066667pt;}
.ls7b{letter-spacing:1.109333pt;}
.ls3d{letter-spacing:1.120000pt;}
.ls5d{letter-spacing:1.152000pt;}
.ls22{letter-spacing:1.173333pt;}
.ls7c{letter-spacing:1.194667pt;}
.lsf{letter-spacing:1.226667pt;}
.ls8f{letter-spacing:1.237333pt;}
.ls35{letter-spacing:1.280000pt;}
.ls6c{letter-spacing:1.322667pt;}
.ls54{letter-spacing:1.333333pt;}
.ls6e{letter-spacing:1.365333pt;}
.ls34{letter-spacing:1.386667pt;}
.ls60{letter-spacing:1.408000pt;}
.ls25{letter-spacing:1.440000pt;}
.ls2{letter-spacing:1.450667pt;}
.ls13{letter-spacing:1.493333pt;}
.ls6f{letter-spacing:1.536000pt;}
.ls1c{letter-spacing:1.546667pt;}
.ls89{letter-spacing:1.578667pt;}
.ls47{letter-spacing:1.600000pt;}
.ls80{letter-spacing:1.621333pt;}
.ls10{letter-spacing:1.653333pt;}
.ls7a{letter-spacing:1.664000pt;}
.ls31{letter-spacing:1.706667pt;}
.ls74{letter-spacing:1.749333pt;}
.ls3f{letter-spacing:1.760000pt;}
.ls8c{letter-spacing:1.792000pt;}
.ls39{letter-spacing:1.813333pt;}
.ls73{letter-spacing:1.834667pt;}
.ls30{letter-spacing:1.866667pt;}
.ls27{letter-spacing:1.920000pt;}
.ls66{letter-spacing:1.952000pt;}
.ls6d{letter-spacing:1.962667pt;}
.ls14{letter-spacing:1.973333pt;}
.ls2e{letter-spacing:2.026667pt;}
.ls99{letter-spacing:2.048000pt;}
.ls45{letter-spacing:2.080000pt;}
.ls77{letter-spacing:2.090667pt;}
.ls23{letter-spacing:2.133333pt;}
.ls93{letter-spacing:2.176000pt;}
.ls18{letter-spacing:2.186667pt;}
.ls7e{letter-spacing:2.218667pt;}
.ls52{letter-spacing:2.240000pt;}
.ls81{letter-spacing:2.261333pt;}
.ls33{letter-spacing:2.293333pt;}
.ls82{letter-spacing:2.304000pt;}
.ls26{letter-spacing:2.346667pt;}
.ls9b{letter-spacing:2.389333pt;}
.ls3b{letter-spacing:2.400000pt;}
.ls71{letter-spacing:2.432000pt;}
.lsb{letter-spacing:2.453333pt;}
.ls5f{letter-spacing:2.474667pt;}
.ls63{letter-spacing:2.506667pt;}
.ls8a{letter-spacing:2.517333pt;}
.ls64{letter-spacing:2.560000pt;}
.ls9d{letter-spacing:2.602667pt;}
.lsd{letter-spacing:2.613333pt;}
.ls97{letter-spacing:2.688000pt;}
.ls37{letter-spacing:2.720000pt;}
.ls38{letter-spacing:2.773333pt;}
.ls88{letter-spacing:2.816000pt;}
.ls17{letter-spacing:2.826667pt;}
.ls84{letter-spacing:2.858667pt;}
.ls68{letter-spacing:2.880000pt;}
.ls75{letter-spacing:2.901333pt;}
.ls2d{letter-spacing:2.933333pt;}
.ls83{letter-spacing:2.944000pt;}
.ls42{letter-spacing:2.986667pt;}
.ls9a{letter-spacing:3.029333pt;}
.ls70{letter-spacing:3.114667pt;}
.ls62{letter-spacing:3.146667pt;}
.ls53{letter-spacing:3.200000pt;}
.ls9{letter-spacing:3.253333pt;}
.ls1e{letter-spacing:3.306667pt;}
.ls7d{letter-spacing:3.370667pt;}
.ls28{letter-spacing:3.413333pt;}
.ls8e{letter-spacing:3.498667pt;}
.lsa{letter-spacing:3.520000pt;}
.ls96{letter-spacing:3.541333pt;}
.ls3a{letter-spacing:3.573333pt;}
.ls32{letter-spacing:3.626667pt;}
.ls92{letter-spacing:3.669333pt;}
.ls6b{letter-spacing:3.680000pt;}
.ls94{letter-spacing:3.712000pt;}
.ls48{letter-spacing:3.733333pt;}
.ls9e{letter-spacing:3.754667pt;}
.ls4f{letter-spacing:3.786667pt;}
.ls4d{letter-spacing:3.840000pt;}
.ls61{letter-spacing:3.946667pt;}
.ls9f{letter-spacing:4.181333pt;}
.ls50{letter-spacing:4.213333pt;}
.ls86{letter-spacing:4.224000pt;}
.lsc{letter-spacing:4.266667pt;}
.ls78{letter-spacing:4.352000pt;}
.ls1d{letter-spacing:4.800000pt;}
.ls43{letter-spacing:4.853333pt;}
.ls41{letter-spacing:5.120000pt;}
.ls58{letter-spacing:5.173333pt;}
.ls67{letter-spacing:5.226667pt;}
.ls4e{letter-spacing:5.760000pt;}
.ls5c{letter-spacing:6.026667pt;}
.ls1b{letter-spacing:6.186667pt;}
.ls51{letter-spacing:6.933333pt;}
.ls3e{letter-spacing:7.146667pt;}
.ls69{letter-spacing:9.120000pt;}
.ws6a{word-spacing:-19.093333pt;}
.ws1{word-spacing:-18.080000pt;}
.ws14{word-spacing:-17.600000pt;}
.ws12{word-spacing:-16.266667pt;}
.wsb4{word-spacing:-16.042667pt;}
.ws9a{word-spacing:-15.573333pt;}
.ws94{word-spacing:-15.530667pt;}
.ws13{word-spacing:-15.040000pt;}
.ws92{word-spacing:-14.848000pt;}
.ws11{word-spacing:-14.826667pt;}
.ws9c{word-spacing:-14.805333pt;}
.ws7b{word-spacing:-14.720000pt;}
.ws9d{word-spacing:-14.421333pt;}
.ws7c{word-spacing:-14.378667pt;}
.ws97{word-spacing:-13.696000pt;}
.ws90{word-spacing:-13.610667pt;}
.ws9b{word-spacing:-13.482667pt;}
.ws74{word-spacing:-13.397333pt;}
.ws75{word-spacing:-13.354667pt;}
.wsb3{word-spacing:-13.141333pt;}
.ws91{word-spacing:-13.098667pt;}
.ws78{word-spacing:-13.056000pt;}
.ws7a{word-spacing:-13.013333pt;}
.ws77{word-spacing:-12.714667pt;}
.ws98{word-spacing:-12.629333pt;}
.ws15{word-spacing:-12.602667pt;}
.ws95{word-spacing:-12.586667pt;}
.ws79{word-spacing:-12.501333pt;}
.wsb2{word-spacing:-12.330667pt;}
.ws96{word-spacing:-12.245333pt;}
.ws7d{word-spacing:-12.202667pt;}
.ws99{word-spacing:-12.160000pt;}
.ws76{word-spacing:-12.117333pt;}
.ws4b{word-spacing:-11.861333pt;}
.ws93{word-spacing:-11.818667pt;}
.ws63{word-spacing:-10.848000pt;}
.ws62{word-spacing:-9.824000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws69{word-spacing:-9.632000pt;}
.ws2f{word-spacing:-9.440000pt;}
.ws42{word-spacing:-8.992000pt;}
.ws41{word-spacing:-8.896000pt;}
.wsbc{word-spacing:-4.181333pt;}
.wsa8{word-spacing:-3.712000pt;}
.ws22{word-spacing:-3.626667pt;}
.ws5{word-spacing:-3.226667pt;}
.ws80{word-spacing:-3.114667pt;}
.wsa1{word-spacing:-2.986667pt;}
.wsad{word-spacing:-2.944000pt;}
.ws8d{word-spacing:-2.517333pt;}
.ws3{word-spacing:-2.368000pt;}
.wsac{word-spacing:-2.133333pt;}
.ws30{word-spacing:-1.973333pt;}
.wsa6{word-spacing:-1.834667pt;}
.ws9e{word-spacing:-1.749333pt;}
.wsa9{word-spacing:-1.621333pt;}
.ws7f{word-spacing:-1.536000pt;}
.ws21{word-spacing:-1.493333pt;}
.wsb7{word-spacing:-1.280000pt;}
.ws9f{word-spacing:-1.237333pt;}
.ws65{word-spacing:-1.173333pt;}
.ws4{word-spacing:-1.056000pt;}
.ws87{word-spacing:-1.024000pt;}
.ws84{word-spacing:-0.853333pt;}
.ws8c{word-spacing:-0.768000pt;}
.wsa4{word-spacing:-0.725333pt;}
.ws82{word-spacing:-0.640000pt;}
.ws8e{word-spacing:-0.597333pt;}
.ws6b{word-spacing:-0.586667pt;}
.ws8a{word-spacing:-0.512000pt;}
.wsa5{word-spacing:-0.469333pt;}
.ws61{word-spacing:-0.426667pt;}
.ws88{word-spacing:-0.384000pt;}
.ws8f{word-spacing:-0.341333pt;}
.wsa7{word-spacing:-0.298667pt;}
.ws58{word-spacing:-0.266667pt;}
.ws53{word-spacing:-0.213333pt;}
.wsab{word-spacing:-0.170667pt;}
.wsbb{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.042667pt;}
.ws3f{word-spacing:0.053333pt;}
.wsba{word-spacing:0.085333pt;}
.ws66{word-spacing:0.106667pt;}
.ws38{word-spacing:0.160000pt;}
.wsc{word-spacing:0.170667pt;}
.ws24{word-spacing:0.213333pt;}
.wsb1{word-spacing:0.298667pt;}
.ws6f{word-spacing:0.320000pt;}
.ws56{word-spacing:0.373333pt;}
.wsb5{word-spacing:0.469333pt;}
.ws5a{word-spacing:0.480000pt;}
.ws20{word-spacing:0.586667pt;}
.ws18{word-spacing:0.693333pt;}
.ws7e{word-spacing:0.725333pt;}
.ws19{word-spacing:0.746667pt;}
.ws6d{word-spacing:0.800000pt;}
.ws9{word-spacing:0.810667pt;}
.ws47{word-spacing:0.853333pt;}
.ws67{word-spacing:0.906667pt;}
.ws8b{word-spacing:0.938667pt;}
.ws89{word-spacing:0.981333pt;}
.ws37{word-spacing:1.013333pt;}
.ws39{word-spacing:1.024000pt;}
.ws23{word-spacing:1.120000pt;}
.ws44{word-spacing:1.173333pt;}
.ws27{word-spacing:1.226667pt;}
.ws3e{word-spacing:1.280000pt;}
.ws54{word-spacing:1.365333pt;}
.wsb{word-spacing:1.408000pt;}
.ws16{word-spacing:1.440000pt;}
.ws81{word-spacing:1.578667pt;}
.ws35{word-spacing:1.653333pt;}
.ws5c{word-spacing:1.664000pt;}
.ws1b{word-spacing:1.706667pt;}
.ws85{word-spacing:1.749333pt;}
.ws1d{word-spacing:1.760000pt;}
.ws2a{word-spacing:1.813333pt;}
.ws40{word-spacing:1.866667pt;}
.ws6e{word-spacing:1.920000pt;}
.ws3a{word-spacing:2.090667pt;}
.ws83{word-spacing:2.133333pt;}
.ws6{word-spacing:2.218667pt;}
.ws1c{word-spacing:2.240000pt;}
.wsb6{word-spacing:2.261333pt;}
.ws3c{word-spacing:2.293333pt;}
.ws71{word-spacing:2.400000pt;}
.ws86{word-spacing:2.432000pt;}
.ws57{word-spacing:2.453333pt;}
.ws59{word-spacing:2.506667pt;}
.wsae{word-spacing:2.517333pt;}
.ws17{word-spacing:2.666667pt;}
.ws31{word-spacing:2.720000pt;}
.ws55{word-spacing:2.730667pt;}
.wsd{word-spacing:2.773333pt;}
.wsb8{word-spacing:2.816000pt;}
.ws43{word-spacing:2.826667pt;}
.ws3b{word-spacing:2.880000pt;}
.ws5b{word-spacing:2.901333pt;}
.ws68{word-spacing:2.986667pt;}
.wsb9{word-spacing:3.029333pt;}
.wse{word-spacing:3.040000pt;}
.ws36{word-spacing:3.093333pt;}
.wsa{word-spacing:3.114667pt;}
.ws28{word-spacing:3.146667pt;}
.wsaf{word-spacing:3.285333pt;}
.wsaa{word-spacing:3.328000pt;}
.ws49{word-spacing:3.360000pt;}
.wsb0{word-spacing:3.370667pt;}
.ws1e{word-spacing:3.413333pt;}
.ws3d{word-spacing:3.466667pt;}
.wsa3{word-spacing:3.498667pt;}
.ws32{word-spacing:3.520000pt;}
.ws2b{word-spacing:3.573333pt;}
.ws52{word-spacing:3.626667pt;}
.ws51{word-spacing:3.680000pt;}
.wsa0{word-spacing:3.712000pt;}
.ws6c{word-spacing:3.786667pt;}
.ws25{word-spacing:3.840000pt;}
.ws8{word-spacing:3.882667pt;}
.ws7{word-spacing:3.925333pt;}
.ws46{word-spacing:3.946667pt;}
.ws73{word-spacing:4.000000pt;}
.ws4a{word-spacing:4.106667pt;}
.ws64{word-spacing:4.213333pt;}
.ws33{word-spacing:4.266667pt;}
.ws1a{word-spacing:4.320000pt;}
.ws26{word-spacing:4.426667pt;}
.ws72{word-spacing:4.533333pt;}
.ws70{word-spacing:4.586667pt;}
.ws34{word-spacing:4.640000pt;}
.ws1f{word-spacing:4.693333pt;}
.ws45{word-spacing:4.746667pt;}
.ws48{word-spacing:4.800000pt;}
.ws10{word-spacing:4.853333pt;}
.wsf{word-spacing:4.906667pt;}
.ws29{word-spacing:5.066667pt;}
.ws4c{word-spacing:33.109333pt;}
.ws4e{word-spacing:33.706667pt;}
.ws5e{word-spacing:36.736000pt;}
.ws5d{word-spacing:61.226667pt;}
.ws50{word-spacing:65.535127pt;}
.ws2c{word-spacing:71.719954pt;}
.ws4d{word-spacing:113.920000pt;}
.ws2d{word-spacing:125.450271pt;}
.ws60{word-spacing:204.544000pt;}
.ws5f{word-spacing:495.061333pt;}
.ws4f{word-spacing:674.261333pt;}
.ws2e{word-spacing:863.216208pt;}
._b{margin-left:-2576.112000pt;}
._e{margin-left:-2554.941333pt;}
._2e{margin-left:-1216.085333pt;}
._31{margin-left:-710.613333pt;}
._3{margin-left:-7.270400pt;}
._2{margin-left:-5.712000pt;}
._1{margin-left:-4.778667pt;}
._6{margin-left:-3.029333pt;}
._0{margin-left:-2.053333pt;}
._7{margin-left:-0.981333pt;}
._4{width:1.056000pt;}
._8{width:2.166933pt;}
._5{width:3.188800pt;}
._28{width:4.586667pt;}
._9{width:6.346667pt;}
._44{width:7.306667pt;}
._a{width:8.426667pt;}
._29{width:45.909333pt;}
._2c{width:46.800000pt;}
._2a{width:58.240000pt;}
._30{width:65.872000pt;}
._15{width:69.125333pt;}
._2b{width:70.394667pt;}
._2f{width:74.965333pt;}
._d{width:79.545684pt;}
._10{width:89.045333pt;}
._c{width:90.234486pt;}
._1a{width:91.562667pt;}
._11{width:96.218667pt;}
._1f{width:98.688000pt;}
._1e{width:116.309333pt;}
._19{width:117.760000pt;}
._f{width:119.168000pt;}
._22{width:120.362667pt;}
._16{width:122.709333pt;}
._17{width:127.274667pt;}
._24{width:128.170667pt;}
._36{width:130.986667pt;}
._37{width:132.224000pt;}
._35{width:145.322667pt;}
._14{width:149.461333pt;}
._3a{width:157.909333pt;}
._1d{width:158.848000pt;}
._18{width:160.426667pt;}
._43{width:163.072000pt;}
._12{width:168.533333pt;}
._23{width:170.709333pt;}
._40{width:180.864000pt;}
._34{width:201.813333pt;}
._3d{width:217.600000pt;}
._13{width:232.704000pt;}
._3c{width:238.848000pt;}
._25{width:239.829333pt;}
._39{width:249.258667pt;}
._3b{width:250.538667pt;}
._1b{width:251.818667pt;}
._20{width:258.944000pt;}
._42{width:268.458667pt;}
._41{width:280.064000pt;}
._38{width:283.008000pt;}
._3f{width:286.165333pt;}
._3e{width:297.941333pt;}
._1c{width:388.309333pt;}
._21{width:400.170667pt;}
._26{width:416.640000pt;}
._27{width:439.338667pt;}
._2d{width:486.528000pt;}
._32{width:533.461333pt;}
._33{width:617.813333pt;}
.fs5{font-size:25.600000pt;}
.fs11{font-size:25.872533pt;}
.fs10{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fse{font-size:42.244800pt;}
.fs6{font-size:42.666667pt;}
.fsc{font-size:45.262400pt;}
.fsd{font-size:45.262568pt;}
.fsf{font-size:45.263005pt;}
.fs8{font-size:45.333333pt;}
.fs9{font-size:47.717867pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:58.322133pt;}
.fs3{font-size:58.666667pt;}
.fsb{font-size:61.942933pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:40.614267pt;}
.y2d{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y63{bottom:74.101200pt;}
.y2c{bottom:74.216800pt;}
.yd4{bottom:74.234533pt;}
.yf6{bottom:74.247867pt;}
.yac{bottom:74.456933pt;}
.y102{bottom:74.582400pt;}
.y122{bottom:74.759733pt;}
.y117{bottom:75.515733pt;}
.y18e{bottom:76.263733pt;}
.yca{bottom:81.808267pt;}
.y153{bottom:82.672800pt;}
.y20e{bottom:84.389600pt;}
.y1ce{bottom:84.392267pt;}
.yab{bottom:88.451600pt;}
.y101{bottom:88.577067pt;}
.y121{bottom:88.754400pt;}
.y116{bottom:89.510400pt;}
.y18d{bottom:89.597067pt;}
.y62{bottom:90.101200pt;}
.yd3{bottom:90.234533pt;}
.yf5{bottom:90.247867pt;}
.yc9{bottom:96.250933pt;}
.y152{bottom:97.115467pt;}
.y20d{bottom:97.722933pt;}
.y1cd{bottom:97.725600pt;}
.yaa{bottom:102.446267pt;}
.y100{bottom:102.571733pt;}
.y120{bottom:102.749067pt;}
.y18c{bottom:102.930400pt;}
.y115{bottom:103.505067pt;}
.y61{bottom:106.101200pt;}
.yd2{bottom:106.234533pt;}
.yf4{bottom:106.247867pt;}
.y23{bottom:108.011733pt;}
.yc8{bottom:110.693600pt;}
.y20c{bottom:111.056267pt;}
.y1cc{bottom:111.058933pt;}
.y151{bottom:111.558133pt;}
.y18b{bottom:116.263733pt;}
.y60{bottom:122.101200pt;}
.yd1{bottom:122.234533pt;}
.yf3{bottom:122.247867pt;}
.y65{bottom:123.810667pt;}
.y20b{bottom:124.389600pt;}
.y1cb{bottom:124.392267pt;}
.y150{bottom:126.000800pt;}
.y7e{bottom:127.682273pt;}
.y18a{bottom:129.597067pt;}
.y67{bottom:131.276933pt;}
.y75{bottom:131.811425pt;}
.y20a{bottom:137.722933pt;}
.y1ca{bottom:137.725600pt;}
.y5f{bottom:138.101200pt;}
.yd0{bottom:138.234533pt;}
.yf2{bottom:138.247867pt;}
.yc7{bottom:138.704267pt;}
.y14f{bottom:140.443467pt;}
.y189{bottom:142.930400pt;}
.y209{bottom:151.056267pt;}
.y1c9{bottom:151.058933pt;}
.y7d{bottom:152.925025pt;}
.y5e{bottom:154.101200pt;}
.ycf{bottom:154.234533pt;}
.yf1{bottom:154.247867pt;}
.y188{bottom:156.263733pt;}
.y28{bottom:157.065200pt;}
.y208{bottom:164.389600pt;}
.y1c8{bottom:164.392267pt;}
.y14e{bottom:166.224800pt;}
.y82{bottom:167.561733pt;}
.y10d{bottom:169.417733pt;}
.y187{bottom:169.597067pt;}
.yc6{bottom:169.661200pt;}
.y5d{bottom:170.101200pt;}
.yf0{bottom:170.247867pt;}
.y27{bottom:173.065200pt;}
.y207{bottom:177.722933pt;}
.y1c7{bottom:177.725600pt;}
.y7c{bottom:178.716532pt;}
.y186{bottom:182.930400pt;}
.y5c{bottom:186.101200pt;}
.yce{bottom:186.234533pt;}
.yef{bottom:186.247867pt;}
.y68{bottom:186.343351pt;}
.yc5{bottom:186.994533pt;}
.y26{bottom:189.065200pt;}
.y206{bottom:191.056267pt;}
.y1c6{bottom:191.058933pt;}
.y14d{bottom:192.006133pt;}
.y185{bottom:196.263733pt;}
.y74{bottom:200.298493pt;}
.y5b{bottom:202.101200pt;}
.yee{bottom:202.247867pt;}
.y7b{bottom:204.281379pt;}
.y205{bottom:204.389600pt;}
.y1c5{bottom:204.392267pt;}
.y25{bottom:205.065200pt;}
.y184{bottom:209.597067pt;}
.y83{bottom:210.996133pt;}
.y86{bottom:216.107600pt;}
.y204{bottom:217.722933pt;}
.y1c4{bottom:217.725600pt;}
.y5a{bottom:218.101200pt;}
.yed{bottom:218.247867pt;}
.y14c{bottom:220.729200pt;}
.y29{bottom:221.065200pt;}
.y183{bottom:222.930400pt;}
.y6c{bottom:223.554800pt;}
.yae{bottom:224.045067pt;}
.y7a{bottom:230.418840pt;}
.y203{bottom:231.056267pt;}
.y1c3{bottom:231.058933pt;}
.y59{bottom:234.101200pt;}
.yec{bottom:234.247867pt;}
.y182{bottom:236.263733pt;}
.y24{bottom:237.065200pt;}
.yad{bottom:238.039733pt;}
.y14b{bottom:238.062533pt;}
.y69{bottom:243.175331pt;}
.y202{bottom:244.389600pt;}
.y1c2{bottom:244.392267pt;}
.y181{bottom:249.597067pt;}
.y58{bottom:250.101200pt;}
.yeb{bottom:250.247867pt;}
.y84{bottom:251.287111pt;}
.y14a{bottom:255.395867pt;}
.y79{bottom:255.852463pt;}
.y201{bottom:257.722933pt;}
.y1c1{bottom:257.725600pt;}
.y76{bottom:262.768267pt;}
.y180{bottom:262.930400pt;}
.y57{bottom:266.101200pt;}
.yea{bottom:266.247867pt;}
.y73{bottom:268.010145pt;}
.y200{bottom:271.056267pt;}
.y1c0{bottom:271.058933pt;}
.y17f{bottom:276.263733pt;}
.y78{bottom:281.787124pt;}
.y56{bottom:282.101200pt;}
.ye9{bottom:282.247867pt;}
.y1ff{bottom:284.389600pt;}
.y1bf{bottom:284.392267pt;}
.y17e{bottom:289.597067pt;}
.y12b{bottom:293.027467pt;}
.y66{bottom:293.690000pt;}
.y15a{bottom:293.781600pt;}
.y81{bottom:294.926800pt;}
.y70{bottom:294.928267pt;}
.y1fe{bottom:297.722933pt;}
.y1be{bottom:297.725600pt;}
.y55{bottom:298.101200pt;}
.ye8{bottom:298.247867pt;}
.y6d{bottom:298.702869pt;}
.y127{bottom:300.767600pt;}
.y22{bottom:302.300933pt;}
.y6f{bottom:302.518233pt;}
.y17d{bottom:302.930400pt;}
.y6a{bottom:303.860528pt;}
.y77{bottom:306.850933pt;}
.y12a{bottom:307.022133pt;}
.y159{bottom:307.776267pt;}
.y12d{bottom:310.616000pt;}
.y1fd{bottom:311.056267pt;}
.y1bd{bottom:311.058933pt;}
.y54{bottom:314.101200pt;}
.ye7{bottom:314.247867pt;}
.y17c{bottom:316.263733pt;}
.y129{bottom:321.016800pt;}
.y158{bottom:321.770933pt;}
.y1fc{bottom:324.389600pt;}
.y1bc{bottom:324.392267pt;}
.y17b{bottom:329.597067pt;}
.y53{bottom:330.101200pt;}
.y21{bottom:331.506267pt;}
.y11f{bottom:332.510667pt;}
.y7f{bottom:333.477503pt;}
.y1fb{bottom:337.722933pt;}
.y1bb{bottom:337.725600pt;}
.y72{bottom:338.358210pt;}
.y12c{bottom:341.697333pt;}
.y17a{bottom:342.930400pt;}
.y20{bottom:344.839600pt;}
.y13d{bottom:345.163200pt;}
.y52{bottom:346.101200pt;}
.ye6{bottom:346.247867pt;}
.y15c{bottom:347.633733pt;}
.y80{bottom:348.735291pt;}
.y1fa{bottom:351.056267pt;}
.y1ba{bottom:351.058933pt;}
.y179{bottom:356.263733pt;}
.y1f{bottom:358.172933pt;}
.y13c{bottom:359.797867pt;}
.y51{bottom:362.101200pt;}
.y85{bottom:363.299199pt;}
.y1f9{bottom:364.389600pt;}
.y1b9{bottom:364.392267pt;}
.y178{bottom:369.597067pt;}
.y13f{bottom:369.856533pt;}
.y6b{bottom:371.130790pt;}
.y1e{bottom:371.506267pt;}
.y1f8{bottom:377.722933pt;}
.y1b8{bottom:377.725600pt;}
.y50{bottom:378.101200pt;}
.ye5{bottom:378.114533pt;}
.y177{bottom:382.930400pt;}
.y1d{bottom:384.839600pt;}
.y140{bottom:386.165867pt;}
.y1f7{bottom:391.056267pt;}
.y1b7{bottom:391.058933pt;}
.y6e{bottom:391.778000pt;}
.y4f{bottom:394.101200pt;}
.ye4{bottom:394.114533pt;}
.y87{bottom:395.686933pt;}
.y176{bottom:396.263733pt;}
.y1c{bottom:398.172933pt;}
.y141{bottom:402.475200pt;}
.y1f6{bottom:404.389600pt;}
.y1b6{bottom:404.392267pt;}
.y71{bottom:408.527333pt;}
.y175{bottom:409.597067pt;}
.y4e{bottom:410.101200pt;}
.ye3{bottom:410.114533pt;}
.y1b{bottom:411.506267pt;}
.y1f5{bottom:417.722933pt;}
.y1b5{bottom:417.725600pt;}
.y142{bottom:418.784533pt;}
.y174{bottom:422.930400pt;}
.y1a{bottom:424.839600pt;}
.y4d{bottom:426.101200pt;}
.ye2{bottom:426.114533pt;}
.y1f4{bottom:431.056267pt;}
.y1b4{bottom:431.058933pt;}
.y143{bottom:435.093867pt;}
.y173{bottom:436.263733pt;}
.y19{bottom:438.172933pt;}
.y4c{bottom:442.101200pt;}
.ye1{bottom:442.114533pt;}
.ycc{bottom:442.499867pt;}
.y13b{bottom:442.844133pt;}
.y1f3{bottom:444.389600pt;}
.y1b3{bottom:444.392267pt;}
.y172{bottom:449.597067pt;}
.y144{bottom:451.403200pt;}
.y18{bottom:451.506267pt;}
.y15b{bottom:455.811067pt;}
.y1f2{bottom:457.722933pt;}
.y1b2{bottom:457.725600pt;}
.y4b{bottom:458.101200pt;}
.ye0{bottom:458.114533pt;}
.y171{bottom:462.930400pt;}
.y17{bottom:464.839600pt;}
.y128{bottom:466.591600pt;}
.y126{bottom:466.594400pt;}
.y145{bottom:467.712533pt;}
.y1f1{bottom:471.056267pt;}
.y1b1{bottom:471.058933pt;}
.y4a{bottom:474.101200pt;}
.ydf{bottom:474.114533pt;}
.y170{bottom:476.263733pt;}
.y16{bottom:478.172933pt;}
.y146{bottom:484.021867pt;}
.y1f0{bottom:484.389600pt;}
.y1b0{bottom:484.392267pt;}
.y16f{bottom:489.597067pt;}
.y49{bottom:490.101200pt;}
.yde{bottom:490.114533pt;}
.ya1{bottom:490.224533pt;}
.y15{bottom:491.506267pt;}
.y1ef{bottom:497.722933pt;}
.y1af{bottom:497.725600pt;}
.y147{bottom:500.331200pt;}
.y16e{bottom:502.930400pt;}
.y14{bottom:504.839600pt;}
.y48{bottom:506.101200pt;}
.ydd{bottom:506.114533pt;}
.ya0{bottom:506.224533pt;}
.y1ee{bottom:511.056267pt;}
.y1ae{bottom:511.058400pt;}
.y21b{bottom:511.058933pt;}
.y16d{bottom:516.263733pt;}
.y148{bottom:516.640533pt;}
.y13{bottom:518.172933pt;}
.y125{bottom:520.530400pt;}
.y47{bottom:522.101200pt;}
.ydc{bottom:522.114533pt;}
.y9f{bottom:522.224533pt;}
.y1ed{bottom:524.389600pt;}
.y1ad{bottom:524.391733pt;}
.y21a{bottom:524.392267pt;}
.yff{bottom:525.846400pt;}
.y16c{bottom:529.597067pt;}
.y12{bottom:531.506267pt;}
.y11e{bottom:532.830667pt;}
.y149{bottom:532.949867pt;}
.y124{bottom:534.525067pt;}
.y1ec{bottom:537.722933pt;}
.y1ac{bottom:537.725067pt;}
.y219{bottom:537.725600pt;}
.y46{bottom:538.101200pt;}
.ydb{bottom:538.114533pt;}
.y9e{bottom:538.224533pt;}
.yfe{bottom:539.841067pt;}
.y16b{bottom:542.930400pt;}
.y13e{bottom:548.480533pt;}
.y123{bottom:548.519733pt;}
.y1eb{bottom:551.056267pt;}
.y1ab{bottom:551.058400pt;}
.y218{bottom:551.058933pt;}
.yfd{bottom:553.835733pt;}
.y45{bottom:554.101200pt;}
.yda{bottom:554.114533pt;}
.y9d{bottom:554.224533pt;}
.y16a{bottom:556.263733pt;}
.y1ea{bottom:564.389600pt;}
.y1aa{bottom:564.391733pt;}
.y217{bottom:564.392267pt;}
.y169{bottom:569.597067pt;}
.y44{bottom:570.101200pt;}
.yd9{bottom:570.114533pt;}
.y9c{bottom:570.224533pt;}
.y11{bottom:574.834267pt;}
.y103{bottom:576.200000pt;}
.y1e9{bottom:577.722933pt;}
.y1a9{bottom:577.725067pt;}
.y216{bottom:577.725600pt;}
.y110{bottom:579.663600pt;}
.y13a{bottom:581.224133pt;}
.y168{bottom:582.930400pt;}
.y43{bottom:586.101200pt;}
.yd8{bottom:586.114533pt;}
.y9b{bottom:586.224533pt;}
.y10{bottom:587.634267pt;}
.y1e8{bottom:591.056267pt;}
.y1a8{bottom:591.058400pt;}
.y215{bottom:591.058933pt;}
.y10b{bottom:593.417733pt;}
.y10f{bottom:593.423600pt;}
.y12e{bottom:595.869467pt;}
.y167{bottom:596.263733pt;}
.ycd{bottom:601.981200pt;}
.y11d{bottom:601.994533pt;}
.y42{bottom:602.101200pt;}
.yd7{bottom:602.114533pt;}
.y9a{bottom:602.224533pt;}
.y119{bottom:602.234533pt;}
.y105{bottom:603.115067pt;}
.y1e7{bottom:604.389600pt;}
.y1a7{bottom:604.391733pt;}
.y214{bottom:604.392267pt;}
.y12f{bottom:605.928133pt;}
.y166{bottom:609.597067pt;}
.yf{bottom:611.772933pt;}
.ycb{bottom:613.523467pt;}
.y1e6{bottom:617.722933pt;}
.y1a6{bottom:617.725067pt;}
.y213{bottom:617.725600pt;}
.y11c{bottom:617.994533pt;}
.y41{bottom:618.101200pt;}
.yd6{bottom:618.114533pt;}
.y99{bottom:618.224533pt;}
.y118{bottom:618.234533pt;}
.y130{bottom:622.237467pt;}
.y165{bottom:622.930400pt;}
.y106{bottom:626.057733pt;}
.y1e5{bottom:631.056267pt;}
.y1a5{bottom:631.058400pt;}
.y212{bottom:631.058933pt;}
.y11b{bottom:633.994533pt;}
.y40{bottom:634.101200pt;}
.yd5{bottom:634.114533pt;}
.y98{bottom:634.224533pt;}
.y164{bottom:636.263733pt;}
.y131{bottom:638.546800pt;}
.y1e4{bottom:644.389600pt;}
.y1a4{bottom:644.391733pt;}
.y211{bottom:644.392267pt;}
.ye{bottom:646.100000pt;}
.y163{bottom:649.597067pt;}
.y112{bottom:650.020933pt;}
.y107{bottom:650.036400pt;}
.y3f{bottom:650.101200pt;}
.yc4{bottom:650.114533pt;}
.y97{bottom:650.224533pt;}
.yb2{bottom:650.234533pt;}
.y132{bottom:654.856133pt;}
.yd{bottom:657.106267pt;}
.y1e3{bottom:657.722933pt;}
.y1a3{bottom:657.725067pt;}
.y210{bottom:657.725600pt;}
.y162{bottom:662.930400pt;}
.y155{bottom:663.451467pt;}
.y11a{bottom:665.994533pt;}
.y3e{bottom:666.101200pt;}
.yc3{bottom:666.114533pt;}
.y96{bottom:666.224533pt;}
.yb1{bottom:666.234533pt;}
.y1e2{bottom:671.056267pt;}
.y1a2{bottom:671.058400pt;}
.y20f{bottom:671.058933pt;}
.y133{bottom:671.165467pt;}
.y108{bottom:674.025733pt;}
.yc{bottom:675.433333pt;}
.y161{bottom:676.263733pt;}
.y154{bottom:677.446133pt;}
.y3d{bottom:682.101200pt;}
.yc2{bottom:682.114533pt;}
.y95{bottom:682.224533pt;}
.yb0{bottom:682.234533pt;}
.y1e1{bottom:684.389600pt;}
.y1a1{bottom:684.391733pt;}
.yb{bottom:686.439600pt;}
.y134{bottom:687.474800pt;}
.y160{bottom:689.597067pt;}
.y1e0{bottom:697.722933pt;}
.y1a0{bottom:697.725067pt;}
.y109{bottom:698.004400pt;}
.y3c{bottom:698.101200pt;}
.yc1{bottom:698.114533pt;}
.y94{bottom:698.224533pt;}
.y157{bottom:701.397600pt;}
.y15f{bottom:702.930400pt;}
.y135{bottom:703.784133pt;}
.ya{bottom:704.766667pt;}
.y111{bottom:709.018267pt;}
.y10e{bottom:710.225600pt;}
.y10c{bottom:710.251733pt;}
.y1df{bottom:711.056267pt;}
.y19f{bottom:711.058400pt;}
.y3b{bottom:714.101200pt;}
.yc0{bottom:714.114533pt;}
.y93{bottom:714.224533pt;}
.yaf{bottom:714.234533pt;}
.y15e{bottom:716.263733pt;}
.y9{bottom:719.433333pt;}
.y136{bottom:720.093467pt;}
.y10a{bottom:721.983067pt;}
.y1de{bottom:724.389600pt;}
.y19e{bottom:724.391733pt;}
.y114{bottom:726.381333pt;}
.y3a{bottom:730.101200pt;}
.ybf{bottom:730.114533pt;}
.y92{bottom:730.224533pt;}
.y8{bottom:730.439600pt;}
.y113{bottom:731.136533pt;}
.y137{bottom:736.402800pt;}
.y1dd{bottom:737.722933pt;}
.y19d{bottom:737.725067pt;}
.y156{bottom:739.275600pt;}
.y15d{bottom:745.981200pt;}
.y39{bottom:746.101200pt;}
.ybe{bottom:746.114533pt;}
.y91{bottom:746.224533pt;}
.y7{bottom:748.766667pt;}
.y1dc{bottom:751.056267pt;}
.y19c{bottom:751.058400pt;}
.y138{bottom:752.712133pt;}
.y38{bottom:762.101200pt;}
.ybd{bottom:762.114533pt;}
.y90{bottom:762.224533pt;}
.y6{bottom:762.338933pt;}
.y1db{bottom:764.389600pt;}
.y19b{bottom:764.391733pt;}
.y139{bottom:769.021467pt;}
.y1da{bottom:777.722933pt;}
.y19a{bottom:777.725067pt;}
.y37{bottom:778.101200pt;}
.ya9{bottom:778.104533pt;}
.ybc{bottom:778.114533pt;}
.y8f{bottom:778.224533pt;}
.yfc{bottom:778.234533pt;}
.y5{bottom:783.004267pt;}
.y1d9{bottom:791.056267pt;}
.y199{bottom:791.058400pt;}
.y36{bottom:794.101200pt;}
.ya8{bottom:794.104533pt;}
.ybb{bottom:794.114533pt;}
.y8e{bottom:794.224533pt;}
.yfb{bottom:794.234533pt;}
.y1d8{bottom:804.389600pt;}
.y198{bottom:804.391733pt;}
.y4{bottom:807.350400pt;}
.y35{bottom:810.101200pt;}
.ya7{bottom:810.104533pt;}
.yba{bottom:810.114533pt;}
.y8d{bottom:810.224533pt;}
.yfa{bottom:810.234533pt;}
.y1d7{bottom:817.722933pt;}
.y197{bottom:817.725067pt;}
.y34{bottom:826.101200pt;}
.ya6{bottom:826.104533pt;}
.yb9{bottom:826.114533pt;}
.y8c{bottom:826.224533pt;}
.yf9{bottom:826.234533pt;}
.y1d6{bottom:831.056267pt;}
.y196{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.y33{bottom:842.101200pt;}
.ya5{bottom:842.104533pt;}
.yb8{bottom:842.114533pt;}
.y8b{bottom:842.224533pt;}
.yf8{bottom:842.234533pt;}
.y1d5{bottom:844.389600pt;}
.y195{bottom:844.391733pt;}
.y1d4{bottom:857.722933pt;}
.y194{bottom:857.725067pt;}
.y32{bottom:858.101200pt;}
.ya4{bottom:858.104533pt;}
.yb7{bottom:858.114533pt;}
.y8a{bottom:858.224533pt;}
.y1d3{bottom:871.056267pt;}
.y193{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y31{bottom:874.101200pt;}
.ya3{bottom:874.104533pt;}
.yb6{bottom:874.114533pt;}
.yf7{bottom:874.234533pt;}
.y1d2{bottom:884.389600pt;}
.y192{bottom:884.391733pt;}
.y30{bottom:890.101200pt;}
.ya2{bottom:890.104533pt;}
.yb5{bottom:890.114533pt;}
.y89{bottom:890.224533pt;}
.y1d1{bottom:897.722933pt;}
.y191{bottom:897.725067pt;}
.y2f{bottom:906.101200pt;}
.yb4{bottom:906.114533pt;}
.y1d0{bottom:911.056267pt;}
.y190{bottom:911.058400pt;}
.y2e{bottom:922.101200pt;}
.y88{bottom:922.104533pt;}
.yb3{bottom:922.114533pt;}
.y1cf{bottom:924.389600pt;}
.y18f{bottom:924.391733pt;}
.y2b{bottom:951.795067pt;}
.y64{bottom:965.392400pt;}
.y2a{bottom:965.395067pt;}
.h7{height:18.662500pt;}
.h1c{height:19.202271pt;}
.h2{height:27.708333pt;}
.ha{height:31.062500pt;}
.h8{height:31.104167pt;}
.h16{height:31.353562pt;}
.hb{height:31.604167pt;}
.hc{height:31.627200pt;}
.h9{height:31.666667pt;}
.h1e{height:31.677333pt;}
.h14{height:33.593188pt;}
.h15{height:33.593312pt;}
.h17{height:33.593637pt;}
.hf{height:33.645833pt;}
.h11{height:35.415604pt;}
.hd{height:38.828125pt;}
.h19{height:39.505208pt;}
.he{height:39.583333pt;}
.h18{height:42.043867pt;}
.h1a{height:42.057200pt;}
.h12{height:43.285958pt;}
.h13{height:45.973271pt;}
.h6{height:46.257800pt;}
.h5{height:46.263133pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h1b{height:178.570667pt;}
.h10{height:305.165333pt;}
.h1d{height:452.002667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w4{width:205.870667pt;}
.w3{width:370.001333pt;}
.w2{width:638.737333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:9.154400pt;}
.x10{left:16.501867pt;}
.x3e{left:35.833733pt;}
.x2f{left:54.663467pt;}
.x36{left:62.740133pt;}
.xa{left:68.031467pt;}
.x27{left:69.921333pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x43{left:88.818933pt;}
.x11{left:93.508533pt;}
.x4c{left:94.484800pt;}
.xb{left:98.271467pt;}
.x3{left:111.501867pt;}
.x4d{left:113.385867pt;}
.x6{left:117.170133pt;}
.x1e{left:121.786133pt;}
.x22{left:127.864267pt;}
.x39{left:134.229333pt;}
.x4{left:143.619200pt;}
.x1f{left:146.193067pt;}
.x23{left:147.539733pt;}
.x3c{left:151.972400pt;}
.x3b{left:156.836400pt;}
.x3a{left:160.516400pt;}
.x41{left:170.859467pt;}
.x4b{left:172.698133pt;}
.x40{left:181.216800pt;}
.x5{left:189.223467pt;}
.x37{left:193.228267pt;}
.x3d{left:198.767067pt;}
.x2a{left:202.400000pt;}
.x29{left:206.542533pt;}
.x2c{left:211.601867pt;}
.x44{left:216.317600pt;}
.x12{left:217.435200pt;}
.x2d{left:229.256036pt;}
.x2e{left:233.353869pt;}
.x34{left:236.248400pt;}
.x20{left:244.433349pt;}
.x13{left:253.011701pt;}
.x28{left:256.062933pt;}
.x35{left:276.025067pt;}
.x32{left:282.373421pt;}
.x1c{left:285.260267pt;}
.x3f{left:305.561733pt;}
.x42{left:325.270133pt;}
.x30{left:344.494667pt;}
.x16{left:353.145733pt;}
.x9{left:404.481333pt;}
.xc{left:406.311467pt;}
.x31{left:422.086933pt;}
.x24{left:425.193067pt;}
.x7{left:427.090133pt;}
.x45{left:432.838667pt;}
.x47{left:434.350533pt;}
.xd{left:436.551467pt;}
.x38{left:441.729600pt;}
.x4e{left:451.604533pt;}
.x25{left:455.433067pt;}
.x33{left:476.165420pt;}
.x1d{left:502.701467pt;}
.x15{left:518.857810pt;}
.x14{left:534.064800pt;}
.x21{left:537.913867pt;}
.x46{left:540.741333pt;}
.x48{left:546.788533pt;}
.x18{left:577.618133pt;}
.xf{left:589.770933pt;}
.x2{left:626.078800pt;}
.x17{left:633.514000pt;}
.x49{left:637.449067pt;}
.xe{left:643.752133pt;}
.x4a{left:657.187867pt;}
.x26{left:662.649733pt;}
.x1b{left:672.504630pt;}
.x19{left:699.131200pt;}
.x1a{left:716.512433pt;}
}




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