
    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_44f8fc10e73b8e72d45ba5ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_69e58b6b3eee1da105712cbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.281250;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_a2797e17417374857da4d88e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_ba0a963112a37ff6e916b906.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_0c535e978f35ed9ede1c9d96.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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_1049b05ef0a3293fd772f5cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.592000;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-66.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.720000px;}
.lsf{letter-spacing:-7.524000px;}
.ls1c{letter-spacing:-4.290000px;}
.ls24{letter-spacing:-3.888000px;}
.ls82{letter-spacing:-3.360000px;}
.ls81{letter-spacing:-3.024000px;}
.ls2a{letter-spacing:-2.916000px;}
.ls83{letter-spacing:-2.688000px;}
.ls84{letter-spacing:-2.640000px;}
.ls63{letter-spacing:-2.178000px;}
.ls28{letter-spacing:-1.944000px;}
.ls20{letter-spacing:-1.907400px;}
.ls5f{letter-spacing:-1.848000px;}
.ls27{letter-spacing:-1.800000px;}
.ls60{letter-spacing:-1.782000px;}
.ls16{letter-spacing:-1.710000px;}
.ls1e{letter-spacing:-1.650000px;}
.lsd{letter-spacing:-1.590300px;}
.ls1f{letter-spacing:-1.584000px;}
.ls5b{letter-spacing:-1.518000px;}
.ls6c{letter-spacing:-1.380000px;}
.ls2d{letter-spacing:-1.368000px;}
.ls2c{letter-spacing:-1.350000px;}
.ls40{letter-spacing:-1.254000px;}
.ls66{letter-spacing:-1.188000px;}
.ls76{letter-spacing:-1.140000px;}
.ls47{letter-spacing:-1.134000px;}
.ls75{letter-spacing:-1.125000px;}
.ls5d{letter-spacing:-1.122000px;}
.ls12{letter-spacing:-1.094400px;}
.ls3d{letter-spacing:-1.056000px;}
.ls11{letter-spacing:-1.026000px;}
.ls3c{letter-spacing:-0.990000px;}
.ls13{letter-spacing:-0.980400px;}
.ls23{letter-spacing:-0.960000px;}
.ls5a{letter-spacing:-0.924000px;}
.ls26{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.858000px;}
.ls1a{letter-spacing:-0.844800px;}
.ls18{letter-spacing:-0.792000px;}
.ls1{letter-spacing:-0.768000px;}
.ls2b{letter-spacing:-0.756000px;}
.ls17{letter-spacing:-0.741000px;}
.ls1d{letter-spacing:-0.726000px;}
.ls73{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.684000px;}
.ls42{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.632700px;}
.lse{letter-spacing:-0.627000px;}
.ls41{letter-spacing:-0.594000px;}
.ls46{letter-spacing:-0.540000px;}
.ls57{letter-spacing:-0.528000px;}
.ls15{letter-spacing:-0.518700px;}
.ls78{letter-spacing:-0.495000px;}
.ls45{letter-spacing:-0.486000px;}
.ls79{letter-spacing:-0.480000px;}
.ls51{letter-spacing:-0.462000px;}
.ls5e{letter-spacing:-0.420000px;}
.ls52{letter-spacing:-0.396000px;}
.ls22{letter-spacing:-0.336000px;}
.ls50{letter-spacing:-0.330000px;}
.ls61{letter-spacing:-0.288000px;}
.ls3f{letter-spacing:-0.264000px;}
.ls80{letter-spacing:-0.240000px;}
.ls43{letter-spacing:-0.198000px;}
.ls1b{letter-spacing:-0.132000px;}
.ls10{letter-spacing:-0.114000px;}
.ls25{letter-spacing:-0.072000px;}
.ls3e{letter-spacing:-0.066000px;}
.ls7c{letter-spacing:-0.054000px;}
.ls44{letter-spacing:-0.048000px;}
.ls64{letter-spacing:-0.042000px;}
.ls7d{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.057000px;}
.ls4d{letter-spacing:0.066000px;}
.ls36{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.114000px;}
.ls4f{letter-spacing:0.132000px;}
.ls6d{letter-spacing:0.135000px;}
.ls69{letter-spacing:0.180000px;}
.ls48{letter-spacing:0.198000px;}
.ls62{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.228000px;}
.ls4b{letter-spacing:0.264000px;}
.ls6f{letter-spacing:0.300000px;}
.ls77{letter-spacing:0.315000px;}
.ls4c{letter-spacing:0.330000px;}
.ls5c{letter-spacing:0.336000px;}
.ls6b{letter-spacing:0.360000px;}
.ls4a{letter-spacing:0.396000px;}
.ls49{letter-spacing:0.462000px;}
.ls9{letter-spacing:0.528000px;}
.ls37{letter-spacing:0.594000px;}
.ls65{letter-spacing:0.660000px;}
.ls58{letter-spacing:0.726000px;}
.ls3a{letter-spacing:0.756000px;}
.ls55{letter-spacing:0.792000px;}
.ls39{letter-spacing:0.810000px;}
.ls6a{letter-spacing:0.840000px;}
.ls5{letter-spacing:0.855000px;}
.ls2f{letter-spacing:0.858000px;}
.ls30{letter-spacing:0.924000px;}
.ls21{letter-spacing:0.990000px;}
.ls4e{letter-spacing:1.056000px;}
.lsa{letter-spacing:1.122000px;}
.ls74{letter-spacing:1.125000px;}
.ls6e{letter-spacing:1.140000px;}
.ls72{letter-spacing:1.200000px;}
.ls56{letter-spacing:1.254000px;}
.ls8{letter-spacing:1.386000px;}
.ls7{letter-spacing:1.425000px;}
.ls71{letter-spacing:1.485000px;}
.ls70{letter-spacing:1.500000px;}
.ls2e{letter-spacing:1.650000px;}
.ls68{letter-spacing:1.848000px;}
.ls4{letter-spacing:2.057700px;}
.ls7e{letter-spacing:4.512000px;}
.ls7f{letter-spacing:4.560000px;}
.ls38{letter-spacing:11.610000px;}
.ls7b{letter-spacing:12.000000px;}
.ls7a{letter-spacing:12.048000px;}
.ls3b{letter-spacing:13.500000px;}
.ls59{letter-spacing:14.586000px;}
.ls31{letter-spacing:15.510000px;}
.ls54{letter-spacing:16.104000px;}
.ls32{letter-spacing:16.500000px;}
.ls34{letter-spacing:16.818000px;}
.ls67{letter-spacing:18.150000px;}
.ls53{letter-spacing:18.546000px;}
.ls33{letter-spacing:24.024000px;}
.lsb{letter-spacing:47.952000px;}
.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;}
}
.ws19{word-spacing:-23.040000px;}
.ws34{word-spacing:-18.480000px;}
.ws1b{word-spacing:-17.928000px;}
.ws63{word-spacing:-17.886000px;}
.ws80{word-spacing:-17.424000px;}
.ws36{word-spacing:-17.358000px;}
.wsaa{word-spacing:-17.226000px;}
.wsab{word-spacing:-17.160000px;}
.ws1c{word-spacing:-17.136000px;}
.ws70{word-spacing:-17.094000px;}
.ws6f{word-spacing:-16.896000px;}
.ws60{word-spacing:-16.830000px;}
.ws76{word-spacing:-16.764000px;}
.ws8b{word-spacing:-16.698000px;}
.ws64{word-spacing:-16.632000px;}
.ws62{word-spacing:-16.566000px;}
.ws11{word-spacing:-16.500000px;}
.ws35{word-spacing:-16.434000px;}
.ws3a{word-spacing:-16.368000px;}
.wsae{word-spacing:-16.302000px;}
.wsad{word-spacing:-16.236000px;}
.ws1d{word-spacing:-16.200000px;}
.ws3c{word-spacing:-16.170000px;}
.wsbf{word-spacing:-16.140000px;}
.ws6e{word-spacing:-16.104000px;}
.ws10{word-spacing:-16.038000px;}
.ws7a{word-spacing:-15.972000px;}
.wsb3{word-spacing:-15.840000px;}
.ws79{word-spacing:-15.774000px;}
.ws5f{word-spacing:-15.708000px;}
.ws13{word-spacing:-15.655200px;}
.ws12{word-spacing:-15.642000px;}
.ws38{word-spacing:-15.576000px;}
.ws77{word-spacing:-15.510000px;}
.ws8f{word-spacing:-15.444000px;}
.wsb6{word-spacing:-15.360000px;}
.ws71{word-spacing:-15.300000px;}
.ws39{word-spacing:-15.246000px;}
.wsbb{word-spacing:-15.180000px;}
.ws7f{word-spacing:-15.000000px;}
.wsa9{word-spacing:-14.982000px;}
.ws16{word-spacing:-14.916000px;}
.ws86{word-spacing:-14.880000px;}
.ws15{word-spacing:-14.850000px;}
.ws17{word-spacing:-14.592600px;}
.ws25{word-spacing:-14.535000px;}
.wsc4{word-spacing:-14.520000px;}
.ws6{word-spacing:-14.478000px;}
.ws45{word-spacing:-14.256000px;}
.wse{word-spacing:-14.250000px;}
.ws1a{word-spacing:-14.112000px;}
.wsbd{word-spacing:-14.040000px;}
.ws2{word-spacing:-13.851000px;}
.ws40{word-spacing:-13.770000px;}
.wsc{word-spacing:-13.731300px;}
.ws91{word-spacing:-13.716000px;}
.ws5{word-spacing:-13.623000px;}
.wsb7{word-spacing:-13.620000px;}
.wsb{word-spacing:-13.617300px;}
.ws46{word-spacing:-13.608000px;}
.ws4{word-spacing:-13.566000px;}
.wsf{word-spacing:-13.509000px;}
.ws41{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.269600px;}
.ws42{word-spacing:-13.230000px;}
.ws8{word-spacing:-13.224000px;}
.ws24{word-spacing:-13.167000px;}
.ws9{word-spacing:-13.155600px;}
.ws43{word-spacing:-12.960000px;}
.ws20{word-spacing:-12.798000px;}
.ws22{word-spacing:-12.744000px;}
.wsc2{word-spacing:-12.735000px;}
.ws3{word-spacing:-12.659700px;}
.wsd{word-spacing:-12.540000px;}
.ws1f{word-spacing:-12.474000px;}
.wsbe{word-spacing:-12.375000px;}
.ws7b{word-spacing:-12.336000px;}
.wsd4{word-spacing:-12.240000px;}
.ws14{word-spacing:-12.210000px;}
.ws23{word-spacing:-12.150000px;}
.wsb2{word-spacing:-12.105000px;}
.ws90{word-spacing:-12.000000px;}
.ws3e{word-spacing:-11.952000px;}
.wsd5{word-spacing:-11.760000px;}
.ws88{word-spacing:-11.712000px;}
.ws18{word-spacing:-11.664000px;}
.wsb5{word-spacing:-11.610000px;}
.wsc1{word-spacing:-11.565000px;}
.ws1e{word-spacing:-11.556000px;}
.ws3b{word-spacing:-11.550000px;}
.wsb1{word-spacing:-11.430000px;}
.wsba{word-spacing:-11.385000px;}
.wsb4{word-spacing:-11.250000px;}
.wsc3{word-spacing:-10.755000px;}
.ws21{word-spacing:-10.584000px;}
.wsbc{word-spacing:-10.530000px;}
.ws96{word-spacing:-10.500000px;}
.ws9d{word-spacing:-10.458000px;}
.wsc0{word-spacing:-10.125000px;}
.wsd0{word-spacing:-8.964000px;}
.ws1{word-spacing:-7.872000px;}
.ws83{word-spacing:-7.680000px;}
.ws7{word-spacing:-6.726000px;}
.ws4d{word-spacing:-0.858000px;}
.ws6d{word-spacing:-0.792000px;}
.ws31{word-spacing:-0.726000px;}
.ws50{word-spacing:-0.660000px;}
.ws57{word-spacing:-0.648000px;}
.ws29{word-spacing:-0.627000px;}
.ws4c{word-spacing:-0.594000px;}
.ws66{word-spacing:-0.528000px;}
.ws51{word-spacing:-0.462000px;}
.ws52{word-spacing:-0.396000px;}
.ws59{word-spacing:-0.378000px;}
.ws7c{word-spacing:-0.330000px;}
.ws74{word-spacing:-0.264000px;}
.wscc{word-spacing:-0.240000px;}
.ws56{word-spacing:-0.216000px;}
.ws2f{word-spacing:-0.198000px;}
.wsb8{word-spacing:-0.180000px;}
.ws55{word-spacing:-0.162000px;}
.ws47{word-spacing:-0.132000px;}
.ws32{word-spacing:-0.066000px;}
.wsc6{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws93{word-spacing:0.054000px;}
.ws7d{word-spacing:0.066000px;}
.ws48{word-spacing:0.132000px;}
.wsca{word-spacing:0.180000px;}
.ws49{word-spacing:0.198000px;}
.ws30{word-spacing:0.264000px;}
.wscd{word-spacing:0.300000px;}
.ws4e{word-spacing:0.330000px;}
.wsc7{word-spacing:0.360000px;}
.ws5b{word-spacing:0.378000px;}
.ws4f{word-spacing:0.396000px;}
.wsc8{word-spacing:0.420000px;}
.wsa7{word-spacing:0.462000px;}
.ws5a{word-spacing:0.486000px;}
.ws6c{word-spacing:0.528000px;}
.ws5e{word-spacing:0.540000px;}
.ws27{word-spacing:0.570000px;}
.ws33{word-spacing:0.594000px;}
.ws89{word-spacing:0.660000px;}
.ws58{word-spacing:0.702000px;}
.ws4b{word-spacing:0.726000px;}
.ws65{word-spacing:0.792000px;}
.ws44{word-spacing:0.810000px;}
.ws8a{word-spacing:0.858000px;}
.ws78{word-spacing:0.924000px;}
.ws2b{word-spacing:0.969000px;}
.ws75{word-spacing:0.990000px;}
.ws73{word-spacing:1.056000px;}
.ws92{word-spacing:1.080000px;}
.ws72{word-spacing:1.122000px;}
.ws28{word-spacing:1.140000px;}
.ws54{word-spacing:1.188000px;}
.ws2c{word-spacing:1.197000px;}
.wsc9{word-spacing:1.200000px;}
.ws53{word-spacing:1.242000px;}
.ws2e{word-spacing:1.254000px;}
.ws5c{word-spacing:1.296000px;}
.ws26{word-spacing:1.311000px;}
.ws68{word-spacing:1.320000px;}
.ws5d{word-spacing:1.350000px;}
.ws2a{word-spacing:1.368000px;}
.ws67{word-spacing:1.386000px;}
.wsc5{word-spacing:1.440000px;}
.ws6a{word-spacing:1.452000px;}
.ws82{word-spacing:1.500000px;}
.ws69{word-spacing:1.518000px;}
.ws6b{word-spacing:1.584000px;}
.ws2d{word-spacing:1.650000px;}
.ws8d{word-spacing:1.914000px;}
.wsce{word-spacing:2.820000px;}
.ws4a{word-spacing:3.696000px;}
.wsb9{word-spacing:5.055000px;}
.wsb0{word-spacing:6.204000px;}
.wsa8{word-spacing:6.666000px;}
.wsaf{word-spacing:6.864000px;}
.ws61{word-spacing:7.194000px;}
.ws37{word-spacing:7.524000px;}
.wsac{word-spacing:11.286000px;}
.wscb{word-spacing:14.940000px;}
.ws9a{word-spacing:15.246000px;}
.ws97{word-spacing:25.914000px;}
.ws98{word-spacing:26.670000px;}
.wsd8{word-spacing:33.456000px;}
.wsd6{word-spacing:33.504000px;}
.ws3d{word-spacing:35.712000px;}
.ws81{word-spacing:35.904000px;}
.ws3f{word-spacing:36.018000px;}
.wsd1{word-spacing:36.096000px;}
.wsd3{word-spacing:40.800000px;}
.wscf{word-spacing:48.222000px;}
.ws9e{word-spacing:66.822000px;}
.wsa3{word-spacing:70.896000px;}
.ws9c{word-spacing:78.750000px;}
.wsa4{word-spacing:82.110000px;}
.ws95{word-spacing:83.118000px;}
.wsa2{word-spacing:98.742000px;}
.ws99{word-spacing:100.758000px;}
.ws9b{word-spacing:101.514000px;}
.wsa5{word-spacing:108.696000px;}
.ws9f{word-spacing:108.780000px;}
.wsa6{word-spacing:132.594000px;}
.wsd7{word-spacing:134.064000px;}
.ws84{word-spacing:163.200000px;}
.ws94{word-spacing:163.674000px;}
.wsa0{word-spacing:202.734000px;}
.wsa1{word-spacing:360.654000px;}
.wsd2{word-spacing:371.136000px;}
.ws85{word-spacing:403.740000px;}
.ws7e{word-spacing:411.060000px;}
.ws8e{word-spacing:559.560000px;}
.ws87{word-spacing:585.360000px;}
.ws8c{word-spacing:640.920000px;}
._c{margin-left:-12.672000px;}
._5{margin-left:-7.986000px;}
._e{margin-left:-6.138000px;}
._22{margin-left:-4.931567px;}
._0{margin-left:-3.840000px;}
._4{margin-left:-2.699567px;}
._1{margin-left:-1.140433px;}
._2{width:1.056000px;}
._9{width:2.268000px;}
._f{width:3.630000px;}
._5b{width:8.940433px;}
._58{width:10.944000px;}
._7{width:11.988000px;}
._3{width:14.226866px;}
._8{width:16.470000px;}
._24{width:19.463567px;}
._d{width:24.024000px;}
._42{width:30.324433px;}
._59{width:31.920000px;}
._43{width:36.120000px;}
._3c{width:41.315567px;}
._36{width:45.750866px;}
._b{width:47.712000px;}
._23{width:53.940433px;}
._44{width:58.212000px;}
._40{width:60.060000px;}
._1c{width:62.760433px;}
._57{width:66.612433px;}
._5a{width:68.952000px;}
._15{width:74.520000px;}
._a{width:78.132433px;}
._3f{width:81.228000px;}
._2c{width:84.191567px;}
._3b{width:85.728433px;}
._41{width:94.794000px;}
._3d{width:95.988000px;}
._3e{width:107.106000px;}
._1a{width:108.240000px;}
._20{width:116.100866px;}
._47{width:120.114000px;}
._27{width:129.540000px;}
._38{width:142.128000px;}
._4c{width:143.136000px;}
._3a{width:144.984000px;}
._4b{width:163.128000px;}
._45{width:173.124000px;}
._49{width:179.214000px;}
._54{width:183.120000px;}
._12{width:186.600433px;}
._46{width:189.168000px;}
._48{width:213.192000px;}
._1e{width:225.960000px;}
._53{width:233.226000px;}
._4a{width:243.096000px;}
._19{width:247.500000px;}
._4d{width:249.186000px;}
._2e{width:261.191567px;}
._29{width:273.731567px;}
._1b{width:290.700000px;}
._16{width:296.460000px;}
._21{width:310.740000px;}
._30{width:355.091567px;}
._35{width:357.551567px;}
._2d{width:380.231567px;}
._37{width:382.416433px;}
._4f{width:389.298000px;}
._28{width:394.680000px;}
._50{width:413.238000px;}
._34{width:417.371567px;}
._17{width:436.020000px;}
._51{width:443.226000px;}
._1f{width:446.940000px;}
._14{width:452.100433px;}
._10{width:470.040000px;}
._2f{width:472.080000px;}
._33{width:494.531567px;}
._25{width:499.031567px;}
._26{width:505.451567px;}
._31{width:531.851567px;}
._2a{width:535.751567px;}
._11{width:558.600433px;}
._55{width:578.214000px;}
._1d{width:596.160000px;}
._13{width:627.300000px;}
._2b{width:633.251567px;}
._32{width:661.091567px;}
._39{width:663.365567px;}
._56{width:683.214000px;}
._4e{width:749.448000px;}
._52{width:989.310000px;}
._18{width:1115.424000px;}
._6{width:1139.856000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:0.408000px;}
.y20{bottom:1.158000px;}
.y1e{bottom:1.908000px;}
.y22{bottom:2.658000px;}
.y2a{bottom:3.408000px;}
.y242{bottom:31.620000px;}
.y1e6{bottom:54.495000px;}
.yb9{bottom:54.868500px;}
.y143{bottom:55.053000px;}
.y1ce{bottom:55.116000px;}
.y18f{bottom:55.132500px;}
.y81{bottom:55.165500px;}
.y59{bottom:55.242000px;}
.y11d{bottom:55.303500px;}
.ydc{bottom:55.330500px;}
.y158{bottom:55.503000px;}
.yfe{bottom:55.668000px;}
.y1ac{bottom:55.681500px;}
.y9b{bottom:55.830000px;}
.y15{bottom:56.538000px;}
.y247{bottom:65.070000px;}
.y142{bottom:69.309000px;}
.y58{bottom:69.498000px;}
.y1e5{bottom:70.245000px;}
.yb8{bottom:72.111000px;}
.y1cd{bottom:72.358500px;}
.y18e{bottom:72.375000px;}
.y80{bottom:72.408000px;}
.y11c{bottom:72.546000px;}
.ydb{bottom:72.573000px;}
.y157{bottom:72.745500px;}
.yfd{bottom:72.910500px;}
.y1ab{bottom:72.924000px;}
.y14{bottom:73.780500px;}
.y141{bottom:83.565000px;}
.y57{bottom:83.754000px;}
.y1e4{bottom:85.995000px;}
.y1cc{bottom:89.601000px;}
.y18d{bottom:89.617500px;}
.y7f{bottom:89.650500px;}
.y11b{bottom:89.788500px;}
.yda{bottom:89.815500px;}
.y156{bottom:89.988000px;}
.yfc{bottom:90.153000px;}
.y1aa{bottom:90.166500px;}
.y13{bottom:91.023000px;}
.y241{bottom:91.740000px;}
.yb7{bottom:97.983000px;}
.y56{bottom:98.010000px;}
.y1e3{bottom:101.745000px;}
.y21c{bottom:104.505000px;}
.y1cb{bottom:106.843500px;}
.y18c{bottom:106.860000px;}
.y7e{bottom:106.893000px;}
.y11a{bottom:107.031000px;}
.yd9{bottom:107.058000px;}
.y155{bottom:107.230500px;}
.y12{bottom:108.265500px;}
.y240{bottom:110.628000px;}
.y55{bottom:112.266000px;}
.yfb{bottom:116.025000px;}
.y1a9{bottom:116.038500px;}
.y1e2{bottom:117.495000px;}
.y1ca{bottom:124.086000px;}
.y18b{bottom:124.102500px;}
.y7d{bottom:124.135500px;}
.y119{bottom:124.273500px;}
.yd8{bottom:124.300500px;}
.y154{bottom:124.473000px;}
.y23f{bottom:125.256000px;}
.y11{bottom:125.508000px;}
.y54{bottom:126.522000px;}
.y140{bottom:129.915000px;}
.y1e1{bottom:133.245000px;}
.yfa{bottom:133.267500px;}
.y218{bottom:139.725000px;}
.y53{bottom:140.778000px;}
.yb6{bottom:141.114000px;}
.y1c9{bottom:141.328500px;}
.y18a{bottom:141.345000px;}
.y7c{bottom:141.378000px;}
.yd7{bottom:141.543000px;}
.y153{bottom:141.715500px;}
.y10{bottom:142.750500px;}
.y23e{bottom:144.144000px;}
.y13f{bottom:147.157500px;}
.y1e0{bottom:148.995000px;}
.yf9{bottom:150.510000px;}
.y52{bottom:155.034000px;}
.y217{bottom:156.228000px;}
.yb5{bottom:158.356500px;}
.y1c8{bottom:158.571000px;}
.y189{bottom:158.587500px;}
.y7b{bottom:158.620500px;}
.y118{bottom:158.775000px;}
.yd6{bottom:158.785500px;}
.y152{bottom:158.958000px;}
.yf{bottom:159.993000px;}
.y1a8{bottom:161.079000px;}
.y9e{bottom:161.700000px;}
.y23d{bottom:163.008000px;}
.y13e{bottom:164.400000px;}
.y1df{bottom:164.745000px;}
.yf8{bottom:167.752500px;}
.y51{bottom:169.290000px;}
.yb4{bottom:175.599000px;}
.y188{bottom:175.830000px;}
.y7a{bottom:175.863000px;}
.y117{bottom:176.017500px;}
.y151{bottom:176.200500px;}
.y1a7{bottom:178.321500px;}
.y216{bottom:181.230000px;}
.y13d{bottom:181.642500px;}
.y23c{bottom:181.896000px;}
.y50{bottom:183.546000px;}
.y1c7{bottom:184.443000px;}
.yd5{bottom:184.657500px;}
.yf7{bottom:184.995000px;}
.ye{bottom:185.865000px;}
.y1de{bottom:189.327000px;}
.yb3{bottom:192.841500px;}
.y187{bottom:193.072500px;}
.y79{bottom:193.105500px;}
.y116{bottom:193.260000px;}
.y1a6{bottom:195.564000px;}
.y4f{bottom:197.802000px;}
.y13c{bottom:198.885000px;}
.y215{bottom:199.857000px;}
.y23b{bottom:200.784000px;}
.yd4{bottom:201.900000px;}
.y150{bottom:202.072500px;}
.y186{bottom:210.315000px;}
.y78{bottom:210.348000px;}
.y4e{bottom:212.058000px;}
.y1a5{bottom:212.806500px;}
.y9d{bottom:214.695000px;}
.y13b{bottom:216.207000px;}
.y214{bottom:218.473500px;}
.yd3{bottom:219.142500px;}
.y14f{bottom:219.315000px;}
.yb2{bottom:226.138500px;}
.y4d{bottom:226.314000px;}
.y185{bottom:227.557500px;}
.y1c6{bottom:227.574000px;}
.y77{bottom:227.590500px;}
.yf6{bottom:228.120000px;}
.y1a4{bottom:230.049000px;}
.y13a{bottom:233.449500px;}
.y246{bottom:233.940000px;}
.yd2{bottom:236.385000px;}
.y14e{bottom:236.557500px;}
.y213{bottom:237.103500px;}
.y4c{bottom:240.552000px;}
.yb1{bottom:243.381000px;}
.yf5{bottom:243.870000px;}
.y184{bottom:244.800000px;}
.y1c5{bottom:244.816500px;}
.y76{bottom:244.833000px;}
.y1dd{bottom:244.849500px;}
.y1a3{bottom:247.291500px;}
.y139{bottom:250.692000px;}
.y25{bottom:252.000000px;}
.y115{bottom:252.735000px;}
.y4b{bottom:254.808000px;}
.y212{bottom:255.733500px;}
.y9c{bottom:259.695000px;}
.y23a{bottom:260.904000px;}
.y183{bottom:262.042500px;}
.y1c4{bottom:262.059000px;}
.y75{bottom:262.075500px;}
.y1dc{bottom:262.092000px;}
.y14d{bottom:262.429500px;}
.yf4{bottom:264.120000px;}
.y1a2{bottom:264.534000px;}
.y24{bottom:267.000000px;}
.y138{bottom:267.934500px;}
.y4a{bottom:269.064000px;}
.y114{bottom:273.585000px;}
.y211{bottom:274.363500px;}
.y239{bottom:274.404000px;}
.yd1{bottom:275.205000px;}
.yb0{bottom:276.678000px;}
.y182{bottom:279.285000px;}
.y74{bottom:279.318000px;}
.y1db{bottom:279.334500px;}
.y49{bottom:283.284000px;}
.yf3{bottom:284.370000px;}
.y23{bottom:285.000000px;}
.y137{bottom:285.177000px;}
.y238{bottom:287.904000px;}
.y1c3{bottom:287.931000px;}
.y29{bottom:288.000000px;}
.y113{bottom:289.935000px;}
.y1a1{bottom:290.406000px;}
.y210{bottom:292.980000px;}
.yaf{bottom:293.920500px;}
.yd0{bottom:295.455000px;}
.y181{bottom:296.527500px;}
.y73{bottom:296.560500px;}
.y1da{bottom:296.577000px;}
.y48{bottom:297.540000px;}
.y21{bottom:300.000000px;}
.y136{bottom:302.419500px;}
.y28{bottom:304.500000px;}
.yf2{bottom:304.620000px;}
.y14c{bottom:305.560500px;}
.y1a0{bottom:307.648500px;}
.y112{bottom:310.785000px;}
.yae{bottom:311.163000px;}
.y20f{bottom:311.610000px;}
.y47{bottom:311.796000px;}
.y237{bottom:312.036000px;}
.y180{bottom:313.770000px;}
.y72{bottom:313.803000px;}
.y1d9{bottom:313.819500px;}
.ycf{bottom:315.705000px;}
.y1f{bottom:322.500000px;}
.y14b{bottom:322.803000px;}
.y26{bottom:324.000000px;}
.yf1{bottom:324.870000px;}
.y19f{bottom:324.891000px;}
.y236{bottom:325.536000px;}
.y46{bottom:326.052000px;}
.y111{bottom:327.135000px;}
.y20e{bottom:328.108500px;}
.y135{bottom:328.291500px;}
.y17f{bottom:331.012500px;}
.y71{bottom:331.045500px;}
.y1c2{bottom:331.062000px;}
.yce{bottom:331.455000px;}
.y1d{bottom:337.500000px;}
.y14a{bottom:340.045500px;}
.y45{bottom:340.308000px;}
.y19e{bottom:342.133500px;}
.yad{bottom:344.460000px;}
.yf0{bottom:345.120000px;}
.y20d{bottom:346.738500px;}
.y110{bottom:347.985000px;}
.y17e{bottom:348.255000px;}
.y70{bottom:348.288000px;}
.y1c1{bottom:348.304500px;}
.y235{bottom:349.668000px;}
.ycd{bottom:351.705000px;}
.y44{bottom:354.564000px;}
.y9a{bottom:356.934000px;}
.y149{bottom:357.288000px;}
.y234{bottom:363.168000px;}
.y1c{bottom:364.335000px;}
.y20c{bottom:365.368500px;}
.y17d{bottom:365.497500px;}
.y6f{bottom:365.530500px;}
.y1c0{bottom:365.547000px;}
.y19d{bottom:368.005500px;}
.y43{bottom:368.820000px;}
.y134{bottom:371.422500px;}
.ycc{bottom:371.955000px;}
.yef{bottom:373.627500px;}
.y99{bottom:374.176500px;}
.y148{bottom:374.530500px;}
.yac{bottom:377.757000px;}
.y6e{bottom:382.773000px;}
.y1bf{bottom:382.789500px;}
.y20b{bottom:383.985000px;}
.y10f{bottom:385.185000px;}
.y233{bottom:387.288000px;}
.y133{bottom:388.665000px;}
.yee{bottom:390.870000px;}
.y17c{bottom:391.369500px;}
.y98{bottom:391.419000px;}
.y147{bottom:391.773000px;}
.ycb{bottom:392.205000px;}
.yab{bottom:394.999500px;}
.y6d{bottom:400.015500px;}
.y1be{bottom:400.032000px;}
.y10e{bottom:401.535000px;}
.y20a{bottom:402.615000px;}
.y1ff{bottom:404.385000px;}
.y132{bottom:405.907500px;}
.y232{bottom:407.184000px;}
.y42{bottom:408.525000px;}
.y17b{bottom:408.612000px;}
.y97{bottom:408.661500px;}
.y146{bottom:409.015500px;}
.yaa{bottom:412.242000px;}
.y19c{bottom:412.902000px;}
.y6c{bottom:417.258000px;}
.y1bd{bottom:417.274500px;}
.yd{bottom:418.740000px;}
.y209{bottom:419.110500px;}
.y1fe{bottom:420.135000px;}
.yca{bottom:420.930000px;}
.y10d{bottom:422.385000px;}
.y131{bottom:423.150000px;}
.y41{bottom:425.767500px;}
.y17a{bottom:425.854500px;}
.y96{bottom:425.904000px;}
.y145{bottom:426.258000px;}
.ya9{bottom:429.484500px;}
.y19b{bottom:430.144500px;}
.yc{bottom:433.701750px;}
.yed{bottom:433.995000px;}
.y6b{bottom:434.500500px;}
.y1bc{bottom:434.517000px;}
.y1fd{bottom:435.885000px;}
.yc9{bottom:438.172500px;}
.y10c{bottom:438.735000px;}
.y245{bottom:440.280000px;}
.y130{bottom:440.392500px;}
.y40{bottom:443.047500px;}
.y95{bottom:443.146500px;}
.y19a{bottom:447.387000px;}
.yb{bottom:448.707000px;}
.y223{bottom:449.490000px;}
.y1fc{bottom:451.635000px;}
.y179{bottom:451.726500px;}
.y6a{bottom:451.743000px;}
.y1bb{bottom:451.759500px;}
.y1d8{bottom:451.792500px;}
.y144{bottom:452.130000px;}
.yec{bottom:454.245000px;}
.yc8{bottom:455.415000px;}
.y12f{bottom:457.635000px;}
.y10b{bottom:459.585000px;}
.y3f{bottom:460.290000px;}
.y94{bottom:460.389000px;}
.ya8{bottom:462.781500px;}
.ya{bottom:463.712250px;}
.y199{bottom:464.629500px;}
.y1fb{bottom:467.385000px;}
.y222{bottom:468.730500px;}
.y69{bottom:468.985500px;}
.y1ba{bottom:469.002000px;}
.y1d7{bottom:469.035000px;}
.y231{bottom:470.928000px;}
.yc7{bottom:472.657500px;}
.yeb{bottom:474.495000px;}
.y10a{bottom:475.935000px;}
.y3e{bottom:477.532500px;}
.y93{bottom:477.631500px;}
.y9{bottom:478.717500px;}
.ya7{bottom:480.024000px;}
.y198{bottom:481.872000px;}
.y1fa{bottom:483.135000px;}
.y221{bottom:483.735000px;}
.y68{bottom:486.228000px;}
.y1b9{bottom:486.244500px;}
.y1d6{bottom:486.277500px;}
.yc6{bottom:489.900000px;}
.y159{bottom:490.230000px;}
.y12e{bottom:492.135000px;}
.y8{bottom:493.722750px;}
.yea{bottom:494.745000px;}
.y3d{bottom:494.775000px;}
.y178{bottom:494.857500px;}
.y230{bottom:495.048000px;}
.y109{bottom:496.785000px;}
.ya6{bottom:497.266500px;}
.y1f9{bottom:498.885000px;}
.y220{bottom:502.989000px;}
.y67{bottom:503.470500px;}
.y1b8{bottom:503.487000px;}
.y92{bottom:503.503500px;}
.y1d5{bottom:503.520000px;}
.yc5{bottom:507.142500px;}
.y197{bottom:507.744000px;}
.y12d{bottom:507.885000px;}
.y22f{bottom:508.548000px;}
.y7{bottom:508.728000px;}
.ye9{bottom:510.495000px;}
.y3c{bottom:512.017500px;}
.y177{bottom:512.100000px;}
.y108{bottom:513.135000px;}
.ya5{bottom:514.509000px;}
.y1f8{bottom:514.635000px;}
.y21f{bottom:517.992000px;}
.y16f{bottom:518.050500px;}
.y66{bottom:520.713000px;}
.y1b7{bottom:520.729500px;}
.y91{bottom:520.746000px;}
.y1d4{bottom:520.762500px;}
.y6{bottom:523.733250px;}
.yc4{bottom:524.385000px;}
.y12c{bottom:528.135000px;}
.y3b{bottom:529.275000px;}
.y176{bottom:529.342500px;}
.y1f7{bottom:530.385000px;}
.ye8{bottom:530.745000px;}
.y22e{bottom:532.680000px;}
.y21e{bottom:532.995000px;}
.y107{bottom:533.985000px;}
.y16e{bottom:535.050000px;}
.y65{bottom:537.955500px;}
.y1b6{bottom:537.972000px;}
.y90{bottom:537.988500px;}
.y1d3{bottom:538.005000px;}
.y5{bottom:538.738500px;}
.y12b{bottom:543.885000px;}
.y1f6{bottom:546.135000px;}
.y22d{bottom:546.180000px;}
.y3a{bottom:546.517500px;}
.y175{bottom:546.585000px;}
.y16d{bottom:547.795500px;}
.ya4{bottom:547.806000px;}
.y21d{bottom:547.995000px;}
.y106{bottom:550.335000px;}
.ye7{bottom:550.995000px;}
.y4{bottom:553.743750px;}
.y196{bottom:555.181500px;}
.y64{bottom:555.198000px;}
.y1b5{bottom:555.214500px;}
.y8f{bottom:555.231000px;}
.y1d2{bottom:555.247500px;}
.y1f5{bottom:561.885000px;}
.yc3{bottom:563.205000px;}
.y174{bottom:563.827500px;}
.y39{bottom:563.845500px;}
.y12a{bottom:564.135000px;}
.y16c{bottom:564.795000px;}
.ya3{bottom:565.048500px;}
.y208{bottom:569.743500px;}
.y22c{bottom:570.312000px;}
.y105{bottom:571.185000px;}
.y195{bottom:572.424000px;}
.y63{bottom:572.440500px;}
.y8e{bottom:572.473500px;}
.y1d1{bottom:572.490000px;}
.y16b{bottom:577.548000px;}
.y1f4{bottom:577.635000px;}
.ye6{bottom:579.540000px;}
.y173{bottom:581.070000px;}
.y1b4{bottom:581.086500px;}
.ya2{bottom:582.291000px;}
.yc2{bottom:583.455000px;}
.y3{bottom:583.740000px;}
.y22b{bottom:583.812000px;}
.y129{bottom:584.385000px;}
.y104{bottom:587.535000px;}
.y207{bottom:588.360000px;}
.y194{bottom:589.666500px;}
.y8d{bottom:589.716000px;}
.y38{bottom:589.717500px;}
.y1d0{bottom:589.732500px;}
.y16a{bottom:590.295000px;}
.y1f3{bottom:593.385000px;}
.ye5{bottom:596.782500px;}
.y172{bottom:598.312500px;}
.ya1{bottom:599.533500px;}
.yc1{bottom:603.705000px;}
.y128{bottom:604.635000px;}
.y62{bottom:606.942000px;}
.y8c{bottom:606.958500px;}
.y37{bottom:606.960000px;}
.y1cf{bottom:606.975000px;}
.y206{bottom:606.990000px;}
.y169{bottom:607.305000px;}
.y22a{bottom:607.932000px;}
.y103{bottom:608.385000px;}
.y1f2{bottom:609.135000px;}
.ye4{bottom:614.025000px;}
.y193{bottom:615.538500px;}
.y171{bottom:615.555000px;}
.y168{bottom:620.053500px;}
.y205{bottom:623.490000px;}
.yc0{bottom:623.955000px;}
.y61{bottom:624.184500px;}
.y8b{bottom:624.201000px;}
.y36{bottom:624.202500px;}
.y1b3{bottom:624.217500px;}
.y127{bottom:624.885000px;}
.ye3{bottom:631.267500px;}
.y229{bottom:632.064000px;}
.y167{bottom:632.800500px;}
.ya0{bottom:632.830500px;}
.y1f1{bottom:640.635000px;}
.y60{bottom:641.427000px;}
.y8a{bottom:641.443500px;}
.y35{bottom:641.445000px;}
.y1b2{bottom:641.460000px;}
.y204{bottom:642.120000px;}
.ybf{bottom:644.205000px;}
.y126{bottom:645.135000px;}
.ye2{bottom:648.510000px;}
.y166{bottom:649.800000px;}
.y9f{bottom:650.073000px;}
.y228{bottom:651.936000px;}
.y1f0{bottom:656.385000px;}
.y203{bottom:658.620000px;}
.y5f{bottom:658.669500px;}
.y102{bottom:658.686000px;}
.y34{bottom:658.687500px;}
.y1b1{bottom:658.702500px;}
.y165{bottom:662.550000px;}
.y192{bottom:662.976000px;}
.ybe{bottom:664.455000px;}
.y125{bottom:665.385000px;}
.y89{bottom:667.315500px;}
.y1ef{bottom:672.135000px;}
.y5e{bottom:675.912000px;}
.y101{bottom:675.928500px;}
.y33{bottom:675.930000px;}
.y1b0{bottom:675.945000px;}
.y202{bottom:677.250000px;}
.y164{bottom:679.560000px;}
.y191{bottom:680.218500px;}
.y244{bottom:684.390000px;}
.y88{bottom:684.558000px;}
.y124{bottom:685.635000px;}
.y1ee{bottom:687.885000px;}
.ye1{bottom:691.635000px;}
.y163{bottom:692.308500px;}
.y5d{bottom:693.154500px;}
.ybd{bottom:693.171000px;}
.y32{bottom:693.172500px;}
.y1af{bottom:693.187500px;}
.y201{bottom:693.748500px;}
.y123{bottom:701.385000px;}
.y170{bottom:701.784000px;}
.y87{bottom:701.800500px;}
.y1ed{bottom:703.635000px;}
.y162{bottom:705.055500px;}
.y190{bottom:706.090500px;}
.y1b{bottom:708.849000px;}
.y5c{bottom:710.397000px;}
.ybc{bottom:710.413500px;}
.y31{bottom:710.415000px;}
.y1ae{bottom:710.430000px;}
.ye0{bottom:711.885000px;}
.y200{bottom:712.365000px;}
.y227{bottom:715.680000px;}
.y86{bottom:719.043000px;}
.y1ec{bottom:719.385000px;}
.y122{bottom:721.635000px;}
.y161{bottom:722.055000px;}
.y1a{bottom:723.105000px;}
.ybb{bottom:727.656000px;}
.y30{bottom:727.657500px;}
.y1ad{bottom:727.672500px;}
.ydf{bottom:732.135000px;}
.y160{bottom:734.808000px;}
.y1eb{bottom:735.135000px;}
.y5b{bottom:736.269000px;}
.y85{bottom:736.285500px;}
.y21b{bottom:736.470000px;}
.y121{bottom:737.385000px;}
.y226{bottom:739.812000px;}
.y19{bottom:741.105000px;}
.yba{bottom:744.898500px;}
.y2f{bottom:744.900000px;}
.y100{bottom:744.915000px;}
.y15f{bottom:747.555000px;}
.yde{bottom:747.885000px;}
.y1ea{bottom:750.885000px;}
.y225{bottom:753.312000px;}
.y5a{bottom:753.511500px;}
.y84{bottom:753.528000px;}
.y21a{bottom:753.720000px;}
.y120{bottom:757.635000px;}
.y2e{bottom:762.142500px;}
.yff{bottom:762.157500px;}
.y15e{bottom:764.565000px;}
.y1e9{bottom:766.635000px;}
.ydd{bottom:768.135000px;}
.y83{bottom:770.770500px;}
.y219{bottom:770.970000px;}
.y224{bottom:771.060000px;}
.y15d{bottom:777.313500px;}
.y11f{bottom:777.885000px;}
.y2d{bottom:779.400000px;}
.y1e8{bottom:782.385000px;}
.y18{bottom:786.105000px;}
.y82{bottom:788.013000px;}
.y15c{bottom:790.060500px;}
.y11e{bottom:793.635000px;}
.y2c{bottom:796.642500px;}
.y1e7{bottom:798.135000px;}
.y15b{bottom:807.060000px;}
.y1{bottom:807.105000px;}
.y17{bottom:810.105000px;}
.y2b{bottom:813.885000px;}
.y243{bottom:818.505000px;}
.y15a{bottom:819.810000px;}
.y16{bottom:861.105000px;}
.y2{bottom:924.000000px;}
.hc{height:9.000000px;}
.ha{height:10.500000px;}
.h8{height:12.000000px;}
.hb{height:13.500000px;}
.hd{height:15.000000px;}
.h1b{height:38.412000px;}
.h18{height:44.814000px;}
.h19{height:45.528000px;}
.h2{height:47.085938px;}
.h9{height:47.109375px;}
.h5{height:51.216000px;}
.h7{height:57.618000px;}
.h12{height:58.536000px;}
.h14{height:58.608000px;}
.h13{height:58.680000px;}
.h3{height:60.819000px;}
.h15{height:64.020000px;}
.h16{height:65.040000px;}
.h4{height:70.422000px;}
.h17{height:70.787400px;}
.h11{height:70.925400px;}
.h1a{height:70.968000px;}
.h10{height:71.015400px;}
.he{height:71.202000px;}
.hf{height:71.544000px;}
.h6{height:76.824000px;}
.h1{height:102.432000px;}
.h0{height:892.500000px;}
.wa{width:142.500000px;}
.wb{width:148.500000px;}
.w8{width:154.500000px;}
.w9{width:192.000000px;}
.w6{width:201.000000px;}
.w5{width:205.500000px;}
.w7{width:211.500000px;}
.w2{width:231.000000px;}
.w1{width:232.500000px;}
.w4{width:238.500000px;}
.w3{width:240.000000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x2{left:4.500000px;}
.xc{left:38.412000px;}
.xd{left:50.531850px;}
.x8{left:54.863850px;}
.xb{left:64.500000px;}
.x9{left:70.500000px;}
.x3{left:74.700000px;}
.x7{left:76.500000px;}
.x19{left:78.450000px;}
.x18{left:79.665000px;}
.x23{left:84.873000px;}
.x11{left:90.839850px;}
.x4{left:97.229250px;}
.x15{left:98.421000px;}
.xe{left:100.500000px;}
.xf{left:102.515850px;}
.x10{left:105.000000px;}
.xa{left:109.368150px;}
.x1c{left:119.062500px;}
.x1d{left:136.515000px;}
.x28{left:161.565000px;}
.x20{left:164.610000px;}
.x1f{left:176.085000px;}
.x1{left:177.150000px;}
.x1e{left:179.042625px;}
.x26{left:186.285000px;}
.x27{left:192.240000px;}
.x17{left:231.360000px;}
.x29{left:257.820000px;}
.x25{left:276.309000px;}
.x6{left:294.030000px;}
.x16{left:295.650000px;}
.x1b{left:308.565000px;}
.x1a{left:309.765000px;}
.x24{left:320.265000px;}
.x12{left:330.000000px;}
.x13{left:331.500000px;}
.x14{left:333.000000px;}
.x22{left:381.855000px;}
.x5{left:435.195000px;}
.x21{left:454.785000px;}
@media print{
.v2{vertical-align:-58.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.306667pt;}
.lsf{letter-spacing:-6.688000pt;}
.ls1c{letter-spacing:-3.813333pt;}
.ls24{letter-spacing:-3.456000pt;}
.ls82{letter-spacing:-2.986667pt;}
.ls81{letter-spacing:-2.688000pt;}
.ls2a{letter-spacing:-2.592000pt;}
.ls83{letter-spacing:-2.389333pt;}
.ls84{letter-spacing:-2.346667pt;}
.ls63{letter-spacing:-1.936000pt;}
.ls28{letter-spacing:-1.728000pt;}
.ls20{letter-spacing:-1.695467pt;}
.ls5f{letter-spacing:-1.642667pt;}
.ls27{letter-spacing:-1.600000pt;}
.ls60{letter-spacing:-1.584000pt;}
.ls16{letter-spacing:-1.520000pt;}
.ls1e{letter-spacing:-1.466667pt;}
.lsd{letter-spacing:-1.413600pt;}
.ls1f{letter-spacing:-1.408000pt;}
.ls5b{letter-spacing:-1.349333pt;}
.ls6c{letter-spacing:-1.226667pt;}
.ls2d{letter-spacing:-1.216000pt;}
.ls2c{letter-spacing:-1.200000pt;}
.ls40{letter-spacing:-1.114667pt;}
.ls66{letter-spacing:-1.056000pt;}
.ls76{letter-spacing:-1.013333pt;}
.ls47{letter-spacing:-1.008000pt;}
.ls75{letter-spacing:-1.000000pt;}
.ls5d{letter-spacing:-0.997333pt;}
.ls12{letter-spacing:-0.972800pt;}
.ls3d{letter-spacing:-0.938667pt;}
.ls11{letter-spacing:-0.912000pt;}
.ls3c{letter-spacing:-0.880000pt;}
.ls13{letter-spacing:-0.871467pt;}
.ls23{letter-spacing:-0.853333pt;}
.ls5a{letter-spacing:-0.821333pt;}
.ls26{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.762667pt;}
.ls1a{letter-spacing:-0.750933pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls2b{letter-spacing:-0.672000pt;}
.ls17{letter-spacing:-0.658667pt;}
.ls1d{letter-spacing:-0.645333pt;}
.ls73{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.608000pt;}
.ls42{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.562400pt;}
.lse{letter-spacing:-0.557333pt;}
.ls41{letter-spacing:-0.528000pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls57{letter-spacing:-0.469333pt;}
.ls15{letter-spacing:-0.461067pt;}
.ls78{letter-spacing:-0.440000pt;}
.ls45{letter-spacing:-0.432000pt;}
.ls79{letter-spacing:-0.426667pt;}
.ls51{letter-spacing:-0.410667pt;}
.ls5e{letter-spacing:-0.373333pt;}
.ls52{letter-spacing:-0.352000pt;}
.ls22{letter-spacing:-0.298667pt;}
.ls50{letter-spacing:-0.293333pt;}
.ls61{letter-spacing:-0.256000pt;}
.ls3f{letter-spacing:-0.234667pt;}
.ls80{letter-spacing:-0.213333pt;}
.ls43{letter-spacing:-0.176000pt;}
.ls1b{letter-spacing:-0.117333pt;}
.ls10{letter-spacing:-0.101333pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls3e{letter-spacing:-0.058667pt;}
.ls7c{letter-spacing:-0.048000pt;}
.ls44{letter-spacing:-0.042667pt;}
.ls64{letter-spacing:-0.037333pt;}
.ls7d{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.050667pt;}
.ls4d{letter-spacing:0.058667pt;}
.ls36{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.101333pt;}
.ls4f{letter-spacing:0.117333pt;}
.ls6d{letter-spacing:0.120000pt;}
.ls69{letter-spacing:0.160000pt;}
.ls48{letter-spacing:0.176000pt;}
.ls62{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.202667pt;}
.ls4b{letter-spacing:0.234667pt;}
.ls6f{letter-spacing:0.266667pt;}
.ls77{letter-spacing:0.280000pt;}
.ls4c{letter-spacing:0.293333pt;}
.ls5c{letter-spacing:0.298667pt;}
.ls6b{letter-spacing:0.320000pt;}
.ls4a{letter-spacing:0.352000pt;}
.ls49{letter-spacing:0.410667pt;}
.ls9{letter-spacing:0.469333pt;}
.ls37{letter-spacing:0.528000pt;}
.ls65{letter-spacing:0.586667pt;}
.ls58{letter-spacing:0.645333pt;}
.ls3a{letter-spacing:0.672000pt;}
.ls55{letter-spacing:0.704000pt;}
.ls39{letter-spacing:0.720000pt;}
.ls6a{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.760000pt;}
.ls2f{letter-spacing:0.762667pt;}
.ls30{letter-spacing:0.821333pt;}
.ls21{letter-spacing:0.880000pt;}
.ls4e{letter-spacing:0.938667pt;}
.lsa{letter-spacing:0.997333pt;}
.ls74{letter-spacing:1.000000pt;}
.ls6e{letter-spacing:1.013333pt;}
.ls72{letter-spacing:1.066667pt;}
.ls56{letter-spacing:1.114667pt;}
.ls8{letter-spacing:1.232000pt;}
.ls7{letter-spacing:1.266667pt;}
.ls71{letter-spacing:1.320000pt;}
.ls70{letter-spacing:1.333333pt;}
.ls2e{letter-spacing:1.466667pt;}
.ls68{letter-spacing:1.642667pt;}
.ls4{letter-spacing:1.829067pt;}
.ls7e{letter-spacing:4.010667pt;}
.ls7f{letter-spacing:4.053333pt;}
.ls38{letter-spacing:10.320000pt;}
.ls7b{letter-spacing:10.666667pt;}
.ls7a{letter-spacing:10.709333pt;}
.ls3b{letter-spacing:12.000000pt;}
.ls59{letter-spacing:12.965333pt;}
.ls31{letter-spacing:13.786667pt;}
.ls54{letter-spacing:14.314667pt;}
.ls32{letter-spacing:14.666667pt;}
.ls34{letter-spacing:14.949333pt;}
.ls67{letter-spacing:16.133333pt;}
.ls53{letter-spacing:16.485333pt;}
.ls33{letter-spacing:21.354667pt;}
.lsb{letter-spacing:42.624000pt;}
.ws19{word-spacing:-20.480000pt;}
.ws34{word-spacing:-16.426667pt;}
.ws1b{word-spacing:-15.936000pt;}
.ws63{word-spacing:-15.898667pt;}
.ws80{word-spacing:-15.488000pt;}
.ws36{word-spacing:-15.429333pt;}
.wsaa{word-spacing:-15.312000pt;}
.wsab{word-spacing:-15.253333pt;}
.ws1c{word-spacing:-15.232000pt;}
.ws70{word-spacing:-15.194667pt;}
.ws6f{word-spacing:-15.018667pt;}
.ws60{word-spacing:-14.960000pt;}
.ws76{word-spacing:-14.901333pt;}
.ws8b{word-spacing:-14.842667pt;}
.ws64{word-spacing:-14.784000pt;}
.ws62{word-spacing:-14.725333pt;}
.ws11{word-spacing:-14.666667pt;}
.ws35{word-spacing:-14.608000pt;}
.ws3a{word-spacing:-14.549333pt;}
.wsae{word-spacing:-14.490667pt;}
.wsad{word-spacing:-14.432000pt;}
.ws1d{word-spacing:-14.400000pt;}
.ws3c{word-spacing:-14.373333pt;}
.wsbf{word-spacing:-14.346667pt;}
.ws6e{word-spacing:-14.314667pt;}
.ws10{word-spacing:-14.256000pt;}
.ws7a{word-spacing:-14.197333pt;}
.wsb3{word-spacing:-14.080000pt;}
.ws79{word-spacing:-14.021333pt;}
.ws5f{word-spacing:-13.962667pt;}
.ws13{word-spacing:-13.915733pt;}
.ws12{word-spacing:-13.904000pt;}
.ws38{word-spacing:-13.845333pt;}
.ws77{word-spacing:-13.786667pt;}
.ws8f{word-spacing:-13.728000pt;}
.wsb6{word-spacing:-13.653333pt;}
.ws71{word-spacing:-13.600000pt;}
.ws39{word-spacing:-13.552000pt;}
.wsbb{word-spacing:-13.493333pt;}
.ws7f{word-spacing:-13.333333pt;}
.wsa9{word-spacing:-13.317333pt;}
.ws16{word-spacing:-13.258667pt;}
.ws86{word-spacing:-13.226667pt;}
.ws15{word-spacing:-13.200000pt;}
.ws17{word-spacing:-12.971200pt;}
.ws25{word-spacing:-12.920000pt;}
.wsc4{word-spacing:-12.906667pt;}
.ws6{word-spacing:-12.869333pt;}
.ws45{word-spacing:-12.672000pt;}
.wse{word-spacing:-12.666667pt;}
.ws1a{word-spacing:-12.544000pt;}
.wsbd{word-spacing:-12.480000pt;}
.ws2{word-spacing:-12.312000pt;}
.ws40{word-spacing:-12.240000pt;}
.wsc{word-spacing:-12.205600pt;}
.ws91{word-spacing:-12.192000pt;}
.ws5{word-spacing:-12.109333pt;}
.wsb7{word-spacing:-12.106667pt;}
.wsb{word-spacing:-12.104267pt;}
.ws46{word-spacing:-12.096000pt;}
.ws4{word-spacing:-12.058667pt;}
.wsf{word-spacing:-12.008000pt;}
.ws41{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.795200pt;}
.ws42{word-spacing:-11.760000pt;}
.ws8{word-spacing:-11.754667pt;}
.ws24{word-spacing:-11.704000pt;}
.ws9{word-spacing:-11.693867pt;}
.ws43{word-spacing:-11.520000pt;}
.ws20{word-spacing:-11.376000pt;}
.ws22{word-spacing:-11.328000pt;}
.wsc2{word-spacing:-11.320000pt;}
.ws3{word-spacing:-11.253067pt;}
.wsd{word-spacing:-11.146667pt;}
.ws1f{word-spacing:-11.088000pt;}
.wsbe{word-spacing:-11.000000pt;}
.ws7b{word-spacing:-10.965333pt;}
.wsd4{word-spacing:-10.880000pt;}
.ws14{word-spacing:-10.853333pt;}
.ws23{word-spacing:-10.800000pt;}
.wsb2{word-spacing:-10.760000pt;}
.ws90{word-spacing:-10.666667pt;}
.ws3e{word-spacing:-10.624000pt;}
.wsd5{word-spacing:-10.453333pt;}
.ws88{word-spacing:-10.410667pt;}
.ws18{word-spacing:-10.368000pt;}
.wsb5{word-spacing:-10.320000pt;}
.wsc1{word-spacing:-10.280000pt;}
.ws1e{word-spacing:-10.272000pt;}
.ws3b{word-spacing:-10.266667pt;}
.wsb1{word-spacing:-10.160000pt;}
.wsba{word-spacing:-10.120000pt;}
.wsb4{word-spacing:-10.000000pt;}
.wsc3{word-spacing:-9.560000pt;}
.ws21{word-spacing:-9.408000pt;}
.wsbc{word-spacing:-9.360000pt;}
.ws96{word-spacing:-9.333333pt;}
.ws9d{word-spacing:-9.296000pt;}
.wsc0{word-spacing:-9.000000pt;}
.wsd0{word-spacing:-7.968000pt;}
.ws1{word-spacing:-6.997333pt;}
.ws83{word-spacing:-6.826667pt;}
.ws7{word-spacing:-5.978667pt;}
.ws4d{word-spacing:-0.762667pt;}
.ws6d{word-spacing:-0.704000pt;}
.ws31{word-spacing:-0.645333pt;}
.ws50{word-spacing:-0.586667pt;}
.ws57{word-spacing:-0.576000pt;}
.ws29{word-spacing:-0.557333pt;}
.ws4c{word-spacing:-0.528000pt;}
.ws66{word-spacing:-0.469333pt;}
.ws51{word-spacing:-0.410667pt;}
.ws52{word-spacing:-0.352000pt;}
.ws59{word-spacing:-0.336000pt;}
.ws7c{word-spacing:-0.293333pt;}
.ws74{word-spacing:-0.234667pt;}
.wscc{word-spacing:-0.213333pt;}
.ws56{word-spacing:-0.192000pt;}
.ws2f{word-spacing:-0.176000pt;}
.wsb8{word-spacing:-0.160000pt;}
.ws55{word-spacing:-0.144000pt;}
.ws47{word-spacing:-0.117333pt;}
.ws32{word-spacing:-0.058667pt;}
.wsc6{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws93{word-spacing:0.048000pt;}
.ws7d{word-spacing:0.058667pt;}
.ws48{word-spacing:0.117333pt;}
.wsca{word-spacing:0.160000pt;}
.ws49{word-spacing:0.176000pt;}
.ws30{word-spacing:0.234667pt;}
.wscd{word-spacing:0.266667pt;}
.ws4e{word-spacing:0.293333pt;}
.wsc7{word-spacing:0.320000pt;}
.ws5b{word-spacing:0.336000pt;}
.ws4f{word-spacing:0.352000pt;}
.wsc8{word-spacing:0.373333pt;}
.wsa7{word-spacing:0.410667pt;}
.ws5a{word-spacing:0.432000pt;}
.ws6c{word-spacing:0.469333pt;}
.ws5e{word-spacing:0.480000pt;}
.ws27{word-spacing:0.506667pt;}
.ws33{word-spacing:0.528000pt;}
.ws89{word-spacing:0.586667pt;}
.ws58{word-spacing:0.624000pt;}
.ws4b{word-spacing:0.645333pt;}
.ws65{word-spacing:0.704000pt;}
.ws44{word-spacing:0.720000pt;}
.ws8a{word-spacing:0.762667pt;}
.ws78{word-spacing:0.821333pt;}
.ws2b{word-spacing:0.861333pt;}
.ws75{word-spacing:0.880000pt;}
.ws73{word-spacing:0.938667pt;}
.ws92{word-spacing:0.960000pt;}
.ws72{word-spacing:0.997333pt;}
.ws28{word-spacing:1.013333pt;}
.ws54{word-spacing:1.056000pt;}
.ws2c{word-spacing:1.064000pt;}
.wsc9{word-spacing:1.066667pt;}
.ws53{word-spacing:1.104000pt;}
.ws2e{word-spacing:1.114667pt;}
.ws5c{word-spacing:1.152000pt;}
.ws26{word-spacing:1.165333pt;}
.ws68{word-spacing:1.173333pt;}
.ws5d{word-spacing:1.200000pt;}
.ws2a{word-spacing:1.216000pt;}
.ws67{word-spacing:1.232000pt;}
.wsc5{word-spacing:1.280000pt;}
.ws6a{word-spacing:1.290667pt;}
.ws82{word-spacing:1.333333pt;}
.ws69{word-spacing:1.349333pt;}
.ws6b{word-spacing:1.408000pt;}
.ws2d{word-spacing:1.466667pt;}
.ws8d{word-spacing:1.701333pt;}
.wsce{word-spacing:2.506667pt;}
.ws4a{word-spacing:3.285333pt;}
.wsb9{word-spacing:4.493333pt;}
.wsb0{word-spacing:5.514667pt;}
.wsa8{word-spacing:5.925333pt;}
.wsaf{word-spacing:6.101333pt;}
.ws61{word-spacing:6.394667pt;}
.ws37{word-spacing:6.688000pt;}
.wsac{word-spacing:10.032000pt;}
.wscb{word-spacing:13.280000pt;}
.ws9a{word-spacing:13.552000pt;}
.ws97{word-spacing:23.034667pt;}
.ws98{word-spacing:23.706667pt;}
.wsd8{word-spacing:29.738667pt;}
.wsd6{word-spacing:29.781333pt;}
.ws3d{word-spacing:31.744000pt;}
.ws81{word-spacing:31.914667pt;}
.ws3f{word-spacing:32.016000pt;}
.wsd1{word-spacing:32.085333pt;}
.wsd3{word-spacing:36.266667pt;}
.wscf{word-spacing:42.864000pt;}
.ws9e{word-spacing:59.397333pt;}
.wsa3{word-spacing:63.018667pt;}
.ws9c{word-spacing:70.000000pt;}
.wsa4{word-spacing:72.986667pt;}
.ws95{word-spacing:73.882667pt;}
.wsa2{word-spacing:87.770667pt;}
.ws99{word-spacing:89.562667pt;}
.ws9b{word-spacing:90.234667pt;}
.wsa5{word-spacing:96.618667pt;}
.ws9f{word-spacing:96.693333pt;}
.wsa6{word-spacing:117.861333pt;}
.wsd7{word-spacing:119.168000pt;}
.ws84{word-spacing:145.066667pt;}
.ws94{word-spacing:145.488000pt;}
.wsa0{word-spacing:180.208000pt;}
.wsa1{word-spacing:320.581333pt;}
.wsd2{word-spacing:329.898667pt;}
.ws85{word-spacing:358.880000pt;}
.ws7e{word-spacing:365.386667pt;}
.ws8e{word-spacing:497.386667pt;}
.ws87{word-spacing:520.320000pt;}
.ws8c{word-spacing:569.706667pt;}
._c{margin-left:-11.264000pt;}
._5{margin-left:-7.098667pt;}
._e{margin-left:-5.456000pt;}
._22{margin-left:-4.383615pt;}
._0{margin-left:-3.413333pt;}
._4{margin-left:-2.399615pt;}
._1{margin-left:-1.013718pt;}
._2{width:0.938667pt;}
._9{width:2.016000pt;}
._f{width:3.226667pt;}
._5b{width:7.947052pt;}
._58{width:9.728000pt;}
._7{width:10.656000pt;}
._3{width:12.646103pt;}
._8{width:14.640000pt;}
._24{width:17.300948pt;}
._d{width:21.354667pt;}
._42{width:26.955052pt;}
._59{width:28.373333pt;}
._43{width:32.106667pt;}
._3c{width:36.724948pt;}
._36{width:40.667437pt;}
._b{width:42.410667pt;}
._23{width:47.947052pt;}
._44{width:51.744000pt;}
._40{width:53.386667pt;}
._1c{width:55.787052pt;}
._57{width:59.211052pt;}
._5a{width:61.290667pt;}
._15{width:66.240000pt;}
._a{width:69.451052pt;}
._3f{width:72.202667pt;}
._2c{width:74.836948pt;}
._3b{width:76.203052pt;}
._41{width:84.261333pt;}
._3d{width:85.322667pt;}
._3e{width:95.205333pt;}
._1a{width:96.213333pt;}
._20{width:103.200770pt;}
._47{width:106.768000pt;}
._27{width:115.146667pt;}
._38{width:126.336000pt;}
._4c{width:127.232000pt;}
._3a{width:128.874667pt;}
._4b{width:145.002667pt;}
._45{width:153.888000pt;}
._49{width:159.301333pt;}
._54{width:162.773333pt;}
._12{width:165.867052pt;}
._46{width:168.149333pt;}
._48{width:189.504000pt;}
._1e{width:200.853333pt;}
._53{width:207.312000pt;}
._4a{width:216.085333pt;}
._19{width:220.000000pt;}
._4d{width:221.498667pt;}
._2e{width:232.170282pt;}
._29{width:243.316948pt;}
._1b{width:258.400000pt;}
._16{width:263.520000pt;}
._21{width:276.213333pt;}
._30{width:315.636948pt;}
._35{width:317.823615pt;}
._2d{width:337.983615pt;}
._37{width:339.925718pt;}
._4f{width:346.042667pt;}
._28{width:350.826667pt;}
._50{width:367.322667pt;}
._34{width:370.996948pt;}
._17{width:387.573333pt;}
._51{width:393.978667pt;}
._1f{width:397.280000pt;}
._14{width:401.867052pt;}
._10{width:417.813333pt;}
._2f{width:419.626667pt;}
._33{width:439.583615pt;}
._25{width:443.583615pt;}
._26{width:449.290282pt;}
._31{width:472.756948pt;}
._2a{width:476.223615pt;}
._11{width:496.533718pt;}
._55{width:513.968000pt;}
._1d{width:529.920000pt;}
._13{width:557.600000pt;}
._2b{width:562.890282pt;}
._32{width:587.636948pt;}
._39{width:589.658282pt;}
._56{width:607.301333pt;}
._4e{width:666.176000pt;}
._52{width:879.386667pt;}
._18{width:991.488000pt;}
._6{width:1013.205333pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:0.362667pt;}
.y20{bottom:1.029333pt;}
.y1e{bottom:1.696000pt;}
.y22{bottom:2.362667pt;}
.y2a{bottom:3.029333pt;}
.y242{bottom:28.106667pt;}
.y1e6{bottom:48.440000pt;}
.yb9{bottom:48.772000pt;}
.y143{bottom:48.936000pt;}
.y1ce{bottom:48.992000pt;}
.y18f{bottom:49.006667pt;}
.y81{bottom:49.036000pt;}
.y59{bottom:49.104000pt;}
.y11d{bottom:49.158667pt;}
.ydc{bottom:49.182667pt;}
.y158{bottom:49.336000pt;}
.yfe{bottom:49.482667pt;}
.y1ac{bottom:49.494667pt;}
.y9b{bottom:49.626667pt;}
.y15{bottom:50.256000pt;}
.y247{bottom:57.840000pt;}
.y142{bottom:61.608000pt;}
.y58{bottom:61.776000pt;}
.y1e5{bottom:62.440000pt;}
.yb8{bottom:64.098667pt;}
.y1cd{bottom:64.318667pt;}
.y18e{bottom:64.333333pt;}
.y80{bottom:64.362667pt;}
.y11c{bottom:64.485333pt;}
.ydb{bottom:64.509333pt;}
.y157{bottom:64.662667pt;}
.yfd{bottom:64.809333pt;}
.y1ab{bottom:64.821333pt;}
.y14{bottom:65.582667pt;}
.y141{bottom:74.280000pt;}
.y57{bottom:74.448000pt;}
.y1e4{bottom:76.440000pt;}
.y1cc{bottom:79.645333pt;}
.y18d{bottom:79.660000pt;}
.y7f{bottom:79.689333pt;}
.y11b{bottom:79.812000pt;}
.yda{bottom:79.836000pt;}
.y156{bottom:79.989333pt;}
.yfc{bottom:80.136000pt;}
.y1aa{bottom:80.148000pt;}
.y13{bottom:80.909333pt;}
.y241{bottom:81.546667pt;}
.yb7{bottom:87.096000pt;}
.y56{bottom:87.120000pt;}
.y1e3{bottom:90.440000pt;}
.y21c{bottom:92.893333pt;}
.y1cb{bottom:94.972000pt;}
.y18c{bottom:94.986667pt;}
.y7e{bottom:95.016000pt;}
.y11a{bottom:95.138667pt;}
.yd9{bottom:95.162667pt;}
.y155{bottom:95.316000pt;}
.y12{bottom:96.236000pt;}
.y240{bottom:98.336000pt;}
.y55{bottom:99.792000pt;}
.yfb{bottom:103.133333pt;}
.y1a9{bottom:103.145333pt;}
.y1e2{bottom:104.440000pt;}
.y1ca{bottom:110.298667pt;}
.y18b{bottom:110.313333pt;}
.y7d{bottom:110.342667pt;}
.y119{bottom:110.465333pt;}
.yd8{bottom:110.489333pt;}
.y154{bottom:110.642667pt;}
.y23f{bottom:111.338667pt;}
.y11{bottom:111.562667pt;}
.y54{bottom:112.464000pt;}
.y140{bottom:115.480000pt;}
.y1e1{bottom:118.440000pt;}
.yfa{bottom:118.460000pt;}
.y218{bottom:124.200000pt;}
.y53{bottom:125.136000pt;}
.yb6{bottom:125.434667pt;}
.y1c9{bottom:125.625333pt;}
.y18a{bottom:125.640000pt;}
.y7c{bottom:125.669333pt;}
.yd7{bottom:125.816000pt;}
.y153{bottom:125.969333pt;}
.y10{bottom:126.889333pt;}
.y23e{bottom:128.128000pt;}
.y13f{bottom:130.806667pt;}
.y1e0{bottom:132.440000pt;}
.yf9{bottom:133.786667pt;}
.y52{bottom:137.808000pt;}
.y217{bottom:138.869333pt;}
.yb5{bottom:140.761333pt;}
.y1c8{bottom:140.952000pt;}
.y189{bottom:140.966667pt;}
.y7b{bottom:140.996000pt;}
.y118{bottom:141.133333pt;}
.yd6{bottom:141.142667pt;}
.y152{bottom:141.296000pt;}
.yf{bottom:142.216000pt;}
.y1a8{bottom:143.181333pt;}
.y9e{bottom:143.733333pt;}
.y23d{bottom:144.896000pt;}
.y13e{bottom:146.133333pt;}
.y1df{bottom:146.440000pt;}
.yf8{bottom:149.113333pt;}
.y51{bottom:150.480000pt;}
.yb4{bottom:156.088000pt;}
.y188{bottom:156.293333pt;}
.y7a{bottom:156.322667pt;}
.y117{bottom:156.460000pt;}
.y151{bottom:156.622667pt;}
.y1a7{bottom:158.508000pt;}
.y216{bottom:161.093333pt;}
.y13d{bottom:161.460000pt;}
.y23c{bottom:161.685333pt;}
.y50{bottom:163.152000pt;}
.y1c7{bottom:163.949333pt;}
.yd5{bottom:164.140000pt;}
.yf7{bottom:164.440000pt;}
.ye{bottom:165.213333pt;}
.y1de{bottom:168.290667pt;}
.yb3{bottom:171.414667pt;}
.y187{bottom:171.620000pt;}
.y79{bottom:171.649333pt;}
.y116{bottom:171.786667pt;}
.y1a6{bottom:173.834667pt;}
.y4f{bottom:175.824000pt;}
.y13c{bottom:176.786667pt;}
.y215{bottom:177.650667pt;}
.y23b{bottom:178.474667pt;}
.yd4{bottom:179.466667pt;}
.y150{bottom:179.620000pt;}
.y186{bottom:186.946667pt;}
.y78{bottom:186.976000pt;}
.y4e{bottom:188.496000pt;}
.y1a5{bottom:189.161333pt;}
.y9d{bottom:190.840000pt;}
.y13b{bottom:192.184000pt;}
.y214{bottom:194.198667pt;}
.yd3{bottom:194.793333pt;}
.y14f{bottom:194.946667pt;}
.yb2{bottom:201.012000pt;}
.y4d{bottom:201.168000pt;}
.y185{bottom:202.273333pt;}
.y1c6{bottom:202.288000pt;}
.y77{bottom:202.302667pt;}
.yf6{bottom:202.773333pt;}
.y1a4{bottom:204.488000pt;}
.y13a{bottom:207.510667pt;}
.y246{bottom:207.946667pt;}
.yd2{bottom:210.120000pt;}
.y14e{bottom:210.273333pt;}
.y213{bottom:210.758667pt;}
.y4c{bottom:213.824000pt;}
.yb1{bottom:216.338667pt;}
.yf5{bottom:216.773333pt;}
.y184{bottom:217.600000pt;}
.y1c5{bottom:217.614667pt;}
.y76{bottom:217.629333pt;}
.y1dd{bottom:217.644000pt;}
.y1a3{bottom:219.814667pt;}
.y139{bottom:222.837333pt;}
.y25{bottom:224.000000pt;}
.y115{bottom:224.653333pt;}
.y4b{bottom:226.496000pt;}
.y212{bottom:227.318667pt;}
.y9c{bottom:230.840000pt;}
.y23a{bottom:231.914667pt;}
.y183{bottom:232.926667pt;}
.y1c4{bottom:232.941333pt;}
.y75{bottom:232.956000pt;}
.y1dc{bottom:232.970667pt;}
.y14d{bottom:233.270667pt;}
.yf4{bottom:234.773333pt;}
.y1a2{bottom:235.141333pt;}
.y24{bottom:237.333333pt;}
.y138{bottom:238.164000pt;}
.y4a{bottom:239.168000pt;}
.y114{bottom:243.186667pt;}
.y211{bottom:243.878667pt;}
.y239{bottom:243.914667pt;}
.yd1{bottom:244.626667pt;}
.yb0{bottom:245.936000pt;}
.y182{bottom:248.253333pt;}
.y74{bottom:248.282667pt;}
.y1db{bottom:248.297333pt;}
.y49{bottom:251.808000pt;}
.yf3{bottom:252.773333pt;}
.y23{bottom:253.333333pt;}
.y137{bottom:253.490667pt;}
.y238{bottom:255.914667pt;}
.y1c3{bottom:255.938667pt;}
.y29{bottom:256.000000pt;}
.y113{bottom:257.720000pt;}
.y1a1{bottom:258.138667pt;}
.y210{bottom:260.426667pt;}
.yaf{bottom:261.262667pt;}
.yd0{bottom:262.626667pt;}
.y181{bottom:263.580000pt;}
.y73{bottom:263.609333pt;}
.y1da{bottom:263.624000pt;}
.y48{bottom:264.480000pt;}
.y21{bottom:266.666667pt;}
.y136{bottom:268.817333pt;}
.y28{bottom:270.666667pt;}
.yf2{bottom:270.773333pt;}
.y14c{bottom:271.609333pt;}
.y1a0{bottom:273.465333pt;}
.y112{bottom:276.253333pt;}
.yae{bottom:276.589333pt;}
.y20f{bottom:276.986667pt;}
.y47{bottom:277.152000pt;}
.y237{bottom:277.365333pt;}
.y180{bottom:278.906667pt;}
.y72{bottom:278.936000pt;}
.y1d9{bottom:278.950667pt;}
.ycf{bottom:280.626667pt;}
.y1f{bottom:286.666667pt;}
.y14b{bottom:286.936000pt;}
.y26{bottom:288.000000pt;}
.yf1{bottom:288.773333pt;}
.y19f{bottom:288.792000pt;}
.y236{bottom:289.365333pt;}
.y46{bottom:289.824000pt;}
.y111{bottom:290.786667pt;}
.y20e{bottom:291.652000pt;}
.y135{bottom:291.814667pt;}
.y17f{bottom:294.233333pt;}
.y71{bottom:294.262667pt;}
.y1c2{bottom:294.277333pt;}
.yce{bottom:294.626667pt;}
.y1d{bottom:300.000000pt;}
.y14a{bottom:302.262667pt;}
.y45{bottom:302.496000pt;}
.y19e{bottom:304.118667pt;}
.yad{bottom:306.186667pt;}
.yf0{bottom:306.773333pt;}
.y20d{bottom:308.212000pt;}
.y110{bottom:309.320000pt;}
.y17e{bottom:309.560000pt;}
.y70{bottom:309.589333pt;}
.y1c1{bottom:309.604000pt;}
.y235{bottom:310.816000pt;}
.ycd{bottom:312.626667pt;}
.y44{bottom:315.168000pt;}
.y9a{bottom:317.274667pt;}
.y149{bottom:317.589333pt;}
.y234{bottom:322.816000pt;}
.y1c{bottom:323.853333pt;}
.y20c{bottom:324.772000pt;}
.y17d{bottom:324.886667pt;}
.y6f{bottom:324.916000pt;}
.y1c0{bottom:324.930667pt;}
.y19d{bottom:327.116000pt;}
.y43{bottom:327.840000pt;}
.y134{bottom:330.153333pt;}
.ycc{bottom:330.626667pt;}
.yef{bottom:332.113333pt;}
.y99{bottom:332.601333pt;}
.y148{bottom:332.916000pt;}
.yac{bottom:335.784000pt;}
.y6e{bottom:340.242667pt;}
.y1bf{bottom:340.257333pt;}
.y20b{bottom:341.320000pt;}
.y10f{bottom:342.386667pt;}
.y233{bottom:344.256000pt;}
.y133{bottom:345.480000pt;}
.yee{bottom:347.440000pt;}
.y17c{bottom:347.884000pt;}
.y98{bottom:347.928000pt;}
.y147{bottom:348.242667pt;}
.ycb{bottom:348.626667pt;}
.yab{bottom:351.110667pt;}
.y6d{bottom:355.569333pt;}
.y1be{bottom:355.584000pt;}
.y10e{bottom:356.920000pt;}
.y20a{bottom:357.880000pt;}
.y1ff{bottom:359.453333pt;}
.y132{bottom:360.806667pt;}
.y232{bottom:361.941333pt;}
.y42{bottom:363.133333pt;}
.y17b{bottom:363.210667pt;}
.y97{bottom:363.254667pt;}
.y146{bottom:363.569333pt;}
.yaa{bottom:366.437333pt;}
.y19c{bottom:367.024000pt;}
.y6c{bottom:370.896000pt;}
.y1bd{bottom:370.910667pt;}
.yd{bottom:372.213333pt;}
.y209{bottom:372.542667pt;}
.y1fe{bottom:373.453333pt;}
.yca{bottom:374.160000pt;}
.y10d{bottom:375.453333pt;}
.y131{bottom:376.133333pt;}
.y41{bottom:378.460000pt;}
.y17a{bottom:378.537333pt;}
.y96{bottom:378.581333pt;}
.y145{bottom:378.896000pt;}
.ya9{bottom:381.764000pt;}
.y19b{bottom:382.350667pt;}
.yc{bottom:385.512667pt;}
.yed{bottom:385.773333pt;}
.y6b{bottom:386.222667pt;}
.y1bc{bottom:386.237333pt;}
.y1fd{bottom:387.453333pt;}
.yc9{bottom:389.486667pt;}
.y10c{bottom:389.986667pt;}
.y245{bottom:391.360000pt;}
.y130{bottom:391.460000pt;}
.y40{bottom:393.820000pt;}
.y95{bottom:393.908000pt;}
.y19a{bottom:397.677333pt;}
.yb{bottom:398.850667pt;}
.y223{bottom:399.546667pt;}
.y1fc{bottom:401.453333pt;}
.y179{bottom:401.534667pt;}
.y6a{bottom:401.549333pt;}
.y1bb{bottom:401.564000pt;}
.y1d8{bottom:401.593333pt;}
.y144{bottom:401.893333pt;}
.yec{bottom:403.773333pt;}
.yc8{bottom:404.813333pt;}
.y12f{bottom:406.786667pt;}
.y10b{bottom:408.520000pt;}
.y3f{bottom:409.146667pt;}
.y94{bottom:409.234667pt;}
.ya8{bottom:411.361333pt;}
.ya{bottom:412.188667pt;}
.y199{bottom:413.004000pt;}
.y1fb{bottom:415.453333pt;}
.y222{bottom:416.649333pt;}
.y69{bottom:416.876000pt;}
.y1ba{bottom:416.890667pt;}
.y1d7{bottom:416.920000pt;}
.y231{bottom:418.602667pt;}
.yc7{bottom:420.140000pt;}
.yeb{bottom:421.773333pt;}
.y10a{bottom:423.053333pt;}
.y3e{bottom:424.473333pt;}
.y93{bottom:424.561333pt;}
.y9{bottom:425.526667pt;}
.ya7{bottom:426.688000pt;}
.y198{bottom:428.330667pt;}
.y1fa{bottom:429.453333pt;}
.y221{bottom:429.986667pt;}
.y68{bottom:432.202667pt;}
.y1b9{bottom:432.217333pt;}
.y1d6{bottom:432.246667pt;}
.yc6{bottom:435.466667pt;}
.y159{bottom:435.760000pt;}
.y12e{bottom:437.453333pt;}
.y8{bottom:438.864667pt;}
.yea{bottom:439.773333pt;}
.y3d{bottom:439.800000pt;}
.y178{bottom:439.873333pt;}
.y230{bottom:440.042667pt;}
.y109{bottom:441.586667pt;}
.ya6{bottom:442.014667pt;}
.y1f9{bottom:443.453333pt;}
.y220{bottom:447.101333pt;}
.y67{bottom:447.529333pt;}
.y1b8{bottom:447.544000pt;}
.y92{bottom:447.558667pt;}
.y1d5{bottom:447.573333pt;}
.yc5{bottom:450.793333pt;}
.y197{bottom:451.328000pt;}
.y12d{bottom:451.453333pt;}
.y22f{bottom:452.042667pt;}
.y7{bottom:452.202667pt;}
.ye9{bottom:453.773333pt;}
.y3c{bottom:455.126667pt;}
.y177{bottom:455.200000pt;}
.y108{bottom:456.120000pt;}
.ya5{bottom:457.341333pt;}
.y1f8{bottom:457.453333pt;}
.y21f{bottom:460.437333pt;}
.y16f{bottom:460.489333pt;}
.y66{bottom:462.856000pt;}
.y1b7{bottom:462.870667pt;}
.y91{bottom:462.885333pt;}
.y1d4{bottom:462.900000pt;}
.y6{bottom:465.540667pt;}
.yc4{bottom:466.120000pt;}
.y12c{bottom:469.453333pt;}
.y3b{bottom:470.466667pt;}
.y176{bottom:470.526667pt;}
.y1f7{bottom:471.453333pt;}
.ye8{bottom:471.773333pt;}
.y22e{bottom:473.493333pt;}
.y21e{bottom:473.773333pt;}
.y107{bottom:474.653333pt;}
.y16e{bottom:475.600000pt;}
.y65{bottom:478.182667pt;}
.y1b6{bottom:478.197333pt;}
.y90{bottom:478.212000pt;}
.y1d3{bottom:478.226667pt;}
.y5{bottom:478.878667pt;}
.y12b{bottom:483.453333pt;}
.y1f6{bottom:485.453333pt;}
.y22d{bottom:485.493333pt;}
.y3a{bottom:485.793333pt;}
.y175{bottom:485.853333pt;}
.y16d{bottom:486.929333pt;}
.ya4{bottom:486.938667pt;}
.y21d{bottom:487.106667pt;}
.y106{bottom:489.186667pt;}
.ye7{bottom:489.773333pt;}
.y4{bottom:492.216667pt;}
.y196{bottom:493.494667pt;}
.y64{bottom:493.509333pt;}
.y1b5{bottom:493.524000pt;}
.y8f{bottom:493.538667pt;}
.y1d2{bottom:493.553333pt;}
.y1f5{bottom:499.453333pt;}
.yc3{bottom:500.626667pt;}
.y174{bottom:501.180000pt;}
.y39{bottom:501.196000pt;}
.y12a{bottom:501.453333pt;}
.y16c{bottom:502.040000pt;}
.ya3{bottom:502.265333pt;}
.y208{bottom:506.438667pt;}
.y22c{bottom:506.944000pt;}
.y105{bottom:507.720000pt;}
.y195{bottom:508.821333pt;}
.y63{bottom:508.836000pt;}
.y8e{bottom:508.865333pt;}
.y1d1{bottom:508.880000pt;}
.y16b{bottom:513.376000pt;}
.y1f4{bottom:513.453333pt;}
.ye6{bottom:515.146667pt;}
.y173{bottom:516.506667pt;}
.y1b4{bottom:516.521333pt;}
.ya2{bottom:517.592000pt;}
.yc2{bottom:518.626667pt;}
.y3{bottom:518.880000pt;}
.y22b{bottom:518.944000pt;}
.y129{bottom:519.453333pt;}
.y104{bottom:522.253333pt;}
.y207{bottom:522.986667pt;}
.y194{bottom:524.148000pt;}
.y8d{bottom:524.192000pt;}
.y38{bottom:524.193333pt;}
.y1d0{bottom:524.206667pt;}
.y16a{bottom:524.706667pt;}
.y1f3{bottom:527.453333pt;}
.ye5{bottom:530.473333pt;}
.y172{bottom:531.833333pt;}
.ya1{bottom:532.918667pt;}
.yc1{bottom:536.626667pt;}
.y128{bottom:537.453333pt;}
.y62{bottom:539.504000pt;}
.y8c{bottom:539.518667pt;}
.y37{bottom:539.520000pt;}
.y1cf{bottom:539.533333pt;}
.y206{bottom:539.546667pt;}
.y169{bottom:539.826667pt;}
.y22a{bottom:540.384000pt;}
.y103{bottom:540.786667pt;}
.y1f2{bottom:541.453333pt;}
.ye4{bottom:545.800000pt;}
.y193{bottom:547.145333pt;}
.y171{bottom:547.160000pt;}
.y168{bottom:551.158667pt;}
.y205{bottom:554.213333pt;}
.yc0{bottom:554.626667pt;}
.y61{bottom:554.830667pt;}
.y8b{bottom:554.845333pt;}
.y36{bottom:554.846667pt;}
.y1b3{bottom:554.860000pt;}
.y127{bottom:555.453333pt;}
.ye3{bottom:561.126667pt;}
.y229{bottom:561.834667pt;}
.y167{bottom:562.489333pt;}
.ya0{bottom:562.516000pt;}
.y1f1{bottom:569.453333pt;}
.y60{bottom:570.157333pt;}
.y8a{bottom:570.172000pt;}
.y35{bottom:570.173333pt;}
.y1b2{bottom:570.186667pt;}
.y204{bottom:570.773333pt;}
.ybf{bottom:572.626667pt;}
.y126{bottom:573.453333pt;}
.ye2{bottom:576.453333pt;}
.y166{bottom:577.600000pt;}
.y9f{bottom:577.842667pt;}
.y228{bottom:579.498667pt;}
.y1f0{bottom:583.453333pt;}
.y203{bottom:585.440000pt;}
.y5f{bottom:585.484000pt;}
.y102{bottom:585.498667pt;}
.y34{bottom:585.500000pt;}
.y1b1{bottom:585.513333pt;}
.y165{bottom:588.933333pt;}
.y192{bottom:589.312000pt;}
.ybe{bottom:590.626667pt;}
.y125{bottom:591.453333pt;}
.y89{bottom:593.169333pt;}
.y1ef{bottom:597.453333pt;}
.y5e{bottom:600.810667pt;}
.y101{bottom:600.825333pt;}
.y33{bottom:600.826667pt;}
.y1b0{bottom:600.840000pt;}
.y202{bottom:602.000000pt;}
.y164{bottom:604.053333pt;}
.y191{bottom:604.638667pt;}
.y244{bottom:608.346667pt;}
.y88{bottom:608.496000pt;}
.y124{bottom:609.453333pt;}
.y1ee{bottom:611.453333pt;}
.ye1{bottom:614.786667pt;}
.y163{bottom:615.385333pt;}
.y5d{bottom:616.137333pt;}
.ybd{bottom:616.152000pt;}
.y32{bottom:616.153333pt;}
.y1af{bottom:616.166667pt;}
.y201{bottom:616.665333pt;}
.y123{bottom:623.453333pt;}
.y170{bottom:623.808000pt;}
.y87{bottom:623.822667pt;}
.y1ed{bottom:625.453333pt;}
.y162{bottom:626.716000pt;}
.y190{bottom:627.636000pt;}
.y1b{bottom:630.088000pt;}
.y5c{bottom:631.464000pt;}
.ybc{bottom:631.478667pt;}
.y31{bottom:631.480000pt;}
.y1ae{bottom:631.493333pt;}
.ye0{bottom:632.786667pt;}
.y200{bottom:633.213333pt;}
.y227{bottom:636.160000pt;}
.y86{bottom:639.149333pt;}
.y1ec{bottom:639.453333pt;}
.y122{bottom:641.453333pt;}
.y161{bottom:641.826667pt;}
.y1a{bottom:642.760000pt;}
.ybb{bottom:646.805333pt;}
.y30{bottom:646.806667pt;}
.y1ad{bottom:646.820000pt;}
.ydf{bottom:650.786667pt;}
.y160{bottom:653.162667pt;}
.y1eb{bottom:653.453333pt;}
.y5b{bottom:654.461333pt;}
.y85{bottom:654.476000pt;}
.y21b{bottom:654.640000pt;}
.y121{bottom:655.453333pt;}
.y226{bottom:657.610667pt;}
.y19{bottom:658.760000pt;}
.yba{bottom:662.132000pt;}
.y2f{bottom:662.133333pt;}
.y100{bottom:662.146667pt;}
.y15f{bottom:664.493333pt;}
.yde{bottom:664.786667pt;}
.y1ea{bottom:667.453333pt;}
.y225{bottom:669.610667pt;}
.y5a{bottom:669.788000pt;}
.y84{bottom:669.802667pt;}
.y21a{bottom:669.973333pt;}
.y120{bottom:673.453333pt;}
.y2e{bottom:677.460000pt;}
.yff{bottom:677.473333pt;}
.y15e{bottom:679.613333pt;}
.y1e9{bottom:681.453333pt;}
.ydd{bottom:682.786667pt;}
.y83{bottom:685.129333pt;}
.y219{bottom:685.306667pt;}
.y224{bottom:685.386667pt;}
.y15d{bottom:690.945333pt;}
.y11f{bottom:691.453333pt;}
.y2d{bottom:692.800000pt;}
.y1e8{bottom:695.453333pt;}
.y18{bottom:698.760000pt;}
.y82{bottom:700.456000pt;}
.y15c{bottom:702.276000pt;}
.y11e{bottom:705.453333pt;}
.y2c{bottom:708.126667pt;}
.y1e7{bottom:709.453333pt;}
.y15b{bottom:717.386667pt;}
.y1{bottom:717.426667pt;}
.y17{bottom:720.093333pt;}
.y2b{bottom:723.453333pt;}
.y243{bottom:727.560000pt;}
.y15a{bottom:728.720000pt;}
.y16{bottom:765.426667pt;}
.y2{bottom:821.333333pt;}
.hc{height:8.000000pt;}
.ha{height:9.333333pt;}
.h8{height:10.666667pt;}
.hb{height:12.000000pt;}
.hd{height:13.333333pt;}
.h1b{height:34.144000pt;}
.h18{height:39.834667pt;}
.h19{height:40.469333pt;}
.h2{height:41.854167pt;}
.h9{height:41.875000pt;}
.h5{height:45.525333pt;}
.h7{height:51.216000pt;}
.h12{height:52.032000pt;}
.h14{height:52.096000pt;}
.h13{height:52.160000pt;}
.h3{height:54.061333pt;}
.h15{height:56.906667pt;}
.h16{height:57.813333pt;}
.h4{height:62.597333pt;}
.h17{height:62.922133pt;}
.h11{height:63.044800pt;}
.h1a{height:63.082667pt;}
.h10{height:63.124800pt;}
.he{height:63.290667pt;}
.hf{height:63.594667pt;}
.h6{height:68.288000pt;}
.h1{height:91.050667pt;}
.h0{height:793.333333pt;}
.wa{width:126.666667pt;}
.wb{width:132.000000pt;}
.w8{width:137.333333pt;}
.w9{width:170.666667pt;}
.w6{width:178.666667pt;}
.w5{width:182.666667pt;}
.w7{width:188.000000pt;}
.w2{width:205.333333pt;}
.w1{width:206.666667pt;}
.w4{width:212.000000pt;}
.w3{width:213.333333pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x2{left:4.000000pt;}
.xc{left:34.144000pt;}
.xd{left:44.917200pt;}
.x8{left:48.767867pt;}
.xb{left:57.333333pt;}
.x9{left:62.666667pt;}
.x3{left:66.400000pt;}
.x7{left:68.000000pt;}
.x19{left:69.733333pt;}
.x18{left:70.813333pt;}
.x23{left:75.442667pt;}
.x11{left:80.746533pt;}
.x4{left:86.426000pt;}
.x15{left:87.485333pt;}
.xe{left:89.333333pt;}
.xf{left:91.125200pt;}
.x10{left:93.333333pt;}
.xa{left:97.216133pt;}
.x1c{left:105.833333pt;}
.x1d{left:121.346667pt;}
.x28{left:143.613333pt;}
.x20{left:146.320000pt;}
.x1f{left:156.520000pt;}
.x1{left:157.466667pt;}
.x1e{left:159.149000pt;}
.x26{left:165.586667pt;}
.x27{left:170.880000pt;}
.x17{left:205.653333pt;}
.x29{left:229.173333pt;}
.x25{left:245.608000pt;}
.x6{left:261.360000pt;}
.x16{left:262.800000pt;}
.x1b{left:274.280000pt;}
.x1a{left:275.346667pt;}
.x24{left:284.680000pt;}
.x12{left:293.333333pt;}
.x13{left:294.666667pt;}
.x14{left:296.000000pt;}
.x22{left:339.426667pt;}
.x5{left:386.840000pt;}
.x21{left:404.253333pt;}
}




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