
    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_01c5449fc7921b5d07808a2e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_371d1669749d0b0e7b1989e9.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_551100aa6c992f4ab30ea206.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_d4867056ff00e8da613501a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_da35c0a93fb80d999a07213b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.872559;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_18dab8d2eb2274960438c4eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_78a02087fe846be68dd88ed5.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.471800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.149200px;}
.v4{vertical-align:20.520600px;}
.v1{vertical-align:22.655400px;}
.ls70{letter-spacing:-3.552000px;}
.ls6c{letter-spacing:-3.300000px;}
.ls19{letter-spacing:-0.720000px;}
.ls78{letter-spacing:-0.660000px;}
.ls1a{letter-spacing:-0.420000px;}
.lsa3{letter-spacing:-0.384000px;}
.ls79{letter-spacing:-0.360000px;}
.ls4f{letter-spacing:-0.300000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls4e{letter-spacing:-0.180000px;}
.ls50{letter-spacing:-0.144000px;}
.ls4d{letter-spacing:-0.120000px;}
.lsb1{letter-spacing:-0.096000px;}
.ls30{letter-spacing:-0.060000px;}
.ls64{letter-spacing:-0.048000px;}
.ls18{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.006000px;}
.ls7e{letter-spacing:0.048000px;}
.ls2c{letter-spacing:0.060000px;}
.ls62{letter-spacing:0.096000px;}
.ls5a{letter-spacing:0.120000px;}
.ls95{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.ls9b{letter-spacing:0.192000px;}
.lse{letter-spacing:0.240000px;}
.ls2e{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.336000px;}
.lsd{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.384000px;}
.lsc{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.480000px;}
.ls9e{letter-spacing:0.528000px;}
.ls23{letter-spacing:0.540000px;}
.ls48{letter-spacing:0.547800px;}
.ls29{letter-spacing:0.600000px;}
.lsb0{letter-spacing:0.624000px;}
.ls20{letter-spacing:0.660000px;}
.ls7d{letter-spacing:0.672000px;}
.ls3e{letter-spacing:0.720000px;}
.lsac{letter-spacing:0.768000px;}
.ls3f{letter-spacing:0.780000px;}
.ls9d{letter-spacing:0.816000px;}
.ls3a{letter-spacing:0.840000px;}
.ls67{letter-spacing:0.864000px;}
.ls31{letter-spacing:0.900000px;}
.ls6f{letter-spacing:0.912000px;}
.ls16{letter-spacing:0.960000px;}
.ls4b{letter-spacing:1.008000px;}
.ls22{letter-spacing:1.020000px;}
.lsad{letter-spacing:1.056000px;}
.ls49{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.140000px;}
.lsa9{letter-spacing:1.152000px;}
.ls1b{letter-spacing:1.200000px;}
.ls7c{letter-spacing:1.248000px;}
.ls1d{letter-spacing:1.260000px;}
.ls91{letter-spacing:1.296000px;}
.ls24{letter-spacing:1.320000px;}
.lsa2{letter-spacing:1.344000px;}
.lsa{letter-spacing:1.380000px;}
.ls94{letter-spacing:1.392000px;}
.ls42{letter-spacing:1.440000px;}
.ls6a{letter-spacing:1.488000px;}
.ls38{letter-spacing:1.500000px;}
.ls68{letter-spacing:1.536000px;}
.ls4a{letter-spacing:1.560000px;}
.ls9c{letter-spacing:1.584000px;}
.ls13{letter-spacing:1.620000px;}
.ls4c{letter-spacing:1.632000px;}
.ls3c{letter-spacing:1.680000px;}
.lsa8{letter-spacing:1.728000px;}
.ls11{letter-spacing:1.740000px;}
.lsa4{letter-spacing:1.776000px;}
.ls8{letter-spacing:1.800000px;}
.ls2{letter-spacing:1.824000px;}
.ls15{letter-spacing:1.860000px;}
.lsa1{letter-spacing:1.872000px;}
.lsf{letter-spacing:1.920000px;}
.ls96{letter-spacing:1.968000px;}
.ls2a{letter-spacing:1.977000px;}
.ls14{letter-spacing:1.980000px;}
.ls56{letter-spacing:2.040000px;}
.ls8f{letter-spacing:2.064000px;}
.ls53{letter-spacing:2.100000px;}
.ls6e{letter-spacing:2.112000px;}
.ls41{letter-spacing:2.160000px;}
.ls76{letter-spacing:2.208000px;}
.ls45{letter-spacing:2.220000px;}
.lsaf{letter-spacing:2.256000px;}
.ls52{letter-spacing:2.280000px;}
.ls36{letter-spacing:2.340000px;}
.ls6d{letter-spacing:2.400000px;}
.ls9f{letter-spacing:2.448000px;}
.ls39{letter-spacing:2.460000px;}
.ls7b{letter-spacing:2.520000px;}
.lsa5{letter-spacing:2.544000px;}
.ls10{letter-spacing:2.580000px;}
.ls98{letter-spacing:2.592000px;}
.ls1e{letter-spacing:2.640000px;}
.ls1f{letter-spacing:2.700000px;}
.ls75{letter-spacing:2.736000px;}
.ls33{letter-spacing:2.760000px;}
.ls21{letter-spacing:2.820000px;}
.ls93{letter-spacing:2.832000px;}
.ls87{letter-spacing:2.880000px;}
.ls90{letter-spacing:2.928000px;}
.ls2d{letter-spacing:2.940000px;}
.ls8d{letter-spacing:2.976000px;}
.ls55{letter-spacing:3.000000px;}
.ls25{letter-spacing:3.060000px;}
.lsa6{letter-spacing:3.072000px;}
.ls59{letter-spacing:3.120000px;}
.ls37{letter-spacing:3.180000px;}
.ls66{letter-spacing:3.240000px;}
.ls9{letter-spacing:3.300000px;}
.ls80{letter-spacing:3.360000px;}
.ls12{letter-spacing:3.420000px;}
.ls34{letter-spacing:3.480000px;}
.lsa0{letter-spacing:3.504000px;}
.ls27{letter-spacing:3.540000px;}
.ls54{letter-spacing:3.600000px;}
.ls92{letter-spacing:3.648000px;}
.ls77{letter-spacing:3.660000px;}
.lsaa{letter-spacing:3.696000px;}
.ls83{letter-spacing:3.720000px;}
.ls58{letter-spacing:3.780000px;}
.lsa7{letter-spacing:3.792000px;}
.ls44{letter-spacing:3.840000px;}
.ls57{letter-spacing:3.900000px;}
.ls26{letter-spacing:3.960000px;}
.ls84{letter-spacing:4.020000px;}
.lsab{letter-spacing:4.128000px;}
.ls63{letter-spacing:4.140000px;}
.ls85{letter-spacing:4.200000px;}
.ls51{letter-spacing:4.260000px;}
.ls69{letter-spacing:4.368000px;}
.ls5b{letter-spacing:4.380000px;}
.ls7f{letter-spacing:4.416000px;}
.ls46{letter-spacing:4.440000px;}
.ls99{letter-spacing:4.464000px;}
.ls81{letter-spacing:4.560000px;}
.ls82{letter-spacing:4.620000px;}
.ls40{letter-spacing:4.680000px;}
.ls5e{letter-spacing:4.740000px;}
.ls3d{letter-spacing:4.800000px;}
.lsb3{letter-spacing:4.920000px;}
.ls47{letter-spacing:4.980000px;}
.ls97{letter-spacing:4.992000px;}
.ls72{letter-spacing:5.040000px;}
.ls8c{letter-spacing:5.136000px;}
.ls61{letter-spacing:5.160000px;}
.lsae{letter-spacing:5.232000px;}
.ls32{letter-spacing:5.340000px;}
.lsb5{letter-spacing:5.400000px;}
.ls74{letter-spacing:5.460000px;}
.ls1c{letter-spacing:5.520000px;}
.ls43{letter-spacing:5.580000px;}
.ls5{letter-spacing:5.700000px;}
.ls8b{letter-spacing:5.760000px;}
.ls5f{letter-spacing:5.880000px;}
.ls88{letter-spacing:6.000000px;}
.ls5c{letter-spacing:6.180000px;}
.ls8a{letter-spacing:6.240000px;}
.ls9a{letter-spacing:6.288000px;}
.lsb4{letter-spacing:6.360000px;}
.ls89{letter-spacing:6.420000px;}
.ls7a{letter-spacing:6.480000px;}
.ls6b{letter-spacing:6.540000px;}
.ls73{letter-spacing:6.600000px;}
.ls2b{letter-spacing:6.639000px;}
.ls86{letter-spacing:6.720000px;}
.lsb6{letter-spacing:6.780000px;}
.ls60{letter-spacing:6.960000px;}
.ls5d{letter-spacing:7.020000px;}
.ls8e{letter-spacing:7.344000px;}
.ls28{letter-spacing:7.440000px;}
.ls35{letter-spacing:7.740000px;}
.ls71{letter-spacing:8.160000px;}
.ls65{letter-spacing:8.700000px;}
.ls3b{letter-spacing:9.360000px;}
.lsb2{letter-spacing:10.440000px;}
.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;}
}
.ws8b{word-spacing:-23.160000px;}
.ws4{word-spacing:-22.380000px;}
.ws7d{word-spacing:-21.720000px;}
.wse4{word-spacing:-21.660000px;}
.wse5{word-spacing:-21.600000px;}
.ws9b{word-spacing:-21.060000px;}
.ws81{word-spacing:-20.340000px;}
.ws7c{word-spacing:-20.100000px;}
.wsa8{word-spacing:-19.980000px;}
.ws57{word-spacing:-19.920000px;}
.ws3b{word-spacing:-19.860000px;}
.ws3a{word-spacing:-19.800000px;}
.ws5a{word-spacing:-19.620000px;}
.ws68{word-spacing:-19.440000px;}
.ws7e{word-spacing:-19.380000px;}
.ws4c{word-spacing:-19.320000px;}
.ws8d{word-spacing:-19.200000px;}
.ws80{word-spacing:-18.780000px;}
.ws8{word-spacing:-18.660000px;}
.ws9{word-spacing:-18.600000px;}
.ws39{word-spacing:-18.540000px;}
.ws7{word-spacing:-18.420000px;}
.ws7f{word-spacing:-18.360000px;}
.ws6a{word-spacing:-18.240000px;}
.ws9e{word-spacing:-17.940000px;}
.ws6b{word-spacing:-17.880000px;}
.ws7b{word-spacing:-17.760000px;}
.wsa{word-spacing:-17.640000px;}
.wsaa{word-spacing:-17.580000px;}
.wsa9{word-spacing:-17.520000px;}
.ws8c{word-spacing:-17.460000px;}
.wsa7{word-spacing:-17.340000px;}
.ws27{word-spacing:-17.280000px;}
.wsd0{word-spacing:-17.136000px;}
.ws5{word-spacing:-17.100000px;}
.ws6{word-spacing:-17.040000px;}
.ws4d{word-spacing:-16.980000px;}
.ws9c{word-spacing:-16.920000px;}
.ws4b{word-spacing:-16.740000px;}
.wsb{word-spacing:-16.680000px;}
.ws69{word-spacing:-16.620000px;}
.ws9d{word-spacing:-16.560000px;}
.wsb0{word-spacing:-16.320000px;}
.wsb1{word-spacing:-16.272000px;}
.wsd5{word-spacing:-16.224000px;}
.wsb5{word-spacing:-15.936000px;}
.wsd2{word-spacing:-15.408000px;}
.wsb3{word-spacing:-15.312000px;}
.wsce{word-spacing:-15.216000px;}
.ws3{word-spacing:-15.168000px;}
.ws32{word-spacing:-14.976000px;}
.wsd4{word-spacing:-14.784000px;}
.wsb6{word-spacing:-14.544000px;}
.ws72{word-spacing:-14.256000px;}
.wscf{word-spacing:-14.160000px;}
.wsb2{word-spacing:-14.016000px;}
.wsb7{word-spacing:-13.872000px;}
.ws2{word-spacing:-13.680000px;}
.wsd3{word-spacing:-13.488000px;}
.wsd1{word-spacing:-13.440000px;}
.ws8e{word-spacing:-13.392000px;}
.ws1{word-spacing:-13.344000px;}
.wsb4{word-spacing:-13.296000px;}
.ws0{word-spacing:-11.008800px;}
.wse6{word-spacing:-5.580000px;}
.wsbd{word-spacing:-4.992000px;}
.wsd8{word-spacing:-3.696000px;}
.ws87{word-spacing:-3.660000px;}
.wse2{word-spacing:-3.648000px;}
.ws2d{word-spacing:-3.540000px;}
.ws21{word-spacing:-3.420000px;}
.wse0{word-spacing:-3.360000px;}
.wse1{word-spacing:-2.976000px;}
.wsd{word-spacing:-2.664000px;}
.ws75{word-spacing:-2.640000px;}
.ws1f{word-spacing:-2.580000px;}
.ws2c{word-spacing:-2.220000px;}
.wsad{word-spacing:-2.160000px;}
.wscb{word-spacing:-2.064000px;}
.ws54{word-spacing:-1.860000px;}
.wsca{word-spacing:-1.824000px;}
.ws7a{word-spacing:-1.800000px;}
.ws10{word-spacing:-1.776000px;}
.ws20{word-spacing:-1.740000px;}
.wsd6{word-spacing:-1.728000px;}
.ws37{word-spacing:-1.632000px;}
.ws52{word-spacing:-1.620000px;}
.wsc6{word-spacing:-1.584000px;}
.ws53{word-spacing:-1.560000px;}
.wsa3{word-spacing:-1.500000px;}
.ws19{word-spacing:-1.380000px;}
.ws95{word-spacing:-1.320000px;}
.wsa6{word-spacing:-1.260000px;}
.wsbe{word-spacing:-1.200000px;}
.wsf{word-spacing:-1.188000px;}
.wsd7{word-spacing:-1.152000px;}
.ws74{word-spacing:-1.080000px;}
.wsac{word-spacing:-1.020000px;}
.ws66{word-spacing:-0.840000px;}
.wsc9{word-spacing:-0.816000px;}
.ws93{word-spacing:-0.780000px;}
.wsc2{word-spacing:-0.720000px;}
.wsbc{word-spacing:-0.672000px;}
.ws4e{word-spacing:-0.660000px;}
.ws2e{word-spacing:-0.600000px;}
.wsdc{word-spacing:-0.528000px;}
.wsda{word-spacing:-0.480000px;}
.ws1b{word-spacing:-0.420000px;}
.wscc{word-spacing:-0.384000px;}
.ws1c{word-spacing:-0.360000px;}
.ws8a{word-spacing:-0.336000px;}
.ws44{word-spacing:-0.288000px;}
.ws67{word-spacing:-0.240000px;}
.wsc8{word-spacing:-0.192000px;}
.ws86{word-spacing:-0.180000px;}
.ws97{word-spacing:-0.120000px;}
.ws51{word-spacing:-0.060000px;}
.ws9a{word-spacing:-0.048000px;}
.wsc{word-spacing:0.000000px;}
.ws56{word-spacing:0.048000px;}
.ws79{word-spacing:0.060000px;}
.wscd{word-spacing:0.096000px;}
.ws38{word-spacing:0.144000px;}
.ws3f{word-spacing:0.180000px;}
.ws43{word-spacing:0.240000px;}
.ws35{word-spacing:0.300000px;}
.wsc3{word-spacing:0.384000px;}
.wse{word-spacing:0.420000px;}
.ws3c{word-spacing:0.480000px;}
.ws1d{word-spacing:0.540000px;}
.ws82{word-spacing:0.660000px;}
.wsdf{word-spacing:0.672000px;}
.ws59{word-spacing:0.720000px;}
.ws91{word-spacing:0.780000px;}
.wsc0{word-spacing:0.816000px;}
.ws33{word-spacing:0.840000px;}
.ws89{word-spacing:0.960000px;}
.wse7{word-spacing:1.020000px;}
.wsae{word-spacing:1.140000px;}
.ws88{word-spacing:1.152000px;}
.ws96{word-spacing:1.260000px;}
.ws1e{word-spacing:1.320000px;}
.wsc7{word-spacing:1.344000px;}
.wsc5{word-spacing:1.392000px;}
.ws4f{word-spacing:1.440000px;}
.wsc4{word-spacing:1.488000px;}
.ws26{word-spacing:1.560000px;}
.wsba{word-spacing:1.584000px;}
.ws50{word-spacing:1.620000px;}
.wsdb{word-spacing:1.632000px;}
.wsb9{word-spacing:1.728000px;}
.ws2f{word-spacing:1.776000px;}
.ws24{word-spacing:1.860000px;}
.wsc1{word-spacing:1.872000px;}
.ws77{word-spacing:1.920000px;}
.wsdd{word-spacing:1.968000px;}
.wsa1{word-spacing:1.980000px;}
.ws14{word-spacing:2.016000px;}
.wsa5{word-spacing:2.040000px;}
.ws3e{word-spacing:2.100000px;}
.ws48{word-spacing:2.112000px;}
.ws76{word-spacing:2.160000px;}
.wsbb{word-spacing:2.208000px;}
.ws31{word-spacing:2.220000px;}
.ws47{word-spacing:2.256000px;}
.ws18{word-spacing:2.280000px;}
.wsbf{word-spacing:2.304000px;}
.ws90{word-spacing:2.400000px;}
.wsb8{word-spacing:2.460000px;}
.ws73{word-spacing:2.580000px;}
.wsa2{word-spacing:2.700000px;}
.ws46{word-spacing:2.736000px;}
.ws58{word-spacing:2.760000px;}
.ws15{word-spacing:2.784000px;}
.ws2a{word-spacing:2.820000px;}
.ws92{word-spacing:2.940000px;}
.ws55{word-spacing:2.976000px;}
.ws36{word-spacing:3.000000px;}
.wsd9{word-spacing:3.024000px;}
.ws30{word-spacing:3.060000px;}
.ws29{word-spacing:3.120000px;}
.ws11{word-spacing:3.168000px;}
.ws23{word-spacing:3.300000px;}
.wsde{word-spacing:3.360000px;}
.wsa4{word-spacing:3.480000px;}
.ws98{word-spacing:3.540000px;}
.wsaf{word-spacing:3.600000px;}
.wse3{word-spacing:3.744000px;}
.ws1a{word-spacing:3.780000px;}
.ws45{word-spacing:3.792000px;}
.ws4a{word-spacing:3.900000px;}
.ws78{word-spacing:4.080000px;}
.ws34{word-spacing:4.140000px;}
.ws3d{word-spacing:4.260000px;}
.ws9f{word-spacing:4.320000px;}
.ws12{word-spacing:4.368000px;}
.ws83{word-spacing:4.380000px;}
.ws13{word-spacing:4.416000px;}
.ws25{word-spacing:4.440000px;}
.ws41{word-spacing:4.500000px;}
.ws2b{word-spacing:4.620000px;}
.wsab{word-spacing:4.680000px;}
.ws85{word-spacing:4.740000px;}
.ws99{word-spacing:4.920000px;}
.ws42{word-spacing:4.980000px;}
.ws94{word-spacing:5.160000px;}
.ws40{word-spacing:5.220000px;}
.ws84{word-spacing:5.280000px;}
.wsa0{word-spacing:5.340000px;}
.ws49{word-spacing:5.400000px;}
.ws16{word-spacing:5.460000px;}
.ws17{word-spacing:5.520000px;}
.ws22{word-spacing:7.440000px;}
.ws65{word-spacing:12.000000px;}
.ws64{word-spacing:53.664000px;}
.ws5f{word-spacing:66.336000px;}
.ws62{word-spacing:67.008000px;}
.ws61{word-spacing:76.416000px;}
.ws63{word-spacing:80.352000px;}
.ws60{word-spacing:95.088000px;}
.ws71{word-spacing:97.344000px;}
.ws6c{word-spacing:117.408000px;}
.ws70{word-spacing:126.240000px;}
.ws6d{word-spacing:156.096000px;}
.ws6f{word-spacing:172.080000px;}
.ws6e{word-spacing:190.800000px;}
.ws8f{word-spacing:251.664000px;}
.ws5d{word-spacing:452.112000px;}
.ws5c{word-spacing:458.928000px;}
.ws5b{word-spacing:468.144000px;}
.ws5e{word-spacing:474.912000px;}
.ws28{word-spacing:1234.416000px;}
._b{margin-left:-2898.126000px;}
._c{margin-left:-2874.309000px;}
._d{margin-left:-9.360000px;}
._3{margin-left:-7.326000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.596400px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.260000px;}
._5{width:1.824000px;}
._a{width:3.300000px;}
._7{width:4.980000px;}
._6{width:6.780000px;}
._8{width:7.860000px;}
._9{width:9.060000px;}
._4f{width:10.200000px;}
._3d{width:41.608800px;}
._37{width:54.768000px;}
._3e{width:58.368000px;}
._28{width:66.336000px;}
._30{width:68.112000px;}
._2d{width:79.680000px;}
._2e{width:82.128000px;}
._36{width:86.976000px;}
._25{width:89.760000px;}
._24{width:93.744000px;}
._3b{width:97.728000px;}
._29{width:101.040000px;}
._2f{width:102.188400px;}
._46{width:109.731600px;}
._45{width:111.644400px;}
._4b{width:112.896000px;}
._2a{width:114.384000px;}
._26{width:121.728000px;}
._3f{width:123.600000px;}
._4a{width:124.988400px;}
._34{width:126.384000px;}
._40{width:127.584000px;}
._41{width:129.408000px;}
._48{width:130.704000px;}
._3c{width:132.384000px;}
._4c{width:134.300400px;}
._39{width:137.760000px;}
._27{width:140.400000px;}
._2c{width:143.088000px;}
._33{width:148.464000px;}
._44{width:151.152000px;}
._2b{width:153.744000px;}
._38{width:159.072000px;}
._32{width:164.400000px;}
._31{width:167.088000px;}
._3a{width:169.728000px;}
._35{width:172.416000px;}
._43{width:188.112000px;}
._49{width:235.048800px;}
._42{width:266.592000px;}
._4e{width:269.376000px;}
._47{width:281.232000px;}
._4d{width:283.824000px;}
._21{width:454.752000px;}
._23{width:457.296000px;}
._15{width:465.456000px;}
._11{width:472.272000px;}
._f{width:481.440000px;}
._22{width:484.032000px;}
._12{width:488.256000px;}
._20{width:514.944000px;}
._1f{width:538.172400px;}
._1e{width:569.232000px;}
._1c{width:675.984000px;}
._1d{width:710.640000px;}
._1a{width:716.016000px;}
._e{width:718.656000px;}
._13{width:721.344000px;}
._17{width:726.720000px;}
._10{width:732.000000px;}
._19{width:737.328000px;}
._16{width:742.656000px;}
._14{width:745.344000px;}
._1b{width:747.984000px;}
._18{width:750.672000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:50.517000px;}
.y1ef{bottom:79.940700px;}
.y1{bottom:82.406700px;}
.y1ae{bottom:82.796700px;}
.yea{bottom:82.797300px;}
.y180{bottom:82.842300px;}
.y194{bottom:82.854150px;}
.y9e{bottom:83.008350px;}
.ydd{bottom:83.209200px;}
.y46{bottom:83.315550px;}
.ybc{bottom:83.363850px;}
.y190{bottom:83.367600px;}
.y2b{bottom:83.493900px;}
.yd8{bottom:83.513850px;}
.y8f{bottom:83.517600px;}
.y5c{bottom:83.787600px;}
.yc5{bottom:84.792000px;}
.y168{bottom:90.709350px;}
.y143{bottom:92.794200px;}
.y118{bottom:93.289650px;}
.y1ee{bottom:94.940700px;}
.y1ad{bottom:97.796700px;}
.ye9{bottom:98.541300px;}
.y17f{bottom:98.586300px;}
.y193{bottom:98.598150px;}
.y9d{bottom:98.752350px;}
.ydc{bottom:98.953200px;}
.y45{bottom:99.059550px;}
.yc4{bottom:100.536000px;}
.ybb{bottom:101.363850px;}
.y18f{bottom:101.367600px;}
.yd7{bottom:101.513850px;}
.y8e{bottom:101.517600px;}
.y167{bottom:108.709350px;}
.y142{bottom:109.042200px;}
.y117{bottom:109.537650px;}
.y1ed{bottom:109.940700px;}
.y1ac{bottom:112.796700px;}
.ye8{bottom:114.285300px;}
.y17e{bottom:114.330300px;}
.y192{bottom:114.342150px;}
.y9c{bottom:114.496350px;}
.ydb{bottom:114.697200px;}
.y44{bottom:114.803550px;}
.yc3{bottom:116.280000px;}
.yba{bottom:119.363850px;}
.y18e{bottom:119.367600px;}
.yd6{bottom:119.513850px;}
.y8d{bottom:119.517600px;}
.y1ec{bottom:124.940700px;}
.y141{bottom:125.290200px;}
.y116{bottom:125.785650px;}
.y166{bottom:126.709350px;}
.y1ab{bottom:127.796700px;}
.ye7{bottom:130.029300px;}
.y17d{bottom:130.074300px;}
.y191{bottom:130.086150px;}
.y9b{bottom:130.240350px;}
.yda{bottom:130.441200px;}
.y43{bottom:130.547550px;}
.yc2{bottom:132.024000px;}
.yb9{bottom:137.363850px;}
.y18d{bottom:137.367600px;}
.yd5{bottom:137.513850px;}
.y8c{bottom:137.517600px;}
.y1eb{bottom:139.940700px;}
.y140{bottom:141.538200px;}
.y115{bottom:142.033650px;}
.y1aa{bottom:142.796700px;}
.y165{bottom:144.709350px;}
.y17c{bottom:145.818300px;}
.yd9{bottom:146.185200px;}
.y42{bottom:146.291550px;}
.y16{bottom:146.475900px;}
.yc1{bottom:147.768000px;}
.y1ea{bottom:154.940700px;}
.yb8{bottom:155.363850px;}
.y18c{bottom:155.367600px;}
.y8b{bottom:155.517600px;}
.y1a9{bottom:157.796700px;}
.y114{bottom:158.281650px;}
.ya0{bottom:160.097100px;}
.y164{bottom:162.709350px;}
.yc0{bottom:163.512000px;}
.y1e9{bottom:169.940700px;}
.y1a8{bottom:172.796700px;}
.y13f{bottom:173.050200px;}
.yb7{bottom:173.363850px;}
.y18b{bottom:173.367600px;}
.yd4{bottom:173.513850px;}
.y8a{bottom:173.517600px;}
.y113{bottom:174.529650px;}
.y163{bottom:180.709350px;}
.y1e8{bottom:184.940700px;}
.y1a7{bottom:187.796700px;}
.y112{bottom:190.777650px;}
.yb6{bottom:191.363850px;}
.y18a{bottom:191.367600px;}
.y89{bottom:191.517600px;}
.y27{bottom:196.895100px;}
.y162{bottom:198.709350px;}
.y1e7{bottom:199.940700px;}
.y1a6{bottom:202.796700px;}
.y111{bottom:207.025650px;}
.y13e{bottom:207.874200px;}
.yb5{bottom:209.363850px;}
.y189{bottom:209.367600px;}
.y88{bottom:209.517600px;}
.y26{bottom:214.895100px;}
.y227{bottom:214.938300px;}
.y1e6{bottom:214.940700px;}
.y161{bottom:216.709350px;}
.y1a5{bottom:217.796700px;}
.y110{bottom:223.273650px;}
.yb4{bottom:227.363850px;}
.y188{bottom:227.367600px;}
.y13d{bottom:227.374200px;}
.y87{bottom:227.517600px;}
.y226{bottom:229.938300px;}
.y1e5{bottom:229.940700px;}
.y1a4{bottom:232.796700px;}
.y25{bottom:232.895100px;}
.y160{bottom:234.709350px;}
.y10f{bottom:239.521650px;}
.y225{bottom:244.938300px;}
.y1e4{bottom:244.940700px;}
.yb3{bottom:245.363850px;}
.y187{bottom:245.367600px;}
.y86{bottom:245.517600px;}
.y1a3{bottom:247.796700px;}
.y24{bottom:250.895100px;}
.y15f{bottom:252.709350px;}
.y10e{bottom:255.769650px;}
.y224{bottom:259.938300px;}
.y1e3{bottom:259.940700px;}
.y1a2{bottom:262.796700px;}
.yb2{bottom:263.363850px;}
.y186{bottom:263.367600px;}
.y85{bottom:263.517600px;}
.y23{bottom:268.895100px;}
.y15e{bottom:270.709350px;}
.y10d{bottom:272.017650px;}
.y147{bottom:273.406200px;}
.y223{bottom:274.938300px;}
.y1e2{bottom:274.940700px;}
.y1a1{bottom:277.796700px;}
.y13c{bottom:280.909200px;}
.yb1{bottom:281.363850px;}
.y185{bottom:281.367600px;}
.y84{bottom:281.517600px;}
.y22{bottom:286.895100px;}
.y10c{bottom:288.265650px;}
.y15d{bottom:288.709350px;}
.y146{bottom:289.150200px;}
.y222{bottom:289.938300px;}
.y1e1{bottom:289.940700px;}
.y1a0{bottom:292.796700px;}
.y13b{bottom:298.909200px;}
.yb0{bottom:299.363850px;}
.y184{bottom:299.367600px;}
.y83{bottom:299.517600px;}
.y10b{bottom:304.513650px;}
.y145{bottom:304.894200px;}
.y21{bottom:304.895100px;}
.y221{bottom:304.938300px;}
.y1e0{bottom:304.940700px;}
.y15c{bottom:306.709350px;}
.y19f{bottom:307.796700px;}
.y13a{bottom:316.909200px;}
.yaf{bottom:317.363850px;}
.y183{bottom:317.367600px;}
.y220{bottom:319.938300px;}
.y1df{bottom:319.940700px;}
.y144{bottom:320.638200px;}
.y10a{bottom:320.761650px;}
.y19e{bottom:322.796700px;}
.y20{bottom:322.895100px;}
.y139{bottom:334.909200px;}
.y21f{bottom:334.938300px;}
.y1de{bottom:334.940700px;}
.yae{bottom:335.363850px;}
.y182{bottom:335.367600px;}
.y82{bottom:335.517600px;}
.y109{bottom:337.009650px;}
.y19d{bottom:337.796700px;}
.y1f{bottom:340.895100px;}
.y15b{bottom:342.283050px;}
.y21e{bottom:349.938300px;}
.y1dd{bottom:349.940700px;}
.y19c{bottom:352.796700px;}
.y138{bottom:352.909200px;}
.ybf{bottom:353.253900px;}
.yad{bottom:353.363850px;}
.y181{bottom:353.367600px;}
.ye0{bottom:354.099600px;}
.y15a{bottom:357.283050px;}
.y1e{bottom:358.895100px;}
.y21d{bottom:364.938300px;}
.y1dc{bottom:364.940700px;}
.y108{bottom:366.013650px;}
.y19b{bottom:367.796700px;}
.y9f{bottom:368.021100px;}
.y137{bottom:370.909200px;}
.yac{bottom:371.363850px;}
.y81{bottom:371.367600px;}
.y159{bottom:372.283050px;}
.y1d{bottom:376.895100px;}
.y21c{bottom:379.938300px;}
.y1db{bottom:379.940700px;}
.y19a{bottom:382.796700px;}
.y158{bottom:387.283050px;}
.y151{bottom:388.629750px;}
.y136{bottom:388.909200px;}
.yab{bottom:389.363850px;}
.y80{bottom:389.367600px;}
.y1c{bottom:394.895100px;}
.y21b{bottom:394.938300px;}
.y1da{bottom:394.940700px;}
.y107{bottom:395.017650px;}
.y199{bottom:397.796700px;}
.y157{bottom:402.283050px;}
.y135{bottom:406.909200px;}
.yaa{bottom:407.363850px;}
.y7f{bottom:407.367600px;}
.y21a{bottom:409.938300px;}
.y1d9{bottom:409.940700px;}
.y150{bottom:410.637750px;}
.y195{bottom:412.773000px;}
.y198{bottom:412.796700px;}
.y1b{bottom:412.895100px;}
.y156{bottom:417.283050px;}
.y134{bottom:424.909200px;}
.y219{bottom:424.938300px;}
.y1d8{bottom:424.940700px;}
.ya9{bottom:425.363850px;}
.y7e{bottom:425.367600px;}
.y106{bottom:427.328250px;}
.y197{bottom:427.796700px;}
.y1a{bottom:430.895100px;}
.y14f{bottom:434.661750px;}
.y218{bottom:439.938300px;}
.y1d7{bottom:439.940700px;}
.y133{bottom:442.909200px;}
.ya8{bottom:443.363850px;}
.y7d{bottom:443.367600px;}
.y105{bottom:446.828250px;}
.yca{bottom:447.857700px;}
.y19{bottom:448.895100px;}
.y155{bottom:449.586900px;}
.y217{bottom:454.938300px;}
.y1d6{bottom:454.940700px;}
.yc8{bottom:455.287200px;}
.y14e{bottom:459.753750px;}
.y132{bottom:460.909200px;}
.y196{bottom:461.228850px;}
.ya7{bottom:461.363850px;}
.y7c{bottom:461.367600px;}
.y154{bottom:465.192900px;}
.y104{bottom:466.328250px;}
.y18{bottom:466.895100px;}
.y216{bottom:469.938300px;}
.y1d5{bottom:469.940700px;}
.yec{bottom:477.105300px;}
.y131{bottom:478.909200px;}
.ya6{bottom:479.363850px;}
.y7b{bottom:479.367600px;}
.y153{bottom:479.513850px;}
.y14d{bottom:484.197750px;}
.y28{bottom:484.895100px;}
.y215{bottom:484.938300px;}
.y1d4{bottom:484.940700px;}
.y130{bottom:496.909200px;}
.ya5{bottom:497.363850px;}
.y7a{bottom:497.367600px;}
.y152{bottom:497.513850px;}
.y214{bottom:499.938300px;}
.y1d3{bottom:499.940700px;}
.y17{bottom:502.895100px;}
.y14c{bottom:508.857750px;}
.y12f{bottom:514.909200px;}
.y213{bottom:514.938300px;}
.y1d2{bottom:514.940700px;}
.ya4{bottom:515.363850px;}
.y79{bottom:515.367600px;}
.y103{bottom:520.822200px;}
.y212{bottom:529.938300px;}
.y1d1{bottom:529.940700px;}
.y12e{bottom:532.909200px;}
.y14b{bottom:532.989750px;}
.ya3{bottom:533.363850px;}
.y78{bottom:533.367600px;}
.y102{bottom:537.070200px;}
.y211{bottom:544.938300px;}
.y1d0{bottom:544.940700px;}
.y12d{bottom:550.909200px;}
.ya2{bottom:551.363850px;}
.y77{bottom:551.367600px;}
.y101{bottom:553.318200px;}
.y14a{bottom:558.081750px;}
.ydf{bottom:558.615600px;}
.y210{bottom:559.938300px;}
.y1cf{bottom:559.940700px;}
.y12c{bottom:568.909200px;}
.ya1{bottom:569.363850px;}
.y76{bottom:569.367600px;}
.y100{bottom:569.566200px;}
.y15{bottom:572.055900px;}
.y20f{bottom:574.938300px;}
.y1ce{bottom:574.940700px;}
.y149{bottom:581.997750px;}
.yff{bottom:585.814200px;}
.y12b{bottom:586.909200px;}
.y9a{bottom:587.363850px;}
.y75{bottom:587.367600px;}
.y20e{bottom:589.938300px;}
.y1cd{bottom:589.940700px;}
.yfe{bottom:602.062200px;}
.y12a{bottom:604.909200px;}
.y14{bottom:604.911900px;}
.y20d{bottom:604.938300px;}
.y1cc{bottom:604.940700px;}
.y99{bottom:605.363850px;}
.y74{bottom:605.367600px;}
.y148{bottom:606.981750px;}
.yfd{bottom:618.310200px;}
.y13{bottom:619.911900px;}
.y20c{bottom:619.938300px;}
.y1cb{bottom:619.940700px;}
.y129{bottom:622.909200px;}
.y98{bottom:623.363850px;}
.y73{bottom:623.367600px;}
.ybe{bottom:626.649900px;}
.yfc{bottom:634.558200px;}
.y12{bottom:634.911900px;}
.y20b{bottom:634.938300px;}
.y1ca{bottom:634.940700px;}
.y128{bottom:640.909200px;}
.y97{bottom:641.363850px;}
.y72{bottom:641.367600px;}
.y11{bottom:649.911900px;}
.y20a{bottom:649.938300px;}
.y1c9{bottom:649.940700px;}
.yfb{bottom:650.806200px;}
.y47{bottom:654.095550px;}
.y127{bottom:658.909200px;}
.y96{bottom:659.363850px;}
.y71{bottom:659.367600px;}
.y10{bottom:664.911900px;}
.y209{bottom:664.938300px;}
.y1c8{bottom:664.940700px;}
.yfa{bottom:667.054200px;}
.y126{bottom:676.909200px;}
.y95{bottom:677.363850px;}
.y70{bottom:677.367600px;}
.yf{bottom:679.911900px;}
.y208{bottom:679.938300px;}
.y1c7{bottom:679.940700px;}
.yf9{bottom:683.302200px;}
.y125{bottom:694.909200px;}
.ye{bottom:694.911900px;}
.y207{bottom:694.938300px;}
.y1c6{bottom:694.940700px;}
.y40{bottom:695.363850px;}
.y6f{bottom:695.367600px;}
.yf8{bottom:699.550200px;}
.yd{bottom:709.911900px;}
.y206{bottom:709.938300px;}
.y1c5{bottom:709.940700px;}
.y124{bottom:712.909200px;}
.y3f{bottom:713.363850px;}
.y6e{bottom:713.367600px;}
.y17b{bottom:713.374350px;}
.yf7{bottom:715.798200px;}
.y205{bottom:724.938300px;}
.y1c4{bottom:724.940700px;}
.y123{bottom:730.909200px;}
.y3e{bottom:731.363850px;}
.y6d{bottom:731.367600px;}
.y17a{bottom:731.374350px;}
.yf6{bottom:732.046200px;}
.yc9{bottom:737.729700px;}
.yc7{bottom:738.895200px;}
.y204{bottom:739.938300px;}
.y1c3{bottom:739.940700px;}
.yf5{bottom:748.294200px;}
.y122{bottom:748.909200px;}
.y3d{bottom:749.363850px;}
.y6c{bottom:749.367600px;}
.y179{bottom:749.374350px;}
.y203{bottom:754.938300px;}
.y1c2{bottom:754.940700px;}
.yc{bottom:758.358000px;}
.yde{bottom:761.859600px;}
.yf4{bottom:764.542200px;}
.y121{bottom:766.909200px;}
.y3c{bottom:767.363850px;}
.y6b{bottom:767.367600px;}
.y178{bottom:767.374350px;}
.y5b{bottom:767.378850px;}
.y4b{bottom:767.513850px;}
.y202{bottom:769.938300px;}
.y1c1{bottom:769.940700px;}
.yf3{bottom:780.790200px;}
.y120{bottom:784.909200px;}
.y201{bottom:784.938300px;}
.y1c0{bottom:784.940700px;}
.y3b{bottom:785.363850px;}
.y6a{bottom:785.367600px;}
.y177{bottom:785.374350px;}
.y5a{bottom:785.378850px;}
.y4a{bottom:785.513850px;}
.yf2{bottom:797.038200px;}
.yb{bottom:797.273850px;}
.y200{bottom:799.938300px;}
.y1bf{bottom:799.940700px;}
.y3a{bottom:803.363850px;}
.y69{bottom:803.367600px;}
.y176{bottom:803.374350px;}
.y59{bottom:803.378850px;}
.ya{bottom:809.655900px;}
.yd3{bottom:813.488850px;}
.y1ff{bottom:814.938300px;}
.y1be{bottom:814.940700px;}
.y11f{bottom:820.482900px;}
.y94{bottom:821.228850px;}
.y39{bottom:821.363850px;}
.y68{bottom:821.367600px;}
.y175{bottom:821.374350px;}
.y58{bottom:821.378850px;}
.y49{bottom:821.513850px;}
.yf1{bottom:828.550200px;}
.y1fe{bottom:829.938300px;}
.y1bd{bottom:829.940700px;}
.y9{bottom:830.273850px;}
.yd2{bottom:831.488850px;}
.y11e{bottom:835.482900px;}
.y38{bottom:839.363850px;}
.y67{bottom:839.367600px;}
.y174{bottom:839.374350px;}
.y57{bottom:839.378850px;}
.yeb{bottom:842.241300px;}
.y8{bottom:842.655900px;}
.y1fd{bottom:844.938300px;}
.y1bc{bottom:844.940700px;}
.yd1{bottom:849.488850px;}
.y11d{bottom:850.482900px;}
.y37{bottom:857.363850px;}
.y66{bottom:857.367600px;}
.y173{bottom:857.374350px;}
.y56{bottom:857.378850px;}
.y1fc{bottom:859.938300px;}
.y1bb{bottom:859.940700px;}
.y7{bottom:863.273850px;}
.yf0{bottom:863.367600px;}
.y11c{bottom:865.482900px;}
.yd0{bottom:867.488850px;}
.y1fb{bottom:874.938300px;}
.y1ba{bottom:874.940700px;}
.y36{bottom:875.363850px;}
.y65{bottom:875.367600px;}
.y172{bottom:875.374350px;}
.y55{bottom:875.378850px;}
.y6{bottom:878.541300px;}
.ybd{bottom:879.213900px;}
.y11b{bottom:880.482900px;}
.yef{bottom:882.867600px;}
.ycf{bottom:885.488850px;}
.y1fa{bottom:889.938300px;}
.y1b9{bottom:889.940700px;}
.y35{bottom:893.363850px;}
.y64{bottom:893.367600px;}
.y171{bottom:893.374350px;}
.y54{bottom:893.378850px;}
.ye6{bottom:895.341300px;}
.yee{bottom:902.367600px;}
.yce{bottom:903.488850px;}
.y1f9{bottom:904.938300px;}
.y1b8{bottom:904.940700px;}
.y5{bottom:905.924700px;}
.ye5{bottom:910.341300px;}
.y34{bottom:911.363850px;}
.y63{bottom:911.367600px;}
.y170{bottom:911.374350px;}
.y53{bottom:911.378850px;}
.y11a{bottom:911.513850px;}
.y1f8{bottom:919.938300px;}
.y1b7{bottom:919.940700px;}
.ycd{bottom:921.488850px;}
.ye4{bottom:925.341300px;}
.y41{bottom:929.228850px;}
.y33{bottom:929.363850px;}
.y62{bottom:929.367600px;}
.y16f{bottom:929.374350px;}
.y52{bottom:929.378850px;}
.y119{bottom:929.513850px;}
.y4{bottom:932.930700px;}
.y1f7{bottom:934.938300px;}
.y1b6{bottom:934.940700px;}
.ycc{bottom:939.488850px;}
.ye3{bottom:940.341300px;}
.y32{bottom:947.363850px;}
.y61{bottom:947.367600px;}
.y16e{bottom:947.374350px;}
.y51{bottom:947.378850px;}
.y1f6{bottom:949.938300px;}
.y1b5{bottom:949.940700px;}
.ye2{bottom:955.341300px;}
.ycb{bottom:957.488850px;}
.y3{bottom:959.936700px;}
.y1f5{bottom:964.938300px;}
.y1b4{bottom:964.940700px;}
.y31{bottom:965.363850px;}
.y60{bottom:965.367600px;}
.y16d{bottom:965.374350px;}
.y50{bottom:965.378850px;}
.ye1{bottom:970.341300px;}
.y1f4{bottom:979.938300px;}
.y1b3{bottom:979.940700px;}
.y30{bottom:983.363850px;}
.y5f{bottom:983.367600px;}
.y16c{bottom:983.374350px;}
.y4f{bottom:983.378850px;}
.y93{bottom:983.382600px;}
.y2{bottom:991.423800px;}
.y1f3{bottom:994.938300px;}
.y1b2{bottom:994.940700px;}
.y2f{bottom:1001.363850px;}
.y5e{bottom:1001.367600px;}
.y16b{bottom:1001.374350px;}
.y4e{bottom:1001.378850px;}
.y92{bottom:1001.382600px;}
.y1f2{bottom:1009.938300px;}
.y1b1{bottom:1009.940700px;}
.y2e{bottom:1019.363850px;}
.yed{bottom:1019.367600px;}
.y16a{bottom:1019.374350px;}
.y4d{bottom:1019.378850px;}
.y91{bottom:1019.382600px;}
.y1f1{bottom:1024.938300px;}
.y1b0{bottom:1024.940700px;}
.yc6{bottom:1033.135200px;}
.y2d{bottom:1037.363850px;}
.y5d{bottom:1037.367600px;}
.y169{bottom:1037.374350px;}
.y4c{bottom:1037.378850px;}
.y90{bottom:1037.382600px;}
.y1f0{bottom:1039.938300px;}
.y1af{bottom:1039.940700px;}
.y2a{bottom:1070.769450px;}
.y48{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h6{height:26.442263px;}
.hd{height:34.968750px;}
.h2{height:37.652344px;}
.h7{height:42.914062px;}
.h8{height:43.031250px;}
.h9{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:45.720703px;}
.hf{height:48.410156px;}
.h3{height:52.417969px;}
.he{height:53.642578px;}
.ha{height:53.789062px;}
.h5{height:59.167969px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x26{left:78.646350px;}
.x35{left:80.822100px;}
.x1a{left:83.763750px;}
.x20{left:91.417200px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x2c{left:99.933600px;}
.x37{left:100.984200px;}
.x1d{left:102.047250px;}
.x19{left:105.874050px;}
.x2f{left:108.946200px;}
.xb{left:110.551200px;}
.x2d{left:112.966200px;}
.x30{left:114.298200px;}
.x2e{left:115.630200px;}
.xf{left:116.915400px;}
.x31{left:119.638200px;}
.x3{left:125.427600px;}
.x3b{left:127.559100px;}
.x6{left:131.816400px;}
.x28{left:139.105200px;}
.x4{left:161.571600px;}
.x33{left:165.920400px;}
.x36{left:178.008600px;}
.x27{left:183.301200px;}
.x34{left:192.200400px;}
.x39{left:194.285400px;}
.x5{left:212.876400px;}
.x38{left:220.137450px;}
.x25{left:280.438350px;}
.x2b{left:320.649600px;}
.x1b{left:326.547750px;}
.x1e{left:347.387250px;}
.x24{left:450.494400px;}
.x9{left:455.041500px;}
.xc{left:457.081200px;}
.x15{left:461.125950px;}
.x12{left:478.345350px;}
.x7{left:480.461400px;}
.x3a{left:486.803400px;}
.xe{left:491.101200px;}
.x23{left:508.094400px;}
.x18{left:512.365350px;}
.x2a{left:521.890350px;}
.xd{left:525.271200px;}
.x1c{left:567.207750px;}
.x16{left:574.441950px;}
.x1f{left:580.823250px;}
.x14{left:591.645150px;}
.x22{left:613.195350px;}
.x21{left:628.180350px;}
.x11{left:663.492300px;}
.x17{left:697.321950px;}
.x2{left:704.338650px;}
.x29{left:717.130200px;}
.x10{left:724.221150px;}
.x32{left:739.336350px;}
.x13{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.910400pt;}
.v4{vertical-align:18.240533pt;}
.v1{vertical-align:20.138133pt;}
.ls70{letter-spacing:-3.157333pt;}
.ls6c{letter-spacing:-2.933333pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls78{letter-spacing:-0.586667pt;}
.ls1a{letter-spacing:-0.373333pt;}
.lsa3{letter-spacing:-0.341333pt;}
.ls79{letter-spacing:-0.320000pt;}
.ls4f{letter-spacing:-0.266667pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls4e{letter-spacing:-0.160000pt;}
.ls50{letter-spacing:-0.128000pt;}
.ls4d{letter-spacing:-0.106667pt;}
.lsb1{letter-spacing:-0.085333pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls64{letter-spacing:-0.042667pt;}
.ls18{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.005333pt;}
.ls7e{letter-spacing:0.042667pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls62{letter-spacing:0.085333pt;}
.ls5a{letter-spacing:0.106667pt;}
.ls95{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls9b{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.213333pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.298667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.341333pt;}
.lsc{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.426667pt;}
.ls9e{letter-spacing:0.469333pt;}
.ls23{letter-spacing:0.480000pt;}
.ls48{letter-spacing:0.486933pt;}
.ls29{letter-spacing:0.533333pt;}
.lsb0{letter-spacing:0.554667pt;}
.ls20{letter-spacing:0.586667pt;}
.ls7d{letter-spacing:0.597333pt;}
.ls3e{letter-spacing:0.640000pt;}
.lsac{letter-spacing:0.682667pt;}
.ls3f{letter-spacing:0.693333pt;}
.ls9d{letter-spacing:0.725333pt;}
.ls3a{letter-spacing:0.746667pt;}
.ls67{letter-spacing:0.768000pt;}
.ls31{letter-spacing:0.800000pt;}
.ls6f{letter-spacing:0.810667pt;}
.ls16{letter-spacing:0.853333pt;}
.ls4b{letter-spacing:0.896000pt;}
.ls22{letter-spacing:0.906667pt;}
.lsad{letter-spacing:0.938667pt;}
.ls49{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.013333pt;}
.lsa9{letter-spacing:1.024000pt;}
.ls1b{letter-spacing:1.066667pt;}
.ls7c{letter-spacing:1.109333pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls91{letter-spacing:1.152000pt;}
.ls24{letter-spacing:1.173333pt;}
.lsa2{letter-spacing:1.194667pt;}
.lsa{letter-spacing:1.226667pt;}
.ls94{letter-spacing:1.237333pt;}
.ls42{letter-spacing:1.280000pt;}
.ls6a{letter-spacing:1.322667pt;}
.ls38{letter-spacing:1.333333pt;}
.ls68{letter-spacing:1.365333pt;}
.ls4a{letter-spacing:1.386667pt;}
.ls9c{letter-spacing:1.408000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls4c{letter-spacing:1.450667pt;}
.ls3c{letter-spacing:1.493333pt;}
.lsa8{letter-spacing:1.536000pt;}
.ls11{letter-spacing:1.546667pt;}
.lsa4{letter-spacing:1.578667pt;}
.ls8{letter-spacing:1.600000pt;}
.ls2{letter-spacing:1.621333pt;}
.ls15{letter-spacing:1.653333pt;}
.lsa1{letter-spacing:1.664000pt;}
.lsf{letter-spacing:1.706667pt;}
.ls96{letter-spacing:1.749333pt;}
.ls2a{letter-spacing:1.757333pt;}
.ls14{letter-spacing:1.760000pt;}
.ls56{letter-spacing:1.813333pt;}
.ls8f{letter-spacing:1.834667pt;}
.ls53{letter-spacing:1.866667pt;}
.ls6e{letter-spacing:1.877333pt;}
.ls41{letter-spacing:1.920000pt;}
.ls76{letter-spacing:1.962667pt;}
.ls45{letter-spacing:1.973333pt;}
.lsaf{letter-spacing:2.005333pt;}
.ls52{letter-spacing:2.026667pt;}
.ls36{letter-spacing:2.080000pt;}
.ls6d{letter-spacing:2.133333pt;}
.ls9f{letter-spacing:2.176000pt;}
.ls39{letter-spacing:2.186667pt;}
.ls7b{letter-spacing:2.240000pt;}
.lsa5{letter-spacing:2.261333pt;}
.ls10{letter-spacing:2.293333pt;}
.ls98{letter-spacing:2.304000pt;}
.ls1e{letter-spacing:2.346667pt;}
.ls1f{letter-spacing:2.400000pt;}
.ls75{letter-spacing:2.432000pt;}
.ls33{letter-spacing:2.453333pt;}
.ls21{letter-spacing:2.506667pt;}
.ls93{letter-spacing:2.517333pt;}
.ls87{letter-spacing:2.560000pt;}
.ls90{letter-spacing:2.602667pt;}
.ls2d{letter-spacing:2.613333pt;}
.ls8d{letter-spacing:2.645333pt;}
.ls55{letter-spacing:2.666667pt;}
.ls25{letter-spacing:2.720000pt;}
.lsa6{letter-spacing:2.730667pt;}
.ls59{letter-spacing:2.773333pt;}
.ls37{letter-spacing:2.826667pt;}
.ls66{letter-spacing:2.880000pt;}
.ls9{letter-spacing:2.933333pt;}
.ls80{letter-spacing:2.986667pt;}
.ls12{letter-spacing:3.040000pt;}
.ls34{letter-spacing:3.093333pt;}
.lsa0{letter-spacing:3.114667pt;}
.ls27{letter-spacing:3.146667pt;}
.ls54{letter-spacing:3.200000pt;}
.ls92{letter-spacing:3.242667pt;}
.ls77{letter-spacing:3.253333pt;}
.lsaa{letter-spacing:3.285333pt;}
.ls83{letter-spacing:3.306667pt;}
.ls58{letter-spacing:3.360000pt;}
.lsa7{letter-spacing:3.370667pt;}
.ls44{letter-spacing:3.413333pt;}
.ls57{letter-spacing:3.466667pt;}
.ls26{letter-spacing:3.520000pt;}
.ls84{letter-spacing:3.573333pt;}
.lsab{letter-spacing:3.669333pt;}
.ls63{letter-spacing:3.680000pt;}
.ls85{letter-spacing:3.733333pt;}
.ls51{letter-spacing:3.786667pt;}
.ls69{letter-spacing:3.882667pt;}
.ls5b{letter-spacing:3.893333pt;}
.ls7f{letter-spacing:3.925333pt;}
.ls46{letter-spacing:3.946667pt;}
.ls99{letter-spacing:3.968000pt;}
.ls81{letter-spacing:4.053333pt;}
.ls82{letter-spacing:4.106667pt;}
.ls40{letter-spacing:4.160000pt;}
.ls5e{letter-spacing:4.213333pt;}
.ls3d{letter-spacing:4.266667pt;}
.lsb3{letter-spacing:4.373333pt;}
.ls47{letter-spacing:4.426667pt;}
.ls97{letter-spacing:4.437333pt;}
.ls72{letter-spacing:4.480000pt;}
.ls8c{letter-spacing:4.565333pt;}
.ls61{letter-spacing:4.586667pt;}
.lsae{letter-spacing:4.650667pt;}
.ls32{letter-spacing:4.746667pt;}
.lsb5{letter-spacing:4.800000pt;}
.ls74{letter-spacing:4.853333pt;}
.ls1c{letter-spacing:4.906667pt;}
.ls43{letter-spacing:4.960000pt;}
.ls5{letter-spacing:5.066667pt;}
.ls8b{letter-spacing:5.120000pt;}
.ls5f{letter-spacing:5.226667pt;}
.ls88{letter-spacing:5.333333pt;}
.ls5c{letter-spacing:5.493333pt;}
.ls8a{letter-spacing:5.546667pt;}
.ls9a{letter-spacing:5.589333pt;}
.lsb4{letter-spacing:5.653333pt;}
.ls89{letter-spacing:5.706667pt;}
.ls7a{letter-spacing:5.760000pt;}
.ls6b{letter-spacing:5.813333pt;}
.ls73{letter-spacing:5.866667pt;}
.ls2b{letter-spacing:5.901333pt;}
.ls86{letter-spacing:5.973333pt;}
.lsb6{letter-spacing:6.026667pt;}
.ls60{letter-spacing:6.186667pt;}
.ls5d{letter-spacing:6.240000pt;}
.ls8e{letter-spacing:6.528000pt;}
.ls28{letter-spacing:6.613333pt;}
.ls35{letter-spacing:6.880000pt;}
.ls71{letter-spacing:7.253333pt;}
.ls65{letter-spacing:7.733333pt;}
.ls3b{letter-spacing:8.320000pt;}
.lsb2{letter-spacing:9.280000pt;}
.ws8b{word-spacing:-20.586667pt;}
.ws4{word-spacing:-19.893333pt;}
.ws7d{word-spacing:-19.306667pt;}
.wse4{word-spacing:-19.253333pt;}
.wse5{word-spacing:-19.200000pt;}
.ws9b{word-spacing:-18.720000pt;}
.ws81{word-spacing:-18.080000pt;}
.ws7c{word-spacing:-17.866667pt;}
.wsa8{word-spacing:-17.760000pt;}
.ws57{word-spacing:-17.706667pt;}
.ws3b{word-spacing:-17.653333pt;}
.ws3a{word-spacing:-17.600000pt;}
.ws5a{word-spacing:-17.440000pt;}
.ws68{word-spacing:-17.280000pt;}
.ws7e{word-spacing:-17.226667pt;}
.ws4c{word-spacing:-17.173333pt;}
.ws8d{word-spacing:-17.066667pt;}
.ws80{word-spacing:-16.693333pt;}
.ws8{word-spacing:-16.586667pt;}
.ws9{word-spacing:-16.533333pt;}
.ws39{word-spacing:-16.480000pt;}
.ws7{word-spacing:-16.373333pt;}
.ws7f{word-spacing:-16.320000pt;}
.ws6a{word-spacing:-16.213333pt;}
.ws9e{word-spacing:-15.946667pt;}
.ws6b{word-spacing:-15.893333pt;}
.ws7b{word-spacing:-15.786667pt;}
.wsa{word-spacing:-15.680000pt;}
.wsaa{word-spacing:-15.626667pt;}
.wsa9{word-spacing:-15.573333pt;}
.ws8c{word-spacing:-15.520000pt;}
.wsa7{word-spacing:-15.413333pt;}
.ws27{word-spacing:-15.360000pt;}
.wsd0{word-spacing:-15.232000pt;}
.ws5{word-spacing:-15.200000pt;}
.ws6{word-spacing:-15.146667pt;}
.ws4d{word-spacing:-15.093333pt;}
.ws9c{word-spacing:-15.040000pt;}
.ws4b{word-spacing:-14.880000pt;}
.wsb{word-spacing:-14.826667pt;}
.ws69{word-spacing:-14.773333pt;}
.ws9d{word-spacing:-14.720000pt;}
.wsb0{word-spacing:-14.506667pt;}
.wsb1{word-spacing:-14.464000pt;}
.wsd5{word-spacing:-14.421333pt;}
.wsb5{word-spacing:-14.165333pt;}
.wsd2{word-spacing:-13.696000pt;}
.wsb3{word-spacing:-13.610667pt;}
.wsce{word-spacing:-13.525333pt;}
.ws3{word-spacing:-13.482667pt;}
.ws32{word-spacing:-13.312000pt;}
.wsd4{word-spacing:-13.141333pt;}
.wsb6{word-spacing:-12.928000pt;}
.ws72{word-spacing:-12.672000pt;}
.wscf{word-spacing:-12.586667pt;}
.wsb2{word-spacing:-12.458667pt;}
.wsb7{word-spacing:-12.330667pt;}
.ws2{word-spacing:-12.160000pt;}
.wsd3{word-spacing:-11.989333pt;}
.wsd1{word-spacing:-11.946667pt;}
.ws8e{word-spacing:-11.904000pt;}
.ws1{word-spacing:-11.861333pt;}
.wsb4{word-spacing:-11.818667pt;}
.ws0{word-spacing:-9.785600pt;}
.wse6{word-spacing:-4.960000pt;}
.wsbd{word-spacing:-4.437333pt;}
.wsd8{word-spacing:-3.285333pt;}
.ws87{word-spacing:-3.253333pt;}
.wse2{word-spacing:-3.242667pt;}
.ws2d{word-spacing:-3.146667pt;}
.ws21{word-spacing:-3.040000pt;}
.wse0{word-spacing:-2.986667pt;}
.wse1{word-spacing:-2.645333pt;}
.wsd{word-spacing:-2.368000pt;}
.ws75{word-spacing:-2.346667pt;}
.ws1f{word-spacing:-2.293333pt;}
.ws2c{word-spacing:-1.973333pt;}
.wsad{word-spacing:-1.920000pt;}
.wscb{word-spacing:-1.834667pt;}
.ws54{word-spacing:-1.653333pt;}
.wsca{word-spacing:-1.621333pt;}
.ws7a{word-spacing:-1.600000pt;}
.ws10{word-spacing:-1.578667pt;}
.ws20{word-spacing:-1.546667pt;}
.wsd6{word-spacing:-1.536000pt;}
.ws37{word-spacing:-1.450667pt;}
.ws52{word-spacing:-1.440000pt;}
.wsc6{word-spacing:-1.408000pt;}
.ws53{word-spacing:-1.386667pt;}
.wsa3{word-spacing:-1.333333pt;}
.ws19{word-spacing:-1.226667pt;}
.ws95{word-spacing:-1.173333pt;}
.wsa6{word-spacing:-1.120000pt;}
.wsbe{word-spacing:-1.066667pt;}
.wsf{word-spacing:-1.056000pt;}
.wsd7{word-spacing:-1.024000pt;}
.ws74{word-spacing:-0.960000pt;}
.wsac{word-spacing:-0.906667pt;}
.ws66{word-spacing:-0.746667pt;}
.wsc9{word-spacing:-0.725333pt;}
.ws93{word-spacing:-0.693333pt;}
.wsc2{word-spacing:-0.640000pt;}
.wsbc{word-spacing:-0.597333pt;}
.ws4e{word-spacing:-0.586667pt;}
.ws2e{word-spacing:-0.533333pt;}
.wsdc{word-spacing:-0.469333pt;}
.wsda{word-spacing:-0.426667pt;}
.ws1b{word-spacing:-0.373333pt;}
.wscc{word-spacing:-0.341333pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws8a{word-spacing:-0.298667pt;}
.ws44{word-spacing:-0.256000pt;}
.ws67{word-spacing:-0.213333pt;}
.wsc8{word-spacing:-0.170667pt;}
.ws86{word-spacing:-0.160000pt;}
.ws97{word-spacing:-0.106667pt;}
.ws51{word-spacing:-0.053333pt;}
.ws9a{word-spacing:-0.042667pt;}
.wsc{word-spacing:0.000000pt;}
.ws56{word-spacing:0.042667pt;}
.ws79{word-spacing:0.053333pt;}
.wscd{word-spacing:0.085333pt;}
.ws38{word-spacing:0.128000pt;}
.ws3f{word-spacing:0.160000pt;}
.ws43{word-spacing:0.213333pt;}
.ws35{word-spacing:0.266667pt;}
.wsc3{word-spacing:0.341333pt;}
.wse{word-spacing:0.373333pt;}
.ws3c{word-spacing:0.426667pt;}
.ws1d{word-spacing:0.480000pt;}
.ws82{word-spacing:0.586667pt;}
.wsdf{word-spacing:0.597333pt;}
.ws59{word-spacing:0.640000pt;}
.ws91{word-spacing:0.693333pt;}
.wsc0{word-spacing:0.725333pt;}
.ws33{word-spacing:0.746667pt;}
.ws89{word-spacing:0.853333pt;}
.wse7{word-spacing:0.906667pt;}
.wsae{word-spacing:1.013333pt;}
.ws88{word-spacing:1.024000pt;}
.ws96{word-spacing:1.120000pt;}
.ws1e{word-spacing:1.173333pt;}
.wsc7{word-spacing:1.194667pt;}
.wsc5{word-spacing:1.237333pt;}
.ws4f{word-spacing:1.280000pt;}
.wsc4{word-spacing:1.322667pt;}
.ws26{word-spacing:1.386667pt;}
.wsba{word-spacing:1.408000pt;}
.ws50{word-spacing:1.440000pt;}
.wsdb{word-spacing:1.450667pt;}
.wsb9{word-spacing:1.536000pt;}
.ws2f{word-spacing:1.578667pt;}
.ws24{word-spacing:1.653333pt;}
.wsc1{word-spacing:1.664000pt;}
.ws77{word-spacing:1.706667pt;}
.wsdd{word-spacing:1.749333pt;}
.wsa1{word-spacing:1.760000pt;}
.ws14{word-spacing:1.792000pt;}
.wsa5{word-spacing:1.813333pt;}
.ws3e{word-spacing:1.866667pt;}
.ws48{word-spacing:1.877333pt;}
.ws76{word-spacing:1.920000pt;}
.wsbb{word-spacing:1.962667pt;}
.ws31{word-spacing:1.973333pt;}
.ws47{word-spacing:2.005333pt;}
.ws18{word-spacing:2.026667pt;}
.wsbf{word-spacing:2.048000pt;}
.ws90{word-spacing:2.133333pt;}
.wsb8{word-spacing:2.186667pt;}
.ws73{word-spacing:2.293333pt;}
.wsa2{word-spacing:2.400000pt;}
.ws46{word-spacing:2.432000pt;}
.ws58{word-spacing:2.453333pt;}
.ws15{word-spacing:2.474667pt;}
.ws2a{word-spacing:2.506667pt;}
.ws92{word-spacing:2.613333pt;}
.ws55{word-spacing:2.645333pt;}
.ws36{word-spacing:2.666667pt;}
.wsd9{word-spacing:2.688000pt;}
.ws30{word-spacing:2.720000pt;}
.ws29{word-spacing:2.773333pt;}
.ws11{word-spacing:2.816000pt;}
.ws23{word-spacing:2.933333pt;}
.wsde{word-spacing:2.986667pt;}
.wsa4{word-spacing:3.093333pt;}
.ws98{word-spacing:3.146667pt;}
.wsaf{word-spacing:3.200000pt;}
.wse3{word-spacing:3.328000pt;}
.ws1a{word-spacing:3.360000pt;}
.ws45{word-spacing:3.370667pt;}
.ws4a{word-spacing:3.466667pt;}
.ws78{word-spacing:3.626667pt;}
.ws34{word-spacing:3.680000pt;}
.ws3d{word-spacing:3.786667pt;}
.ws9f{word-spacing:3.840000pt;}
.ws12{word-spacing:3.882667pt;}
.ws83{word-spacing:3.893333pt;}
.ws13{word-spacing:3.925333pt;}
.ws25{word-spacing:3.946667pt;}
.ws41{word-spacing:4.000000pt;}
.ws2b{word-spacing:4.106667pt;}
.wsab{word-spacing:4.160000pt;}
.ws85{word-spacing:4.213333pt;}
.ws99{word-spacing:4.373333pt;}
.ws42{word-spacing:4.426667pt;}
.ws94{word-spacing:4.586667pt;}
.ws40{word-spacing:4.640000pt;}
.ws84{word-spacing:4.693333pt;}
.wsa0{word-spacing:4.746667pt;}
.ws49{word-spacing:4.800000pt;}
.ws16{word-spacing:4.853333pt;}
.ws17{word-spacing:4.906667pt;}
.ws22{word-spacing:6.613333pt;}
.ws65{word-spacing:10.666667pt;}
.ws64{word-spacing:47.701333pt;}
.ws5f{word-spacing:58.965333pt;}
.ws62{word-spacing:59.562667pt;}
.ws61{word-spacing:67.925333pt;}
.ws63{word-spacing:71.424000pt;}
.ws60{word-spacing:84.522667pt;}
.ws71{word-spacing:86.528000pt;}
.ws6c{word-spacing:104.362667pt;}
.ws70{word-spacing:112.213333pt;}
.ws6d{word-spacing:138.752000pt;}
.ws6f{word-spacing:152.960000pt;}
.ws6e{word-spacing:169.600000pt;}
.ws8f{word-spacing:223.701333pt;}
.ws5d{word-spacing:401.877333pt;}
.ws5c{word-spacing:407.936000pt;}
.ws5b{word-spacing:416.128000pt;}
.ws5e{word-spacing:422.144000pt;}
.ws28{word-spacing:1097.258667pt;}
._b{margin-left:-2576.112000pt;}
._c{margin-left:-2554.941333pt;}
._d{margin-left:-8.320000pt;}
._3{margin-left:-6.512000pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.196800pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.120000pt;}
._5{width:1.621333pt;}
._a{width:2.933333pt;}
._7{width:4.426667pt;}
._6{width:6.026667pt;}
._8{width:6.986667pt;}
._9{width:8.053333pt;}
._4f{width:9.066667pt;}
._3d{width:36.985600pt;}
._37{width:48.682667pt;}
._3e{width:51.882667pt;}
._28{width:58.965333pt;}
._30{width:60.544000pt;}
._2d{width:70.826667pt;}
._2e{width:73.002667pt;}
._36{width:77.312000pt;}
._25{width:79.786667pt;}
._24{width:83.328000pt;}
._3b{width:86.869333pt;}
._29{width:89.813333pt;}
._2f{width:90.834133pt;}
._46{width:97.539200pt;}
._45{width:99.239467pt;}
._4b{width:100.352000pt;}
._2a{width:101.674667pt;}
._26{width:108.202667pt;}
._3f{width:109.866667pt;}
._4a{width:111.100800pt;}
._34{width:112.341333pt;}
._40{width:113.408000pt;}
._41{width:115.029333pt;}
._48{width:116.181333pt;}
._3c{width:117.674667pt;}
._4c{width:119.378133pt;}
._39{width:122.453333pt;}
._27{width:124.800000pt;}
._2c{width:127.189333pt;}
._33{width:131.968000pt;}
._44{width:134.357333pt;}
._2b{width:136.661333pt;}
._38{width:141.397333pt;}
._32{width:146.133333pt;}
._31{width:148.522667pt;}
._3a{width:150.869333pt;}
._35{width:153.258667pt;}
._43{width:167.210667pt;}
._49{width:208.932267pt;}
._42{width:236.970667pt;}
._4e{width:239.445333pt;}
._47{width:249.984000pt;}
._4d{width:252.288000pt;}
._21{width:404.224000pt;}
._23{width:406.485333pt;}
._15{width:413.738667pt;}
._11{width:419.797333pt;}
._f{width:427.946667pt;}
._22{width:430.250667pt;}
._12{width:434.005333pt;}
._20{width:457.728000pt;}
._1f{width:478.375467pt;}
._1e{width:505.984000pt;}
._1c{width:600.874667pt;}
._1d{width:631.680000pt;}
._1a{width:636.458667pt;}
._e{width:638.805333pt;}
._13{width:641.194667pt;}
._17{width:645.973333pt;}
._10{width:650.666667pt;}
._19{width:655.402667pt;}
._16{width:660.138667pt;}
._14{width:662.528000pt;}
._1b{width:664.874667pt;}
._18{width:667.264000pt;}
.fs5{font-size:25.600000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:44.904000pt;}
.y1ef{bottom:71.058400pt;}
.y1{bottom:73.250400pt;}
.y1ae{bottom:73.597067pt;}
.yea{bottom:73.597600pt;}
.y180{bottom:73.637600pt;}
.y194{bottom:73.648133pt;}
.y9e{bottom:73.785200pt;}
.ydd{bottom:73.963733pt;}
.y46{bottom:74.058267pt;}
.ybc{bottom:74.101200pt;}
.y190{bottom:74.104533pt;}
.y2b{bottom:74.216800pt;}
.yd8{bottom:74.234533pt;}
.y8f{bottom:74.237867pt;}
.y5c{bottom:74.477867pt;}
.yc5{bottom:75.370667pt;}
.y168{bottom:80.630533pt;}
.y143{bottom:82.483733pt;}
.y118{bottom:82.924133pt;}
.y1ee{bottom:84.391733pt;}
.y1ad{bottom:86.930400pt;}
.ye9{bottom:87.592267pt;}
.y17f{bottom:87.632267pt;}
.y193{bottom:87.642800pt;}
.y9d{bottom:87.779867pt;}
.ydc{bottom:87.958400pt;}
.y45{bottom:88.052933pt;}
.yc4{bottom:89.365333pt;}
.ybb{bottom:90.101200pt;}
.y18f{bottom:90.104533pt;}
.yd7{bottom:90.234533pt;}
.y8e{bottom:90.237867pt;}
.y167{bottom:96.630533pt;}
.y142{bottom:96.926400pt;}
.y117{bottom:97.366800pt;}
.y1ed{bottom:97.725067pt;}
.y1ac{bottom:100.263733pt;}
.ye8{bottom:101.586933pt;}
.y17e{bottom:101.626933pt;}
.y192{bottom:101.637467pt;}
.y9c{bottom:101.774533pt;}
.ydb{bottom:101.953067pt;}
.y44{bottom:102.047600pt;}
.yc3{bottom:103.360000pt;}
.yba{bottom:106.101200pt;}
.y18e{bottom:106.104533pt;}
.yd6{bottom:106.234533pt;}
.y8d{bottom:106.237867pt;}
.y1ec{bottom:111.058400pt;}
.y141{bottom:111.369067pt;}
.y116{bottom:111.809467pt;}
.y166{bottom:112.630533pt;}
.y1ab{bottom:113.597067pt;}
.ye7{bottom:115.581600pt;}
.y17d{bottom:115.621600pt;}
.y191{bottom:115.632133pt;}
.y9b{bottom:115.769200pt;}
.yda{bottom:115.947733pt;}
.y43{bottom:116.042267pt;}
.yc2{bottom:117.354667pt;}
.yb9{bottom:122.101200pt;}
.y18d{bottom:122.104533pt;}
.yd5{bottom:122.234533pt;}
.y8c{bottom:122.237867pt;}
.y1eb{bottom:124.391733pt;}
.y140{bottom:125.811733pt;}
.y115{bottom:126.252133pt;}
.y1aa{bottom:126.930400pt;}
.y165{bottom:128.630533pt;}
.y17c{bottom:129.616267pt;}
.yd9{bottom:129.942400pt;}
.y42{bottom:130.036933pt;}
.y16{bottom:130.200800pt;}
.yc1{bottom:131.349333pt;}
.y1ea{bottom:137.725067pt;}
.yb8{bottom:138.101200pt;}
.y18c{bottom:138.104533pt;}
.y8b{bottom:138.237867pt;}
.y1a9{bottom:140.263733pt;}
.y114{bottom:140.694800pt;}
.ya0{bottom:142.308533pt;}
.y164{bottom:144.630533pt;}
.yc0{bottom:145.344000pt;}
.y1e9{bottom:151.058400pt;}
.y1a8{bottom:153.597067pt;}
.y13f{bottom:153.822400pt;}
.yb7{bottom:154.101200pt;}
.y18b{bottom:154.104533pt;}
.yd4{bottom:154.234533pt;}
.y8a{bottom:154.237867pt;}
.y113{bottom:155.137467pt;}
.y163{bottom:160.630533pt;}
.y1e8{bottom:164.391733pt;}
.y1a7{bottom:166.930400pt;}
.y112{bottom:169.580133pt;}
.yb6{bottom:170.101200pt;}
.y18a{bottom:170.104533pt;}
.y89{bottom:170.237867pt;}
.y27{bottom:175.017867pt;}
.y162{bottom:176.630533pt;}
.y1e7{bottom:177.725067pt;}
.y1a6{bottom:180.263733pt;}
.y111{bottom:184.022800pt;}
.y13e{bottom:184.777067pt;}
.yb5{bottom:186.101200pt;}
.y189{bottom:186.104533pt;}
.y88{bottom:186.237867pt;}
.y26{bottom:191.017867pt;}
.y227{bottom:191.056267pt;}
.y1e6{bottom:191.058400pt;}
.y161{bottom:192.630533pt;}
.y1a5{bottom:193.597067pt;}
.y110{bottom:198.465467pt;}
.yb4{bottom:202.101200pt;}
.y188{bottom:202.104533pt;}
.y13d{bottom:202.110400pt;}
.y87{bottom:202.237867pt;}
.y226{bottom:204.389600pt;}
.y1e5{bottom:204.391733pt;}
.y1a4{bottom:206.930400pt;}
.y25{bottom:207.017867pt;}
.y160{bottom:208.630533pt;}
.y10f{bottom:212.908133pt;}
.y225{bottom:217.722933pt;}
.y1e4{bottom:217.725067pt;}
.yb3{bottom:218.101200pt;}
.y187{bottom:218.104533pt;}
.y86{bottom:218.237867pt;}
.y1a3{bottom:220.263733pt;}
.y24{bottom:223.017867pt;}
.y15f{bottom:224.630533pt;}
.y10e{bottom:227.350800pt;}
.y224{bottom:231.056267pt;}
.y1e3{bottom:231.058400pt;}
.y1a2{bottom:233.597067pt;}
.yb2{bottom:234.101200pt;}
.y186{bottom:234.104533pt;}
.y85{bottom:234.237867pt;}
.y23{bottom:239.017867pt;}
.y15e{bottom:240.630533pt;}
.y10d{bottom:241.793467pt;}
.y147{bottom:243.027733pt;}
.y223{bottom:244.389600pt;}
.y1e2{bottom:244.391733pt;}
.y1a1{bottom:246.930400pt;}
.y13c{bottom:249.697067pt;}
.yb1{bottom:250.101200pt;}
.y185{bottom:250.104533pt;}
.y84{bottom:250.237867pt;}
.y22{bottom:255.017867pt;}
.y10c{bottom:256.236133pt;}
.y15d{bottom:256.630533pt;}
.y146{bottom:257.022400pt;}
.y222{bottom:257.722933pt;}
.y1e1{bottom:257.725067pt;}
.y1a0{bottom:260.263733pt;}
.y13b{bottom:265.697067pt;}
.yb0{bottom:266.101200pt;}
.y184{bottom:266.104533pt;}
.y83{bottom:266.237867pt;}
.y10b{bottom:270.678800pt;}
.y145{bottom:271.017067pt;}
.y21{bottom:271.017867pt;}
.y221{bottom:271.056267pt;}
.y1e0{bottom:271.058400pt;}
.y15c{bottom:272.630533pt;}
.y19f{bottom:273.597067pt;}
.y13a{bottom:281.697067pt;}
.yaf{bottom:282.101200pt;}
.y183{bottom:282.104533pt;}
.y220{bottom:284.389600pt;}
.y1df{bottom:284.391733pt;}
.y144{bottom:285.011733pt;}
.y10a{bottom:285.121467pt;}
.y19e{bottom:286.930400pt;}
.y20{bottom:287.017867pt;}
.y139{bottom:297.697067pt;}
.y21f{bottom:297.722933pt;}
.y1de{bottom:297.725067pt;}
.yae{bottom:298.101200pt;}
.y182{bottom:298.104533pt;}
.y82{bottom:298.237867pt;}
.y109{bottom:299.564133pt;}
.y19d{bottom:300.263733pt;}
.y1f{bottom:303.017867pt;}
.y15b{bottom:304.251600pt;}
.y21e{bottom:311.056267pt;}
.y1dd{bottom:311.058400pt;}
.y19c{bottom:313.597067pt;}
.y138{bottom:313.697067pt;}
.ybf{bottom:314.003467pt;}
.yad{bottom:314.101200pt;}
.y181{bottom:314.104533pt;}
.ye0{bottom:314.755200pt;}
.y15a{bottom:317.584933pt;}
.y1e{bottom:319.017867pt;}
.y21d{bottom:324.389600pt;}
.y1dc{bottom:324.391733pt;}
.y108{bottom:325.345467pt;}
.y19b{bottom:326.930400pt;}
.y9f{bottom:327.129867pt;}
.y137{bottom:329.697067pt;}
.yac{bottom:330.101200pt;}
.y81{bottom:330.104533pt;}
.y159{bottom:330.918267pt;}
.y1d{bottom:335.017867pt;}
.y21c{bottom:337.722933pt;}
.y1db{bottom:337.725067pt;}
.y19a{bottom:340.263733pt;}
.y158{bottom:344.251600pt;}
.y151{bottom:345.448667pt;}
.y136{bottom:345.697067pt;}
.yab{bottom:346.101200pt;}
.y80{bottom:346.104533pt;}
.y1c{bottom:351.017867pt;}
.y21b{bottom:351.056267pt;}
.y1da{bottom:351.058400pt;}
.y107{bottom:351.126800pt;}
.y199{bottom:353.597067pt;}
.y157{bottom:357.584933pt;}
.y135{bottom:361.697067pt;}
.yaa{bottom:362.101200pt;}
.y7f{bottom:362.104533pt;}
.y21a{bottom:364.389600pt;}
.y1d9{bottom:364.391733pt;}
.y150{bottom:365.011333pt;}
.y195{bottom:366.909333pt;}
.y198{bottom:366.930400pt;}
.y1b{bottom:367.017867pt;}
.y156{bottom:370.918267pt;}
.y134{bottom:377.697067pt;}
.y219{bottom:377.722933pt;}
.y1d8{bottom:377.725067pt;}
.ya9{bottom:378.101200pt;}
.y7e{bottom:378.104533pt;}
.y106{bottom:379.847333pt;}
.y197{bottom:380.263733pt;}
.y1a{bottom:383.017867pt;}
.y14f{bottom:386.366000pt;}
.y218{bottom:391.056267pt;}
.y1d7{bottom:391.058400pt;}
.y133{bottom:393.697067pt;}
.ya8{bottom:394.101200pt;}
.y7d{bottom:394.104533pt;}
.y105{bottom:397.180667pt;}
.yca{bottom:398.095733pt;}
.y19{bottom:399.017867pt;}
.y155{bottom:399.632800pt;}
.y217{bottom:404.389600pt;}
.y1d6{bottom:404.391733pt;}
.yc8{bottom:404.699733pt;}
.y14e{bottom:408.670000pt;}
.y132{bottom:409.697067pt;}
.y196{bottom:409.981200pt;}
.ya7{bottom:410.101200pt;}
.y7c{bottom:410.104533pt;}
.y154{bottom:413.504800pt;}
.y104{bottom:414.514000pt;}
.y18{bottom:415.017867pt;}
.y216{bottom:417.722933pt;}
.y1d5{bottom:417.725067pt;}
.yec{bottom:424.093600pt;}
.y131{bottom:425.697067pt;}
.ya6{bottom:426.101200pt;}
.y7b{bottom:426.104533pt;}
.y153{bottom:426.234533pt;}
.y14d{bottom:430.398000pt;}
.y28{bottom:431.017867pt;}
.y215{bottom:431.056267pt;}
.y1d4{bottom:431.058400pt;}
.y130{bottom:441.697067pt;}
.ya5{bottom:442.101200pt;}
.y7a{bottom:442.104533pt;}
.y152{bottom:442.234533pt;}
.y214{bottom:444.389600pt;}
.y1d3{bottom:444.391733pt;}
.y17{bottom:447.017867pt;}
.y14c{bottom:452.318000pt;}
.y12f{bottom:457.697067pt;}
.y213{bottom:457.722933pt;}
.y1d2{bottom:457.725067pt;}
.ya4{bottom:458.101200pt;}
.y79{bottom:458.104533pt;}
.y103{bottom:462.953067pt;}
.y212{bottom:471.056267pt;}
.y1d1{bottom:471.058400pt;}
.y12e{bottom:473.697067pt;}
.y14b{bottom:473.768667pt;}
.ya3{bottom:474.101200pt;}
.y78{bottom:474.104533pt;}
.y102{bottom:477.395733pt;}
.y211{bottom:484.389600pt;}
.y1d0{bottom:484.391733pt;}
.y12d{bottom:489.697067pt;}
.ya2{bottom:490.101200pt;}
.y77{bottom:490.104533pt;}
.y101{bottom:491.838400pt;}
.y14a{bottom:496.072667pt;}
.ydf{bottom:496.547200pt;}
.y210{bottom:497.722933pt;}
.y1cf{bottom:497.725067pt;}
.y12c{bottom:505.697067pt;}
.ya1{bottom:506.101200pt;}
.y76{bottom:506.104533pt;}
.y100{bottom:506.281067pt;}
.y15{bottom:508.494133pt;}
.y20f{bottom:511.056267pt;}
.y1ce{bottom:511.058400pt;}
.y149{bottom:517.331333pt;}
.yff{bottom:520.723733pt;}
.y12b{bottom:521.697067pt;}
.y9a{bottom:522.101200pt;}
.y75{bottom:522.104533pt;}
.y20e{bottom:524.389600pt;}
.y1cd{bottom:524.391733pt;}
.yfe{bottom:535.166400pt;}
.y12a{bottom:537.697067pt;}
.y14{bottom:537.699467pt;}
.y20d{bottom:537.722933pt;}
.y1cc{bottom:537.725067pt;}
.y99{bottom:538.101200pt;}
.y74{bottom:538.104533pt;}
.y148{bottom:539.539333pt;}
.yfd{bottom:549.609067pt;}
.y13{bottom:551.032800pt;}
.y20c{bottom:551.056267pt;}
.y1cb{bottom:551.058400pt;}
.y129{bottom:553.697067pt;}
.y98{bottom:554.101200pt;}
.y73{bottom:554.104533pt;}
.ybe{bottom:557.022133pt;}
.yfc{bottom:564.051733pt;}
.y12{bottom:564.366133pt;}
.y20b{bottom:564.389600pt;}
.y1ca{bottom:564.391733pt;}
.y128{bottom:569.697067pt;}
.y97{bottom:570.101200pt;}
.y72{bottom:570.104533pt;}
.y11{bottom:577.699467pt;}
.y20a{bottom:577.722933pt;}
.y1c9{bottom:577.725067pt;}
.yfb{bottom:578.494400pt;}
.y47{bottom:581.418267pt;}
.y127{bottom:585.697067pt;}
.y96{bottom:586.101200pt;}
.y71{bottom:586.104533pt;}
.y10{bottom:591.032800pt;}
.y209{bottom:591.056267pt;}
.y1c8{bottom:591.058400pt;}
.yfa{bottom:592.937067pt;}
.y126{bottom:601.697067pt;}
.y95{bottom:602.101200pt;}
.y70{bottom:602.104533pt;}
.yf{bottom:604.366133pt;}
.y208{bottom:604.389600pt;}
.y1c7{bottom:604.391733pt;}
.yf9{bottom:607.379733pt;}
.y125{bottom:617.697067pt;}
.ye{bottom:617.699467pt;}
.y207{bottom:617.722933pt;}
.y1c6{bottom:617.725067pt;}
.y40{bottom:618.101200pt;}
.y6f{bottom:618.104533pt;}
.yf8{bottom:621.822400pt;}
.yd{bottom:631.032800pt;}
.y206{bottom:631.056267pt;}
.y1c5{bottom:631.058400pt;}
.y124{bottom:633.697067pt;}
.y3f{bottom:634.101200pt;}
.y6e{bottom:634.104533pt;}
.y17b{bottom:634.110533pt;}
.yf7{bottom:636.265067pt;}
.y205{bottom:644.389600pt;}
.y1c4{bottom:644.391733pt;}
.y123{bottom:649.697067pt;}
.y3e{bottom:650.101200pt;}
.y6d{bottom:650.104533pt;}
.y17a{bottom:650.110533pt;}
.yf6{bottom:650.707733pt;}
.yc9{bottom:655.759733pt;}
.yc7{bottom:656.795733pt;}
.y204{bottom:657.722933pt;}
.y1c3{bottom:657.725067pt;}
.yf5{bottom:665.150400pt;}
.y122{bottom:665.697067pt;}
.y3d{bottom:666.101200pt;}
.y6c{bottom:666.104533pt;}
.y179{bottom:666.110533pt;}
.y203{bottom:671.056267pt;}
.y1c2{bottom:671.058400pt;}
.yc{bottom:674.096000pt;}
.yde{bottom:677.208533pt;}
.yf4{bottom:679.593067pt;}
.y121{bottom:681.697067pt;}
.y3c{bottom:682.101200pt;}
.y6b{bottom:682.104533pt;}
.y178{bottom:682.110533pt;}
.y5b{bottom:682.114533pt;}
.y4b{bottom:682.234533pt;}
.y202{bottom:684.389600pt;}
.y1c1{bottom:684.391733pt;}
.yf3{bottom:694.035733pt;}
.y120{bottom:697.697067pt;}
.y201{bottom:697.722933pt;}
.y1c0{bottom:697.725067pt;}
.y3b{bottom:698.101200pt;}
.y6a{bottom:698.104533pt;}
.y177{bottom:698.110533pt;}
.y5a{bottom:698.114533pt;}
.y4a{bottom:698.234533pt;}
.yf2{bottom:708.478400pt;}
.yb{bottom:708.687867pt;}
.y200{bottom:711.056267pt;}
.y1bf{bottom:711.058400pt;}
.y3a{bottom:714.101200pt;}
.y69{bottom:714.104533pt;}
.y176{bottom:714.110533pt;}
.y59{bottom:714.114533pt;}
.ya{bottom:719.694133pt;}
.yd3{bottom:723.101200pt;}
.y1ff{bottom:724.389600pt;}
.y1be{bottom:724.391733pt;}
.y11f{bottom:729.318133pt;}
.y94{bottom:729.981200pt;}
.y39{bottom:730.101200pt;}
.y68{bottom:730.104533pt;}
.y175{bottom:730.110533pt;}
.y58{bottom:730.114533pt;}
.y49{bottom:730.234533pt;}
.yf1{bottom:736.489067pt;}
.y1fe{bottom:737.722933pt;}
.y1bd{bottom:737.725067pt;}
.y9{bottom:738.021200pt;}
.yd2{bottom:739.101200pt;}
.y11e{bottom:742.651467pt;}
.y38{bottom:746.101200pt;}
.y67{bottom:746.104533pt;}
.y174{bottom:746.110533pt;}
.y57{bottom:746.114533pt;}
.yeb{bottom:748.658933pt;}
.y8{bottom:749.027467pt;}
.y1fd{bottom:751.056267pt;}
.y1bc{bottom:751.058400pt;}
.yd1{bottom:755.101200pt;}
.y11d{bottom:755.984800pt;}
.y37{bottom:762.101200pt;}
.y66{bottom:762.104533pt;}
.y173{bottom:762.110533pt;}
.y56{bottom:762.114533pt;}
.y1fc{bottom:764.389600pt;}
.y1bb{bottom:764.391733pt;}
.y7{bottom:767.354533pt;}
.yf0{bottom:767.437867pt;}
.y11c{bottom:769.318133pt;}
.yd0{bottom:771.101200pt;}
.y1fb{bottom:777.722933pt;}
.y1ba{bottom:777.725067pt;}
.y36{bottom:778.101200pt;}
.y65{bottom:778.104533pt;}
.y172{bottom:778.110533pt;}
.y55{bottom:778.114533pt;}
.y6{bottom:780.925600pt;}
.ybd{bottom:781.523467pt;}
.y11b{bottom:782.651467pt;}
.yef{bottom:784.771200pt;}
.ycf{bottom:787.101200pt;}
.y1fa{bottom:791.056267pt;}
.y1b9{bottom:791.058400pt;}
.y35{bottom:794.101200pt;}
.y64{bottom:794.104533pt;}
.y171{bottom:794.110533pt;}
.y54{bottom:794.114533pt;}
.ye6{bottom:795.858933pt;}
.yee{bottom:802.104533pt;}
.yce{bottom:803.101200pt;}
.y1f9{bottom:804.389600pt;}
.y1b8{bottom:804.391733pt;}
.y5{bottom:805.266400pt;}
.ye5{bottom:809.192267pt;}
.y34{bottom:810.101200pt;}
.y63{bottom:810.104533pt;}
.y170{bottom:810.110533pt;}
.y53{bottom:810.114533pt;}
.y11a{bottom:810.234533pt;}
.y1f8{bottom:817.722933pt;}
.y1b7{bottom:817.725067pt;}
.ycd{bottom:819.101200pt;}
.ye4{bottom:822.525600pt;}
.y41{bottom:825.981200pt;}
.y33{bottom:826.101200pt;}
.y62{bottom:826.104533pt;}
.y16f{bottom:826.110533pt;}
.y52{bottom:826.114533pt;}
.y119{bottom:826.234533pt;}
.y4{bottom:829.271733pt;}
.y1f7{bottom:831.056267pt;}
.y1b6{bottom:831.058400pt;}
.ycc{bottom:835.101200pt;}
.ye3{bottom:835.858933pt;}
.y32{bottom:842.101200pt;}
.y61{bottom:842.104533pt;}
.y16e{bottom:842.110533pt;}
.y51{bottom:842.114533pt;}
.y1f6{bottom:844.389600pt;}
.y1b5{bottom:844.391733pt;}
.ye2{bottom:849.192267pt;}
.ycb{bottom:851.101200pt;}
.y3{bottom:853.277067pt;}
.y1f5{bottom:857.722933pt;}
.y1b4{bottom:857.725067pt;}
.y31{bottom:858.101200pt;}
.y60{bottom:858.104533pt;}
.y16d{bottom:858.110533pt;}
.y50{bottom:858.114533pt;}
.ye1{bottom:862.525600pt;}
.y1f4{bottom:871.056267pt;}
.y1b3{bottom:871.058400pt;}
.y30{bottom:874.101200pt;}
.y5f{bottom:874.104533pt;}
.y16c{bottom:874.110533pt;}
.y4f{bottom:874.114533pt;}
.y93{bottom:874.117867pt;}
.y2{bottom:881.265600pt;}
.y1f3{bottom:884.389600pt;}
.y1b2{bottom:884.391733pt;}
.y2f{bottom:890.101200pt;}
.y5e{bottom:890.104533pt;}
.y16b{bottom:890.110533pt;}
.y4e{bottom:890.114533pt;}
.y92{bottom:890.117867pt;}
.y1f2{bottom:897.722933pt;}
.y1b1{bottom:897.725067pt;}
.y2e{bottom:906.101200pt;}
.yed{bottom:906.104533pt;}
.y16a{bottom:906.110533pt;}
.y4d{bottom:906.114533pt;}
.y91{bottom:906.117867pt;}
.y1f1{bottom:911.056267pt;}
.y1b0{bottom:911.058400pt;}
.yc6{bottom:918.342400pt;}
.y2d{bottom:922.101200pt;}
.y5d{bottom:922.104533pt;}
.y169{bottom:922.110533pt;}
.y4c{bottom:922.114533pt;}
.y90{bottom:922.117867pt;}
.y1f0{bottom:924.389600pt;}
.y1af{bottom:924.391733pt;}
.y2a{bottom:951.795067pt;}
.y48{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h6{height:23.504233pt;}
.hd{height:31.083333pt;}
.h2{height:33.468750pt;}
.h7{height:38.145833pt;}
.h8{height:38.250000pt;}
.h9{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:40.640625pt;}
.hf{height:43.031250pt;}
.h3{height:46.593750pt;}
.he{height:47.682292pt;}
.ha{height:47.812500pt;}
.h5{height:52.593750pt;}
.h4{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x26{left:69.907867pt;}
.x35{left:71.841867pt;}
.x1a{left:74.456667pt;}
.x20{left:81.259733pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x2c{left:88.829867pt;}
.x37{left:89.763733pt;}
.x1d{left:90.708667pt;}
.x19{left:94.110267pt;}
.x2f{left:96.841067pt;}
.xb{left:98.267733pt;}
.x2d{left:100.414400pt;}
.x30{left:101.598400pt;}
.x2e{left:102.782400pt;}
.xf{left:103.924800pt;}
.x31{left:106.345067pt;}
.x3{left:111.491200pt;}
.x3b{left:113.385867pt;}
.x6{left:117.170133pt;}
.x28{left:123.649067pt;}
.x4{left:143.619200pt;}
.x33{left:147.484800pt;}
.x36{left:158.229867pt;}
.x27{left:162.934400pt;}
.x34{left:170.844800pt;}
.x39{left:172.698133pt;}
.x5{left:189.223467pt;}
.x38{left:195.677733pt;}
.x25{left:249.278533pt;}
.x2b{left:285.021867pt;}
.x1b{left:290.264667pt;}
.x1e{left:308.788667pt;}
.x24{left:400.439467pt;}
.x9{left:404.481333pt;}
.xc{left:406.294400pt;}
.x15{left:409.889733pt;}
.x12{left:425.195867pt;}
.x7{left:427.076800pt;}
.x3a{left:432.714133pt;}
.xe{left:436.534400pt;}
.x23{left:451.639467pt;}
.x18{left:455.435867pt;}
.x2a{left:463.902533pt;}
.xd{left:466.907733pt;}
.x1c{left:504.184667pt;}
.x16{left:510.615067pt;}
.x1f{left:516.287333pt;}
.x14{left:525.906800pt;}
.x22{left:545.062533pt;}
.x21{left:558.382533pt;}
.x11{left:589.770933pt;}
.x17{left:619.841733pt;}
.x2{left:626.078800pt;}
.x29{left:637.449067pt;}
.x10{left:643.752133pt;}
.x32{left:657.187867pt;}
.x13{left:662.649733pt;}
}




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