
    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_3afe683e5ac7979a7df59c08.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_3b6d594ee10e13c72423b3b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_92d04e1bf59eec861be89d4d.woff2')format("woff");}.ff3{font-family:ff3;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;}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-16.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.678000px;}
.v2{vertical-align:24.000000px;}
.lsa8{letter-spacing:-1.680000px;}
.ls5b{letter-spacing:-1.650000px;}
.ls5c{letter-spacing:-1.584000px;}
.ls1b{letter-spacing:-1.518000px;}
.ls58{letter-spacing:-1.452000px;}
.ls42{letter-spacing:-1.386000px;}
.lsa{letter-spacing:-1.368000px;}
.ls6c{letter-spacing:-1.350000px;}
.ls31{letter-spacing:-1.320000px;}
.lsa7{letter-spacing:-1.260000px;}
.ls79{letter-spacing:-1.254000px;}
.ls90{letter-spacing:-1.242000px;}
.ls82{letter-spacing:-1.215000px;}
.lsa6{letter-spacing:-1.200000px;}
.ls48{letter-spacing:-1.188000px;}
.ls40{letter-spacing:-1.122000px;}
.ls7a{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-1.056000px;}
.ls91{letter-spacing:-1.039500px;}
.ls3e{letter-spacing:-0.990000px;}
.ls54{letter-spacing:-0.972000px;}
.ls9{letter-spacing:-0.969000px;}
.ls46{letter-spacing:-0.924000px;}
.lsa4{letter-spacing:-0.900000px;}
.ls35{letter-spacing:-0.858000px;}
.ls9d{letter-spacing:-0.855000px;}
.ls9e{letter-spacing:-0.840000px;}
.ls87{letter-spacing:-0.810000px;}
.ls47{letter-spacing:-0.792000px;}
.ls6b{letter-spacing:-0.756000px;}
.ls6a{letter-spacing:-0.729000px;}
.ls1f{letter-spacing:-0.726000px;}
.ls69{letter-spacing:-0.702000px;}
.lsa5{letter-spacing:-0.675000px;}
.ls34{letter-spacing:-0.660000px;}
.ls44{letter-spacing:-0.648000px;}
.ls59{letter-spacing:-0.643500px;}
.ls6{letter-spacing:-0.627000px;}
.ls43{letter-spacing:-0.607500px;}
.ls3f{letter-spacing:-0.594000px;}
.ls8c{letter-spacing:-0.567000px;}
.ls20{letter-spacing:-0.544500px;}
.ls8b{letter-spacing:-0.540000px;}
.ls50{letter-spacing:-0.528000px;}
.ls5a{letter-spacing:-0.495000px;}
.ls51{letter-spacing:-0.486000px;}
.ls9f{letter-spacing:-0.480000px;}
.ls41{letter-spacing:-0.462000px;}
.lsa3{letter-spacing:-0.450000px;}
.ls56{letter-spacing:-0.445500px;}
.ls55{letter-spacing:-0.432000px;}
.ls96{letter-spacing:-0.420000px;}
.ls95{letter-spacing:-0.405000px;}
.ls19{letter-spacing:-0.396000px;}
.ls71{letter-spacing:-0.378000px;}
.ls98{letter-spacing:-0.360000px;}
.ls8f{letter-spacing:-0.346500px;}
.lsb{letter-spacing:-0.342000px;}
.ls32{letter-spacing:-0.330000px;}
.ls52{letter-spacing:-0.324000px;}
.ls33{letter-spacing:-0.297000px;}
.lsc{letter-spacing:-0.285000px;}
.ls3a{letter-spacing:-0.270000px;}
.ls49{letter-spacing:-0.264000px;}
.ls8e{letter-spacing:-0.247500px;}
.ls53{letter-spacing:-0.243000px;}
.lsa1{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.228000px;}
.ls38{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.202500px;}
.ls1e{letter-spacing:-0.198000px;}
.lsa0{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.171000px;}
.ls36{letter-spacing:-0.162000px;}
.ls4a{letter-spacing:-0.148500px;}
.ls1d{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.114000px;}
.ls68{letter-spacing:-0.108000px;}
.ls8d{letter-spacing:-0.081000px;}
.ls1a{letter-spacing:-0.066000px;}
.lsa2{letter-spacing:-0.060000px;}
.ls3b{letter-spacing:-0.054000px;}
.ls67{letter-spacing:-0.049500px;}
.ls21{letter-spacing:-0.048000px;}
.ls97{letter-spacing:-0.045000px;}
.ls3c{letter-spacing:-0.040500px;}
.ls5{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.024000px;}
.ls45{letter-spacing:0.030000px;}
.ls7b{letter-spacing:0.040500px;}
.ls93{letter-spacing:0.045000px;}
.ls18{letter-spacing:0.054000px;}
.ls92{letter-spacing:0.060000px;}
.lse{letter-spacing:0.066000px;}
.ls9c{letter-spacing:0.090000px;}
.ls80{letter-spacing:0.099000px;}
.ls62{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.114000px;}
.ls13{letter-spacing:0.132000px;}
.ls6f{letter-spacing:0.148500px;}
.ls2d{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.171000px;}
.ls24{letter-spacing:0.198000px;}
.ls30{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.228000px;}
.ls2e{letter-spacing:0.243000px;}
.ls2f{letter-spacing:0.246000px;}
.ls22{letter-spacing:0.264000px;}
.ls4b{letter-spacing:0.270000px;}
.ls66{letter-spacing:0.294000px;}
.ls81{letter-spacing:0.297000px;}
.ls61{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.330000px;}
.ls70{letter-spacing:0.346500px;}
.ls94{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.396000px;}
.ls2{letter-spacing:0.399000px;}
.ls6e{letter-spacing:0.432000px;}
.ls6d{letter-spacing:0.462000px;}
.ls9a{letter-spacing:0.480000px;}
.ls5d{letter-spacing:0.486000px;}
.ls89{letter-spacing:0.495000px;}
.ls29{letter-spacing:0.510000px;}
.ls2b{letter-spacing:0.528000px;}
.ls11{letter-spacing:0.594000px;}
.ls85{letter-spacing:0.607500px;}
.ls83{letter-spacing:0.618000px;}
.ls0{letter-spacing:0.627000px;}
.ls84{letter-spacing:0.636000px;}
.ls8a{letter-spacing:0.643500px;}
.ls63{letter-spacing:0.648000px;}
.ls23{letter-spacing:0.660000px;}
.ls5e{letter-spacing:0.702000px;}
.ls60{letter-spacing:0.714000px;}
.ls15{letter-spacing:0.726000px;}
.ls5f{letter-spacing:0.729000px;}
.ls4c{letter-spacing:0.756000px;}
.ls7d{letter-spacing:0.792000px;}
.ls78{letter-spacing:0.810000px;}
.ls77{letter-spacing:0.850500px;}
.lsf{letter-spacing:0.858000px;}
.ls76{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.924000px;}
.ls14{letter-spacing:0.990000px;}
.ls74{letter-spacing:1.012500px;}
.ls73{letter-spacing:1.026000px;}
.ls75{letter-spacing:1.044000px;}
.ls7c{letter-spacing:1.053000px;}
.ls2a{letter-spacing:1.056000px;}
.ls64{letter-spacing:1.080000px;}
.ls65{letter-spacing:1.093500px;}
.ls57{letter-spacing:1.122000px;}
.ls88{letter-spacing:1.128000px;}
.ls39{letter-spacing:1.134000px;}
.ls28{letter-spacing:1.188000px;}
.ls27{letter-spacing:1.350000px;}
.ls4d{letter-spacing:1.377000px;}
.ls7f{letter-spacing:1.386000px;}
.ls4e{letter-spacing:1.398000px;}
.ls4f{letter-spacing:1.404000px;}
.ls2c{letter-spacing:1.452000px;}
.ls9b{letter-spacing:1.500000px;}
.ls86{letter-spacing:1.518000px;}
.ls7e{letter-spacing:1.584000px;}
.ls10{letter-spacing:1.650000px;}
.ls26{letter-spacing:1.782000px;}
.ls3d{letter-spacing:15.450000px;}
.ls99{letter-spacing:30.000000px;}
.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;}
}
.ws31{word-spacing:-18.282000px;}
.ws6a{word-spacing:-18.150000px;}
.wsb3{word-spacing:-17.886000px;}
.wsd9{word-spacing:-17.622000px;}
.wsb4{word-spacing:-17.556000px;}
.wsb9{word-spacing:-17.424000px;}
.wsd7{word-spacing:-17.358000px;}
.ws7f{word-spacing:-17.226000px;}
.ws30{word-spacing:-17.160000px;}
.ws11{word-spacing:-17.094000px;}
.wsb6{word-spacing:-17.028000px;}
.wsb5{word-spacing:-16.962000px;}
.ws14{word-spacing:-16.896000px;}
.wse3{word-spacing:-16.830000px;}
.ws5e{word-spacing:-16.764000px;}
.ws32{word-spacing:-16.698000px;}
.ws5f{word-spacing:-16.632000px;}
.ws6b{word-spacing:-16.566000px;}
.ws12{word-spacing:-16.500000px;}
.ws13{word-spacing:-16.434000px;}
.wsd2{word-spacing:-16.368000px;}
.ws82{word-spacing:-16.302000px;}
.ws67{word-spacing:-16.236000px;}
.ws69{word-spacing:-16.170000px;}
.ws34{word-spacing:-16.104000px;}
.ws57{word-spacing:-16.038000px;}
.ws7e{word-spacing:-15.972000px;}
.wsbe{word-spacing:-15.906000px;}
.ws55{word-spacing:-15.840000px;}
.ws53{word-spacing:-15.774000px;}
.ws60{word-spacing:-15.708000px;}
.wsd3{word-spacing:-15.576000px;}
.wsa2{word-spacing:-15.510000px;}
.ws10b{word-spacing:-15.480000px;}
.ws56{word-spacing:-15.444000px;}
.ws54{word-spacing:-15.378000px;}
.wsec{word-spacing:-15.360000px;}
.ws61{word-spacing:-15.312000px;}
.wsa6{word-spacing:-15.246000px;}
.wse8{word-spacing:-15.060000px;}
.ws96{word-spacing:-15.000000px;}
.ws10c{word-spacing:-14.940000px;}
.ws83{word-spacing:-14.916000px;}
.wsd1{word-spacing:-14.904000px;}
.ws76{word-spacing:-14.850000px;}
.ws10a{word-spacing:-14.820000px;}
.ws108{word-spacing:-14.760000px;}
.wsf0{word-spacing:-14.640000px;}
.ws93{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.535000px;}
.wsac{word-spacing:-14.526000px;}
.ws101{word-spacing:-14.520000px;}
.wsea{word-spacing:-14.460000px;}
.wsae{word-spacing:-14.364000px;}
.ws114{word-spacing:-14.340000px;}
.wsaf{word-spacing:-14.310000px;}
.ws19{word-spacing:-14.250000px;}
.ws8a{word-spacing:-14.202000px;}
.wsff{word-spacing:-14.160000px;}
.ws8e{word-spacing:-14.148000px;}
.wsc7{word-spacing:-14.094000px;}
.wsc2{word-spacing:-13.878000px;}
.ws8b{word-spacing:-13.824000px;}
.ws110{word-spacing:-13.800000px;}
.ws8c{word-spacing:-13.770000px;}
.ws94{word-spacing:-13.716000px;}
.ws84{word-spacing:-13.662000px;}
.ws8d{word-spacing:-13.608000px;}
.ws18{word-spacing:-13.554000px;}
.ws3a{word-spacing:-13.500000px;}
.ws3b{word-spacing:-13.446000px;}
.wsc3{word-spacing:-13.392000px;}
.ws37{word-spacing:-13.338000px;}
.ws112{word-spacing:-13.320000px;}
.ws38{word-spacing:-13.284000px;}
.ws39{word-spacing:-13.230000px;}
.ws73{word-spacing:-13.176000px;}
.wsbc{word-spacing:-13.068000px;}
.wsce{word-spacing:-13.018500px;}
.wscd{word-spacing:-12.870000px;}
.ws87{word-spacing:-12.852000px;}
.wse1{word-spacing:-12.798000px;}
.ws90{word-spacing:-12.744000px;}
.wsa3{word-spacing:-12.721500px;}
.wsb8{word-spacing:-12.672000px;}
.wsa5{word-spacing:-12.573000px;}
.ws6f{word-spacing:-12.528000px;}
.wsa1{word-spacing:-12.523500px;}
.ws6c{word-spacing:-12.375000px;}
.ws86{word-spacing:-12.325500px;}
.wsbb{word-spacing:-12.312000px;}
.wsdb{word-spacing:-12.258000px;}
.ws62{word-spacing:-12.226500px;}
.ws68{word-spacing:-12.177000px;}
.ws91{word-spacing:-12.150000px;}
.wsd8{word-spacing:-12.127500px;}
.ws33{word-spacing:-12.078000px;}
.wsda{word-spacing:-12.028500px;}
.wsbf{word-spacing:-11.979000px;}
.ws17{word-spacing:-11.952000px;}
.ws81{word-spacing:-11.880000px;}
.ws15{word-spacing:-11.830500px;}
.ws80{word-spacing:-11.731500px;}
.wseb{word-spacing:-11.610000px;}
.ws75{word-spacing:-11.502000px;}
.wsfd{word-spacing:-11.340000px;}
.wsdf{word-spacing:-11.335500px;}
.wse7{word-spacing:-11.295000px;}
.wse4{word-spacing:-11.250000px;}
.ws92{word-spacing:-11.218500px;}
.wsee{word-spacing:-11.205000px;}
.wsab{word-spacing:-11.137500px;}
.ws109{word-spacing:-11.070000px;}
.ws102{word-spacing:-10.980000px;}
.wsad{word-spacing:-10.975500px;}
.wsef{word-spacing:-10.890000px;}
.ws89{word-spacing:-10.854000px;}
.wse6{word-spacing:-10.845000px;}
.wsd4{word-spacing:-10.773000px;}
.wsc5{word-spacing:-10.732500px;}
.wse9{word-spacing:-10.710000px;}
.ws10e{word-spacing:-10.575000px;}
.wsfe{word-spacing:-10.395000px;}
.ws3f{word-spacing:-10.368000px;}
.ws10d{word-spacing:-10.350000px;}
.wsc1{word-spacing:-10.287000px;}
.wsf1{word-spacing:-10.165500px;}
.ws3d{word-spacing:-10.125000px;}
.ws3c{word-spacing:-10.084500px;}
.wsd5{word-spacing:-10.044000px;}
.ws113{word-spacing:-9.990000px;}
.wse2{word-spacing:-9.963000px;}
.ws36{word-spacing:-9.922500px;}
.ws6e{word-spacing:-9.882000px;}
.ws71{word-spacing:-9.679500px;}
.wsd0{word-spacing:-9.558000px;}
.ws58{word-spacing:-9.517500px;}
.ws59{word-spacing:-9.477000px;}
.ws8f{word-spacing:-9.396000px;}
.ws70{word-spacing:-9.153000px;}
.wsba{word-spacing:-8.910000px;}
.ws77{word-spacing:-0.858000px;}
.ws1d{word-spacing:-0.792000px;}
.ws3{word-spacing:-0.741000px;}
.ws24{word-spacing:-0.726000px;}
.wsf6{word-spacing:-0.720000px;}
.ws25{word-spacing:-0.660000px;}
.ws51{word-spacing:-0.648000px;}
.ws50{word-spacing:-0.594000px;}
.ws8{word-spacing:-0.570000px;}
.ws4b{word-spacing:-0.540000px;}
.ws5a{word-spacing:-0.528000px;}
.ws10{word-spacing:-0.513000px;}
.ws7c{word-spacing:-0.486000px;}
.ws1c{word-spacing:-0.462000px;}
.wsb{word-spacing:-0.456000px;}
.ws4f{word-spacing:-0.432000px;}
.wsf8{word-spacing:-0.420000px;}
.wsf{word-spacing:-0.399000px;}
.ws44{word-spacing:-0.396000px;}
.ws4d{word-spacing:-0.378000px;}
.wsf4{word-spacing:-0.360000px;}
.ws26{word-spacing:-0.330000px;}
.ws9c{word-spacing:-0.324000px;}
.ws116{word-spacing:-0.300000px;}
.wsa4{word-spacing:-0.270000px;}
.ws48{word-spacing:-0.264000px;}
.wsf7{word-spacing:-0.240000px;}
.ws79{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.198000px;}
.ws11b{word-spacing:-0.180000px;}
.wsca{word-spacing:-0.162000px;}
.ws2c{word-spacing:-0.132000px;}
.ws11a{word-spacing:-0.120000px;}
.ws6{word-spacing:-0.114000px;}
.ws5d{word-spacing:-0.108000px;}
.ws65{word-spacing:-0.066000px;}
.ws104{word-spacing:-0.060000px;}
.ws5c{word-spacing:-0.054000px;}
.wse0{word-spacing:-0.049500px;}
.ws2{word-spacing:0.000000px;}
.ws9f{word-spacing:0.054000px;}
.ws115{word-spacing:0.060000px;}
.ws63{word-spacing:0.066000px;}
.wscb{word-spacing:0.108000px;}
.ws4a{word-spacing:0.132000px;}
.ws4c{word-spacing:0.162000px;}
.ws118{word-spacing:0.180000px;}
.ws23{word-spacing:0.198000px;}
.ws4e{word-spacing:0.216000px;}
.ws2a{word-spacing:0.264000px;}
.wsa0{word-spacing:0.270000px;}
.wsd{word-spacing:0.285000px;}
.ws7b{word-spacing:0.324000px;}
.ws66{word-spacing:0.330000px;}
.ws11c{word-spacing:0.360000px;}
.ws99{word-spacing:0.396000px;}
.wsb1{word-spacing:0.432000px;}
.ws42{word-spacing:0.462000px;}
.ws119{word-spacing:0.480000px;}
.wsde{word-spacing:0.486000px;}
.ws45{word-spacing:0.528000px;}
.ws7a{word-spacing:0.540000px;}
.ws2e{word-spacing:0.594000px;}
.wsb2{word-spacing:0.648000px;}
.ws21{word-spacing:0.660000px;}
.wse{word-spacing:0.684000px;}
.ws9e{word-spacing:0.702000px;}
.ws1b{word-spacing:0.726000px;}
.wscc{word-spacing:0.756000px;}
.ws85{word-spacing:0.792000px;}
.ws4{word-spacing:0.798000px;}
.wsb0{word-spacing:0.810000px;}
.ws49{word-spacing:0.841500px;}
.ws29{word-spacing:0.858000px;}
.ws9b{word-spacing:0.864000px;}
.ws2d{word-spacing:0.918000px;}
.ws41{word-spacing:0.924000px;}
.ws7d{word-spacing:0.972000px;}
.ws64{word-spacing:0.990000px;}
.ws117{word-spacing:1.020000px;}
.ws7{word-spacing:1.026000px;}
.ws1f{word-spacing:1.056000px;}
.ws52{word-spacing:1.080000px;}
.ws1{word-spacing:1.119000px;}
.ws22{word-spacing:1.122000px;}
.ws9a{word-spacing:1.134000px;}
.wsc{word-spacing:1.140000px;}
.ws28{word-spacing:1.188000px;}
.wsa{word-spacing:1.197000px;}
.ws9d{word-spacing:1.242000px;}
.ws9{word-spacing:1.254000px;}
.ws2f{word-spacing:1.296000px;}
.ws5{word-spacing:1.311000px;}
.ws5b{word-spacing:1.320000px;}
.ws40{word-spacing:1.386000px;}
.wsf5{word-spacing:1.440000px;}
.ws43{word-spacing:1.452000px;}
.ws27{word-spacing:1.518000px;}
.ws20{word-spacing:1.584000px;}
.ws1a{word-spacing:1.650000px;}
.wsf2{word-spacing:2.452500px;}
.ws72{word-spacing:2.829000px;}
.ws107{word-spacing:3.150000px;}
.wscf{word-spacing:3.285000px;}
.ws100{word-spacing:3.360000px;}
.wsdd{word-spacing:3.402000px;}
.ws103{word-spacing:3.420000px;}
.wsdc{word-spacing:3.456000px;}
.wsaa{word-spacing:3.645000px;}
.ws105{word-spacing:3.690000px;}
.wsed{word-spacing:3.735000px;}
.ws106{word-spacing:3.750000px;}
.wse5{word-spacing:3.795000px;}
.wsa9{word-spacing:3.847500px;}
.ws10f{word-spacing:3.900000px;}
.ws88{word-spacing:3.921000px;}
.wsa8{word-spacing:3.931500px;}
.wsc4{word-spacing:4.123500px;}
.wsc6{word-spacing:4.150500px;}
.ws74{word-spacing:4.189500px;}
.wsa7{word-spacing:4.212000px;}
.ws47{word-spacing:4.306500px;}
.ws111{word-spacing:4.320000px;}
.wsc8{word-spacing:4.377000px;}
.ws3e{word-spacing:4.410000px;}
.ws95{word-spacing:4.545000px;}
.wsfb{word-spacing:5.070000px;}
.wsfc{word-spacing:5.175000px;}
.wsb7{word-spacing:5.688000px;}
.ws46{word-spacing:5.742000px;}
.wsc0{word-spacing:5.805000px;}
.wsf3{word-spacing:5.874000px;}
.wsd6{word-spacing:5.940000px;}
.wsc9{word-spacing:6.996000px;}
.ws78{word-spacing:8.514000px;}
.ws6d{word-spacing:9.018000px;}
.wsf9{word-spacing:9.990000px;}
.wsfa{word-spacing:10.044000px;}
.wsbd{word-spacing:13.200000px;}
.ws1e{word-spacing:17.028000px;}
.ws16{word-spacing:35.904000px;}
.ws35{word-spacing:36.018000px;}
.ws98{word-spacing:311.760000px;}
.ws97{word-spacing:615.780000px;}
._18{margin-left:-11.484000px;}
._15{margin-left:-8.316000px;}
._b{margin-left:-6.732000px;}
._1{margin-left:-5.577000px;}
._a{margin-left:-4.068000px;}
._5{margin-left:-3.036000px;}
._0{margin-left:-1.890000px;}
._2{width:1.263000px;}
._6{width:3.078000px;}
._c{width:4.104000px;}
._17{width:6.666000px;}
._3{width:13.680000px;}
._d{width:22.518000px;}
._16{width:27.810000px;}
._19{width:30.000000px;}
._4{width:47.874000px;}
._8{width:49.518000px;}
._e{width:174.360000px;}
._f{width:200.460000px;}
._13{width:400.320000px;}
._14{width:401.430000px;}
._11{width:403.740000px;}
._9{width:459.792000px;}
._10{width:533.760000px;}
._12{width:550.710000px;}
._7{width:1195.026000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y12e{bottom:45.963000px;}
.yc0{bottom:45.969000px;}
.y1fa{bottom:46.107000px;}
.y115{bottom:47.190000px;}
.y43{bottom:47.196000px;}
.y7f{bottom:47.208000px;}
.y174{bottom:47.214000px;}
.yeb{bottom:48.093000px;}
.y1d9{bottom:49.572000px;}
.y150{bottom:60.201000px;}
.y12d{bottom:60.219000px;}
.ybf{bottom:60.225000px;}
.y1f9{bottom:60.363000px;}
.y114{bottom:61.446000px;}
.y42{bottom:61.452000px;}
.y173{bottom:61.458000px;}
.y7e{bottom:61.464000px;}
.yea{bottom:62.349000px;}
.y1d8{bottom:66.814500px;}
.y14f{bottom:74.457000px;}
.y12c{bottom:74.469000px;}
.y17f{bottom:74.475000px;}
.y1f8{bottom:74.619000px;}
.y1e9{bottom:75.696000px;}
.y113{bottom:75.702000px;}
.y41{bottom:75.708000px;}
.y7d{bottom:75.714000px;}
.ye9{bottom:76.599000px;}
.y1d7{bottom:84.057000px;}
.y1ba{bottom:88.641000px;}
.y12b{bottom:88.701000px;}
.y14e{bottom:88.713000px;}
.y221{bottom:88.719000px;}
.y1f7{bottom:88.875000px;}
.y7c{bottom:89.916000px;}
.y1e8{bottom:89.952000px;}
.y112{bottom:89.958000px;}
.y40{bottom:89.964000px;}
.ya4{bottom:89.970000px;}
.ye8{bottom:90.849000px;}
.ybe{bottom:101.047500px;}
.y210{bottom:101.280000px;}
.y1d6{bottom:101.299500px;}
.y1b9{bottom:102.897000px;}
.y12a{bottom:102.957000px;}
.y14d{bottom:102.969000px;}
.y239{bottom:102.975000px;}
.y7b{bottom:104.172000px;}
.y1e7{bottom:104.208000px;}
.y111{bottom:104.214000px;}
.y3f{bottom:104.220000px;}
.ye7{bottom:105.099000px;}
.y20{bottom:116.850000px;}
.y1b8{bottom:117.153000px;}
.y129{bottom:117.213000px;}
.y220{bottom:117.219000px;}
.y14c{bottom:117.225000px;}
.ybd{bottom:118.290000px;}
.y17e{bottom:118.372500px;}
.y7a{bottom:118.428000px;}
.y110{bottom:118.464000px;}
.y1a1{bottom:118.470000px;}
.y20f{bottom:118.522500px;}
.y1d5{bottom:118.542000px;}
.ye6{bottom:119.349000px;}
.y1b7{bottom:131.409000px;}
.y128{bottom:131.469000px;}
.y1f{bottom:131.811000px;}
.y79{bottom:132.684000px;}
.y172{bottom:132.708000px;}
.y10f{bottom:132.720000px;}
.ye5{bottom:133.599000px;}
.ybc{bottom:135.532500px;}
.y17d{bottom:135.615000px;}
.ya3{bottom:135.667500px;}
.y20e{bottom:135.765000px;}
.y1d4{bottom:135.784500px;}
.y3e{bottom:140.755500px;}
.y1b6{bottom:145.665000px;}
.y127{bottom:145.671000px;}
.y21f{bottom:145.725000px;}
.y78{bottom:146.940000px;}
.y171{bottom:146.964000px;}
.ye4{bottom:147.849000px;}
.ybb{bottom:152.820000px;}
.y17c{bottom:152.857500px;}
.y1f6{bottom:152.872500px;}
.ya2{bottom:152.910000px;}
.y20d{bottom:153.007500px;}
.y1d3{bottom:153.027000px;}
.y1e{bottom:154.311750px;}
.y3d{bottom:157.998000px;}
.y1b5{bottom:159.921000px;}
.y126{bottom:159.927000px;}
.y77{bottom:161.196000px;}
.y170{bottom:161.214000px;}
.ye3{bottom:162.045000px;}
.y1d{bottom:169.317000px;}
.y1c6{bottom:170.040000px;}
.y10e{bottom:170.047500px;}
.y1a0{bottom:170.055000px;}
.yba{bottom:170.062500px;}
.y17b{bottom:170.100000px;}
.y1f5{bottom:170.115000px;}
.y14b{bottom:170.122500px;}
.ya1{bottom:170.152500px;}
.y20c{bottom:170.250000px;}
.y1d2{bottom:170.269500px;}
.y238{bottom:172.335000px;}
.y1b4{bottom:174.177000px;}
.y125{bottom:174.183000px;}
.y3c{bottom:175.240500px;}
.y16f{bottom:175.422000px;}
.y76{bottom:175.452000px;}
.ye2{bottom:176.301000px;}
.y1c{bottom:184.322250px;}
.y1c5{bottom:187.282500px;}
.y10d{bottom:187.290000px;}
.y19f{bottom:187.297500px;}
.yb9{bottom:187.305000px;}
.y17a{bottom:187.342500px;}
.y1f4{bottom:187.357500px;}
.y14a{bottom:187.365000px;}
.ya0{bottom:187.395000px;}
.y1e6{bottom:187.410000px;}
.y20b{bottom:187.492500px;}
.y1b3{bottom:188.433000px;}
.y124{bottom:188.439000px;}
.y16e{bottom:189.678000px;}
.y75{bottom:189.708000px;}
.ye1{bottom:190.557000px;}
.y237{bottom:191.070000px;}
.y3b{bottom:192.483000px;}
.y1d1{bottom:196.141500px;}
.y1b{bottom:199.327500px;}
.y1b2{bottom:202.689000px;}
.y123{bottom:202.695000px;}
.y16d{bottom:203.934000px;}
.y74{bottom:203.964000px;}
.y10c{bottom:204.532500px;}
.y19e{bottom:204.540000px;}
.yb8{bottom:204.547500px;}
.y179{bottom:204.585000px;}
.y1f3{bottom:204.600000px;}
.y149{bottom:204.607500px;}
.y9f{bottom:204.637500px;}
.y1e5{bottom:204.652500px;}
.y20a{bottom:204.735000px;}
.ye0{bottom:204.813000px;}
.y236{bottom:206.820000px;}
.y3a{bottom:209.725500px;}
.y1a{bottom:214.332750px;}
.y1b1{bottom:216.945000px;}
.y122{bottom:216.951000px;}
.y16c{bottom:218.190000px;}
.y73{bottom:218.220000px;}
.ydf{bottom:219.069000px;}
.y19d{bottom:221.782500px;}
.yb7{bottom:221.790000px;}
.y10b{bottom:221.805000px;}
.y178{bottom:221.827500px;}
.y1f2{bottom:221.842500px;}
.y148{bottom:221.850000px;}
.y9e{bottom:221.880000px;}
.y1e4{bottom:221.895000px;}
.y209{bottom:221.977500px;}
.y235{bottom:225.540000px;}
.y39{bottom:226.968000px;}
.y19{bottom:229.338000px;}
.y1b0{bottom:231.201000px;}
.y121{bottom:231.207000px;}
.y16b{bottom:232.446000px;}
.yde{bottom:233.325000px;}
.yb6{bottom:239.032500px;}
.y19c{bottom:239.040000px;}
.y10a{bottom:239.047500px;}
.y177{bottom:239.070000px;}
.y1f1{bottom:239.085000px;}
.y147{bottom:239.092500px;}
.y9d{bottom:239.122500px;}
.y1e3{bottom:239.137500px;}
.y208{bottom:239.220000px;}
.y1d0{bottom:239.272500px;}
.y38{bottom:244.210500px;}
.y234{bottom:244.275000px;}
.y18{bottom:244.343250px;}
.y1af{bottom:245.457000px;}
.y120{bottom:245.463000px;}
.y16a{bottom:246.702000px;}
.ydd{bottom:247.581000px;}
.y72{bottom:256.282500px;}
.y109{bottom:256.290000px;}
.y176{bottom:256.312500px;}
.y1f0{bottom:256.327500px;}
.y146{bottom:256.335000px;}
.yb5{bottom:256.342500px;}
.y9c{bottom:256.365000px;}
.y1e2{bottom:256.380000px;}
.y207{bottom:256.462500px;}
.y1cf{bottom:256.515000px;}
.y17{bottom:259.348500px;}
.y1ae{bottom:259.713000px;}
.y11f{bottom:259.719000px;}
.y233{bottom:260.025000px;}
.y169{bottom:260.958000px;}
.y37{bottom:261.453000px;}
.ydc{bottom:261.837000px;}
.y108{bottom:273.532500px;}
.y175{bottom:273.555000px;}
.y1ef{bottom:273.570000px;}
.y145{bottom:273.577500px;}
.y71{bottom:273.585000px;}
.y9b{bottom:273.607500px;}
.y1e1{bottom:273.622500px;}
.y206{bottom:273.705000px;}
.y19b{bottom:273.717000px;}
.y1ce{bottom:273.757500px;}
.y11e{bottom:273.951000px;}
.y1ad{bottom:273.969000px;}
.y16{bottom:274.353750px;}
.y168{bottom:275.214000px;}
.ydb{bottom:276.093000px;}
.y36{bottom:278.695500px;}
.y232{bottom:278.745000px;}
.y11d{bottom:288.207000px;}
.y167{bottom:289.470000px;}
.yda{bottom:290.349000px;}
.y107{bottom:290.797500px;}
.y1ee{bottom:290.812500px;}
.y144{bottom:290.820000px;}
.y70{bottom:290.827500px;}
.y9a{bottom:290.850000px;}
.y1e0{bottom:290.865000px;}
.y205{bottom:290.947500px;}
.y19a{bottom:290.959500px;}
.y1cd{bottom:291.000000px;}
.y231{bottom:294.495000px;}
.y35{bottom:295.938000px;}
.y11c{bottom:302.463000px;}
.y15{bottom:304.350000px;}
.yd9{bottom:304.605000px;}
.y106{bottom:308.040000px;}
.y1ed{bottom:308.055000px;}
.y143{bottom:308.062500px;}
.y6f{bottom:308.070000px;}
.y99{bottom:308.092500px;}
.y1df{bottom:308.107500px;}
.y204{bottom:308.190000px;}
.y199{bottom:308.202000px;}
.y1cc{bottom:308.242500px;}
.y34{bottom:313.180500px;}
.y230{bottom:313.230000px;}
.y11b{bottom:316.719000px;}
.y14{bottom:319.299750px;}
.y105{bottom:325.282500px;}
.y1ec{bottom:325.297500px;}
.y142{bottom:325.305000px;}
.y6e{bottom:325.312500px;}
.y98{bottom:325.335000px;}
.y1de{bottom:325.350000px;}
.y203{bottom:325.432500px;}
.y198{bottom:325.444500px;}
.y1cb{bottom:325.485000px;}
.y33{bottom:330.423000px;}
.y11a{bottom:330.975000px;}
.y22f{bottom:331.950000px;}
.yd8{bottom:342.532500px;}
.y1eb{bottom:342.540000px;}
.y141{bottom:342.547500px;}
.y6d{bottom:342.555000px;}
.y97{bottom:342.577500px;}
.y166{bottom:342.585000px;}
.y1dd{bottom:342.592500px;}
.y104{bottom:342.660000px;}
.y202{bottom:342.675000px;}
.y197{bottom:342.687000px;}
.y1ca{bottom:342.727500px;}
.y254{bottom:343.470000px;}
.y32{bottom:347.665500px;}
.y22e{bottom:350.670000px;}
.y13{bottom:355.295250px;}
.y253{bottom:359.220000px;}
.y1ea{bottom:359.782500px;}
.y140{bottom:359.790000px;}
.y6c{bottom:359.797500px;}
.y96{bottom:359.820000px;}
.y165{bottom:359.827500px;}
.y1dc{bottom:359.835000px;}
.yd7{bottom:359.892000px;}
.y103{bottom:359.902500px;}
.y201{bottom:359.917500px;}
.y196{bottom:359.929500px;}
.y1c9{bottom:359.970000px;}
.y31{bottom:364.908000px;}
.y22d{bottom:369.405000px;}
.y12{bottom:370.300500px;}
.y13f{bottom:377.032500px;}
.y6b{bottom:377.040000px;}
.y119{bottom:377.055000px;}
.y95{bottom:377.062500px;}
.y164{bottom:377.070000px;}
.y1db{bottom:377.077500px;}
.y1ac{bottom:377.085000px;}
.y252{bottom:377.100000px;}
.yd6{bottom:377.134500px;}
.y102{bottom:377.145000px;}
.y200{bottom:377.160000px;}
.y195{bottom:377.172000px;}
.y1c8{bottom:377.212500px;}
.y30{bottom:382.150500px;}
.y22c{bottom:388.125000px;}
.y11{bottom:392.801250px;}
.y6a{bottom:394.282500px;}
.y118{bottom:394.297500px;}
.y94{bottom:394.305000px;}
.y163{bottom:394.312500px;}
.y13e{bottom:394.320000px;}
.y1ab{bottom:394.327500px;}
.yd5{bottom:394.377000px;}
.y101{bottom:394.387500px;}
.y1ff{bottom:394.402500px;}
.y194{bottom:394.414500px;}
.y1c7{bottom:394.455000px;}
.y251{bottom:394.980000px;}
.y2f{bottom:399.393000px;}
.y22b{bottom:403.875000px;}
.y10{bottom:407.806500px;}
.y69{bottom:411.540000px;}
.y93{bottom:411.547500px;}
.y162{bottom:411.555000px;}
.y13d{bottom:411.562500px;}
.y1aa{bottom:411.570000px;}
.yd4{bottom:411.619500px;}
.y100{bottom:411.630000px;}
.y1fe{bottom:411.645000px;}
.y193{bottom:411.657000px;}
.yb4{bottom:411.697500px;}
.y250{bottom:412.860000px;}
.y2e{bottom:416.635500px;}
.y22a{bottom:422.610000px;}
.yf{bottom:422.811750px;}
.y68{bottom:428.782500px;}
.y92{bottom:428.790000px;}
.y161{bottom:428.797500px;}
.y13c{bottom:428.805000px;}
.y1a9{bottom:428.812500px;}
.yd3{bottom:428.862000px;}
.yff{bottom:428.872500px;}
.y1fd{bottom:428.887500px;}
.y192{bottom:428.899500px;}
.yb3{bottom:428.940000px;}
.y24f{bottom:430.725000px;}
.y2d{bottom:433.878000px;}
.ye{bottom:437.817000px;}
.y229{bottom:438.360000px;}
.y91{bottom:446.032500px;}
.y160{bottom:446.040000px;}
.y13b{bottom:446.047500px;}
.y1a8{bottom:446.055000px;}
.y67{bottom:446.062500px;}
.yd2{bottom:446.104500px;}
.yfe{bottom:446.115000px;}
.y1fc{bottom:446.130000px;}
.y191{bottom:446.142000px;}
.yb2{bottom:446.182500px;}
.y24e{bottom:448.605000px;}
.y2c{bottom:451.120500px;}
.yd{bottom:452.822250px;}
.y228{bottom:457.080000px;}
.y15f{bottom:463.282500px;}
.y13a{bottom:463.290000px;}
.y1a7{bottom:463.297500px;}
.y66{bottom:463.305000px;}
.yd1{bottom:463.347000px;}
.y1c4{bottom:463.350000px;}
.yfd{bottom:463.357500px;}
.y90{bottom:463.372500px;}
.y190{bottom:463.384500px;}
.y21e{bottom:463.392000px;}
.yb1{bottom:463.425000px;}
.y24d{bottom:466.485000px;}
.yc{bottom:467.827500px;}
.y2b{bottom:468.363000px;}
.y227{bottom:472.830000px;}
.y139{bottom:480.532500px;}
.y1a6{bottom:480.540000px;}
.y65{bottom:480.547500px;}
.y15e{bottom:480.585000px;}
.yd0{bottom:480.589500px;}
.y1c3{bottom:480.592500px;}
.yfc{bottom:480.600000px;}
.y8f{bottom:480.615000px;}
.y18f{bottom:480.627000px;}
.y21d{bottom:480.634500px;}
.yb0{bottom:480.667500px;}
.yb{bottom:482.832750px;}
.y24c{bottom:484.350000px;}
.y2a{bottom:485.605500px;}
.y226{bottom:491.565000px;}
.y1a5{bottom:497.782500px;}
.y64{bottom:497.790000px;}
.y1da{bottom:497.805000px;}
.y15d{bottom:497.827500px;}
.ycf{bottom:497.832000px;}
.y1c2{bottom:497.835000px;}
.ya{bottom:497.838000px;}
.yfb{bottom:497.842500px;}
.y8e{bottom:497.857500px;}
.y18e{bottom:497.869500px;}
.y21c{bottom:497.877000px;}
.yaf{bottom:497.910000px;}
.y24b{bottom:500.100000px;}
.y29{bottom:502.848000px;}
.y225{bottom:507.315000px;}
.y9{bottom:512.843250px;}
.y63{bottom:515.032500px;}
.y1a4{bottom:515.047500px;}
.y15c{bottom:515.070000px;}
.yce{bottom:515.074500px;}
.y1c1{bottom:515.077500px;}
.yfa{bottom:515.085000px;}
.y8d{bottom:515.100000px;}
.y18d{bottom:515.112000px;}
.y21b{bottom:515.119500px;}
.yae{bottom:515.152500px;}
.y24a{bottom:515.850000px;}
.y28{bottom:520.090500px;}
.y224{bottom:526.035000px;}
.y8{bottom:527.848500px;}
.y117{bottom:532.282500px;}
.y1a3{bottom:532.290000px;}
.y15b{bottom:532.312500px;}
.ycd{bottom:532.317000px;}
.y1c0{bottom:532.320000px;}
.yf9{bottom:532.327500px;}
.y62{bottom:532.339500px;}
.y8c{bottom:532.342500px;}
.y18c{bottom:532.354500px;}
.y21a{bottom:532.362000px;}
.yad{bottom:532.395000px;}
.y249{bottom:533.730000px;}
.y27{bottom:537.333000px;}
.y7{bottom:542.853750px;}
.y223{bottom:544.755000px;}
.y116{bottom:549.525000px;}
.y1a2{bottom:549.532500px;}
.y15a{bottom:549.555000px;}
.ycc{bottom:549.559500px;}
.y1bf{bottom:549.562500px;}
.yf8{bottom:549.570000px;}
.y61{bottom:549.582000px;}
.y8b{bottom:549.585000px;}
.y18b{bottom:549.597000px;}
.y219{bottom:549.604500px;}
.yac{bottom:549.637500px;}
.y248{bottom:551.610000px;}
.y26{bottom:554.575500px;}
.y159{bottom:566.797500px;}
.ycb{bottom:566.802000px;}
.y1be{bottom:566.805000px;}
.yf7{bottom:566.812500px;}
.y60{bottom:566.824500px;}
.y8a{bottom:566.827500px;}
.y18a{bottom:566.839500px;}
.y218{bottom:566.847000px;}
.yab{bottom:566.880000px;}
.y247{bottom:569.490000px;}
.y25{bottom:571.818000px;}
.y6{bottom:572.850000px;}
.y222{bottom:575.394000px;}
.y158{bottom:584.040000px;}
.yca{bottom:584.044500px;}
.y1bd{bottom:584.047500px;}
.yf6{bottom:584.055000px;}
.y5f{bottom:584.067000px;}
.y89{bottom:584.070000px;}
.y189{bottom:584.082000px;}
.y217{bottom:584.089500px;}
.yaa{bottom:584.122500px;}
.y246{bottom:585.240000px;}
.y24{bottom:589.060500px;}
.y245{bottom:600.990000px;}
.y157{bottom:601.282500px;}
.yc9{bottom:601.287000px;}
.y1bc{bottom:601.290000px;}
.yf5{bottom:601.297500px;}
.y5e{bottom:601.309500px;}
.y88{bottom:601.312500px;}
.y188{bottom:601.324500px;}
.y216{bottom:601.332000px;}
.ya9{bottom:601.365000px;}
.y23{bottom:606.303000px;}
.yc8{bottom:618.529500px;}
.y1bb{bottom:618.532500px;}
.yf4{bottom:618.540000px;}
.y5d{bottom:618.552000px;}
.y87{bottom:618.555000px;}
.y187{bottom:618.567000px;}
.y156{bottom:618.570000px;}
.y215{bottom:618.574500px;}
.ya8{bottom:618.607500px;}
.y244{bottom:618.855000px;}
.y138{bottom:619.845000px;}
.y137{bottom:629.595000px;}
.y22{bottom:632.175000px;}
.y243{bottom:634.605000px;}
.yf3{bottom:635.782500px;}
.y5c{bottom:635.794500px;}
.y86{bottom:635.797500px;}
.y186{bottom:635.809500px;}
.y155{bottom:635.812500px;}
.y214{bottom:635.817000px;}
.ya7{bottom:635.850000px;}
.yc7{bottom:644.401500px;}
.y242{bottom:650.355000px;}
.y85{bottom:653.040000px;}
.y185{bottom:653.052000px;}
.y154{bottom:653.055000px;}
.y213{bottom:653.059500px;}
.yf2{bottom:653.077500px;}
.ya6{bottom:653.092500px;}
.yc6{bottom:661.644000px;}
.y5b{bottom:661.666500px;}
.y52{bottom:667.055250px;}
.y241{bottom:668.235000px;}
.y136{bottom:668.355000px;}
.y84{bottom:670.282500px;}
.y184{bottom:670.294500px;}
.y153{bottom:670.297500px;}
.y212{bottom:670.302000px;}
.yf1{bottom:670.320000px;}
.ya5{bottom:670.335000px;}
.y4a{bottom:677.001750px;}
.y135{bottom:678.105000px;}
.y240{bottom:686.115000px;}
.y51{bottom:687.162000px;}
.y1fb{bottom:687.525000px;}
.y183{bottom:687.537000px;}
.y152{bottom:687.540000px;}
.yf0{bottom:687.562500px;}
.y83{bottom:687.577500px;}
.y5{bottom:689.205000px;}
.y49{bottom:692.007000px;}
.y211{bottom:696.174000px;}
.y182{bottom:704.779500px;}
.y151{bottom:704.782500px;}
.y5a{bottom:704.797500px;}
.yef{bottom:704.805000px;}
.yc5{bottom:704.812500px;}
.y82{bottom:704.820000px;}
.y23f{bottom:704.835000px;}
.y48{bottom:707.012250px;}
.y50{bottom:707.268750px;}
.y4{bottom:707.955000px;}
.y134{bottom:716.865000px;}
.y23e{bottom:720.585000px;}
.y47{bottom:722.017500px;}
.y59{bottom:722.040000px;}
.yee{bottom:722.047500px;}
.yc4{bottom:722.055000px;}
.y81{bottom:722.062500px;}
.y4f{bottom:722.274000px;}
.y181{bottom:730.651500px;}
.y133{bottom:732.615000px;}
.y23d{bottom:736.335000px;}
.y58{bottom:739.282500px;}
.yed{bottom:739.290000px;}
.yc3{bottom:739.297500px;}
.y80{bottom:739.305000px;}
.y4e{bottom:742.395000px;}
.y46{bottom:747.211500px;}
.y180{bottom:747.894000px;}
.y132{bottom:748.365000px;}
.y3{bottom:752.955000px;}
.y23c{bottom:755.070000px;}
.yec{bottom:756.532500px;}
.yc2{bottom:756.540000px;}
.y57{bottom:756.547500px;}
.y4d{bottom:757.400250px;}
.y45{bottom:762.216750px;}
.y131{bottom:764.115000px;}
.y23b{bottom:770.820000px;}
.y4c{bottom:772.405500px;}
.yc1{bottom:773.782500px;}
.y56{bottom:773.790000px;}
.y2{bottom:776.955000px;}
.y130{bottom:785.865000px;}
.y4b{bottom:787.410750px;}
.y44{bottom:787.425000px;}
.y23a{bottom:789.540000px;}
.y55{bottom:791.032500px;}
.y1{bottom:800.955000px;}
.y12f{bottom:807.615000px;}
.y54{bottom:808.275000px;}
.y53{bottom:811.425000px;}
.y21{bottom:855.105000px;}
.h7{height:51.216000px;}
.h3{height:57.618000px;}
.hc{height:57.642000px;}
.hd{height:57.666000px;}
.h12{height:57.714000px;}
.h17{height:57.954000px;}
.ha{height:58.536000px;}
.h10{height:58.560000px;}
.h11{height:58.584000px;}
.h16{height:58.608000px;}
.h18{height:58.632000px;}
.h15{height:58.728000px;}
.hb{height:58.752000px;}
.hf{height:58.776000px;}
.h4{height:60.819000px;}
.h6{height:61.788000px;}
.h5{height:61.989000px;}
.h13{height:64.020000px;}
.h19{height:65.040000px;}
.h8{height:70.422000px;}
.h9{height:71.454000px;}
.he{height:71.544000px;}
.h2{height:76.824000px;}
.h14{height:88.020000px;}
.h1{height:102.432000px;}
.h0{height:922.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x1{left:53.700000px;}
.x3{left:54.915000px;}
.x11{left:63.420000px;}
.x8{left:72.489750px;}
.xe{left:76.221000px;}
.x4{left:77.437500px;}
.x6{left:86.412000px;}
.x9{left:124.516500px;}
.xa{left:128.478000px;}
.xb{left:155.781000px;}
.x10{left:157.170000px;}
.x7{left:171.741000px;}
.x5{left:198.075000px;}
.xf{left:251.340000px;}
.x12{left:255.165000px;}
.xd{left:274.245000px;}
.xc{left:311.405250px;}
.x2{left:412.515000px;}
@media print{
.v3{vertical-align:-14.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.936000pt;}
.v2{vertical-align:21.333333pt;}
.lsa8{letter-spacing:-1.493333pt;}
.ls5b{letter-spacing:-1.466667pt;}
.ls5c{letter-spacing:-1.408000pt;}
.ls1b{letter-spacing:-1.349333pt;}
.ls58{letter-spacing:-1.290667pt;}
.ls42{letter-spacing:-1.232000pt;}
.lsa{letter-spacing:-1.216000pt;}
.ls6c{letter-spacing:-1.200000pt;}
.ls31{letter-spacing:-1.173333pt;}
.lsa7{letter-spacing:-1.120000pt;}
.ls79{letter-spacing:-1.114667pt;}
.ls90{letter-spacing:-1.104000pt;}
.ls82{letter-spacing:-1.080000pt;}
.lsa6{letter-spacing:-1.066667pt;}
.ls48{letter-spacing:-1.056000pt;}
.ls40{letter-spacing:-0.997333pt;}
.ls7a{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.938667pt;}
.ls91{letter-spacing:-0.924000pt;}
.ls3e{letter-spacing:-0.880000pt;}
.ls54{letter-spacing:-0.864000pt;}
.ls9{letter-spacing:-0.861333pt;}
.ls46{letter-spacing:-0.821333pt;}
.lsa4{letter-spacing:-0.800000pt;}
.ls35{letter-spacing:-0.762667pt;}
.ls9d{letter-spacing:-0.760000pt;}
.ls9e{letter-spacing:-0.746667pt;}
.ls87{letter-spacing:-0.720000pt;}
.ls47{letter-spacing:-0.704000pt;}
.ls6b{letter-spacing:-0.672000pt;}
.ls6a{letter-spacing:-0.648000pt;}
.ls1f{letter-spacing:-0.645333pt;}
.ls69{letter-spacing:-0.624000pt;}
.lsa5{letter-spacing:-0.600000pt;}
.ls34{letter-spacing:-0.586667pt;}
.ls44{letter-spacing:-0.576000pt;}
.ls59{letter-spacing:-0.572000pt;}
.ls6{letter-spacing:-0.557333pt;}
.ls43{letter-spacing:-0.540000pt;}
.ls3f{letter-spacing:-0.528000pt;}
.ls8c{letter-spacing:-0.504000pt;}
.ls20{letter-spacing:-0.484000pt;}
.ls8b{letter-spacing:-0.480000pt;}
.ls50{letter-spacing:-0.469333pt;}
.ls5a{letter-spacing:-0.440000pt;}
.ls51{letter-spacing:-0.432000pt;}
.ls9f{letter-spacing:-0.426667pt;}
.ls41{letter-spacing:-0.410667pt;}
.lsa3{letter-spacing:-0.400000pt;}
.ls56{letter-spacing:-0.396000pt;}
.ls55{letter-spacing:-0.384000pt;}
.ls96{letter-spacing:-0.373333pt;}
.ls95{letter-spacing:-0.360000pt;}
.ls19{letter-spacing:-0.352000pt;}
.ls71{letter-spacing:-0.336000pt;}
.ls98{letter-spacing:-0.320000pt;}
.ls8f{letter-spacing:-0.308000pt;}
.lsb{letter-spacing:-0.304000pt;}
.ls32{letter-spacing:-0.293333pt;}
.ls52{letter-spacing:-0.288000pt;}
.ls33{letter-spacing:-0.264000pt;}
.lsc{letter-spacing:-0.253333pt;}
.ls3a{letter-spacing:-0.240000pt;}
.ls49{letter-spacing:-0.234667pt;}
.ls8e{letter-spacing:-0.220000pt;}
.ls53{letter-spacing:-0.216000pt;}
.lsa1{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.202667pt;}
.ls38{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.180000pt;}
.ls1e{letter-spacing:-0.176000pt;}
.lsa0{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.152000pt;}
.ls36{letter-spacing:-0.144000pt;}
.ls4a{letter-spacing:-0.132000pt;}
.ls1d{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.101333pt;}
.ls68{letter-spacing:-0.096000pt;}
.ls8d{letter-spacing:-0.072000pt;}
.ls1a{letter-spacing:-0.058667pt;}
.lsa2{letter-spacing:-0.053333pt;}
.ls3b{letter-spacing:-0.048000pt;}
.ls67{letter-spacing:-0.044000pt;}
.ls21{letter-spacing:-0.042667pt;}
.ls97{letter-spacing:-0.040000pt;}
.ls3c{letter-spacing:-0.036000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.021333pt;}
.ls45{letter-spacing:0.026667pt;}
.ls7b{letter-spacing:0.036000pt;}
.ls93{letter-spacing:0.040000pt;}
.ls18{letter-spacing:0.048000pt;}
.ls92{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.058667pt;}
.ls9c{letter-spacing:0.080000pt;}
.ls80{letter-spacing:0.088000pt;}
.ls62{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.101333pt;}
.ls13{letter-spacing:0.117333pt;}
.ls6f{letter-spacing:0.132000pt;}
.ls2d{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.152000pt;}
.ls24{letter-spacing:0.176000pt;}
.ls30{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.202667pt;}
.ls2e{letter-spacing:0.216000pt;}
.ls2f{letter-spacing:0.218667pt;}
.ls22{letter-spacing:0.234667pt;}
.ls4b{letter-spacing:0.240000pt;}
.ls66{letter-spacing:0.261333pt;}
.ls81{letter-spacing:0.264000pt;}
.ls61{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.293333pt;}
.ls70{letter-spacing:0.308000pt;}
.ls94{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.352000pt;}
.ls2{letter-spacing:0.354667pt;}
.ls6e{letter-spacing:0.384000pt;}
.ls6d{letter-spacing:0.410667pt;}
.ls9a{letter-spacing:0.426667pt;}
.ls5d{letter-spacing:0.432000pt;}
.ls89{letter-spacing:0.440000pt;}
.ls29{letter-spacing:0.453333pt;}
.ls2b{letter-spacing:0.469333pt;}
.ls11{letter-spacing:0.528000pt;}
.ls85{letter-spacing:0.540000pt;}
.ls83{letter-spacing:0.549333pt;}
.ls0{letter-spacing:0.557333pt;}
.ls84{letter-spacing:0.565333pt;}
.ls8a{letter-spacing:0.572000pt;}
.ls63{letter-spacing:0.576000pt;}
.ls23{letter-spacing:0.586667pt;}
.ls5e{letter-spacing:0.624000pt;}
.ls60{letter-spacing:0.634667pt;}
.ls15{letter-spacing:0.645333pt;}
.ls5f{letter-spacing:0.648000pt;}
.ls4c{letter-spacing:0.672000pt;}
.ls7d{letter-spacing:0.704000pt;}
.ls78{letter-spacing:0.720000pt;}
.ls77{letter-spacing:0.756000pt;}
.lsf{letter-spacing:0.762667pt;}
.ls76{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.821333pt;}
.ls14{letter-spacing:0.880000pt;}
.ls74{letter-spacing:0.900000pt;}
.ls73{letter-spacing:0.912000pt;}
.ls75{letter-spacing:0.928000pt;}
.ls7c{letter-spacing:0.936000pt;}
.ls2a{letter-spacing:0.938667pt;}
.ls64{letter-spacing:0.960000pt;}
.ls65{letter-spacing:0.972000pt;}
.ls57{letter-spacing:0.997333pt;}
.ls88{letter-spacing:1.002667pt;}
.ls39{letter-spacing:1.008000pt;}
.ls28{letter-spacing:1.056000pt;}
.ls27{letter-spacing:1.200000pt;}
.ls4d{letter-spacing:1.224000pt;}
.ls7f{letter-spacing:1.232000pt;}
.ls4e{letter-spacing:1.242667pt;}
.ls4f{letter-spacing:1.248000pt;}
.ls2c{letter-spacing:1.290667pt;}
.ls9b{letter-spacing:1.333333pt;}
.ls86{letter-spacing:1.349333pt;}
.ls7e{letter-spacing:1.408000pt;}
.ls10{letter-spacing:1.466667pt;}
.ls26{letter-spacing:1.584000pt;}
.ls3d{letter-spacing:13.733333pt;}
.ls99{letter-spacing:26.666667pt;}
.ws31{word-spacing:-16.250667pt;}
.ws6a{word-spacing:-16.133333pt;}
.wsb3{word-spacing:-15.898667pt;}
.wsd9{word-spacing:-15.664000pt;}
.wsb4{word-spacing:-15.605333pt;}
.wsb9{word-spacing:-15.488000pt;}
.wsd7{word-spacing:-15.429333pt;}
.ws7f{word-spacing:-15.312000pt;}
.ws30{word-spacing:-15.253333pt;}
.ws11{word-spacing:-15.194667pt;}
.wsb6{word-spacing:-15.136000pt;}
.wsb5{word-spacing:-15.077333pt;}
.ws14{word-spacing:-15.018667pt;}
.wse3{word-spacing:-14.960000pt;}
.ws5e{word-spacing:-14.901333pt;}
.ws32{word-spacing:-14.842667pt;}
.ws5f{word-spacing:-14.784000pt;}
.ws6b{word-spacing:-14.725333pt;}
.ws12{word-spacing:-14.666667pt;}
.ws13{word-spacing:-14.608000pt;}
.wsd2{word-spacing:-14.549333pt;}
.ws82{word-spacing:-14.490667pt;}
.ws67{word-spacing:-14.432000pt;}
.ws69{word-spacing:-14.373333pt;}
.ws34{word-spacing:-14.314667pt;}
.ws57{word-spacing:-14.256000pt;}
.ws7e{word-spacing:-14.197333pt;}
.wsbe{word-spacing:-14.138667pt;}
.ws55{word-spacing:-14.080000pt;}
.ws53{word-spacing:-14.021333pt;}
.ws60{word-spacing:-13.962667pt;}
.wsd3{word-spacing:-13.845333pt;}
.wsa2{word-spacing:-13.786667pt;}
.ws10b{word-spacing:-13.760000pt;}
.ws56{word-spacing:-13.728000pt;}
.ws54{word-spacing:-13.669333pt;}
.wsec{word-spacing:-13.653333pt;}
.ws61{word-spacing:-13.610667pt;}
.wsa6{word-spacing:-13.552000pt;}
.wse8{word-spacing:-13.386667pt;}
.ws96{word-spacing:-13.333333pt;}
.ws10c{word-spacing:-13.280000pt;}
.ws83{word-spacing:-13.258667pt;}
.wsd1{word-spacing:-13.248000pt;}
.ws76{word-spacing:-13.200000pt;}
.ws10a{word-spacing:-13.173333pt;}
.ws108{word-spacing:-13.120000pt;}
.wsf0{word-spacing:-13.013333pt;}
.ws93{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.920000pt;}
.wsac{word-spacing:-12.912000pt;}
.ws101{word-spacing:-12.906667pt;}
.wsea{word-spacing:-12.853333pt;}
.wsae{word-spacing:-12.768000pt;}
.ws114{word-spacing:-12.746667pt;}
.wsaf{word-spacing:-12.720000pt;}
.ws19{word-spacing:-12.666667pt;}
.ws8a{word-spacing:-12.624000pt;}
.wsff{word-spacing:-12.586667pt;}
.ws8e{word-spacing:-12.576000pt;}
.wsc7{word-spacing:-12.528000pt;}
.wsc2{word-spacing:-12.336000pt;}
.ws8b{word-spacing:-12.288000pt;}
.ws110{word-spacing:-12.266667pt;}
.ws8c{word-spacing:-12.240000pt;}
.ws94{word-spacing:-12.192000pt;}
.ws84{word-spacing:-12.144000pt;}
.ws8d{word-spacing:-12.096000pt;}
.ws18{word-spacing:-12.048000pt;}
.ws3a{word-spacing:-12.000000pt;}
.ws3b{word-spacing:-11.952000pt;}
.wsc3{word-spacing:-11.904000pt;}
.ws37{word-spacing:-11.856000pt;}
.ws112{word-spacing:-11.840000pt;}
.ws38{word-spacing:-11.808000pt;}
.ws39{word-spacing:-11.760000pt;}
.ws73{word-spacing:-11.712000pt;}
.wsbc{word-spacing:-11.616000pt;}
.wsce{word-spacing:-11.572000pt;}
.wscd{word-spacing:-11.440000pt;}
.ws87{word-spacing:-11.424000pt;}
.wse1{word-spacing:-11.376000pt;}
.ws90{word-spacing:-11.328000pt;}
.wsa3{word-spacing:-11.308000pt;}
.wsb8{word-spacing:-11.264000pt;}
.wsa5{word-spacing:-11.176000pt;}
.ws6f{word-spacing:-11.136000pt;}
.wsa1{word-spacing:-11.132000pt;}
.ws6c{word-spacing:-11.000000pt;}
.ws86{word-spacing:-10.956000pt;}
.wsbb{word-spacing:-10.944000pt;}
.wsdb{word-spacing:-10.896000pt;}
.ws62{word-spacing:-10.868000pt;}
.ws68{word-spacing:-10.824000pt;}
.ws91{word-spacing:-10.800000pt;}
.wsd8{word-spacing:-10.780000pt;}
.ws33{word-spacing:-10.736000pt;}
.wsda{word-spacing:-10.692000pt;}
.wsbf{word-spacing:-10.648000pt;}
.ws17{word-spacing:-10.624000pt;}
.ws81{word-spacing:-10.560000pt;}
.ws15{word-spacing:-10.516000pt;}
.ws80{word-spacing:-10.428000pt;}
.wseb{word-spacing:-10.320000pt;}
.ws75{word-spacing:-10.224000pt;}
.wsfd{word-spacing:-10.080000pt;}
.wsdf{word-spacing:-10.076000pt;}
.wse7{word-spacing:-10.040000pt;}
.wse4{word-spacing:-10.000000pt;}
.ws92{word-spacing:-9.972000pt;}
.wsee{word-spacing:-9.960000pt;}
.wsab{word-spacing:-9.900000pt;}
.ws109{word-spacing:-9.840000pt;}
.ws102{word-spacing:-9.760000pt;}
.wsad{word-spacing:-9.756000pt;}
.wsef{word-spacing:-9.680000pt;}
.ws89{word-spacing:-9.648000pt;}
.wse6{word-spacing:-9.640000pt;}
.wsd4{word-spacing:-9.576000pt;}
.wsc5{word-spacing:-9.540000pt;}
.wse9{word-spacing:-9.520000pt;}
.ws10e{word-spacing:-9.400000pt;}
.wsfe{word-spacing:-9.240000pt;}
.ws3f{word-spacing:-9.216000pt;}
.ws10d{word-spacing:-9.200000pt;}
.wsc1{word-spacing:-9.144000pt;}
.wsf1{word-spacing:-9.036000pt;}
.ws3d{word-spacing:-9.000000pt;}
.ws3c{word-spacing:-8.964000pt;}
.wsd5{word-spacing:-8.928000pt;}
.ws113{word-spacing:-8.880000pt;}
.wse2{word-spacing:-8.856000pt;}
.ws36{word-spacing:-8.820000pt;}
.ws6e{word-spacing:-8.784000pt;}
.ws71{word-spacing:-8.604000pt;}
.wsd0{word-spacing:-8.496000pt;}
.ws58{word-spacing:-8.460000pt;}
.ws59{word-spacing:-8.424000pt;}
.ws8f{word-spacing:-8.352000pt;}
.ws70{word-spacing:-8.136000pt;}
.wsba{word-spacing:-7.920000pt;}
.ws77{word-spacing:-0.762667pt;}
.ws1d{word-spacing:-0.704000pt;}
.ws3{word-spacing:-0.658667pt;}
.ws24{word-spacing:-0.645333pt;}
.wsf6{word-spacing:-0.640000pt;}
.ws25{word-spacing:-0.586667pt;}
.ws51{word-spacing:-0.576000pt;}
.ws50{word-spacing:-0.528000pt;}
.ws8{word-spacing:-0.506667pt;}
.ws4b{word-spacing:-0.480000pt;}
.ws5a{word-spacing:-0.469333pt;}
.ws10{word-spacing:-0.456000pt;}
.ws7c{word-spacing:-0.432000pt;}
.ws1c{word-spacing:-0.410667pt;}
.wsb{word-spacing:-0.405333pt;}
.ws4f{word-spacing:-0.384000pt;}
.wsf8{word-spacing:-0.373333pt;}
.wsf{word-spacing:-0.354667pt;}
.ws44{word-spacing:-0.352000pt;}
.ws4d{word-spacing:-0.336000pt;}
.wsf4{word-spacing:-0.320000pt;}
.ws26{word-spacing:-0.293333pt;}
.ws9c{word-spacing:-0.288000pt;}
.ws116{word-spacing:-0.266667pt;}
.wsa4{word-spacing:-0.240000pt;}
.ws48{word-spacing:-0.234667pt;}
.wsf7{word-spacing:-0.213333pt;}
.ws79{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.176000pt;}
.ws11b{word-spacing:-0.160000pt;}
.wsca{word-spacing:-0.144000pt;}
.ws2c{word-spacing:-0.117333pt;}
.ws11a{word-spacing:-0.106667pt;}
.ws6{word-spacing:-0.101333pt;}
.ws5d{word-spacing:-0.096000pt;}
.ws65{word-spacing:-0.058667pt;}
.ws104{word-spacing:-0.053333pt;}
.ws5c{word-spacing:-0.048000pt;}
.wse0{word-spacing:-0.044000pt;}
.ws2{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.048000pt;}
.ws115{word-spacing:0.053333pt;}
.ws63{word-spacing:0.058667pt;}
.wscb{word-spacing:0.096000pt;}
.ws4a{word-spacing:0.117333pt;}
.ws4c{word-spacing:0.144000pt;}
.ws118{word-spacing:0.160000pt;}
.ws23{word-spacing:0.176000pt;}
.ws4e{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.234667pt;}
.wsa0{word-spacing:0.240000pt;}
.wsd{word-spacing:0.253333pt;}
.ws7b{word-spacing:0.288000pt;}
.ws66{word-spacing:0.293333pt;}
.ws11c{word-spacing:0.320000pt;}
.ws99{word-spacing:0.352000pt;}
.wsb1{word-spacing:0.384000pt;}
.ws42{word-spacing:0.410667pt;}
.ws119{word-spacing:0.426667pt;}
.wsde{word-spacing:0.432000pt;}
.ws45{word-spacing:0.469333pt;}
.ws7a{word-spacing:0.480000pt;}
.ws2e{word-spacing:0.528000pt;}
.wsb2{word-spacing:0.576000pt;}
.ws21{word-spacing:0.586667pt;}
.wse{word-spacing:0.608000pt;}
.ws9e{word-spacing:0.624000pt;}
.ws1b{word-spacing:0.645333pt;}
.wscc{word-spacing:0.672000pt;}
.ws85{word-spacing:0.704000pt;}
.ws4{word-spacing:0.709333pt;}
.wsb0{word-spacing:0.720000pt;}
.ws49{word-spacing:0.748000pt;}
.ws29{word-spacing:0.762667pt;}
.ws9b{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.816000pt;}
.ws41{word-spacing:0.821333pt;}
.ws7d{word-spacing:0.864000pt;}
.ws64{word-spacing:0.880000pt;}
.ws117{word-spacing:0.906667pt;}
.ws7{word-spacing:0.912000pt;}
.ws1f{word-spacing:0.938667pt;}
.ws52{word-spacing:0.960000pt;}
.ws1{word-spacing:0.994667pt;}
.ws22{word-spacing:0.997333pt;}
.ws9a{word-spacing:1.008000pt;}
.wsc{word-spacing:1.013333pt;}
.ws28{word-spacing:1.056000pt;}
.wsa{word-spacing:1.064000pt;}
.ws9d{word-spacing:1.104000pt;}
.ws9{word-spacing:1.114667pt;}
.ws2f{word-spacing:1.152000pt;}
.ws5{word-spacing:1.165333pt;}
.ws5b{word-spacing:1.173333pt;}
.ws40{word-spacing:1.232000pt;}
.wsf5{word-spacing:1.280000pt;}
.ws43{word-spacing:1.290667pt;}
.ws27{word-spacing:1.349333pt;}
.ws20{word-spacing:1.408000pt;}
.ws1a{word-spacing:1.466667pt;}
.wsf2{word-spacing:2.180000pt;}
.ws72{word-spacing:2.514667pt;}
.ws107{word-spacing:2.800000pt;}
.wscf{word-spacing:2.920000pt;}
.ws100{word-spacing:2.986667pt;}
.wsdd{word-spacing:3.024000pt;}
.ws103{word-spacing:3.040000pt;}
.wsdc{word-spacing:3.072000pt;}
.wsaa{word-spacing:3.240000pt;}
.ws105{word-spacing:3.280000pt;}
.wsed{word-spacing:3.320000pt;}
.ws106{word-spacing:3.333333pt;}
.wse5{word-spacing:3.373333pt;}
.wsa9{word-spacing:3.420000pt;}
.ws10f{word-spacing:3.466667pt;}
.ws88{word-spacing:3.485333pt;}
.wsa8{word-spacing:3.494667pt;}
.wsc4{word-spacing:3.665333pt;}
.wsc6{word-spacing:3.689333pt;}
.ws74{word-spacing:3.724000pt;}
.wsa7{word-spacing:3.744000pt;}
.ws47{word-spacing:3.828000pt;}
.ws111{word-spacing:3.840000pt;}
.wsc8{word-spacing:3.890667pt;}
.ws3e{word-spacing:3.920000pt;}
.ws95{word-spacing:4.040000pt;}
.wsfb{word-spacing:4.506667pt;}
.wsfc{word-spacing:4.600000pt;}
.wsb7{word-spacing:5.056000pt;}
.ws46{word-spacing:5.104000pt;}
.wsc0{word-spacing:5.160000pt;}
.wsf3{word-spacing:5.221333pt;}
.wsd6{word-spacing:5.280000pt;}
.wsc9{word-spacing:6.218667pt;}
.ws78{word-spacing:7.568000pt;}
.ws6d{word-spacing:8.016000pt;}
.wsf9{word-spacing:8.880000pt;}
.wsfa{word-spacing:8.928000pt;}
.wsbd{word-spacing:11.733333pt;}
.ws1e{word-spacing:15.136000pt;}
.ws16{word-spacing:31.914667pt;}
.ws35{word-spacing:32.016000pt;}
.ws98{word-spacing:277.120000pt;}
.ws97{word-spacing:547.360000pt;}
._18{margin-left:-10.208000pt;}
._15{margin-left:-7.392000pt;}
._b{margin-left:-5.984000pt;}
._1{margin-left:-4.957333pt;}
._a{margin-left:-3.616000pt;}
._5{margin-left:-2.698667pt;}
._0{margin-left:-1.680000pt;}
._2{width:1.122667pt;}
._6{width:2.736000pt;}
._c{width:3.648000pt;}
._17{width:5.925333pt;}
._3{width:12.160000pt;}
._d{width:20.016000pt;}
._16{width:24.720000pt;}
._19{width:26.666667pt;}
._4{width:42.554667pt;}
._8{width:44.016000pt;}
._e{width:154.986667pt;}
._f{width:178.186667pt;}
._13{width:355.840000pt;}
._14{width:356.826667pt;}
._11{width:358.880000pt;}
._9{width:408.704000pt;}
._10{width:474.453333pt;}
._12{width:489.520000pt;}
._7{width:1062.245333pt;}
.fs7{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y12e{bottom:40.856000pt;}
.yc0{bottom:40.861333pt;}
.y1fa{bottom:40.984000pt;}
.y115{bottom:41.946667pt;}
.y43{bottom:41.952000pt;}
.y7f{bottom:41.962667pt;}
.y174{bottom:41.968000pt;}
.yeb{bottom:42.749333pt;}
.y1d9{bottom:44.064000pt;}
.y150{bottom:53.512000pt;}
.y12d{bottom:53.528000pt;}
.ybf{bottom:53.533333pt;}
.y1f9{bottom:53.656000pt;}
.y114{bottom:54.618667pt;}
.y42{bottom:54.624000pt;}
.y173{bottom:54.629333pt;}
.y7e{bottom:54.634667pt;}
.yea{bottom:55.421333pt;}
.y1d8{bottom:59.390667pt;}
.y14f{bottom:66.184000pt;}
.y12c{bottom:66.194667pt;}
.y17f{bottom:66.200000pt;}
.y1f8{bottom:66.328000pt;}
.y1e9{bottom:67.285333pt;}
.y113{bottom:67.290667pt;}
.y41{bottom:67.296000pt;}
.y7d{bottom:67.301333pt;}
.ye9{bottom:68.088000pt;}
.y1d7{bottom:74.717333pt;}
.y1ba{bottom:78.792000pt;}
.y12b{bottom:78.845333pt;}
.y14e{bottom:78.856000pt;}
.y221{bottom:78.861333pt;}
.y1f7{bottom:79.000000pt;}
.y7c{bottom:79.925333pt;}
.y1e8{bottom:79.957333pt;}
.y112{bottom:79.962667pt;}
.y40{bottom:79.968000pt;}
.ya4{bottom:79.973333pt;}
.ye8{bottom:80.754667pt;}
.ybe{bottom:89.820000pt;}
.y210{bottom:90.026667pt;}
.y1d6{bottom:90.044000pt;}
.y1b9{bottom:91.464000pt;}
.y12a{bottom:91.517333pt;}
.y14d{bottom:91.528000pt;}
.y239{bottom:91.533333pt;}
.y7b{bottom:92.597333pt;}
.y1e7{bottom:92.629333pt;}
.y111{bottom:92.634667pt;}
.y3f{bottom:92.640000pt;}
.ye7{bottom:93.421333pt;}
.y20{bottom:103.866667pt;}
.y1b8{bottom:104.136000pt;}
.y129{bottom:104.189333pt;}
.y220{bottom:104.194667pt;}
.y14c{bottom:104.200000pt;}
.ybd{bottom:105.146667pt;}
.y17e{bottom:105.220000pt;}
.y7a{bottom:105.269333pt;}
.y110{bottom:105.301333pt;}
.y1a1{bottom:105.306667pt;}
.y20f{bottom:105.353333pt;}
.y1d5{bottom:105.370667pt;}
.ye6{bottom:106.088000pt;}
.y1b7{bottom:116.808000pt;}
.y128{bottom:116.861333pt;}
.y1f{bottom:117.165333pt;}
.y79{bottom:117.941333pt;}
.y172{bottom:117.962667pt;}
.y10f{bottom:117.973333pt;}
.ye5{bottom:118.754667pt;}
.ybc{bottom:120.473333pt;}
.y17d{bottom:120.546667pt;}
.ya3{bottom:120.593333pt;}
.y20e{bottom:120.680000pt;}
.y1d4{bottom:120.697333pt;}
.y3e{bottom:125.116000pt;}
.y1b6{bottom:129.480000pt;}
.y127{bottom:129.485333pt;}
.y21f{bottom:129.533333pt;}
.y78{bottom:130.613333pt;}
.y171{bottom:130.634667pt;}
.ye4{bottom:131.421333pt;}
.ybb{bottom:135.840000pt;}
.y17c{bottom:135.873333pt;}
.y1f6{bottom:135.886667pt;}
.ya2{bottom:135.920000pt;}
.y20d{bottom:136.006667pt;}
.y1d3{bottom:136.024000pt;}
.y1e{bottom:137.166000pt;}
.y3d{bottom:140.442667pt;}
.y1b5{bottom:142.152000pt;}
.y126{bottom:142.157333pt;}
.y77{bottom:143.285333pt;}
.y170{bottom:143.301333pt;}
.ye3{bottom:144.040000pt;}
.y1d{bottom:150.504000pt;}
.y1c6{bottom:151.146667pt;}
.y10e{bottom:151.153333pt;}
.y1a0{bottom:151.160000pt;}
.yba{bottom:151.166667pt;}
.y17b{bottom:151.200000pt;}
.y1f5{bottom:151.213333pt;}
.y14b{bottom:151.220000pt;}
.ya1{bottom:151.246667pt;}
.y20c{bottom:151.333333pt;}
.y1d2{bottom:151.350667pt;}
.y238{bottom:153.186667pt;}
.y1b4{bottom:154.824000pt;}
.y125{bottom:154.829333pt;}
.y3c{bottom:155.769333pt;}
.y16f{bottom:155.930667pt;}
.y76{bottom:155.957333pt;}
.ye2{bottom:156.712000pt;}
.y1c{bottom:163.842000pt;}
.y1c5{bottom:166.473333pt;}
.y10d{bottom:166.480000pt;}
.y19f{bottom:166.486667pt;}
.yb9{bottom:166.493333pt;}
.y17a{bottom:166.526667pt;}
.y1f4{bottom:166.540000pt;}
.y14a{bottom:166.546667pt;}
.ya0{bottom:166.573333pt;}
.y1e6{bottom:166.586667pt;}
.y20b{bottom:166.660000pt;}
.y1b3{bottom:167.496000pt;}
.y124{bottom:167.501333pt;}
.y16e{bottom:168.602667pt;}
.y75{bottom:168.629333pt;}
.ye1{bottom:169.384000pt;}
.y237{bottom:169.840000pt;}
.y3b{bottom:171.096000pt;}
.y1d1{bottom:174.348000pt;}
.y1b{bottom:177.180000pt;}
.y1b2{bottom:180.168000pt;}
.y123{bottom:180.173333pt;}
.y16d{bottom:181.274667pt;}
.y74{bottom:181.301333pt;}
.y10c{bottom:181.806667pt;}
.y19e{bottom:181.813333pt;}
.yb8{bottom:181.820000pt;}
.y179{bottom:181.853333pt;}
.y1f3{bottom:181.866667pt;}
.y149{bottom:181.873333pt;}
.y9f{bottom:181.900000pt;}
.y1e5{bottom:181.913333pt;}
.y20a{bottom:181.986667pt;}
.ye0{bottom:182.056000pt;}
.y236{bottom:183.840000pt;}
.y3a{bottom:186.422667pt;}
.y1a{bottom:190.518000pt;}
.y1b1{bottom:192.840000pt;}
.y122{bottom:192.845333pt;}
.y16c{bottom:193.946667pt;}
.y73{bottom:193.973333pt;}
.ydf{bottom:194.728000pt;}
.y19d{bottom:197.140000pt;}
.yb7{bottom:197.146667pt;}
.y10b{bottom:197.160000pt;}
.y178{bottom:197.180000pt;}
.y1f2{bottom:197.193333pt;}
.y148{bottom:197.200000pt;}
.y9e{bottom:197.226667pt;}
.y1e4{bottom:197.240000pt;}
.y209{bottom:197.313333pt;}
.y235{bottom:200.480000pt;}
.y39{bottom:201.749333pt;}
.y19{bottom:203.856000pt;}
.y1b0{bottom:205.512000pt;}
.y121{bottom:205.517333pt;}
.y16b{bottom:206.618667pt;}
.yde{bottom:207.400000pt;}
.yb6{bottom:212.473333pt;}
.y19c{bottom:212.480000pt;}
.y10a{bottom:212.486667pt;}
.y177{bottom:212.506667pt;}
.y1f1{bottom:212.520000pt;}
.y147{bottom:212.526667pt;}
.y9d{bottom:212.553333pt;}
.y1e3{bottom:212.566667pt;}
.y208{bottom:212.640000pt;}
.y1d0{bottom:212.686667pt;}
.y38{bottom:217.076000pt;}
.y234{bottom:217.133333pt;}
.y18{bottom:217.194000pt;}
.y1af{bottom:218.184000pt;}
.y120{bottom:218.189333pt;}
.y16a{bottom:219.290667pt;}
.ydd{bottom:220.072000pt;}
.y72{bottom:227.806667pt;}
.y109{bottom:227.813333pt;}
.y176{bottom:227.833333pt;}
.y1f0{bottom:227.846667pt;}
.y146{bottom:227.853333pt;}
.yb5{bottom:227.860000pt;}
.y9c{bottom:227.880000pt;}
.y1e2{bottom:227.893333pt;}
.y207{bottom:227.966667pt;}
.y1cf{bottom:228.013333pt;}
.y17{bottom:230.532000pt;}
.y1ae{bottom:230.856000pt;}
.y11f{bottom:230.861333pt;}
.y233{bottom:231.133333pt;}
.y169{bottom:231.962667pt;}
.y37{bottom:232.402667pt;}
.ydc{bottom:232.744000pt;}
.y108{bottom:243.140000pt;}
.y175{bottom:243.160000pt;}
.y1ef{bottom:243.173333pt;}
.y145{bottom:243.180000pt;}
.y71{bottom:243.186667pt;}
.y9b{bottom:243.206667pt;}
.y1e1{bottom:243.220000pt;}
.y206{bottom:243.293333pt;}
.y19b{bottom:243.304000pt;}
.y1ce{bottom:243.340000pt;}
.y11e{bottom:243.512000pt;}
.y1ad{bottom:243.528000pt;}
.y16{bottom:243.870000pt;}
.y168{bottom:244.634667pt;}
.ydb{bottom:245.416000pt;}
.y36{bottom:247.729333pt;}
.y232{bottom:247.773333pt;}
.y11d{bottom:256.184000pt;}
.y167{bottom:257.306667pt;}
.yda{bottom:258.088000pt;}
.y107{bottom:258.486667pt;}
.y1ee{bottom:258.500000pt;}
.y144{bottom:258.506667pt;}
.y70{bottom:258.513333pt;}
.y9a{bottom:258.533333pt;}
.y1e0{bottom:258.546667pt;}
.y205{bottom:258.620000pt;}
.y19a{bottom:258.630667pt;}
.y1cd{bottom:258.666667pt;}
.y231{bottom:261.773333pt;}
.y35{bottom:263.056000pt;}
.y11c{bottom:268.856000pt;}
.y15{bottom:270.533333pt;}
.yd9{bottom:270.760000pt;}
.y106{bottom:273.813333pt;}
.y1ed{bottom:273.826667pt;}
.y143{bottom:273.833333pt;}
.y6f{bottom:273.840000pt;}
.y99{bottom:273.860000pt;}
.y1df{bottom:273.873333pt;}
.y204{bottom:273.946667pt;}
.y199{bottom:273.957333pt;}
.y1cc{bottom:273.993333pt;}
.y34{bottom:278.382667pt;}
.y230{bottom:278.426667pt;}
.y11b{bottom:281.528000pt;}
.y14{bottom:283.822000pt;}
.y105{bottom:289.140000pt;}
.y1ec{bottom:289.153333pt;}
.y142{bottom:289.160000pt;}
.y6e{bottom:289.166667pt;}
.y98{bottom:289.186667pt;}
.y1de{bottom:289.200000pt;}
.y203{bottom:289.273333pt;}
.y198{bottom:289.284000pt;}
.y1cb{bottom:289.320000pt;}
.y33{bottom:293.709333pt;}
.y11a{bottom:294.200000pt;}
.y22f{bottom:295.066667pt;}
.yd8{bottom:304.473333pt;}
.y1eb{bottom:304.480000pt;}
.y141{bottom:304.486667pt;}
.y6d{bottom:304.493333pt;}
.y97{bottom:304.513333pt;}
.y166{bottom:304.520000pt;}
.y1dd{bottom:304.526667pt;}
.y104{bottom:304.586667pt;}
.y202{bottom:304.600000pt;}
.y197{bottom:304.610667pt;}
.y1ca{bottom:304.646667pt;}
.y254{bottom:305.306667pt;}
.y32{bottom:309.036000pt;}
.y22e{bottom:311.706667pt;}
.y13{bottom:315.818000pt;}
.y253{bottom:319.306667pt;}
.y1ea{bottom:319.806667pt;}
.y140{bottom:319.813333pt;}
.y6c{bottom:319.820000pt;}
.y96{bottom:319.840000pt;}
.y165{bottom:319.846667pt;}
.y1dc{bottom:319.853333pt;}
.yd7{bottom:319.904000pt;}
.y103{bottom:319.913333pt;}
.y201{bottom:319.926667pt;}
.y196{bottom:319.937333pt;}
.y1c9{bottom:319.973333pt;}
.y31{bottom:324.362667pt;}
.y22d{bottom:328.360000pt;}
.y12{bottom:329.156000pt;}
.y13f{bottom:335.140000pt;}
.y6b{bottom:335.146667pt;}
.y119{bottom:335.160000pt;}
.y95{bottom:335.166667pt;}
.y164{bottom:335.173333pt;}
.y1db{bottom:335.180000pt;}
.y1ac{bottom:335.186667pt;}
.y252{bottom:335.200000pt;}
.yd6{bottom:335.230667pt;}
.y102{bottom:335.240000pt;}
.y200{bottom:335.253333pt;}
.y195{bottom:335.264000pt;}
.y1c8{bottom:335.300000pt;}
.y30{bottom:339.689333pt;}
.y22c{bottom:345.000000pt;}
.y11{bottom:349.156667pt;}
.y6a{bottom:350.473333pt;}
.y118{bottom:350.486667pt;}
.y94{bottom:350.493333pt;}
.y163{bottom:350.500000pt;}
.y13e{bottom:350.506667pt;}
.y1ab{bottom:350.513333pt;}
.yd5{bottom:350.557333pt;}
.y101{bottom:350.566667pt;}
.y1ff{bottom:350.580000pt;}
.y194{bottom:350.590667pt;}
.y1c7{bottom:350.626667pt;}
.y251{bottom:351.093333pt;}
.y2f{bottom:355.016000pt;}
.y22b{bottom:359.000000pt;}
.y10{bottom:362.494667pt;}
.y69{bottom:365.813333pt;}
.y93{bottom:365.820000pt;}
.y162{bottom:365.826667pt;}
.y13d{bottom:365.833333pt;}
.y1aa{bottom:365.840000pt;}
.yd4{bottom:365.884000pt;}
.y100{bottom:365.893333pt;}
.y1fe{bottom:365.906667pt;}
.y193{bottom:365.917333pt;}
.yb4{bottom:365.953333pt;}
.y250{bottom:366.986667pt;}
.y2e{bottom:370.342667pt;}
.y22a{bottom:375.653333pt;}
.yf{bottom:375.832667pt;}
.y68{bottom:381.140000pt;}
.y92{bottom:381.146667pt;}
.y161{bottom:381.153333pt;}
.y13c{bottom:381.160000pt;}
.y1a9{bottom:381.166667pt;}
.yd3{bottom:381.210667pt;}
.yff{bottom:381.220000pt;}
.y1fd{bottom:381.233333pt;}
.y192{bottom:381.244000pt;}
.yb3{bottom:381.280000pt;}
.y24f{bottom:382.866667pt;}
.y2d{bottom:385.669333pt;}
.ye{bottom:389.170667pt;}
.y229{bottom:389.653333pt;}
.y91{bottom:396.473333pt;}
.y160{bottom:396.480000pt;}
.y13b{bottom:396.486667pt;}
.y1a8{bottom:396.493333pt;}
.y67{bottom:396.500000pt;}
.yd2{bottom:396.537333pt;}
.yfe{bottom:396.546667pt;}
.y1fc{bottom:396.560000pt;}
.y191{bottom:396.570667pt;}
.yb2{bottom:396.606667pt;}
.y24e{bottom:398.760000pt;}
.y2c{bottom:400.996000pt;}
.yd{bottom:402.508667pt;}
.y228{bottom:406.293333pt;}
.y15f{bottom:411.806667pt;}
.y13a{bottom:411.813333pt;}
.y1a7{bottom:411.820000pt;}
.y66{bottom:411.826667pt;}
.yd1{bottom:411.864000pt;}
.y1c4{bottom:411.866667pt;}
.yfd{bottom:411.873333pt;}
.y90{bottom:411.886667pt;}
.y190{bottom:411.897333pt;}
.y21e{bottom:411.904000pt;}
.yb1{bottom:411.933333pt;}
.y24d{bottom:414.653333pt;}
.yc{bottom:415.846667pt;}
.y2b{bottom:416.322667pt;}
.y227{bottom:420.293333pt;}
.y139{bottom:427.140000pt;}
.y1a6{bottom:427.146667pt;}
.y65{bottom:427.153333pt;}
.y15e{bottom:427.186667pt;}
.yd0{bottom:427.190667pt;}
.y1c3{bottom:427.193333pt;}
.yfc{bottom:427.200000pt;}
.y8f{bottom:427.213333pt;}
.y18f{bottom:427.224000pt;}
.y21d{bottom:427.230667pt;}
.yb0{bottom:427.260000pt;}
.yb{bottom:429.184667pt;}
.y24c{bottom:430.533333pt;}
.y2a{bottom:431.649333pt;}
.y226{bottom:436.946667pt;}
.y1a5{bottom:442.473333pt;}
.y64{bottom:442.480000pt;}
.y1da{bottom:442.493333pt;}
.y15d{bottom:442.513333pt;}
.ycf{bottom:442.517333pt;}
.y1c2{bottom:442.520000pt;}
.ya{bottom:442.522667pt;}
.yfb{bottom:442.526667pt;}
.y8e{bottom:442.540000pt;}
.y18e{bottom:442.550667pt;}
.y21c{bottom:442.557333pt;}
.yaf{bottom:442.586667pt;}
.y24b{bottom:444.533333pt;}
.y29{bottom:446.976000pt;}
.y225{bottom:450.946667pt;}
.y9{bottom:455.860667pt;}
.y63{bottom:457.806667pt;}
.y1a4{bottom:457.820000pt;}
.y15c{bottom:457.840000pt;}
.yce{bottom:457.844000pt;}
.y1c1{bottom:457.846667pt;}
.yfa{bottom:457.853333pt;}
.y8d{bottom:457.866667pt;}
.y18d{bottom:457.877333pt;}
.y21b{bottom:457.884000pt;}
.yae{bottom:457.913333pt;}
.y24a{bottom:458.533333pt;}
.y28{bottom:462.302667pt;}
.y224{bottom:467.586667pt;}
.y8{bottom:469.198667pt;}
.y117{bottom:473.140000pt;}
.y1a3{bottom:473.146667pt;}
.y15b{bottom:473.166667pt;}
.ycd{bottom:473.170667pt;}
.y1c0{bottom:473.173333pt;}
.yf9{bottom:473.180000pt;}
.y62{bottom:473.190667pt;}
.y8c{bottom:473.193333pt;}
.y18c{bottom:473.204000pt;}
.y21a{bottom:473.210667pt;}
.yad{bottom:473.240000pt;}
.y249{bottom:474.426667pt;}
.y27{bottom:477.629333pt;}
.y7{bottom:482.536667pt;}
.y223{bottom:484.226667pt;}
.y116{bottom:488.466667pt;}
.y1a2{bottom:488.473333pt;}
.y15a{bottom:488.493333pt;}
.ycc{bottom:488.497333pt;}
.y1bf{bottom:488.500000pt;}
.yf8{bottom:488.506667pt;}
.y61{bottom:488.517333pt;}
.y8b{bottom:488.520000pt;}
.y18b{bottom:488.530667pt;}
.y219{bottom:488.537333pt;}
.yac{bottom:488.566667pt;}
.y248{bottom:490.320000pt;}
.y26{bottom:492.956000pt;}
.y159{bottom:503.820000pt;}
.ycb{bottom:503.824000pt;}
.y1be{bottom:503.826667pt;}
.yf7{bottom:503.833333pt;}
.y60{bottom:503.844000pt;}
.y8a{bottom:503.846667pt;}
.y18a{bottom:503.857333pt;}
.y218{bottom:503.864000pt;}
.yab{bottom:503.893333pt;}
.y247{bottom:506.213333pt;}
.y25{bottom:508.282667pt;}
.y6{bottom:509.200000pt;}
.y222{bottom:511.461333pt;}
.y158{bottom:519.146667pt;}
.yca{bottom:519.150667pt;}
.y1bd{bottom:519.153333pt;}
.yf6{bottom:519.160000pt;}
.y5f{bottom:519.170667pt;}
.y89{bottom:519.173333pt;}
.y189{bottom:519.184000pt;}
.y217{bottom:519.190667pt;}
.yaa{bottom:519.220000pt;}
.y246{bottom:520.213333pt;}
.y24{bottom:523.609333pt;}
.y245{bottom:534.213333pt;}
.y157{bottom:534.473333pt;}
.yc9{bottom:534.477333pt;}
.y1bc{bottom:534.480000pt;}
.yf5{bottom:534.486667pt;}
.y5e{bottom:534.497333pt;}
.y88{bottom:534.500000pt;}
.y188{bottom:534.510667pt;}
.y216{bottom:534.517333pt;}
.ya9{bottom:534.546667pt;}
.y23{bottom:538.936000pt;}
.yc8{bottom:549.804000pt;}
.y1bb{bottom:549.806667pt;}
.yf4{bottom:549.813333pt;}
.y5d{bottom:549.824000pt;}
.y87{bottom:549.826667pt;}
.y187{bottom:549.837333pt;}
.y156{bottom:549.840000pt;}
.y215{bottom:549.844000pt;}
.ya8{bottom:549.873333pt;}
.y244{bottom:550.093333pt;}
.y138{bottom:550.973333pt;}
.y137{bottom:559.640000pt;}
.y22{bottom:561.933333pt;}
.y243{bottom:564.093333pt;}
.yf3{bottom:565.140000pt;}
.y5c{bottom:565.150667pt;}
.y86{bottom:565.153333pt;}
.y186{bottom:565.164000pt;}
.y155{bottom:565.166667pt;}
.y214{bottom:565.170667pt;}
.ya7{bottom:565.200000pt;}
.yc7{bottom:572.801333pt;}
.y242{bottom:578.093333pt;}
.y85{bottom:580.480000pt;}
.y185{bottom:580.490667pt;}
.y154{bottom:580.493333pt;}
.y213{bottom:580.497333pt;}
.yf2{bottom:580.513333pt;}
.ya6{bottom:580.526667pt;}
.yc6{bottom:588.128000pt;}
.y5b{bottom:588.148000pt;}
.y52{bottom:592.938000pt;}
.y241{bottom:593.986667pt;}
.y136{bottom:594.093333pt;}
.y84{bottom:595.806667pt;}
.y184{bottom:595.817333pt;}
.y153{bottom:595.820000pt;}
.y212{bottom:595.824000pt;}
.yf1{bottom:595.840000pt;}
.ya5{bottom:595.853333pt;}
.y4a{bottom:601.779333pt;}
.y135{bottom:602.760000pt;}
.y240{bottom:609.880000pt;}
.y51{bottom:610.810667pt;}
.y1fb{bottom:611.133333pt;}
.y183{bottom:611.144000pt;}
.y152{bottom:611.146667pt;}
.yf0{bottom:611.166667pt;}
.y83{bottom:611.180000pt;}
.y5{bottom:612.626667pt;}
.y49{bottom:615.117333pt;}
.y211{bottom:618.821333pt;}
.y182{bottom:626.470667pt;}
.y151{bottom:626.473333pt;}
.y5a{bottom:626.486667pt;}
.yef{bottom:626.493333pt;}
.yc5{bottom:626.500000pt;}
.y82{bottom:626.506667pt;}
.y23f{bottom:626.520000pt;}
.y48{bottom:628.455333pt;}
.y50{bottom:628.683333pt;}
.y4{bottom:629.293333pt;}
.y134{bottom:637.213333pt;}
.y23e{bottom:640.520000pt;}
.y47{bottom:641.793333pt;}
.y59{bottom:641.813333pt;}
.yee{bottom:641.820000pt;}
.yc4{bottom:641.826667pt;}
.y81{bottom:641.833333pt;}
.y4f{bottom:642.021333pt;}
.y181{bottom:649.468000pt;}
.y133{bottom:651.213333pt;}
.y23d{bottom:654.520000pt;}
.y58{bottom:657.140000pt;}
.yed{bottom:657.146667pt;}
.yc3{bottom:657.153333pt;}
.y80{bottom:657.160000pt;}
.y4e{bottom:659.906667pt;}
.y46{bottom:664.188000pt;}
.y180{bottom:664.794667pt;}
.y132{bottom:665.213333pt;}
.y3{bottom:669.293333pt;}
.y23c{bottom:671.173333pt;}
.yec{bottom:672.473333pt;}
.yc2{bottom:672.480000pt;}
.y57{bottom:672.486667pt;}
.y4d{bottom:673.244667pt;}
.y45{bottom:677.526000pt;}
.y131{bottom:679.213333pt;}
.y23b{bottom:685.173333pt;}
.y4c{bottom:686.582667pt;}
.yc1{bottom:687.806667pt;}
.y56{bottom:687.813333pt;}
.y2{bottom:690.626667pt;}
.y130{bottom:698.546667pt;}
.y4b{bottom:699.920667pt;}
.y44{bottom:699.933333pt;}
.y23a{bottom:701.813333pt;}
.y55{bottom:703.140000pt;}
.y1{bottom:711.960000pt;}
.y12f{bottom:717.880000pt;}
.y54{bottom:718.466667pt;}
.y53{bottom:721.266667pt;}
.y21{bottom:760.093333pt;}
.h7{height:45.525333pt;}
.h3{height:51.216000pt;}
.hc{height:51.237333pt;}
.hd{height:51.258667pt;}
.h12{height:51.301333pt;}
.h17{height:51.514667pt;}
.ha{height:52.032000pt;}
.h10{height:52.053333pt;}
.h11{height:52.074667pt;}
.h16{height:52.096000pt;}
.h18{height:52.117333pt;}
.h15{height:52.202667pt;}
.hb{height:52.224000pt;}
.hf{height:52.245333pt;}
.h4{height:54.061333pt;}
.h6{height:54.922667pt;}
.h5{height:55.101333pt;}
.h13{height:56.906667pt;}
.h19{height:57.813333pt;}
.h8{height:62.597333pt;}
.h9{height:63.514667pt;}
.he{height:63.594667pt;}
.h2{height:68.288000pt;}
.h14{height:78.240000pt;}
.h1{height:91.050667pt;}
.h0{height:820.000000pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x1{left:47.733333pt;}
.x3{left:48.813333pt;}
.x11{left:56.373333pt;}
.x8{left:64.435333pt;}
.xe{left:67.752000pt;}
.x4{left:68.833333pt;}
.x6{left:76.810667pt;}
.x9{left:110.681333pt;}
.xa{left:114.202667pt;}
.xb{left:138.472000pt;}
.x10{left:139.706667pt;}
.x7{left:152.658667pt;}
.x5{left:176.066667pt;}
.xf{left:223.413333pt;}
.x12{left:226.813333pt;}
.xd{left:243.773333pt;}
.xc{left:276.804667pt;}
.x2{left:366.680000pt;}
}




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