
    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_c33436f87cc2079db6d64ac9.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_170929758ff028044bf84094.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_ebf0e329fe4beecbe8d142e5.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_4436f8d5ea3024fc3be792e7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9fa7eb117c489f701fb344f6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_74ead8f5b53d230144499be8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_009581618723fc7848b0d1ad.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f148989c2aa112de3d16dd8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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);}
.v0{vertical-align:0.000000px;}
.ls7a{letter-spacing:-3.552000px;}
.ls8a{letter-spacing:-1.200000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls8b{letter-spacing:-0.300000px;}
.ls73{letter-spacing:-0.288000px;}
.ls52{letter-spacing:-0.240000px;}
.ls3c{letter-spacing:-0.180000px;}
.ls89{letter-spacing:-0.144000px;}
.ls3a{letter-spacing:-0.120000px;}
.ls79{letter-spacing:-0.096000px;}
.ls3b{letter-spacing:-0.060000px;}
.ls3d{letter-spacing:-0.048000px;}
.ls1d{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.048000px;}
.ls19{letter-spacing:0.060000px;}
.ls7c{letter-spacing:0.096000px;}
.ls38{letter-spacing:0.120000px;}
.ls46{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.180000px;}
.ls85{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.240000px;}
.ls51{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.336000px;}
.ls15{letter-spacing:0.360000px;}
.ls61{letter-spacing:0.384000px;}
.ls26{letter-spacing:0.420000px;}
.ls84{letter-spacing:0.432000px;}
.ls2e{letter-spacing:0.480000px;}
.ls7b{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.540000px;}
.ls92{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.600000px;}
.ls7f{letter-spacing:0.624000px;}
.ls28{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.672000px;}
.ls1b{letter-spacing:0.720000px;}
.ls64{letter-spacing:0.768000px;}
.lsf{letter-spacing:0.780000px;}
.ls2b{letter-spacing:0.816000px;}
.ls12{letter-spacing:0.840000px;}
.ls86{letter-spacing:0.864000px;}
.ls59{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.960000px;}
.ls91{letter-spacing:1.008000px;}
.ls37{letter-spacing:1.020000px;}
.ls2a{letter-spacing:1.056000px;}
.ls5{letter-spacing:1.080000px;}
.ls2c{letter-spacing:1.104000px;}
.ls45{letter-spacing:1.140000px;}
.ls25{letter-spacing:1.200000px;}
.ls62{letter-spacing:1.248000px;}
.ls30{letter-spacing:1.260000px;}
.ls90{letter-spacing:1.296000px;}
.ls43{letter-spacing:1.320000px;}
.ls7d{letter-spacing:1.344000px;}
.ls3f{letter-spacing:1.380000px;}
.ls87{letter-spacing:1.392000px;}
.ls14{letter-spacing:1.440000px;}
.ls80{letter-spacing:1.488000px;}
.ls1a{letter-spacing:1.500000px;}
.ls39{letter-spacing:1.560000px;}
.ls63{letter-spacing:1.584000px;}
.ls50{letter-spacing:1.620000px;}
.ls78{letter-spacing:1.632000px;}
.ls32{letter-spacing:1.680000px;}
.ls9d{letter-spacing:1.728000px;}
.lsb{letter-spacing:1.740000px;}
.ls7e{letter-spacing:1.776000px;}
.ls33{letter-spacing:1.800000px;}
.ls53{letter-spacing:1.824000px;}
.ls11{letter-spacing:1.860000px;}
.ls41{letter-spacing:1.920000px;}
.ls54{letter-spacing:1.980000px;}
.ls49{letter-spacing:2.016000px;}
.ls55{letter-spacing:2.040000px;}
.ls8d{letter-spacing:2.064000px;}
.ls34{letter-spacing:2.100000px;}
.ls96{letter-spacing:2.112000px;}
.ls47{letter-spacing:2.160000px;}
.ls82{letter-spacing:2.208000px;}
.ls13{letter-spacing:2.220000px;}
.ls77{letter-spacing:2.256000px;}
.ls40{letter-spacing:2.280000px;}
.ls5f{letter-spacing:2.340000px;}
.ls7{letter-spacing:2.400000px;}
.ls20{letter-spacing:2.460000px;}
.lse{letter-spacing:2.520000px;}
.ls76{letter-spacing:2.544000px;}
.ls9{letter-spacing:2.580000px;}
.ls98{letter-spacing:2.592000px;}
.ls35{letter-spacing:2.640000px;}
.ls9c{letter-spacing:2.688000px;}
.ls6{letter-spacing:2.700000px;}
.ls2d{letter-spacing:2.736000px;}
.ls1c{letter-spacing:2.760000px;}
.ls4b{letter-spacing:2.784000px;}
.ls18{letter-spacing:2.820000px;}
.ls67{letter-spacing:2.880000px;}
.ls81{letter-spacing:2.928000px;}
.ls29{letter-spacing:2.940000px;}
.ls93{letter-spacing:2.976000px;}
.ls6b{letter-spacing:3.000000px;}
.ls9a{letter-spacing:3.024000px;}
.ls27{letter-spacing:3.060000px;}
.ls83{letter-spacing:3.072000px;}
.ls48{letter-spacing:3.120000px;}
.ls24{letter-spacing:3.180000px;}
.ls97{letter-spacing:3.216000px;}
.ls3{letter-spacing:3.240000px;}
.ls8c{letter-spacing:3.264000px;}
.ls31{letter-spacing:3.300000px;}
.ls4f{letter-spacing:3.360000px;}
.ls88{letter-spacing:3.408000px;}
.ls4{letter-spacing:3.420000px;}
.ls23{letter-spacing:3.480000px;}
.ls99{letter-spacing:3.504000px;}
.ls5e{letter-spacing:3.540000px;}
.ls4e{letter-spacing:3.600000px;}
.ls60{letter-spacing:3.660000px;}
.ls5a{letter-spacing:3.720000px;}
.ls4c{letter-spacing:3.780000px;}
.ls95{letter-spacing:3.792000px;}
.ls17{letter-spacing:3.840000px;}
.ls8e{letter-spacing:3.888000px;}
.ls8{letter-spacing:3.900000px;}
.ls36{letter-spacing:3.960000px;}
.ls42{letter-spacing:4.020000px;}
.ls1f{letter-spacing:4.080000px;}
.ls9e{letter-spacing:4.128000px;}
.ls2f{letter-spacing:4.140000px;}
.ls66{letter-spacing:4.200000px;}
.ls70{letter-spacing:4.260000px;}
.ls3e{letter-spacing:4.320000px;}
.lsc{letter-spacing:4.380000px;}
.ls5c{letter-spacing:4.440000px;}
.ls9b{letter-spacing:4.464000px;}
.ls22{letter-spacing:4.500000px;}
.ls74{letter-spacing:4.560000px;}
.ls57{letter-spacing:4.740000px;}
.ls44{letter-spacing:4.800000px;}
.ls6c{letter-spacing:4.860000px;}
.ls6f{letter-spacing:4.980000px;}
.ls6e{letter-spacing:5.040000px;}
.ls6a{letter-spacing:5.220000px;}
.ls4d{letter-spacing:5.340000px;}
.ls94{letter-spacing:5.376000px;}
.ls75{letter-spacing:5.400000px;}
.ls5b{letter-spacing:5.580000px;}
.ls6d{letter-spacing:5.940000px;}
.ls69{letter-spacing:6.240000px;}
.ls10{letter-spacing:6.360000px;}
.ls9f{letter-spacing:6.384000px;}
.ls8f{letter-spacing:6.432000px;}
.ls65{letter-spacing:6.660000px;}
.ls5d{letter-spacing:6.780000px;}
.ls68{letter-spacing:7.020000px;}
.ls72{letter-spacing:7.620000px;}
.ls71{letter-spacing:8.400000px;}
.ls58{letter-spacing:9.420000px;}
.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;}
}
.wsb7{word-spacing:-25.080000px;}
.wsa5{word-spacing:-23.700000px;}
.ws72{word-spacing:-21.420000px;}
.ws71{word-spacing:-21.000000px;}
.ws25{word-spacing:-20.820000px;}
.ws46{word-spacing:-20.700000px;}
.wsbf{word-spacing:-20.280000px;}
.wsb6{word-spacing:-20.100000px;}
.ws86{word-spacing:-19.920000px;}
.ws53{word-spacing:-19.800000px;}
.wsca{word-spacing:-19.500000px;}
.ws48{word-spacing:-19.200000px;}
.ws6f{word-spacing:-19.080000px;}
.ws55{word-spacing:-18.900000px;}
.ws87{word-spacing:-18.840000px;}
.ws70{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.120000px;}
.wsc9{word-spacing:-17.880000px;}
.ws47{word-spacing:-17.820000px;}
.ws2{word-spacing:-17.760000px;}
.ws3{word-spacing:-17.520000px;}
.wscb{word-spacing:-17.340000px;}
.wsfd{word-spacing:-17.136000px;}
.ws7d{word-spacing:-17.040000px;}
.ws116{word-spacing:-16.704000px;}
.ws4{word-spacing:-16.680000px;}
.ws7e{word-spacing:-16.560000px;}
.wsfe{word-spacing:-16.368000px;}
.wsff{word-spacing:-15.888000px;}
.ws54{word-spacing:-15.012000px;}
.ws100{word-spacing:-14.592000px;}
.ws117{word-spacing:-14.544000px;}
.ws115{word-spacing:-14.208000px;}
.ws26{word-spacing:-14.178000px;}
.ws88{word-spacing:-14.112000px;}
.ws24{word-spacing:-14.064000px;}
.wsfc{word-spacing:-13.920000px;}
.wsfb{word-spacing:-13.872000px;}
.ws1{word-spacing:-13.680000px;}
.ws23{word-spacing:-13.584000px;}
.ws101{word-spacing:-13.488000px;}
.ws0{word-spacing:-13.344000px;}
.wsfa{word-spacing:-13.056000px;}
.ws67{word-spacing:-12.624000px;}
.ws95{word-spacing:-12.576000px;}
.wsf4{word-spacing:-12.528000px;}
.ws97{word-spacing:-12.480000px;}
.ws60{word-spacing:-12.432000px;}
.ws5f{word-spacing:-12.384000px;}
.wsd6{word-spacing:-12.336000px;}
.wsf3{word-spacing:-12.288000px;}
.wse6{word-spacing:-12.240000px;}
.wsf7{word-spacing:-11.712000px;}
.wscf{word-spacing:-9.984000px;}
.wsd3{word-spacing:-9.888000px;}
.wseb{word-spacing:-9.840000px;}
.ws5c{word-spacing:-9.792000px;}
.ws5d{word-spacing:-9.744000px;}
.wsdf{word-spacing:-9.696000px;}
.wsef{word-spacing:-9.648000px;}
.wse4{word-spacing:-9.600000px;}
.wsbd{word-spacing:-8.400000px;}
.wsd4{word-spacing:-7.248000px;}
.wsea{word-spacing:-7.200000px;}
.ws63{word-spacing:-7.152000px;}
.ws35{word-spacing:-7.104000px;}
.wsa6{word-spacing:-7.020000px;}
.wsdb{word-spacing:-7.008000px;}
.wsdc{word-spacing:-6.912000px;}
.ws8e{word-spacing:-6.780000px;}
.wsa2{word-spacing:-6.660000px;}
.ws118{word-spacing:-6.384000px;}
.ws75{word-spacing:-6.360000px;}
.ws33{word-spacing:-6.240000px;}
.wsb3{word-spacing:-5.940000px;}
.wscd{word-spacing:-5.400000px;}
.ws6c{word-spacing:-5.340000px;}
.ws10b{word-spacing:-5.328000px;}
.wsa8{word-spacing:-5.220000px;}
.wsb8{word-spacing:-5.040000px;}
.wsb9{word-spacing:-4.980000px;}
.wsae{word-spacing:-4.860000px;}
.ws119{word-spacing:-4.800000px;}
.ws79{word-spacing:-4.740000px;}
.ws65{word-spacing:-4.656000px;}
.ws96{word-spacing:-4.608000px;}
.ws9b{word-spacing:-4.512000px;}
.ws9c{word-spacing:-4.500000px;}
.wsec{word-spacing:-4.464000px;}
.wsd1{word-spacing:-4.416000px;}
.ws13{word-spacing:-4.380000px;}
.wsd2{word-spacing:-4.368000px;}
.ws4a{word-spacing:-4.320000px;}
.wsba{word-spacing:-4.260000px;}
.wsda{word-spacing:-4.224000px;}
.wsad{word-spacing:-4.200000px;}
.ws3e{word-spacing:-4.140000px;}
.ws114{word-spacing:-4.128000px;}
.ws1f{word-spacing:-4.080000px;}
.ws4d{word-spacing:-4.020000px;}
.ws41{word-spacing:-3.960000px;}
.ws2e{word-spacing:-3.900000px;}
.ws104{word-spacing:-3.888000px;}
.ws82{word-spacing:-3.840000px;}
.ws10c{word-spacing:-3.792000px;}
.ws6b{word-spacing:-3.780000px;}
.ws84{word-spacing:-3.720000px;}
.ws92{word-spacing:-3.660000px;}
.ws6d{word-spacing:-3.600000px;}
.ws8f{word-spacing:-3.540000px;}
.ws110{word-spacing:-3.504000px;}
.ws2a{word-spacing:-3.480000px;}
.ws11{word-spacing:-3.420000px;}
.wsf5{word-spacing:-3.408000px;}
.ws6e{word-spacing:-3.360000px;}
.ws83{word-spacing:-3.300000px;}
.ws102{word-spacing:-3.264000px;}
.ws1d{word-spacing:-3.240000px;}
.ws10e{word-spacing:-3.216000px;}
.ws2c{word-spacing:-3.180000px;}
.ws5b{word-spacing:-3.120000px;}
.wsee{word-spacing:-3.072000px;}
.ws30{word-spacing:-3.060000px;}
.ws111{word-spacing:-3.024000px;}
.wsac{word-spacing:-3.000000px;}
.ws109{word-spacing:-2.976000px;}
.ws40{word-spacing:-2.940000px;}
.wse7{word-spacing:-2.928000px;}
.wsa9{word-spacing:-2.880000px;}
.ws1e{word-spacing:-2.820000px;}
.wse2{word-spacing:-2.784000px;}
.ws3a{word-spacing:-2.700000px;}
.ws112{word-spacing:-2.688000px;}
.ws7{word-spacing:-2.664000px;}
.ws3c{word-spacing:-2.640000px;}
.ws10f{word-spacing:-2.592000px;}
.ws27{word-spacing:-2.580000px;}
.ws113{word-spacing:-2.544000px;}
.ws15{word-spacing:-2.520000px;}
.ws28{word-spacing:-2.460000px;}
.ws2f{word-spacing:-2.400000px;}
.wsa3{word-spacing:-2.340000px;}
.wsaa{word-spacing:-2.280000px;}
.wsd5{word-spacing:-2.256000px;}
.ws18{word-spacing:-2.220000px;}
.wse9{word-spacing:-2.208000px;}
.ws59{word-spacing:-2.160000px;}
.ws10d{word-spacing:-2.112000px;}
.ws3d{word-spacing:-2.100000px;}
.ws103{word-spacing:-2.064000px;}
.ws74{word-spacing:-2.040000px;}
.ws98{word-spacing:-2.016000px;}
.ws68{word-spacing:-1.980000px;}
.wsf8{word-spacing:-1.968000px;}
.ws4c{word-spacing:-1.920000px;}
.ws6a{word-spacing:-1.860000px;}
.ws66{word-spacing:-1.824000px;}
.ws4f{word-spacing:-1.800000px;}
.wse1{word-spacing:-1.776000px;}
.ws19{word-spacing:-1.740000px;}
.wsed{word-spacing:-1.728000px;}
.ws7b{word-spacing:-1.680000px;}
.wsd9{word-spacing:-1.632000px;}
.wsb4{word-spacing:-1.620000px;}
.ws9a{word-spacing:-1.584000px;}
.ws45{word-spacing:-1.560000px;}
.wsd0{word-spacing:-1.536000px;}
.ws21{word-spacing:-1.500000px;}
.wse5{word-spacing:-1.488000px;}
.ws8d{word-spacing:-1.440000px;}
.ws4b{word-spacing:-1.380000px;}
.wse0{word-spacing:-1.344000px;}
.ws7a{word-spacing:-1.320000px;}
.ws106{word-spacing:-1.296000px;}
.ws3b{word-spacing:-1.260000px;}
.wse8{word-spacing:-1.248000px;}
.ws43{word-spacing:-1.200000px;}
.ws4e{word-spacing:-1.140000px;}
.ws37{word-spacing:-1.104000px;}
.ws16{word-spacing:-1.080000px;}
.ws36{word-spacing:-1.056000px;}
.ws42{word-spacing:-1.020000px;}
.ws1c{word-spacing:-0.960000px;}
.ws8a{word-spacing:-0.900000px;}
.wsf2{word-spacing:-0.864000px;}
.ws8c{word-spacing:-0.840000px;}
.ws77{word-spacing:-0.780000px;}
.wsf6{word-spacing:-0.768000px;}
.ws22{word-spacing:-0.720000px;}
.wse{word-spacing:-0.672000px;}
.ws32{word-spacing:-0.660000px;}
.wse3{word-spacing:-0.624000px;}
.ws69{word-spacing:-0.600000px;}
.ws108{word-spacing:-0.576000px;}
.ws14{word-spacing:-0.540000px;}
.wsdd{word-spacing:-0.528000px;}
.ws38{word-spacing:-0.480000px;}
.wsf0{word-spacing:-0.432000px;}
.wsab{word-spacing:-0.420000px;}
.ws94{word-spacing:-0.384000px;}
.ws1a{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.336000px;}
.ws3f{word-spacing:-0.300000px;}
.ws64{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.240000px;}
.wsf1{word-spacing:-0.192000px;}
.ws76{word-spacing:-0.180000px;}
.ws52{word-spacing:-0.144000px;}
.ws44{word-spacing:-0.120000px;}
.wsde{word-spacing:-0.096000px;}
.ws20{word-spacing:-0.060000px;}
.ws62{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws34{word-spacing:0.048000px;}
.ws2d{word-spacing:0.060000px;}
.wsd8{word-spacing:0.096000px;}
.ws2b{word-spacing:0.120000px;}
.ws31{word-spacing:0.180000px;}
.ws29{word-spacing:0.240000px;}
.wsc8{word-spacing:0.288000px;}
.ws91{word-spacing:0.300000px;}
.ws61{word-spacing:0.432000px;}
.wsa4{word-spacing:0.720000px;}
.ws58{word-spacing:0.900000px;}
.wscc{word-spacing:0.960000px;}
.wsf9{word-spacing:1.200000px;}
.wsd7{word-spacing:1.584000px;}
.ws50{word-spacing:1.620000px;}
.wsd{word-spacing:1.728000px;}
.ws105{word-spacing:1.776000px;}
.wsc5{word-spacing:1.980000px;}
.wsb2{word-spacing:2.040000px;}
.ws57{word-spacing:2.100000px;}
.ws17{word-spacing:2.220000px;}
.wsf{word-spacing:2.304000px;}
.ws93{word-spacing:2.400000px;}
.ws90{word-spacing:2.460000px;}
.ws89{word-spacing:2.580000px;}
.ws5e{word-spacing:2.688000px;}
.ws85{word-spacing:2.700000px;}
.ws1b{word-spacing:2.760000px;}
.wsb5{word-spacing:2.880000px;}
.wsc4{word-spacing:2.928000px;}
.wsc6{word-spacing:3.000000px;}
.ws99{word-spacing:3.024000px;}
.wsce{word-spacing:3.060000px;}
.wsbb{word-spacing:3.120000px;}
.ws8b{word-spacing:3.180000px;}
.wsc7{word-spacing:3.552000px;}
.ws78{word-spacing:3.660000px;}
.wsa{word-spacing:3.840000px;}
.wsa7{word-spacing:3.900000px;}
.ws5a{word-spacing:3.960000px;}
.ws39{word-spacing:4.020000px;}
.ws10a{word-spacing:4.032000px;}
.ws8{word-spacing:4.368000px;}
.wsa1{word-spacing:4.380000px;}
.wsc{word-spacing:4.416000px;}
.ws51{word-spacing:4.560000px;}
.ws56{word-spacing:4.680000px;}
.ws7c{word-spacing:4.704000px;}
.wsbc{word-spacing:4.920000px;}
.wsbe{word-spacing:4.980000px;}
.ws12{word-spacing:5.460000px;}
.ws10{word-spacing:5.520000px;}
.ws107{word-spacing:6.144000px;}
.ws73{word-spacing:557.904000px;}
.wsc0{word-spacing:622.560000px;}
.wsaf{word-spacing:696.960000px;}
.wsc3{word-spacing:728.640000px;}
.ws7f{word-spacing:750.960000px;}
.ws49{word-spacing:772.224000px;}
.wsb0{word-spacing:782.544000px;}
.ws80{word-spacing:810.480000px;}
.ws9f{word-spacing:838.704000px;}
.ws81{word-spacing:842.064000px;}
.ws9d{word-spacing:849.600000px;}
.wsa0{word-spacing:883.392000px;}
.wsb1{word-spacing:884.688000px;}
.ws9e{word-spacing:886.080000px;}
.wsc2{word-spacing:904.992000px;}
.wsc1{word-spacing:963.456000px;}
._f{margin-left:-2898.126000px;}
._10{margin-left:-2874.309000px;}
._14{margin-left:-8.664000px;}
._b{margin-left:-6.900000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.732000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.074000px;}
._7{width:1.440000px;}
._5{width:2.640000px;}
._3{width:4.584000px;}
._6{width:5.622000px;}
._a{width:6.756000px;}
._c{width:7.764000px;}
._8{width:8.880000px;}
._9{width:10.776000px;}
._13{width:12.000000px;}
._15{width:13.020000px;}
._16{width:14.040000px;}
._1c{width:22.848000px;}
._1e{width:26.580000px;}
._19{width:49.536000px;}
._11{width:59.820000px;}
._d{width:65.664000px;}
._12{width:83.952000px;}
._e{width:89.712000px;}
._17{width:108.192000px;}
._1b{width:125.046000px;}
._1a{width:126.336000px;}
._1f{width:127.632000px;}
._1d{width:130.512000px;}
._18{width:132.240000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y10b{bottom:82.701150px;}
.y97{bottom:82.902000px;}
.y18c{bottom:83.008350px;}
.y12f{bottom:83.363850px;}
.y2a{bottom:83.493900px;}
.y111{bottom:83.539800px;}
.y171{bottom:83.740650px;}
.y89{bottom:84.851100px;}
.y152{bottom:84.992700px;}
.y56{bottom:85.938300px;}
.y1b9{bottom:89.080050px;}
.y213{bottom:94.796700px;}
.y1f3{bottom:94.938300px;}
.y253{bottom:94.941300px;}
.y1fc{bottom:95.367600px;}
.yf1{bottom:96.567600px;}
.y16c{bottom:96.709350px;}
.y10a{bottom:98.445150px;}
.y96{bottom:98.646000px;}
.y18b{bottom:98.752350px;}
.y110{bottom:99.283800px;}
.y170{bottom:99.484650px;}
.y55{bottom:100.938300px;}
.y12e{bottom:101.363850px;}
.y88{bottom:102.851100px;}
.y151{bottom:102.992700px;}
.y1b8{bottom:104.080050px;}
.y212{bottom:109.796700px;}
.y1f2{bottom:109.938300px;}
.y252{bottom:109.941300px;}
.y1fb{bottom:113.367600px;}
.y109{bottom:114.189150px;}
.y95{bottom:114.390000px;}
.y18a{bottom:114.496350px;}
.yf0{bottom:114.567600px;}
.y16b{bottom:114.709350px;}
.y10f{bottom:115.027800px;}
.y16f{bottom:115.228650px;}
.y54{bottom:115.938300px;}
.y1b7{bottom:119.080050px;}
.y12d{bottom:119.363850px;}
.y87{bottom:120.851100px;}
.y150{bottom:120.992700px;}
.y10{bottom:121.513200px;}
.y211{bottom:124.796700px;}
.y1f1{bottom:124.938300px;}
.y251{bottom:124.941300px;}
.ybd{bottom:125.654700px;}
.y94{bottom:130.134000px;}
.y189{bottom:130.240350px;}
.y10e{bottom:130.771800px;}
.y53{bottom:130.938300px;}
.y16e{bottom:130.972650px;}
.y1fa{bottom:131.367600px;}
.yef{bottom:132.567600px;}
.y16a{bottom:132.709350px;}
.y1b6{bottom:134.080050px;}
.y12c{bottom:137.363850px;}
.y86{bottom:138.851100px;}
.y210{bottom:139.796700px;}
.y1f0{bottom:139.938300px;}
.y250{bottom:139.941300px;}
.ybc{bottom:143.654700px;}
.y52{bottom:145.938300px;}
.y16d{bottom:146.716650px;}
.y1b5{bottom:149.080050px;}
.y1f9{bottom:149.367600px;}
.yee{bottom:150.567600px;}
.y169{bottom:150.709350px;}
.y20f{bottom:154.796700px;}
.y1ef{bottom:154.938300px;}
.y24f{bottom:154.941300px;}
.y12b{bottom:155.363850px;}
.y14f{bottom:156.566400px;}
.y85{bottom:156.851100px;}
.y51{bottom:160.938300px;}
.y1b4{bottom:164.080050px;}
.y1f8{bottom:167.367600px;}
.yed{bottom:168.567600px;}
.y168{bottom:168.709350px;}
.y20e{bottom:169.796700px;}
.y1ee{bottom:169.938300px;}
.y24e{bottom:169.941300px;}
.y14e{bottom:171.566400px;}
.y12a{bottom:173.363850px;}
.y84{bottom:174.851100px;}
.y50{bottom:175.938300px;}
.y1b3{bottom:179.080050px;}
.ybb{bottom:179.654700px;}
.y20d{bottom:184.796700px;}
.y1ed{bottom:184.938300px;}
.y24d{bottom:184.941300px;}
.y1f7{bottom:185.367600px;}
.y26{bottom:186.406950px;}
.yec{bottom:186.567600px;}
.y167{bottom:186.709350px;}
.y129{bottom:191.363850px;}
.y83{bottom:192.851100px;}
.y1b1{bottom:194.080050px;}
.y1b2{bottom:194.083050px;}
.y20c{bottom:199.796700px;}
.y1ec{bottom:199.938300px;}
.y24c{bottom:199.941300px;}
.y1f6{bottom:203.367600px;}
.y14d{bottom:203.870400px;}
.y25{bottom:204.406950px;}
.yeb{bottom:204.567600px;}
.y166{bottom:204.709350px;}
.y1b0{bottom:209.080050px;}
.y128{bottom:209.363850px;}
.y4f{bottom:209.378850px;}
.y82{bottom:210.851100px;}
.y20b{bottom:214.796700px;}
.y1eb{bottom:214.938300px;}
.y24b{bottom:214.941300px;}
.yba{bottom:215.080050px;}
.y14c{bottom:219.476400px;}
.y1f5{bottom:221.367600px;}
.y24{bottom:222.406950px;}
.yea{bottom:222.567600px;}
.y165{bottom:222.709350px;}
.y1af{bottom:224.080050px;}
.y127{bottom:227.363850px;}
.y4e{bottom:227.378850px;}
.y81{bottom:228.851100px;}
.y20a{bottom:229.796700px;}
.y1ea{bottom:229.938300px;}
.y24a{bottom:229.941300px;}
.yb9{bottom:230.080050px;}
.y14b{bottom:233.804700px;}
.y1ae{bottom:239.080050px;}
.y1f4{bottom:239.367600px;}
.y23{bottom:240.406950px;}
.ye9{bottom:240.567600px;}
.y164{bottom:240.709350px;}
.y209{bottom:244.796700px;}
.y1e9{bottom:244.938300px;}
.y249{bottom:244.941300px;}
.yb8{bottom:245.080050px;}
.y126{bottom:245.363850px;}
.y80{bottom:246.851100px;}
.y14a{bottom:251.804700px;}
.y1ad{bottom:254.080050px;}
.y22{bottom:258.406950px;}
.ye8{bottom:258.567600px;}
.y163{bottom:258.709350px;}
.y208{bottom:259.796700px;}
.y1e8{bottom:259.938300px;}
.y248{bottom:259.941300px;}
.yb7{bottom:260.080050px;}
.y4d{bottom:263.243850px;}
.y125{bottom:263.363850px;}
.y7f{bottom:264.851100px;}
.y1ac{bottom:269.080050px;}
.y207{bottom:274.796700px;}
.y1e7{bottom:274.938300px;}
.y247{bottom:274.941300px;}
.yb6{bottom:275.080050px;}
.y21{bottom:276.406950px;}
.ye7{bottom:276.567600px;}
.y162{bottom:276.709350px;}
.y4c{bottom:281.243850px;}
.y124{bottom:281.363850px;}
.y7e{bottom:282.851100px;}
.y1aa{bottom:284.080050px;}
.y1ab{bottom:284.083050px;}
.y149{bottom:287.654700px;}
.y9a{bottom:288.412500px;}
.y9d{bottom:288.424500px;}
.y206{bottom:289.796700px;}
.y1e6{bottom:289.938300px;}
.y246{bottom:289.941300px;}
.yb5{bottom:290.080050px;}
.y155{bottom:294.379800px;}
.y20{bottom:294.406950px;}
.ye6{bottom:294.567600px;}
.y161{bottom:294.709350px;}
.y1a9{bottom:299.080050px;}
.y4b{bottom:299.243850px;}
.y123{bottom:299.363850px;}
.y7d{bottom:300.851100px;}
.y205{bottom:304.796700px;}
.y1e5{bottom:304.938300px;}
.y245{bottom:304.941300px;}
.yb4{bottom:305.080050px;}
.y114{bottom:305.204100px;}
.y148{bottom:305.654700px;}
.y18f{bottom:312.016350px;}
.y1f{bottom:312.406950px;}
.ye5{bottom:312.567600px;}
.y160{bottom:312.709350px;}
.y1a8{bottom:314.080050px;}
.y122{bottom:317.363850px;}
.y10d{bottom:318.381300px;}
.y7c{bottom:318.851100px;}
.y204{bottom:319.796700px;}
.y1e4{bottom:319.938300px;}
.y244{bottom:319.941300px;}
.yb3{bottom:320.080050px;}
.y1a7{bottom:329.083050px;}
.y1e{bottom:330.406950px;}
.ye4{bottom:330.567600px;}
.y15f{bottom:330.709350px;}
.y175{bottom:332.521200px;}
.y203{bottom:334.796700px;}
.y1e3{bottom:334.938300px;}
.y243{bottom:334.941300px;}
.yb2{bottom:335.080050px;}
.y4a{bottom:335.108850px;}
.y121{bottom:335.363850px;}
.y7b{bottom:336.851100px;}
.y147{bottom:341.654700px;}
.y1a5{bottom:344.080050px;}
.y1a6{bottom:344.083050px;}
.y1d{bottom:348.406950px;}
.ye3{bottom:348.567600px;}
.y15e{bottom:348.709350px;}
.y202{bottom:349.796700px;}
.y1e2{bottom:349.938300px;}
.y242{bottom:349.941300px;}
.yb1{bottom:350.080050px;}
.y120{bottom:353.363850px;}
.y7a{bottom:354.851100px;}
.y1a4{bottom:359.080050px;}
.y201{bottom:364.796700px;}
.y1e1{bottom:364.938300px;}
.y241{bottom:364.941300px;}
.yb0{bottom:365.080050px;}
.y1c{bottom:366.406950px;}
.ye2{bottom:366.567600px;}
.y15d{bottom:366.709350px;}
.y11f{bottom:371.363850px;}
.y79{bottom:372.851100px;}
.y1a3{bottom:374.080050px;}
.y146{bottom:377.080050px;}
.y200{bottom:379.796700px;}
.y1e0{bottom:379.938300px;}
.y240{bottom:379.941300px;}
.yaf{bottom:380.080050px;}
.y1b{bottom:384.406950px;}
.ye1{bottom:384.567600px;}
.y15c{bottom:384.709350px;}
.y1a2{bottom:389.080050px;}
.y49{bottom:389.243850px;}
.y11e{bottom:389.363850px;}
.y78{bottom:390.851100px;}
.y145{bottom:392.080050px;}
.y1ff{bottom:394.796700px;}
.y1df{bottom:394.938300px;}
.y23f{bottom:394.941300px;}
.yae{bottom:395.080050px;}
.y1a{bottom:402.406950px;}
.ye0{bottom:402.567600px;}
.y1a1{bottom:404.080050px;}
.y144{bottom:407.080050px;}
.y11d{bottom:407.363850px;}
.y77{bottom:408.851100px;}
.y1fe{bottom:409.796700px;}
.y1de{bottom:409.938300px;}
.y23e{bottom:409.941300px;}
.yad{bottom:410.080050px;}
.y1a0{bottom:419.080050px;}
.y15b{bottom:420.283050px;}
.y19{bottom:420.406950px;}
.ydf{bottom:420.567600px;}
.y143{bottom:422.080050px;}
.y1dd{bottom:424.938300px;}
.y23d{bottom:424.941300px;}
.yac{bottom:425.080050px;}
.y11c{bottom:425.363850px;}
.y76{bottom:426.851100px;}
.y19f{bottom:434.080050px;}
.y15a{bottom:435.283050px;}
.y142{bottom:437.080050px;}
.y18{bottom:438.406950px;}
.yde{bottom:438.567600px;}
.y1dc{bottom:439.938300px;}
.y23c{bottom:439.941300px;}
.yab{bottom:440.080050px;}
.y1fd{bottom:443.228850px;}
.y11b{bottom:443.363850px;}
.y48{bottom:443.378850px;}
.y75{bottom:444.851100px;}
.y19e{bottom:449.080050px;}
.y141{bottom:452.080050px;}
.y1db{bottom:454.938300px;}
.y23b{bottom:454.941300px;}
.yaa{bottom:455.080050px;}
.y17{bottom:456.406950px;}
.ydd{bottom:456.567600px;}
.y11a{bottom:461.363850px;}
.y47{bottom:461.378850px;}
.y154{bottom:462.763800px;}
.y74{bottom:462.851100px;}
.y19d{bottom:464.080050px;}
.y99{bottom:464.332500px;}
.y9c{bottom:464.344500px;}
.y140{bottom:467.080050px;}
.y159{bottom:467.586900px;}
.y1da{bottom:469.938300px;}
.y23a{bottom:469.941300px;}
.ya9{bottom:470.080050px;}
.y16{bottom:474.406950px;}
.ydc{bottom:474.567600px;}
.y19c{bottom:479.080050px;}
.y119{bottom:479.363850px;}
.y46{bottom:479.378850px;}
.y73{bottom:480.851100px;}
.y13f{bottom:482.080050px;}
.y158{bottom:483.192900px;}
.y1d9{bottom:484.938300px;}
.y239{bottom:484.940700px;}
.ya8{bottom:485.080050px;}
.y15{bottom:492.406950px;}
.ydb{bottom:492.567600px;}
.y19b{bottom:494.080050px;}
.y13e{bottom:497.080050px;}
.y118{bottom:497.363850px;}
.y45{bottom:497.378850px;}
.y157{bottom:497.513850px;}
.y72{bottom:498.851100px;}
.y1d8{bottom:499.938300px;}
.y238{bottom:499.940700px;}
.ya7{bottom:500.080050px;}
.y174{bottom:505.789200px;}
.y18e{bottom:508.036350px;}
.y19a{bottom:509.080050px;}
.y10c{bottom:509.505300px;}
.y14{bottom:510.406950px;}
.yda{bottom:510.567600px;}
.y13d{bottom:512.080050px;}
.y1d7{bottom:514.938300px;}
.y237{bottom:514.940700px;}
.ya6{bottom:515.080050px;}
.y117{bottom:515.363850px;}
.y44{bottom:515.378850px;}
.y156{bottom:515.513850px;}
.y113{bottom:515.672100px;}
.y71{bottom:516.851100px;}
.y199{bottom:524.080050px;}
.y13c{bottom:527.080050px;}
.y13{bottom:528.406950px;}
.yd9{bottom:528.567600px;}
.y1d6{bottom:529.938300px;}
.y236{bottom:529.940700px;}
.ya5{bottom:530.080050px;}
.y173{bottom:531.829200px;}
.y116{bottom:533.363850px;}
.y43{bottom:533.378850px;}
.y70{bottom:534.851100px;}
.y198{bottom:539.080050px;}
.y13b{bottom:542.080050px;}
.y1d5{bottom:544.938300px;}
.y235{bottom:544.940700px;}
.ya4{bottom:545.080050px;}
.y12{bottom:546.406950px;}
.yd8{bottom:546.567600px;}
.y115{bottom:551.363850px;}
.y42{bottom:551.378850px;}
.y6f{bottom:552.851100px;}
.y197{bottom:554.080050px;}
.y13a{bottom:557.080050px;}
.y1d4{bottom:559.938300px;}
.y234{bottom:559.940700px;}
.ya3{bottom:560.080050px;}
.y27{bottom:564.406950px;}
.yd7{bottom:564.567600px;}
.y196{bottom:569.080050px;}
.yf8{bottom:569.363850px;}
.y41{bottom:569.378850px;}
.y6e{bottom:570.851100px;}
.y139{bottom:572.080050px;}
.y1d3{bottom:574.938300px;}
.y233{bottom:574.940700px;}
.ya2{bottom:575.080050px;}
.y108{bottom:576.709200px;}
.y11{bottom:582.406950px;}
.yd6{bottom:582.567600px;}
.y195{bottom:584.080050px;}
.y138{bottom:587.080050px;}
.yf7{bottom:587.363850px;}
.y40{bottom:587.378850px;}
.y6d{bottom:588.851100px;}
.y1d2{bottom:589.938300px;}
.y232{bottom:589.940700px;}
.ya1{bottom:590.080050px;}
.y107{bottom:594.709200px;}
.y194{bottom:599.080050px;}
.yd5{bottom:600.567600px;}
.y137{bottom:602.080050px;}
.y1d1{bottom:604.938300px;}
.y231{bottom:604.940700px;}
.yf6{bottom:605.363850px;}
.y3f{bottom:605.378850px;}
.y6c{bottom:606.851100px;}
.y106{bottom:612.709200px;}
.y193{bottom:614.080050px;}
.y136{bottom:617.080050px;}
.yd4{bottom:618.567600px;}
.y1d0{bottom:619.938300px;}
.y230{bottom:619.940700px;}
.yf5{bottom:623.363850px;}
.ya0{bottom:623.513850px;}
.y6b{bottom:624.851100px;}
.y192{bottom:629.080050px;}
.y105{bottom:630.709200px;}
.y135{bottom:632.080050px;}
.y1cf{bottom:634.938300px;}
.y22f{bottom:634.940700px;}
.yd3{bottom:636.567600px;}
.y153{bottom:637.303800px;}
.yf4{bottom:641.363850px;}
.y3e{bottom:641.378850px;}
.y9f{bottom:641.513850px;}
.y6a{bottom:642.851100px;}
.y191{bottom:644.080050px;}
.y98{bottom:647.056500px;}
.y9b{bottom:647.068500px;}
.y134{bottom:647.080050px;}
.y104{bottom:648.709200px;}
.y1ce{bottom:649.938300px;}
.y22e{bottom:649.940700px;}
.yf{bottom:653.894550px;}
.yd2{bottom:654.567600px;}
.yf3{bottom:659.363850px;}
.y9e{bottom:659.513850px;}
.y69{bottom:660.851100px;}
.y133{bottom:662.080050px;}
.y1cd{bottom:664.938300px;}
.y22d{bottom:664.940700px;}
.y103{bottom:666.709200px;}
.yd1{bottom:672.567600px;}
.y3d{bottom:677.228850px;}
.yf2{bottom:677.363850px;}
.y190{bottom:677.513850px;}
.y1cc{bottom:679.938300px;}
.y22c{bottom:679.940700px;}
.y102{bottom:684.709200px;}
.ye{bottom:686.750550px;}
.y18d{bottom:687.040350px;}
.yd0{bottom:690.567600px;}
.y1cb{bottom:694.938300px;}
.y22b{bottom:694.940700px;}
.y3c{bottom:695.228850px;}
.y93{bottom:695.363850px;}
.y132{bottom:695.513850px;}
.y68{bottom:696.424800px;}
.yd{bottom:701.750550px;}
.y112{bottom:702.332100px;}
.y101{bottom:702.709200px;}
.ycf{bottom:708.567600px;}
.y1ca{bottom:709.938300px;}
.y22a{bottom:709.940700px;}
.y67{bottom:711.424800px;}
.y3b{bottom:713.228850px;}
.y92{bottom:713.363850px;}
.y131{bottom:713.513850px;}
.yc{bottom:716.750550px;}
.y100{bottom:720.709200px;}
.y1c9{bottom:724.938300px;}
.y229{bottom:724.940700px;}
.y66{bottom:726.424800px;}
.yce{bottom:726.567600px;}
.y172{bottom:729.013200px;}
.y3a{bottom:731.228850px;}
.y91{bottom:731.363850px;}
.y130{bottom:731.513850px;}
.yb{bottom:731.750550px;}
.yff{bottom:738.709200px;}
.y1c8{bottom:739.938300px;}
.y228{bottom:739.940700px;}
.y65{bottom:741.424800px;}
.ycd{bottom:744.567600px;}
.ya{bottom:746.750550px;}
.y39{bottom:749.228850px;}
.y90{bottom:749.363850px;}
.y188{bottom:749.367600px;}
.y1c7{bottom:754.938300px;}
.y227{bottom:754.940700px;}
.yfe{bottom:756.709200px;}
.y9{bottom:761.750550px;}
.ycc{bottom:762.567600px;}
.y38{bottom:767.228850px;}
.y8f{bottom:767.363850px;}
.y187{bottom:767.367600px;}
.y1c6{bottom:769.938300px;}
.y226{bottom:769.940700px;}
.y64{bottom:773.728500px;}
.yfd{bottom:774.709200px;}
.ycb{bottom:780.567600px;}
.y1c5{bottom:784.938300px;}
.y225{bottom:784.940700px;}
.y8e{bottom:785.363850px;}
.y186{bottom:785.367600px;}
.y63{bottom:789.334500px;}
.yca{bottom:798.567600px;}
.y1c4{bottom:799.938300px;}
.y224{bottom:799.940700px;}
.y37{bottom:803.228850px;}
.y8d{bottom:803.363850px;}
.y185{bottom:803.367600px;}
.y62{bottom:803.662950px;}
.yfc{bottom:809.586750px;}
.y8{bottom:810.419250px;}
.y1c3{bottom:814.938300px;}
.y223{bottom:814.940700px;}
.yc9{bottom:816.567600px;}
.y8c{bottom:821.363850px;}
.y184{bottom:821.367600px;}
.y61{bottom:821.662950px;}
.yfb{bottom:825.192750px;}
.y1c2{bottom:829.938300px;}
.y222{bottom:829.940700px;}
.yc8{bottom:834.567600px;}
.y8b{bottom:839.363850px;}
.y183{bottom:839.367600px;}
.yfa{bottom:839.513850px;}
.y1c1{bottom:844.938300px;}
.y221{bottom:844.940700px;}
.y7{bottom:844.994550px;}
.yc7{bottom:852.567600px;}
.y36{bottom:857.363850px;}
.y182{bottom:857.367600px;}
.y60{bottom:857.512950px;}
.yf9{bottom:857.513850px;}
.y1c0{bottom:859.938300px;}
.y220{bottom:859.940700px;}
.y6{bottom:861.494550px;}
.yc6{bottom:870.567600px;}
.y1bf{bottom:874.938300px;}
.y21f{bottom:874.940700px;}
.y35{bottom:875.363850px;}
.y181{bottom:875.367600px;}
.y5f{bottom:875.512950px;}
.y5{bottom:880.879800px;}
.yc5{bottom:888.567600px;}
.y1be{bottom:889.938300px;}
.y21e{bottom:889.940700px;}
.y34{bottom:893.363850px;}
.y180{bottom:893.367600px;}
.y5e{bottom:893.512950px;}
.y1bd{bottom:904.938300px;}
.y21d{bottom:904.940700px;}
.yc4{bottom:906.567600px;}
.y4{bottom:908.269200px;}
.y33{bottom:911.363850px;}
.y17f{bottom:911.367600px;}
.y1bc{bottom:919.938300px;}
.y21c{bottom:919.940700px;}
.y32{bottom:929.363850px;}
.y17e{bottom:929.367600px;}
.y5d{bottom:929.512950px;}
.y1bb{bottom:934.938300px;}
.y21b{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.yc3{bottom:942.141300px;}
.y31{bottom:947.363850px;}
.y17d{bottom:947.367600px;}
.y1ba{bottom:949.938300px;}
.y21a{bottom:949.940700px;}
.yc2{bottom:957.141300px;}
.y5c{bottom:964.938300px;}
.y219{bottom:964.940700px;}
.y30{bottom:965.363850px;}
.y17c{bottom:965.367600px;}
.y5b{bottom:979.938300px;}
.y218{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y2f{bottom:983.363850px;}
.y17b{bottom:983.367600px;}
.yc1{bottom:989.445150px;}
.y5a{bottom:994.938300px;}
.y217{bottom:994.940700px;}
.y2e{bottom:1001.363850px;}
.y17a{bottom:1001.367600px;}
.yc0{bottom:1005.051150px;}
.y59{bottom:1009.938300px;}
.y216{bottom:1009.940700px;}
.y2d{bottom:1019.363850px;}
.y179{bottom:1019.367600px;}
.y177{bottom:1019.371200px;}
.ybf{bottom:1019.384700px;}
.y58{bottom:1024.938300px;}
.y215{bottom:1024.940700px;}
.y2c{bottom:1037.363850px;}
.y178{bottom:1037.367600px;}
.y176{bottom:1037.371200px;}
.ybe{bottom:1037.384700px;}
.y57{bottom:1039.938300px;}
.y214{bottom:1039.940700px;}
.y29{bottom:1070.766450px;}
.y8a{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.h2{height:30.597656px;}
.h6{height:34.945312px;}
.h9{height:34.947187px;}
.h8{height:34.968750px;}
.h7{height:34.992188px;}
.h10{height:34.994587px;}
.hd{height:37.142297px;}
.he{height:37.179199px;}
.hf{height:39.366211px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.740234px;}
.h5{height:48.082031px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x22{left:82.964550px;}
.x2f{left:90.563400px;}
.x3a{left:93.539400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x10{left:106.299150px;}
.xc{left:110.555400px;}
.x1c{left:113.102400px;}
.x3e{left:116.929050px;}
.x3{left:125.431350px;}
.x41{left:127.555350px;}
.x6{left:131.816400px;}
.x37{left:136.061400px;}
.xd{left:144.725400px;}
.x4{left:161.575350px;}
.xf{left:192.770400px;}
.x39{left:194.536950px;}
.xe{left:211.100400px;}
.x5{left:212.876400px;}
.x40{left:215.545350px;}
.x38{left:221.801400px;}
.x3b{left:268.511400px;}
.x28{left:272.335500px;}
.x34{left:283.288500px;}
.x2a{left:304.016850px;}
.x30{left:318.899400px;}
.x1d{left:325.490400px;}
.xa{left:455.041500px;}
.x12{left:457.086600px;}
.x16{left:460.275750px;}
.x24{left:464.013450px;}
.x13{left:465.603150px;}
.x1a{left:478.345350px;}
.x7{left:480.476400px;}
.x11{left:486.850350px;}
.x14{left:491.103150px;}
.x3f{left:497.480250px;}
.x2c{left:508.110300px;}
.x1b{left:512.365350px;}
.x8{left:514.511400px;}
.x3d{left:518.740050px;}
.x23{left:523.694550px;}
.x3c{left:529.367400px;}
.x25{left:535.375350px;}
.x32{left:540.835350px;}
.x29{left:542.971500px;}
.x1e{left:550.202400px;}
.x2e{left:555.381600px;}
.x31{left:560.411400px;}
.x1f{left:563.378400px;}
.x2d{left:570.666600px;}
.x2b{left:574.436850px;}
.x17{left:576.942750px;}
.x20{left:578.894400px;}
.x33{left:597.828750px;}
.x27{left:599.325000px;}
.x15{left:602.358150px;}
.x26{left:623.620350px;}
.x19{left:663.492300px;}
.x2{left:704.338650px;}
.x35{left:717.130200px;}
.x18{left:724.221150px;}
.x36{left:739.336350px;}
.x21{left:745.480950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7a{letter-spacing:-3.157333pt;}
.ls8a{letter-spacing:-1.066667pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls8b{letter-spacing:-0.266667pt;}
.ls73{letter-spacing:-0.256000pt;}
.ls52{letter-spacing:-0.213333pt;}
.ls3c{letter-spacing:-0.160000pt;}
.ls89{letter-spacing:-0.128000pt;}
.ls3a{letter-spacing:-0.106667pt;}
.ls79{letter-spacing:-0.085333pt;}
.ls3b{letter-spacing:-0.053333pt;}
.ls3d{letter-spacing:-0.042667pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.042667pt;}
.ls19{letter-spacing:0.053333pt;}
.ls7c{letter-spacing:0.085333pt;}
.ls38{letter-spacing:0.106667pt;}
.ls46{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.160000pt;}
.ls85{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.213333pt;}
.ls51{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.298667pt;}
.ls15{letter-spacing:0.320000pt;}
.ls61{letter-spacing:0.341333pt;}
.ls26{letter-spacing:0.373333pt;}
.ls84{letter-spacing:0.384000pt;}
.ls2e{letter-spacing:0.426667pt;}
.ls7b{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.480000pt;}
.ls92{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls7f{letter-spacing:0.554667pt;}
.ls28{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.597333pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls64{letter-spacing:0.682667pt;}
.lsf{letter-spacing:0.693333pt;}
.ls2b{letter-spacing:0.725333pt;}
.ls12{letter-spacing:0.746667pt;}
.ls86{letter-spacing:0.768000pt;}
.ls59{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.853333pt;}
.ls91{letter-spacing:0.896000pt;}
.ls37{letter-spacing:0.906667pt;}
.ls2a{letter-spacing:0.938667pt;}
.ls5{letter-spacing:0.960000pt;}
.ls2c{letter-spacing:0.981333pt;}
.ls45{letter-spacing:1.013333pt;}
.ls25{letter-spacing:1.066667pt;}
.ls62{letter-spacing:1.109333pt;}
.ls30{letter-spacing:1.120000pt;}
.ls90{letter-spacing:1.152000pt;}
.ls43{letter-spacing:1.173333pt;}
.ls7d{letter-spacing:1.194667pt;}
.ls3f{letter-spacing:1.226667pt;}
.ls87{letter-spacing:1.237333pt;}
.ls14{letter-spacing:1.280000pt;}
.ls80{letter-spacing:1.322667pt;}
.ls1a{letter-spacing:1.333333pt;}
.ls39{letter-spacing:1.386667pt;}
.ls63{letter-spacing:1.408000pt;}
.ls50{letter-spacing:1.440000pt;}
.ls78{letter-spacing:1.450667pt;}
.ls32{letter-spacing:1.493333pt;}
.ls9d{letter-spacing:1.536000pt;}
.lsb{letter-spacing:1.546667pt;}
.ls7e{letter-spacing:1.578667pt;}
.ls33{letter-spacing:1.600000pt;}
.ls53{letter-spacing:1.621333pt;}
.ls11{letter-spacing:1.653333pt;}
.ls41{letter-spacing:1.706667pt;}
.ls54{letter-spacing:1.760000pt;}
.ls49{letter-spacing:1.792000pt;}
.ls55{letter-spacing:1.813333pt;}
.ls8d{letter-spacing:1.834667pt;}
.ls34{letter-spacing:1.866667pt;}
.ls96{letter-spacing:1.877333pt;}
.ls47{letter-spacing:1.920000pt;}
.ls82{letter-spacing:1.962667pt;}
.ls13{letter-spacing:1.973333pt;}
.ls77{letter-spacing:2.005333pt;}
.ls40{letter-spacing:2.026667pt;}
.ls5f{letter-spacing:2.080000pt;}
.ls7{letter-spacing:2.133333pt;}
.ls20{letter-spacing:2.186667pt;}
.lse{letter-spacing:2.240000pt;}
.ls76{letter-spacing:2.261333pt;}
.ls9{letter-spacing:2.293333pt;}
.ls98{letter-spacing:2.304000pt;}
.ls35{letter-spacing:2.346667pt;}
.ls9c{letter-spacing:2.389333pt;}
.ls6{letter-spacing:2.400000pt;}
.ls2d{letter-spacing:2.432000pt;}
.ls1c{letter-spacing:2.453333pt;}
.ls4b{letter-spacing:2.474667pt;}
.ls18{letter-spacing:2.506667pt;}
.ls67{letter-spacing:2.560000pt;}
.ls81{letter-spacing:2.602667pt;}
.ls29{letter-spacing:2.613333pt;}
.ls93{letter-spacing:2.645333pt;}
.ls6b{letter-spacing:2.666667pt;}
.ls9a{letter-spacing:2.688000pt;}
.ls27{letter-spacing:2.720000pt;}
.ls83{letter-spacing:2.730667pt;}
.ls48{letter-spacing:2.773333pt;}
.ls24{letter-spacing:2.826667pt;}
.ls97{letter-spacing:2.858667pt;}
.ls3{letter-spacing:2.880000pt;}
.ls8c{letter-spacing:2.901333pt;}
.ls31{letter-spacing:2.933333pt;}
.ls4f{letter-spacing:2.986667pt;}
.ls88{letter-spacing:3.029333pt;}
.ls4{letter-spacing:3.040000pt;}
.ls23{letter-spacing:3.093333pt;}
.ls99{letter-spacing:3.114667pt;}
.ls5e{letter-spacing:3.146667pt;}
.ls4e{letter-spacing:3.200000pt;}
.ls60{letter-spacing:3.253333pt;}
.ls5a{letter-spacing:3.306667pt;}
.ls4c{letter-spacing:3.360000pt;}
.ls95{letter-spacing:3.370667pt;}
.ls17{letter-spacing:3.413333pt;}
.ls8e{letter-spacing:3.456000pt;}
.ls8{letter-spacing:3.466667pt;}
.ls36{letter-spacing:3.520000pt;}
.ls42{letter-spacing:3.573333pt;}
.ls1f{letter-spacing:3.626667pt;}
.ls9e{letter-spacing:3.669333pt;}
.ls2f{letter-spacing:3.680000pt;}
.ls66{letter-spacing:3.733333pt;}
.ls70{letter-spacing:3.786667pt;}
.ls3e{letter-spacing:3.840000pt;}
.lsc{letter-spacing:3.893333pt;}
.ls5c{letter-spacing:3.946667pt;}
.ls9b{letter-spacing:3.968000pt;}
.ls22{letter-spacing:4.000000pt;}
.ls74{letter-spacing:4.053333pt;}
.ls57{letter-spacing:4.213333pt;}
.ls44{letter-spacing:4.266667pt;}
.ls6c{letter-spacing:4.320000pt;}
.ls6f{letter-spacing:4.426667pt;}
.ls6e{letter-spacing:4.480000pt;}
.ls6a{letter-spacing:4.640000pt;}
.ls4d{letter-spacing:4.746667pt;}
.ls94{letter-spacing:4.778667pt;}
.ls75{letter-spacing:4.800000pt;}
.ls5b{letter-spacing:4.960000pt;}
.ls6d{letter-spacing:5.280000pt;}
.ls69{letter-spacing:5.546667pt;}
.ls10{letter-spacing:5.653333pt;}
.ls9f{letter-spacing:5.674667pt;}
.ls8f{letter-spacing:5.717333pt;}
.ls65{letter-spacing:5.920000pt;}
.ls5d{letter-spacing:6.026667pt;}
.ls68{letter-spacing:6.240000pt;}
.ls72{letter-spacing:6.773333pt;}
.ls71{letter-spacing:7.466667pt;}
.ls58{letter-spacing:8.373333pt;}
.wsb7{word-spacing:-22.293333pt;}
.wsa5{word-spacing:-21.066667pt;}
.ws72{word-spacing:-19.040000pt;}
.ws71{word-spacing:-18.666667pt;}
.ws25{word-spacing:-18.506667pt;}
.ws46{word-spacing:-18.400000pt;}
.wsbf{word-spacing:-18.026667pt;}
.wsb6{word-spacing:-17.866667pt;}
.ws86{word-spacing:-17.706667pt;}
.ws53{word-spacing:-17.600000pt;}
.wsca{word-spacing:-17.333333pt;}
.ws48{word-spacing:-17.066667pt;}
.ws6f{word-spacing:-16.960000pt;}
.ws55{word-spacing:-16.800000pt;}
.ws87{word-spacing:-16.746667pt;}
.ws70{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.106667pt;}
.wsc9{word-spacing:-15.893333pt;}
.ws47{word-spacing:-15.840000pt;}
.ws2{word-spacing:-15.786667pt;}
.ws3{word-spacing:-15.573333pt;}
.wscb{word-spacing:-15.413333pt;}
.wsfd{word-spacing:-15.232000pt;}
.ws7d{word-spacing:-15.146667pt;}
.ws116{word-spacing:-14.848000pt;}
.ws4{word-spacing:-14.826667pt;}
.ws7e{word-spacing:-14.720000pt;}
.wsfe{word-spacing:-14.549333pt;}
.wsff{word-spacing:-14.122667pt;}
.ws54{word-spacing:-13.344000pt;}
.ws100{word-spacing:-12.970667pt;}
.ws117{word-spacing:-12.928000pt;}
.ws115{word-spacing:-12.629333pt;}
.ws26{word-spacing:-12.602667pt;}
.ws88{word-spacing:-12.544000pt;}
.ws24{word-spacing:-12.501333pt;}
.wsfc{word-spacing:-12.373333pt;}
.wsfb{word-spacing:-12.330667pt;}
.ws1{word-spacing:-12.160000pt;}
.ws23{word-spacing:-12.074667pt;}
.ws101{word-spacing:-11.989333pt;}
.ws0{word-spacing:-11.861333pt;}
.wsfa{word-spacing:-11.605333pt;}
.ws67{word-spacing:-11.221333pt;}
.ws95{word-spacing:-11.178667pt;}
.wsf4{word-spacing:-11.136000pt;}
.ws97{word-spacing:-11.093333pt;}
.ws60{word-spacing:-11.050667pt;}
.ws5f{word-spacing:-11.008000pt;}
.wsd6{word-spacing:-10.965333pt;}
.wsf3{word-spacing:-10.922667pt;}
.wse6{word-spacing:-10.880000pt;}
.wsf7{word-spacing:-10.410667pt;}
.wscf{word-spacing:-8.874667pt;}
.wsd3{word-spacing:-8.789333pt;}
.wseb{word-spacing:-8.746667pt;}
.ws5c{word-spacing:-8.704000pt;}
.ws5d{word-spacing:-8.661333pt;}
.wsdf{word-spacing:-8.618667pt;}
.wsef{word-spacing:-8.576000pt;}
.wse4{word-spacing:-8.533333pt;}
.wsbd{word-spacing:-7.466667pt;}
.wsd4{word-spacing:-6.442667pt;}
.wsea{word-spacing:-6.400000pt;}
.ws63{word-spacing:-6.357333pt;}
.ws35{word-spacing:-6.314667pt;}
.wsa6{word-spacing:-6.240000pt;}
.wsdb{word-spacing:-6.229333pt;}
.wsdc{word-spacing:-6.144000pt;}
.ws8e{word-spacing:-6.026667pt;}
.wsa2{word-spacing:-5.920000pt;}
.ws118{word-spacing:-5.674667pt;}
.ws75{word-spacing:-5.653333pt;}
.ws33{word-spacing:-5.546667pt;}
.wsb3{word-spacing:-5.280000pt;}
.wscd{word-spacing:-4.800000pt;}
.ws6c{word-spacing:-4.746667pt;}
.ws10b{word-spacing:-4.736000pt;}
.wsa8{word-spacing:-4.640000pt;}
.wsb8{word-spacing:-4.480000pt;}
.wsb9{word-spacing:-4.426667pt;}
.wsae{word-spacing:-4.320000pt;}
.ws119{word-spacing:-4.266667pt;}
.ws79{word-spacing:-4.213333pt;}
.ws65{word-spacing:-4.138667pt;}
.ws96{word-spacing:-4.096000pt;}
.ws9b{word-spacing:-4.010667pt;}
.ws9c{word-spacing:-4.000000pt;}
.wsec{word-spacing:-3.968000pt;}
.wsd1{word-spacing:-3.925333pt;}
.ws13{word-spacing:-3.893333pt;}
.wsd2{word-spacing:-3.882667pt;}
.ws4a{word-spacing:-3.840000pt;}
.wsba{word-spacing:-3.786667pt;}
.wsda{word-spacing:-3.754667pt;}
.wsad{word-spacing:-3.733333pt;}
.ws3e{word-spacing:-3.680000pt;}
.ws114{word-spacing:-3.669333pt;}
.ws1f{word-spacing:-3.626667pt;}
.ws4d{word-spacing:-3.573333pt;}
.ws41{word-spacing:-3.520000pt;}
.ws2e{word-spacing:-3.466667pt;}
.ws104{word-spacing:-3.456000pt;}
.ws82{word-spacing:-3.413333pt;}
.ws10c{word-spacing:-3.370667pt;}
.ws6b{word-spacing:-3.360000pt;}
.ws84{word-spacing:-3.306667pt;}
.ws92{word-spacing:-3.253333pt;}
.ws6d{word-spacing:-3.200000pt;}
.ws8f{word-spacing:-3.146667pt;}
.ws110{word-spacing:-3.114667pt;}
.ws2a{word-spacing:-3.093333pt;}
.ws11{word-spacing:-3.040000pt;}
.wsf5{word-spacing:-3.029333pt;}
.ws6e{word-spacing:-2.986667pt;}
.ws83{word-spacing:-2.933333pt;}
.ws102{word-spacing:-2.901333pt;}
.ws1d{word-spacing:-2.880000pt;}
.ws10e{word-spacing:-2.858667pt;}
.ws2c{word-spacing:-2.826667pt;}
.ws5b{word-spacing:-2.773333pt;}
.wsee{word-spacing:-2.730667pt;}
.ws30{word-spacing:-2.720000pt;}
.ws111{word-spacing:-2.688000pt;}
.wsac{word-spacing:-2.666667pt;}
.ws109{word-spacing:-2.645333pt;}
.ws40{word-spacing:-2.613333pt;}
.wse7{word-spacing:-2.602667pt;}
.wsa9{word-spacing:-2.560000pt;}
.ws1e{word-spacing:-2.506667pt;}
.wse2{word-spacing:-2.474667pt;}
.ws3a{word-spacing:-2.400000pt;}
.ws112{word-spacing:-2.389333pt;}
.ws7{word-spacing:-2.368000pt;}
.ws3c{word-spacing:-2.346667pt;}
.ws10f{word-spacing:-2.304000pt;}
.ws27{word-spacing:-2.293333pt;}
.ws113{word-spacing:-2.261333pt;}
.ws15{word-spacing:-2.240000pt;}
.ws28{word-spacing:-2.186667pt;}
.ws2f{word-spacing:-2.133333pt;}
.wsa3{word-spacing:-2.080000pt;}
.wsaa{word-spacing:-2.026667pt;}
.wsd5{word-spacing:-2.005333pt;}
.ws18{word-spacing:-1.973333pt;}
.wse9{word-spacing:-1.962667pt;}
.ws59{word-spacing:-1.920000pt;}
.ws10d{word-spacing:-1.877333pt;}
.ws3d{word-spacing:-1.866667pt;}
.ws103{word-spacing:-1.834667pt;}
.ws74{word-spacing:-1.813333pt;}
.ws98{word-spacing:-1.792000pt;}
.ws68{word-spacing:-1.760000pt;}
.wsf8{word-spacing:-1.749333pt;}
.ws4c{word-spacing:-1.706667pt;}
.ws6a{word-spacing:-1.653333pt;}
.ws66{word-spacing:-1.621333pt;}
.ws4f{word-spacing:-1.600000pt;}
.wse1{word-spacing:-1.578667pt;}
.ws19{word-spacing:-1.546667pt;}
.wsed{word-spacing:-1.536000pt;}
.ws7b{word-spacing:-1.493333pt;}
.wsd9{word-spacing:-1.450667pt;}
.wsb4{word-spacing:-1.440000pt;}
.ws9a{word-spacing:-1.408000pt;}
.ws45{word-spacing:-1.386667pt;}
.wsd0{word-spacing:-1.365333pt;}
.ws21{word-spacing:-1.333333pt;}
.wse5{word-spacing:-1.322667pt;}
.ws8d{word-spacing:-1.280000pt;}
.ws4b{word-spacing:-1.226667pt;}
.wse0{word-spacing:-1.194667pt;}
.ws7a{word-spacing:-1.173333pt;}
.ws106{word-spacing:-1.152000pt;}
.ws3b{word-spacing:-1.120000pt;}
.wse8{word-spacing:-1.109333pt;}
.ws43{word-spacing:-1.066667pt;}
.ws4e{word-spacing:-1.013333pt;}
.ws37{word-spacing:-0.981333pt;}
.ws16{word-spacing:-0.960000pt;}
.ws36{word-spacing:-0.938667pt;}
.ws42{word-spacing:-0.906667pt;}
.ws1c{word-spacing:-0.853333pt;}
.ws8a{word-spacing:-0.800000pt;}
.wsf2{word-spacing:-0.768000pt;}
.ws8c{word-spacing:-0.746667pt;}
.ws77{word-spacing:-0.693333pt;}
.wsf6{word-spacing:-0.682667pt;}
.ws22{word-spacing:-0.640000pt;}
.wse{word-spacing:-0.597333pt;}
.ws32{word-spacing:-0.586667pt;}
.wse3{word-spacing:-0.554667pt;}
.ws69{word-spacing:-0.533333pt;}
.ws108{word-spacing:-0.512000pt;}
.ws14{word-spacing:-0.480000pt;}
.wsdd{word-spacing:-0.469333pt;}
.ws38{word-spacing:-0.426667pt;}
.wsf0{word-spacing:-0.384000pt;}
.wsab{word-spacing:-0.373333pt;}
.ws94{word-spacing:-0.341333pt;}
.ws1a{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.298667pt;}
.ws3f{word-spacing:-0.266667pt;}
.ws64{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.213333pt;}
.wsf1{word-spacing:-0.170667pt;}
.ws76{word-spacing:-0.160000pt;}
.ws52{word-spacing:-0.128000pt;}
.ws44{word-spacing:-0.106667pt;}
.wsde{word-spacing:-0.085333pt;}
.ws20{word-spacing:-0.053333pt;}
.ws62{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws34{word-spacing:0.042667pt;}
.ws2d{word-spacing:0.053333pt;}
.wsd8{word-spacing:0.085333pt;}
.ws2b{word-spacing:0.106667pt;}
.ws31{word-spacing:0.160000pt;}
.ws29{word-spacing:0.213333pt;}
.wsc8{word-spacing:0.256000pt;}
.ws91{word-spacing:0.266667pt;}
.ws61{word-spacing:0.384000pt;}
.wsa4{word-spacing:0.640000pt;}
.ws58{word-spacing:0.800000pt;}
.wscc{word-spacing:0.853333pt;}
.wsf9{word-spacing:1.066667pt;}
.wsd7{word-spacing:1.408000pt;}
.ws50{word-spacing:1.440000pt;}
.wsd{word-spacing:1.536000pt;}
.ws105{word-spacing:1.578667pt;}
.wsc5{word-spacing:1.760000pt;}
.wsb2{word-spacing:1.813333pt;}
.ws57{word-spacing:1.866667pt;}
.ws17{word-spacing:1.973333pt;}
.wsf{word-spacing:2.048000pt;}
.ws93{word-spacing:2.133333pt;}
.ws90{word-spacing:2.186667pt;}
.ws89{word-spacing:2.293333pt;}
.ws5e{word-spacing:2.389333pt;}
.ws85{word-spacing:2.400000pt;}
.ws1b{word-spacing:2.453333pt;}
.wsb5{word-spacing:2.560000pt;}
.wsc4{word-spacing:2.602667pt;}
.wsc6{word-spacing:2.666667pt;}
.ws99{word-spacing:2.688000pt;}
.wsce{word-spacing:2.720000pt;}
.wsbb{word-spacing:2.773333pt;}
.ws8b{word-spacing:2.826667pt;}
.wsc7{word-spacing:3.157333pt;}
.ws78{word-spacing:3.253333pt;}
.wsa{word-spacing:3.413333pt;}
.wsa7{word-spacing:3.466667pt;}
.ws5a{word-spacing:3.520000pt;}
.ws39{word-spacing:3.573333pt;}
.ws10a{word-spacing:3.584000pt;}
.ws8{word-spacing:3.882667pt;}
.wsa1{word-spacing:3.893333pt;}
.wsc{word-spacing:3.925333pt;}
.ws51{word-spacing:4.053333pt;}
.ws56{word-spacing:4.160000pt;}
.ws7c{word-spacing:4.181333pt;}
.wsbc{word-spacing:4.373333pt;}
.wsbe{word-spacing:4.426667pt;}
.ws12{word-spacing:4.853333pt;}
.ws10{word-spacing:4.906667pt;}
.ws107{word-spacing:5.461333pt;}
.ws73{word-spacing:495.914667pt;}
.wsc0{word-spacing:553.386667pt;}
.wsaf{word-spacing:619.520000pt;}
.wsc3{word-spacing:647.680000pt;}
.ws7f{word-spacing:667.520000pt;}
.ws49{word-spacing:686.421333pt;}
.wsb0{word-spacing:695.594667pt;}
.ws80{word-spacing:720.426667pt;}
.ws9f{word-spacing:745.514667pt;}
.ws81{word-spacing:748.501333pt;}
.ws9d{word-spacing:755.200000pt;}
.wsa0{word-spacing:785.237333pt;}
.wsb1{word-spacing:786.389333pt;}
.ws9e{word-spacing:787.626667pt;}
.wsc2{word-spacing:804.437333pt;}
.wsc1{word-spacing:856.405333pt;}
._f{margin-left:-2576.112000pt;}
._10{margin-left:-2554.941333pt;}
._14{margin-left:-7.701333pt;}
._b{margin-left:-6.133333pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.317333pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.954667pt;}
._7{width:1.280000pt;}
._5{width:2.346667pt;}
._3{width:4.074667pt;}
._6{width:4.997333pt;}
._a{width:6.005333pt;}
._c{width:6.901333pt;}
._8{width:7.893333pt;}
._9{width:9.578667pt;}
._13{width:10.666667pt;}
._15{width:11.573333pt;}
._16{width:12.480000pt;}
._1c{width:20.309333pt;}
._1e{width:23.626667pt;}
._19{width:44.032000pt;}
._11{width:53.173333pt;}
._d{width:58.368000pt;}
._12{width:74.624000pt;}
._e{width:79.744000pt;}
._17{width:96.170667pt;}
._1b{width:111.152000pt;}
._1a{width:112.298667pt;}
._1f{width:113.450667pt;}
._1d{width:116.010667pt;}
._18{width:117.546667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y10b{bottom:73.512133pt;}
.y97{bottom:73.690667pt;}
.y18c{bottom:73.785200pt;}
.y12f{bottom:74.101200pt;}
.y2a{bottom:74.216800pt;}
.y111{bottom:74.257600pt;}
.y171{bottom:74.436133pt;}
.y89{bottom:75.423200pt;}
.y152{bottom:75.549067pt;}
.y56{bottom:76.389600pt;}
.y1b9{bottom:79.182267pt;}
.y213{bottom:84.263733pt;}
.y1f3{bottom:84.389600pt;}
.y253{bottom:84.392267pt;}
.y1fc{bottom:84.771200pt;}
.yf1{bottom:85.837867pt;}
.y16c{bottom:85.963867pt;}
.y10a{bottom:87.506800pt;}
.y96{bottom:87.685333pt;}
.y18b{bottom:87.779867pt;}
.y110{bottom:88.252267pt;}
.y170{bottom:88.430800pt;}
.y55{bottom:89.722933pt;}
.y12e{bottom:90.101200pt;}
.y88{bottom:91.423200pt;}
.y151{bottom:91.549067pt;}
.y1b8{bottom:92.515600pt;}
.y212{bottom:97.597067pt;}
.y1f2{bottom:97.722933pt;}
.y252{bottom:97.725600pt;}
.y1fb{bottom:100.771200pt;}
.y109{bottom:101.501467pt;}
.y95{bottom:101.680000pt;}
.y18a{bottom:101.774533pt;}
.yf0{bottom:101.837867pt;}
.y16b{bottom:101.963867pt;}
.y10f{bottom:102.246933pt;}
.y16f{bottom:102.425467pt;}
.y54{bottom:103.056267pt;}
.y1b7{bottom:105.848933pt;}
.y12d{bottom:106.101200pt;}
.y87{bottom:107.423200pt;}
.y150{bottom:107.549067pt;}
.y10{bottom:108.011733pt;}
.y211{bottom:110.930400pt;}
.y1f1{bottom:111.056267pt;}
.y251{bottom:111.058933pt;}
.ybd{bottom:111.693067pt;}
.y94{bottom:115.674667pt;}
.y189{bottom:115.769200pt;}
.y10e{bottom:116.241600pt;}
.y53{bottom:116.389600pt;}
.y16e{bottom:116.420133pt;}
.y1fa{bottom:116.771200pt;}
.yef{bottom:117.837867pt;}
.y16a{bottom:117.963867pt;}
.y1b6{bottom:119.182267pt;}
.y12c{bottom:122.101200pt;}
.y86{bottom:123.423200pt;}
.y210{bottom:124.263733pt;}
.y1f0{bottom:124.389600pt;}
.y250{bottom:124.392267pt;}
.ybc{bottom:127.693067pt;}
.y52{bottom:129.722933pt;}
.y16d{bottom:130.414800pt;}
.y1b5{bottom:132.515600pt;}
.y1f9{bottom:132.771200pt;}
.yee{bottom:133.837867pt;}
.y169{bottom:133.963867pt;}
.y20f{bottom:137.597067pt;}
.y1ef{bottom:137.722933pt;}
.y24f{bottom:137.725600pt;}
.y12b{bottom:138.101200pt;}
.y14f{bottom:139.170133pt;}
.y85{bottom:139.423200pt;}
.y51{bottom:143.056267pt;}
.y1b4{bottom:145.848933pt;}
.y1f8{bottom:148.771200pt;}
.yed{bottom:149.837867pt;}
.y168{bottom:149.963867pt;}
.y20e{bottom:150.930400pt;}
.y1ee{bottom:151.056267pt;}
.y24e{bottom:151.058933pt;}
.y14e{bottom:152.503467pt;}
.y12a{bottom:154.101200pt;}
.y84{bottom:155.423200pt;}
.y50{bottom:156.389600pt;}
.y1b3{bottom:159.182267pt;}
.ybb{bottom:159.693067pt;}
.y20d{bottom:164.263733pt;}
.y1ed{bottom:164.389600pt;}
.y24d{bottom:164.392267pt;}
.y1f7{bottom:164.771200pt;}
.y26{bottom:165.695067pt;}
.yec{bottom:165.837867pt;}
.y167{bottom:165.963867pt;}
.y129{bottom:170.101200pt;}
.y83{bottom:171.423200pt;}
.y1b1{bottom:172.515600pt;}
.y1b2{bottom:172.518267pt;}
.y20c{bottom:177.597067pt;}
.y1ec{bottom:177.722933pt;}
.y24c{bottom:177.725600pt;}
.y1f6{bottom:180.771200pt;}
.y14d{bottom:181.218133pt;}
.y25{bottom:181.695067pt;}
.yeb{bottom:181.837867pt;}
.y166{bottom:181.963867pt;}
.y1b0{bottom:185.848933pt;}
.y128{bottom:186.101200pt;}
.y4f{bottom:186.114533pt;}
.y82{bottom:187.423200pt;}
.y20b{bottom:190.930400pt;}
.y1eb{bottom:191.056267pt;}
.y24b{bottom:191.058933pt;}
.yba{bottom:191.182267pt;}
.y14c{bottom:195.090133pt;}
.y1f5{bottom:196.771200pt;}
.y24{bottom:197.695067pt;}
.yea{bottom:197.837867pt;}
.y165{bottom:197.963867pt;}
.y1af{bottom:199.182267pt;}
.y127{bottom:202.101200pt;}
.y4e{bottom:202.114533pt;}
.y81{bottom:203.423200pt;}
.y20a{bottom:204.263733pt;}
.y1ea{bottom:204.389600pt;}
.y24a{bottom:204.392267pt;}
.yb9{bottom:204.515600pt;}
.y14b{bottom:207.826400pt;}
.y1ae{bottom:212.515600pt;}
.y1f4{bottom:212.771200pt;}
.y23{bottom:213.695067pt;}
.ye9{bottom:213.837867pt;}
.y164{bottom:213.963867pt;}
.y209{bottom:217.597067pt;}
.y1e9{bottom:217.722933pt;}
.y249{bottom:217.725600pt;}
.yb8{bottom:217.848933pt;}
.y126{bottom:218.101200pt;}
.y80{bottom:219.423200pt;}
.y14a{bottom:223.826400pt;}
.y1ad{bottom:225.848933pt;}
.y22{bottom:229.695067pt;}
.ye8{bottom:229.837867pt;}
.y163{bottom:229.963867pt;}
.y208{bottom:230.930400pt;}
.y1e8{bottom:231.056267pt;}
.y248{bottom:231.058933pt;}
.yb7{bottom:231.182267pt;}
.y4d{bottom:233.994533pt;}
.y125{bottom:234.101200pt;}
.y7f{bottom:235.423200pt;}
.y1ac{bottom:239.182267pt;}
.y207{bottom:244.263733pt;}
.y1e7{bottom:244.389600pt;}
.y247{bottom:244.392267pt;}
.yb6{bottom:244.515600pt;}
.y21{bottom:245.695067pt;}
.ye7{bottom:245.837867pt;}
.y162{bottom:245.963867pt;}
.y4c{bottom:249.994533pt;}
.y124{bottom:250.101200pt;}
.y7e{bottom:251.423200pt;}
.y1aa{bottom:252.515600pt;}
.y1ab{bottom:252.518267pt;}
.y149{bottom:255.693067pt;}
.y9a{bottom:256.366667pt;}
.y9d{bottom:256.377333pt;}
.y206{bottom:257.597067pt;}
.y1e6{bottom:257.722933pt;}
.y246{bottom:257.725600pt;}
.yb5{bottom:257.848933pt;}
.y155{bottom:261.670933pt;}
.y20{bottom:261.695067pt;}
.ye6{bottom:261.837867pt;}
.y161{bottom:261.963867pt;}
.y1a9{bottom:265.848933pt;}
.y4b{bottom:265.994533pt;}
.y123{bottom:266.101200pt;}
.y7d{bottom:267.423200pt;}
.y205{bottom:270.930400pt;}
.y1e5{bottom:271.056267pt;}
.y245{bottom:271.058933pt;}
.yb4{bottom:271.182267pt;}
.y114{bottom:271.292533pt;}
.y148{bottom:271.693067pt;}
.y18f{bottom:277.347867pt;}
.y1f{bottom:277.695067pt;}
.ye5{bottom:277.837867pt;}
.y160{bottom:277.963867pt;}
.y1a8{bottom:279.182267pt;}
.y122{bottom:282.101200pt;}
.y10d{bottom:283.005600pt;}
.y7c{bottom:283.423200pt;}
.y204{bottom:284.263733pt;}
.y1e4{bottom:284.389600pt;}
.y244{bottom:284.392267pt;}
.yb3{bottom:284.515600pt;}
.y1a7{bottom:292.518267pt;}
.y1e{bottom:293.695067pt;}
.ye4{bottom:293.837867pt;}
.y15f{bottom:293.963867pt;}
.y175{bottom:295.574400pt;}
.y203{bottom:297.597067pt;}
.y1e3{bottom:297.722933pt;}
.y243{bottom:297.725600pt;}
.yb2{bottom:297.848933pt;}
.y4a{bottom:297.874533pt;}
.y121{bottom:298.101200pt;}
.y7b{bottom:299.423200pt;}
.y147{bottom:303.693067pt;}
.y1a5{bottom:305.848933pt;}
.y1a6{bottom:305.851600pt;}
.y1d{bottom:309.695067pt;}
.ye3{bottom:309.837867pt;}
.y15e{bottom:309.963867pt;}
.y202{bottom:310.930400pt;}
.y1e2{bottom:311.056267pt;}
.y242{bottom:311.058933pt;}
.yb1{bottom:311.182267pt;}
.y120{bottom:314.101200pt;}
.y7a{bottom:315.423200pt;}
.y1a4{bottom:319.182267pt;}
.y201{bottom:324.263733pt;}
.y1e1{bottom:324.389600pt;}
.y241{bottom:324.392267pt;}
.yb0{bottom:324.515600pt;}
.y1c{bottom:325.695067pt;}
.ye2{bottom:325.837867pt;}
.y15d{bottom:325.963867pt;}
.y11f{bottom:330.101200pt;}
.y79{bottom:331.423200pt;}
.y1a3{bottom:332.515600pt;}
.y146{bottom:335.182267pt;}
.y200{bottom:337.597067pt;}
.y1e0{bottom:337.722933pt;}
.y240{bottom:337.725600pt;}
.yaf{bottom:337.848933pt;}
.y1b{bottom:341.695067pt;}
.ye1{bottom:341.837867pt;}
.y15c{bottom:341.963867pt;}
.y1a2{bottom:345.848933pt;}
.y49{bottom:345.994533pt;}
.y11e{bottom:346.101200pt;}
.y78{bottom:347.423200pt;}
.y145{bottom:348.515600pt;}
.y1ff{bottom:350.930400pt;}
.y1df{bottom:351.056267pt;}
.y23f{bottom:351.058933pt;}
.yae{bottom:351.182267pt;}
.y1a{bottom:357.695067pt;}
.ye0{bottom:357.837867pt;}
.y1a1{bottom:359.182267pt;}
.y144{bottom:361.848933pt;}
.y11d{bottom:362.101200pt;}
.y77{bottom:363.423200pt;}
.y1fe{bottom:364.263733pt;}
.y1de{bottom:364.389600pt;}
.y23e{bottom:364.392267pt;}
.yad{bottom:364.515600pt;}
.y1a0{bottom:372.515600pt;}
.y15b{bottom:373.584933pt;}
.y19{bottom:373.695067pt;}
.ydf{bottom:373.837867pt;}
.y143{bottom:375.182267pt;}
.y1dd{bottom:377.722933pt;}
.y23d{bottom:377.725600pt;}
.yac{bottom:377.848933pt;}
.y11c{bottom:378.101200pt;}
.y76{bottom:379.423200pt;}
.y19f{bottom:385.848933pt;}
.y15a{bottom:386.918267pt;}
.y142{bottom:388.515600pt;}
.y18{bottom:389.695067pt;}
.yde{bottom:389.837867pt;}
.y1dc{bottom:391.056267pt;}
.y23c{bottom:391.058933pt;}
.yab{bottom:391.182267pt;}
.y1fd{bottom:393.981200pt;}
.y11b{bottom:394.101200pt;}
.y48{bottom:394.114533pt;}
.y75{bottom:395.423200pt;}
.y19e{bottom:399.182267pt;}
.y141{bottom:401.848933pt;}
.y1db{bottom:404.389600pt;}
.y23b{bottom:404.392267pt;}
.yaa{bottom:404.515600pt;}
.y17{bottom:405.695067pt;}
.ydd{bottom:405.837867pt;}
.y11a{bottom:410.101200pt;}
.y47{bottom:410.114533pt;}
.y154{bottom:411.345600pt;}
.y74{bottom:411.423200pt;}
.y19d{bottom:412.515600pt;}
.y99{bottom:412.740000pt;}
.y9c{bottom:412.750667pt;}
.y140{bottom:415.182267pt;}
.y159{bottom:415.632800pt;}
.y1da{bottom:417.722933pt;}
.y23a{bottom:417.725600pt;}
.ya9{bottom:417.848933pt;}
.y16{bottom:421.695067pt;}
.ydc{bottom:421.837867pt;}
.y19c{bottom:425.848933pt;}
.y119{bottom:426.101200pt;}
.y46{bottom:426.114533pt;}
.y73{bottom:427.423200pt;}
.y13f{bottom:428.515600pt;}
.y158{bottom:429.504800pt;}
.y1d9{bottom:431.056267pt;}
.y239{bottom:431.058400pt;}
.ya8{bottom:431.182267pt;}
.y15{bottom:437.695067pt;}
.ydb{bottom:437.837867pt;}
.y19b{bottom:439.182267pt;}
.y13e{bottom:441.848933pt;}
.y118{bottom:442.101200pt;}
.y45{bottom:442.114533pt;}
.y157{bottom:442.234533pt;}
.y72{bottom:443.423200pt;}
.y1d8{bottom:444.389600pt;}
.y238{bottom:444.391733pt;}
.ya7{bottom:444.515600pt;}
.y174{bottom:449.590400pt;}
.y18e{bottom:451.587867pt;}
.y19a{bottom:452.515600pt;}
.y10c{bottom:452.893600pt;}
.y14{bottom:453.695067pt;}
.yda{bottom:453.837867pt;}
.y13d{bottom:455.182267pt;}
.y1d7{bottom:457.722933pt;}
.y237{bottom:457.725067pt;}
.ya6{bottom:457.848933pt;}
.y117{bottom:458.101200pt;}
.y44{bottom:458.114533pt;}
.y156{bottom:458.234533pt;}
.y113{bottom:458.375200pt;}
.y71{bottom:459.423200pt;}
.y199{bottom:465.848933pt;}
.y13c{bottom:468.515600pt;}
.y13{bottom:469.695067pt;}
.yd9{bottom:469.837867pt;}
.y1d6{bottom:471.056267pt;}
.y236{bottom:471.058400pt;}
.ya5{bottom:471.182267pt;}
.y173{bottom:472.737067pt;}
.y116{bottom:474.101200pt;}
.y43{bottom:474.114533pt;}
.y70{bottom:475.423200pt;}
.y198{bottom:479.182267pt;}
.y13b{bottom:481.848933pt;}
.y1d5{bottom:484.389600pt;}
.y235{bottom:484.391733pt;}
.ya4{bottom:484.515600pt;}
.y12{bottom:485.695067pt;}
.yd8{bottom:485.837867pt;}
.y115{bottom:490.101200pt;}
.y42{bottom:490.114533pt;}
.y6f{bottom:491.423200pt;}
.y197{bottom:492.515600pt;}
.y13a{bottom:495.182267pt;}
.y1d4{bottom:497.722933pt;}
.y234{bottom:497.725067pt;}
.ya3{bottom:497.848933pt;}
.y27{bottom:501.695067pt;}
.yd7{bottom:501.837867pt;}
.y196{bottom:505.848933pt;}
.yf8{bottom:506.101200pt;}
.y41{bottom:506.114533pt;}
.y6e{bottom:507.423200pt;}
.y139{bottom:508.515600pt;}
.y1d3{bottom:511.056267pt;}
.y233{bottom:511.058400pt;}
.ya2{bottom:511.182267pt;}
.y108{bottom:512.630400pt;}
.y11{bottom:517.695067pt;}
.yd6{bottom:517.837867pt;}
.y195{bottom:519.182267pt;}
.y138{bottom:521.848933pt;}
.yf7{bottom:522.101200pt;}
.y40{bottom:522.114533pt;}
.y6d{bottom:523.423200pt;}
.y1d2{bottom:524.389600pt;}
.y232{bottom:524.391733pt;}
.ya1{bottom:524.515600pt;}
.y107{bottom:528.630400pt;}
.y194{bottom:532.515600pt;}
.yd5{bottom:533.837867pt;}
.y137{bottom:535.182267pt;}
.y1d1{bottom:537.722933pt;}
.y231{bottom:537.725067pt;}
.yf6{bottom:538.101200pt;}
.y3f{bottom:538.114533pt;}
.y6c{bottom:539.423200pt;}
.y106{bottom:544.630400pt;}
.y193{bottom:545.848933pt;}
.y136{bottom:548.515600pt;}
.yd4{bottom:549.837867pt;}
.y1d0{bottom:551.056267pt;}
.y230{bottom:551.058400pt;}
.yf5{bottom:554.101200pt;}
.ya0{bottom:554.234533pt;}
.y6b{bottom:555.423200pt;}
.y192{bottom:559.182267pt;}
.y105{bottom:560.630400pt;}
.y135{bottom:561.848933pt;}
.y1cf{bottom:564.389600pt;}
.y22f{bottom:564.391733pt;}
.yd3{bottom:565.837867pt;}
.y153{bottom:566.492267pt;}
.yf4{bottom:570.101200pt;}
.y3e{bottom:570.114533pt;}
.y9f{bottom:570.234533pt;}
.y6a{bottom:571.423200pt;}
.y191{bottom:572.515600pt;}
.y98{bottom:575.161333pt;}
.y9b{bottom:575.172000pt;}
.y134{bottom:575.182267pt;}
.y104{bottom:576.630400pt;}
.y1ce{bottom:577.722933pt;}
.y22e{bottom:577.725067pt;}
.yf{bottom:581.239600pt;}
.yd2{bottom:581.837867pt;}
.yf3{bottom:586.101200pt;}
.y9e{bottom:586.234533pt;}
.y69{bottom:587.423200pt;}
.y133{bottom:588.515600pt;}
.y1cd{bottom:591.056267pt;}
.y22d{bottom:591.058400pt;}
.y103{bottom:592.630400pt;}
.yd1{bottom:597.837867pt;}
.y3d{bottom:601.981200pt;}
.yf2{bottom:602.101200pt;}
.y190{bottom:602.234533pt;}
.y1cc{bottom:604.389600pt;}
.y22c{bottom:604.391733pt;}
.y102{bottom:608.630400pt;}
.ye{bottom:610.444933pt;}
.y18d{bottom:610.702533pt;}
.yd0{bottom:613.837867pt;}
.y1cb{bottom:617.722933pt;}
.y22b{bottom:617.725067pt;}
.y3c{bottom:617.981200pt;}
.y93{bottom:618.101200pt;}
.y132{bottom:618.234533pt;}
.y68{bottom:619.044267pt;}
.yd{bottom:623.778267pt;}
.y112{bottom:624.295200pt;}
.y101{bottom:624.630400pt;}
.ycf{bottom:629.837867pt;}
.y1ca{bottom:631.056267pt;}
.y22a{bottom:631.058400pt;}
.y67{bottom:632.377600pt;}
.y3b{bottom:633.981200pt;}
.y92{bottom:634.101200pt;}
.y131{bottom:634.234533pt;}
.yc{bottom:637.111600pt;}
.y100{bottom:640.630400pt;}
.y1c9{bottom:644.389600pt;}
.y229{bottom:644.391733pt;}
.y66{bottom:645.710933pt;}
.yce{bottom:645.837867pt;}
.y172{bottom:648.011733pt;}
.y3a{bottom:649.981200pt;}
.y91{bottom:650.101200pt;}
.y130{bottom:650.234533pt;}
.yb{bottom:650.444933pt;}
.yff{bottom:656.630400pt;}
.y1c8{bottom:657.722933pt;}
.y228{bottom:657.725067pt;}
.y65{bottom:659.044267pt;}
.ycd{bottom:661.837867pt;}
.ya{bottom:663.778267pt;}
.y39{bottom:665.981200pt;}
.y90{bottom:666.101200pt;}
.y188{bottom:666.104533pt;}
.y1c7{bottom:671.056267pt;}
.y227{bottom:671.058400pt;}
.yfe{bottom:672.630400pt;}
.y9{bottom:677.111600pt;}
.ycc{bottom:677.837867pt;}
.y38{bottom:681.981200pt;}
.y8f{bottom:682.101200pt;}
.y187{bottom:682.104533pt;}
.y1c6{bottom:684.389600pt;}
.y226{bottom:684.391733pt;}
.y64{bottom:687.758667pt;}
.yfd{bottom:688.630400pt;}
.ycb{bottom:693.837867pt;}
.y1c5{bottom:697.722933pt;}
.y225{bottom:697.725067pt;}
.y8e{bottom:698.101200pt;}
.y186{bottom:698.104533pt;}
.y63{bottom:701.630667pt;}
.yca{bottom:709.837867pt;}
.y1c4{bottom:711.056267pt;}
.y224{bottom:711.058400pt;}
.y37{bottom:713.981200pt;}
.y8d{bottom:714.101200pt;}
.y185{bottom:714.104533pt;}
.y62{bottom:714.367067pt;}
.yfc{bottom:719.632667pt;}
.y8{bottom:720.372667pt;}
.y1c3{bottom:724.389600pt;}
.y223{bottom:724.391733pt;}
.yc9{bottom:725.837867pt;}
.y8c{bottom:730.101200pt;}
.y184{bottom:730.104533pt;}
.y61{bottom:730.367067pt;}
.yfb{bottom:733.504667pt;}
.y1c2{bottom:737.722933pt;}
.y222{bottom:737.725067pt;}
.yc8{bottom:741.837867pt;}
.y8b{bottom:746.101200pt;}
.y183{bottom:746.104533pt;}
.yfa{bottom:746.234533pt;}
.y1c1{bottom:751.056267pt;}
.y221{bottom:751.058400pt;}
.y7{bottom:751.106267pt;}
.yc7{bottom:757.837867pt;}
.y36{bottom:762.101200pt;}
.y182{bottom:762.104533pt;}
.y60{bottom:762.233733pt;}
.yf9{bottom:762.234533pt;}
.y1c0{bottom:764.389600pt;}
.y220{bottom:764.391733pt;}
.y6{bottom:765.772933pt;}
.yc6{bottom:773.837867pt;}
.y1bf{bottom:777.722933pt;}
.y21f{bottom:777.725067pt;}
.y35{bottom:778.101200pt;}
.y181{bottom:778.104533pt;}
.y5f{bottom:778.233733pt;}
.y5{bottom:783.004267pt;}
.yc5{bottom:789.837867pt;}
.y1be{bottom:791.056267pt;}
.y21e{bottom:791.058400pt;}
.y34{bottom:794.101200pt;}
.y180{bottom:794.104533pt;}
.y5e{bottom:794.233733pt;}
.y1bd{bottom:804.389600pt;}
.y21d{bottom:804.391733pt;}
.yc4{bottom:805.837867pt;}
.y4{bottom:807.350400pt;}
.y33{bottom:810.101200pt;}
.y17f{bottom:810.104533pt;}
.y1bc{bottom:817.722933pt;}
.y21c{bottom:817.725067pt;}
.y32{bottom:826.101200pt;}
.y17e{bottom:826.104533pt;}
.y5d{bottom:826.233733pt;}
.y1bb{bottom:831.056267pt;}
.y21b{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.yc3{bottom:837.458933pt;}
.y31{bottom:842.101200pt;}
.y17d{bottom:842.104533pt;}
.y1ba{bottom:844.389600pt;}
.y21a{bottom:844.391733pt;}
.yc2{bottom:850.792267pt;}
.y5c{bottom:857.722933pt;}
.y219{bottom:857.725067pt;}
.y30{bottom:858.101200pt;}
.y17c{bottom:858.104533pt;}
.y5b{bottom:871.056267pt;}
.y218{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y2f{bottom:874.101200pt;}
.y17b{bottom:874.104533pt;}
.yc1{bottom:879.506800pt;}
.y5a{bottom:884.389600pt;}
.y217{bottom:884.391733pt;}
.y2e{bottom:890.101200pt;}
.y17a{bottom:890.104533pt;}
.yc0{bottom:893.378800pt;}
.y59{bottom:897.722933pt;}
.y216{bottom:897.725067pt;}
.y2d{bottom:906.101200pt;}
.y179{bottom:906.104533pt;}
.y177{bottom:906.107733pt;}
.ybf{bottom:906.119733pt;}
.y58{bottom:911.056267pt;}
.y215{bottom:911.058400pt;}
.y2c{bottom:922.101200pt;}
.y178{bottom:922.104533pt;}
.y176{bottom:922.107733pt;}
.ybe{bottom:922.119733pt;}
.y57{bottom:924.389600pt;}
.y214{bottom:924.391733pt;}
.y29{bottom:951.792400pt;}
.y8a{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.h2{height:27.197917pt;}
.h6{height:31.062500pt;}
.h9{height:31.064167pt;}
.h8{height:31.083333pt;}
.h7{height:31.104167pt;}
.h10{height:31.106300pt;}
.hd{height:33.015375pt;}
.he{height:33.048177pt;}
.hf{height:34.992188pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.880208pt;}
.h5{height:42.739583pt;}
.h3{height:46.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;}
.xb{left:68.031467pt;}
.x22{left:73.746267pt;}
.x2f{left:80.500800pt;}
.x3a{left:83.146133pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x10{left:94.488133pt;}
.xc{left:98.271467pt;}
.x1c{left:100.535467pt;}
.x3e{left:103.936933pt;}
.x3{left:111.494533pt;}
.x41{left:113.382533pt;}
.x6{left:117.170133pt;}
.x37{left:120.943467pt;}
.xd{left:128.644800pt;}
.x4{left:143.622533pt;}
.xf{left:171.351467pt;}
.x39{left:172.921733pt;}
.xe{left:187.644800pt;}
.x5{left:189.223467pt;}
.x40{left:191.595867pt;}
.x38{left:197.156800pt;}
.x3b{left:238.676800pt;}
.x28{left:242.076000pt;}
.x34{left:251.812000pt;}
.x2a{left:270.237200pt;}
.x30{left:283.466133pt;}
.x1d{left:289.324800pt;}
.xa{left:404.481333pt;}
.x12{left:406.299200pt;}
.x16{left:409.134000pt;}
.x24{left:412.456400pt;}
.x13{left:413.869467pt;}
.x1a{left:425.195867pt;}
.x7{left:427.090133pt;}
.x11{left:432.755867pt;}
.x14{left:436.536133pt;}
.x3f{left:442.204667pt;}
.x2c{left:451.653600pt;}
.x1b{left:455.435867pt;}
.x8{left:457.343467pt;}
.x3d{left:461.102267pt;}
.x23{left:465.506267pt;}
.x3c{left:470.548800pt;}
.x25{left:475.889200pt;}
.x32{left:480.742533pt;}
.x29{left:482.641333pt;}
.x1e{left:489.068800pt;}
.x2e{left:493.672533pt;}
.x31{left:498.143467pt;}
.x1f{left:500.780800pt;}
.x2d{left:507.259200pt;}
.x2b{left:510.610533pt;}
.x17{left:512.838000pt;}
.x20{left:514.572800pt;}
.x33{left:531.403333pt;}
.x27{left:532.733333pt;}
.x15{left:535.429467pt;}
.x26{left:554.329200pt;}
.x19{left:589.770933pt;}
.x2{left:626.078800pt;}
.x35{left:637.449067pt;}
.x18{left:643.752133pt;}
.x36{left:657.187867pt;}
.x21{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; }
  