
    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_ec19598f16eb815a53e524d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_52f87bea3a36499b0e01fef1.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_839a24ce0e2eb7743d2b2691.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9e87e70c609adbac38af43a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_0c495c9b3e078c77e78d5ea7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7be4e590c292d68cb3cb00b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718750;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_dcc2f02f1548468efb5f7817.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1821d1fb77710bf0dbb0e058.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909180;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_cf2a8d13dd368f6c7832294d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a965e6e492b4e507f876e26f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f9838a71717d1a253cd9ebb1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_de68e6d42cbfb11db7621f7a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0413eda97b39ed155d6e6d77.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b02a81986d54f6cfe4a01765.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f0327f4e2e97e5a96ec6d552.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.471800px;}
.va{vertical-align:-8.042400px;}
.v3{vertical-align:-3.395400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.264800px;}
.vb{vertical-align:12.553200px;}
.vd{vertical-align:16.461000px;}
.v9{vertical-align:20.595600px;}
.v1{vertical-align:22.655400px;}
.v6{vertical-align:26.846400px;}
.v5{vertical-align:30.256800px;}
.v8{vertical-align:32.355000px;}
.v7{vertical-align:33.960000px;}
.vc{vertical-align:35.953200px;}
.lsa2{letter-spacing:-3.072000px;}
.ls12{letter-spacing:-0.720000px;}
.ls5e{letter-spacing:-0.480000px;}
.ls63{letter-spacing:-0.192000px;}
.ls5d{letter-spacing:-0.180000px;}
.ls8d{letter-spacing:-0.144000px;}
.ls5b{letter-spacing:-0.120000px;}
.ls13{letter-spacing:-0.096000px;}
.ls5c{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.060000px;}
.ls8e{letter-spacing:-0.048000px;}
.ls11{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.000600px;}
.ls4f{letter-spacing:0.003000px;}
.ls69{letter-spacing:0.003096px;}
.ls53{letter-spacing:0.003600px;}
.ls1{letter-spacing:0.004200px;}
.ls68{letter-spacing:0.004800px;}
.ls52{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls4d{letter-spacing:0.009000px;}
.ls48{letter-spacing:0.009600px;}
.ls51{letter-spacing:0.016200px;}
.ls55{letter-spacing:0.016800px;}
.ls92{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.096000px;}
.ls30{letter-spacing:0.120000px;}
.ls81{letter-spacing:0.144000px;}
.ls4c{letter-spacing:0.157800px;}
.lsc{letter-spacing:0.180000px;}
.ls66{letter-spacing:0.192000px;}
.ls6{letter-spacing:0.240000px;}
.ls7d{letter-spacing:0.288000px;}
.ls4b{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.300000px;}
.ls7f{letter-spacing:0.336000px;}
.ls45{letter-spacing:0.337800px;}
.ls25{letter-spacing:0.360000px;}
.ls6c{letter-spacing:0.384000px;}
.ls1e{letter-spacing:0.420000px;}
.ls86{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.480000px;}
.ls7c{letter-spacing:0.528000px;}
.ls1d{letter-spacing:0.540000px;}
.ls8a{letter-spacing:0.576000px;}
.ls44{letter-spacing:0.577800px;}
.ls46{letter-spacing:0.579000px;}
.ls3b{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.624000px;}
.ls6a{letter-spacing:0.660000px;}
.ls80{letter-spacing:0.672000px;}
.ls5{letter-spacing:0.720000px;}
.ls91{letter-spacing:0.768000px;}
.ls29{letter-spacing:0.780000px;}
.ls7b{letter-spacing:0.816000px;}
.ls41{letter-spacing:0.840000px;}
.ls7a{letter-spacing:0.864000px;}
.ls2c{letter-spacing:0.900000px;}
.ls87{letter-spacing:0.912000px;}
.ls7{letter-spacing:0.960000px;}
.ls65{letter-spacing:1.008000px;}
.ls49{letter-spacing:1.018200px;}
.ls16{letter-spacing:1.020000px;}
.ls8c{letter-spacing:1.056000px;}
.ls26{letter-spacing:1.080000px;}
.ls85{letter-spacing:1.104000px;}
.ls23{letter-spacing:1.140000px;}
.ls9b{letter-spacing:1.152000px;}
.ls1a{letter-spacing:1.200000px;}
.ls61{letter-spacing:1.211400px;}
.ls89{letter-spacing:1.248000px;}
.ls19{letter-spacing:1.260000px;}
.ls88{letter-spacing:1.296000px;}
.lsa{letter-spacing:1.320000px;}
.ls17{letter-spacing:1.380000px;}
.ls93{letter-spacing:1.392000px;}
.ls38{letter-spacing:1.440000px;}
.ls98{letter-spacing:1.488000px;}
.ls20{letter-spacing:1.500000px;}
.ls2d{letter-spacing:1.560000px;}
.ls94{letter-spacing:1.584000px;}
.lsf{letter-spacing:1.620000px;}
.ls8b{letter-spacing:1.632000px;}
.ls8{letter-spacing:1.680000px;}
.ls9e{letter-spacing:1.728000px;}
.ls9{letter-spacing:1.740000px;}
.ls78{letter-spacing:1.776000px;}
.lsd{letter-spacing:1.800000px;}
.ls83{letter-spacing:1.824000px;}
.ls27{letter-spacing:1.860000px;}
.ls35{letter-spacing:1.920000px;}
.ls90{letter-spacing:1.968000px;}
.ls1b{letter-spacing:1.980000px;}
.ls58{letter-spacing:2.040000px;}
.ls60{letter-spacing:2.043600px;}
.lsa1{letter-spacing:2.064000px;}
.ls14{letter-spacing:2.100000px;}
.ls2a{letter-spacing:2.160000px;}
.ls97{letter-spacing:2.208000px;}
.ls10{letter-spacing:2.220000px;}
.ls99{letter-spacing:2.256000px;}
.ls42{letter-spacing:2.280000px;}
.ls8f{letter-spacing:2.304000px;}
.ls43{letter-spacing:2.340000px;}
.ls7e{letter-spacing:2.352000px;}
.ls3e{letter-spacing:2.400000px;}
.ls9c{letter-spacing:2.448000px;}
.ls33{letter-spacing:2.460000px;}
.ls2e{letter-spacing:2.520000px;}
.ls2b{letter-spacing:2.580000px;}
.ls79{letter-spacing:2.592000px;}
.ls28{letter-spacing:2.640000px;}
.ls9f{letter-spacing:2.688000px;}
.ls57{letter-spacing:2.700000px;}
.ls37{letter-spacing:2.760000px;}
.ls5f{letter-spacing:2.820000px;}
.ls82{letter-spacing:2.832000px;}
.ls36{letter-spacing:2.880000px;}
.ls22{letter-spacing:2.940000px;}
.ls2f{letter-spacing:3.000000px;}
.ls31{letter-spacing:3.060000px;}
.ls71{letter-spacing:3.120000px;}
.ls9d{letter-spacing:3.168000px;}
.ls74{letter-spacing:3.240000px;}
.ls3f{letter-spacing:3.300000px;}
.ls34{letter-spacing:3.360000px;}
.ls95{letter-spacing:3.408000px;}
.ls18{letter-spacing:3.420000px;}
.ls3c{letter-spacing:3.480000px;}
.ls1f{letter-spacing:3.540000px;}
.ls70{letter-spacing:3.660000px;}
.lsa0{letter-spacing:3.696000px;}
.ls73{letter-spacing:3.720000px;}
.ls6f{letter-spacing:3.780000px;}
.ls5a{letter-spacing:3.840000px;}
.ls21{letter-spacing:3.900000px;}
.lse{letter-spacing:3.960000px;}
.ls96{letter-spacing:3.984000px;}
.ls1c{letter-spacing:4.020000px;}
.ls24{letter-spacing:4.080000px;}
.ls77{letter-spacing:4.140000px;}
.ls6d{letter-spacing:4.260000px;}
.ls3d{letter-spacing:4.320000px;}
.ls39{letter-spacing:4.380000px;}
.ls3a{letter-spacing:4.440000px;}
.ls59{letter-spacing:4.740000px;}
.ls6e{letter-spacing:4.800000px;}
.ls6b{letter-spacing:5.160000px;}
.ls72{letter-spacing:5.340000px;}
.ls64{letter-spacing:5.400000px;}
.ls4a{letter-spacing:5.700000px;}
.ls76{letter-spacing:5.880000px;}
.ls47{letter-spacing:6.060000px;}
.ls84{letter-spacing:6.192000px;}
.ls75{letter-spacing:6.540000px;}
.ls9a{letter-spacing:6.624000px;}
.ls62{letter-spacing:7.200000px;}
.ls56{letter-spacing:7.860000px;}
.ls54{letter-spacing:8.220000px;}
.ls40{letter-spacing:10.200000px;}
.ls4e{letter-spacing:34.740000px;}
.ls67{letter-spacing:747.301800px;}
.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;}
}
.ws4b{word-spacing:-60.000000px;}
.ws4d{word-spacing:-36.000000px;}
.ws17{word-spacing:-18.420000px;}
.ws1{word-spacing:-18.348000px;}
.ws5e{word-spacing:-18.000000px;}
.ws3c{word-spacing:-17.820000px;}
.ws3b{word-spacing:-17.760000px;}
.ws88{word-spacing:-17.700000px;}
.wsb2{word-spacing:-17.328000px;}
.ws18{word-spacing:-16.680000px;}
.ws4e{word-spacing:-16.200000px;}
.wsb4{word-spacing:-15.600000px;}
.wsb1{word-spacing:-14.736000px;}
.wsb5{word-spacing:-14.448000px;}
.ws1a{word-spacing:-14.178000px;}
.ws91{word-spacing:-14.160000px;}
.ws92{word-spacing:-13.872000px;}
.ws93{word-spacing:-13.824000px;}
.wsb0{word-spacing:-13.440000px;}
.ws68{word-spacing:-13.344000px;}
.wsb3{word-spacing:-13.248000px;}
.ws67{word-spacing:-13.152000px;}
.ws0{word-spacing:-11.008800px;}
.ws19{word-spacing:-10.008000px;}
.ws4a{word-spacing:-9.936000px;}
.ws55{word-spacing:-7.860000px;}
.ws97{word-spacing:-6.540000px;}
.ws4c{word-spacing:-6.004800px;}
.ws99{word-spacing:-5.880000px;}
.ws6a{word-spacing:-5.520000px;}
.ws69{word-spacing:-5.376000px;}
.ws8f{word-spacing:-5.340000px;}
.ws85{word-spacing:-4.440000px;}
.ws81{word-spacing:-4.320000px;}
.ws9a{word-spacing:-4.140000px;}
.ws27{word-spacing:-4.080000px;}
.wsbf{word-spacing:-3.984000px;}
.ws15{word-spacing:-3.960000px;}
.ws23{word-spacing:-3.900000px;}
.ws5a{word-spacing:-3.840000px;}
.ws8c{word-spacing:-3.780000px;}
.wsc9{word-spacing:-3.696000px;}
.ws8e{word-spacing:-3.660000px;}
.ws4{word-spacing:-3.630000px;}
.ws22{word-spacing:-3.540000px;}
.ws6c{word-spacing:-3.480000px;}
.wsbe{word-spacing:-3.408000px;}
.ws3e{word-spacing:-3.360000px;}
.ws98{word-spacing:-3.300000px;}
.ws96{word-spacing:-3.240000px;}
.wsc6{word-spacing:-3.168000px;}
.ws2e{word-spacing:-3.060000px;}
.ws38{word-spacing:-3.000000px;}
.ws25{word-spacing:-2.940000px;}
.ws52{word-spacing:-2.880000px;}
.wsa4{word-spacing:-2.832000px;}
.ws64{word-spacing:-2.820000px;}
.ws57{word-spacing:-2.700000px;}
.wsc8{word-spacing:-2.688000px;}
.ws3{word-spacing:-2.664000px;}
.ws2c{word-spacing:-2.640000px;}
.ws9c{word-spacing:-2.592000px;}
.ws2d{word-spacing:-2.580000px;}
.ws59{word-spacing:-2.520000px;}
.ws37{word-spacing:-2.460000px;}
.wsc5{word-spacing:-2.448000px;}
.wsa0{word-spacing:-2.352000px;}
.ws45{word-spacing:-2.340000px;}
.wsb6{word-spacing:-2.304000px;}
.ws42{word-spacing:-2.280000px;}
.wsc2{word-spacing:-2.256000px;}
.ws24{word-spacing:-2.220000px;}
.wsc0{word-spacing:-2.208000px;}
.ws48{word-spacing:-2.160000px;}
.ws6b{word-spacing:-2.100000px;}
.ws58{word-spacing:-2.040000px;}
.ws3a{word-spacing:-1.980000px;}
.wsb7{word-spacing:-1.968000px;}
.ws3f{word-spacing:-1.920000px;}
.ws2b{word-spacing:-1.860000px;}
.wsa6{word-spacing:-1.824000px;}
.ws61{word-spacing:-1.800000px;}
.ws9b{word-spacing:-1.776000px;}
.ws10{word-spacing:-1.740000px;}
.wsc7{word-spacing:-1.728000px;}
.ws31{word-spacing:-1.680000px;}
.wsae{word-spacing:-1.632000px;}
.wsbc{word-spacing:-1.584000px;}
.ws44{word-spacing:-1.560000px;}
.ws89{word-spacing:-1.500000px;}
.ws41{word-spacing:-1.440000px;}
.wsbb{word-spacing:-1.392000px;}
.ws1c{word-spacing:-1.380000px;}
.ws11{word-spacing:-1.320000px;}
.wsab{word-spacing:-1.296000px;}
.ws1d{word-spacing:-1.260000px;}
.wsac{word-spacing:-1.248000px;}
.ws1e{word-spacing:-1.200000px;}
.wsc4{word-spacing:-1.152000px;}
.ws26{word-spacing:-1.140000px;}
.wsa7{word-spacing:-1.104000px;}
.ws29{word-spacing:-1.080000px;}
.wsaf{word-spacing:-1.056000px;}
.ws8b{word-spacing:-1.020000px;}
.ws7a{word-spacing:-1.008000px;}
.wsd{word-spacing:-0.960000px;}
.wsaa{word-spacing:-0.912000px;}
.ws2f{word-spacing:-0.900000px;}
.ws9d{word-spacing:-0.864000px;}
.ws49{word-spacing:-0.840000px;}
.ws9e{word-spacing:-0.816000px;}
.ws33{word-spacing:-0.780000px;}
.wsb8{word-spacing:-0.768000px;}
.ws9{word-spacing:-0.720000px;}
.wsa2{word-spacing:-0.672000px;}
.ws8d{word-spacing:-0.660000px;}
.ws5{word-spacing:-0.624000px;}
.ws43{word-spacing:-0.600000px;}
.wsad{word-spacing:-0.576000px;}
.ws21{word-spacing:-0.540000px;}
.ws6{word-spacing:-0.480000px;}
.wsa8{word-spacing:-0.432000px;}
.ws56{word-spacing:-0.420000px;}
.ws87{word-spacing:-0.384000px;}
.ws5b{word-spacing:-0.360000px;}
.wsa1{word-spacing:-0.336000px;}
.ws34{word-spacing:-0.300000px;}
.ws9f{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.240000px;}
.ws7b{word-spacing:-0.192000px;}
.ws20{word-spacing:-0.180000px;}
.wsa3{word-spacing:-0.144000px;}
.ws39{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.096000px;}
.ws12{word-spacing:-0.060000px;}
.wsb9{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsa9{word-spacing:0.048000px;}
.ws66{word-spacing:0.060000px;}
.wsc1{word-spacing:0.096000px;}
.ws4f{word-spacing:0.120000px;}
.wsa5{word-spacing:0.144000px;}
.ws53{word-spacing:0.180000px;}
.ws6e{word-spacing:0.192000px;}
.wse{word-spacing:0.240000px;}
.ws94{word-spacing:0.420000px;}
.ws13{word-spacing:0.480000px;}
.ws30{word-spacing:0.600000px;}
.ws54{word-spacing:0.660000px;}
.ws82{word-spacing:0.840000px;}
.ws32{word-spacing:0.900000px;}
.ws86{word-spacing:0.960000px;}
.ws1b{word-spacing:1.140000px;}
.ws63{word-spacing:1.320000px;}
.ws14{word-spacing:1.440000px;}
.ws8a{word-spacing:1.560000px;}
.ws1f{word-spacing:1.620000px;}
.ws35{word-spacing:2.100000px;}
.ws83{word-spacing:2.280000px;}
.wsc3{word-spacing:3.072000px;}
.ws65{word-spacing:3.180000px;}
.ws51{word-spacing:3.420000px;}
.ws84{word-spacing:3.480000px;}
.ws6d{word-spacing:3.540000px;}
.ws50{word-spacing:3.600000px;}
.wsba{word-spacing:3.696000px;}
.ws47{word-spacing:3.720000px;}
.wsa{word-spacing:3.744000px;}
.wsb{word-spacing:3.888000px;}
.ws79{word-spacing:3.900000px;}
.ws90{word-spacing:4.260000px;}
.wsbd{word-spacing:4.368000px;}
.ws7{word-spacing:4.416000px;}
.ws28{word-spacing:4.500000px;}
.ws2a{word-spacing:4.620000px;}
.ws36{word-spacing:4.680000px;}
.ws46{word-spacing:4.800000px;}
.ws62{word-spacing:5.100000px;}
.ws40{word-spacing:5.232000px;}
.ws95{word-spacing:5.340000px;}
.ws16{word-spacing:5.460000px;}
.wsf{word-spacing:5.520000px;}
.ws7c{word-spacing:39.504000px;}
.ws7d{word-spacing:40.320000px;}
.ws6f{word-spacing:43.152000px;}
.ws5c{word-spacing:72.768000px;}
.ws7f{word-spacing:100.944000px;}
.ws5d{word-spacing:115.701000px;}
.ws7e{word-spacing:162.192000px;}
.ws80{word-spacing:337.152000px;}
.ws60{word-spacing:441.408000px;}
.ws5f{word-spacing:631.008000px;}
.ws75{word-spacing:631.824000px;}
.ws71{word-spacing:651.840000px;}
.ws73{word-spacing:665.184000px;}
.ws77{word-spacing:741.984000px;}
.ws76{word-spacing:768.672000px;}
.ws3d{word-spacing:834.528000px;}
.ws78{word-spacing:878.064000px;}
.ws72{word-spacing:989.280000px;}
.ws70{word-spacing:1015.968000px;}
.ws74{word-spacing:1397.136000px;}
._c{margin-left:-2898.126000px;}
._e{margin-left:-2874.309000px;}
._10{margin-left:-8.220000px;}
._b{margin-left:-6.732000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.538200px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.170000px;}
._6{width:1.488000px;}
._7{width:2.526000px;}
._2{width:3.630000px;}
._5{width:5.040000px;}
._8{width:6.192000px;}
._9{width:8.076000px;}
._a{width:9.420000px;}
._d{width:10.740000px;}
._f{width:12.417000px;}
._11{width:13.998000px;}
._1d{width:20.352000px;}
._1b{width:21.360000px;}
._1a{width:34.512000px;}
._1c{width:35.616000px;}
._2c{width:65.088000px;}
._2d{width:66.720000px;}
._1f{width:70.896000px;}
._2b{width:79.536000px;}
._1e{width:83.136000px;}
._2f{width:128.592000px;}
._14{width:133.723800px;}
._13{width:135.528600px;}
._12{width:138.880200px;}
._2e{width:140.976000px;}
._17{width:280.224000px;}
._16{width:314.880000px;}
._15{width:327.696000px;}
._21{width:339.744000px;}
._31{width:364.128000px;}
._30{width:390.768000px;}
._19{width:468.096000px;}
._22{width:481.152000px;}
._18{width:604.368000px;}
._20{width:643.920000px;}
._25{width:691.872000px;}
._26{width:712.656000px;}
._27{width:766.992000px;}
._2a{width:872.496000px;}
._29{width:951.216000px;}
._24{width:1002.624000px;}
._28{width:1132.608000px;}
._23{width:1410.480000px;}
.fc4{color:rgb(4,0,0);}
.fc3{color:rgb(208,18,27);}
.fc2{color:rgb(38,73,157);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:21.600000px;}
.fsb{font-size:27.984000px;}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.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;}
.y2d{bottom:50.517000px;}
.ycf{bottom:82.395300px;}
.y1{bottom:82.406700px;}
.y12f{bottom:83.244300px;}
.y1a4{bottom:83.346300px;}
.y171{bottom:83.362350px;}
.y63{bottom:83.363850px;}
.y2c{bottom:83.493900px;}
.y71{bottom:83.513850px;}
.yab{bottom:84.106500px;}
.y1bc{bottom:85.796700px;}
.y170{bottom:88.887300px;}
.y12b{bottom:92.703450px;}
.y197{bottom:93.221550px;}
.y19f{bottom:94.681350px;}
.y1fc{bottom:94.938300px;}
.y12e{bottom:98.988300px;}
.y1a3{bottom:99.090300px;}
.yce{bottom:100.395300px;}
.y62{bottom:101.363850px;}
.y70{bottom:101.513850px;}
.yfe{bottom:101.520300px;}
.y12a{bottom:108.951450px;}
.y1fb{bottom:109.938300px;}
.y16f{bottom:110.290350px;}
.y178{bottom:111.040500px;}
.y18b{bottom:114.935550px;}
.ycd{bottom:118.395300px;}
.y1bb{bottom:119.232600px;}
.y61{bottom:119.363850px;}
.y6f{bottom:119.513850px;}
.yfd{bottom:119.520300px;}
.y21{bottom:121.513200px;}
.y136{bottom:122.032500px;}
.yac{bottom:122.151000px;}
.y194{bottom:123.307500px;}
.y1fa{bottom:124.938300px;}
.y143{bottom:125.928150px;}
.y16e{bottom:126.538350px;}
.y198{bottom:127.203300px;}
.y142{bottom:130.403100px;}
.y13a{bottom:130.410450px;}
.y152{bottom:132.365700px;}
.ycc{bottom:136.395300px;}
.y60{bottom:137.363850px;}
.y6e{bottom:137.513850px;}
.yfc{bottom:137.520300px;}
.y1f9{bottom:139.938300px;}
.y18a{bottom:140.223150px;}
.y129{bottom:140.463450px;}
.y16d{bottom:142.786350px;}
.y196{bottom:145.782750px;}
.ycb{bottom:154.395450px;}
.y1f8{bottom:154.938300px;}
.y5f{bottom:155.363850px;}
.y6d{bottom:155.513850px;}
.yfb{bottom:155.520300px;}
.y16c{bottom:159.034350px;}
.y18c{bottom:161.622900px;}
.y188{bottom:161.911650px;}
.y1f7{bottom:169.938300px;}
.yca{bottom:172.395450px;}
.y5e{bottom:173.363850px;}
.y1ba{bottom:173.367600px;}
.y6c{bottom:173.513850px;}
.yfa{bottom:173.520300px;}
.y128{bottom:175.281000px;}
.y16b{bottom:175.286250px;}
.y13b{bottom:179.526450px;}
.y1f6{bottom:184.938300px;}
.y28{bottom:185.131350px;}
.y109{bottom:186.891000px;}
.y18d{bottom:189.498900px;}
.yc9{bottom:190.395450px;}
.y5d{bottom:191.363850px;}
.y1b9{bottom:191.367600px;}
.y6b{bottom:191.513850px;}
.yf9{bottom:191.520300px;}
.y1f5{bottom:199.938300px;}
.y27{bottom:203.131350px;}
.yc8{bottom:208.395450px;}
.y5c{bottom:209.363850px;}
.y1b8{bottom:209.367600px;}
.y6a{bottom:209.513850px;}
.yf8{bottom:209.520300px;}
.y16a{bottom:211.046250px;}
.y141{bottom:213.246450px;}
.y1f4{bottom:214.938300px;}
.y18e{bottom:217.362900px;}
.y127{bottom:219.319050px;}
.y26{bottom:221.131350px;}
.yc7{bottom:226.395450px;}
.y5b{bottom:227.363850px;}
.y1b7{bottom:227.367600px;}
.y69{bottom:227.513850px;}
.yf7{bottom:227.520300px;}
.y13c{bottom:228.642450px;}
.y189{bottom:229.648200px;}
.y1f3{bottom:229.940700px;}
.y25{bottom:239.131350px;}
.y105{bottom:243.424500px;}
.yc6{bottom:244.395450px;}
.y1f2{bottom:244.940700px;}
.y18f{bottom:245.226900px;}
.y5a{bottom:245.363850px;}
.y1b6{bottom:245.367600px;}
.y68{bottom:245.513850px;}
.yf6{bottom:245.520300px;}
.y108{bottom:247.321350px;}
.y169{bottom:250.115550px;}
.y24{bottom:257.131350px;}
.y1f1{bottom:259.940700px;}
.y195{bottom:261.227250px;}
.yc5{bottom:262.395450px;}
.y59{bottom:263.363850px;}
.y67{bottom:263.513850px;}
.yf5{bottom:263.520300px;}
.y10a{bottom:269.776050px;}
.y19d{bottom:272.877750px;}
.y190{bottom:273.090900px;}
.y1f0{bottom:274.940700px;}
.y23{bottom:275.131350px;}
.y13d{bottom:277.758450px;}
.yc4{bottom:280.395450px;}
.y58{bottom:281.363850px;}
.y1b5{bottom:281.367600px;}
.y66{bottom:281.513850px;}
.yf4{bottom:281.520300px;}
.y1ef{bottom:289.940700px;}
.y107{bottom:290.841300px;}
.y29{bottom:293.131350px;}
.y150{bottom:295.682700px;}
.yc3{bottom:298.395450px;}
.y57{bottom:299.363850px;}
.yf3{bottom:299.520300px;}
.y191{bottom:300.954900px;}
.yff{bottom:302.421450px;}
.y1ee{bottom:304.940700px;}
.y22{bottom:311.131350px;}
.y168{bottom:312.755250px;}
.yc2{bottom:316.395450px;}
.y56{bottom:317.363850px;}
.y1b4{bottom:317.367600px;}
.y65{bottom:317.513850px;}
.yf2{bottom:317.520300px;}
.y1ed{bottom:319.940700px;}
.y13e{bottom:326.886450px;}
.y192{bottom:328.818900px;}
.y167{bottom:329.003250px;}
.yc1{bottom:334.395450px;}
.y1ec{bottom:334.940700px;}
.y55{bottom:335.363850px;}
.y1b3{bottom:335.367600px;}
.yf1{bottom:335.520300px;}
.y166{bottom:345.251250px;}
.y1eb{bottom:349.940700px;}
.yc0{bottom:352.395450px;}
.y54{bottom:353.363850px;}
.yf0{bottom:353.520300px;}
.y100{bottom:356.121450px;}
.y193{bottom:356.682900px;}
.y165{bottom:361.499250px;}
.y1ea{bottom:364.940700px;}
.ybf{bottom:370.395450px;}
.y53{bottom:371.363850px;}
.y1b2{bottom:371.367600px;}
.yef{bottom:371.520300px;}
.y13f{bottom:376.002450px;}
.y164{bottom:377.747250px;}
.y229{bottom:379.938300px;}
.y1e9{bottom:379.940700px;}
.y235{bottom:379.941300px;}
.y106{bottom:381.220800px;}
.y20{bottom:386.144550px;}
.ybe{bottom:388.395450px;}
.y52{bottom:389.363850px;}
.y1b1{bottom:389.367600px;}
.yee{bottom:389.520300px;}
.y163{bottom:393.995250px;}
.y228{bottom:394.938300px;}
.y1e8{bottom:394.940700px;}
.y234{bottom:394.941300px;}
.y51{bottom:407.363850px;}
.yed{bottom:407.520300px;}
.y101{bottom:409.833450px;}
.y227{bottom:409.938300px;}
.y1e7{bottom:409.940700px;}
.y233{bottom:409.941300px;}
.y162{bottom:410.243250px;}
.y1f{bottom:419.000550px;}
.ybd{bottom:424.395450px;}
.y226{bottom:424.938300px;}
.y1e6{bottom:424.940700px;}
.y232{bottom:424.941300px;}
.y140{bottom:425.118450px;}
.y50{bottom:425.363850px;}
.y1b0{bottom:425.367600px;}
.yec{bottom:425.520300px;}
.y161{bottom:426.491250px;}
.y186{bottom:427.880550px;}
.y1a2{bottom:429.327300px;}
.y1e{bottom:434.000550px;}
.y225{bottom:439.938300px;}
.y1e5{bottom:439.940700px;}
.y231{bottom:439.941300px;}
.y160{bottom:442.739250px;}
.y4f{bottom:443.363850px;}
.y1af{bottom:443.367600px;}
.yeb{bottom:443.520300px;}
.y1a1{bottom:445.071300px;}
.y17c{bottom:446.432550px;}
.y1d{bottom:449.000550px;}
.y224{bottom:454.938300px;}
.y1e4{bottom:454.940700px;}
.y230{bottom:454.941300px;}
.y15f{bottom:458.987250px;}
.ybc{bottom:460.395450px;}
.y4e{bottom:461.363850px;}
.y1ae{bottom:461.367600px;}
.yea{bottom:461.520300px;}
.y102{bottom:463.545450px;}
.y1c{bottom:464.000550px;}
.y130{bottom:465.906600px;}
.y139{bottom:469.551300px;}
.y223{bottom:469.938300px;}
.y1e3{bottom:469.940700px;}
.y22f{bottom:469.941300px;}
.y19c{bottom:470.133000px;}
.y1a0{bottom:474.030000px;}
.y15e{bottom:475.235250px;}
.y17d{bottom:476.312550px;}
.ybb{bottom:478.395450px;}
.y1b{bottom:479.000550px;}
.y4d{bottom:479.363850px;}
.y1ad{bottom:479.367600px;}
.y222{bottom:484.938300px;}
.y1e2{bottom:484.940700px;}
.y22e{bottom:484.941300px;}
.y15d{bottom:491.483250px;}
.y1a{bottom:494.000550px;}
.y19e{bottom:495.690600px;}
.yba{bottom:496.395450px;}
.y4c{bottom:497.363850px;}
.y1ac{bottom:497.367600px;}
.ye9{bottom:497.520300px;}
.y221{bottom:499.938300px;}
.y1e1{bottom:499.940700px;}
.y22d{bottom:499.941300px;}
.y17e{bottom:506.204550px;}
.y15c{bottom:507.731250px;}
.y19{bottom:509.000550px;}
.y199{bottom:513.246750px;}
.yb9{bottom:514.395450px;}
.y220{bottom:514.938300px;}
.y1e0{bottom:514.940700px;}
.y22c{bottom:514.941300px;}
.y4b{bottom:515.363850px;}
.y1ab{bottom:515.367600px;}
.y131{bottom:515.394600px;}
.y103{bottom:517.233450px;}
.y15b{bottom:523.979250px;}
.y18{bottom:524.000550px;}
.y21f{bottom:529.938300px;}
.y1df{bottom:529.940700px;}
.y22b{bottom:529.941300px;}
.yb8{bottom:532.395450px;}
.y4a{bottom:533.363850px;}
.y1aa{bottom:533.367600px;}
.ye8{bottom:533.370300px;}
.yaa{bottom:533.370750px;}
.y8d{bottom:533.505750px;}
.y17f{bottom:536.096550px;}
.y17{bottom:539.000550px;}
.y15a{bottom:540.227250px;}
.y21e{bottom:544.938300px;}
.y1de{bottom:544.940700px;}
.y22a{bottom:544.941300px;}
.y138{bottom:551.130600px;}
.y49{bottom:551.363850px;}
.ye7{bottom:551.370300px;}
.ya9{bottom:551.370750px;}
.y8c{bottom:551.505750px;}
.y16{bottom:554.000550px;}
.y187{bottom:554.023950px;}
.y159{bottom:556.475250px;}
.y21d{bottom:559.938300px;}
.y1dd{bottom:559.940700px;}
.y132{bottom:564.870600px;}
.y180{bottom:565.988550px;}
.yb7{bottom:568.995900px;}
.y15{bottom:569.000550px;}
.y48{bottom:569.363850px;}
.y1a9{bottom:569.367600px;}
.ye6{bottom:569.370300px;}
.ya8{bottom:569.370750px;}
.y8b{bottom:569.505750px;}
.y104{bottom:570.933450px;}
.y21c{bottom:574.938300px;}
.y1dc{bottom:574.940700px;}
.yb6{bottom:578.907150px;}
.y14{bottom:584.000550px;}
.y47{bottom:587.363850px;}
.y1a8{bottom:587.367600px;}
.ye5{bottom:587.370300px;}
.ya7{bottom:587.370750px;}
.y8a{bottom:587.505750px;}
.y19a{bottom:589.842750px;}
.y21b{bottom:589.938300px;}
.y1db{bottom:589.940700px;}
.y158{bottom:592.235250px;}
.y181{bottom:595.892550px;}
.y13{bottom:599.000550px;}
.y21a{bottom:604.938300px;}
.y1da{bottom:604.940700px;}
.y46{bottom:605.363850px;}
.y1a7{bottom:605.367600px;}
.ye4{bottom:605.370300px;}
.ya6{bottom:605.370750px;}
.y89{bottom:605.505750px;}
.y12{bottom:614.000550px;}
.y133{bottom:614.358600px;}
.y219{bottom:619.938300px;}
.y1d9{bottom:619.940700px;}
.yb5{bottom:622.985850px;}
.y45{bottom:623.363850px;}
.y1a6{bottom:623.367600px;}
.ye3{bottom:623.370300px;}
.ya5{bottom:623.370750px;}
.y88{bottom:623.505750px;}
.y182{bottom:625.772550px;}
.y11{bottom:629.000550px;}
.y157{bottom:631.304550px;}
.y218{bottom:634.938300px;}
.y1d8{bottom:634.940700px;}
.y137{bottom:640.754100px;}
.yb4{bottom:640.985850px;}
.y44{bottom:641.363850px;}
.y1a5{bottom:641.367600px;}
.ye2{bottom:641.370300px;}
.ya4{bottom:641.370750px;}
.y87{bottom:641.505750px;}
.y10{bottom:644.000550px;}
.y217{bottom:649.938300px;}
.y1d7{bottom:649.940700px;}
.y183{bottom:655.664550px;}
.yb3{bottom:658.986000px;}
.yf{bottom:659.000550px;}
.y43{bottom:659.363850px;}
.y11d{bottom:659.367600px;}
.ye1{bottom:659.370300px;}
.ya3{bottom:659.370750px;}
.y86{bottom:659.505750px;}
.y126{bottom:659.513850px;}
.y134{bottom:663.834600px;}
.y216{bottom:664.938300px;}
.y1d6{bottom:664.940700px;}
.y19b{bottom:666.414750px;}
.ye{bottom:674.000550px;}
.yb2{bottom:676.986000px;}
.y42{bottom:677.363850px;}
.y11c{bottom:677.367600px;}
.ye0{bottom:677.370300px;}
.ya2{bottom:677.370750px;}
.y85{bottom:677.505750px;}
.y125{bottom:677.513850px;}
.y215{bottom:679.938300px;}
.y1d5{bottom:679.940700px;}
.y184{bottom:685.556550px;}
.y156{bottom:688.181400px;}
.yd{bottom:689.000550px;}
.y214{bottom:694.938300px;}
.y1d4{bottom:694.940700px;}
.yb1{bottom:694.986000px;}
.y64{bottom:695.228850px;}
.y41{bottom:695.363850px;}
.y11b{bottom:695.367600px;}
.ydf{bottom:695.370300px;}
.ya1{bottom:695.370750px;}
.y84{bottom:695.505750px;}
.y124{bottom:695.513850px;}
.y155{bottom:703.925400px;}
.y213{bottom:709.938300px;}
.y1d3{bottom:709.940700px;}
.yb0{bottom:712.986000px;}
.y135{bottom:713.322600px;}
.y40{bottom:713.363850px;}
.y11a{bottom:713.367600px;}
.yde{bottom:713.370300px;}
.ya0{bottom:713.370750px;}
.y83{bottom:713.505750px;}
.y123{bottom:713.513850px;}
.y185{bottom:715.448550px;}
.y154{bottom:719.669400px;}
.y212{bottom:724.938300px;}
.y1d2{bottom:724.940700px;}
.y3f{bottom:731.363850px;}
.y119{bottom:731.367600px;}
.ydd{bottom:731.370300px;}
.y9f{bottom:731.370750px;}
.y82{bottom:731.505750px;}
.y122{bottom:731.513850px;}
.yc{bottom:737.744550px;}
.y211{bottom:739.938300px;}
.y1d1{bottom:739.940700px;}
.y14f{bottom:744.247500px;}
.y153{bottom:748.143450px;}
.y3e{bottom:749.363850px;}
.yaf{bottom:749.367600px;}
.ydc{bottom:749.370300px;}
.y9e{bottom:749.370750px;}
.y81{bottom:749.505750px;}
.y121{bottom:749.513850px;}
.y17a{bottom:754.072650px;}
.y210{bottom:754.938300px;}
.y1d0{bottom:754.940700px;}
.yae{bottom:759.803400px;}
.y3d{bottom:767.363850px;}
.y118{bottom:767.367600px;}
.ydb{bottom:767.370300px;}
.y9d{bottom:767.370750px;}
.y80{bottom:767.505750px;}
.y120{bottom:767.513850px;}
.y151{bottom:767.950200px;}
.y20f{bottom:769.938300px;}
.y1cf{bottom:769.940700px;}
.yb{bottom:772.244550px;}
.y172{bottom:772.624800px;}
.y144{bottom:783.742050px;}
.y20e{bottom:784.938300px;}
.y1ce{bottom:784.940700px;}
.y3c{bottom:785.363850px;}
.y117{bottom:785.367600px;}
.yda{bottom:785.370300px;}
.y9c{bottom:785.370750px;}
.y7f{bottom:785.505750px;}
.ya{bottom:792.862500px;}
.y20d{bottom:799.938300px;}
.y1cd{bottom:799.940700px;}
.y12d{bottom:803.228850px;}
.y3b{bottom:803.363850px;}
.yad{bottom:803.367600px;}
.yd9{bottom:803.370300px;}
.y9b{bottom:803.370750px;}
.y7e{bottom:803.505750px;}
.y11f{bottom:803.513850px;}
.y9{bottom:805.244550px;}
.y145{bottom:807.034050px;}
.y20c{bottom:814.938300px;}
.y1cc{bottom:814.940700px;}
.y173{bottom:817.180800px;}
.y3a{bottom:821.363850px;}
.y116{bottom:821.367600px;}
.yd8{bottom:821.370300px;}
.y9a{bottom:821.370750px;}
.y7d{bottom:821.505750px;}
.y8{bottom:825.862500px;}
.y20b{bottom:829.938300px;}
.y1cb{bottom:829.940700px;}
.y146{bottom:830.326050px;}
.y12c{bottom:839.228850px;}
.y39{bottom:839.363850px;}
.y115{bottom:839.367600px;}
.y99{bottom:839.370750px;}
.y7c{bottom:839.505750px;}
.y7{bottom:842.362500px;}
.y20a{bottom:844.938300px;}
.y1ca{bottom:844.940700px;}
.y147{bottom:853.606050px;}
.y38{bottom:857.363850px;}
.y114{bottom:857.367600px;}
.yd7{bottom:857.370300px;}
.y98{bottom:857.370750px;}
.y7b{bottom:857.505750px;}
.y6{bottom:857.631300px;}
.y17b{bottom:859.810200px;}
.y209{bottom:859.938300px;}
.y1c9{bottom:859.940700px;}
.y174{bottom:861.724800px;}
.y208{bottom:874.938300px;}
.y1c8{bottom:874.940700px;}
.y37{bottom:875.363850px;}
.y113{bottom:875.367600px;}
.y97{bottom:875.370750px;}
.y7a{bottom:875.514000px;}
.y148{bottom:876.898050px;}
.y5{bottom:880.879800px;}
.y207{bottom:889.938300px;}
.y1c7{bottom:889.940700px;}
.yd6{bottom:893.235300px;}
.y36{bottom:893.363850px;}
.y112{bottom:893.367600px;}
.y96{bottom:893.370750px;}
.y79{bottom:893.514000px;}
.y149{bottom:900.190050px;}
.y206{bottom:904.938300px;}
.y1c6{bottom:904.940700px;}
.y175{bottom:906.280800px;}
.y4{bottom:908.269200px;}
.y35{bottom:911.363850px;}
.y111{bottom:911.367600px;}
.y95{bottom:911.370750px;}
.y78{bottom:911.514000px;}
.y205{bottom:919.938300px;}
.y1c5{bottom:919.940700px;}
.y14a{bottom:923.482050px;}
.y179{bottom:928.884150px;}
.y34{bottom:929.363850px;}
.y110{bottom:929.367600px;}
.y94{bottom:929.370750px;}
.y204{bottom:934.938300px;}
.y1c4{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.y14b{bottom:946.774050px;}
.y33{bottom:947.363850px;}
.y10f{bottom:947.367600px;}
.yd5{bottom:947.370300px;}
.y93{bottom:947.370750px;}
.y77{bottom:947.514000px;}
.y203{bottom:949.938300px;}
.y1c3{bottom:949.940700px;}
.y176{bottom:950.824800px;}
.y202{bottom:964.938300px;}
.y1c2{bottom:964.940700px;}
.y32{bottom:965.363850px;}
.y10e{bottom:965.367600px;}
.yd4{bottom:965.370300px;}
.y92{bottom:965.370750px;}
.y14c{bottom:970.066050px;}
.y201{bottom:979.938300px;}
.y1c1{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y31{bottom:983.363850px;}
.y76{bottom:983.364000px;}
.y10d{bottom:983.367600px;}
.yd3{bottom:983.370300px;}
.y91{bottom:983.370750px;}
.y14d{bottom:993.346050px;}
.y200{bottom:994.938300px;}
.y1c0{bottom:994.940700px;}
.y177{bottom:995.380800px;}
.y30{bottom:1001.363850px;}
.y75{bottom:1001.364000px;}
.y10c{bottom:1001.367600px;}
.yd2{bottom:1001.370300px;}
.y90{bottom:1001.370750px;}
.y1ff{bottom:1009.938300px;}
.y1bf{bottom:1009.940700px;}
.y14e{bottom:1016.638050px;}
.y2f{bottom:1019.363850px;}
.y74{bottom:1019.364000px;}
.y11e{bottom:1019.367600px;}
.yd1{bottom:1019.370300px;}
.y8f{bottom:1019.370750px;}
.y1fe{bottom:1024.938300px;}
.y1be{bottom:1024.940700px;}
.y2e{bottom:1037.363850px;}
.y73{bottom:1037.364000px;}
.y10b{bottom:1037.367600px;}
.yd0{bottom:1037.370300px;}
.y8e{bottom:1037.370750px;}
.y1fd{bottom:1039.938300px;}
.y1bd{bottom:1039.940700px;}
.y2b{bottom:1070.766450px;}
.y72{bottom:1086.066450px;}
.y2a{bottom:1086.069450px;}
.h1a{height:20.981250px;}
.h7{height:20.995312px;}
.h2{height:30.597656px;}
.h9{height:34.945312px;}
.hb{height:34.947187px;}
.ha{height:34.968750px;}
.h8{height:34.992188px;}
.h21{height:35.004187px;}
.h1c{height:36.371381px;}
.hf{height:37.179199px;}
.h19{height:37.442250px;}
.h1f{height:37.443113px;}
.h20{height:37.460513px;}
.hc{height:43.681641px;}
.hd{height:43.710938px;}
.he{height:43.740234px;}
.h10{height:43.755234px;}
.h15{height:46.833741px;}
.h16{height:46.848741px;}
.h6{height:51.498619px;}
.h5{height:51.504619px;}
.h13{height:51.699684px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h11{height:73.997034px;}
.h12{height:76.095234px;}
.h1d{height:271.512000px;}
.h1e{height:283.173000px;}
.h18{height:305.989500px;}
.h14{height:391.536000px;}
.h17{height:651.055500px;}
.h1b{height:939.196500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w4{width:337.830000px;}
.w7{width:492.793500px;}
.w5{width:496.924500px;}
.w3{width:524.973000px;}
.w2{width:639.526500px;}
.w6{width:718.627500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:10.298250px;}
.x3b{left:18.578100px;}
.x1c{left:22.279350px;}
.x2e{left:26.297700px;}
.x36{left:38.715150px;}
.x28{left:39.971550px;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x22{left:99.924600px;}
.x45{left:106.299150px;}
.xb{left:110.555400px;}
.x3a{left:116.373600px;}
.x39{left:123.045600px;}
.x2d{left:124.295700px;}
.x3{left:125.427450px;}
.x2c{left:130.451700px;}
.x6{left:131.816400px;}
.x3c{left:135.477600px;}
.x1b{left:137.323500px;}
.x2f{left:150.971700px;}
.x1a{left:159.602850px;}
.x4{left:161.571450px;}
.x19{left:165.974850px;}
.x27{left:173.340000px;}
.x15{left:174.484500px;}
.x35{left:187.365000px;}
.x1d{left:193.418850px;}
.x25{left:197.543400px;}
.x23{left:198.873150px;}
.x26{left:202.043400px;}
.x24{left:208.787400px;}
.x3f{left:210.690000px;}
.x5{left:212.876400px;}
.x42{left:215.532300px;}
.x17{left:220.038300px;}
.x34{left:226.080150px;}
.x2a{left:227.232000px;}
.x29{left:229.103550px;}
.x33{left:232.752150px;}
.x3e{left:236.219400px;}
.x16{left:245.451750px;}
.x30{left:249.264450px;}
.x40{left:259.019400px;}
.x1e{left:265.515300px;}
.x21{left:285.804600px;}
.x31{left:421.402950px;}
.x38{left:423.076350px;}
.x32{left:426.727650px;}
.x37{left:430.733100px;}
.x2b{left:440.407950px;}
.x3d{left:442.434900px;}
.x20{left:445.405500px;}
.x9{left:455.041500px;}
.xc{left:457.091850px;}
.x13{left:462.614250px;}
.x12{left:478.343700px;}
.x7{left:480.476400px;}
.x46{left:486.795150px;}
.xd{left:491.111850px;}
.x43{left:508.111350px;}
.x11{left:512.363700px;}
.xe{left:525.281850px;}
.x18{left:591.655950px;}
.x10{left:663.492300px;}
.x2{left:704.338650px;}
.x41{left:717.130200px;}
.xf{left:724.221150px;}
.x44{left:739.336350px;}
.x14{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.va{vertical-align:-7.148800pt;}
.v3{vertical-align:-3.018133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.790933pt;}
.vb{vertical-align:11.158400pt;}
.vd{vertical-align:14.632000pt;}
.v9{vertical-align:18.307200pt;}
.v1{vertical-align:20.138133pt;}
.v6{vertical-align:23.863467pt;}
.v5{vertical-align:26.894933pt;}
.v8{vertical-align:28.760000pt;}
.v7{vertical-align:30.186667pt;}
.vc{vertical-align:31.958400pt;}
.lsa2{letter-spacing:-2.730667pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls5e{letter-spacing:-0.426667pt;}
.ls63{letter-spacing:-0.170667pt;}
.ls5d{letter-spacing:-0.160000pt;}
.ls8d{letter-spacing:-0.128000pt;}
.ls5b{letter-spacing:-0.106667pt;}
.ls13{letter-spacing:-0.085333pt;}
.ls5c{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls8e{letter-spacing:-0.042667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.000533pt;}
.ls4f{letter-spacing:0.002667pt;}
.ls69{letter-spacing:0.002752pt;}
.ls53{letter-spacing:0.003200pt;}
.ls1{letter-spacing:0.003733pt;}
.ls68{letter-spacing:0.004267pt;}
.ls52{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls4d{letter-spacing:0.008000pt;}
.ls48{letter-spacing:0.008533pt;}
.ls51{letter-spacing:0.014400pt;}
.ls55{letter-spacing:0.014933pt;}
.ls92{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.085333pt;}
.ls30{letter-spacing:0.106667pt;}
.ls81{letter-spacing:0.128000pt;}
.ls4c{letter-spacing:0.140267pt;}
.lsc{letter-spacing:0.160000pt;}
.ls66{letter-spacing:0.170667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls7d{letter-spacing:0.256000pt;}
.ls4b{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.266667pt;}
.ls7f{letter-spacing:0.298667pt;}
.ls45{letter-spacing:0.300267pt;}
.ls25{letter-spacing:0.320000pt;}
.ls6c{letter-spacing:0.341333pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls86{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls7c{letter-spacing:0.469333pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls8a{letter-spacing:0.512000pt;}
.ls44{letter-spacing:0.513600pt;}
.ls46{letter-spacing:0.514667pt;}
.ls3b{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.554667pt;}
.ls6a{letter-spacing:0.586667pt;}
.ls80{letter-spacing:0.597333pt;}
.ls5{letter-spacing:0.640000pt;}
.ls91{letter-spacing:0.682667pt;}
.ls29{letter-spacing:0.693333pt;}
.ls7b{letter-spacing:0.725333pt;}
.ls41{letter-spacing:0.746667pt;}
.ls7a{letter-spacing:0.768000pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls87{letter-spacing:0.810667pt;}
.ls7{letter-spacing:0.853333pt;}
.ls65{letter-spacing:0.896000pt;}
.ls49{letter-spacing:0.905067pt;}
.ls16{letter-spacing:0.906667pt;}
.ls8c{letter-spacing:0.938667pt;}
.ls26{letter-spacing:0.960000pt;}
.ls85{letter-spacing:0.981333pt;}
.ls23{letter-spacing:1.013333pt;}
.ls9b{letter-spacing:1.024000pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls61{letter-spacing:1.076800pt;}
.ls89{letter-spacing:1.109333pt;}
.ls19{letter-spacing:1.120000pt;}
.ls88{letter-spacing:1.152000pt;}
.lsa{letter-spacing:1.173333pt;}
.ls17{letter-spacing:1.226667pt;}
.ls93{letter-spacing:1.237333pt;}
.ls38{letter-spacing:1.280000pt;}
.ls98{letter-spacing:1.322667pt;}
.ls20{letter-spacing:1.333333pt;}
.ls2d{letter-spacing:1.386667pt;}
.ls94{letter-spacing:1.408000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls8b{letter-spacing:1.450667pt;}
.ls8{letter-spacing:1.493333pt;}
.ls9e{letter-spacing:1.536000pt;}
.ls9{letter-spacing:1.546667pt;}
.ls78{letter-spacing:1.578667pt;}
.lsd{letter-spacing:1.600000pt;}
.ls83{letter-spacing:1.621333pt;}
.ls27{letter-spacing:1.653333pt;}
.ls35{letter-spacing:1.706667pt;}
.ls90{letter-spacing:1.749333pt;}
.ls1b{letter-spacing:1.760000pt;}
.ls58{letter-spacing:1.813333pt;}
.ls60{letter-spacing:1.816533pt;}
.lsa1{letter-spacing:1.834667pt;}
.ls14{letter-spacing:1.866667pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls97{letter-spacing:1.962667pt;}
.ls10{letter-spacing:1.973333pt;}
.ls99{letter-spacing:2.005333pt;}
.ls42{letter-spacing:2.026667pt;}
.ls8f{letter-spacing:2.048000pt;}
.ls43{letter-spacing:2.080000pt;}
.ls7e{letter-spacing:2.090667pt;}
.ls3e{letter-spacing:2.133333pt;}
.ls9c{letter-spacing:2.176000pt;}
.ls33{letter-spacing:2.186667pt;}
.ls2e{letter-spacing:2.240000pt;}
.ls2b{letter-spacing:2.293333pt;}
.ls79{letter-spacing:2.304000pt;}
.ls28{letter-spacing:2.346667pt;}
.ls9f{letter-spacing:2.389333pt;}
.ls57{letter-spacing:2.400000pt;}
.ls37{letter-spacing:2.453333pt;}
.ls5f{letter-spacing:2.506667pt;}
.ls82{letter-spacing:2.517333pt;}
.ls36{letter-spacing:2.560000pt;}
.ls22{letter-spacing:2.613333pt;}
.ls2f{letter-spacing:2.666667pt;}
.ls31{letter-spacing:2.720000pt;}
.ls71{letter-spacing:2.773333pt;}
.ls9d{letter-spacing:2.816000pt;}
.ls74{letter-spacing:2.880000pt;}
.ls3f{letter-spacing:2.933333pt;}
.ls34{letter-spacing:2.986667pt;}
.ls95{letter-spacing:3.029333pt;}
.ls18{letter-spacing:3.040000pt;}
.ls3c{letter-spacing:3.093333pt;}
.ls1f{letter-spacing:3.146667pt;}
.ls70{letter-spacing:3.253333pt;}
.lsa0{letter-spacing:3.285333pt;}
.ls73{letter-spacing:3.306667pt;}
.ls6f{letter-spacing:3.360000pt;}
.ls5a{letter-spacing:3.413333pt;}
.ls21{letter-spacing:3.466667pt;}
.lse{letter-spacing:3.520000pt;}
.ls96{letter-spacing:3.541333pt;}
.ls1c{letter-spacing:3.573333pt;}
.ls24{letter-spacing:3.626667pt;}
.ls77{letter-spacing:3.680000pt;}
.ls6d{letter-spacing:3.786667pt;}
.ls3d{letter-spacing:3.840000pt;}
.ls39{letter-spacing:3.893333pt;}
.ls3a{letter-spacing:3.946667pt;}
.ls59{letter-spacing:4.213333pt;}
.ls6e{letter-spacing:4.266667pt;}
.ls6b{letter-spacing:4.586667pt;}
.ls72{letter-spacing:4.746667pt;}
.ls64{letter-spacing:4.800000pt;}
.ls4a{letter-spacing:5.066667pt;}
.ls76{letter-spacing:5.226667pt;}
.ls47{letter-spacing:5.386667pt;}
.ls84{letter-spacing:5.504000pt;}
.ls75{letter-spacing:5.813333pt;}
.ls9a{letter-spacing:5.888000pt;}
.ls62{letter-spacing:6.400000pt;}
.ls56{letter-spacing:6.986667pt;}
.ls54{letter-spacing:7.306667pt;}
.ls40{letter-spacing:9.066667pt;}
.ls4e{letter-spacing:30.880000pt;}
.ls67{letter-spacing:664.268267pt;}
.ws4b{word-spacing:-53.333333pt;}
.ws4d{word-spacing:-32.000000pt;}
.ws17{word-spacing:-16.373333pt;}
.ws1{word-spacing:-16.309333pt;}
.ws5e{word-spacing:-16.000000pt;}
.ws3c{word-spacing:-15.840000pt;}
.ws3b{word-spacing:-15.786667pt;}
.ws88{word-spacing:-15.733333pt;}
.wsb2{word-spacing:-15.402667pt;}
.ws18{word-spacing:-14.826667pt;}
.ws4e{word-spacing:-14.400000pt;}
.wsb4{word-spacing:-13.866667pt;}
.wsb1{word-spacing:-13.098667pt;}
.wsb5{word-spacing:-12.842667pt;}
.ws1a{word-spacing:-12.602667pt;}
.ws91{word-spacing:-12.586667pt;}
.ws92{word-spacing:-12.330667pt;}
.ws93{word-spacing:-12.288000pt;}
.wsb0{word-spacing:-11.946667pt;}
.ws68{word-spacing:-11.861333pt;}
.wsb3{word-spacing:-11.776000pt;}
.ws67{word-spacing:-11.690667pt;}
.ws0{word-spacing:-9.785600pt;}
.ws19{word-spacing:-8.896000pt;}
.ws4a{word-spacing:-8.832000pt;}
.ws55{word-spacing:-6.986667pt;}
.ws97{word-spacing:-5.813333pt;}
.ws4c{word-spacing:-5.337600pt;}
.ws99{word-spacing:-5.226667pt;}
.ws6a{word-spacing:-4.906667pt;}
.ws69{word-spacing:-4.778667pt;}
.ws8f{word-spacing:-4.746667pt;}
.ws85{word-spacing:-3.946667pt;}
.ws81{word-spacing:-3.840000pt;}
.ws9a{word-spacing:-3.680000pt;}
.ws27{word-spacing:-3.626667pt;}
.wsbf{word-spacing:-3.541333pt;}
.ws15{word-spacing:-3.520000pt;}
.ws23{word-spacing:-3.466667pt;}
.ws5a{word-spacing:-3.413333pt;}
.ws8c{word-spacing:-3.360000pt;}
.wsc9{word-spacing:-3.285333pt;}
.ws8e{word-spacing:-3.253333pt;}
.ws4{word-spacing:-3.226667pt;}
.ws22{word-spacing:-3.146667pt;}
.ws6c{word-spacing:-3.093333pt;}
.wsbe{word-spacing:-3.029333pt;}
.ws3e{word-spacing:-2.986667pt;}
.ws98{word-spacing:-2.933333pt;}
.ws96{word-spacing:-2.880000pt;}
.wsc6{word-spacing:-2.816000pt;}
.ws2e{word-spacing:-2.720000pt;}
.ws38{word-spacing:-2.666667pt;}
.ws25{word-spacing:-2.613333pt;}
.ws52{word-spacing:-2.560000pt;}
.wsa4{word-spacing:-2.517333pt;}
.ws64{word-spacing:-2.506667pt;}
.ws57{word-spacing:-2.400000pt;}
.wsc8{word-spacing:-2.389333pt;}
.ws3{word-spacing:-2.368000pt;}
.ws2c{word-spacing:-2.346667pt;}
.ws9c{word-spacing:-2.304000pt;}
.ws2d{word-spacing:-2.293333pt;}
.ws59{word-spacing:-2.240000pt;}
.ws37{word-spacing:-2.186667pt;}
.wsc5{word-spacing:-2.176000pt;}
.wsa0{word-spacing:-2.090667pt;}
.ws45{word-spacing:-2.080000pt;}
.wsb6{word-spacing:-2.048000pt;}
.ws42{word-spacing:-2.026667pt;}
.wsc2{word-spacing:-2.005333pt;}
.ws24{word-spacing:-1.973333pt;}
.wsc0{word-spacing:-1.962667pt;}
.ws48{word-spacing:-1.920000pt;}
.ws6b{word-spacing:-1.866667pt;}
.ws58{word-spacing:-1.813333pt;}
.ws3a{word-spacing:-1.760000pt;}
.wsb7{word-spacing:-1.749333pt;}
.ws3f{word-spacing:-1.706667pt;}
.ws2b{word-spacing:-1.653333pt;}
.wsa6{word-spacing:-1.621333pt;}
.ws61{word-spacing:-1.600000pt;}
.ws9b{word-spacing:-1.578667pt;}
.ws10{word-spacing:-1.546667pt;}
.wsc7{word-spacing:-1.536000pt;}
.ws31{word-spacing:-1.493333pt;}
.wsae{word-spacing:-1.450667pt;}
.wsbc{word-spacing:-1.408000pt;}
.ws44{word-spacing:-1.386667pt;}
.ws89{word-spacing:-1.333333pt;}
.ws41{word-spacing:-1.280000pt;}
.wsbb{word-spacing:-1.237333pt;}
.ws1c{word-spacing:-1.226667pt;}
.ws11{word-spacing:-1.173333pt;}
.wsab{word-spacing:-1.152000pt;}
.ws1d{word-spacing:-1.120000pt;}
.wsac{word-spacing:-1.109333pt;}
.ws1e{word-spacing:-1.066667pt;}
.wsc4{word-spacing:-1.024000pt;}
.ws26{word-spacing:-1.013333pt;}
.wsa7{word-spacing:-0.981333pt;}
.ws29{word-spacing:-0.960000pt;}
.wsaf{word-spacing:-0.938667pt;}
.ws8b{word-spacing:-0.906667pt;}
.ws7a{word-spacing:-0.896000pt;}
.wsd{word-spacing:-0.853333pt;}
.wsaa{word-spacing:-0.810667pt;}
.ws2f{word-spacing:-0.800000pt;}
.ws9d{word-spacing:-0.768000pt;}
.ws49{word-spacing:-0.746667pt;}
.ws9e{word-spacing:-0.725333pt;}
.ws33{word-spacing:-0.693333pt;}
.wsb8{word-spacing:-0.682667pt;}
.ws9{word-spacing:-0.640000pt;}
.wsa2{word-spacing:-0.597333pt;}
.ws8d{word-spacing:-0.586667pt;}
.ws5{word-spacing:-0.554667pt;}
.ws43{word-spacing:-0.533333pt;}
.wsad{word-spacing:-0.512000pt;}
.ws21{word-spacing:-0.480000pt;}
.ws6{word-spacing:-0.426667pt;}
.wsa8{word-spacing:-0.384000pt;}
.ws56{word-spacing:-0.373333pt;}
.ws87{word-spacing:-0.341333pt;}
.ws5b{word-spacing:-0.320000pt;}
.wsa1{word-spacing:-0.298667pt;}
.ws34{word-spacing:-0.266667pt;}
.ws9f{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.213333pt;}
.ws7b{word-spacing:-0.170667pt;}
.ws20{word-spacing:-0.160000pt;}
.wsa3{word-spacing:-0.128000pt;}
.ws39{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.085333pt;}
.ws12{word-spacing:-0.053333pt;}
.wsb9{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.042667pt;}
.ws66{word-spacing:0.053333pt;}
.wsc1{word-spacing:0.085333pt;}
.ws4f{word-spacing:0.106667pt;}
.wsa5{word-spacing:0.128000pt;}
.ws53{word-spacing:0.160000pt;}
.ws6e{word-spacing:0.170667pt;}
.wse{word-spacing:0.213333pt;}
.ws94{word-spacing:0.373333pt;}
.ws13{word-spacing:0.426667pt;}
.ws30{word-spacing:0.533333pt;}
.ws54{word-spacing:0.586667pt;}
.ws82{word-spacing:0.746667pt;}
.ws32{word-spacing:0.800000pt;}
.ws86{word-spacing:0.853333pt;}
.ws1b{word-spacing:1.013333pt;}
.ws63{word-spacing:1.173333pt;}
.ws14{word-spacing:1.280000pt;}
.ws8a{word-spacing:1.386667pt;}
.ws1f{word-spacing:1.440000pt;}
.ws35{word-spacing:1.866667pt;}
.ws83{word-spacing:2.026667pt;}
.wsc3{word-spacing:2.730667pt;}
.ws65{word-spacing:2.826667pt;}
.ws51{word-spacing:3.040000pt;}
.ws84{word-spacing:3.093333pt;}
.ws6d{word-spacing:3.146667pt;}
.ws50{word-spacing:3.200000pt;}
.wsba{word-spacing:3.285333pt;}
.ws47{word-spacing:3.306667pt;}
.wsa{word-spacing:3.328000pt;}
.wsb{word-spacing:3.456000pt;}
.ws79{word-spacing:3.466667pt;}
.ws90{word-spacing:3.786667pt;}
.wsbd{word-spacing:3.882667pt;}
.ws7{word-spacing:3.925333pt;}
.ws28{word-spacing:4.000000pt;}
.ws2a{word-spacing:4.106667pt;}
.ws36{word-spacing:4.160000pt;}
.ws46{word-spacing:4.266667pt;}
.ws62{word-spacing:4.533333pt;}
.ws40{word-spacing:4.650667pt;}
.ws95{word-spacing:4.746667pt;}
.ws16{word-spacing:4.853333pt;}
.wsf{word-spacing:4.906667pt;}
.ws7c{word-spacing:35.114667pt;}
.ws7d{word-spacing:35.840000pt;}
.ws6f{word-spacing:38.357333pt;}
.ws5c{word-spacing:64.682667pt;}
.ws7f{word-spacing:89.728000pt;}
.ws5d{word-spacing:102.845333pt;}
.ws7e{word-spacing:144.170667pt;}
.ws80{word-spacing:299.690667pt;}
.ws60{word-spacing:392.362667pt;}
.ws5f{word-spacing:560.896000pt;}
.ws75{word-spacing:561.621333pt;}
.ws71{word-spacing:579.413333pt;}
.ws73{word-spacing:591.274667pt;}
.ws77{word-spacing:659.541333pt;}
.ws76{word-spacing:683.264000pt;}
.ws3d{word-spacing:741.802667pt;}
.ws78{word-spacing:780.501333pt;}
.ws72{word-spacing:879.360000pt;}
.ws70{word-spacing:903.082667pt;}
.ws74{word-spacing:1241.898667pt;}
._c{margin-left:-2576.112000pt;}
._e{margin-left:-2554.941333pt;}
._10{margin-left:-7.306667pt;}
._b{margin-left:-5.984000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.145067pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.040000pt;}
._6{width:1.322667pt;}
._7{width:2.245333pt;}
._2{width:3.226667pt;}
._5{width:4.480000pt;}
._8{width:5.504000pt;}
._9{width:7.178667pt;}
._a{width:8.373333pt;}
._d{width:9.546667pt;}
._f{width:11.037333pt;}
._11{width:12.442667pt;}
._1d{width:18.090667pt;}
._1b{width:18.986667pt;}
._1a{width:30.677333pt;}
._1c{width:31.658667pt;}
._2c{width:57.856000pt;}
._2d{width:59.306667pt;}
._1f{width:63.018667pt;}
._2b{width:70.698667pt;}
._1e{width:73.898667pt;}
._2f{width:114.304000pt;}
._14{width:118.865600pt;}
._13{width:120.469867pt;}
._12{width:123.449067pt;}
._2e{width:125.312000pt;}
._17{width:249.088000pt;}
._16{width:279.893333pt;}
._15{width:291.285333pt;}
._21{width:301.994667pt;}
._31{width:323.669333pt;}
._30{width:347.349333pt;}
._19{width:416.085333pt;}
._22{width:427.690667pt;}
._18{width:537.216000pt;}
._20{width:572.373333pt;}
._25{width:614.997333pt;}
._26{width:633.472000pt;}
._27{width:681.770667pt;}
._2a{width:775.552000pt;}
._29{width:845.525333pt;}
._24{width:891.221333pt;}
._28{width:1006.762667pt;}
._23{width:1253.760000pt;}
.fsa{font-size:19.200000pt;}
.fsb{font-size:24.874667pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:44.904000pt;}
.ycf{bottom:73.240267pt;}
.y1{bottom:73.250400pt;}
.y12f{bottom:73.994933pt;}
.y1a4{bottom:74.085600pt;}
.y171{bottom:74.099867pt;}
.y63{bottom:74.101200pt;}
.y2c{bottom:74.216800pt;}
.y71{bottom:74.234533pt;}
.yab{bottom:74.761333pt;}
.y1bc{bottom:76.263733pt;}
.y170{bottom:79.010933pt;}
.y12b{bottom:82.403067pt;}
.y197{bottom:82.863600pt;}
.y19f{bottom:84.161200pt;}
.y1fc{bottom:84.389600pt;}
.y12e{bottom:87.989600pt;}
.y1a3{bottom:88.080267pt;}
.yce{bottom:89.240267pt;}
.y62{bottom:90.101200pt;}
.y70{bottom:90.234533pt;}
.yfe{bottom:90.240267pt;}
.y12a{bottom:96.845733pt;}
.y1fb{bottom:97.722933pt;}
.y16f{bottom:98.035867pt;}
.y178{bottom:98.702667pt;}
.y18b{bottom:102.164933pt;}
.ycd{bottom:105.240267pt;}
.y1bb{bottom:105.984533pt;}
.y61{bottom:106.101200pt;}
.y6f{bottom:106.234533pt;}
.yfd{bottom:106.240267pt;}
.y21{bottom:108.011733pt;}
.y136{bottom:108.473333pt;}
.yac{bottom:108.578667pt;}
.y194{bottom:109.606667pt;}
.y1fa{bottom:111.056267pt;}
.y143{bottom:111.936133pt;}
.y16e{bottom:112.478533pt;}
.y198{bottom:113.069600pt;}
.y142{bottom:115.913867pt;}
.y13a{bottom:115.920400pt;}
.y152{bottom:117.658400pt;}
.ycc{bottom:121.240267pt;}
.y60{bottom:122.101200pt;}
.y6e{bottom:122.234533pt;}
.yfc{bottom:122.240267pt;}
.y1f9{bottom:124.389600pt;}
.y18a{bottom:124.642800pt;}
.y129{bottom:124.856400pt;}
.y16d{bottom:126.921200pt;}
.y196{bottom:129.584667pt;}
.ycb{bottom:137.240400pt;}
.y1f8{bottom:137.722933pt;}
.y5f{bottom:138.101200pt;}
.y6d{bottom:138.234533pt;}
.yfb{bottom:138.240267pt;}
.y16c{bottom:141.363867pt;}
.y18c{bottom:143.664800pt;}
.y188{bottom:143.921467pt;}
.y1f7{bottom:151.056267pt;}
.yca{bottom:153.240400pt;}
.y5e{bottom:154.101200pt;}
.y1ba{bottom:154.104533pt;}
.y6c{bottom:154.234533pt;}
.yfa{bottom:154.240267pt;}
.y128{bottom:155.805333pt;}
.y16b{bottom:155.810000pt;}
.y13b{bottom:159.579067pt;}
.y1f6{bottom:164.389600pt;}
.y28{bottom:164.561200pt;}
.y109{bottom:166.125333pt;}
.y18d{bottom:168.443467pt;}
.yc9{bottom:169.240400pt;}
.y5d{bottom:170.101200pt;}
.y1b9{bottom:170.104533pt;}
.y6b{bottom:170.234533pt;}
.yf9{bottom:170.240267pt;}
.y1f5{bottom:177.722933pt;}
.y27{bottom:180.561200pt;}
.yc8{bottom:185.240400pt;}
.y5c{bottom:186.101200pt;}
.y1b8{bottom:186.104533pt;}
.y6a{bottom:186.234533pt;}
.yf8{bottom:186.240267pt;}
.y16a{bottom:187.596667pt;}
.y141{bottom:189.552400pt;}
.y1f4{bottom:191.056267pt;}
.y18e{bottom:193.211467pt;}
.y127{bottom:194.950267pt;}
.y26{bottom:196.561200pt;}
.yc7{bottom:201.240400pt;}
.y5b{bottom:202.101200pt;}
.y1b7{bottom:202.104533pt;}
.y69{bottom:202.234533pt;}
.yf7{bottom:202.240267pt;}
.y13c{bottom:203.237733pt;}
.y189{bottom:204.131733pt;}
.y1f3{bottom:204.391733pt;}
.y25{bottom:212.561200pt;}
.y105{bottom:216.377333pt;}
.yc6{bottom:217.240400pt;}
.y1f2{bottom:217.725067pt;}
.y18f{bottom:217.979467pt;}
.y5a{bottom:218.101200pt;}
.y1b6{bottom:218.104533pt;}
.y68{bottom:218.234533pt;}
.yf6{bottom:218.240267pt;}
.y108{bottom:219.841200pt;}
.y169{bottom:222.324933pt;}
.y24{bottom:228.561200pt;}
.y1f1{bottom:231.058400pt;}
.y195{bottom:232.202000pt;}
.yc5{bottom:233.240400pt;}
.y59{bottom:234.101200pt;}
.y67{bottom:234.234533pt;}
.yf5{bottom:234.240267pt;}
.y10a{bottom:239.800933pt;}
.y19d{bottom:242.558000pt;}
.y190{bottom:242.747467pt;}
.y1f0{bottom:244.391733pt;}
.y23{bottom:244.561200pt;}
.y13d{bottom:246.896400pt;}
.yc4{bottom:249.240400pt;}
.y58{bottom:250.101200pt;}
.y1b5{bottom:250.104533pt;}
.y66{bottom:250.234533pt;}
.yf4{bottom:250.240267pt;}
.y1ef{bottom:257.725067pt;}
.y107{bottom:258.525600pt;}
.y29{bottom:260.561200pt;}
.y150{bottom:262.829067pt;}
.yc3{bottom:265.240400pt;}
.y57{bottom:266.101200pt;}
.yf3{bottom:266.240267pt;}
.y191{bottom:267.515467pt;}
.yff{bottom:268.819067pt;}
.y1ee{bottom:271.058400pt;}
.y22{bottom:276.561200pt;}
.y168{bottom:278.004667pt;}
.yc2{bottom:281.240400pt;}
.y56{bottom:282.101200pt;}
.y1b4{bottom:282.104533pt;}
.y65{bottom:282.234533pt;}
.yf2{bottom:282.240267pt;}
.y1ed{bottom:284.391733pt;}
.y13e{bottom:290.565733pt;}
.y192{bottom:292.283467pt;}
.y167{bottom:292.447333pt;}
.yc1{bottom:297.240400pt;}
.y1ec{bottom:297.725067pt;}
.y55{bottom:298.101200pt;}
.y1b3{bottom:298.104533pt;}
.yf1{bottom:298.240267pt;}
.y166{bottom:306.890000pt;}
.y1eb{bottom:311.058400pt;}
.yc0{bottom:313.240400pt;}
.y54{bottom:314.101200pt;}
.yf0{bottom:314.240267pt;}
.y100{bottom:316.552400pt;}
.y193{bottom:317.051467pt;}
.y165{bottom:321.332667pt;}
.y1ea{bottom:324.391733pt;}
.ybf{bottom:329.240400pt;}
.y53{bottom:330.101200pt;}
.y1b2{bottom:330.104533pt;}
.yef{bottom:330.240267pt;}
.y13f{bottom:334.224400pt;}
.y164{bottom:335.775333pt;}
.y229{bottom:337.722933pt;}
.y1e9{bottom:337.725067pt;}
.y235{bottom:337.725600pt;}
.y106{bottom:338.862933pt;}
.y20{bottom:343.239600pt;}
.ybe{bottom:345.240400pt;}
.y52{bottom:346.101200pt;}
.y1b1{bottom:346.104533pt;}
.yee{bottom:346.240267pt;}
.y163{bottom:350.218000pt;}
.y228{bottom:351.056267pt;}
.y1e8{bottom:351.058400pt;}
.y234{bottom:351.058933pt;}
.y51{bottom:362.101200pt;}
.yed{bottom:362.240267pt;}
.y101{bottom:364.296400pt;}
.y227{bottom:364.389600pt;}
.y1e7{bottom:364.391733pt;}
.y233{bottom:364.392267pt;}
.y162{bottom:364.660667pt;}
.y1f{bottom:372.444933pt;}
.ybd{bottom:377.240400pt;}
.y226{bottom:377.722933pt;}
.y1e6{bottom:377.725067pt;}
.y232{bottom:377.725600pt;}
.y140{bottom:377.883067pt;}
.y50{bottom:378.101200pt;}
.y1b0{bottom:378.104533pt;}
.yec{bottom:378.240267pt;}
.y161{bottom:379.103333pt;}
.y186{bottom:380.338267pt;}
.y1a2{bottom:381.624267pt;}
.y1e{bottom:385.778267pt;}
.y225{bottom:391.056267pt;}
.y1e5{bottom:391.058400pt;}
.y231{bottom:391.058933pt;}
.y160{bottom:393.546000pt;}
.y4f{bottom:394.101200pt;}
.y1af{bottom:394.104533pt;}
.yeb{bottom:394.240267pt;}
.y1a1{bottom:395.618933pt;}
.y17c{bottom:396.828933pt;}
.y1d{bottom:399.111600pt;}
.y224{bottom:404.389600pt;}
.y1e4{bottom:404.391733pt;}
.y230{bottom:404.392267pt;}
.y15f{bottom:407.988667pt;}
.ybc{bottom:409.240400pt;}
.y4e{bottom:410.101200pt;}
.y1ae{bottom:410.104533pt;}
.yea{bottom:410.240267pt;}
.y102{bottom:412.040400pt;}
.y1c{bottom:412.444933pt;}
.y130{bottom:414.139200pt;}
.y139{bottom:417.378933pt;}
.y223{bottom:417.722933pt;}
.y1e3{bottom:417.725067pt;}
.y22f{bottom:417.725600pt;}
.y19c{bottom:417.896000pt;}
.y1a0{bottom:421.360000pt;}
.y15e{bottom:422.431333pt;}
.y17d{bottom:423.388933pt;}
.ybb{bottom:425.240400pt;}
.y1b{bottom:425.778267pt;}
.y4d{bottom:426.101200pt;}
.y1ad{bottom:426.104533pt;}
.y222{bottom:431.056267pt;}
.y1e2{bottom:431.058400pt;}
.y22e{bottom:431.058933pt;}
.y15d{bottom:436.874000pt;}
.y1a{bottom:439.111600pt;}
.y19e{bottom:440.613867pt;}
.yba{bottom:441.240400pt;}
.y4c{bottom:442.101200pt;}
.y1ac{bottom:442.104533pt;}
.ye9{bottom:442.240267pt;}
.y221{bottom:444.389600pt;}
.y1e1{bottom:444.391733pt;}
.y22d{bottom:444.392267pt;}
.y17e{bottom:449.959600pt;}
.y15c{bottom:451.316667pt;}
.y19{bottom:452.444933pt;}
.y199{bottom:456.219333pt;}
.yb9{bottom:457.240400pt;}
.y220{bottom:457.722933pt;}
.y1e0{bottom:457.725067pt;}
.y22c{bottom:457.725600pt;}
.y4b{bottom:458.101200pt;}
.y1ab{bottom:458.104533pt;}
.y131{bottom:458.128533pt;}
.y103{bottom:459.763067pt;}
.y15b{bottom:465.759333pt;}
.y18{bottom:465.778267pt;}
.y21f{bottom:471.056267pt;}
.y1df{bottom:471.058400pt;}
.y22b{bottom:471.058933pt;}
.yb8{bottom:473.240400pt;}
.y4a{bottom:474.101200pt;}
.y1aa{bottom:474.104533pt;}
.ye8{bottom:474.106933pt;}
.yaa{bottom:474.107333pt;}
.y8d{bottom:474.227333pt;}
.y17f{bottom:476.530267pt;}
.y17{bottom:479.111600pt;}
.y15a{bottom:480.202000pt;}
.y21e{bottom:484.389600pt;}
.y1de{bottom:484.391733pt;}
.y22a{bottom:484.392267pt;}
.y138{bottom:489.893867pt;}
.y49{bottom:490.101200pt;}
.ye7{bottom:490.106933pt;}
.ya9{bottom:490.107333pt;}
.y8c{bottom:490.227333pt;}
.y16{bottom:492.444933pt;}
.y187{bottom:492.465733pt;}
.y159{bottom:494.644667pt;}
.y21d{bottom:497.722933pt;}
.y1dd{bottom:497.725067pt;}
.y132{bottom:502.107200pt;}
.y180{bottom:503.100933pt;}
.yb7{bottom:505.774133pt;}
.y15{bottom:505.778267pt;}
.y48{bottom:506.101200pt;}
.y1a9{bottom:506.104533pt;}
.ye6{bottom:506.106933pt;}
.ya8{bottom:506.107333pt;}
.y8b{bottom:506.227333pt;}
.y104{bottom:507.496400pt;}
.y21c{bottom:511.056267pt;}
.y1dc{bottom:511.058400pt;}
.yb6{bottom:514.584133pt;}
.y14{bottom:519.111600pt;}
.y47{bottom:522.101200pt;}
.y1a8{bottom:522.104533pt;}
.ye5{bottom:522.106933pt;}
.ya7{bottom:522.107333pt;}
.y8a{bottom:522.227333pt;}
.y19a{bottom:524.304667pt;}
.y21b{bottom:524.389600pt;}
.y1db{bottom:524.391733pt;}
.y158{bottom:526.431333pt;}
.y181{bottom:529.682267pt;}
.y13{bottom:532.444933pt;}
.y21a{bottom:537.722933pt;}
.y1da{bottom:537.725067pt;}
.y46{bottom:538.101200pt;}
.y1a7{bottom:538.104533pt;}
.ye4{bottom:538.106933pt;}
.ya6{bottom:538.107333pt;}
.y89{bottom:538.227333pt;}
.y12{bottom:545.778267pt;}
.y133{bottom:546.096533pt;}
.y219{bottom:551.056267pt;}
.y1d9{bottom:551.058400pt;}
.yb5{bottom:553.765200pt;}
.y45{bottom:554.101200pt;}
.y1a6{bottom:554.104533pt;}
.ye3{bottom:554.106933pt;}
.ya5{bottom:554.107333pt;}
.y88{bottom:554.227333pt;}
.y182{bottom:556.242267pt;}
.y11{bottom:559.111600pt;}
.y157{bottom:561.159600pt;}
.y218{bottom:564.389600pt;}
.y1d8{bottom:564.391733pt;}
.y137{bottom:569.559200pt;}
.yb4{bottom:569.765200pt;}
.y44{bottom:570.101200pt;}
.y1a5{bottom:570.104533pt;}
.ye2{bottom:570.106933pt;}
.ya4{bottom:570.107333pt;}
.y87{bottom:570.227333pt;}
.y10{bottom:572.444933pt;}
.y217{bottom:577.722933pt;}
.y1d7{bottom:577.725067pt;}
.y183{bottom:582.812933pt;}
.yb3{bottom:585.765333pt;}
.yf{bottom:585.778267pt;}
.y43{bottom:586.101200pt;}
.y11d{bottom:586.104533pt;}
.ye1{bottom:586.106933pt;}
.ya3{bottom:586.107333pt;}
.y86{bottom:586.227333pt;}
.y126{bottom:586.234533pt;}
.y134{bottom:590.075200pt;}
.y216{bottom:591.056267pt;}
.y1d6{bottom:591.058400pt;}
.y19b{bottom:592.368667pt;}
.ye{bottom:599.111600pt;}
.yb2{bottom:601.765333pt;}
.y42{bottom:602.101200pt;}
.y11c{bottom:602.104533pt;}
.ye0{bottom:602.106933pt;}
.ya2{bottom:602.107333pt;}
.y85{bottom:602.227333pt;}
.y125{bottom:602.234533pt;}
.y215{bottom:604.389600pt;}
.y1d5{bottom:604.391733pt;}
.y184{bottom:609.383600pt;}
.y156{bottom:611.716800pt;}
.yd{bottom:612.444933pt;}
.y214{bottom:617.722933pt;}
.y1d4{bottom:617.725067pt;}
.yb1{bottom:617.765333pt;}
.y64{bottom:617.981200pt;}
.y41{bottom:618.101200pt;}
.y11b{bottom:618.104533pt;}
.ydf{bottom:618.106933pt;}
.ya1{bottom:618.107333pt;}
.y84{bottom:618.227333pt;}
.y124{bottom:618.234533pt;}
.y155{bottom:625.711467pt;}
.y213{bottom:631.056267pt;}
.y1d3{bottom:631.058400pt;}
.yb0{bottom:633.765333pt;}
.y135{bottom:634.064533pt;}
.y40{bottom:634.101200pt;}
.y11a{bottom:634.104533pt;}
.yde{bottom:634.106933pt;}
.ya0{bottom:634.107333pt;}
.y83{bottom:634.227333pt;}
.y123{bottom:634.234533pt;}
.y185{bottom:635.954267pt;}
.y154{bottom:639.706133pt;}
.y212{bottom:644.389600pt;}
.y1d2{bottom:644.391733pt;}
.y3f{bottom:650.101200pt;}
.y119{bottom:650.104533pt;}
.ydd{bottom:650.106933pt;}
.y9f{bottom:650.107333pt;}
.y82{bottom:650.227333pt;}
.y122{bottom:650.234533pt;}
.yc{bottom:655.772933pt;}
.y211{bottom:657.722933pt;}
.y1d1{bottom:657.725067pt;}
.y14f{bottom:661.553333pt;}
.y153{bottom:665.016400pt;}
.y3e{bottom:666.101200pt;}
.yaf{bottom:666.104533pt;}
.ydc{bottom:666.106933pt;}
.y9e{bottom:666.107333pt;}
.y81{bottom:666.227333pt;}
.y121{bottom:666.234533pt;}
.y17a{bottom:670.286800pt;}
.y210{bottom:671.056267pt;}
.y1d0{bottom:671.058400pt;}
.yae{bottom:675.380800pt;}
.y3d{bottom:682.101200pt;}
.y118{bottom:682.104533pt;}
.ydb{bottom:682.106933pt;}
.y9d{bottom:682.107333pt;}
.y80{bottom:682.227333pt;}
.y120{bottom:682.234533pt;}
.y151{bottom:682.622400pt;}
.y20f{bottom:684.389600pt;}
.y1cf{bottom:684.391733pt;}
.yb{bottom:686.439600pt;}
.y172{bottom:686.777600pt;}
.y144{bottom:696.659600pt;}
.y20e{bottom:697.722933pt;}
.y1ce{bottom:697.725067pt;}
.y3c{bottom:698.101200pt;}
.y117{bottom:698.104533pt;}
.yda{bottom:698.106933pt;}
.y9c{bottom:698.107333pt;}
.y7f{bottom:698.227333pt;}
.ya{bottom:704.766667pt;}
.y20d{bottom:711.056267pt;}
.y1cd{bottom:711.058400pt;}
.y12d{bottom:713.981200pt;}
.y3b{bottom:714.101200pt;}
.yad{bottom:714.104533pt;}
.yd9{bottom:714.106933pt;}
.y9b{bottom:714.107333pt;}
.y7e{bottom:714.227333pt;}
.y11f{bottom:714.234533pt;}
.y9{bottom:715.772933pt;}
.y145{bottom:717.363600pt;}
.y20c{bottom:724.389600pt;}
.y1cc{bottom:724.391733pt;}
.y173{bottom:726.382933pt;}
.y3a{bottom:730.101200pt;}
.y116{bottom:730.104533pt;}
.yd8{bottom:730.106933pt;}
.y9a{bottom:730.107333pt;}
.y7d{bottom:730.227333pt;}
.y8{bottom:734.100000pt;}
.y20b{bottom:737.722933pt;}
.y1cb{bottom:737.725067pt;}
.y146{bottom:738.067600pt;}
.y12c{bottom:745.981200pt;}
.y39{bottom:746.101200pt;}
.y115{bottom:746.104533pt;}
.y99{bottom:746.107333pt;}
.y7c{bottom:746.227333pt;}
.y7{bottom:748.766667pt;}
.y20a{bottom:751.056267pt;}
.y1ca{bottom:751.058400pt;}
.y147{bottom:758.760933pt;}
.y38{bottom:762.101200pt;}
.y114{bottom:762.104533pt;}
.yd7{bottom:762.106933pt;}
.y98{bottom:762.107333pt;}
.y7b{bottom:762.227333pt;}
.y6{bottom:762.338933pt;}
.y17b{bottom:764.275733pt;}
.y209{bottom:764.389600pt;}
.y1c9{bottom:764.391733pt;}
.y174{bottom:765.977600pt;}
.y208{bottom:777.722933pt;}
.y1c8{bottom:777.725067pt;}
.y37{bottom:778.101200pt;}
.y113{bottom:778.104533pt;}
.y97{bottom:778.107333pt;}
.y7a{bottom:778.234667pt;}
.y148{bottom:779.464933pt;}
.y5{bottom:783.004267pt;}
.y207{bottom:791.056267pt;}
.y1c7{bottom:791.058400pt;}
.yd6{bottom:793.986933pt;}
.y36{bottom:794.101200pt;}
.y112{bottom:794.104533pt;}
.y96{bottom:794.107333pt;}
.y79{bottom:794.234667pt;}
.y149{bottom:800.168933pt;}
.y206{bottom:804.389600pt;}
.y1c6{bottom:804.391733pt;}
.y175{bottom:805.582933pt;}
.y4{bottom:807.350400pt;}
.y35{bottom:810.101200pt;}
.y111{bottom:810.104533pt;}
.y95{bottom:810.107333pt;}
.y78{bottom:810.234667pt;}
.y205{bottom:817.722933pt;}
.y1c5{bottom:817.725067pt;}
.y14a{bottom:820.872933pt;}
.y179{bottom:825.674800pt;}
.y34{bottom:826.101200pt;}
.y110{bottom:826.104533pt;}
.y94{bottom:826.107333pt;}
.y204{bottom:831.056267pt;}
.y1c4{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.y14b{bottom:841.576933pt;}
.y33{bottom:842.101200pt;}
.y10f{bottom:842.104533pt;}
.yd5{bottom:842.106933pt;}
.y93{bottom:842.107333pt;}
.y77{bottom:842.234667pt;}
.y203{bottom:844.389600pt;}
.y1c3{bottom:844.391733pt;}
.y176{bottom:845.177600pt;}
.y202{bottom:857.722933pt;}
.y1c2{bottom:857.725067pt;}
.y32{bottom:858.101200pt;}
.y10e{bottom:858.104533pt;}
.yd4{bottom:858.106933pt;}
.y92{bottom:858.107333pt;}
.y14c{bottom:862.280933pt;}
.y201{bottom:871.056267pt;}
.y1c1{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y31{bottom:874.101200pt;}
.y76{bottom:874.101333pt;}
.y10d{bottom:874.104533pt;}
.yd3{bottom:874.106933pt;}
.y91{bottom:874.107333pt;}
.y14d{bottom:882.974267pt;}
.y200{bottom:884.389600pt;}
.y1c0{bottom:884.391733pt;}
.y177{bottom:884.782933pt;}
.y30{bottom:890.101200pt;}
.y75{bottom:890.101333pt;}
.y10c{bottom:890.104533pt;}
.yd2{bottom:890.106933pt;}
.y90{bottom:890.107333pt;}
.y1ff{bottom:897.722933pt;}
.y1bf{bottom:897.725067pt;}
.y14e{bottom:903.678267pt;}
.y2f{bottom:906.101200pt;}
.y74{bottom:906.101333pt;}
.y11e{bottom:906.104533pt;}
.yd1{bottom:906.106933pt;}
.y8f{bottom:906.107333pt;}
.y1fe{bottom:911.056267pt;}
.y1be{bottom:911.058400pt;}
.y2e{bottom:922.101200pt;}
.y73{bottom:922.101333pt;}
.y10b{bottom:922.104533pt;}
.yd0{bottom:922.106933pt;}
.y8e{bottom:922.107333pt;}
.y1fd{bottom:924.389600pt;}
.y1bd{bottom:924.391733pt;}
.y2b{bottom:951.792400pt;}
.y72{bottom:965.392400pt;}
.y2a{bottom:965.395067pt;}
.h1a{height:18.650000pt;}
.h7{height:18.662500pt;}
.h2{height:27.197917pt;}
.h9{height:31.062500pt;}
.hb{height:31.064167pt;}
.ha{height:31.083333pt;}
.h8{height:31.104167pt;}
.h21{height:31.114833pt;}
.h1c{height:32.330117pt;}
.hf{height:33.048177pt;}
.h19{height:33.282000pt;}
.h1f{height:33.282767pt;}
.h20{height:33.298233pt;}
.hc{height:38.828125pt;}
.hd{height:38.854167pt;}
.he{height:38.880208pt;}
.h10{height:38.893542pt;}
.h15{height:41.629992pt;}
.h16{height:41.643325pt;}
.h6{height:45.776550pt;}
.h5{height:45.781883pt;}
.h13{height:45.955275pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h11{height:65.775142pt;}
.h12{height:67.640208pt;}
.h1d{height:241.344000pt;}
.h1e{height:251.709333pt;}
.h18{height:271.990667pt;}
.h14{height:348.032000pt;}
.h17{height:578.716000pt;}
.h1b{height:834.841333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w4{width:300.293333pt;}
.w7{width:438.038667pt;}
.w5{width:441.710667pt;}
.w3{width:466.642667pt;}
.w2{width:568.468000pt;}
.w6{width:638.780000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:9.154000pt;}
.x3b{left:16.513867pt;}
.x1c{left:19.803867pt;}
.x2e{left:23.375733pt;}
.x36{left:34.413467pt;}
.x28{left:35.530267pt;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x22{left:88.821867pt;}
.x45{left:94.488133pt;}
.xb{left:98.271467pt;}
.x3a{left:103.443200pt;}
.x39{left:109.373867pt;}
.x2d{left:110.485067pt;}
.x3{left:111.491067pt;}
.x2c{left:115.957067pt;}
.x6{left:117.170133pt;}
.x3c{left:120.424533pt;}
.x1b{left:122.065333pt;}
.x2f{left:134.197067pt;}
.x1a{left:141.869200pt;}
.x4{left:143.619067pt;}
.x19{left:147.533200pt;}
.x27{left:154.080000pt;}
.x15{left:155.097333pt;}
.x35{left:166.546667pt;}
.x1d{left:171.927867pt;}
.x25{left:175.594133pt;}
.x23{left:176.776133pt;}
.x26{left:179.594133pt;}
.x24{left:185.588800pt;}
.x3f{left:187.280000pt;}
.x5{left:189.223467pt;}
.x42{left:191.584267pt;}
.x17{left:195.589600pt;}
.x34{left:200.960133pt;}
.x2a{left:201.984000pt;}
.x29{left:203.647600pt;}
.x33{left:206.890800pt;}
.x3e{left:209.972800pt;}
.x16{left:218.179333pt;}
.x30{left:221.568400pt;}
.x40{left:230.239467pt;}
.x1e{left:236.013600pt;}
.x21{left:254.048533pt;}
.x31{left:374.580400pt;}
.x38{left:376.067867pt;}
.x32{left:379.313467pt;}
.x37{left:382.873867pt;}
.x2b{left:391.473733pt;}
.x3d{left:393.275467pt;}
.x20{left:395.916000pt;}
.x9{left:404.481333pt;}
.xc{left:406.303867pt;}
.x13{left:411.212667pt;}
.x12{left:425.194400pt;}
.x7{left:427.090133pt;}
.x46{left:432.706800pt;}
.xd{left:436.543867pt;}
.x43{left:451.654533pt;}
.x11{left:455.434400pt;}
.xe{left:466.917200pt;}
.x18{left:525.916400pt;}
.x10{left:589.770933pt;}
.x2{left:626.078800pt;}
.x41{left:637.449067pt;}
.xf{left:643.752133pt;}
.x44{left:657.187867pt;}
.x14{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; }
  