
    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_6092b2801d0dd2c8ba4f9ad9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120117;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_2a31cebc5fcaa54ac17c9e1b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.138184;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_037514f8c9fd4ec92ba8c1be.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_4beaebd0d8a1dcada898f14d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905273;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;}
.m1{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);}
.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);}
.v4{vertical-align:-15.840000px;}
.v1{vertical-align:-2.376000px;}
.v2{vertical-align:-1.056000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.833400px;}
.ls9{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000300px;}
.ls7{letter-spacing:0.000600px;}
.ls6c{letter-spacing:0.004800px;}
.ls5a{letter-spacing:0.010200px;}
.ls4f{letter-spacing:0.010800px;}
.ls3a{letter-spacing:0.014400px;}
.ls5b{letter-spacing:0.018600px;}
.ls48{letter-spacing:0.019200px;}
.ls5c{letter-spacing:0.022200px;}
.ls58{letter-spacing:0.025800px;}
.ls47{letter-spacing:0.030600px;}
.ls61{letter-spacing:0.033000px;}
.ls57{letter-spacing:0.040500px;}
.ls59{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.060000px;}
.ls60{letter-spacing:0.060600px;}
.ls56{letter-spacing:0.063600px;}
.ls19{letter-spacing:0.066000px;}
.ls30{letter-spacing:0.072600px;}
.ls28{letter-spacing:0.096000px;}
.ls46{letter-spacing:0.104400px;}
.ls3d{letter-spacing:0.108000px;}
.ls45{letter-spacing:0.112800px;}
.ls5{letter-spacing:0.120000px;}
.ls3c{letter-spacing:0.121500px;}
.ls3b{letter-spacing:0.127800px;}
.ls8{letter-spacing:0.132000px;}
.ls70{letter-spacing:0.162000px;}
.ls15{letter-spacing:0.180000px;}
.ls6f{letter-spacing:0.188400px;}
.ls51{letter-spacing:0.195600px;}
.ls4e{letter-spacing:0.196200px;}
.ls4d{letter-spacing:0.196800px;}
.ls23{letter-spacing:0.198000px;}
.ls4c{letter-spacing:0.202500px;}
.ls52{letter-spacing:0.216000px;}
.ls4b{letter-spacing:0.235200px;}
.ls50{letter-spacing:0.237000px;}
.ls49{letter-spacing:0.237600px;}
.lsd{letter-spacing:0.240000px;}
.ls41{letter-spacing:0.243000px;}
.ls4a{letter-spacing:0.256800px;}
.ls42{letter-spacing:0.259200px;}
.ls11{letter-spacing:0.264000px;}
.ls43{letter-spacing:0.270000px;}
.ls2a{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.300000px;}
.ls71{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls5e{letter-spacing:0.364500px;}
.ls5f{letter-spacing:0.369600px;}
.ls40{letter-spacing:0.378000px;}
.ls3f{letter-spacing:0.385800px;}
.ls5d{letter-spacing:0.386400px;}
.ls0{letter-spacing:0.396000px;}
.ls3e{letter-spacing:0.415200px;}
.ls13{letter-spacing:0.420000px;}
.ls66{letter-spacing:0.432000px;}
.ls53{letter-spacing:0.445500px;}
.ls65{letter-spacing:0.453600px;}
.ls1{letter-spacing:0.462000px;}
.lse{letter-spacing:0.480000px;}
.ls63{letter-spacing:0.486000px;}
.ls64{letter-spacing:0.507000px;}
.ls62{letter-spacing:0.520200px;}
.ls69{letter-spacing:0.526500px;}
.ls2{letter-spacing:0.528000px;}
.ls6a{letter-spacing:0.535800px;}
.ls6e{letter-spacing:0.536400px;}
.ls35{letter-spacing:0.539700px;}
.lsc{letter-spacing:0.540000px;}
.ls68{letter-spacing:0.544200px;}
.ls6d{letter-spacing:0.577200px;}
.ls34{letter-spacing:0.585000px;}
.ls39{letter-spacing:0.587400px;}
.ls37{letter-spacing:0.590700px;}
.ls38{letter-spacing:0.591000px;}
.ls33{letter-spacing:0.594000px;}
.ls14{letter-spacing:0.600000px;}
.ls32{letter-spacing:0.642900px;}
.ls3{letter-spacing:0.660000px;}
.ls55{letter-spacing:11.792700px;}
.ls27{letter-spacing:12.256200px;}
.lsf{letter-spacing:13.320000px;}
.ls6b{letter-spacing:13.490700px;}
.ls16{letter-spacing:13.500000px;}
.ls54{letter-spacing:14.548800px;}
.ls18{letter-spacing:14.700000px;}
.ls25{letter-spacing:14.880000px;}
.ls10{letter-spacing:14.940000px;}
.ls26{letter-spacing:15.000000px;}
.ls44{letter-spacing:15.120000px;}
.ls2e{letter-spacing:15.180000px;}
.ls67{letter-spacing:15.282000px;}
.ls17{letter-spacing:15.540000px;}
.ls24{letter-spacing:16.434000px;}
.lsa{letter-spacing:16.500000px;}
.ls1c{letter-spacing:16.920000px;}
.ls36{letter-spacing:17.160000px;}
.ls29{letter-spacing:19.803000px;}
.ls2f{letter-spacing:20.196000px;}
.ls20{letter-spacing:34.518000px;}
.ls21{letter-spacing:60.324000px;}
.ls1f{letter-spacing:63.030000px;}
.ls1e{letter-spacing:83.820000px;}
.ls2d{letter-spacing:165.198000px;}
.ls2c{letter-spacing:183.282000px;}
.ls1d{letter-spacing:224.004000px;}
.ls2b{letter-spacing:233.310000px;}
.ls22{letter-spacing:397.386000px;}
.ls1b{letter-spacing:476.916000px;}
.ls1a{letter-spacing:782.298000px;}
.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;}
}
.ws30{word-spacing:-211.134000px;}
.ws1{word-spacing:-33.000000px;}
.ws41{word-spacing:-17.160000px;}
.ws3c{word-spacing:-17.094000px;}
.ws4c{word-spacing:-16.698000px;}
.ws15{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.500000px;}
.ws1c{word-spacing:-15.600000px;}
.ws9{word-spacing:-15.540000px;}
.wsc{word-spacing:-15.480000px;}
.ws2b{word-spacing:-15.420000px;}
.ws14{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.240000px;}
.ws17{word-spacing:-15.180000px;}
.wsb{word-spacing:-15.000000px;}
.ws8d{word-spacing:-13.932000px;}
.ws56{word-spacing:-13.770000px;}
.ws51{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.375000px;}
.ws3d{word-spacing:-11.835000px;}
.ws6e{word-spacing:-11.550000px;}
.ws3e{word-spacing:-11.250000px;}
.ws8f{word-spacing:-10.651500px;}
.ws89{word-spacing:-10.611000px;}
.ws8b{word-spacing:-10.570500px;}
.ws7f{word-spacing:-10.489500px;}
.ws54{word-spacing:-10.368000px;}
.ws63{word-spacing:-10.327500px;}
.ws4d{word-spacing:-10.246500px;}
.ws73{word-spacing:-10.165500px;}
.ws50{word-spacing:-10.125000px;}
.ws6f{word-spacing:-9.000000px;}
.ws1f{word-spacing:-4.020000px;}
.ws26{word-spacing:-3.696000px;}
.ws49{word-spacing:-3.168000px;}
.ws37{word-spacing:-3.102000px;}
.ws27{word-spacing:-2.244000px;}
.ws28{word-spacing:-2.112000px;}
.ws29{word-spacing:-1.914000px;}
.ws31{word-spacing:-1.848000px;}
.ws16{word-spacing:-1.800000px;}
.ws32{word-spacing:-1.716000px;}
.ws4a{word-spacing:-1.650000px;}
.ws1b{word-spacing:-1.560000px;}
.ws57{word-spacing:-1.491600px;}
.wse{word-spacing:-1.440000px;}
.ws10{word-spacing:-1.140000px;}
.ws1a{word-spacing:-1.080000px;}
.ws24{word-spacing:-0.924000px;}
.ws20{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.480000px;}
.ws4b{word-spacing:-0.330000px;}
.ws1d{word-spacing:-0.300000px;}
.ws36{word-spacing:-0.240000px;}
.ws23{word-spacing:-0.198000px;}
.ws2a{word-spacing:-0.180000px;}
.ws25{word-spacing:-0.132000px;}
.ws19{word-spacing:-0.120000px;}
.ws5c{word-spacing:-0.116400px;}
.ws95{word-spacing:-0.070800px;}
.ws22{word-spacing:-0.066000px;}
.wsd{word-spacing:-0.060000px;}
.ws35{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws1e{word-spacing:0.060000px;}
.ws45{word-spacing:0.330000px;}
.ws48{word-spacing:0.462000px;}
.ws18{word-spacing:0.480000px;}
.ws47{word-spacing:0.528000px;}
.ws9c{word-spacing:0.893400px;}
.ws9b{word-spacing:0.926700px;}
.ws3a{word-spacing:1.056000px;}
.wsf{word-spacing:1.122000px;}
.ws21{word-spacing:1.140000px;}
.ws3b{word-spacing:1.188000px;}
.ws43{word-spacing:1.254000px;}
.ws2e{word-spacing:1.320000px;}
.ws8{word-spacing:1.386000px;}
.ws12{word-spacing:1.440000px;}
.ws42{word-spacing:1.452000px;}
.ws2d{word-spacing:1.500000px;}
.ws38{word-spacing:1.518000px;}
.ws2c{word-spacing:1.560000px;}
.ws39{word-spacing:1.584000px;}
.ws70{word-spacing:1.593600px;}
.ws71{word-spacing:1.619400px;}
.ws13{word-spacing:1.620000px;}
.ws34{word-spacing:1.650000px;}
.ws94{word-spacing:1.657800px;}
.ws93{word-spacing:1.679700px;}
.ws98{word-spacing:1.726200px;}
.ws97{word-spacing:1.740900px;}
.ws6{word-spacing:1.782000px;}
.ws74{word-spacing:1.906500px;}
.ws75{word-spacing:1.909200px;}
.ws96{word-spacing:1.935900px;}
.ws7a{word-spacing:2.094900px;}
.ws7b{word-spacing:2.098200px;}
.ws4{word-spacing:2.263500px;}
.ws33{word-spacing:2.310000px;}
.ws46{word-spacing:2.640000px;}
.ws84{word-spacing:2.763000px;}
.ws83{word-spacing:2.763300px;}
.ws5b{word-spacing:2.819100px;}
.ws5a{word-spacing:2.820300px;}
.ws86{word-spacing:2.928300px;}
.ws85{word-spacing:2.941500px;}
.ws5d{word-spacing:3.354300px;}
.ws7c{word-spacing:3.355500px;}
.ws7d{word-spacing:3.358500px;}
.ws66{word-spacing:3.361500px;}
.ws6a{word-spacing:3.444000px;}
.ws69{word-spacing:3.445200px;}
.ws40{word-spacing:3.465000px;}
.ws76{word-spacing:3.507600px;}
.ws77{word-spacing:3.520800px;}
.ws44{word-spacing:3.680700px;}
.ws78{word-spacing:4.011000px;}
.ws79{word-spacing:4.033500px;}
.ws5{word-spacing:4.107900px;}
.ws2{word-spacing:4.108500px;}
.ws5e{word-spacing:4.221600px;}
.ws5f{word-spacing:4.225800px;}
.ws8c{word-spacing:4.323300px;}
.ws7e{word-spacing:4.365900px;}
.ws8a{word-spacing:4.368000px;}
.ws80{word-spacing:4.368600px;}
.ws88{word-spacing:4.380000px;}
.ws67{word-spacing:4.414800px;}
.ws68{word-spacing:4.421700px;}
.ws9e{word-spacing:4.453200px;}
.ws9d{word-spacing:4.456500px;}
.ws65{word-spacing:4.479900px;}
.ws62{word-spacing:4.486800px;}
.ws6b{word-spacing:4.506300px;}
.ws6c{word-spacing:4.515300px;}
.ws59{word-spacing:4.540200px;}
.ws60{word-spacing:4.544700px;}
.ws58{word-spacing:4.563900px;}
.ws53{word-spacing:4.572000px;}
.ws55{word-spacing:4.574700px;}
.ws61{word-spacing:4.585500px;}
.ws81{word-spacing:4.595700px;}
.ws82{word-spacing:4.621800px;}
.ws72{word-spacing:4.631100px;}
.ws4e{word-spacing:4.632600px;}
.ws91{word-spacing:4.652400px;}
.ws92{word-spacing:4.671300px;}
.ws64{word-spacing:4.903500px;}
.ws87{word-spacing:4.941000px;}
.ws52{word-spacing:5.137500px;}
.ws4f{word-spacing:5.138100px;}
.ws6d{word-spacing:5.384700px;}
.ws99{word-spacing:6.039000px;}
.ws9a{word-spacing:6.041700px;}
.ws3f{word-spacing:6.114000px;}
.ws90{word-spacing:6.675900px;}
.ws8e{word-spacing:6.726300px;}
.ws2f{word-spacing:159.984000px;}
._0{margin-left:-16.504500px;}
._12{margin-left:-11.430000px;}
._9{margin-left:-9.306000px;}
._11{margin-left:-7.920000px;}
._7{margin-left:-6.600000px;}
._a{margin-left:-4.950000px;}
._2{margin-left:-3.663000px;}
._6{margin-left:-2.244000px;}
._5{margin-left:-1.188000px;}
._3{width:1.254000px;}
._4{width:2.574000px;}
._10{width:3.630000px;}
._e{width:4.884000px;}
._f{width:5.916000px;}
._d{width:6.960000px;}
._c{width:8.160000px;}
._16{width:9.570000px;}
._15{width:11.340000px;}
._14{width:12.408000px;}
._1{width:13.761000px;}
._13{width:15.147000px;}
._8{width:16.474500px;}
._b{width:18.414000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:33.600000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:40.500000px;}
.fs7{font-size:45.000000px;}
.fs5{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:49.500000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:34.313700px;}
.y1a0{bottom:117.388500px;}
.y2c7{bottom:117.402900px;}
.y2a8{bottom:117.722700px;}
.y87{bottom:118.056150px;}
.y190{bottom:118.056300px;}
.yb4{bottom:118.058400px;}
.y49{bottom:118.065450px;}
.y14{bottom:118.070400px;}
.yf4{bottom:118.070850px;}
.y11a{bottom:118.252950px;}
.yd4{bottom:118.273950px;}
.y1dc{bottom:118.285950px;}
.y29{bottom:118.344600px;}
.y237{bottom:118.368450px;}
.y217{bottom:118.372500px;}
.y283{bottom:118.384050px;}
.y1fa{bottom:118.387500px;}
.y13a{bottom:118.391100px;}
.y255{bottom:118.462950px;}
.y66{bottom:118.483950px;}
.y19f{bottom:132.304500px;}
.y2c6{bottom:132.510900px;}
.y2a7{bottom:133.639200px;}
.yb3{bottom:135.653400px;}
.y48{bottom:136.845450px;}
.y18f{bottom:137.001300px;}
.y13{bottom:137.165400px;}
.yf3{bottom:137.195850px;}
.y86{bottom:137.601150px;}
.y119{bottom:137.953950px;}
.yd3{bottom:138.156450px;}
.y158{bottom:138.285450px;}
.y216{bottom:138.535500px;}
.y13b{bottom:138.584850px;}
.y139{bottom:138.653100px;}
.y28{bottom:138.656100px;}
.y236{bottom:138.943950px;}
.y1f9{bottom:139.128000px;}
.y1be{bottom:139.174950px;}
.y1db{bottom:139.191450px;}
.y282{bottom:139.289550px;}
.y65{bottom:139.372950px;}
.y254{bottom:139.714950px;}
.y19e{bottom:147.220500px;}
.y2a6{bottom:149.548200px;}
.y2c5{bottom:151.578900px;}
.yb2{bottom:153.248400px;}
.y47{bottom:155.625450px;}
.y18e{bottom:155.946300px;}
.y12{bottom:156.260400px;}
.yf2{bottom:156.320850px;}
.y85{bottom:157.146150px;}
.y118{bottom:157.654950px;}
.y157{bottom:157.722450px;}
.yd2{bottom:158.038950px;}
.y215{bottom:158.698500px;}
.y138{bottom:158.915100px;}
.y27{bottom:158.967600px;}
.y235{bottom:159.519450px;}
.y1bd{bottom:160.096950px;}
.y281{bottom:160.195050px;}
.y64{bottom:160.261950px;}
.y253{bottom:160.966950px;}
.y19d{bottom:162.136500px;}
.y2a5{bottom:165.464700px;}
.y1f8{bottom:170.508000px;}
.y1da{bottom:170.722950px;}
.yb1{bottom:170.843400px;}
.y45{bottom:174.405450px;}
.y46{bottom:174.555450px;}
.y11{bottom:175.355400px;}
.yf1{bottom:175.445850px;}
.y117{bottom:177.355950px;}
.y156{bottom:177.357450px;}
.y153{bottom:177.505950px;}
.yd1{bottom:177.921450px;}
.y214{bottom:178.861500px;}
.y137{bottom:179.177100px;}
.y234{bottom:180.094950px;}
.y19c{bottom:181.012500px;}
.y1bc{bottom:181.018950px;}
.y280{bottom:181.100550px;}
.y2a4{bottom:181.377450px;}
.y252{bottom:182.218950px;}
.y18d{bottom:185.521500px;}
.y84{bottom:187.340550px;}
.yb0{bottom:188.438400px;}
.y2c4{bottom:188.512350px;}
.y1f7{bottom:189.750450px;}
.y26{bottom:189.905100px;}
.y1d9{bottom:191.628450px;}
.y63{bottom:191.776950px;}
.y10{bottom:194.450400px;}
.yf0{bottom:194.570850px;}
.y154{bottom:197.041950px;}
.y116{bottom:197.056950px;}
.y2a3{bottom:197.290200px;}
.yd0{bottom:197.803950px;}
.y19b{bottom:198.301500px;}
.y213{bottom:199.024500px;}
.y265{bottom:200.670450px;}
.y1bb{bottom:201.940950px;}
.y27f{bottom:202.006050px;}
.y251{bottom:203.470950px;}
.y44{bottom:203.837250px;}
.yaf{bottom:206.033400px;}
.y2c3{bottom:208.790850px;}
.y136{bottom:210.081600px;}
.y25{bottom:210.216600px;}
.y233{bottom:211.296450px;}
.y62{bottom:212.665950px;}
.y2a2{bottom:213.202950px;}
.y19a{bottom:213.217500px;}
.yf7{bottom:213.245550px;}
.yf{bottom:213.545400px;}
.yef{bottom:213.695850px;}
.y18c{bottom:215.097900px;}
.y155{bottom:216.693450px;}
.y115{bottom:216.757950px;}
.y152{bottom:216.759450px;}
.ycf{bottom:217.686450px;}
.y83{bottom:219.020550px;}
.y1f6{bottom:219.633150px;}
.y264{bottom:221.245950px;}
.y27e{bottom:222.917700px;}
.y1d8{bottom:223.159950px;}
.yae{bottom:223.628400px;}
.y43{bottom:224.115750px;}
.y250{bottom:224.722950px;}
.y199{bottom:228.133500px;}
.y2c2{bottom:229.069350px;}
.y2a1{bottom:229.112100px;}
.y212{bottom:229.815450px;}
.y24{bottom:230.452650px;}
.y232{bottom:231.871950px;}
.yee{bottom:232.820850px;}
.y1ba{bottom:233.488950px;}
.y61{bottom:233.554950px;}
.y18b{bottom:234.042900px;}
.y151{bottom:236.394450px;}
.y114{bottom:236.458950px;}
.yce{bottom:237.568950px;}
.y1f5{bottom:238.878150px;}
.y82{bottom:240.058050px;}
.y135{bottom:240.986100px;}
.yad{bottom:241.223400px;}
.y198{bottom:243.049500px;}
.ye{bottom:243.326400px;}
.y27d{bottom:243.823200px;}
.y1d7{bottom:244.065450px;}
.y42{bottom:244.394250px;}
.y2a0{bottom:245.028600px;}
.y24f{bottom:245.974950px;}
.y2c1{bottom:249.347850px;}
.y23{bottom:250.764150px;}
.yed{bottom:251.945850px;}
.y231{bottom:252.447450px;}
.y18a{bottom:252.987900px;}
.y1b9{bottom:254.410950px;}
.y60{bottom:254.443950px;}
.y150{bottom:255.963450px;}
.y113{bottom:256.159950px;}
.ycd{bottom:257.451450px;}
.y197{bottom:257.965500px;}
.yac{bottom:258.818400px;}
.y29f{bottom:260.937450px;}
.y81{bottom:261.095550px;}
.y134{bottom:261.248100px;}
.yd{bottom:263.918400px;}
.y41{bottom:264.672750px;}
.y1d6{bottom:264.970950px;}
.y1f4{bottom:268.820700px;}
.y2c0{bottom:269.626350px;}
.yec{bottom:271.070850px;}
.y22{bottom:271.075650px;}
.y211{bottom:271.231950px;}
.y189{bottom:271.932900px;}
.y196{bottom:272.881500px;}
.y230{bottom:273.022950px;}
.y5f{bottom:275.332950px;}
.y27c{bottom:275.354700px;}
.y14e{bottom:275.713950px;}
.y112{bottom:275.860950px;}
.yab{bottom:276.413400px;}
.y29e{bottom:276.853950px;}
.ycc{bottom:277.333950px;}
.y24e{bottom:277.869450px;}
.y133{bottom:281.510100px;}
.y80{bottom:282.133050px;}
.yc{bottom:284.510400px;}
.y40{bottom:284.951250px;}
.y1d5{bottom:285.876450px;}
.y195{bottom:287.797500px;}
.y1f3{bottom:289.561200px;}
.y2bf{bottom:289.904850px;}
.yeb{bottom:290.195850px;}
.y21{bottom:291.387150px;}
.y210{bottom:291.394950px;}
.y29d{bottom:292.766850px;}
.y22f{bottom:293.598450px;}
.yaa{bottom:294.008400px;}
.y111{bottom:295.561950px;}
.y5e{bottom:296.221950px;}
.y1b8{bottom:296.254950px;}
.y27b{bottom:296.287950px;}
.y24d{bottom:299.121450px;}
.y188{bottom:301.508250px;}
.y132{bottom:301.772100px;}
.y194{bottom:302.713500px;}
.y1d4{bottom:306.781950px;}
.ycb{bottom:307.842450px;}
.y29c{bottom:308.679600px;}
.yea{bottom:309.320850px;}
.y1f2{bottom:310.301700px;}
.y20f{bottom:311.545050px;}
.ya9{bottom:311.603400px;}
.y20{bottom:311.698650px;}
.y7f{bottom:313.812000px;}
.y22e{bottom:314.173950px;}
.y14f{bottom:314.670450px;}
.y14d{bottom:314.884950px;}
.y110{bottom:315.262950px;}
.y15c{bottom:315.396450px;}
.yb{bottom:315.744900px;}
.y3f{bottom:315.880350px;}
.y5d{bottom:317.110950px;}
.y1b7{bottom:317.176950px;}
.y27a{bottom:317.193450px;}
.y193{bottom:317.629500px;}
.y24c{bottom:320.373450px;}
.y2be{bottom:320.799450px;}
.y131{bottom:322.034100px;}
.y29b{bottom:324.588600px;}
.y1d3{bottom:327.687450px;}
.yca{bottom:327.724950px;}
.ye9{bottom:328.445850px;}
.ya8{bottom:329.198400px;}
.y1f1{bottom:331.042200px;}
.y187{bottom:331.084950px;}
.y20e{bottom:331.708050px;}
.y1f{bottom:332.010150px;}
.y192{bottom:332.545500px;}
.y7e{bottom:333.357000px;}
.y3e{bottom:334.660350px;}
.y22d{bottom:334.749450px;}
.y10f{bottom:334.963950px;}
.y14c{bottom:335.014950px;}
.ya{bottom:336.336900px;}
.y5c{bottom:337.999950px;}
.y29a{bottom:340.505100px;}
.y2bd{bottom:341.077950px;}
.y24b{bottom:341.625450px;}
.y130{bottom:342.296100px;}
.yf6{bottom:346.763550px;}
.ya7{bottom:346.793400px;}
.yf8{bottom:347.213250px;}
.ye8{bottom:347.570850px;}
.yc9{bottom:347.607450px;}
.y1d2{bottom:348.592950px;}
.y279{bottom:348.724950px;}
.y1b6{bottom:349.153950px;}
.y186{bottom:350.029950px;}
.y191{bottom:351.421500px;}
.y1f0{bottom:351.782700px;}
.y20d{bottom:351.871050px;}
.y7d{bottom:352.902000px;}
.y3d{bottom:353.440350px;}
.y10e{bottom:354.664950px;}
.y14b{bottom:354.765450px;}
.y263{bottom:355.324950px;}
.y299{bottom:356.414100px;}
.y9{bottom:356.928900px;}
.y5b{bottom:358.888950px;}
.y2bc{bottom:361.356450px;}
.y24a{bottom:362.877450px;}
.y1e{bottom:362.947650px;}
.ya6{bottom:364.388400px;}
.y22c{bottom:365.950950px;}
.ye7{bottom:366.695850px;}
.yc8{bottom:367.489950px;}
.y185{bottom:368.974950px;}
.y1d1{bottom:369.498450px;}
.y278{bottom:369.630450px;}
.y1b5{bottom:370.075950px;}
.y20c{bottom:372.034050px;}
.y3c{bottom:372.220350px;}
.y298{bottom:372.330600px;}
.y7c{bottom:372.447000px;}
.y12f{bottom:373.200600px;}
.y14a{bottom:374.268450px;}
.y10d{bottom:374.365950px;}
.y262{bottom:375.900450px;}
.y8{bottom:377.520900px;}
.y2bb{bottom:381.544500px;}
.y1ef{bottom:383.165700px;}
.y1d{bottom:383.259150px;}
.y249{bottom:384.129450px;}
.y22b{bottom:386.526450px;}
.y184{bottom:387.919950px;}
.y297{bottom:388.239600px;}
.y170{bottom:388.370400px;}
.y5a{bottom:390.403950px;}
.y277{bottom:390.535950px;}
.y3b{bottom:391.000350px;}
.y7b{bottom:391.992000px;}
.y20b{bottom:392.197050px;}
.ya5{bottom:392.613600px;}
.y10c{bottom:394.066950px;}
.y2e1{bottom:394.114350px;}
.y2fb{bottom:394.119900px;}
.ye6{bottom:396.471450px;}
.y261{bottom:396.475950px;}
.yc7{bottom:397.998450px;}
.y7{bottom:398.112900px;}
.y2ba{bottom:401.823000px;}
.y12e{bottom:401.976600px;}
.y1c{bottom:403.570650px;}
.y1ee{bottom:403.906200px;}
.y296{bottom:404.156100px;}
.y248{bottom:405.366150px;}
.y183{bottom:406.864950px;}
.y22a{bottom:407.101950px;}
.y16f{bottom:407.625900px;}
.y3a{bottom:409.780350px;}
.y2fa{bottom:409.955400px;}
.y2e0{bottom:409.955550px;}
.y1b4{bottom:411.160950px;}
.y59{bottom:411.292950px;}
.y1d0{bottom:411.309450px;}
.y276{bottom:411.441450px;}
.y7a{bottom:411.537000px;}
.y20a{bottom:412.360050px;}
.y15e{bottom:413.224950px;}
.y15b{bottom:413.422950px;}
.y10b{bottom:413.767950px;}
.y260{bottom:417.051450px;}
.ye5{bottom:417.096450px;}
.yc6{bottom:417.880950px;}
.y6{bottom:418.704900px;}
.y295{bottom:420.068850px;}
.y2b9{bottom:422.101500px;}
.y12d{bottom:422.238600px;}
.ya4{bottom:423.541050px;}
.y1b{bottom:423.882150px;}
.y1ed{bottom:424.646700px;}
.y2f9{bottom:425.796750px;}
.y2df{bottom:425.802450px;}
.y247{bottom:426.634650px;}
.y229{bottom:427.677450px;}
.y79{bottom:431.082000px;}
.y1b3{bottom:432.082950px;}
.y58{bottom:432.181950px;}
.y275{bottom:432.346950px;}
.y209{bottom:432.523050px;}
.y15a{bottom:433.321950px;}
.y10a{bottom:433.468950px;}
.y294{bottom:435.981600px;}
.y182{bottom:436.500900px;}
.y16e{bottom:437.507400px;}
.y25f{bottom:437.626950px;}
.ye4{bottom:437.721450px;}
.yc5{bottom:437.763450px;}
.y39{bottom:439.215150px;}
.y5{bottom:439.296900px;}
.y2de{bottom:441.637950px;}
.y2f8{bottom:441.638100px;}
.y2b8{bottom:442.380000px;}
.y12c{bottom:442.500600px;}
.y1cf{bottom:442.840950px;}
.ya3{bottom:443.836050px;}
.y1a{bottom:444.193650px;}
.y1ec{bottom:445.387200px;}
.y246{bottom:447.903150px;}
.y228{bottom:448.252950px;}
.y78{bottom:450.627000px;}
.y293{bottom:451.890600px;}
.y1b2{bottom:453.004950px;}
.y109{bottom:453.169950px;}
.y274{bottom:453.252450px;}
.y181{bottom:455.442900px;}
.y16d{bottom:456.762900px;}
.y2dd{bottom:457.479150px;}
.y2f7{bottom:457.479450px;}
.yc4{bottom:457.645950px;}
.y25e{bottom:458.202450px;}
.y38{bottom:459.493650px;}
.y4{bottom:459.888900px;}
.y2b7{bottom:462.658500px;}
.y12b{bottom:462.762600px;}
.y208{bottom:463.312050px;}
.y57{bottom:463.713450px;}
.y1ce{bottom:463.746450px;}
.ya1{bottom:464.131050px;}
.ya2{bottom:464.281050px;}
.y1eb{bottom:466.127700px;}
.y292{bottom:467.807100px;}
.y227{bottom:468.828450px;}
.ye3{bottom:468.972450px;}
.y245{bottom:469.171650px;}
.y77{bottom:470.172000px;}
.y108{bottom:472.870950px;}
.y2dc{bottom:473.320350px;}
.y2f6{bottom:473.320650px;}
.y1b1{bottom:473.926950px;}
.y19{bottom:475.114200px;}
.y16c{bottom:476.018400px;}
.yc3{bottom:477.528450px;}
.y25d{bottom:478.777950px;}
.y37{bottom:479.772150px;}
.y3{bottom:480.480900px;}
.y2b6{bottom:482.937000px;}
.y207{bottom:483.475050px;}
.y291{bottom:483.716250px;}
.y9f{bottom:484.426050px;}
.ya0{bottom:484.576050px;}
.y1cd{bottom:484.651950px;}
.y273{bottom:484.783950px;}
.y180{bottom:485.010900px;}
.y1ea{bottom:486.868200px;}
.y2db{bottom:489.161550px;}
.y2f5{bottom:489.167850px;}
.y226{bottom:489.403950px;}
.ye2{bottom:489.597450px;}
.y76{bottom:489.717000px;}
.y244{bottom:490.344450px;}
.y149{bottom:492.342450px;}
.y107{bottom:492.571950px;}
.y12a{bottom:493.672650px;}
.y18{bottom:493.924200px;}
.y1b0{bottom:494.848950px;}
.y56{bottom:495.244950px;}
.y16b{bottom:495.273900px;}
.yc2{bottom:497.410950px;}
.y25c{bottom:499.353450px;}
.y290{bottom:499.632750px;}
.y2b5{bottom:503.215500px;}
.y9e{bottom:503.221050px;}
.y206{bottom:503.638050px;}
.y2da{bottom:505.002750px;}
.y2f4{bottom:505.003350px;}
.y1cc{bottom:505.557450px;}
.y272{bottom:505.689450px;}
.y1e9{bottom:507.615750px;}
.yf5{bottom:509.750550px;}
.y225{bottom:509.979450px;}
.ye1{bottom:510.222450px;}
.y36{bottom:510.693150px;}
.y243{bottom:511.612950px;}
.y2{bottom:511.708800px;}
.y148{bottom:512.076450px;}
.y129{bottom:512.137650px;}
.y106{bottom:512.272950px;}
.y17{bottom:512.734200px;}
.y16a{bottom:514.529400px;}
.y28f{bottom:515.549250px;}
.y1af{bottom:515.770950px;}
.y55{bottom:516.133950px;}
.y75{bottom:519.908250px;}
.y25b{bottom:519.928950px;}
.y2f3{bottom:520.844550px;}
.y2d9{bottom:520.849650px;}
.y9d{bottom:522.016050px;}
.y17f{bottom:522.894900px;}
.y2b4{bottom:523.494000px;}
.y1cb{bottom:526.462950px;}
.y271{bottom:526.594950px;}
.yc1{bottom:527.926200px;}
.y1e8{bottom:528.356250px;}
.y224{bottom:530.554950px;}
.y128{bottom:530.602650px;}
.ye0{bottom:530.847450px;}
.y35{bottom:530.971650px;}
.y159{bottom:531.876450px;}
.y105{bottom:531.973950px;}
.y242{bottom:532.881450px;}
.y205{bottom:534.415950px;}
.y2d8{bottom:536.685150px;}
.y2f2{bottom:536.685900px;}
.y1ae{bottom:536.692950px;}
.y54{bottom:537.022950px;}
.y25a{bottom:540.504450px;}
.y9b{bottom:540.811050px;}
.y74{bottom:540.945750px;}
.y9c{bottom:540.961050px;}
.y17e{bottom:541.836900px;}
.y28e{bottom:542.121450px;}
.y169{bottom:544.410150px;}
.yc0{bottom:546.751200px;}
.y1ca{bottom:547.368450px;}
.y127{bottom:549.067650px;}
.y223{bottom:551.130450px;}
.y34{bottom:551.250150px;}
.y147{bottom:551.494950px;}
.y104{bottom:551.674950px;}
.y2f1{bottom:552.527100px;}
.y2d7{bottom:552.531900px;}
.y241{bottom:554.149950px;}
.y2b3{bottom:554.398500px;}
.y1ad{bottom:557.614950px;}
.y53{bottom:557.911950px;}
.y270{bottom:558.126450px;}
.y99{bottom:559.606050px;}
.y1e7{bottom:559.749150px;}
.y9a{bottom:559.756050px;}
.y17d{bottom:560.778900px;}
.y73{bottom:561.983250px;}
.ydf{bottom:562.098450px;}
.y168{bottom:563.665650px;}
.y16{bottom:564.694200px;}
.y204{bottom:565.204950px;}
.ybf{bottom:565.576200px;}
.y126{bottom:567.532650px;}
.y1c9{bottom:568.273950px;}
.y2d6{bottom:568.367400px;}
.y2f0{bottom:568.368450px;}
.y146{bottom:570.552450px;}
.y103{bottom:571.375950px;}
.y33{bottom:571.528650px;}
.y222{bottom:571.705950px;}
.y2b2{bottom:574.677000px;}
.y240{bottom:575.418450px;}
.y98{bottom:578.401050px;}
.y1ac{bottom:578.536950px;}
.y52{bottom:578.800950px;}
.y1e6{bottom:578.994150px;}
.y26f{bottom:579.031950px;}
.y17c{bottom:579.720900px;}
.yde{bottom:582.723450px;}
.y28d{bottom:583.816950px;}
.y2ef{bottom:584.209800px;}
.y2d5{bottom:584.220000px;}
.ybe{bottom:584.401200px;}
.y203{bottom:585.367950px;}
.y125{bottom:585.997650px;}
.y1c8{bottom:589.179450px;}
.y145{bottom:590.863950px;}
.y102{bottom:591.076950px;}
.y32{bottom:591.807150px;}
.y221{bottom:592.281450px;}
.y167{bottom:593.535450px;}
.y72{bottom:593.662650px;}
.y2b1{bottom:594.955500px;}
.y96{bottom:597.196050px;}
.y97{bottom:597.346050px;}
.y1e5{bottom:598.239150px;}
.y17b{bottom:598.662900px;}
.y1ab{bottom:599.458950px;}
.y26e{bottom:599.937450px;}
.y2ee{bottom:600.051150px;}
.y2d4{bottom:600.055500px;}
.ybd{bottom:603.226200px;}
.ydd{bottom:603.348450px;}
.y28c{bottom:604.243950px;}
.y124{bottom:604.462650px;}
.y202{bottom:605.530950px;}
.y23f{bottom:607.312950px;}
.y15{bottom:608.880750px;}
.y1c7{bottom:610.084950px;}
.y144{bottom:610.185450px;}
.y51{bottom:610.332450px;}
.y101{bottom:610.777950px;}
.y31{bottom:612.085650px;}
.y166{bottom:612.790950px;}
.y220{bottom:612.856950px;}
.y70{bottom:613.207650px;}
.y71{bottom:613.357650px;}
.y2b0{bottom:615.234000px;}
.y2d3{bottom:615.891000px;}
.y2ed{bottom:615.898200px;}
.y94{bottom:615.991050px;}
.y95{bottom:616.141050px;}
.y1e4{bottom:617.484150px;}
.y17a{bottom:617.604900px;}
.y1aa{bottom:620.380950px;}
.y26d{bottom:620.842950px;}
.ybc{bottom:622.051200px;}
.y13c{bottom:622.838400px;}
.y123{bottom:622.927650px;}
.y13d{bottom:623.085900px;}
.ydc{bottom:623.973450px;}
.y28b{bottom:624.670950px;}
.y23e{bottom:628.581450px;}
.y143{bottom:629.671950px;}
.y100{bottom:630.478950px;}
.y1c6{bottom:630.990450px;}
.y50{bottom:631.221450px;}
.y2d2{bottom:631.732200px;}
.y2ec{bottom:631.733700px;}
.y165{bottom:632.046450px;}
.y30{bottom:632.364150px;}
.y6f{bottom:632.752650px;}
.y259{bottom:633.432450px;}
.y2af{bottom:635.512500px;}
.y201{bottom:636.319950px;}
.y179{bottom:636.546900px;}
.y1e3{bottom:636.729150px;}
.ybb{bottom:640.876200px;}
.y1a9{bottom:641.302950px;}
.y122{bottom:641.392650px;}
.y26c{bottom:641.748450px;}
.y21f{bottom:644.058450px;}
.y28a{bottom:645.097950px;}
.y93{bottom:645.416100px;}
.y2d1{bottom:647.573400px;}
.y2eb{bottom:647.575050px;}
.y23d{bottom:649.849950px;}
.y142{bottom:649.867950px;}
.yff{bottom:650.179950px;}
.y1c5{bottom:651.895950px;}
.y4f{bottom:652.110450px;}
.y6e{bottom:652.297650px;}
.y258{bottom:654.007950px;}
.ydb{bottom:655.237650px;}
.y178{bottom:655.488900px;}
.y2ae{bottom:655.791000px;}
.y1e2{bottom:655.974150px;}
.y200{bottom:656.482950px;}
.yba{bottom:659.701200px;}
.y121{bottom:659.857650px;}
.y164{bottom:661.927950px;}
.y1a8{bottom:662.224950px;}
.y26b{bottom:662.653950px;}
.y2f{bottom:663.285150px;}
.y2d0{bottom:663.414600px;}
.y2ea{bottom:663.422100px;}
.y21e{bottom:664.633950px;}
.y289{bottom:665.524950px;}
.yfe{bottom:669.880950px;}
.y23c{bottom:671.118450px;}
.y6d{bottom:671.842650px;}
.y1c4{bottom:672.801450px;}
.y4e{bottom:672.999450px;}
.yda{bottom:674.362650px;}
.y177{bottom:674.430900px;}
.y257{bottom:674.583450px;}
.y1e1{bottom:675.219150px;}
.y2ad{bottom:676.069500px;}
.y91{bottom:676.342650px;}
.y92{bottom:676.492650px;}
.y120{bottom:678.322650px;}
.yb9{bottom:678.526200px;}
.y2cf{bottom:679.255800px;}
.y2e9{bottom:679.257600px;}
.y26a{bottom:683.559450px;}
.y21d{bottom:685.209450px;}
.y288{bottom:685.951950px;}
.y1ff{bottom:687.271950px;}
.yfd{bottom:689.581950px;}
.y6c{bottom:691.387650px;}
.y1a3{bottom:691.612650px;}
.y163{bottom:691.809450px;}
.y176{bottom:693.372900px;}
.yd9{bottom:693.487650px;}
.y1a7{bottom:693.772950px;}
.y4d{bottom:693.888450px;}
.y2e{bottom:694.198200px;}
.y2e8{bottom:695.098950px;}
.y2ce{bottom:695.102700px;}
.y8f{bottom:695.137650px;}
.y256{bottom:695.158950px;}
.y90{bottom:695.287650px;}
.y2ac{bottom:696.348000px;}
.y11f{bottom:696.787650px;}
.y23b{bottom:703.012950px;}
.y1c3{bottom:704.332950px;}
.y269{bottom:704.464950px;}
.y1e0{bottom:705.110700px;}
.y21c{bottom:705.784950px;}
.y287{bottom:706.378950px;}
.y218{bottom:706.715550px;}
.y1fe{bottom:707.434950px;}
.yb8{bottom:707.962950px;}
.y141{bottom:708.871950px;}
.y15d{bottom:709.168950px;}
.yfc{bottom:709.282950px;}
.y6b{bottom:710.932650px;}
.y2e7{bottom:710.934450px;}
.y2cd{bottom:710.938200px;}
.y162{bottom:711.064950px;}
.y175{bottom:712.314900px;}
.yd8{bottom:712.612650px;}
.y8e{bottom:713.932650px;}
.y1a6{bottom:714.694950px;}
.y4c{bottom:714.777450px;}
.y11e{bottom:715.252650px;}
.y2ab{bottom:716.626500px;}
.y23a{bottom:724.281450px;}
.y1c2{bottom:725.238450px;}
.y268{bottom:725.370450px;}
.y1df{bottom:725.851200px;}
.y21b{bottom:726.360450px;}
.y2cc{bottom:726.785100px;}
.y2e6{bottom:726.787350px;}
.y286{bottom:726.805950px;}
.y2d{bottom:727.251450px;}
.y1fd{bottom:727.597950px;}
.yb7{bottom:727.993950px;}
.y140{bottom:728.754450px;}
.yfb{bottom:728.983950px;}
.y161{bottom:730.320450px;}
.y1a2{bottom:730.387650px;}
.y6a{bottom:730.477650px;}
.y174{bottom:731.256900px;}
.yd7{bottom:731.737650px;}
.y8c{bottom:732.727650px;}
.y8d{bottom:732.877650px;}
.y11d{bottom:733.717650px;}
.y1a5{bottom:735.616950px;}
.y2aa{bottom:736.905000px;}
.y2cb{bottom:742.620600px;}
.y2e5{bottom:742.622850px;}
.y239{bottom:745.549950px;}
.y1c1{bottom:746.143950px;}
.y267{bottom:746.275950px;}
.y4b{bottom:746.308950px;}
.y1de{bottom:746.598750px;}
.y21a{bottom:746.935950px;}
.y285{bottom:747.232950px;}
.y2c{bottom:747.529950px;}
.y1fc{bottom:747.760950px;}
.yb6{bottom:748.024950px;}
.y13f{bottom:748.257450px;}
.yfa{bottom:748.684950px;}
.y160{bottom:749.575950px;}
.y69{bottom:750.022650px;}
.y173{bottom:750.198900px;}
.yd6{bottom:750.862650px;}
.y8b{bottom:751.522650px;}
.y11c{bottom:752.182650px;}
.y1a4{bottom:756.538950px;}
.y2a9{bottom:757.183500px;}
.y2ca{bottom:758.467350px;}
.y2e4{bottom:758.469900px;}
.y238{bottom:766.818450px;}
.y1c0{bottom:767.049450px;}
.y266{bottom:767.181450px;}
.y4a{bottom:767.197950px;}
.y1dd{bottom:767.346450px;}
.y219{bottom:767.511450px;}
.y284{bottom:767.659950px;}
.y2b{bottom:767.808450px;}
.y13e{bottom:767.875950px;}
.y1fb{bottom:767.923950px;}
.yb5{bottom:768.055950px;}
.yf9{bottom:768.385950px;}
.y15f{bottom:768.831450px;}
.y1a1{bottom:768.931650px;}
.y172{bottom:769.140900px;}
.y68{bottom:769.567650px;}
.yd5{bottom:769.987650px;}
.y89{bottom:770.317650px;}
.y8a{bottom:770.467650px;}
.y11b{bottom:770.647650px;}
.y2c9{bottom:774.302850px;}
.y2e3{bottom:774.305400px;}
.y1bf{bottom:787.954950px;}
.y171{bottom:788.082900px;}
.y2a{bottom:788.086950px;}
.y67{bottom:789.112650px;}
.y88{bottom:789.262650px;}
.y2c8{bottom:790.138350px;}
.y2e2{bottom:790.140900px;}
.h11{height:30.138281px;}
.h9{height:41.103516px;}
.h2{height:43.054688px;}
.h23{height:43.062487px;}
.hb{height:45.213867px;}
.h16{height:45.258267px;}
.h13{height:45.591867px;}
.hc{height:45.873867px;}
.h8{height:46.116211px;}
.h24{height:48.413123px;}
.h1b{height:48.436523px;}
.h1f{height:48.450923px;}
.h1e{height:48.451523px;}
.h1c{height:48.465923px;}
.h1d{height:48.466523px;}
.h20{height:48.467123px;}
.ha{height:53.218359px;}
.h5{height:53.818359px;}
.h15{height:53.828559px;}
.h1a{height:59.089195px;}
.h14{height:59.171995px;}
.h4{height:59.200195px;}
.h17{height:59.251795px;}
.h19{height:59.327395px;}
.hd{height:59.332195px;}
.h7{height:59.501995px;}
.h21{height:59.542195px;}
.h18{height:59.582995px;}
.he{height:59.926195px;}
.h12{height:59.992195px;}
.h3{height:61.423828px;}
.h10{height:63.229737px;}
.h22{height:63.260337px;}
.hf{height:63.273537px;}
.h6{height:78.175781px;}
.h0{height:914.173500px;}
.h1{height:914.250000px;}
.w0{width:977.952000px;}
.w1{width:978.000000px;}
.x0{left:0.000000px;}
.xe{left:51.023550px;}
.xf{left:68.035050px;}
.x48{left:72.283500px;}
.x1e{left:93.543300px;}
.x44{left:119.101650px;}
.x2{left:136.063650px;}
.x43{left:138.093150px;}
.x3{left:153.071550px;}
.x1f{left:173.836800px;}
.x4{left:178.583550px;}
.x22{left:188.681100px;}
.x42{left:196.816650px;}
.x11{left:201.308550px;}
.x14{left:222.293550px;}
.x20{left:259.323300px;}
.x16{left:284.123550px;}
.x19{left:302.078550px;}
.x12{left:319.028550px;}
.x15{left:328.643550px;}
.x23{left:343.834050px;}
.x1c{left:353.738550px;}
.x46{left:358.265100px;}
.x5{left:363.509550px;}
.x1a{left:387.473550px;}
.x13{left:388.718550px;}
.x24{left:405.065550px;}
.x1b{left:434.918550px;}
.x17{left:441.623550px;}
.x18{left:456.668550px;}
.xa{left:467.716350px;}
.x1d{left:473.843550px;}
.xb{left:484.727850px;}
.x45{left:488.890350px;}
.xc{left:510.235950px;}
.xd{left:532.840950px;}
.x9{left:552.752700px;}
.x8{left:569.764200px;}
.x47{left:574.011900px;}
.x3f{left:593.955900px;}
.x7{left:595.276200px;}
.x35{left:605.571900px;}
.x3b{left:615.026400px;}
.x31{left:622.830900px;}
.x29{left:624.299400px;}
.x38{left:645.534900px;}
.x2e{left:671.307900px;}
.x10{left:684.736200px;}
.x2f{left:693.021900px;}
.x36{left:698.697900px;}
.x37{left:701.783400px;}
.x21{left:703.310850px;}
.x26{left:716.088900px;}
.x32{left:731.367900px;}
.x3e{left:738.413400px;}
.x2c{left:754.434900px;}
.x6{left:757.451100px;}
.x3c{left:766.974900px;}
.x27{left:771.776400px;}
.x25{left:780.867900px;}
.x41{left:784.101900px;}
.x2a{left:789.662400px;}
.x2d{left:794.909400px;}
.x30{left:806.030400px;}
.x28{left:811.194900px;}
.x33{left:828.816900px;}
.x2b{left:863.697900px;}
.x40{left:865.512900px;}
.x39{left:868.053900px;}
.x3a{left:903.033900px;}
.x3d{left:905.574900px;}
.x34{left:908.346900px;}
.x1{left:914.929650px;}
@media print{
.v4{vertical-align:-14.080000pt;}
.v1{vertical-align:-2.112000pt;}
.v2{vertical-align:-0.938667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.407467pt;}
.ls9{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000267pt;}
.ls7{letter-spacing:0.000533pt;}
.ls6c{letter-spacing:0.004267pt;}
.ls5a{letter-spacing:0.009067pt;}
.ls4f{letter-spacing:0.009600pt;}
.ls3a{letter-spacing:0.012800pt;}
.ls5b{letter-spacing:0.016533pt;}
.ls48{letter-spacing:0.017067pt;}
.ls5c{letter-spacing:0.019733pt;}
.ls58{letter-spacing:0.022933pt;}
.ls47{letter-spacing:0.027200pt;}
.ls61{letter-spacing:0.029333pt;}
.ls57{letter-spacing:0.036000pt;}
.ls59{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.053333pt;}
.ls60{letter-spacing:0.053867pt;}
.ls56{letter-spacing:0.056533pt;}
.ls19{letter-spacing:0.058667pt;}
.ls30{letter-spacing:0.064533pt;}
.ls28{letter-spacing:0.085333pt;}
.ls46{letter-spacing:0.092800pt;}
.ls3d{letter-spacing:0.096000pt;}
.ls45{letter-spacing:0.100267pt;}
.ls5{letter-spacing:0.106667pt;}
.ls3c{letter-spacing:0.108000pt;}
.ls3b{letter-spacing:0.113600pt;}
.ls8{letter-spacing:0.117333pt;}
.ls70{letter-spacing:0.144000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls6f{letter-spacing:0.167467pt;}
.ls51{letter-spacing:0.173867pt;}
.ls4e{letter-spacing:0.174400pt;}
.ls4d{letter-spacing:0.174933pt;}
.ls23{letter-spacing:0.176000pt;}
.ls4c{letter-spacing:0.180000pt;}
.ls52{letter-spacing:0.192000pt;}
.ls4b{letter-spacing:0.209067pt;}
.ls50{letter-spacing:0.210667pt;}
.ls49{letter-spacing:0.211200pt;}
.lsd{letter-spacing:0.213333pt;}
.ls41{letter-spacing:0.216000pt;}
.ls4a{letter-spacing:0.228267pt;}
.ls42{letter-spacing:0.230400pt;}
.ls11{letter-spacing:0.234667pt;}
.ls43{letter-spacing:0.240000pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.266667pt;}
.ls71{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5e{letter-spacing:0.324000pt;}
.ls5f{letter-spacing:0.328533pt;}
.ls40{letter-spacing:0.336000pt;}
.ls3f{letter-spacing:0.342933pt;}
.ls5d{letter-spacing:0.343467pt;}
.ls0{letter-spacing:0.352000pt;}
.ls3e{letter-spacing:0.369067pt;}
.ls13{letter-spacing:0.373333pt;}
.ls66{letter-spacing:0.384000pt;}
.ls53{letter-spacing:0.396000pt;}
.ls65{letter-spacing:0.403200pt;}
.ls1{letter-spacing:0.410667pt;}
.lse{letter-spacing:0.426667pt;}
.ls63{letter-spacing:0.432000pt;}
.ls64{letter-spacing:0.450667pt;}
.ls62{letter-spacing:0.462400pt;}
.ls69{letter-spacing:0.468000pt;}
.ls2{letter-spacing:0.469333pt;}
.ls6a{letter-spacing:0.476267pt;}
.ls6e{letter-spacing:0.476800pt;}
.ls35{letter-spacing:0.479733pt;}
.lsc{letter-spacing:0.480000pt;}
.ls68{letter-spacing:0.483733pt;}
.ls6d{letter-spacing:0.513067pt;}
.ls34{letter-spacing:0.520000pt;}
.ls39{letter-spacing:0.522133pt;}
.ls37{letter-spacing:0.525067pt;}
.ls38{letter-spacing:0.525333pt;}
.ls33{letter-spacing:0.528000pt;}
.ls14{letter-spacing:0.533333pt;}
.ls32{letter-spacing:0.571467pt;}
.ls3{letter-spacing:0.586667pt;}
.ls55{letter-spacing:10.482400pt;}
.ls27{letter-spacing:10.894400pt;}
.lsf{letter-spacing:11.840000pt;}
.ls6b{letter-spacing:11.991733pt;}
.ls16{letter-spacing:12.000000pt;}
.ls54{letter-spacing:12.932267pt;}
.ls18{letter-spacing:13.066667pt;}
.ls25{letter-spacing:13.226667pt;}
.ls10{letter-spacing:13.280000pt;}
.ls26{letter-spacing:13.333333pt;}
.ls44{letter-spacing:13.440000pt;}
.ls2e{letter-spacing:13.493333pt;}
.ls67{letter-spacing:13.584000pt;}
.ls17{letter-spacing:13.813333pt;}
.ls24{letter-spacing:14.608000pt;}
.lsa{letter-spacing:14.666667pt;}
.ls1c{letter-spacing:15.040000pt;}
.ls36{letter-spacing:15.253333pt;}
.ls29{letter-spacing:17.602667pt;}
.ls2f{letter-spacing:17.952000pt;}
.ls20{letter-spacing:30.682667pt;}
.ls21{letter-spacing:53.621333pt;}
.ls1f{letter-spacing:56.026667pt;}
.ls1e{letter-spacing:74.506667pt;}
.ls2d{letter-spacing:146.842667pt;}
.ls2c{letter-spacing:162.917333pt;}
.ls1d{letter-spacing:199.114667pt;}
.ls2b{letter-spacing:207.386667pt;}
.ls22{letter-spacing:353.232000pt;}
.ls1b{letter-spacing:423.925333pt;}
.ls1a{letter-spacing:695.376000pt;}
.ws30{word-spacing:-187.674667pt;}
.ws1{word-spacing:-29.333333pt;}
.ws41{word-spacing:-15.253333pt;}
.ws3c{word-spacing:-15.194667pt;}
.ws4c{word-spacing:-14.842667pt;}
.ws15{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.666667pt;}
.ws1c{word-spacing:-13.866667pt;}
.ws9{word-spacing:-13.813333pt;}
.wsc{word-spacing:-13.760000pt;}
.ws2b{word-spacing:-13.706667pt;}
.ws14{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.546667pt;}
.ws17{word-spacing:-13.493333pt;}
.wsb{word-spacing:-13.333333pt;}
.ws8d{word-spacing:-12.384000pt;}
.ws56{word-spacing:-12.240000pt;}
.ws51{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.000000pt;}
.ws3d{word-spacing:-10.520000pt;}
.ws6e{word-spacing:-10.266667pt;}
.ws3e{word-spacing:-10.000000pt;}
.ws8f{word-spacing:-9.468000pt;}
.ws89{word-spacing:-9.432000pt;}
.ws8b{word-spacing:-9.396000pt;}
.ws7f{word-spacing:-9.324000pt;}
.ws54{word-spacing:-9.216000pt;}
.ws63{word-spacing:-9.180000pt;}
.ws4d{word-spacing:-9.108000pt;}
.ws73{word-spacing:-9.036000pt;}
.ws50{word-spacing:-9.000000pt;}
.ws6f{word-spacing:-8.000000pt;}
.ws1f{word-spacing:-3.573333pt;}
.ws26{word-spacing:-3.285333pt;}
.ws49{word-spacing:-2.816000pt;}
.ws37{word-spacing:-2.757333pt;}
.ws27{word-spacing:-1.994667pt;}
.ws28{word-spacing:-1.877333pt;}
.ws29{word-spacing:-1.701333pt;}
.ws31{word-spacing:-1.642667pt;}
.ws16{word-spacing:-1.600000pt;}
.ws32{word-spacing:-1.525333pt;}
.ws4a{word-spacing:-1.466667pt;}
.ws1b{word-spacing:-1.386667pt;}
.ws57{word-spacing:-1.325867pt;}
.wse{word-spacing:-1.280000pt;}
.ws10{word-spacing:-1.013333pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws24{word-spacing:-0.821333pt;}
.ws20{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.426667pt;}
.ws4b{word-spacing:-0.293333pt;}
.ws1d{word-spacing:-0.266667pt;}
.ws36{word-spacing:-0.213333pt;}
.ws23{word-spacing:-0.176000pt;}
.ws2a{word-spacing:-0.160000pt;}
.ws25{word-spacing:-0.117333pt;}
.ws19{word-spacing:-0.106667pt;}
.ws5c{word-spacing:-0.103467pt;}
.ws95{word-spacing:-0.062933pt;}
.ws22{word-spacing:-0.058667pt;}
.wsd{word-spacing:-0.053333pt;}
.ws35{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.053333pt;}
.ws45{word-spacing:0.293333pt;}
.ws48{word-spacing:0.410667pt;}
.ws18{word-spacing:0.426667pt;}
.ws47{word-spacing:0.469333pt;}
.ws9c{word-spacing:0.794133pt;}
.ws9b{word-spacing:0.823733pt;}
.ws3a{word-spacing:0.938667pt;}
.wsf{word-spacing:0.997333pt;}
.ws21{word-spacing:1.013333pt;}
.ws3b{word-spacing:1.056000pt;}
.ws43{word-spacing:1.114667pt;}
.ws2e{word-spacing:1.173333pt;}
.ws8{word-spacing:1.232000pt;}
.ws12{word-spacing:1.280000pt;}
.ws42{word-spacing:1.290667pt;}
.ws2d{word-spacing:1.333333pt;}
.ws38{word-spacing:1.349333pt;}
.ws2c{word-spacing:1.386667pt;}
.ws39{word-spacing:1.408000pt;}
.ws70{word-spacing:1.416533pt;}
.ws71{word-spacing:1.439467pt;}
.ws13{word-spacing:1.440000pt;}
.ws34{word-spacing:1.466667pt;}
.ws94{word-spacing:1.473600pt;}
.ws93{word-spacing:1.493067pt;}
.ws98{word-spacing:1.534400pt;}
.ws97{word-spacing:1.547467pt;}
.ws6{word-spacing:1.584000pt;}
.ws74{word-spacing:1.694667pt;}
.ws75{word-spacing:1.697067pt;}
.ws96{word-spacing:1.720800pt;}
.ws7a{word-spacing:1.862133pt;}
.ws7b{word-spacing:1.865067pt;}
.ws4{word-spacing:2.012000pt;}
.ws33{word-spacing:2.053333pt;}
.ws46{word-spacing:2.346667pt;}
.ws84{word-spacing:2.456000pt;}
.ws83{word-spacing:2.456267pt;}
.ws5b{word-spacing:2.505867pt;}
.ws5a{word-spacing:2.506933pt;}
.ws86{word-spacing:2.602933pt;}
.ws85{word-spacing:2.614667pt;}
.ws5d{word-spacing:2.981600pt;}
.ws7c{word-spacing:2.982667pt;}
.ws7d{word-spacing:2.985333pt;}
.ws66{word-spacing:2.988000pt;}
.ws6a{word-spacing:3.061333pt;}
.ws69{word-spacing:3.062400pt;}
.ws40{word-spacing:3.080000pt;}
.ws76{word-spacing:3.117867pt;}
.ws77{word-spacing:3.129600pt;}
.ws44{word-spacing:3.271733pt;}
.ws78{word-spacing:3.565333pt;}
.ws79{word-spacing:3.585333pt;}
.ws5{word-spacing:3.651467pt;}
.ws2{word-spacing:3.652000pt;}
.ws5e{word-spacing:3.752533pt;}
.ws5f{word-spacing:3.756267pt;}
.ws8c{word-spacing:3.842933pt;}
.ws7e{word-spacing:3.880800pt;}
.ws8a{word-spacing:3.882667pt;}
.ws80{word-spacing:3.883200pt;}
.ws88{word-spacing:3.893333pt;}
.ws67{word-spacing:3.924267pt;}
.ws68{word-spacing:3.930400pt;}
.ws9e{word-spacing:3.958400pt;}
.ws9d{word-spacing:3.961333pt;}
.ws65{word-spacing:3.982133pt;}
.ws62{word-spacing:3.988267pt;}
.ws6b{word-spacing:4.005600pt;}
.ws6c{word-spacing:4.013600pt;}
.ws59{word-spacing:4.035733pt;}
.ws60{word-spacing:4.039733pt;}
.ws58{word-spacing:4.056800pt;}
.ws53{word-spacing:4.064000pt;}
.ws55{word-spacing:4.066400pt;}
.ws61{word-spacing:4.076000pt;}
.ws81{word-spacing:4.085067pt;}
.ws82{word-spacing:4.108267pt;}
.ws72{word-spacing:4.116533pt;}
.ws4e{word-spacing:4.117867pt;}
.ws91{word-spacing:4.135467pt;}
.ws92{word-spacing:4.152267pt;}
.ws64{word-spacing:4.358667pt;}
.ws87{word-spacing:4.392000pt;}
.ws52{word-spacing:4.566667pt;}
.ws4f{word-spacing:4.567200pt;}
.ws6d{word-spacing:4.786400pt;}
.ws99{word-spacing:5.368000pt;}
.ws9a{word-spacing:5.370400pt;}
.ws3f{word-spacing:5.434667pt;}
.ws90{word-spacing:5.934133pt;}
.ws8e{word-spacing:5.978933pt;}
.ws2f{word-spacing:142.208000pt;}
._0{margin-left:-14.670667pt;}
._12{margin-left:-10.160000pt;}
._9{margin-left:-8.272000pt;}
._11{margin-left:-7.040000pt;}
._7{margin-left:-5.866667pt;}
._a{margin-left:-4.400000pt;}
._2{margin-left:-3.256000pt;}
._6{margin-left:-1.994667pt;}
._5{margin-left:-1.056000pt;}
._3{width:1.114667pt;}
._4{width:2.288000pt;}
._10{width:3.226667pt;}
._e{width:4.341333pt;}
._f{width:5.258667pt;}
._d{width:6.186667pt;}
._c{width:7.253333pt;}
._16{width:8.506667pt;}
._15{width:10.080000pt;}
._14{width:11.029333pt;}
._1{width:12.232000pt;}
._13{width:13.464000pt;}
._8{width:14.644000pt;}
._b{width:16.368000pt;}
.fs6{font-size:29.866667pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:36.000000pt;}
.fs7{font-size:40.000000pt;}
.fs5{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:44.000000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:30.501067pt;}
.y1a0{bottom:104.345333pt;}
.y2c7{bottom:104.358133pt;}
.y2a8{bottom:104.642400pt;}
.y87{bottom:104.938800pt;}
.y190{bottom:104.938933pt;}
.yb4{bottom:104.940800pt;}
.y49{bottom:104.947067pt;}
.y14{bottom:104.951467pt;}
.yf4{bottom:104.951867pt;}
.y11a{bottom:105.113733pt;}
.yd4{bottom:105.132400pt;}
.y1dc{bottom:105.143067pt;}
.y29{bottom:105.195200pt;}
.y237{bottom:105.216400pt;}
.y217{bottom:105.220000pt;}
.y283{bottom:105.230267pt;}
.y1fa{bottom:105.233333pt;}
.y13a{bottom:105.236533pt;}
.y255{bottom:105.300400pt;}
.y66{bottom:105.319067pt;}
.y19f{bottom:117.604000pt;}
.y2c6{bottom:117.787467pt;}
.y2a7{bottom:118.790400pt;}
.yb3{bottom:120.580800pt;}
.y48{bottom:121.640400pt;}
.y18f{bottom:121.778933pt;}
.y13{bottom:121.924800pt;}
.yf3{bottom:121.951867pt;}
.y86{bottom:122.312133pt;}
.y119{bottom:122.625733pt;}
.yd3{bottom:122.805733pt;}
.y158{bottom:122.920400pt;}
.y216{bottom:123.142667pt;}
.y13b{bottom:123.186533pt;}
.y139{bottom:123.247200pt;}
.y28{bottom:123.249867pt;}
.y236{bottom:123.505733pt;}
.y1f9{bottom:123.669333pt;}
.y1be{bottom:123.711067pt;}
.y1db{bottom:123.725733pt;}
.y282{bottom:123.812933pt;}
.y65{bottom:123.887067pt;}
.y254{bottom:124.191067pt;}
.y19e{bottom:130.862667pt;}
.y2a6{bottom:132.931733pt;}
.y2c5{bottom:134.736800pt;}
.yb2{bottom:136.220800pt;}
.y47{bottom:138.333733pt;}
.y18e{bottom:138.618933pt;}
.y12{bottom:138.898133pt;}
.yf2{bottom:138.951867pt;}
.y85{bottom:139.685467pt;}
.y118{bottom:140.137733pt;}
.y157{bottom:140.197733pt;}
.yd2{bottom:140.479067pt;}
.y215{bottom:141.065333pt;}
.y138{bottom:141.257867pt;}
.y27{bottom:141.304533pt;}
.y235{bottom:141.795067pt;}
.y1bd{bottom:142.308400pt;}
.y281{bottom:142.395600pt;}
.y64{bottom:142.455067pt;}
.y253{bottom:143.081733pt;}
.y19d{bottom:144.121333pt;}
.y2a5{bottom:147.079733pt;}
.y1f8{bottom:151.562667pt;}
.y1da{bottom:151.753733pt;}
.yb1{bottom:151.860800pt;}
.y45{bottom:155.027067pt;}
.y46{bottom:155.160400pt;}
.y11{bottom:155.871467pt;}
.yf1{bottom:155.951867pt;}
.y117{bottom:157.649733pt;}
.y156{bottom:157.651067pt;}
.y153{bottom:157.783067pt;}
.yd1{bottom:158.152400pt;}
.y214{bottom:158.988000pt;}
.y137{bottom:159.268533pt;}
.y234{bottom:160.084400pt;}
.y19c{bottom:160.900000pt;}
.y1bc{bottom:160.905733pt;}
.y280{bottom:160.978267pt;}
.y2a4{bottom:161.224400pt;}
.y252{bottom:161.972400pt;}
.y18d{bottom:164.908000pt;}
.y84{bottom:166.524933pt;}
.yb0{bottom:167.500800pt;}
.y2c4{bottom:167.566533pt;}
.y1f7{bottom:168.667067pt;}
.y26{bottom:168.804533pt;}
.y1d9{bottom:170.336400pt;}
.y63{bottom:170.468400pt;}
.y10{bottom:172.844800pt;}
.yf0{bottom:172.951867pt;}
.y154{bottom:175.148400pt;}
.y116{bottom:175.161733pt;}
.y2a3{bottom:175.369067pt;}
.yd0{bottom:175.825733pt;}
.y19b{bottom:176.268000pt;}
.y213{bottom:176.910667pt;}
.y265{bottom:178.373733pt;}
.y1bb{bottom:179.503067pt;}
.y27f{bottom:179.560933pt;}
.y251{bottom:180.863067pt;}
.y44{bottom:181.188667pt;}
.yaf{bottom:183.140800pt;}
.y2c3{bottom:185.591867pt;}
.y136{bottom:186.739200pt;}
.y25{bottom:186.859200pt;}
.y233{bottom:187.819067pt;}
.y62{bottom:189.036400pt;}
.y2a2{bottom:189.513733pt;}
.y19a{bottom:189.526667pt;}
.yf7{bottom:189.551600pt;}
.yf{bottom:189.818133pt;}
.yef{bottom:189.951867pt;}
.y18c{bottom:191.198133pt;}
.y155{bottom:192.616400pt;}
.y115{bottom:192.673733pt;}
.y152{bottom:192.675067pt;}
.ycf{bottom:193.499067pt;}
.y83{bottom:194.684933pt;}
.y1f6{bottom:195.229467pt;}
.y264{bottom:196.663067pt;}
.y27e{bottom:198.149067pt;}
.y1d8{bottom:198.364400pt;}
.yae{bottom:198.780800pt;}
.y43{bottom:199.214000pt;}
.y250{bottom:199.753733pt;}
.y199{bottom:202.785333pt;}
.y2c2{bottom:203.617200pt;}
.y2a1{bottom:203.655200pt;}
.y212{bottom:204.280400pt;}
.y24{bottom:204.846800pt;}
.y232{bottom:206.108400pt;}
.yee{bottom:206.951867pt;}
.y1ba{bottom:207.545733pt;}
.y61{bottom:207.604400pt;}
.y18b{bottom:208.038133pt;}
.y151{bottom:210.128400pt;}
.y114{bottom:210.185733pt;}
.yce{bottom:211.172400pt;}
.y1f5{bottom:212.336133pt;}
.y82{bottom:213.384933pt;}
.y135{bottom:214.209867pt;}
.yad{bottom:214.420800pt;}
.y198{bottom:216.044000pt;}
.ye{bottom:216.290133pt;}
.y27d{bottom:216.731733pt;}
.y1d7{bottom:216.947067pt;}
.y42{bottom:217.239333pt;}
.y2a0{bottom:217.803200pt;}
.y24f{bottom:218.644400pt;}
.y2c1{bottom:221.642533pt;}
.y23{bottom:222.901467pt;}
.yed{bottom:223.951867pt;}
.y231{bottom:224.397733pt;}
.y18a{bottom:224.878133pt;}
.y1b9{bottom:226.143067pt;}
.y60{bottom:226.172400pt;}
.y150{bottom:227.523067pt;}
.y113{bottom:227.697733pt;}
.ycd{bottom:228.845733pt;}
.y197{bottom:229.302667pt;}
.yac{bottom:230.060800pt;}
.y29f{bottom:231.944400pt;}
.y81{bottom:232.084933pt;}
.y134{bottom:232.220533pt;}
.yd{bottom:234.594133pt;}
.y41{bottom:235.264667pt;}
.y1d6{bottom:235.529733pt;}
.y1f4{bottom:238.951733pt;}
.y2c0{bottom:239.667867pt;}
.yec{bottom:240.951867pt;}
.y22{bottom:240.956133pt;}
.y211{bottom:241.095067pt;}
.y189{bottom:241.718133pt;}
.y196{bottom:242.561333pt;}
.y230{bottom:242.687067pt;}
.y5f{bottom:244.740400pt;}
.y27c{bottom:244.759733pt;}
.y14e{bottom:245.079067pt;}
.y112{bottom:245.209733pt;}
.yab{bottom:245.700800pt;}
.y29e{bottom:246.092400pt;}
.ycc{bottom:246.519067pt;}
.y24e{bottom:246.995067pt;}
.y133{bottom:250.231200pt;}
.y80{bottom:250.784933pt;}
.yc{bottom:252.898133pt;}
.y40{bottom:253.290000pt;}
.y1d5{bottom:254.112400pt;}
.y195{bottom:255.820000pt;}
.y1f3{bottom:257.387733pt;}
.y2bf{bottom:257.693200pt;}
.yeb{bottom:257.951867pt;}
.y21{bottom:259.010800pt;}
.y210{bottom:259.017733pt;}
.y29d{bottom:260.237200pt;}
.y22f{bottom:260.976400pt;}
.yaa{bottom:261.340800pt;}
.y111{bottom:262.721733pt;}
.y5e{bottom:263.308400pt;}
.y1b8{bottom:263.337733pt;}
.y27b{bottom:263.367067pt;}
.y24d{bottom:265.885733pt;}
.y188{bottom:268.007333pt;}
.y132{bottom:268.241867pt;}
.y194{bottom:269.078667pt;}
.y1d4{bottom:272.695067pt;}
.ycb{bottom:273.637733pt;}
.y29c{bottom:274.381867pt;}
.yea{bottom:274.951867pt;}
.y1f2{bottom:275.823733pt;}
.y20f{bottom:276.928933pt;}
.ya9{bottom:276.980800pt;}
.y20{bottom:277.065467pt;}
.y7f{bottom:278.944000pt;}
.y22e{bottom:279.265733pt;}
.y14f{bottom:279.707067pt;}
.y14d{bottom:279.897733pt;}
.y110{bottom:280.233733pt;}
.y15c{bottom:280.352400pt;}
.yb{bottom:280.662133pt;}
.y3f{bottom:280.782533pt;}
.y5d{bottom:281.876400pt;}
.y1b7{bottom:281.935067pt;}
.y27a{bottom:281.949733pt;}
.y193{bottom:282.337333pt;}
.y24c{bottom:284.776400pt;}
.y2be{bottom:285.155067pt;}
.y131{bottom:286.252533pt;}
.y29b{bottom:288.523200pt;}
.y1d3{bottom:291.277733pt;}
.yca{bottom:291.311067pt;}
.ye9{bottom:291.951867pt;}
.ya8{bottom:292.620800pt;}
.y1f1{bottom:294.259733pt;}
.y187{bottom:294.297733pt;}
.y20e{bottom:294.851600pt;}
.y1f{bottom:295.120133pt;}
.y192{bottom:295.596000pt;}
.y7e{bottom:296.317333pt;}
.y3e{bottom:297.475867pt;}
.y22d{bottom:297.555067pt;}
.y10f{bottom:297.745733pt;}
.y14c{bottom:297.791067pt;}
.ya{bottom:298.966133pt;}
.y5c{bottom:300.444400pt;}
.y29a{bottom:302.671200pt;}
.y2bd{bottom:303.180400pt;}
.y24b{bottom:303.667067pt;}
.y130{bottom:304.263200pt;}
.yf6{bottom:308.234267pt;}
.ya7{bottom:308.260800pt;}
.yf8{bottom:308.634000pt;}
.ye8{bottom:308.951867pt;}
.yc9{bottom:308.984400pt;}
.y1d2{bottom:309.860400pt;}
.y279{bottom:309.977733pt;}
.y1b6{bottom:310.359067pt;}
.y186{bottom:311.137733pt;}
.y191{bottom:312.374667pt;}
.y1f0{bottom:312.695733pt;}
.y20d{bottom:312.774267pt;}
.y7d{bottom:313.690667pt;}
.y3d{bottom:314.169200pt;}
.y10e{bottom:315.257733pt;}
.y14b{bottom:315.347067pt;}
.y263{bottom:315.844400pt;}
.y299{bottom:316.812533pt;}
.y9{bottom:317.270133pt;}
.y5b{bottom:319.012400pt;}
.y2bc{bottom:321.205733pt;}
.y24a{bottom:322.557733pt;}
.y1e{bottom:322.620133pt;}
.ya6{bottom:323.900800pt;}
.y22c{bottom:325.289733pt;}
.ye7{bottom:325.951867pt;}
.yc8{bottom:326.657733pt;}
.y185{bottom:327.977733pt;}
.y1d1{bottom:328.443067pt;}
.y278{bottom:328.560400pt;}
.y1b5{bottom:328.956400pt;}
.y20c{bottom:330.696933pt;}
.y3c{bottom:330.862533pt;}
.y298{bottom:330.960533pt;}
.y7c{bottom:331.064000pt;}
.y12f{bottom:331.733867pt;}
.y14a{bottom:332.683067pt;}
.y10d{bottom:332.769733pt;}
.y262{bottom:334.133733pt;}
.y8{bottom:335.574133pt;}
.y2bb{bottom:339.150667pt;}
.y1ef{bottom:340.591733pt;}
.y1d{bottom:340.674800pt;}
.y249{bottom:341.448400pt;}
.y22b{bottom:343.579067pt;}
.y184{bottom:344.817733pt;}
.y297{bottom:345.101867pt;}
.y170{bottom:345.218133pt;}
.y5a{bottom:347.025733pt;}
.y277{bottom:347.143067pt;}
.y3b{bottom:347.555867pt;}
.y7b{bottom:348.437333pt;}
.y20b{bottom:348.619600pt;}
.ya5{bottom:348.989867pt;}
.y10c{bottom:350.281733pt;}
.y2e1{bottom:350.323867pt;}
.y2fb{bottom:350.328800pt;}
.ye6{bottom:352.419067pt;}
.y261{bottom:352.423067pt;}
.yc7{bottom:353.776400pt;}
.y7{bottom:353.878133pt;}
.y2ba{bottom:357.176000pt;}
.y12e{bottom:357.312533pt;}
.y1c{bottom:358.729467pt;}
.y1ee{bottom:359.027733pt;}
.y296{bottom:359.249867pt;}
.y248{bottom:360.325467pt;}
.y183{bottom:361.657733pt;}
.y22a{bottom:361.868400pt;}
.y16f{bottom:362.334133pt;}
.y3a{bottom:364.249200pt;}
.y2fa{bottom:364.404800pt;}
.y2e0{bottom:364.404933pt;}
.y1b4{bottom:365.476400pt;}
.y59{bottom:365.593733pt;}
.y1d0{bottom:365.608400pt;}
.y276{bottom:365.725733pt;}
.y7a{bottom:365.810667pt;}
.y20a{bottom:366.542267pt;}
.y15e{bottom:367.311067pt;}
.y15b{bottom:367.487067pt;}
.y10b{bottom:367.793733pt;}
.y260{bottom:370.712400pt;}
.ye5{bottom:370.752400pt;}
.yc6{bottom:371.449733pt;}
.y6{bottom:372.182133pt;}
.y295{bottom:373.394533pt;}
.y2b9{bottom:375.201333pt;}
.y12d{bottom:375.323200pt;}
.ya4{bottom:376.480933pt;}
.y1b{bottom:376.784133pt;}
.y1ed{bottom:377.463733pt;}
.y2f9{bottom:378.486000pt;}
.y2df{bottom:378.491067pt;}
.y247{bottom:379.230800pt;}
.y229{bottom:380.157733pt;}
.y79{bottom:383.184000pt;}
.y1b3{bottom:384.073733pt;}
.y58{bottom:384.161733pt;}
.y275{bottom:384.308400pt;}
.y209{bottom:384.464933pt;}
.y15a{bottom:385.175067pt;}
.y10a{bottom:385.305733pt;}
.y294{bottom:387.539200pt;}
.y182{bottom:388.000800pt;}
.y16e{bottom:388.895467pt;}
.y25f{bottom:389.001733pt;}
.ye4{bottom:389.085733pt;}
.yc5{bottom:389.123067pt;}
.y39{bottom:390.413467pt;}
.y5{bottom:390.486133pt;}
.y2de{bottom:392.567067pt;}
.y2f8{bottom:392.567200pt;}
.y2b8{bottom:393.226667pt;}
.y12c{bottom:393.333867pt;}
.y1cf{bottom:393.636400pt;}
.ya3{bottom:394.520933pt;}
.y1a{bottom:394.838800pt;}
.y1ec{bottom:395.899733pt;}
.y246{bottom:398.136133pt;}
.y228{bottom:398.447067pt;}
.y78{bottom:400.557333pt;}
.y293{bottom:401.680533pt;}
.y1b2{bottom:402.671067pt;}
.y109{bottom:402.817733pt;}
.y274{bottom:402.891067pt;}
.y181{bottom:404.838133pt;}
.y16d{bottom:406.011467pt;}
.y2dd{bottom:406.648133pt;}
.y2f7{bottom:406.648400pt;}
.yc4{bottom:406.796400pt;}
.y25e{bottom:407.291067pt;}
.y38{bottom:408.438800pt;}
.y4{bottom:408.790133pt;}
.y2b7{bottom:411.252000pt;}
.y12b{bottom:411.344533pt;}
.y208{bottom:411.832933pt;}
.y57{bottom:412.189733pt;}
.y1ce{bottom:412.219067pt;}
.ya1{bottom:412.560933pt;}
.ya2{bottom:412.694267pt;}
.y1eb{bottom:414.335733pt;}
.y292{bottom:415.828533pt;}
.y227{bottom:416.736400pt;}
.ye3{bottom:416.864400pt;}
.y245{bottom:417.041467pt;}
.y77{bottom:417.930667pt;}
.y108{bottom:420.329733pt;}
.y2dc{bottom:420.729200pt;}
.y2f6{bottom:420.729467pt;}
.y1b1{bottom:421.268400pt;}
.y19{bottom:422.323733pt;}
.y16c{bottom:423.127467pt;}
.yc3{bottom:424.469733pt;}
.y25d{bottom:425.580400pt;}
.y37{bottom:426.464133pt;}
.y3{bottom:427.094133pt;}
.y2b6{bottom:429.277333pt;}
.y207{bottom:429.755600pt;}
.y291{bottom:429.970000pt;}
.y9f{bottom:430.600933pt;}
.ya0{bottom:430.734267pt;}
.y1cd{bottom:430.801733pt;}
.y273{bottom:430.919067pt;}
.y180{bottom:431.120800pt;}
.y1ea{bottom:432.771733pt;}
.y2db{bottom:434.810267pt;}
.y2f5{bottom:434.815867pt;}
.y226{bottom:435.025733pt;}
.ye2{bottom:435.197733pt;}
.y76{bottom:435.304000pt;}
.y244{bottom:435.861733pt;}
.y149{bottom:437.637733pt;}
.y107{bottom:437.841733pt;}
.y12a{bottom:438.820133pt;}
.y18{bottom:439.043733pt;}
.y1b0{bottom:439.865733pt;}
.y56{bottom:440.217733pt;}
.y16b{bottom:440.243467pt;}
.yc2{bottom:442.143067pt;}
.y25c{bottom:443.869733pt;}
.y290{bottom:444.118000pt;}
.y2b5{bottom:447.302667pt;}
.y9e{bottom:447.307600pt;}
.y206{bottom:447.678267pt;}
.y2da{bottom:448.891333pt;}
.y2f4{bottom:448.891867pt;}
.y1cc{bottom:449.384400pt;}
.y272{bottom:449.501733pt;}
.y1e9{bottom:451.214000pt;}
.yf5{bottom:453.111600pt;}
.y225{bottom:453.315067pt;}
.ye1{bottom:453.531067pt;}
.y36{bottom:453.949467pt;}
.y243{bottom:454.767067pt;}
.y2{bottom:454.852267pt;}
.y148{bottom:455.179067pt;}
.y129{bottom:455.233467pt;}
.y106{bottom:455.353733pt;}
.y17{bottom:455.763733pt;}
.y16a{bottom:457.359467pt;}
.y28f{bottom:458.266000pt;}
.y1af{bottom:458.463067pt;}
.y55{bottom:458.785733pt;}
.y75{bottom:462.140667pt;}
.y25b{bottom:462.159067pt;}
.y2f3{bottom:462.972933pt;}
.y2d9{bottom:462.977467pt;}
.y9d{bottom:464.014267pt;}
.y17f{bottom:464.795467pt;}
.y2b4{bottom:465.328000pt;}
.y1cb{bottom:467.967067pt;}
.y271{bottom:468.084400pt;}
.yc1{bottom:469.267733pt;}
.y1e8{bottom:469.650000pt;}
.y224{bottom:471.604400pt;}
.y128{bottom:471.646800pt;}
.ye0{bottom:471.864400pt;}
.y35{bottom:471.974800pt;}
.y159{bottom:472.779067pt;}
.y105{bottom:472.865733pt;}
.y242{bottom:473.672400pt;}
.y205{bottom:475.036400pt;}
.y2d8{bottom:477.053467pt;}
.y2f2{bottom:477.054133pt;}
.y1ae{bottom:477.060400pt;}
.y54{bottom:477.353733pt;}
.y25a{bottom:480.448400pt;}
.y9b{bottom:480.720933pt;}
.y74{bottom:480.840667pt;}
.y9c{bottom:480.854267pt;}
.y17e{bottom:481.632800pt;}
.y28e{bottom:481.885733pt;}
.y169{bottom:483.920133pt;}
.yc0{bottom:486.001067pt;}
.y1ca{bottom:486.549733pt;}
.y127{bottom:488.060133pt;}
.y223{bottom:489.893733pt;}
.y34{bottom:490.000133pt;}
.y147{bottom:490.217733pt;}
.y104{bottom:490.377733pt;}
.y2f1{bottom:491.135200pt;}
.y2d7{bottom:491.139467pt;}
.y241{bottom:492.577733pt;}
.y2b3{bottom:492.798667pt;}
.y1ad{bottom:495.657733pt;}
.y53{bottom:495.921733pt;}
.y270{bottom:496.112400pt;}
.y99{bottom:497.427600pt;}
.y1e7{bottom:497.554800pt;}
.y9a{bottom:497.560933pt;}
.y17d{bottom:498.470133pt;}
.y73{bottom:499.540667pt;}
.ydf{bottom:499.643067pt;}
.y168{bottom:501.036133pt;}
.y16{bottom:501.950400pt;}
.y204{bottom:502.404400pt;}
.ybf{bottom:502.734400pt;}
.y126{bottom:504.473467pt;}
.y1c9{bottom:505.132400pt;}
.y2d6{bottom:505.215467pt;}
.y2f0{bottom:505.216400pt;}
.y146{bottom:507.157733pt;}
.y103{bottom:507.889733pt;}
.y33{bottom:508.025467pt;}
.y222{bottom:508.183067pt;}
.y2b2{bottom:510.824000pt;}
.y240{bottom:511.483067pt;}
.y98{bottom:514.134267pt;}
.y1ac{bottom:514.255067pt;}
.y52{bottom:514.489733pt;}
.y1e6{bottom:514.661467pt;}
.y26f{bottom:514.695067pt;}
.y17c{bottom:515.307467pt;}
.yde{bottom:517.976400pt;}
.y28d{bottom:518.948400pt;}
.y2ef{bottom:519.297600pt;}
.y2d5{bottom:519.306667pt;}
.ybe{bottom:519.467733pt;}
.y203{bottom:520.327067pt;}
.y125{bottom:520.886800pt;}
.y1c8{bottom:523.715067pt;}
.y145{bottom:525.212400pt;}
.y102{bottom:525.401733pt;}
.y32{bottom:526.050800pt;}
.y221{bottom:526.472400pt;}
.y167{bottom:527.587067pt;}
.y72{bottom:527.700133pt;}
.y2b1{bottom:528.849333pt;}
.y96{bottom:530.840933pt;}
.y97{bottom:530.974267pt;}
.y1e5{bottom:531.768133pt;}
.y17b{bottom:532.144800pt;}
.y1ab{bottom:532.852400pt;}
.y26e{bottom:533.277733pt;}
.y2ee{bottom:533.378800pt;}
.y2d4{bottom:533.382667pt;}
.ybd{bottom:536.201067pt;}
.ydd{bottom:536.309733pt;}
.y28c{bottom:537.105733pt;}
.y124{bottom:537.300133pt;}
.y202{bottom:538.249733pt;}
.y23f{bottom:539.833733pt;}
.y15{bottom:541.227333pt;}
.y1c7{bottom:542.297733pt;}
.y144{bottom:542.387067pt;}
.y51{bottom:542.517733pt;}
.y101{bottom:542.913733pt;}
.y31{bottom:544.076133pt;}
.y166{bottom:544.703067pt;}
.y220{bottom:544.761733pt;}
.y70{bottom:545.073467pt;}
.y71{bottom:545.206800pt;}
.y2b0{bottom:546.874667pt;}
.y2d3{bottom:547.458667pt;}
.y2ed{bottom:547.465067pt;}
.y94{bottom:547.547600pt;}
.y95{bottom:547.680933pt;}
.y1e4{bottom:548.874800pt;}
.y17a{bottom:548.982133pt;}
.y1aa{bottom:551.449733pt;}
.y26d{bottom:551.860400pt;}
.ybc{bottom:552.934400pt;}
.y13c{bottom:553.634133pt;}
.y123{bottom:553.713467pt;}
.y13d{bottom:553.854133pt;}
.ydc{bottom:554.643067pt;}
.y28b{bottom:555.263067pt;}
.y23e{bottom:558.739067pt;}
.y143{bottom:559.708400pt;}
.y100{bottom:560.425733pt;}
.y1c6{bottom:560.880400pt;}
.y50{bottom:561.085733pt;}
.y2d2{bottom:561.539733pt;}
.y2ec{bottom:561.541067pt;}
.y165{bottom:561.819067pt;}
.y30{bottom:562.101467pt;}
.y6f{bottom:562.446800pt;}
.y259{bottom:563.051067pt;}
.y2af{bottom:564.900000pt;}
.y201{bottom:565.617733pt;}
.y179{bottom:565.819467pt;}
.y1e3{bottom:565.981467pt;}
.ybb{bottom:569.667733pt;}
.y1a9{bottom:570.047067pt;}
.y122{bottom:570.126800pt;}
.y26c{bottom:570.443067pt;}
.y21f{bottom:572.496400pt;}
.y28a{bottom:573.420400pt;}
.y93{bottom:573.703200pt;}
.y2d1{bottom:575.620800pt;}
.y2eb{bottom:575.622267pt;}
.y23d{bottom:577.644400pt;}
.y142{bottom:577.660400pt;}
.yff{bottom:577.937733pt;}
.y1c5{bottom:579.463067pt;}
.y4f{bottom:579.653733pt;}
.y6e{bottom:579.820133pt;}
.y258{bottom:581.340400pt;}
.ydb{bottom:582.433467pt;}
.y178{bottom:582.656800pt;}
.y2ae{bottom:582.925333pt;}
.y1e2{bottom:583.088133pt;}
.y200{bottom:583.540400pt;}
.yba{bottom:586.401067pt;}
.y121{bottom:586.540133pt;}
.y164{bottom:588.380400pt;}
.y1a8{bottom:588.644400pt;}
.y26b{bottom:589.025733pt;}
.y2f{bottom:589.586800pt;}
.y2d0{bottom:589.701867pt;}
.y2ea{bottom:589.708533pt;}
.y21e{bottom:590.785733pt;}
.y289{bottom:591.577733pt;}
.yfe{bottom:595.449733pt;}
.y23c{bottom:596.549733pt;}
.y6d{bottom:597.193467pt;}
.y1c4{bottom:598.045733pt;}
.y4e{bottom:598.221733pt;}
.yda{bottom:599.433467pt;}
.y177{bottom:599.494133pt;}
.y257{bottom:599.629733pt;}
.y1e1{bottom:600.194800pt;}
.y2ad{bottom:600.950667pt;}
.y91{bottom:601.193467pt;}
.y92{bottom:601.326800pt;}
.y120{bottom:602.953467pt;}
.yb9{bottom:603.134400pt;}
.y2cf{bottom:603.782933pt;}
.y2e9{bottom:603.784533pt;}
.y26a{bottom:607.608400pt;}
.y21d{bottom:609.075067pt;}
.y288{bottom:609.735067pt;}
.y1ff{bottom:610.908400pt;}
.yfd{bottom:612.961733pt;}
.y6c{bottom:614.566800pt;}
.y1a3{bottom:614.766800pt;}
.y163{bottom:614.941733pt;}
.y176{bottom:616.331467pt;}
.yd9{bottom:616.433467pt;}
.y1a7{bottom:616.687067pt;}
.y4d{bottom:616.789733pt;}
.y2e{bottom:617.065067pt;}
.y2e8{bottom:617.865733pt;}
.y2ce{bottom:617.869067pt;}
.y8f{bottom:617.900133pt;}
.y256{bottom:617.919067pt;}
.y90{bottom:618.033467pt;}
.y2ac{bottom:618.976000pt;}
.y11f{bottom:619.366800pt;}
.y23b{bottom:624.900400pt;}
.y1c3{bottom:626.073733pt;}
.y269{bottom:626.191067pt;}
.y1e0{bottom:626.765067pt;}
.y21c{bottom:627.364400pt;}
.y287{bottom:627.892400pt;}
.y218{bottom:628.191600pt;}
.y1fe{bottom:628.831067pt;}
.yb8{bottom:629.300400pt;}
.y141{bottom:630.108400pt;}
.y15d{bottom:630.372400pt;}
.yfc{bottom:630.473733pt;}
.y6b{bottom:631.940133pt;}
.y2e7{bottom:631.941733pt;}
.y2cd{bottom:631.945067pt;}
.y162{bottom:632.057733pt;}
.y175{bottom:633.168800pt;}
.yd8{bottom:633.433467pt;}
.y8e{bottom:634.606800pt;}
.y1a6{bottom:635.284400pt;}
.y4c{bottom:635.357733pt;}
.y11e{bottom:635.780133pt;}
.y2ab{bottom:637.001333pt;}
.y23a{bottom:643.805733pt;}
.y1c2{bottom:644.656400pt;}
.y268{bottom:644.773733pt;}
.y1df{bottom:645.201067pt;}
.y21b{bottom:645.653733pt;}
.y2cc{bottom:646.031200pt;}
.y2e6{bottom:646.033200pt;}
.y286{bottom:646.049733pt;}
.y2d{bottom:646.445733pt;}
.y1fd{bottom:646.753733pt;}
.yb7{bottom:647.105733pt;}
.y140{bottom:647.781733pt;}
.yfb{bottom:647.985733pt;}
.y161{bottom:649.173733pt;}
.y1a2{bottom:649.233467pt;}
.y6a{bottom:649.313467pt;}
.y174{bottom:650.006133pt;}
.yd7{bottom:650.433467pt;}
.y8c{bottom:651.313467pt;}
.y8d{bottom:651.446800pt;}
.y11d{bottom:652.193467pt;}
.y1a5{bottom:653.881733pt;}
.y2aa{bottom:655.026667pt;}
.y2cb{bottom:660.107200pt;}
.y2e5{bottom:660.109200pt;}
.y239{bottom:662.711067pt;}
.y1c1{bottom:663.239067pt;}
.y267{bottom:663.356400pt;}
.y4b{bottom:663.385733pt;}
.y1de{bottom:663.643333pt;}
.y21a{bottom:663.943067pt;}
.y285{bottom:664.207067pt;}
.y2c{bottom:664.471067pt;}
.y1fc{bottom:664.676400pt;}
.yb6{bottom:664.911067pt;}
.y13f{bottom:665.117733pt;}
.yfa{bottom:665.497733pt;}
.y160{bottom:666.289733pt;}
.y69{bottom:666.686800pt;}
.y173{bottom:666.843467pt;}
.yd6{bottom:667.433467pt;}
.y8b{bottom:668.020133pt;}
.y11c{bottom:668.606800pt;}
.y1a4{bottom:672.479067pt;}
.y2a9{bottom:673.052000pt;}
.y2ca{bottom:674.193200pt;}
.y2e4{bottom:674.195467pt;}
.y238{bottom:681.616400pt;}
.y1c0{bottom:681.821733pt;}
.y266{bottom:681.939067pt;}
.y4a{bottom:681.953733pt;}
.y1dd{bottom:682.085733pt;}
.y219{bottom:682.232400pt;}
.y284{bottom:682.364400pt;}
.y2b{bottom:682.496400pt;}
.y13e{bottom:682.556400pt;}
.y1fb{bottom:682.599067pt;}
.yb5{bottom:682.716400pt;}
.yf9{bottom:683.009733pt;}
.y15f{bottom:683.405733pt;}
.y1a1{bottom:683.494800pt;}
.y172{bottom:683.680800pt;}
.y68{bottom:684.060133pt;}
.yd5{bottom:684.433467pt;}
.y89{bottom:684.726800pt;}
.y8a{bottom:684.860133pt;}
.y11b{bottom:685.020133pt;}
.y2c9{bottom:688.269200pt;}
.y2e3{bottom:688.271467pt;}
.y1bf{bottom:700.404400pt;}
.y171{bottom:700.518133pt;}
.y2a{bottom:700.521733pt;}
.y67{bottom:701.433467pt;}
.y88{bottom:701.566800pt;}
.y2c8{bottom:702.345200pt;}
.y2e2{bottom:702.347467pt;}
.h11{height:26.789583pt;}
.h9{height:36.536458pt;}
.h2{height:38.270833pt;}
.h23{height:38.277767pt;}
.hb{height:40.190104pt;}
.h16{height:40.229571pt;}
.h13{height:40.526104pt;}
.hc{height:40.776771pt;}
.h8{height:40.992188pt;}
.h24{height:43.033887pt;}
.h1b{height:43.054688pt;}
.h1f{height:43.067488pt;}
.h1e{height:43.068021pt;}
.h1c{height:43.080821pt;}
.h1d{height:43.081354pt;}
.h20{height:43.081888pt;}
.ha{height:47.305208pt;}
.h5{height:47.838542pt;}
.h15{height:47.847608pt;}
.h1a{height:52.523729pt;}
.h14{height:52.597329pt;}
.h4{height:52.622396pt;}
.h17{height:52.668262pt;}
.h19{height:52.735463pt;}
.hd{height:52.739729pt;}
.h7{height:52.890662pt;}
.h21{height:52.926396pt;}
.h18{height:52.962662pt;}
.he{height:53.267729pt;}
.h12{height:53.326396pt;}
.h3{height:54.598958pt;}
.h10{height:56.204210pt;}
.h22{height:56.231410pt;}
.hf{height:56.243144pt;}
.h6{height:69.489583pt;}
.h0{height:812.598667pt;}
.h1{height:812.666667pt;}
.w0{width:869.290667pt;}
.w1{width:869.333333pt;}
.x0{left:0.000000pt;}
.xe{left:45.354267pt;}
.xf{left:60.475600pt;}
.x48{left:64.252000pt;}
.x1e{left:83.149600pt;}
.x44{left:105.868133pt;}
.x2{left:120.945467pt;}
.x43{left:122.749467pt;}
.x3{left:136.063600pt;}
.x1f{left:154.521600pt;}
.x4{left:158.740933pt;}
.x22{left:167.716533pt;}
.x42{left:174.948133pt;}
.x11{left:178.940933pt;}
.x14{left:197.594267pt;}
.x20{left:230.509600pt;}
.x16{left:252.554267pt;}
.x19{left:268.514267pt;}
.x12{left:283.580933pt;}
.x15{left:292.127600pt;}
.x23{left:305.630267pt;}
.x1c{left:314.434267pt;}
.x46{left:318.457867pt;}
.x5{left:323.119600pt;}
.x1a{left:344.420933pt;}
.x13{left:345.527600pt;}
.x24{left:360.058267pt;}
.x1b{left:386.594267pt;}
.x17{left:392.554267pt;}
.x18{left:405.927600pt;}
.xa{left:415.747867pt;}
.x1d{left:421.194267pt;}
.xb{left:430.869200pt;}
.x45{left:434.569200pt;}
.xc{left:453.543067pt;}
.xd{left:473.636400pt;}
.x9{left:491.335733pt;}
.x8{left:506.457067pt;}
.x47{left:510.232800pt;}
.x3f{left:527.960800pt;}
.x7{left:529.134400pt;}
.x35{left:538.286133pt;}
.x3b{left:546.690133pt;}
.x31{left:553.627467pt;}
.x29{left:554.932800pt;}
.x38{left:573.808800pt;}
.x2e{left:596.718133pt;}
.x10{left:608.654400pt;}
.x2f{left:616.019467pt;}
.x36{left:621.064800pt;}
.x37{left:623.807467pt;}
.x21{left:625.165200pt;}
.x26{left:636.523467pt;}
.x32{left:650.104800pt;}
.x3e{left:656.367467pt;}
.x2c{left:670.608800pt;}
.x6{left:673.289867pt;}
.x3c{left:681.755467pt;}
.x27{left:686.023467pt;}
.x25{left:694.104800pt;}
.x41{left:696.979467pt;}
.x2a{left:701.922133pt;}
.x2d{left:706.586133pt;}
.x30{left:716.471467pt;}
.x28{left:721.062133pt;}
.x33{left:736.726133pt;}
.x2b{left:767.731467pt;}
.x40{left:769.344800pt;}
.x39{left:771.603467pt;}
.x3a{left:802.696800pt;}
.x3d{left:804.955467pt;}
.x34{left:807.419467pt;}
.x1{left:813.270800pt;}
}




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