
    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_da6a047f7a60afa6c60afdc6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.086000;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_550b1dcd1ed454116173da55.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.086000;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_96078dd6521664edf1fa478a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.879000;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_cd2fdd416473b67020971f78.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_550b1dcd1ed454116173da55.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.086000;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_550b1dcd1ed454116173da55.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.086000;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_550b1dcd1ed454116173da55.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.086000;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_452761bdcfd402c249fcac93.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.877000;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.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.820000px;}
.v1{vertical-align:21.780000px;}
.ls88{letter-spacing:-6.606000px;}
.ls78{letter-spacing:-4.050000px;}
.ls89{letter-spacing:-3.906000px;}
.ls8a{letter-spacing:-2.700000px;}
.ls77{letter-spacing:-2.052000px;}
.ls46{letter-spacing:-1.500000px;}
.ls7a{letter-spacing:-1.026000px;}
.ls47{letter-spacing:-0.960000px;}
.ls48{letter-spacing:-0.660000px;}
.ls2e{letter-spacing:-0.300000px;}
.ls53{letter-spacing:-0.240000px;}
.ls45{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.120000px;}
.ls3a{letter-spacing:-0.060000px;}
.lsb{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.048000px;}
.ls8d{letter-spacing:0.054000px;}
.ls2d{letter-spacing:0.060000px;}
.ls6b{letter-spacing:0.108000px;}
.ls29{letter-spacing:0.120000px;}
.ls2c{letter-spacing:0.180000px;}
.ls6f{letter-spacing:0.216000px;}
.ls43{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.255000px;}
.ls56{letter-spacing:0.270000px;}
.lsa{letter-spacing:0.285000px;}
.ls6{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.300000px;}
.ls6e{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.336000px;}
.ls1d{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.378000px;}
.ls4{letter-spacing:0.384000px;}
.ls30{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.432000px;}
.ls4f{letter-spacing:0.450000px;}
.lse{letter-spacing:0.480000px;}
.ls61{letter-spacing:0.486000px;}
.ls12{letter-spacing:0.528000px;}
.ls2a{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.576000px;}
.ls64{letter-spacing:0.594000px;}
.ls1a{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.624000px;}
.ls6d{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.660000px;}
.ls69{letter-spacing:0.675000px;}
.ls68{letter-spacing:0.702000px;}
.ls1c{letter-spacing:0.720000px;}
.ls5d{letter-spacing:0.756000px;}
.ls14{letter-spacing:0.768000px;}
.ls1b{letter-spacing:0.780000px;}
.ls6c{letter-spacing:0.810000px;}
.ls87{letter-spacing:0.837000px;}
.ls38{letter-spacing:0.840000px;}
.ls5e{letter-spacing:0.864000px;}
.ls33{letter-spacing:0.900000px;}
.ls11{letter-spacing:0.912000px;}
.ls63{letter-spacing:0.918000px;}
.ls27{letter-spacing:0.960000px;}
.ls60{letter-spacing:0.972000px;}
.ls2b{letter-spacing:1.020000px;}
.ls7b{letter-spacing:1.026000px;}
.ls72{letter-spacing:1.053000px;}
.ls8{letter-spacing:1.056000px;}
.ls21{letter-spacing:1.080000px;}
.ls58{letter-spacing:1.110000px;}
.ls7{letter-spacing:1.128000px;}
.ls84{letter-spacing:1.134000px;}
.ls1f{letter-spacing:1.140000px;}
.ls5f{letter-spacing:1.188000px;}
.ls3{letter-spacing:1.200000px;}
.ls7f{letter-spacing:1.242000px;}
.ls15{letter-spacing:1.248000px;}
.ls44{letter-spacing:1.260000px;}
.ls34{letter-spacing:1.290000px;}
.ls5{letter-spacing:1.296000px;}
.ls52{letter-spacing:1.320000px;}
.ls8b{letter-spacing:1.323000px;}
.ls20{letter-spacing:1.350000px;}
.ls23{letter-spacing:1.380000px;}
.ls7c{letter-spacing:1.404000px;}
.ls31{letter-spacing:1.440000px;}
.ls83{letter-spacing:1.458000px;}
.ls4a{letter-spacing:1.500000px;}
.ls82{letter-spacing:1.512000px;}
.ls86{letter-spacing:1.539000px;}
.ls35{letter-spacing:1.560000px;}
.ls3d{letter-spacing:1.590000px;}
.ls3f{letter-spacing:1.620000px;}
.ls2{letter-spacing:1.632000px;}
.ls74{letter-spacing:1.674000px;}
.ls4e{letter-spacing:1.680000px;}
.ls40{letter-spacing:1.710000px;}
.ls85{letter-spacing:1.728000px;}
.ls19{letter-spacing:1.740000px;}
.ls13{letter-spacing:1.776000px;}
.ls32{letter-spacing:1.800000px;}
.ls3e{letter-spacing:1.860000px;}
.ls7e{letter-spacing:1.890000px;}
.ls26{letter-spacing:1.920000px;}
.ls7d{letter-spacing:1.944000px;}
.lsc{letter-spacing:1.968000px;}
.ls37{letter-spacing:1.980000px;}
.ls70{letter-spacing:1.998000px;}
.ls3c{letter-spacing:2.010000px;}
.ls18{letter-spacing:2.040000px;}
.ls80{letter-spacing:2.052000px;}
.ls28{letter-spacing:2.100000px;}
.ls81{letter-spacing:2.106000px;}
.ls5b{letter-spacing:2.160000px;}
.ls36{letter-spacing:2.220000px;}
.ls54{letter-spacing:2.310000px;}
.ls5c{letter-spacing:2.322000px;}
.ls51{letter-spacing:2.340000px;}
.ls24{letter-spacing:2.400000px;}
.ls5a{letter-spacing:2.460000px;}
.ls79{letter-spacing:2.484000px;}
.ls3b{letter-spacing:2.520000px;}
.ls55{letter-spacing:2.640000px;}
.ls76{letter-spacing:2.642400px;}
.ls71{letter-spacing:2.664600px;}
.ls41{letter-spacing:2.760000px;}
.ls42{letter-spacing:2.820000px;}
.ls49{letter-spacing:2.880000px;}
.ls62{letter-spacing:2.916000px;}
.ls25{letter-spacing:2.940000px;}
.ls22{letter-spacing:3.000000px;}
.ls6a{letter-spacing:3.024000px;}
.ls8e{letter-spacing:3.078000px;}
.ls59{letter-spacing:3.120000px;}
.ls4d{letter-spacing:3.240000px;}
.ls73{letter-spacing:3.294000px;}
.ls90{letter-spacing:3.348000px;}
.ls57{letter-spacing:3.420000px;}
.ls8f{letter-spacing:3.456000px;}
.ls4b{letter-spacing:3.600000px;}
.ls66{letter-spacing:3.834000px;}
.ls8c{letter-spacing:3.888000px;}
.ls50{letter-spacing:3.960000px;}
.ls67{letter-spacing:4.914000px;}
.ls4c{letter-spacing:5.160000px;}
.ls65{letter-spacing:8.532000px;}
.ls1{letter-spacing:214.342200px;}
.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;}
}
.wsbe{word-spacing:-24.732000px;}
.wsbf{word-spacing:-21.114000px;}
.wsc4{word-spacing:-19.494000px;}
.ws102{word-spacing:-19.278000px;}
.wsc0{word-spacing:-19.224000px;}
.wsaa{word-spacing:-18.522000px;}
.wsc5{word-spacing:-17.874000px;}
.wse0{word-spacing:-17.712000px;}
.ws101{word-spacing:-17.550000px;}
.wsc1{word-spacing:-16.848000px;}
.wsdf{word-spacing:-16.740000px;}
.wsc3{word-spacing:-16.416000px;}
.ws1{word-spacing:-16.200000px;}
.wsc2{word-spacing:-15.660000px;}
.ws0{word-spacing:-13.860000px;}
.ws3{word-spacing:-12.600000px;}
.ws2{word-spacing:-11.340000px;}
.ws10b{word-spacing:-3.348000px;}
.wsfb{word-spacing:-2.700000px;}
.wsb0{word-spacing:-2.322000px;}
.wsf4{word-spacing:-2.160000px;}
.wsff{word-spacing:-1.512000px;}
.wsf3{word-spacing:-1.458000px;}
.wsef{word-spacing:-1.242000px;}
.wse1{word-spacing:-1.026000px;}
.wsbb{word-spacing:-0.972000px;}
.wse7{word-spacing:-0.918000px;}
.ws106{word-spacing:-0.810000px;}
.wse3{word-spacing:-0.756000px;}
.wsd0{word-spacing:-0.594000px;}
.wsee{word-spacing:-0.540000px;}
.ws4{word-spacing:-0.285000px;}
.wsd1{word-spacing:-0.216000px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:0.144000px;}
.ws25{word-spacing:0.180000px;}
.ws90{word-spacing:0.300000px;}
.ws1c{word-spacing:0.432000px;}
.ws16{word-spacing:0.480000px;}
.wsa8{word-spacing:0.600000px;}
.ws9b{word-spacing:0.660000px;}
.ws15{word-spacing:0.672000px;}
.wsfa{word-spacing:0.810000px;}
.ws63{word-spacing:0.840000px;}
.ws1d{word-spacing:0.864000px;}
.ws72{word-spacing:0.960000px;}
.ws97{word-spacing:1.020000px;}
.wsdb{word-spacing:1.026000px;}
.ws85{word-spacing:1.080000px;}
.wsa1{word-spacing:1.140000px;}
.ws82{word-spacing:1.200000px;}
.ws77{word-spacing:1.320000px;}
.wsde{word-spacing:1.350000px;}
.ws5d{word-spacing:1.440000px;}
.ws5a{word-spacing:1.560000px;}
.wsed{word-spacing:1.620000px;}
.wsec{word-spacing:1.674000px;}
.ws21{word-spacing:1.680000px;}
.ws3b{word-spacing:1.800000px;}
.wsa9{word-spacing:1.860000px;}
.ws13{word-spacing:1.872000px;}
.ws4d{word-spacing:1.920000px;}
.ws23{word-spacing:1.980000px;}
.ws5e{word-spacing:2.040000px;}
.wscf{word-spacing:2.052000px;}
.wsd{word-spacing:2.064000px;}
.ws5f{word-spacing:2.100000px;}
.wsd4{word-spacing:2.106000px;}
.ws9{word-spacing:2.112000px;}
.ws12{word-spacing:2.160000px;}
.ws19{word-spacing:2.256000px;}
.ws39{word-spacing:2.280000px;}
.ws17{word-spacing:2.304000px;}
.wscd{word-spacing:2.322000px;}
.ws46{word-spacing:2.340000px;}
.wsb9{word-spacing:2.376000px;}
.wsf{word-spacing:2.400000px;}
.wsb8{word-spacing:2.430000px;}
.ws11{word-spacing:2.448000px;}
.wsd3{word-spacing:2.484000px;}
.ws88{word-spacing:2.520000px;}
.wsca{word-spacing:2.538000px;}
.ws71{word-spacing:2.580000px;}
.ws65{word-spacing:2.640000px;}
.wsc9{word-spacing:2.646000px;}
.ws26{word-spacing:2.700000px;}
.wsdd{word-spacing:2.754000px;}
.ws47{word-spacing:2.760000px;}
.wsb2{word-spacing:2.808000px;}
.ws78{word-spacing:2.820000px;}
.wsf6{word-spacing:2.832000px;}
.wsf7{word-spacing:2.838000px;}
.wse4{word-spacing:2.862000px;}
.ws83{word-spacing:2.880000px;}
.ws1a{word-spacing:2.928000px;}
.ws33{word-spacing:2.940000px;}
.ws22{word-spacing:3.000000px;}
.wsce{word-spacing:3.024000px;}
.ws36{word-spacing:3.060000px;}
.ws105{word-spacing:3.078000px;}
.ws60{word-spacing:3.120000px;}
.ws100{word-spacing:3.132000px;}
.ws43{word-spacing:3.180000px;}
.ws34{word-spacing:3.240000px;}
.ws49{word-spacing:3.300000px;}
.wsb3{word-spacing:3.348000px;}
.wse8{word-spacing:3.402000px;}
.ws67{word-spacing:3.420000px;}
.wsc6{word-spacing:3.456000px;}
.ws20{word-spacing:3.480000px;}
.ws14{word-spacing:3.504000px;}
.wsbc{word-spacing:3.510000px;}
.ws27{word-spacing:3.540000px;}
.wsb6{word-spacing:3.564000px;}
.ws38{word-spacing:3.600000px;}
.wsbd{word-spacing:3.618000px;}
.wsa6{word-spacing:3.660000px;}
.ws69{word-spacing:3.780000px;}
.wse2{word-spacing:3.834000px;}
.ws4e{word-spacing:3.840000px;}
.wsd7{word-spacing:3.942000px;}
.ws24{word-spacing:3.960000px;}
.ws8b{word-spacing:4.020000px;}
.wsc{word-spacing:4.032000px;}
.wsb7{word-spacing:4.050000px;}
.ws9f{word-spacing:4.080000px;}
.wsd6{word-spacing:4.104000px;}
.wsf8{word-spacing:4.110000px;}
.ws4c{word-spacing:4.140000px;}
.wsa2{word-spacing:4.200000px;}
.wsb{word-spacing:4.224000px;}
.wsfc{word-spacing:4.266000px;}
.wse9{word-spacing:4.320000px;}
.wsb5{word-spacing:4.374000px;}
.ws40{word-spacing:4.380000px;}
.ws6{word-spacing:4.410000px;}
.ws66{word-spacing:4.440000px;}
.wsd2{word-spacing:4.482000px;}
.ws3d{word-spacing:4.500000px;}
.ws8{word-spacing:4.512000px;}
.wsb4{word-spacing:4.536000px;}
.ws44{word-spacing:4.560000px;}
.ws53{word-spacing:4.620000px;}
.ws1b{word-spacing:4.656000px;}
.ws55{word-spacing:4.740000px;}
.ws8c{word-spacing:4.800000px;}
.ws108{word-spacing:4.806000px;}
.ws31{word-spacing:4.860000px;}
.ws103{word-spacing:4.914000px;}
.wsa{word-spacing:4.944000px;}
.ws107{word-spacing:4.968000px;}
.ws35{word-spacing:4.980000px;}
.wse5{word-spacing:5.022000px;}
.ws76{word-spacing:5.100000px;}
.ws5c{word-spacing:5.160000px;}
.wse6{word-spacing:5.184000px;}
.ws2b{word-spacing:5.220000px;}
.ws4a{word-spacing:5.280000px;}
.ws28{word-spacing:5.340000px;}
.ws42{word-spacing:5.460000px;}
.ws75{word-spacing:5.520000px;}
.wsf9{word-spacing:5.532000px;}
.wsf5{word-spacing:5.562000px;}
.ws5b{word-spacing:5.580000px;}
.ws8f{word-spacing:5.700000px;}
.wsf2{word-spacing:5.724000px;}
.ws8a{word-spacing:5.760000px;}
.ws6f{word-spacing:5.820000px;}
.ws8d{word-spacing:5.880000px;}
.ws3e{word-spacing:5.940000px;}
.ws7{word-spacing:6.048000px;}
.ws86{word-spacing:6.060000px;}
.wsd9{word-spacing:6.102000px;}
.ws2a{word-spacing:6.180000px;}
.wsfe{word-spacing:6.210000px;}
.wsd8{word-spacing:6.264000px;}
.ws2d{word-spacing:6.300000px;}
.wsda{word-spacing:6.318000px;}
.ws61{word-spacing:6.360000px;}
.ws91{word-spacing:6.420000px;}
.wsfd{word-spacing:6.480000px;}
.ws3f{word-spacing:6.540000px;}
.ws3a{word-spacing:6.600000px;}
.ws18{word-spacing:6.720000px;}
.ws6a{word-spacing:6.840000px;}
.ws6c{word-spacing:6.900000px;}
.ws89{word-spacing:6.960000px;}
.ws45{word-spacing:7.020000px;}
.ws51{word-spacing:7.080000px;}
.wseb{word-spacing:7.128000px;}
.wsa5{word-spacing:7.200000px;}
.ws54{word-spacing:7.260000px;}
.wsa0{word-spacing:7.320000px;}
.ws6e{word-spacing:7.380000px;}
.wsea{word-spacing:7.398000px;}
.wse{word-spacing:7.440000px;}
.wsd5{word-spacing:7.452000px;}
.ws1f{word-spacing:7.500000px;}
.ws99{word-spacing:7.560000px;}
.ws68{word-spacing:7.620000px;}
.ws104{word-spacing:7.668000px;}
.ws73{word-spacing:7.680000px;}
.wsf0{word-spacing:7.722000px;}
.ws3c{word-spacing:7.800000px;}
.ws96{word-spacing:7.860000px;}
.ws41{word-spacing:7.980000px;}
.wsf1{word-spacing:7.992000px;}
.wsad{word-spacing:8.100000px;}
.ws52{word-spacing:8.160000px;}
.ws80{word-spacing:8.220000px;}
.ws56{word-spacing:8.280000px;}
.wsaf{word-spacing:8.340000px;}
.ws30{word-spacing:8.400000px;}
.ws4b{word-spacing:8.520000px;}
.wsb1{word-spacing:8.586000px;}
.ws50{word-spacing:8.640000px;}
.ws29{word-spacing:8.700000px;}
.ws70{word-spacing:8.760000px;}
.ws9c{word-spacing:8.820000px;}
.ws1e{word-spacing:8.880000px;}
.ws81{word-spacing:8.940000px;}
.ws32{word-spacing:9.000000px;}
.wsdc{word-spacing:9.018000px;}
.ws8e{word-spacing:9.060000px;}
.ws57{word-spacing:9.120000px;}
.wsae{word-spacing:9.180000px;}
.wsac{word-spacing:9.300000px;}
.ws48{word-spacing:9.480000px;}
.ws9a{word-spacing:9.780000px;}
.ws84{word-spacing:9.900000px;}
.ws37{word-spacing:10.020000px;}
.ws2e{word-spacing:10.080000px;}
.wsab{word-spacing:10.260000px;}
.ws4f{word-spacing:10.680000px;}
.wsba{word-spacing:11.016000px;}
.ws9d{word-spacing:11.100000px;}
.wscb{word-spacing:11.232000px;}
.ws109{word-spacing:11.502000px;}
.ws58{word-spacing:11.580000px;}
.ws79{word-spacing:11.640000px;}
.ws59{word-spacing:11.760000px;}
.ws62{word-spacing:12.000000px;}
.ws2f{word-spacing:12.060000px;}
.ws98{word-spacing:12.180000px;}
.wsa7{word-spacing:12.240000px;}
.wsa4{word-spacing:12.300000px;}
.ws2c{word-spacing:12.420000px;}
.wsa3{word-spacing:12.840000px;}
.ws10a{word-spacing:13.014000px;}
.ws6d{word-spacing:13.200000px;}
.ws87{word-spacing:13.380000px;}
.ws9e{word-spacing:13.980000px;}
.wscc{word-spacing:14.256000px;}
.wsc8{word-spacing:14.418000px;}
.ws64{word-spacing:14.700000px;}
.ws74{word-spacing:15.960000px;}
.ws6b{word-spacing:19.380000px;}
.wsc7{word-spacing:31.914000px;}
.ws7e{word-spacing:112.858800px;}
.ws7a{word-spacing:120.943200px;}
.ws7c{word-spacing:125.458800px;}
.ws7d{word-spacing:159.478200px;}
.ws7b{word-spacing:182.158800px;}
.ws7f{word-spacing:191.818800px;}
.ws95{word-spacing:336.193200px;}
.ws94{word-spacing:341.441400px;}
.ws93{word-spacing:347.323800px;}
.ws92{word-spacing:348.583200px;}
._16{margin-left:-19.093200px;}
._7{margin-left:-16.100400px;}
._15{margin-left:-8.539200px;}
._2{margin-left:-6.606600px;}
._8{margin-left:-5.469000px;}
._3{margin-left:-4.296000px;}
._0{margin-left:-2.550000px;}
._4{margin-left:-1.350000px;}
._5{width:1.095000px;}
._1{width:2.213400px;}
._6{width:3.364800px;}
._14{width:4.678800px;}
._19{width:5.832000px;}
._18{width:8.208600px;}
._1a{width:10.675200px;}
._13{width:11.704800px;}
._17{width:14.046600px;}
._12{width:51.537000px;}
._e{width:144.358800px;}
._9{width:156.118800px;}
._d{width:157.797600px;}
._a{width:167.443200px;}
._11{width:174.075000px;}
._c{width:188.458800px;}
._f{width:193.917600px;}
._b{width:218.278200px;}
._10{width:409.062600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs4{font-size:46.200000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.535400px;}
.y67{bottom:119.055000px;}
.y1c{bottom:119.055150px;}
.y103{bottom:128.611950px;}
.y124{bottom:129.396750px;}
.y179{bottom:134.748300px;}
.y154{bottom:135.090450px;}
.y66{bottom:135.881550px;}
.ydf{bottom:135.889950px;}
.y8f{bottom:136.379850px;}
.y19d{bottom:138.320850px;}
.y1b{bottom:141.787800px;}
.y102{bottom:145.111950px;}
.y153{bottom:151.125900px;}
.y130{bottom:152.708100px;}
.yde{bottom:152.725050px;}
.y19c{bottom:153.319350px;}
.y8e{bottom:153.704700px;}
.y1a{bottom:156.016650px;}
.y101{bottom:161.611950px;}
.y178{bottom:166.943250px;}
.y152{bottom:167.161350px;}
.y12f{bottom:169.534650px;}
.ydd{bottom:169.559850px;}
.y19{bottom:170.245350px;}
.y8d{bottom:171.029400px;}
.y65{bottom:173.461950px;}
.y100{bottom:178.111950px;}
.y177{bottom:182.636400px;}
.y18{bottom:184.474200px;}
.y19b{bottom:184.814850px;}
.y12e{bottom:186.361200px;}
.y8c{bottom:188.354250px;}
.y64{bottom:190.288500px;}
.yff{bottom:194.611950px;}
.y17{bottom:198.703050px;}
.y151{bottom:199.698600px;}
.y12d{bottom:203.187600px;}
.y8b{bottom:205.679100px;}
.y63{bottom:207.115050px;}
.ydc{bottom:207.148650px;}
.y9f{bottom:209.108100px;}
.yfe{bottom:211.111950px;}
.y16{bottom:212.931750px;}
.y19a{bottom:213.684300px;}
.y176{bottom:214.831350px;}
.y150{bottom:215.734050px;}
.y8a{bottom:223.003800px;}
.y62{bottom:223.941450px;}
.ydb{bottom:223.983600px;}
.y9e{bottom:226.432950px;}
.y15{bottom:227.160600px;}
.yfd{bottom:227.611950px;}
.y199{bottom:229.371300px;}
.y175{bottom:230.524500px;}
.y14f{bottom:231.769500px;}
.y89{bottom:240.328650px;}
.y61{bottom:240.768000px;}
.yda{bottom:240.818550px;}
.y14{bottom:241.389300px;}
.y9d{bottom:243.757650px;}
.yfc{bottom:244.111950px;}
.y174{bottom:246.217650px;}
.y14e{bottom:247.804950px;}
.y13{bottom:255.618150px;}
.y60{bottom:257.594550px;}
.y88{bottom:257.653500px;}
.yfb{bottom:260.611950px;}
.y9c{bottom:261.082500px;}
.y198{bottom:261.568800px;}
.y173{bottom:261.910650px;}
.y12{bottom:269.846850px;}
.y5f{bottom:274.421100px;}
.yd9{bottom:274.488450px;}
.y87{bottom:274.978200px;}
.yfa{bottom:277.111950px;}
.y197{bottom:277.255800px;}
.y9b{bottom:278.407350px;}
.y14d{bottom:280.342350px;}
.y5e{bottom:291.247650px;}
.yd8{bottom:291.323400px;}
.y86{bottom:292.303050px;}
.y196{bottom:292.942800px;}
.yf9{bottom:293.611950px;}
.y172{bottom:294.105750px;}
.y9a{bottom:295.732050px;}
.y14c{bottom:296.377650px;}
.y5d{bottom:308.074200px;}
.yd7{bottom:308.158350px;}
.y171{bottom:309.798900px;}
.yf8{bottom:310.111950px;}
.y14b{bottom:312.413250px;}
.y99{bottom:313.056900px;}
.y5c{bottom:324.900600px;}
.yd6{bottom:324.993300px;}
.y195{bottom:325.140300px;}
.y170{bottom:325.492050px;}
.yba{bottom:327.119850px;}
.y85{bottom:330.381750px;}
.y194{bottom:340.827300px;}
.y12c{bottom:341.727150px;}
.yd5{bottom:341.828250px;}
.yb9{bottom:342.119850px;}
.y14a{bottom:344.950500px;}
.yf7{bottom:347.365800px;}
.y84{bottom:347.706450px;}
.y193{bottom:356.959500px;}
.y16f{bottom:357.687000px;}
.y12b{bottom:358.553700px;}
.y149{bottom:360.985950px;}
.y5b{bottom:362.481000px;}
.yf6{bottom:363.865800px;}
.y83{bottom:365.031300px;}
.y148{bottom:377.021400px;}
.y5a{bottom:379.307550px;}
.yd4{bottom:379.417050px;}
.yf5{bottom:380.365800px;}
.y82{bottom:382.356150px;}
.yb8{bottom:383.871750px;}
.y10a{bottom:389.121600px;}
.y192{bottom:389.157300px;}
.y16e{bottom:389.881950px;}
.y3e{bottom:395.917800px;}
.y59{bottom:396.134100px;}
.yd3{bottom:396.252000px;}
.yf4{bottom:396.865800px;}
.y81{bottom:399.680850px;}
.yb7{bottom:400.371750px;}
.y98{bottom:403.110000px;}
.y109{bottom:404.121600px;}
.y191{bottom:404.844300px;}
.y16d{bottom:405.575100px;}
.y3d{bottom:409.417800px;}
.y147{bottom:409.558650px;}
.y58{bottom:412.960650px;}
.yd2{bottom:413.086950px;}
.yb6{bottom:416.871750px;}
.y80{bottom:417.005700px;}
.y123{bottom:417.408600px;}
.y97{bottom:420.434700px;}
.y190{bottom:420.531300px;}
.y16c{bottom:421.268250px;}
.y57{bottom:429.787200px;}
.yd1{bottom:429.921900px;}
.y3c{bottom:431.421600px;}
.yb5{bottom:433.371750px;}
.yf3{bottom:434.119650px;}
.y7f{bottom:434.330400px;}
.y96{bottom:437.759550px;}
.y3b{bottom:444.921600px;}
.y56{bottom:446.613750px;}
.yd0{bottom:446.756850px;}
.yb4{bottom:449.871750px;}
.yf2{bottom:450.619650px;}
.y18f{bottom:452.728800px;}
.y16b{bottom:453.463200px;}
.y95{bottom:455.084400px;}
.y108{bottom:456.881400px;}
.y3a{bottom:458.421600px;}
.y122{bottom:459.160500px;}
.y55{bottom:463.440150px;}
.ycf{bottom:463.591800px;}
.y146{bottom:464.346150px;}
.yb3{bottom:466.371750px;}
.yf1{bottom:467.119650px;}
.y18e{bottom:468.415800px;}
.y16a{bottom:469.156350px;}
.y39{bottom:471.921600px;}
.y7e{bottom:472.409100px;}
.y121{bottom:475.660500px;}
.y54{bottom:480.266700px;}
.y11{bottom:480.414150px;}
.y145{bottom:481.881450px;}
.yb2{bottom:482.871750px;}
.y169{bottom:484.849500px;}
.y38{bottom:485.421600px;}
.y7d{bottom:489.733950px;}
.y120{bottom:492.160500px;}
.y10{bottom:496.914150px;}
.yce{bottom:496.928550px;}
.y12a{bottom:497.093250px;}
.y37{bottom:498.921600px;}
.y144{bottom:499.416900px;}
.y168{bottom:500.542650px;}
.y18d{bottom:500.613300px;}
.y7c{bottom:507.058800px;}
.y11f{bottom:508.660500px;}
.y36{bottom:512.421600px;}
.y129{bottom:513.919800px;}
.y167{bottom:516.235650px;}
.y18c{bottom:516.300300px;}
.yf0{bottom:516.621600px;}
.y143{bottom:516.952350px;}
.y53{bottom:517.847100px;}
.yb1{bottom:520.125600px;}
.y7b{bottom:524.383500px;}
.y11e{bottom:525.160500px;}
.y35{bottom:525.921600px;}
.yf{bottom:526.914150px;}
.y128{bottom:530.746350px;}
.y166{bottom:531.928800px;}
.y18b{bottom:531.987300px;}
.y52{bottom:534.673650px;}
.yb0{bottom:536.625600px;}
.y34{bottom:539.421600px;}
.y11d{bottom:541.660650px;}
.y7a{bottom:541.708350px;}
.ye{bottom:543.414150px;}
.yef{bottom:546.585450px;}
.y127{bottom:547.572900px;}
.y18a{bottom:547.674300px;}
.ycd{bottom:551.015550px;}
.y51{bottom:551.500200px;}
.y33{bottom:552.921600px;}
.yaf{bottom:553.125600px;}
.y142{bottom:555.241650px;}
.y11c{bottom:558.160650px;}
.y79{bottom:559.033200px;}
.yd{bottom:559.914150px;}
.y165{bottom:564.123900px;}
.yee{bottom:567.094650px;}
.ycc{bottom:567.850500px;}
.y50{bottom:568.326750px;}
.yae{bottom:569.625600px;}
.y141{bottom:572.777100px;}
.y78{bottom:576.357900px;}
.yc{bottom:576.414150px;}
.y164{bottom:579.816900px;}
.y189{bottom:579.871800px;}
.y1ae{bottom:580.451550px;}
.ycb{bottom:584.685450px;}
.y4f{bottom:585.153150px;}
.yad{bottom:586.125600px;}
.yed{bottom:587.603850px;}
.y140{bottom:590.312550px;}
.yb{bottom:592.914150px;}
.y77{bottom:593.682750px;}
.y11b{bottom:595.414350px;}
.y1ad{bottom:595.450050px;}
.y163{bottom:595.510050px;}
.y188{bottom:595.558800px;}
.y32{bottom:596.929500px;}
.y94{bottom:597.111750px;}
.yca{bottom:601.520400px;}
.y4e{bottom:601.979700px;}
.yac{bottom:602.625600px;}
.y13f{bottom:607.848000px;}
.yec{bottom:608.113050px;}
.ya{bottom:609.414150px;}
.y1ac{bottom:610.448550px;}
.y187{bottom:611.245800px;}
.y11a{bottom:611.914350px;}
.y93{bottom:614.436600px;}
.y4d{bottom:618.806250px;}
.y31{bottom:618.933450px;}
.yab{bottom:619.125600px;}
.y13e{bottom:625.383450px;}
.y162{bottom:627.705150px;}
.y119{bottom:628.414350px;}
.y9{bottom:628.914150px;}
.y76{bottom:631.761450px;}
.y30{bottom:632.433450px;}
.yaa{bottom:635.625600px;}
.y126{bottom:635.632800px;}
.yc9{bottom:639.109200px;}
.y1ab{bottom:641.944050px;}
.y13d{bottom:642.918750px;}
.y161{bottom:643.398150px;}
.y186{bottom:643.443300px;}
.y118{bottom:644.914350px;}
.y2f{bottom:645.933450px;}
.y8{bottom:648.414150px;}
.y75{bottom:649.086150px;}
.yeb{bottom:651.881400px;}
.yc8{bottom:655.944150px;}
.y4c{bottom:656.386650px;}
.y1aa{bottom:656.942550px;}
.y185{bottom:659.130300px;}
.y2e{bottom:659.433450px;}
.y13c{bottom:660.454350px;}
.y117{bottom:661.414350px;}
.y74{bottom:666.411000px;}
.y7{bottom:667.914150px;}
.y1a9{bottom:671.941050px;}
.yc7{bottom:672.779100px;}
.ya9{bottom:672.879450px;}
.y2d{bottom:672.933450px;}
.y4b{bottom:673.213200px;}
.y184{bottom:674.817300px;}
.y160{bottom:675.593250px;}
.y116{bottom:677.914350px;}
.y13b{bottom:677.989800px;}
.y73{bottom:683.735850px;}
.y2c{bottom:686.433450px;}
.ya8{bottom:689.379450px;}
.yc6{bottom:689.614050px;}
.y4a{bottom:690.039750px;}
.y15f{bottom:691.286250px;}
.yea{bottom:693.633300px;}
.y115{bottom:694.414350px;}
.y13a{bottom:695.525100px;}
.y2b{bottom:699.933450px;}
.y72{bottom:701.060550px;}
.y1a8{bottom:703.436550px;}
.ya7{bottom:705.879450px;}
.yc5{bottom:706.449000px;}
.y49{bottom:706.866150px;}
.y6{bottom:706.914150px;}
.y15e{bottom:706.979400px;}
.y183{bottom:707.014800px;}
.ye9{bottom:710.133300px;}
.y114{bottom:710.914350px;}
.y139{bottom:713.060550px;}
.y2a{bottom:713.433450px;}
.y71{bottom:718.385400px;}
.y1a7{bottom:718.435050px;}
.ya6{bottom:722.379450px;}
.y15d{bottom:722.672550px;}
.y182{bottom:722.701800px;}
.yc4{bottom:723.283950px;}
.y48{bottom:723.692850px;}
.y5{bottom:726.414150px;}
.ye8{bottom:726.633300px;}
.y29{bottom:726.933450px;}
.y113{bottom:727.414350px;}
.y138{bottom:730.596000px;}
.y70{bottom:735.710100px;}
.y107{bottom:735.881400px;}
.y181{bottom:738.388800px;}
.ya5{bottom:738.879450px;}
.yc3{bottom:740.118900px;}
.y47{bottom:740.519250px;}
.ye7{bottom:743.133300px;}
.y28{bottom:748.937400px;}
.y1a6{bottom:749.930550px;}
.y106{bottom:750.881400px;}
.y6f{bottom:753.034950px;}
.y15c{bottom:754.867650px;}
.ya4{bottom:755.379450px;}
.yc2{bottom:756.953850px;}
.y125{bottom:757.345800px;}
.y4{bottom:758.670000px;}
.ye6{bottom:759.633300px;}
.y1a5{bottom:764.929050px;}
.y112{bottom:766.045200px;}
.y137{bottom:768.885300px;}
.y92{bottom:770.359800px;}
.y15b{bottom:770.560800px;}
.y180{bottom:770.586300px;}
.ye5{bottom:776.133300px;}
.y46{bottom:778.099650px;}
.y1a4{bottom:779.927550px;}
.y3{bottom:785.670000px;}
.y17f{bottom:786.273300px;}
.y136{bottom:786.420750px;}
.y111{bottom:786.554400px;}
.y91{bottom:787.684500px;}
.ya3{bottom:788.381400px;}
.y6e{bottom:791.113650px;}
.ye4{bottom:792.633300px;}
.y27{bottom:792.945300px;}
.yc1{bottom:794.542650px;}
.y1a3{bottom:794.926050px;}
.y45{bottom:794.926200px;}
.y15a{bottom:802.755750px;}
.y135{bottom:803.956200px;}
.y90{bottom:805.009350px;}
.y26{bottom:806.445300px;}
.y110{bottom:806.513100px;}
.y6d{bottom:808.438500px;}
.y105{bottom:809.133300px;}
.yc0{bottom:811.377450px;}
.y44{bottom:811.752750px;}
.y2{bottom:812.670000px;}
.y159{bottom:818.448900px;}
.y17e{bottom:818.470800px;}
.y10f{bottom:819.113100px;}
.y25{bottom:819.945300px;}
.y134{bottom:821.491650px;}
.y104{bottom:825.633300px;}
.y6c{bottom:825.763200px;}
.y1a2{bottom:826.421550px;}
.ybf{bottom:828.212550px;}
.y43{bottom:828.579300px;}
.ye3{bottom:829.887300px;}
.y10e{bottom:831.713250px;}
.y24{bottom:833.445300px;}
.y158{bottom:834.141900px;}
.y17d{bottom:834.157800px;}
.y133{bottom:839.027100px;}
.y1a1{bottom:841.420050px;}
.ya2{bottom:842.133300px;}
.y6b{bottom:843.088050px;}
.y10d{bottom:844.313100px;}
.ybe{bottom:845.047500px;}
.y42{bottom:845.405700px;}
.ye2{bottom:846.387300px;}
.y23{bottom:846.945300px;}
.y157{bottom:849.835050px;}
.y17c{bottom:849.844800px;}
.y132{bottom:856.562550px;}
.ya1{bottom:858.633300px;}
.y6a{bottom:860.412750px;}
.y22{bottom:860.445300px;}
.ybd{bottom:861.882450px;}
.y41{bottom:862.232250px;}
.ye1{bottom:862.887300px;}
.y17b{bottom:865.531800px;}
.y10c{bottom:869.416950px;}
.y1a0{bottom:872.915550px;}
.y21{bottom:873.945300px;}
.y69{bottom:877.737600px;}
.ybc{bottom:878.717250px;}
.y40{bottom:879.058800px;}
.ye0{bottom:879.387300px;}
.y156{bottom:882.030000px;}
.y20{bottom:887.445300px;}
.y19f{bottom:887.914050px;}
.y131{bottom:894.851850px;}
.y68{bottom:895.062450px;}
.ybb{bottom:895.552350px;}
.ya0{bottom:895.887300px;}
.y155{bottom:897.723150px;}
.y17a{bottom:897.729300px;}
.y1f{bottom:900.945300px;}
.y19e{bottom:902.912550px;}
.y3f{bottom:912.387300px;}
.y10b{bottom:913.416300px;}
.y1e{bottom:914.445300px;}
.y1d{bottom:960.702450px;}
.he{height:29.400000px;}
.ha{height:34.608000px;}
.h9{height:37.548000px;}
.hd{height:37.800000px;}
.h10{height:38.934000px;}
.hb{height:42.000000px;}
.hf{height:42.912000px;}
.h3{height:45.594000px;}
.h7{height:48.276000px;}
.h11{height:48.277200px;}
.h2{height:50.958000px;}
.h8{height:51.613200px;}
.hc{height:53.640000px;}
.h5{height:59.004000px;}
.h6{height:63.082800px;}
.h4{height:67.200000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:102.047250px;}
.x21{left:108.247650px;}
.x6{left:110.551200px;}
.x5{left:127.559100px;}
.xf{left:128.626350px;}
.xd{left:130.516200px;}
.x9{left:132.820200px;}
.xe{left:134.296200px;}
.x8{left:136.063050px;}
.x15{left:155.151750px;}
.x20{left:160.218000px;}
.x1f{left:163.341750px;}
.x10{left:181.013100px;}
.xa{left:208.917450px;}
.x3{left:221.102400px;}
.x13{left:232.197900px;}
.x16{left:247.941750px;}
.x14{left:255.868950px;}
.xb{left:262.127100px;}
.xc{left:284.205750px;}
.x11{left:300.229350px;}
.x12{left:317.785650px;}
.x18{left:387.613500px;}
.x19{left:395.278500px;}
.x17{left:396.433350px;}
.x1a{left:398.428500px;}
.x7{left:456.848100px;}
.x1c{left:515.079150px;}
.x4{left:517.575300px;}
.x1d{left:519.594150px;}
.x1e{left:522.744150px;}
.x1b{left:527.049000px;}
.x1{left:589.586250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.840000pt;}
.v1{vertical-align:19.360000pt;}
.ls88{letter-spacing:-5.872000pt;}
.ls78{letter-spacing:-3.600000pt;}
.ls89{letter-spacing:-3.472000pt;}
.ls8a{letter-spacing:-2.400000pt;}
.ls77{letter-spacing:-1.824000pt;}
.ls46{letter-spacing:-1.333333pt;}
.ls7a{letter-spacing:-0.912000pt;}
.ls47{letter-spacing:-0.853333pt;}
.ls48{letter-spacing:-0.586667pt;}
.ls2e{letter-spacing:-0.266667pt;}
.ls53{letter-spacing:-0.213333pt;}
.ls45{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.106667pt;}
.ls3a{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.042667pt;}
.ls8d{letter-spacing:0.048000pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls6b{letter-spacing:0.096000pt;}
.ls29{letter-spacing:0.106667pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls6f{letter-spacing:0.192000pt;}
.ls43{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.226667pt;}
.ls56{letter-spacing:0.240000pt;}
.lsa{letter-spacing:0.253333pt;}
.ls6{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.266667pt;}
.ls6e{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.298667pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.336000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls30{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.384000pt;}
.ls4f{letter-spacing:0.400000pt;}
.lse{letter-spacing:0.426667pt;}
.ls61{letter-spacing:0.432000pt;}
.ls12{letter-spacing:0.469333pt;}
.ls2a{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.512000pt;}
.ls64{letter-spacing:0.528000pt;}
.ls1a{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.554667pt;}
.ls6d{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls69{letter-spacing:0.600000pt;}
.ls68{letter-spacing:0.624000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls5d{letter-spacing:0.672000pt;}
.ls14{letter-spacing:0.682667pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls6c{letter-spacing:0.720000pt;}
.ls87{letter-spacing:0.744000pt;}
.ls38{letter-spacing:0.746667pt;}
.ls5e{letter-spacing:0.768000pt;}
.ls33{letter-spacing:0.800000pt;}
.ls11{letter-spacing:0.810667pt;}
.ls63{letter-spacing:0.816000pt;}
.ls27{letter-spacing:0.853333pt;}
.ls60{letter-spacing:0.864000pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls7b{letter-spacing:0.912000pt;}
.ls72{letter-spacing:0.936000pt;}
.ls8{letter-spacing:0.938667pt;}
.ls21{letter-spacing:0.960000pt;}
.ls58{letter-spacing:0.986667pt;}
.ls7{letter-spacing:1.002667pt;}
.ls84{letter-spacing:1.008000pt;}
.ls1f{letter-spacing:1.013333pt;}
.ls5f{letter-spacing:1.056000pt;}
.ls3{letter-spacing:1.066667pt;}
.ls7f{letter-spacing:1.104000pt;}
.ls15{letter-spacing:1.109333pt;}
.ls44{letter-spacing:1.120000pt;}
.ls34{letter-spacing:1.146667pt;}
.ls5{letter-spacing:1.152000pt;}
.ls52{letter-spacing:1.173333pt;}
.ls8b{letter-spacing:1.176000pt;}
.ls20{letter-spacing:1.200000pt;}
.ls23{letter-spacing:1.226667pt;}
.ls7c{letter-spacing:1.248000pt;}
.ls31{letter-spacing:1.280000pt;}
.ls83{letter-spacing:1.296000pt;}
.ls4a{letter-spacing:1.333333pt;}
.ls82{letter-spacing:1.344000pt;}
.ls86{letter-spacing:1.368000pt;}
.ls35{letter-spacing:1.386667pt;}
.ls3d{letter-spacing:1.413333pt;}
.ls3f{letter-spacing:1.440000pt;}
.ls2{letter-spacing:1.450667pt;}
.ls74{letter-spacing:1.488000pt;}
.ls4e{letter-spacing:1.493333pt;}
.ls40{letter-spacing:1.520000pt;}
.ls85{letter-spacing:1.536000pt;}
.ls19{letter-spacing:1.546667pt;}
.ls13{letter-spacing:1.578667pt;}
.ls32{letter-spacing:1.600000pt;}
.ls3e{letter-spacing:1.653333pt;}
.ls7e{letter-spacing:1.680000pt;}
.ls26{letter-spacing:1.706667pt;}
.ls7d{letter-spacing:1.728000pt;}
.lsc{letter-spacing:1.749333pt;}
.ls37{letter-spacing:1.760000pt;}
.ls70{letter-spacing:1.776000pt;}
.ls3c{letter-spacing:1.786667pt;}
.ls18{letter-spacing:1.813333pt;}
.ls80{letter-spacing:1.824000pt;}
.ls28{letter-spacing:1.866667pt;}
.ls81{letter-spacing:1.872000pt;}
.ls5b{letter-spacing:1.920000pt;}
.ls36{letter-spacing:1.973333pt;}
.ls54{letter-spacing:2.053333pt;}
.ls5c{letter-spacing:2.064000pt;}
.ls51{letter-spacing:2.080000pt;}
.ls24{letter-spacing:2.133333pt;}
.ls5a{letter-spacing:2.186667pt;}
.ls79{letter-spacing:2.208000pt;}
.ls3b{letter-spacing:2.240000pt;}
.ls55{letter-spacing:2.346667pt;}
.ls76{letter-spacing:2.348800pt;}
.ls71{letter-spacing:2.368533pt;}
.ls41{letter-spacing:2.453333pt;}
.ls42{letter-spacing:2.506667pt;}
.ls49{letter-spacing:2.560000pt;}
.ls62{letter-spacing:2.592000pt;}
.ls25{letter-spacing:2.613333pt;}
.ls22{letter-spacing:2.666667pt;}
.ls6a{letter-spacing:2.688000pt;}
.ls8e{letter-spacing:2.736000pt;}
.ls59{letter-spacing:2.773333pt;}
.ls4d{letter-spacing:2.880000pt;}
.ls73{letter-spacing:2.928000pt;}
.ls90{letter-spacing:2.976000pt;}
.ls57{letter-spacing:3.040000pt;}
.ls8f{letter-spacing:3.072000pt;}
.ls4b{letter-spacing:3.200000pt;}
.ls66{letter-spacing:3.408000pt;}
.ls8c{letter-spacing:3.456000pt;}
.ls50{letter-spacing:3.520000pt;}
.ls67{letter-spacing:4.368000pt;}
.ls4c{letter-spacing:4.586667pt;}
.ls65{letter-spacing:7.584000pt;}
.ls1{letter-spacing:190.526400pt;}
.wsbe{word-spacing:-21.984000pt;}
.wsbf{word-spacing:-18.768000pt;}
.wsc4{word-spacing:-17.328000pt;}
.ws102{word-spacing:-17.136000pt;}
.wsc0{word-spacing:-17.088000pt;}
.wsaa{word-spacing:-16.464000pt;}
.wsc5{word-spacing:-15.888000pt;}
.wse0{word-spacing:-15.744000pt;}
.ws101{word-spacing:-15.600000pt;}
.wsc1{word-spacing:-14.976000pt;}
.wsdf{word-spacing:-14.880000pt;}
.wsc3{word-spacing:-14.592000pt;}
.ws1{word-spacing:-14.400000pt;}
.wsc2{word-spacing:-13.920000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws3{word-spacing:-11.200000pt;}
.ws2{word-spacing:-10.080000pt;}
.ws10b{word-spacing:-2.976000pt;}
.wsfb{word-spacing:-2.400000pt;}
.wsb0{word-spacing:-2.064000pt;}
.wsf4{word-spacing:-1.920000pt;}
.wsff{word-spacing:-1.344000pt;}
.wsf3{word-spacing:-1.296000pt;}
.wsef{word-spacing:-1.104000pt;}
.wse1{word-spacing:-0.912000pt;}
.wsbb{word-spacing:-0.864000pt;}
.wse7{word-spacing:-0.816000pt;}
.ws106{word-spacing:-0.720000pt;}
.wse3{word-spacing:-0.672000pt;}
.wsd0{word-spacing:-0.528000pt;}
.wsee{word-spacing:-0.480000pt;}
.ws4{word-spacing:-0.253333pt;}
.wsd1{word-spacing:-0.192000pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:0.128000pt;}
.ws25{word-spacing:0.160000pt;}
.ws90{word-spacing:0.266667pt;}
.ws1c{word-spacing:0.384000pt;}
.ws16{word-spacing:0.426667pt;}
.wsa8{word-spacing:0.533333pt;}
.ws9b{word-spacing:0.586667pt;}
.ws15{word-spacing:0.597333pt;}
.wsfa{word-spacing:0.720000pt;}
.ws63{word-spacing:0.746667pt;}
.ws1d{word-spacing:0.768000pt;}
.ws72{word-spacing:0.853333pt;}
.ws97{word-spacing:0.906667pt;}
.wsdb{word-spacing:0.912000pt;}
.ws85{word-spacing:0.960000pt;}
.wsa1{word-spacing:1.013333pt;}
.ws82{word-spacing:1.066667pt;}
.ws77{word-spacing:1.173333pt;}
.wsde{word-spacing:1.200000pt;}
.ws5d{word-spacing:1.280000pt;}
.ws5a{word-spacing:1.386667pt;}
.wsed{word-spacing:1.440000pt;}
.wsec{word-spacing:1.488000pt;}
.ws21{word-spacing:1.493333pt;}
.ws3b{word-spacing:1.600000pt;}
.wsa9{word-spacing:1.653333pt;}
.ws13{word-spacing:1.664000pt;}
.ws4d{word-spacing:1.706667pt;}
.ws23{word-spacing:1.760000pt;}
.ws5e{word-spacing:1.813333pt;}
.wscf{word-spacing:1.824000pt;}
.wsd{word-spacing:1.834667pt;}
.ws5f{word-spacing:1.866667pt;}
.wsd4{word-spacing:1.872000pt;}
.ws9{word-spacing:1.877333pt;}
.ws12{word-spacing:1.920000pt;}
.ws19{word-spacing:2.005333pt;}
.ws39{word-spacing:2.026667pt;}
.ws17{word-spacing:2.048000pt;}
.wscd{word-spacing:2.064000pt;}
.ws46{word-spacing:2.080000pt;}
.wsb9{word-spacing:2.112000pt;}
.wsf{word-spacing:2.133333pt;}
.wsb8{word-spacing:2.160000pt;}
.ws11{word-spacing:2.176000pt;}
.wsd3{word-spacing:2.208000pt;}
.ws88{word-spacing:2.240000pt;}
.wsca{word-spacing:2.256000pt;}
.ws71{word-spacing:2.293333pt;}
.ws65{word-spacing:2.346667pt;}
.wsc9{word-spacing:2.352000pt;}
.ws26{word-spacing:2.400000pt;}
.wsdd{word-spacing:2.448000pt;}
.ws47{word-spacing:2.453333pt;}
.wsb2{word-spacing:2.496000pt;}
.ws78{word-spacing:2.506667pt;}
.wsf6{word-spacing:2.517333pt;}
.wsf7{word-spacing:2.522667pt;}
.wse4{word-spacing:2.544000pt;}
.ws83{word-spacing:2.560000pt;}
.ws1a{word-spacing:2.602667pt;}
.ws33{word-spacing:2.613333pt;}
.ws22{word-spacing:2.666667pt;}
.wsce{word-spacing:2.688000pt;}
.ws36{word-spacing:2.720000pt;}
.ws105{word-spacing:2.736000pt;}
.ws60{word-spacing:2.773333pt;}
.ws100{word-spacing:2.784000pt;}
.ws43{word-spacing:2.826667pt;}
.ws34{word-spacing:2.880000pt;}
.ws49{word-spacing:2.933333pt;}
.wsb3{word-spacing:2.976000pt;}
.wse8{word-spacing:3.024000pt;}
.ws67{word-spacing:3.040000pt;}
.wsc6{word-spacing:3.072000pt;}
.ws20{word-spacing:3.093333pt;}
.ws14{word-spacing:3.114667pt;}
.wsbc{word-spacing:3.120000pt;}
.ws27{word-spacing:3.146667pt;}
.wsb6{word-spacing:3.168000pt;}
.ws38{word-spacing:3.200000pt;}
.wsbd{word-spacing:3.216000pt;}
.wsa6{word-spacing:3.253333pt;}
.ws69{word-spacing:3.360000pt;}
.wse2{word-spacing:3.408000pt;}
.ws4e{word-spacing:3.413333pt;}
.wsd7{word-spacing:3.504000pt;}
.ws24{word-spacing:3.520000pt;}
.ws8b{word-spacing:3.573333pt;}
.wsc{word-spacing:3.584000pt;}
.wsb7{word-spacing:3.600000pt;}
.ws9f{word-spacing:3.626667pt;}
.wsd6{word-spacing:3.648000pt;}
.wsf8{word-spacing:3.653333pt;}
.ws4c{word-spacing:3.680000pt;}
.wsa2{word-spacing:3.733333pt;}
.wsb{word-spacing:3.754667pt;}
.wsfc{word-spacing:3.792000pt;}
.wse9{word-spacing:3.840000pt;}
.wsb5{word-spacing:3.888000pt;}
.ws40{word-spacing:3.893333pt;}
.ws6{word-spacing:3.920000pt;}
.ws66{word-spacing:3.946667pt;}
.wsd2{word-spacing:3.984000pt;}
.ws3d{word-spacing:4.000000pt;}
.ws8{word-spacing:4.010667pt;}
.wsb4{word-spacing:4.032000pt;}
.ws44{word-spacing:4.053333pt;}
.ws53{word-spacing:4.106667pt;}
.ws1b{word-spacing:4.138667pt;}
.ws55{word-spacing:4.213333pt;}
.ws8c{word-spacing:4.266667pt;}
.ws108{word-spacing:4.272000pt;}
.ws31{word-spacing:4.320000pt;}
.ws103{word-spacing:4.368000pt;}
.wsa{word-spacing:4.394667pt;}
.ws107{word-spacing:4.416000pt;}
.ws35{word-spacing:4.426667pt;}
.wse5{word-spacing:4.464000pt;}
.ws76{word-spacing:4.533333pt;}
.ws5c{word-spacing:4.586667pt;}
.wse6{word-spacing:4.608000pt;}
.ws2b{word-spacing:4.640000pt;}
.ws4a{word-spacing:4.693333pt;}
.ws28{word-spacing:4.746667pt;}
.ws42{word-spacing:4.853333pt;}
.ws75{word-spacing:4.906667pt;}
.wsf9{word-spacing:4.917333pt;}
.wsf5{word-spacing:4.944000pt;}
.ws5b{word-spacing:4.960000pt;}
.ws8f{word-spacing:5.066667pt;}
.wsf2{word-spacing:5.088000pt;}
.ws8a{word-spacing:5.120000pt;}
.ws6f{word-spacing:5.173333pt;}
.ws8d{word-spacing:5.226667pt;}
.ws3e{word-spacing:5.280000pt;}
.ws7{word-spacing:5.376000pt;}
.ws86{word-spacing:5.386667pt;}
.wsd9{word-spacing:5.424000pt;}
.ws2a{word-spacing:5.493333pt;}
.wsfe{word-spacing:5.520000pt;}
.wsd8{word-spacing:5.568000pt;}
.ws2d{word-spacing:5.600000pt;}
.wsda{word-spacing:5.616000pt;}
.ws61{word-spacing:5.653333pt;}
.ws91{word-spacing:5.706667pt;}
.wsfd{word-spacing:5.760000pt;}
.ws3f{word-spacing:5.813333pt;}
.ws3a{word-spacing:5.866667pt;}
.ws18{word-spacing:5.973333pt;}
.ws6a{word-spacing:6.080000pt;}
.ws6c{word-spacing:6.133333pt;}
.ws89{word-spacing:6.186667pt;}
.ws45{word-spacing:6.240000pt;}
.ws51{word-spacing:6.293333pt;}
.wseb{word-spacing:6.336000pt;}
.wsa5{word-spacing:6.400000pt;}
.ws54{word-spacing:6.453333pt;}
.wsa0{word-spacing:6.506667pt;}
.ws6e{word-spacing:6.560000pt;}
.wsea{word-spacing:6.576000pt;}
.wse{word-spacing:6.613333pt;}
.wsd5{word-spacing:6.624000pt;}
.ws1f{word-spacing:6.666667pt;}
.ws99{word-spacing:6.720000pt;}
.ws68{word-spacing:6.773333pt;}
.ws104{word-spacing:6.816000pt;}
.ws73{word-spacing:6.826667pt;}
.wsf0{word-spacing:6.864000pt;}
.ws3c{word-spacing:6.933333pt;}
.ws96{word-spacing:6.986667pt;}
.ws41{word-spacing:7.093333pt;}
.wsf1{word-spacing:7.104000pt;}
.wsad{word-spacing:7.200000pt;}
.ws52{word-spacing:7.253333pt;}
.ws80{word-spacing:7.306667pt;}
.ws56{word-spacing:7.360000pt;}
.wsaf{word-spacing:7.413333pt;}
.ws30{word-spacing:7.466667pt;}
.ws4b{word-spacing:7.573333pt;}
.wsb1{word-spacing:7.632000pt;}
.ws50{word-spacing:7.680000pt;}
.ws29{word-spacing:7.733333pt;}
.ws70{word-spacing:7.786667pt;}
.ws9c{word-spacing:7.840000pt;}
.ws1e{word-spacing:7.893333pt;}
.ws81{word-spacing:7.946667pt;}
.ws32{word-spacing:8.000000pt;}
.wsdc{word-spacing:8.016000pt;}
.ws8e{word-spacing:8.053333pt;}
.ws57{word-spacing:8.106667pt;}
.wsae{word-spacing:8.160000pt;}
.wsac{word-spacing:8.266667pt;}
.ws48{word-spacing:8.426667pt;}
.ws9a{word-spacing:8.693333pt;}
.ws84{word-spacing:8.800000pt;}
.ws37{word-spacing:8.906667pt;}
.ws2e{word-spacing:8.960000pt;}
.wsab{word-spacing:9.120000pt;}
.ws4f{word-spacing:9.493333pt;}
.wsba{word-spacing:9.792000pt;}
.ws9d{word-spacing:9.866667pt;}
.wscb{word-spacing:9.984000pt;}
.ws109{word-spacing:10.224000pt;}
.ws58{word-spacing:10.293333pt;}
.ws79{word-spacing:10.346667pt;}
.ws59{word-spacing:10.453333pt;}
.ws62{word-spacing:10.666667pt;}
.ws2f{word-spacing:10.720000pt;}
.ws98{word-spacing:10.826667pt;}
.wsa7{word-spacing:10.880000pt;}
.wsa4{word-spacing:10.933333pt;}
.ws2c{word-spacing:11.040000pt;}
.wsa3{word-spacing:11.413333pt;}
.ws10a{word-spacing:11.568000pt;}
.ws6d{word-spacing:11.733333pt;}
.ws87{word-spacing:11.893333pt;}
.ws9e{word-spacing:12.426667pt;}
.wscc{word-spacing:12.672000pt;}
.wsc8{word-spacing:12.816000pt;}
.ws64{word-spacing:13.066667pt;}
.ws74{word-spacing:14.186667pt;}
.ws6b{word-spacing:17.226667pt;}
.wsc7{word-spacing:28.368000pt;}
.ws7e{word-spacing:100.318933pt;}
.ws7a{word-spacing:107.505067pt;}
.ws7c{word-spacing:111.518933pt;}
.ws7d{word-spacing:141.758400pt;}
.ws7b{word-spacing:161.918933pt;}
.ws7f{word-spacing:170.505600pt;}
.ws95{word-spacing:298.838400pt;}
.ws94{word-spacing:303.503467pt;}
.ws93{word-spacing:308.732267pt;}
.ws92{word-spacing:309.851733pt;}
._16{margin-left:-16.971733pt;}
._7{margin-left:-14.311467pt;}
._15{margin-left:-7.590400pt;}
._2{margin-left:-5.872533pt;}
._8{margin-left:-4.861333pt;}
._3{margin-left:-3.818667pt;}
._0{margin-left:-2.266667pt;}
._4{margin-left:-1.200000pt;}
._5{width:0.973333pt;}
._1{width:1.967467pt;}
._6{width:2.990933pt;}
._14{width:4.158933pt;}
._19{width:5.184000pt;}
._18{width:7.296533pt;}
._1a{width:9.489067pt;}
._13{width:10.404267pt;}
._17{width:12.485867pt;}
._12{width:45.810667pt;}
._e{width:128.318933pt;}
._9{width:138.772267pt;}
._d{width:140.264533pt;}
._a{width:148.838400pt;}
._11{width:154.733333pt;}
._c{width:167.518933pt;}
._f{width:172.371200pt;}
._b{width:194.025067pt;}
._10{width:363.611200pt;}
.fs6{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs4{font-size:41.066667pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:68.031467pt;}
.y67{bottom:105.826667pt;}
.y1c{bottom:105.826800pt;}
.y103{bottom:114.321733pt;}
.y124{bottom:115.019333pt;}
.y179{bottom:119.776267pt;}
.y154{bottom:120.080400pt;}
.y66{bottom:120.783600pt;}
.ydf{bottom:120.791067pt;}
.y8f{bottom:121.226533pt;}
.y19d{bottom:122.951867pt;}
.y1b{bottom:126.033600pt;}
.y102{bottom:128.988400pt;}
.y153{bottom:134.334133pt;}
.y130{bottom:135.740533pt;}
.yde{bottom:135.755600pt;}
.y19c{bottom:136.283867pt;}
.y8e{bottom:136.626400pt;}
.y1a{bottom:138.681467pt;}
.y101{bottom:143.655067pt;}
.y178{bottom:148.394000pt;}
.y152{bottom:148.587867pt;}
.y12f{bottom:150.697467pt;}
.ydd{bottom:150.719867pt;}
.y19{bottom:151.329200pt;}
.y8d{bottom:152.026133pt;}
.y65{bottom:154.188400pt;}
.y100{bottom:158.321733pt;}
.y177{bottom:162.343467pt;}
.y18{bottom:163.977067pt;}
.y19b{bottom:164.279867pt;}
.y12e{bottom:165.654400pt;}
.y8c{bottom:167.426000pt;}
.y64{bottom:169.145333pt;}
.yff{bottom:172.988400pt;}
.y17{bottom:176.624933pt;}
.y151{bottom:177.509867pt;}
.y12d{bottom:180.611200pt;}
.y8b{bottom:182.825867pt;}
.y63{bottom:184.102267pt;}
.ydc{bottom:184.132133pt;}
.y9f{bottom:185.873867pt;}
.yfe{bottom:187.655067pt;}
.y16{bottom:189.272667pt;}
.y19a{bottom:189.941600pt;}
.y176{bottom:190.961200pt;}
.y150{bottom:191.763600pt;}
.y8a{bottom:198.225600pt;}
.y62{bottom:199.059067pt;}
.ydb{bottom:199.096533pt;}
.y9e{bottom:201.273733pt;}
.y15{bottom:201.920533pt;}
.yfd{bottom:202.321733pt;}
.y199{bottom:203.885600pt;}
.y175{bottom:204.910667pt;}
.y14f{bottom:206.017333pt;}
.y89{bottom:213.625467pt;}
.y61{bottom:214.016000pt;}
.yda{bottom:214.060933pt;}
.y14{bottom:214.568267pt;}
.y9d{bottom:216.673467pt;}
.yfc{bottom:216.988400pt;}
.y174{bottom:218.860133pt;}
.y14e{bottom:220.271067pt;}
.y13{bottom:227.216133pt;}
.y60{bottom:228.972933pt;}
.y88{bottom:229.025333pt;}
.yfb{bottom:231.655067pt;}
.y9c{bottom:232.073333pt;}
.y198{bottom:232.505600pt;}
.y173{bottom:232.809467pt;}
.y12{bottom:239.863867pt;}
.y5f{bottom:243.929867pt;}
.yd9{bottom:243.989733pt;}
.y87{bottom:244.425067pt;}
.yfa{bottom:246.321733pt;}
.y197{bottom:246.449600pt;}
.y9b{bottom:247.473200pt;}
.y14d{bottom:249.193200pt;}
.y5e{bottom:258.886800pt;}
.yd8{bottom:258.954133pt;}
.y86{bottom:259.824933pt;}
.y196{bottom:260.393600pt;}
.yf9{bottom:260.988400pt;}
.y172{bottom:261.427333pt;}
.y9a{bottom:262.872933pt;}
.y14c{bottom:263.446800pt;}
.y5d{bottom:273.843733pt;}
.yd7{bottom:273.918533pt;}
.y171{bottom:275.376800pt;}
.yf8{bottom:275.655067pt;}
.y14b{bottom:277.700667pt;}
.y99{bottom:278.272800pt;}
.y5c{bottom:288.800533pt;}
.yd6{bottom:288.882933pt;}
.y195{bottom:289.013600pt;}
.y170{bottom:289.326267pt;}
.yba{bottom:290.773200pt;}
.y85{bottom:293.672667pt;}
.y194{bottom:302.957600pt;}
.y12c{bottom:303.757467pt;}
.yd5{bottom:303.847333pt;}
.yb9{bottom:304.106533pt;}
.y14a{bottom:306.622667pt;}
.yf7{bottom:308.769600pt;}
.y84{bottom:309.072400pt;}
.y193{bottom:317.297333pt;}
.y16f{bottom:317.944000pt;}
.y12b{bottom:318.714400pt;}
.y149{bottom:320.876400pt;}
.y5b{bottom:322.205333pt;}
.yf6{bottom:323.436267pt;}
.y83{bottom:324.472267pt;}
.y148{bottom:335.130133pt;}
.y5a{bottom:337.162267pt;}
.yd4{bottom:337.259600pt;}
.yf5{bottom:338.102933pt;}
.y82{bottom:339.872133pt;}
.yb8{bottom:341.219333pt;}
.y10a{bottom:345.885867pt;}
.y192{bottom:345.917600pt;}
.y16e{bottom:346.561733pt;}
.y3e{bottom:351.926933pt;}
.y59{bottom:352.119200pt;}
.yd3{bottom:352.224000pt;}
.yf4{bottom:352.769600pt;}
.y81{bottom:355.271867pt;}
.yb7{bottom:355.886000pt;}
.y98{bottom:358.320000pt;}
.y109{bottom:359.219200pt;}
.y191{bottom:359.861600pt;}
.y16d{bottom:360.511200pt;}
.y3d{bottom:363.926933pt;}
.y147{bottom:364.052133pt;}
.y58{bottom:367.076133pt;}
.yd2{bottom:367.188400pt;}
.yb6{bottom:370.552667pt;}
.y80{bottom:370.671733pt;}
.y123{bottom:371.029867pt;}
.y97{bottom:373.719733pt;}
.y190{bottom:373.805600pt;}
.y16c{bottom:374.460667pt;}
.y57{bottom:382.033067pt;}
.yd1{bottom:382.152800pt;}
.y3c{bottom:383.485867pt;}
.yb5{bottom:385.219333pt;}
.yf3{bottom:385.884133pt;}
.y7f{bottom:386.071467pt;}
.y96{bottom:389.119600pt;}
.y3b{bottom:395.485867pt;}
.y56{bottom:396.990000pt;}
.yd0{bottom:397.117200pt;}
.yb4{bottom:399.886000pt;}
.yf2{bottom:400.550800pt;}
.y18f{bottom:402.425600pt;}
.y16b{bottom:403.078400pt;}
.y95{bottom:404.519467pt;}
.y108{bottom:406.116800pt;}
.y3a{bottom:407.485867pt;}
.y122{bottom:408.142667pt;}
.y55{bottom:411.946800pt;}
.ycf{bottom:412.081600pt;}
.y146{bottom:412.752133pt;}
.yb3{bottom:414.552667pt;}
.yf1{bottom:415.217467pt;}
.y18e{bottom:416.369600pt;}
.y16a{bottom:417.027867pt;}
.y39{bottom:419.485867pt;}
.y7e{bottom:419.919200pt;}
.y121{bottom:422.809333pt;}
.y54{bottom:426.903733pt;}
.y11{bottom:427.034800pt;}
.y145{bottom:428.339067pt;}
.yb2{bottom:429.219333pt;}
.y169{bottom:430.977333pt;}
.y38{bottom:431.485867pt;}
.y7d{bottom:435.319067pt;}
.y120{bottom:437.476000pt;}
.y10{bottom:441.701467pt;}
.yce{bottom:441.714267pt;}
.y12a{bottom:441.860667pt;}
.y37{bottom:443.485867pt;}
.y144{bottom:443.926133pt;}
.y168{bottom:444.926800pt;}
.y18d{bottom:444.989600pt;}
.y7c{bottom:450.718933pt;}
.y11f{bottom:452.142667pt;}
.y36{bottom:455.485867pt;}
.y129{bottom:456.817600pt;}
.y167{bottom:458.876133pt;}
.y18c{bottom:458.933600pt;}
.yf0{bottom:459.219200pt;}
.y143{bottom:459.513200pt;}
.y53{bottom:460.308533pt;}
.yb1{bottom:462.333867pt;}
.y7b{bottom:466.118667pt;}
.y11e{bottom:466.809333pt;}
.y35{bottom:467.485867pt;}
.yf{bottom:468.368133pt;}
.y128{bottom:471.774533pt;}
.y166{bottom:472.825600pt;}
.y18b{bottom:472.877600pt;}
.y52{bottom:475.265467pt;}
.yb0{bottom:477.000533pt;}
.y34{bottom:479.485867pt;}
.y11d{bottom:481.476133pt;}
.y7a{bottom:481.518533pt;}
.ye{bottom:483.034800pt;}
.yef{bottom:485.853733pt;}
.y127{bottom:486.731467pt;}
.y18a{bottom:486.821600pt;}
.ycd{bottom:489.791600pt;}
.y51{bottom:490.222400pt;}
.y33{bottom:491.485867pt;}
.yaf{bottom:491.667200pt;}
.y142{bottom:493.548133pt;}
.y11c{bottom:496.142800pt;}
.y79{bottom:496.918400pt;}
.yd{bottom:497.701467pt;}
.y165{bottom:501.443467pt;}
.yee{bottom:504.084133pt;}
.ycc{bottom:504.756000pt;}
.y50{bottom:505.179333pt;}
.yae{bottom:506.333867pt;}
.y141{bottom:509.135200pt;}
.y78{bottom:512.318133pt;}
.yc{bottom:512.368133pt;}
.y164{bottom:515.392800pt;}
.y189{bottom:515.441600pt;}
.y1ae{bottom:515.956933pt;}
.ycb{bottom:519.720400pt;}
.y4f{bottom:520.136133pt;}
.yad{bottom:521.000533pt;}
.yed{bottom:522.314533pt;}
.y140{bottom:524.722267pt;}
.yb{bottom:527.034800pt;}
.y77{bottom:527.718000pt;}
.y11b{bottom:529.257200pt;}
.y1ad{bottom:529.288933pt;}
.y163{bottom:529.342267pt;}
.y188{bottom:529.385600pt;}
.y32{bottom:530.604000pt;}
.y94{bottom:530.766000pt;}
.yca{bottom:534.684800pt;}
.y4e{bottom:535.093067pt;}
.yac{bottom:535.667200pt;}
.y13f{bottom:540.309333pt;}
.yec{bottom:540.544933pt;}
.ya{bottom:541.701467pt;}
.y1ac{bottom:542.620933pt;}
.y187{bottom:543.329600pt;}
.y11a{bottom:543.923867pt;}
.y93{bottom:546.165867pt;}
.y4d{bottom:550.050000pt;}
.y31{bottom:550.163067pt;}
.yab{bottom:550.333867pt;}
.y13e{bottom:555.896400pt;}
.y162{bottom:557.960133pt;}
.y119{bottom:558.590533pt;}
.y9{bottom:559.034800pt;}
.y76{bottom:561.565733pt;}
.y30{bottom:562.163067pt;}
.yaa{bottom:565.000533pt;}
.y126{bottom:565.006933pt;}
.yc9{bottom:568.097067pt;}
.y1ab{bottom:570.616933pt;}
.y13d{bottom:571.483333pt;}
.y161{bottom:571.909467pt;}
.y186{bottom:571.949600pt;}
.y118{bottom:573.257200pt;}
.y2f{bottom:574.163067pt;}
.y8{bottom:576.368133pt;}
.y75{bottom:576.965467pt;}
.yeb{bottom:579.450133pt;}
.yc8{bottom:583.061467pt;}
.y4c{bottom:583.454800pt;}
.y1aa{bottom:583.948933pt;}
.y185{bottom:585.893600pt;}
.y2e{bottom:586.163067pt;}
.y13c{bottom:587.070533pt;}
.y117{bottom:587.923867pt;}
.y74{bottom:592.365333pt;}
.y7{bottom:593.701467pt;}
.y1a9{bottom:597.280933pt;}
.yc7{bottom:598.025867pt;}
.ya9{bottom:598.115067pt;}
.y2d{bottom:598.163067pt;}
.y4b{bottom:598.411733pt;}
.y184{bottom:599.837600pt;}
.y160{bottom:600.527333pt;}
.y116{bottom:602.590533pt;}
.y13b{bottom:602.657600pt;}
.y73{bottom:607.765200pt;}
.y2c{bottom:610.163067pt;}
.ya8{bottom:612.781733pt;}
.yc6{bottom:612.990267pt;}
.y4a{bottom:613.368667pt;}
.y15f{bottom:614.476667pt;}
.yea{bottom:616.562933pt;}
.y115{bottom:617.257200pt;}
.y13a{bottom:618.244533pt;}
.y2b{bottom:622.163067pt;}
.y72{bottom:623.164933pt;}
.y1a8{bottom:625.276933pt;}
.ya7{bottom:627.448400pt;}
.yc5{bottom:627.954667pt;}
.y49{bottom:628.325467pt;}
.y6{bottom:628.368133pt;}
.y15e{bottom:628.426133pt;}
.y183{bottom:628.457600pt;}
.ye9{bottom:631.229600pt;}
.y114{bottom:631.923867pt;}
.y139{bottom:633.831600pt;}
.y2a{bottom:634.163067pt;}
.y71{bottom:638.564800pt;}
.y1a7{bottom:638.608933pt;}
.ya6{bottom:642.115067pt;}
.y15d{bottom:642.375600pt;}
.y182{bottom:642.401600pt;}
.yc4{bottom:642.919067pt;}
.y48{bottom:643.282533pt;}
.y5{bottom:645.701467pt;}
.ye8{bottom:645.896267pt;}
.y29{bottom:646.163067pt;}
.y113{bottom:646.590533pt;}
.y138{bottom:649.418667pt;}
.y70{bottom:653.964533pt;}
.y107{bottom:654.116800pt;}
.y181{bottom:656.345600pt;}
.ya5{bottom:656.781733pt;}
.yc3{bottom:657.883467pt;}
.y47{bottom:658.239333pt;}
.ye7{bottom:660.562933pt;}
.y28{bottom:665.722133pt;}
.y1a6{bottom:666.604933pt;}
.y106{bottom:667.450133pt;}
.y6f{bottom:669.364400pt;}
.y15c{bottom:670.993467pt;}
.ya4{bottom:671.448400pt;}
.yc2{bottom:672.847867pt;}
.y125{bottom:673.196267pt;}
.y4{bottom:674.373333pt;}
.ye6{bottom:675.229600pt;}
.y1a5{bottom:679.936933pt;}
.y112{bottom:680.929067pt;}
.y137{bottom:683.453600pt;}
.y92{bottom:684.764267pt;}
.y15b{bottom:684.942933pt;}
.y180{bottom:684.965600pt;}
.ye5{bottom:689.896267pt;}
.y46{bottom:691.644133pt;}
.y1a4{bottom:693.268933pt;}
.y3{bottom:698.373333pt;}
.y17f{bottom:698.909600pt;}
.y136{bottom:699.040667pt;}
.y111{bottom:699.159467pt;}
.y91{bottom:700.164000pt;}
.ya3{bottom:700.783467pt;}
.y6e{bottom:703.212133pt;}
.ye4{bottom:704.562933pt;}
.y27{bottom:704.840267pt;}
.yc1{bottom:706.260133pt;}
.y1a3{bottom:706.600933pt;}
.y45{bottom:706.601067pt;}
.y15a{bottom:713.560667pt;}
.y135{bottom:714.627733pt;}
.y90{bottom:715.563867pt;}
.y26{bottom:716.840267pt;}
.y110{bottom:716.900533pt;}
.y6d{bottom:718.612000pt;}
.y105{bottom:719.229600pt;}
.yc0{bottom:721.224400pt;}
.y44{bottom:721.558000pt;}
.y2{bottom:722.373333pt;}
.y159{bottom:727.510133pt;}
.y17e{bottom:727.529600pt;}
.y10f{bottom:728.100533pt;}
.y25{bottom:728.840267pt;}
.y134{bottom:730.214800pt;}
.y104{bottom:733.896267pt;}
.y6c{bottom:734.011733pt;}
.y1a2{bottom:734.596933pt;}
.ybf{bottom:736.188933pt;}
.y43{bottom:736.514933pt;}
.ye3{bottom:737.677600pt;}
.y10e{bottom:739.300667pt;}
.y24{bottom:740.840267pt;}
.y158{bottom:741.459467pt;}
.y17d{bottom:741.473600pt;}
.y133{bottom:745.801867pt;}
.y1a1{bottom:747.928933pt;}
.ya2{bottom:748.562933pt;}
.y6b{bottom:749.411600pt;}
.y10d{bottom:750.500533pt;}
.ybe{bottom:751.153333pt;}
.y42{bottom:751.471733pt;}
.ye2{bottom:752.344267pt;}
.y23{bottom:752.840267pt;}
.y157{bottom:755.408933pt;}
.y17c{bottom:755.417600pt;}
.y132{bottom:761.388933pt;}
.ya1{bottom:763.229600pt;}
.y6a{bottom:764.811333pt;}
.y22{bottom:764.840267pt;}
.ybd{bottom:766.117733pt;}
.y41{bottom:766.428667pt;}
.ye1{bottom:767.010933pt;}
.y17b{bottom:769.361600pt;}
.y10c{bottom:772.815067pt;}
.y1a0{bottom:775.924933pt;}
.y21{bottom:776.840267pt;}
.y69{bottom:780.211200pt;}
.ybc{bottom:781.082000pt;}
.y40{bottom:781.385600pt;}
.ye0{bottom:781.677600pt;}
.y156{bottom:784.026667pt;}
.y20{bottom:788.840267pt;}
.y19f{bottom:789.256933pt;}
.y131{bottom:795.423867pt;}
.y68{bottom:795.611067pt;}
.ybb{bottom:796.046533pt;}
.ya0{bottom:796.344267pt;}
.y155{bottom:797.976133pt;}
.y17a{bottom:797.981600pt;}
.y1f{bottom:800.840267pt;}
.y19e{bottom:802.588933pt;}
.y3f{bottom:811.010933pt;}
.y10b{bottom:811.925600pt;}
.y1e{bottom:812.840267pt;}
.y1d{bottom:853.957733pt;}
.he{height:26.133333pt;}
.ha{height:30.762667pt;}
.h9{height:33.376000pt;}
.hd{height:33.600000pt;}
.h10{height:34.608000pt;}
.hb{height:37.333333pt;}
.hf{height:38.144000pt;}
.h3{height:40.528000pt;}
.h7{height:42.912000pt;}
.h11{height:42.913067pt;}
.h2{height:45.296000pt;}
.h8{height:45.878400pt;}
.hc{height:47.680000pt;}
.h5{height:52.448000pt;}
.h6{height:56.073600pt;}
.h4{height:59.733333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:90.708667pt;}
.x21{left:96.220133pt;}
.x6{left:98.267733pt;}
.x5{left:113.385867pt;}
.xf{left:114.334533pt;}
.xd{left:116.014400pt;}
.x9{left:118.062400pt;}
.xe{left:119.374400pt;}
.x8{left:120.944933pt;}
.x15{left:137.912667pt;}
.x20{left:142.416000pt;}
.x1f{left:145.192667pt;}
.x10{left:160.900533pt;}
.xa{left:185.704400pt;}
.x3{left:196.535467pt;}
.x13{left:206.398133pt;}
.x16{left:220.392667pt;}
.x14{left:227.439067pt;}
.xb{left:233.001867pt;}
.xc{left:252.627333pt;}
.x11{left:266.870533pt;}
.x12{left:282.476133pt;}
.x18{left:344.545333pt;}
.x19{left:351.358667pt;}
.x17{left:352.385200pt;}
.x1a{left:354.158667pt;}
.x7{left:406.087200pt;}
.x1c{left:457.848133pt;}
.x4{left:460.066933pt;}
.x1d{left:461.861467pt;}
.x1e{left:464.661467pt;}
.x1b{left:468.488000pt;}
.x1{left:524.076667pt;}
}




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