
    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_b7dc5f19a91df681eec64057.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_9ace1ac2bfdf3cf6bdd22d5a.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_c1ba3a873bc0d9f9df61bbb2.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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.000000px;}
.v1{vertical-align:16.410000px;}
.ls9f{letter-spacing:-1.920000px;}
.ls2e{letter-spacing:-1.650000px;}
.ls48{letter-spacing:-1.584000px;}
.ls52{letter-spacing:-1.518000px;}
.ls89{letter-spacing:-1.500000px;}
.ls19{letter-spacing:-1.452000px;}
.ls9e{letter-spacing:-1.440000px;}
.ls1f{letter-spacing:-1.386000px;}
.ls50{letter-spacing:-1.380000px;}
.ls39{letter-spacing:-1.320000px;}
.lsa0{letter-spacing:-1.305000px;}
.ls58{letter-spacing:-1.260000px;}
.ls54{letter-spacing:-1.254000px;}
.ls8b{letter-spacing:-1.200000px;}
.ls49{letter-spacing:-1.188000px;}
.ls94{letter-spacing:-1.140000px;}
.ls93{letter-spacing:-1.125000px;}
.ls53{letter-spacing:-1.122000px;}
.ls87{letter-spacing:-1.080000px;}
.ls3b{letter-spacing:-1.056000px;}
.ls65{letter-spacing:-1.020000px;}
.ls2f{letter-spacing:-0.990000px;}
.ls7{letter-spacing:-0.969000px;}
.ls64{letter-spacing:-0.960000px;}
.ls30{letter-spacing:-0.924000px;}
.ls5c{letter-spacing:-0.900000px;}
.ls86{letter-spacing:-0.864000px;}
.ls38{letter-spacing:-0.858000px;}
.ls99{letter-spacing:-0.855000px;}
.ls6b{letter-spacing:-0.840000px;}
.ls85{letter-spacing:-0.810000px;}
.ls44{letter-spacing:-0.792000px;}
.ls5b{letter-spacing:-0.780000px;}
.ls1c{letter-spacing:-0.726000px;}
.ls72{letter-spacing:-0.720000px;}
.lsa1{letter-spacing:-0.675000px;}
.ls28{letter-spacing:-0.660000px;}
.ls2c{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.594000px;}
.ls96{letter-spacing:-0.585000px;}
.lsb{letter-spacing:-0.570000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.528000px;}
.ls7f{letter-spacing:-0.486000px;}
.ls6c{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.462000px;}
.ls3a{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.399000px;}
.ls20{letter-spacing:-0.396000px;}
.ls68{letter-spacing:-0.378000px;}
.ls3c{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.330000px;}
.ls21{letter-spacing:-0.324000px;}
.ls98{letter-spacing:-0.315000px;}
.ls3d{letter-spacing:-0.300000px;}
.ls66{letter-spacing:-0.297000px;}
.ls22{letter-spacing:-0.270000px;}
.ls1a{letter-spacing:-0.264000px;}
.ls56{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.228000px;}
.ls16{letter-spacing:-0.198000px;}
.ls5a{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.171000px;}
.ls70{letter-spacing:-0.162000px;}
.ls1b{letter-spacing:-0.132000px;}
.ls2b{letter-spacing:-0.120000px;}
.ls84{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.099000px;}
.ls97{letter-spacing:-0.090000px;}
.ls18{letter-spacing:-0.066000px;}
.ls2a{letter-spacing:-0.060000px;}
.ls6{letter-spacing:-0.057000px;}
.ls5f{letter-spacing:-0.054000px;}
.ls8a{letter-spacing:-0.049500px;}
.ls14{letter-spacing:-0.048000px;}
.ls95{letter-spacing:-0.045000px;}
.ls5{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.030000px;}
.ls8f{letter-spacing:0.045000px;}
.ls11{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.057000px;}
.ls31{letter-spacing:0.060000px;}
.ls27{letter-spacing:0.066000px;}
.ls43{letter-spacing:0.108000px;}
.ls34{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.132000px;}
.ls8e{letter-spacing:0.135000px;}
.ls78{letter-spacing:0.148500px;}
.ls40{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.171000px;}
.ls4c{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.198000px;}
.ls45{letter-spacing:0.210000px;}
.ls67{letter-spacing:0.216000px;}
.ls92{letter-spacing:0.225000px;}
.ls2{letter-spacing:0.228000px;}
.ls33{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.264000px;}
.ls47{letter-spacing:0.270000px;}
.ls73{letter-spacing:0.300000px;}
.ls8c{letter-spacing:0.315000px;}
.ls7d{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.330000px;}
.ls83{letter-spacing:0.346500px;}
.ls6a{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.378000px;}
.lsd{letter-spacing:0.396000px;}
.ls3{letter-spacing:0.399000px;}
.ls35{letter-spacing:0.420000px;}
.ls42{letter-spacing:0.432000px;}
.ls90{letter-spacing:0.450000px;}
.ls0{letter-spacing:0.456000px;}
.ls3e{letter-spacing:0.462000px;}
.ls57{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.486000px;}
.ls91{letter-spacing:0.495000px;}
.ls3f{letter-spacing:0.528000px;}
.ls4d{letter-spacing:0.540000px;}
.ls69{letter-spacing:0.594000px;}
.ls32{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.648000px;}
.ls4b{letter-spacing:0.660000px;}
.ls82{letter-spacing:0.702000px;}
.ls76{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.726000px;}
.ls7e{letter-spacing:0.756000px;}
.ls8d{letter-spacing:0.765000px;}
.ls4e{letter-spacing:0.780000px;}
.lse{letter-spacing:0.792000px;}
.ls6f{letter-spacing:0.810000px;}
.ls7a{letter-spacing:0.840000px;}
.lsf{letter-spacing:0.858000px;}
.ls71{letter-spacing:0.864000px;}
.ls79{letter-spacing:0.900000px;}
.ls5e{letter-spacing:0.918000px;}
.ls36{letter-spacing:0.924000px;}
.ls75{letter-spacing:0.960000px;}
.ls41{letter-spacing:0.990000px;}
.ls7b{letter-spacing:1.020000px;}
.ls55{letter-spacing:1.056000px;}
.ls51{letter-spacing:1.122000px;}
.ls6e{letter-spacing:1.188000px;}
.ls88{letter-spacing:1.200000px;}
.ls59{letter-spacing:1.254000px;}
.ls74{letter-spacing:1.260000px;}
.ls4f{letter-spacing:1.320000px;}
.ls80{letter-spacing:1.452000px;}
.ls9d{letter-spacing:1.500000px;}
.ls4a{letter-spacing:1.512000px;}
.ls25{letter-spacing:1.518000px;}
.ls9b{letter-spacing:1.560000px;}
.ls9c{letter-spacing:1.575000px;}
.ls24{letter-spacing:1.584000px;}
.ls77{letter-spacing:1.650000px;}
.ls7c{letter-spacing:1.728000px;}
.ls60{letter-spacing:1.782000px;}
.ls81{letter-spacing:1.914000px;}
.ls63{letter-spacing:13.716000px;}
.ls61{letter-spacing:13.770000px;}
.ls5d{letter-spacing:13.800000px;}
.ls62{letter-spacing:13.824000px;}
.ls9a{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;}
}
.wsc6{word-spacing:-18.414000px;}
.ws96{word-spacing:-18.282000px;}
.wsb5{word-spacing:-18.150000px;}
.ws7d{word-spacing:-18.084000px;}
.ws7c{word-spacing:-18.018000px;}
.ws8a{word-spacing:-17.754000px;}
.wsd7{word-spacing:-17.688000px;}
.wsd8{word-spacing:-17.556000px;}
.ws7b{word-spacing:-17.490000px;}
.ws1c{word-spacing:-17.358000px;}
.ws6b{word-spacing:-17.292000px;}
.ws4e{word-spacing:-17.226000px;}
.ws77{word-spacing:-17.160000px;}
.wsa4{word-spacing:-17.094000px;}
.wsb2{word-spacing:-17.028000px;}
.ws5f{word-spacing:-16.962000px;}
.wsab{word-spacing:-16.896000px;}
.ws1d{word-spacing:-16.830000px;}
.ws19{word-spacing:-16.764000px;}
.ws53{word-spacing:-16.698000px;}
.ws4f{word-spacing:-16.632000px;}
.ws8c{word-spacing:-16.566000px;}
.wsf9{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.500000px;}
.ws18{word-spacing:-16.434000px;}
.ws1a{word-spacing:-16.368000px;}
.ws61{word-spacing:-16.302000px;}
.wsd5{word-spacing:-16.260000px;}
.ws3d{word-spacing:-16.236000px;}
.wscf{word-spacing:-16.200000px;}
.ws60{word-spacing:-16.170000px;}
.ws1e{word-spacing:-16.104000px;}
.ws4d{word-spacing:-16.038000px;}
.wsbd{word-spacing:-16.020000px;}
.ws3a{word-spacing:-15.972000px;}
.ws3e{word-spacing:-15.906000px;}
.wsb6{word-spacing:-15.840000px;}
.ws76{word-spacing:-15.780000px;}
.wsa8{word-spacing:-15.774000px;}
.wsdd{word-spacing:-15.660000px;}
.ws50{word-spacing:-15.600000px;}
.wsac{word-spacing:-15.576000px;}
.ws62{word-spacing:-15.510000px;}
.wse9{word-spacing:-15.480000px;}
.ws51{word-spacing:-15.444000px;}
.wsb9{word-spacing:-15.420000px;}
.ws7a{word-spacing:-15.378000px;}
.wsa6{word-spacing:-15.360000px;}
.ws90{word-spacing:-15.312000px;}
.wsa3{word-spacing:-15.300000px;}
.wsb4{word-spacing:-15.246000px;}
.wsad{word-spacing:-15.240000px;}
.wsb8{word-spacing:-15.180000px;}
.ws8b{word-spacing:-15.120000px;}
.wsb3{word-spacing:-15.060000px;}
.ws3b{word-spacing:-15.000000px;}
.ws91{word-spacing:-14.982000px;}
.wsaf{word-spacing:-14.940000px;}
.wsd3{word-spacing:-14.916000px;}
.ws52{word-spacing:-14.880000px;}
.ws8f{word-spacing:-14.820000px;}
.ws7f{word-spacing:-14.760000px;}
.wsa5{word-spacing:-14.700000px;}
.ws83{word-spacing:-14.640000px;}
.wsae{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.535000px;}
.wsf4{word-spacing:-14.520000px;}
.ws4{word-spacing:-14.478000px;}
.ws3c{word-spacing:-14.400000px;}
.ws85{word-spacing:-14.340000px;}
.wsf3{word-spacing:-14.280000px;}
.ws3{word-spacing:-14.250000px;}
.wsf0{word-spacing:-14.160000px;}
.wsfd{word-spacing:-14.100000px;}
.wsc0{word-spacing:-14.040000px;}
.ws63{word-spacing:-13.932000px;}
.wsce{word-spacing:-13.920000px;}
.wsc9{word-spacing:-13.878000px;}
.wse4{word-spacing:-13.860000px;}
.wsc1{word-spacing:-13.824000px;}
.ws84{word-spacing:-13.740000px;}
.ws6d{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wscb{word-spacing:-13.446000px;}
.ws20{word-spacing:-13.176000px;}
.wsf6{word-spacing:-13.080000px;}
.ws99{word-spacing:-12.906000px;}
.wsf8{word-spacing:-12.825000px;}
.wsc8{word-spacing:-12.721500px;}
.wsca{word-spacing:-12.690000px;}
.wsc5{word-spacing:-12.573000px;}
.wsb7{word-spacing:-12.523500px;}
.wsbe{word-spacing:-12.375000px;}
.wsd1{word-spacing:-12.325500px;}
.ws1b{word-spacing:-12.276000px;}
.ws97{word-spacing:-12.078000px;}
.wsdf{word-spacing:-12.015000px;}
.ws16{word-spacing:-11.952000px;}
.wsd6{word-spacing:-11.781000px;}
.wse8{word-spacing:-11.745000px;}
.wse7{word-spacing:-11.610000px;}
.wsdc{word-spacing:-11.565000px;}
.wse6{word-spacing:-11.520000px;}
.wsea{word-spacing:-11.475000px;}
.wsd9{word-spacing:-11.430000px;}
.wsda{word-spacing:-11.385000px;}
.wsde{word-spacing:-11.295000px;}
.wse1{word-spacing:-11.250000px;}
.wse5{word-spacing:-11.205000px;}
.wsd4{word-spacing:-11.187000px;}
.wsec{word-spacing:-11.160000px;}
.wse2{word-spacing:-10.980000px;}
.wsee{word-spacing:-10.935000px;}
.wsfb{word-spacing:-10.890000px;}
.wsf2{word-spacing:-10.710000px;}
.wseb{word-spacing:-10.665000px;}
.wsfe{word-spacing:-10.575000px;}
.wsf1{word-spacing:-10.530000px;}
.wsef{word-spacing:-10.395000px;}
.wse3{word-spacing:-10.125000px;}
.wsfc{word-spacing:-9.945000px;}
.wsf7{word-spacing:-9.810000px;}
.ws26{word-spacing:-0.858000px;}
.ws41{word-spacing:-0.792000px;}
.ws29{word-spacing:-0.726000px;}
.ws43{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.684000px;}
.ws24{word-spacing:-0.660000px;}
.ws6a{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.627000px;}
.ws44{word-spacing:-0.600000px;}
.ws32{word-spacing:-0.594000px;}
.ws11{word-spacing:-0.570000px;}
.ws94{word-spacing:-0.540000px;}
.ws23{word-spacing:-0.528000px;}
.wsd{word-spacing:-0.513000px;}
.wsaa{word-spacing:-0.486000px;}
.ws5e{word-spacing:-0.480000px;}
.ws34{word-spacing:-0.462000px;}
.wsb0{word-spacing:-0.420000px;}
.ws25{word-spacing:-0.396000px;}
.ws2{word-spacing:-0.381000px;}
.ws38{word-spacing:-0.378000px;}
.ws5a{word-spacing:-0.360000px;}
.wsf{word-spacing:-0.342000px;}
.ws42{word-spacing:-0.330000px;}
.ws37{word-spacing:-0.324000px;}
.ws89{word-spacing:-0.300000px;}
.wsa0{word-spacing:-0.270000px;}
.ws30{word-spacing:-0.264000px;}
.ws46{word-spacing:-0.240000px;}
.ws72{word-spacing:-0.216000px;}
.ws4c{word-spacing:-0.198000px;}
.ws45{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.171000px;}
.wscc{word-spacing:-0.162000px;}
.ws92{word-spacing:-0.135000px;}
.ws2c{word-spacing:-0.132000px;}
.ws8e{word-spacing:-0.120000px;}
.wsa1{word-spacing:-0.108000px;}
.ws9a{word-spacing:-0.066000px;}
.ws78{word-spacing:-0.060000px;}
.wsa2{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.wsc3{word-spacing:0.054000px;}
.ws95{word-spacing:0.060000px;}
.ws48{word-spacing:0.066000px;}
.ws93{word-spacing:0.120000px;}
.ws3f{word-spacing:0.132000px;}
.wsc2{word-spacing:0.162000px;}
.wsd2{word-spacing:0.180000px;}
.ws4b{word-spacing:0.198000px;}
.wscd{word-spacing:0.216000px;}
.wsa{word-spacing:0.228000px;}
.ws9e{word-spacing:0.240000px;}
.ws7e{word-spacing:0.264000px;}
.ws9c{word-spacing:0.300000px;}
.ws28{word-spacing:0.330000px;}
.wsd0{word-spacing:0.360000px;}
.ws2d{word-spacing:0.396000px;}
.ws5d{word-spacing:0.420000px;}
.ws73{word-spacing:0.432000px;}
.ws2f{word-spacing:0.462000px;}
.ws88{word-spacing:0.480000px;}
.ws7{word-spacing:0.513000px;}
.ws31{word-spacing:0.528000px;}
.ws56{word-spacing:0.540000px;}
.ws64{word-spacing:0.594000px;}
.ws47{word-spacing:0.600000px;}
.ws6{word-spacing:0.627000px;}
.wsa9{word-spacing:0.643500px;}
.ws74{word-spacing:0.648000px;}
.ws27{word-spacing:0.660000px;}
.ws66{word-spacing:0.693000px;}
.ws36{word-spacing:0.702000px;}
.ws79{word-spacing:0.720000px;}
.ws2b{word-spacing:0.726000px;}
.ws9d{word-spacing:0.780000px;}
.ws33{word-spacing:0.792000px;}
.wsbc{word-spacing:0.810000px;}
.ws80{word-spacing:0.840000px;}
.ws2e{word-spacing:0.858000px;}
.ws39{word-spacing:0.864000px;}
.ws55{word-spacing:0.900000px;}
.ws67{word-spacing:0.918000px;}
.ws40{word-spacing:0.924000px;}
.ws5c{word-spacing:0.960000px;}
.wsb{word-spacing:0.969000px;}
.ws9f{word-spacing:0.972000px;}
.ws6f{word-spacing:0.990000px;}
.ws87{word-spacing:1.020000px;}
.wse{word-spacing:1.026000px;}
.ws59{word-spacing:1.056000px;}
.ws5b{word-spacing:1.080000px;}
.ws65{word-spacing:1.122000px;}
.ws71{word-spacing:1.134000px;}
.ws9b{word-spacing:1.140000px;}
.ws70{word-spacing:1.188000px;}
.ws10{word-spacing:1.197000px;}
.ws8d{word-spacing:1.200000px;}
.ws35{word-spacing:1.242000px;}
.ws12{word-spacing:1.254000px;}
.ws57{word-spacing:1.260000px;}
.ws68{word-spacing:1.296000px;}
.ws2a{word-spacing:1.320000px;}
.ws69{word-spacing:1.350000px;}
.wsc{word-spacing:1.368000px;}
.ws58{word-spacing:1.380000px;}
.ws22{word-spacing:1.386000px;}
.ws8{word-spacing:1.425000px;}
.ws54{word-spacing:1.440000px;}
.ws49{word-spacing:1.452000px;}
.ws86{word-spacing:1.500000px;}
.ws4a{word-spacing:1.518000px;}
.ws6e{word-spacing:1.584000px;}
.ws21{word-spacing:1.650000px;}
.wsff{word-spacing:2.400000px;}
.wsed{word-spacing:3.285000px;}
.ws75{word-spacing:3.618000px;}
.wsb1{word-spacing:4.020000px;}
.wsfa{word-spacing:4.155000px;}
.wsf5{word-spacing:4.470000px;}
.wse0{word-spacing:4.680000px;}
.wsdb{word-spacing:4.890000px;}
.wsc7{word-spacing:5.937000px;}
.wsbf{word-spacing:7.290000px;}
.ws81{word-spacing:7.524000px;}
.wsbb{word-spacing:7.854000px;}
.wsba{word-spacing:9.018000px;}
.ws82{word-spacing:9.240000px;}
.wsc4{word-spacing:16.500000px;}
.wsa7{word-spacing:24.024000px;}
.ws98{word-spacing:34.398000px;}
.ws6c{word-spacing:35.694000px;}
.ws15{word-spacing:35.904000px;}
.ws1f{word-spacing:36.018000px;}
._d{margin-left:-10.458000px;}
._7{margin-left:-8.448000px;}
._4{margin-left:-7.410000px;}
._b{margin-left:-6.138000px;}
._2{margin-left:-4.662000px;}
._1{margin-left:-3.363000px;}
._8{margin-left:-2.214000px;}
._0{margin-left:-1.152000px;}
._3{width:1.710000px;}
._e{width:3.828000px;}
._53{width:6.576000px;}
._10{width:15.078000px;}
._52{width:22.518000px;}
._f{width:24.024000px;}
._54{width:30.000000px;}
._51{width:40.524000px;}
._5{width:47.136000px;}
._a{width:48.150000px;}
._22{width:51.060000px;}
._3c{width:68.574000px;}
._13{width:69.693000px;}
._30{width:79.260000px;}
._16{width:87.234000px;}
._1b{width:93.720000px;}
._25{width:98.040000px;}
._18{width:101.160000px;}
._2c{width:103.500000px;}
._2d{width:108.420000px;}
._3e{width:109.740000px;}
._24{width:116.274000px;}
._26{width:121.080000px;}
._15{width:122.880000px;}
._4b{width:127.842000px;}
._39{width:129.450000px;}
._35{width:133.734000px;}
._4c{width:138.594000px;}
._31{width:143.220000px;}
._41{width:144.450000px;}
._12{width:149.694000px;}
._23{width:158.160000px;}
._33{width:163.632000px;}
._34{width:165.900000px;}
._3f{width:172.800000px;}
._1a{width:178.632000px;}
._49{width:181.890000px;}
._44{width:186.114000px;}
._2a{width:188.223000px;}
._20{width:191.400000px;}
._2b{width:194.760000px;}
._46{width:196.140000px;}
._17{width:198.774000px;}
._4a{width:206.640000px;}
._1c{width:208.020000px;}
._38{width:217.698000px;}
._40{width:228.480000px;}
._4f{width:233.400000px;}
._14{width:241.914000px;}
._28{width:245.160000px;}
._4e{width:246.300000px;}
._48{width:249.540000px;}
._1d{width:262.620000px;}
._1e{width:270.354000px;}
._19{width:274.140000px;}
._32{width:290.640000px;}
._45{width:300.720000px;}
._29{width:312.000000px;}
._11{width:326.160000px;}
._9{width:404.976000px;}
._36{width:416.580000px;}
._3a{width:431.580000px;}
._3d{width:519.120000px;}
._2f{width:572.460000px;}
._43{width:635.340000px;}
._47{width:695.880000px;}
._3b{width:765.660000px;}
._37{width:776.520000px;}
._42{width:1052.880000px;}
._1f{width:1056.660000px;}
._6{width:1085.712000px;}
._c{width:1086.774000px;}
._2e{width:1444.392000px;}
._4d{width:1497.900000px;}
._27{width:1845.834000px;}
._50{width:1877.532000px;}
._21{width:1954.140000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:40.110750px;}
.ye0{bottom:45.915000px;}
.y2a3{bottom:45.921000px;}
.y31a{bottom:45.975000px;}
.y1d0{bottom:46.458000px;}
.y1a4{bottom:47.160000px;}
.ybd{bottom:47.184000px;}
.y52{bottom:47.196000px;}
.y208{bottom:47.202000px;}
.y17d{bottom:47.208000px;}
.y220{bottom:47.214000px;}
.y36c{bottom:47.220000px;}
.y249{bottom:47.775000px;}
.y143{bottom:47.782500px;}
.y9d{bottom:47.835000px;}
.y162{bottom:47.917500px;}
.y7d{bottom:47.955000px;}
.y38f{bottom:48.060000px;}
.y2fa{bottom:48.525000px;}
.y123{bottom:48.555000px;}
.y351{bottom:48.577500px;}
.y3bc{bottom:49.065000px;}
.y25d{bottom:49.275000px;}
.y2c4{bottom:49.320000px;}
.y1ed{bottom:49.341000px;}
.yfc{bottom:49.429500px;}
.y113{bottom:49.572000px;}
.y37d{bottom:49.605000px;}
.y21{bottom:54.375000px;}
.y1c2{bottom:56.842500px;}
.ydf{bottom:60.171000px;}
.y2a2{bottom:60.177000px;}
.y1cf{bottom:60.714000px;}
.y23{bottom:61.115250px;}
.y1a3{bottom:61.416000px;}
.ybc{bottom:61.440000px;}
.y51{bottom:61.452000px;}
.y207{bottom:61.458000px;}
.y17c{bottom:61.464000px;}
.y21f{bottom:61.470000px;}
.y248{bottom:63.525000px;}
.y38e{bottom:63.810000px;}
.y2f9{bottom:64.275000px;}
.y3bb{bottom:64.815000px;}
.y142{bottom:65.025000px;}
.y9c{bottom:65.077500px;}
.y161{bottom:65.160000px;}
.y7c{bottom:65.197500px;}
.y122{bottom:65.797500px;}
.y350{bottom:65.820000px;}
.y2c3{bottom:66.562500px;}
.y1ec{bottom:66.583500px;}
.yfb{bottom:66.672000px;}
.y112{bottom:66.814500px;}
.y37c{bottom:66.847500px;}
.y20{bottom:69.380250px;}
.y1c1{bottom:72.142500px;}
.yde{bottom:74.427000px;}
.y2a1{bottom:74.433000px;}
.y1ce{bottom:74.970000px;}
.y1a2{bottom:75.672000px;}
.ybb{bottom:75.696000px;}
.y50{bottom:75.708000px;}
.y206{bottom:75.714000px;}
.y17b{bottom:75.720000px;}
.y247{bottom:79.275000px;}
.y2f8{bottom:80.025000px;}
.y3ba{bottom:80.565000px;}
.y38d{bottom:81.600000px;}
.y22{bottom:82.119750px;}
.y9b{bottom:82.320000px;}
.y160{bottom:82.402500px;}
.y7b{bottom:82.440000px;}
.y121{bottom:83.040000px;}
.y34f{bottom:83.062500px;}
.y2c2{bottom:83.805000px;}
.y1eb{bottom:83.826000px;}
.yfa{bottom:83.914500px;}
.y111{bottom:84.057000px;}
.y37b{bottom:84.090000px;}
.ydd{bottom:88.683000px;}
.y2a0{bottom:88.689000px;}
.y1a1{bottom:89.928000px;}
.yba{bottom:89.952000px;}
.y4f{bottom:89.964000px;}
.y205{bottom:89.970000px;}
.y1c0{bottom:91.192500px;}
.y319{bottom:94.282500px;}
.y25c{bottom:94.290000px;}
.y246{bottom:95.025000px;}
.y1f{bottom:97.125000px;}
.y38c{bottom:97.350000px;}
.y36b{bottom:98.025000px;}
.y3b9{bottom:98.370000px;}
.y141{bottom:99.525000px;}
.y9a{bottom:99.562500px;}
.y15f{bottom:99.645000px;}
.y7a{bottom:99.682500px;}
.y120{bottom:100.282500px;}
.y34e{bottom:100.305000px;}
.y2c1{bottom:101.047500px;}
.y1ea{bottom:101.068500px;}
.yf9{bottom:101.157000px;}
.y110{bottom:101.299500px;}
.y37a{bottom:101.332500px;}
.ydc{bottom:102.939000px;}
.y29f{bottom:102.945000px;}
.y1a0{bottom:104.184000px;}
.yb9{bottom:104.208000px;}
.y4e{bottom:104.220000px;}
.y1bf{bottom:106.492500px;}
.y21e{bottom:107.055000px;}
.y282{bottom:107.775000px;}
.y2f7{bottom:107.782500px;}
.y245{bottom:110.775000px;}
.y318{bottom:111.525000px;}
.y25b{bottom:111.532500px;}
.y36a{bottom:113.775000px;}
.y1cd{bottom:113.805000px;}
.y3b8{bottom:114.120000px;}
.y38b{bottom:115.140000px;}
.y140{bottom:115.275000px;}
.y99{bottom:116.805000px;}
.y15e{bottom:116.887500px;}
.y79{bottom:116.925000px;}
.ydb{bottom:117.195000px;}
.y29e{bottom:117.201000px;}
.y11f{bottom:117.525000px;}
.y34d{bottom:117.547500px;}
.y2c0{bottom:118.290000px;}
.y1e9{bottom:118.311000px;}
.yf8{bottom:118.399500px;}
.y19f{bottom:118.440000px;}
.yb8{bottom:118.464000px;}
.y10f{bottom:118.542000px;}
.y379{bottom:118.575000px;}
.y1be{bottom:121.792500px;}
.y25{bottom:122.010000px;}
.y17a{bottom:122.857500px;}
.y281{bottom:123.525000px;}
.y21d{bottom:124.297500px;}
.y2f6{bottom:125.025000px;}
.y244{bottom:126.525000px;}
.y25a{bottom:128.775000px;}
.y369{bottom:129.525000px;}
.y3b7{bottom:129.870000px;}
.y38a{bottom:130.890000px;}
.y13f{bottom:131.025000px;}
.y1cc{bottom:131.047500px;}
.yda{bottom:131.451000px;}
.y29d{bottom:131.457000px;}
.y19e{bottom:132.696000px;}
.yb7{bottom:132.720000px;}
.y98{bottom:134.047500px;}
.y15d{bottom:134.130000px;}
.y78{bottom:134.167500px;}
.y34c{bottom:134.790000px;}
.y2bf{bottom:135.532500px;}
.y1e8{bottom:135.553500px;}
.yf7{bottom:135.642000px;}
.y10e{bottom:135.784500px;}
.y378{bottom:135.817500px;}
.y280{bottom:139.275000px;}
.y179{bottom:140.100000px;}
.y4d{bottom:140.145000px;}
.y338{bottom:140.775000px;}
.y1bd{bottom:140.842500px;}
.y21c{bottom:141.540000px;}
.y204{bottom:142.369500px;}
.y368{bottom:145.275000px;}
.yd9{bottom:145.707000px;}
.y29c{bottom:145.713000px;}
.y317{bottom:146.025000px;}
.y13e{bottom:146.775000px;}
.y19d{bottom:146.952000px;}
.y3b6{bottom:147.660000px;}
.y1cb{bottom:148.290000px;}
.y389{bottom:148.680000px;}
.y97{bottom:151.290000px;}
.y15c{bottom:151.372500px;}
.y77{bottom:151.410000px;}
.y11e{bottom:152.025000px;}
.y34b{bottom:152.032500px;}
.y2be{bottom:152.775000px;}
.y1e7{bottom:152.796000px;}
.yf6{bottom:152.884500px;}
.y10d{bottom:153.027000px;}
.y377{bottom:153.060000px;}
.y27f{bottom:155.025000px;}
.y243{bottom:155.812500px;}
.y337{bottom:156.525000px;}
.y178{bottom:157.342500px;}
.y4c{bottom:157.387500px;}
.y2f5{bottom:158.775000px;}
.y21b{bottom:158.782500px;}
.y203{bottom:159.612000px;}
.y1bc{bottom:159.892500px;}
.yd8{bottom:159.963000px;}
.y29b{bottom:159.969000px;}
.y367{bottom:161.025000px;}
.y19c{bottom:161.208000px;}
.y316{bottom:161.775000px;}
.y13d{bottom:162.525000px;}
.y259{bottom:163.275000px;}
.y3b5{bottom:163.410000px;}
.y388{bottom:164.430000px;}
.y1ca{bottom:165.532500px;}
.y11d{bottom:167.775000px;}
.y96{bottom:168.532500px;}
.y76{bottom:168.652500px;}
.y34a{bottom:169.275000px;}
.y2bd{bottom:170.017500px;}
.yf5{bottom:170.127000px;}
.y10c{bottom:170.269500px;}
.y376{bottom:170.302500px;}
.y27e{bottom:170.775000px;}
.y1e{bottom:171.990000px;}
.y242{bottom:173.055000px;}
.yd7{bottom:174.219000px;}
.y29a{bottom:174.225000px;}
.y2f4{bottom:174.525000px;}
.y177{bottom:174.585000px;}
.y4b{bottom:174.630000px;}
.y1bb{bottom:175.192500px;}
.y19b{bottom:175.464000px;}
.y21a{bottom:176.025000px;}
.y366{bottom:176.775000px;}
.y202{bottom:176.854500px;}
.y315{bottom:177.525000px;}
.y13c{bottom:178.275000px;}
.y258{bottom:179.025000px;}
.y3b4{bottom:179.160000px;}
.y387{bottom:180.180000px;}
.y1c9{bottom:182.775000px;}
.y11c{bottom:183.525000px;}
.y95{bottom:185.775000px;}
.y336{bottom:185.805000px;}
.y15b{bottom:185.874000px;}
.y75{bottom:185.895000px;}
.y27d{bottom:186.525000px;}
.y2bc{bottom:187.260000px;}
.y1e6{bottom:187.297500px;}
.yb6{bottom:187.320000px;}
.yf4{bottom:187.369500px;}
.y10b{bottom:187.512000px;}
.y375{bottom:187.545000px;}
.yd6{bottom:188.475000px;}
.y19a{bottom:189.720000px;}
.y2f3{bottom:190.275000px;}
.y241{bottom:190.297500px;}
.y176{bottom:191.827500px;}
.y4a{bottom:191.872500px;}
.y365{bottom:192.525000px;}
.y314{bottom:193.275000px;}
.y13b{bottom:194.025000px;}
.y1ba{bottom:194.242500px;}
.y1d{bottom:194.446500px;}
.y257{bottom:194.775000px;}
.y386{bottom:195.930000px;}
.y3b3{bottom:196.950000px;}
.y11b{bottom:199.275000px;}
.y27c{bottom:202.275000px;}
.y335{bottom:203.047500px;}
.y15a{bottom:203.116500px;}
.y74{bottom:203.137500px;}
.y349{bottom:203.775000px;}
.y2bb{bottom:204.502500px;}
.y1e5{bottom:204.540000px;}
.yb5{bottom:204.562500px;}
.yf3{bottom:204.612000px;}
.y10a{bottom:204.754500px;}
.y374{bottom:204.787500px;}
.y2f2{bottom:206.025000px;}
.y240{bottom:207.540000px;}
.y364{bottom:208.275000px;}
.y313{bottom:209.025000px;}
.y175{bottom:209.070000px;}
.y49{bottom:209.115000px;}
.y1c{bottom:209.451750px;}
.y1b9{bottom:209.542500px;}
.y13a{bottom:209.775000px;}
.y219{bottom:210.525000px;}
.y201{bottom:211.356000px;}
.y385{bottom:211.680000px;}
.y3b2{bottom:212.700000px;}
.y299{bottom:214.275000px;}
.y11a{bottom:215.025000px;}
.y1c8{bottom:217.275000px;}
.y348{bottom:219.525000px;}
.y94{bottom:220.275000px;}
.y334{bottom:220.290000px;}
.y159{bottom:220.359000px;}
.y73{bottom:220.380000px;}
.y2ba{bottom:221.745000px;}
.y2f1{bottom:221.775000px;}
.y1e4{bottom:221.782500px;}
.yb4{bottom:221.805000px;}
.yf2{bottom:221.854500px;}
.y109{bottom:221.997000px;}
.y373{bottom:222.030000px;}
.y1b{bottom:224.457000px;}
.y312{bottom:224.775000px;}
.y23f{bottom:224.782500px;}
.y139{bottom:225.525000px;}
.y218{bottom:226.275000px;}
.y174{bottom:226.312500px;}
.y48{bottom:226.357500px;}
.y3b1{bottom:228.450000px;}
.y1b8{bottom:228.592500px;}
.y200{bottom:228.598500px;}
.y384{bottom:229.470000px;}
.y298{bottom:230.025000px;}
.y27b{bottom:230.077500px;}
.y119{bottom:230.775000px;}
.y1c7{bottom:233.025000px;}
.y347{bottom:235.275000px;}
.y93{bottom:236.025000px;}
.y2f0{bottom:237.525000px;}
.y333{bottom:237.532500px;}
.y363{bottom:237.547500px;}
.y158{bottom:237.601500px;}
.y72{bottom:237.622500px;}
.y2b9{bottom:238.987500px;}
.y1e3{bottom:239.025000px;}
.y199{bottom:239.032500px;}
.yb3{bottom:239.047500px;}
.yf1{bottom:239.097000px;}
.yd5{bottom:239.100000px;}
.y108{bottom:239.239500px;}
.y372{bottom:239.272500px;}
.y1a{bottom:239.462250px;}
.y311{bottom:240.525000px;}
.y138{bottom:241.275000px;}
.y217{bottom:242.025000px;}
.y173{bottom:243.555000px;}
.y47{bottom:243.600000px;}
.y1b7{bottom:243.892500px;}
.y383{bottom:245.220000px;}
.y297{bottom:245.775000px;}
.y1ff{bottom:245.841000px;}
.y3b0{bottom:246.240000px;}
.y118{bottom:246.525000px;}
.y27a{bottom:247.320000px;}
.y1c6{bottom:248.775000px;}
.y92{bottom:251.775000px;}
.y19{bottom:254.467500px;}
.y332{bottom:254.775000px;}
.y362{bottom:254.790000px;}
.y157{bottom:254.844000px;}
.y71{bottom:254.865000px;}
.y2b8{bottom:256.230000px;}
.y310{bottom:256.275000px;}
.yb2{bottom:256.290000px;}
.y198{bottom:256.305000px;}
.yf0{bottom:256.339500px;}
.yd4{bottom:256.342500px;}
.y107{bottom:256.482000px;}
.y371{bottom:256.515000px;}
.y137{bottom:257.025000px;}
.y216{bottom:257.775000px;}
.y1b6{bottom:259.192500px;}
.y172{bottom:260.797500px;}
.y46{bottom:260.842500px;}
.y382{bottom:260.970000px;}
.y117{bottom:262.275000px;}
.y1fe{bottom:263.083500px;}
.y3af{bottom:264.030000px;}
.y1c5{bottom:264.525000px;}
.y279{bottom:264.562500px;}
.y2ef{bottom:265.282500px;}
.y91{bottom:267.525000px;}
.y18{bottom:269.472750px;}
.y30f{bottom:272.025000px;}
.y361{bottom:272.032500px;}
.y156{bottom:272.086500px;}
.y70{bottom:272.107500px;}
.y136{bottom:272.775000px;}
.y2b7{bottom:273.472500px;}
.y1e2{bottom:273.525000px;}
.yb1{bottom:273.532500px;}
.y197{bottom:273.547500px;}
.yef{bottom:273.582000px;}
.yd3{bottom:273.585000px;}
.y106{bottom:273.724500px;}
.y370{bottom:273.757500px;}
.y1b5{bottom:274.492500px;}
.y23e{bottom:276.525000px;}
.y381{bottom:276.720000px;}
.y116{bottom:278.025000px;}
.y171{bottom:278.040000px;}
.y45{bottom:278.085000px;}
.y296{bottom:278.820000px;}
.y3ae{bottom:279.780000px;}
.y1c4{bottom:280.275000px;}
.y1fd{bottom:280.326000px;}
.y278{bottom:281.805000px;}
.y2ee{bottom:282.525000px;}
.y90{bottom:283.275000px;}
.y17{bottom:284.478000px;}
.y30e{bottom:287.775000px;}
.y135{bottom:288.525000px;}
.y1e1{bottom:289.275000px;}
.y155{bottom:289.329000px;}
.y6f{bottom:289.350000px;}
.y1b4{bottom:289.792500px;}
.y2b6{bottom:290.715000px;}
.y196{bottom:290.790000px;}
.y2e0{bottom:290.805000px;}
.yee{bottom:290.824500px;}
.yd2{bottom:290.827500px;}
.y105{bottom:290.967000px;}
.yb0{bottom:291.000000px;}
.y23d{bottom:292.275000px;}
.y115{bottom:293.775000px;}
.y380{bottom:294.525000px;}
.y170{bottom:295.282500px;}
.y44{bottom:295.327500px;}
.y1c3{bottom:296.025000px;}
.y295{bottom:296.062500px;}
.y1fc{bottom:297.568500px;}
.y3ad{bottom:297.570000px;}
.y8f{bottom:299.025000px;}
.y277{bottom:299.047500px;}
.y16{bottom:299.483250px;}
.y30d{bottom:303.525000px;}
.y134{bottom:304.275000px;}
.y1e0{bottom:305.025000px;}
.y154{bottom:306.571500px;}
.y6e{bottom:306.592500px;}
.y2b5{bottom:307.957500px;}
.y23c{bottom:308.025000px;}
.y195{bottom:308.032500px;}
.y2df{bottom:308.047500px;}
.yed{bottom:308.067000px;}
.yd1{bottom:308.070000px;}
.y104{bottom:308.209500px;}
.yaf{bottom:308.242500px;}
.y1b3{bottom:308.842500px;}
.y114{bottom:309.525000px;}
.y37f{bottom:310.275000px;}
.y16f{bottom:312.525000px;}
.y43{bottom:312.570000px;}
.y294{bottom:313.305000px;}
.y3ac{bottom:313.320000px;}
.y15{bottom:314.488500px;}
.y8e{bottom:314.775000px;}
.y1fb{bottom:314.811000px;}
.y276{bottom:316.290000px;}
.y2ed{bottom:317.025000px;}
.y30c{bottom:319.275000px;}
.y133{bottom:320.025000px;}
.y1df{bottom:320.775000px;}
.y23b{bottom:323.775000px;}
.y153{bottom:323.814000px;}
.y6d{bottom:323.835000px;}
.y1b2{bottom:324.142500px;}
.y2b4{bottom:325.200000px;}
.y2de{bottom:325.290000px;}
.yd0{bottom:325.312500px;}
.y194{bottom:325.354500px;}
.y103{bottom:325.452000px;}
.yae{bottom:325.485000px;}
.y3ab{bottom:329.070000px;}
.y14{bottom:329.493750px;}
.y42{bottom:329.812500px;}
.y346{bottom:330.525000px;}
.y293{bottom:330.547500px;}
.y1fa{bottom:332.053500px;}
.y215{bottom:332.775000px;}
.y275{bottom:333.532500px;}
.yec{bottom:333.939000px;}
.y30b{bottom:335.025000px;}
.y132{bottom:335.775000px;}
.y37e{bottom:335.962500px;}
.y1de{bottom:336.525000px;}
.y23a{bottom:339.525000px;}
.y152{bottom:341.056500px;}
.y6c{bottom:341.077500px;}
.y2b3{bottom:342.442500px;}
.y2dd{bottom:342.532500px;}
.y8d{bottom:342.555000px;}
.y193{bottom:342.597000px;}
.y102{bottom:342.694500px;}
.yad{bottom:342.727500px;}
.y1b1{bottom:343.192500px;}
.y3d7{bottom:345.165000px;}
.y345{bottom:346.275000px;}
.y3aa{bottom:346.860000px;}
.y16e{bottom:347.025000px;}
.y41{bottom:347.055000px;}
.y292{bottom:347.790000px;}
.y214{bottom:348.525000px;}
.y1f9{bottom:349.296000px;}
.y274{bottom:350.775000px;}
.y1dd{bottom:352.275000px;}
.y239{bottom:355.275000px;}
.y151{bottom:358.299000px;}
.y6b{bottom:358.320000px;}
.y1b0{bottom:358.492500px;}
.y13{bottom:359.490000px;}
.y2b2{bottom:359.685000px;}
.y8c{bottom:359.797500px;}
.y192{bottom:359.839500px;}
.y101{bottom:359.937000px;}
.y2dc{bottom:359.955000px;}
.yac{bottom:359.970000px;}
.y3d6{bottom:360.915000px;}
.y344{bottom:362.025000px;}
.y3a9{bottom:362.610000px;}
.y16d{bottom:362.775000px;}
.y131{bottom:363.666000px;}
.y213{bottom:364.275000px;}
.y40{bottom:364.297500px;}
.y291{bottom:365.032500px;}
.y30a{bottom:366.525000px;}
.y1f8{bottom:366.538500px;}
.y1dc{bottom:368.025000px;}
.y238{bottom:371.025000px;}
.y1af{bottom:373.792500px;}
.y150{bottom:375.541500px;}
.y6a{bottom:375.562500px;}
.y3d5{bottom:376.665000px;}
.y2b1{bottom:376.927500px;}
.y8b{bottom:377.040000px;}
.yeb{bottom:377.070000px;}
.y191{bottom:377.082000px;}
.y36f{bottom:377.179500px;}
.y2db{bottom:377.197500px;}
.yab{bottom:377.212500px;}
.y343{bottom:377.775000px;}
.y3a8{bottom:378.360000px;}
.y16c{bottom:378.525000px;}
.y212{bottom:380.025000px;}
.y130{bottom:380.908500px;}
.y3f{bottom:381.540000px;}
.y256{bottom:381.547500px;}
.y290{bottom:382.275000px;}
.y331{bottom:383.775000px;}
.y273{bottom:385.275000px;}
.y237{bottom:386.775000px;}
.y1ae{bottom:389.092500px;}
.y69{bottom:392.805000px;}
.y3a7{bottom:394.110000px;}
.y16b{bottom:394.275000px;}
.y8a{bottom:394.282500px;}
.yea{bottom:394.312500px;}
.y190{bottom:394.324500px;}
.y36e{bottom:394.422000px;}
.y100{bottom:394.438500px;}
.y2da{bottom:394.440000px;}
.yaa{bottom:394.455000px;}
.y12{bottom:395.445750px;}
.y211{bottom:395.775000px;}
.y309{bottom:398.025000px;}
.y12f{bottom:398.151000px;}
.y3e{bottom:398.782500px;}
.y255{bottom:398.790000px;}
.y330{bottom:399.525000px;}
.y272{bottom:401.025000px;}
.y1f7{bottom:401.040000px;}
.y1db{bottom:401.107500px;}
.y236{bottom:402.525000px;}
.y1ad{bottom:404.392500px;}
.y342{bottom:407.025000px;}
.y3d4{bottom:409.860000px;}
.y16a{bottom:410.025000px;}
.y14f{bottom:410.043000px;}
.y68{bottom:410.047500px;}
.y2b0{bottom:411.181500px;}
.y89{bottom:411.525000px;}
.ye9{bottom:411.555000px;}
.y18f{bottom:411.567000px;}
.ycf{bottom:411.664500px;}
.yff{bottom:411.681000px;}
.y2d9{bottom:411.682500px;}
.ya9{bottom:411.697500px;}
.y3a6{bottom:411.900000px;}
.y3d{bottom:416.025000px;}
.y254{bottom:416.032500px;}
.y271{bottom:416.775000px;}
.y11{bottom:417.946500px;}
.y235{bottom:418.275000px;}
.y1f6{bottom:418.282500px;}
.y1da{bottom:418.350000px;}
.y341{bottom:422.775000px;}
.y1ac{bottom:423.442500px;}
.y32f{bottom:424.275000px;}
.y169{bottom:425.775000px;}
.y210{bottom:427.275000px;}
.y14e{bottom:427.285500px;}
.y67{bottom:427.290000px;}
.y3d3{bottom:427.305000px;}
.y308{bottom:427.320000px;}
.y2af{bottom:428.424000px;}
.ye8{bottom:428.797500px;}
.y18e{bottom:428.809500px;}
.yce{bottom:428.907000px;}
.yfe{bottom:428.923500px;}
.y2d8{bottom:428.925000px;}
.ya8{bottom:428.940000px;}
.y3a5{bottom:429.690000px;}
.y270{bottom:432.525000px;}
.y12e{bottom:432.652500px;}
.y10{bottom:432.951750px;}
.y3c{bottom:433.267500px;}
.y253{bottom:433.275000px;}
.y234{bottom:434.025000px;}
.y1f5{bottom:435.525000px;}
.y1d9{bottom:435.592500px;}
.y340{bottom:438.525000px;}
.y1ab{bottom:438.742500px;}
.y32e{bottom:440.025000px;}
.y168{bottom:441.525000px;}
.y20f{bottom:443.025000px;}
.y14d{bottom:444.528000px;}
.y66{bottom:444.532500px;}
.y307{bottom:444.562500px;}
.y3d2{bottom:444.765000px;}
.y3a4{bottom:445.440000px;}
.y88{bottom:446.025000px;}
.ye7{bottom:446.040000px;}
.ycd{bottom:446.149500px;}
.yfd{bottom:446.166000px;}
.y2d7{bottom:446.167500px;}
.ya7{bottom:446.182500px;}
.yf{bottom:447.957000px;}
.y26f{bottom:448.275000px;}
.y233{bottom:449.775000px;}
.y12d{bottom:449.895000px;}
.y3b{bottom:450.532500px;}
.y1d8{bottom:452.835000px;}
.y33f{bottom:454.275000px;}
.y18d{bottom:454.681500px;}
.y32d{bottom:455.775000px;}
.y167{bottom:457.275000px;}
.y1aa{bottom:457.792500px;}
.y20e{bottom:458.775000px;}
.y3d1{bottom:460.515000px;}
.y65{bottom:461.775000px;}
.y306{bottom:461.805000px;}
.ye{bottom:462.962250px;}
.y3a3{bottom:463.230000px;}
.ye6{bottom:463.282500px;}
.y360{bottom:463.387500px;}
.ycc{bottom:463.392000px;}
.y2d6{bottom:463.410000px;}
.ya6{bottom:463.425000px;}
.y26e{bottom:464.025000px;}
.y28f{bottom:464.032500px;}
.y232{bottom:465.525000px;}
.y12c{bottom:467.137500px;}
.y3a{bottom:467.775000px;}
.y1f4{bottom:470.025000px;}
.y1d7{bottom:470.077500px;}
.y14c{bottom:470.400000px;}
.y2ec{bottom:470.782500px;}
.y32c{bottom:471.525000px;}
.y2ae{bottom:471.555000px;}
.y166{bottom:473.025000px;}
.y1a9{bottom:473.092500px;}
.y20d{bottom:474.525000px;}
.y87{bottom:477.525000px;}
.y3d0{bottom:477.960000px;}
.yd{bottom:477.967500px;}
.y3a2{bottom:478.980000px;}
.y305{bottom:479.047500px;}
.y26d{bottom:479.775000px;}
.ye5{bottom:480.525000px;}
.y35f{bottom:480.630000px;}
.ycb{bottom:480.634500px;}
.y2d5{bottom:480.652500px;}
.ya5{bottom:480.667500px;}
.y231{bottom:481.275000px;}
.y28e{bottom:481.320000px;}
.y252{bottom:483.525000px;}
.y12b{bottom:484.380000px;}
.y39{bottom:485.017500px;}
.y1f3{bottom:485.775000px;}
.y32b{bottom:487.275000px;}
.y1d6{bottom:487.320000px;}
.y2eb{bottom:488.025000px;}
.y1a8{bottom:488.392500px;}
.y165{bottom:488.775000px;}
.y2ad{bottom:488.797500px;}
.y36d{bottom:489.264000px;}
.y20c{bottom:490.275000px;}
.yc{bottom:492.972750px;}
.y86{bottom:493.275000px;}
.y3cf{bottom:493.710000px;}
.y3a1{bottom:494.730000px;}
.y26c{bottom:495.525000px;}
.y64{bottom:496.275000px;}
.y304{bottom:496.290000px;}
.y18c{bottom:497.812500px;}
.y35e{bottom:497.872500px;}
.yca{bottom:497.877000px;}
.y2d4{bottom:497.895000px;}
.ya4{bottom:497.910000px;}
.y28d{bottom:498.562500px;}
.y251{bottom:499.275000px;}
.y1f2{bottom:501.525000px;}
.y12a{bottom:501.622500px;}
.y38{bottom:502.381500px;}
.y32a{bottom:503.025000px;}
.y164{bottom:504.525000px;}
.y1d5{bottom:504.562500px;}
.y20b{bottom:506.025000px;}
.y2ac{bottom:506.040000px;}
.yb{bottom:507.978000px;}
.y85{bottom:509.025000px;}
.y1a7{bottom:509.692500px;}
.y3ce{bottom:511.155000px;}
.y26b{bottom:511.275000px;}
.y63{bottom:512.025000px;}
.y230{bottom:512.107500px;}
.y3a0{bottom:512.520000px;}
.y14b{bottom:513.525000px;}
.y303{bottom:513.532500px;}
.ye4{bottom:515.025000px;}
.y18b{bottom:515.055000px;}
.y35d{bottom:515.115000px;}
.yc9{bottom:515.119500px;}
.y2d3{bottom:515.137500px;}
.ya3{bottom:515.152500px;}
.y28c{bottom:515.805000px;}
.y33e{bottom:517.275000px;}
.y129{bottom:518.865000px;}
.y37{bottom:519.624000px;}
.y163{bottom:520.275000px;}
.y20a{bottom:521.775000px;}
.y1d4{bottom:521.805000px;}
.ya{bottom:522.983250px;}
.y2ab{bottom:523.282500px;}
.y84{bottom:524.775000px;}
.y3cd{bottom:526.905000px;}
.y26a{bottom:527.025000px;}
.y62{bottom:527.775000px;}
.y39f{bottom:528.270000px;}
.y14a{bottom:529.275000px;}
.y22f{bottom:529.350000px;}
.ye3{bottom:530.775000px;}
.y1a6{bottom:531.442500px;}
.y1f1{bottom:532.282500px;}
.y18a{bottom:532.297500px;}
.y329{bottom:532.312500px;}
.y35c{bottom:532.357500px;}
.yc8{bottom:532.362000px;}
.y2d2{bottom:532.380000px;}
.ya2{bottom:532.395000px;}
.y33d{bottom:533.025000px;}
.y28b{bottom:533.047500px;}
.y128{bottom:536.107500px;}
.y36{bottom:536.866500px;}
.y209{bottom:537.525000px;}
.y9{bottom:537.988500px;}
.y1d3{bottom:539.047500px;}
.y2aa{bottom:540.525000px;}
.y1a5{bottom:540.585000px;}
.y61{bottom:543.525000px;}
.y3cc{bottom:544.365000px;}
.y149{bottom:545.025000px;}
.y39e{bottom:546.060000px;}
.y83{bottom:546.525000px;}
.y22e{bottom:546.592500px;}
.y189{bottom:549.540000px;}
.y328{bottom:549.555000px;}
.y35b{bottom:549.600000px;}
.yc7{bottom:549.604500px;}
.y1f0{bottom:549.621000px;}
.y2d1{bottom:549.622500px;}
.ya1{bottom:549.637500px;}
.y28a{bottom:550.290000px;}
.y8{bottom:552.993750px;}
.y2ea{bottom:553.275000px;}
.y127{bottom:553.350000px;}
.y35{bottom:554.109000px;}
.y1d2{bottom:556.290000px;}
.y60{bottom:559.275000px;}
.y269{bottom:560.070000px;}
.y3cb{bottom:560.115000px;}
.y148{bottom:560.775000px;}
.y82{bottom:562.275000px;}
.y33c{bottom:563.055000px;}
.y22d{bottom:563.835000px;}
.y39d{bottom:563.850000px;}
.y302{bottom:565.275000px;}
.y188{bottom:566.782500px;}
.y327{bottom:566.797500px;}
.y35a{bottom:566.842500px;}
.yc6{bottom:566.847000px;}
.y1ef{bottom:566.863500px;}
.y2d0{bottom:566.865000px;}
.ya0{bottom:566.880000px;}
.y289{bottom:567.532500px;}
.y2e9{bottom:569.025000px;}
.y126{bottom:570.592500px;}
.y34{bottom:571.351500px;}
.y1d1{bottom:573.532500px;}
.y5f{bottom:575.025000px;}
.y3ca{bottom:575.865000px;}
.y147{bottom:576.525000px;}
.y268{bottom:577.312500px;}
.y81{bottom:578.025000px;}
.y39c{bottom:579.600000px;}
.y33b{bottom:580.297500px;}
.y301{bottom:581.025000px;}
.y22c{bottom:581.077500px;}
.y7{bottom:582.990000px;}
.y187{bottom:584.025000px;}
.y326{bottom:584.040000px;}
.y359{bottom:584.085000px;}
.yc5{bottom:584.089500px;}
.y1ee{bottom:584.106000px;}
.y2cf{bottom:584.107500px;}
.y9f{bottom:584.122500px;}
.y288{bottom:584.775000px;}
.y33{bottom:588.594000px;}
.y5e{bottom:590.775000px;}
.y146{bottom:592.275000px;}
.y3c9{bottom:593.310000px;}
.y80{bottom:593.775000px;}
.y267{bottom:594.555000px;}
.y39b{bottom:595.350000px;}
.y300{bottom:596.775000px;}
.y33a{bottom:597.540000px;}
.y22b{bottom:598.320000px;}
.y2e8{bottom:600.525000px;}
.y325{bottom:601.282500px;}
.y358{bottom:601.327500px;}
.yc4{bottom:601.332000px;}
.y125{bottom:601.348500px;}
.y2ce{bottom:601.350000px;}
.y9e{bottom:601.365000px;}
.y32{bottom:605.836500px;}
.y2a9{bottom:606.525000px;}
.y145{bottom:608.025000px;}
.y7f{bottom:609.525000px;}
.y3c8{bottom:610.770000px;}
.y266{bottom:611.797500px;}
.y2ff{bottom:612.525000px;}
.y39a{bottom:613.140000px;}
.y339{bottom:614.782500px;}
.y22a{bottom:615.562500px;}
.y2e7{bottom:616.275000px;}
.y186{bottom:618.525000px;}
.y357{bottom:618.570000px;}
.y124{bottom:618.591000px;}
.y2cd{bottom:618.592500px;}
.y324{bottom:618.600000px;}
.y5d{bottom:618.607500px;}
.y287{bottom:619.275000px;}
.y2a8{bottom:622.275000px;}
.y31{bottom:623.079000px;}
.y144{bottom:623.775000px;}
.y7e{bottom:625.275000px;}
.y3c7{bottom:626.520000px;}
.y2fe{bottom:628.275000px;}
.y399{bottom:628.890000px;}
.y265{bottom:629.040000px;}
.y2e6{bottom:632.025000px;}
.y229{bottom:632.805000px;}
.y185{bottom:634.275000px;}
.y286{bottom:635.025000px;}
.y356{bottom:635.812500px;}
.yc3{bottom:635.833500px;}
.y2cc{bottom:635.835000px;}
.y323{bottom:635.842500px;}
.y5c{bottom:635.850000px;}
.y30{bottom:640.321500px;}
.ye2{bottom:641.025000px;}
.y3c6{bottom:643.965000px;}
.y2fd{bottom:644.025000px;}
.y398{bottom:644.640000px;}
.y264{bottom:646.282500px;}
.y2e5{bottom:647.775000px;}
.y184{bottom:650.025000px;}
.y228{bottom:650.047500px;}
.y285{bottom:650.775000px;}
.y2a7{bottom:651.540000px;}
.y355{bottom:653.055000px;}
.yc2{bottom:653.076000px;}
.y2cb{bottom:653.077500px;}
.y322{bottom:653.085000px;}
.y5b{bottom:653.092500px;}
.y250{bottom:654.570000px;}
.ye1{bottom:656.775000px;}
.y2f{bottom:657.564000px;}
.y3c5{bottom:659.715000px;}
.y2fc{bottom:659.775000px;}
.y397{bottom:660.390000px;}
.y263{bottom:663.525000px;}
.y183{bottom:665.775000px;}
.y284{bottom:666.525000px;}
.y227{bottom:667.290000px;}
.y2a6{bottom:668.782500px;}
.y354{bottom:670.297500px;}
.yc1{bottom:670.318500px;}
.y2ca{bottom:670.320000px;}
.y321{bottom:670.327500px;}
.y5a{bottom:670.335000px;}
.y24f{bottom:671.812500px;}
.y2e{bottom:674.806500px;}
.y3c4{bottom:675.465000px;}
.y2fb{bottom:675.525000px;}
.y2e4{bottom:675.547500px;}
.y396{bottom:678.180000px;}
.y182{bottom:681.525000px;}
.y283{bottom:682.275000px;}
.y6{bottom:683.208000px;}
.y226{bottom:684.532500px;}
.y2a5{bottom:686.025000px;}
.y353{bottom:687.540000px;}
.yc0{bottom:687.561000px;}
.y2c9{bottom:687.562500px;}
.y320{bottom:687.570000px;}
.y59{bottom:687.577500px;}
.y24e{bottom:689.055000px;}
.y2d{bottom:692.049000px;}
.y2e3{bottom:692.790000px;}
.y3c3{bottom:692.910000px;}
.y395{bottom:693.930000px;}
.y181{bottom:697.275000px;}
.y262{bottom:698.025000px;}
.y5{bottom:698.206500px;}
.y225{bottom:701.775000px;}
.y352{bottom:704.782500px;}
.ybf{bottom:704.803500px;}
.y2c8{bottom:704.805000px;}
.y31f{bottom:704.812500px;}
.y58{bottom:704.820000px;}
.y24d{bottom:706.297500px;}
.y3c2{bottom:708.660000px;}
.y2c{bottom:709.291500px;}
.y2e2{bottom:710.032500px;}
.y394{bottom:711.720000px;}
.y180{bottom:713.025000px;}
.y4{bottom:713.205000px;}
.y261{bottom:713.775000px;}
.y2a4{bottom:720.525000px;}
.ybe{bottom:722.046000px;}
.y2c7{bottom:722.047500px;}
.y31e{bottom:722.055000px;}
.y57{bottom:722.062500px;}
.y24c{bottom:723.540000px;}
.y3c1{bottom:724.410000px;}
.y2b{bottom:726.534000px;}
.y2e1{bottom:727.275000px;}
.y393{bottom:727.470000px;}
.y17f{bottom:728.775000px;}
.y260{bottom:729.525000px;}
.y3{bottom:731.955000px;}
.y224{bottom:736.275000px;}
.y2c6{bottom:739.290000px;}
.y31d{bottom:739.297500px;}
.y56{bottom:739.305000px;}
.y24b{bottom:740.782500px;}
.y3c0{bottom:741.870000px;}
.y392{bottom:743.220000px;}
.y2a{bottom:743.776500px;}
.y17e{bottom:744.525000px;}
.y25f{bottom:745.275000px;}
.y223{bottom:752.025000px;}
.y2c5{bottom:756.532500px;}
.y31c{bottom:756.540000px;}
.y55{bottom:756.547500px;}
.y3bf{bottom:757.620000px;}
.y24a{bottom:758.025000px;}
.y391{bottom:758.970000px;}
.y29{bottom:761.019000px;}
.y25e{bottom:761.025000px;}
.y31b{bottom:773.782500px;}
.y54{bottom:773.790000px;}
.y390{bottom:774.720000px;}
.y3be{bottom:775.065000px;}
.y222{bottom:776.775000px;}
.y2{bottom:776.955000px;}
.y28{bottom:778.261500px;}
.y3bd{bottom:790.815000px;}
.y53{bottom:791.032500px;}
.y221{bottom:792.525000px;}
.y1{bottom:800.955000px;}
.y27{bottom:808.275000px;}
.y26{bottom:855.105000px;}
.h6{height:51.216000px;}
.h3{height:57.618000px;}
.h9{height:58.536000px;}
.h4{height:60.819000px;}
.h5{height:61.788000px;}
.ha{height:64.020000px;}
.hc{height:65.040000px;}
.h7{height:70.422000px;}
.h8{height:71.058000px;}
.hb{height:71.544000px;}
.h2{height:76.824000px;}
.h1{height:102.432000px;}
.hd{height:595.500000px;}
.h0{height:922.500000px;}
.w0{width:595.500000px;}
.w1{width:922.500000px;}
.x0{left:0.000000px;}
.x10{left:37.675500px;}
.x1{left:53.700000px;}
.x8{left:54.915000px;}
.x15{left:70.524000px;}
.x2{left:73.425000px;}
.xa{left:76.200000px;}
.x9{left:77.404500px;}
.x3{left:88.444500px;}
.xb{left:98.700000px;}
.xc{left:99.915000px;}
.x4{left:112.584000px;}
.xd{left:121.200000px;}
.xe{left:122.415000px;}
.x11{left:180.100500px;}
.x6{left:276.540000px;}
.x5{left:310.203000px;}
.x13{left:360.760500px;}
.x7{left:412.515000px;}
.x12{left:505.330500px;}
.x14{left:600.100500px;}
.xf{left:855.105000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.333333pt;}
.v1{vertical-align:14.586667pt;}
.ls9f{letter-spacing:-1.706667pt;}
.ls2e{letter-spacing:-1.466667pt;}
.ls48{letter-spacing:-1.408000pt;}
.ls52{letter-spacing:-1.349333pt;}
.ls89{letter-spacing:-1.333333pt;}
.ls19{letter-spacing:-1.290667pt;}
.ls9e{letter-spacing:-1.280000pt;}
.ls1f{letter-spacing:-1.232000pt;}
.ls50{letter-spacing:-1.226667pt;}
.ls39{letter-spacing:-1.173333pt;}
.lsa0{letter-spacing:-1.160000pt;}
.ls58{letter-spacing:-1.120000pt;}
.ls54{letter-spacing:-1.114667pt;}
.ls8b{letter-spacing:-1.066667pt;}
.ls49{letter-spacing:-1.056000pt;}
.ls94{letter-spacing:-1.013333pt;}
.ls93{letter-spacing:-1.000000pt;}
.ls53{letter-spacing:-0.997333pt;}
.ls87{letter-spacing:-0.960000pt;}
.ls3b{letter-spacing:-0.938667pt;}
.ls65{letter-spacing:-0.906667pt;}
.ls2f{letter-spacing:-0.880000pt;}
.ls7{letter-spacing:-0.861333pt;}
.ls64{letter-spacing:-0.853333pt;}
.ls30{letter-spacing:-0.821333pt;}
.ls5c{letter-spacing:-0.800000pt;}
.ls86{letter-spacing:-0.768000pt;}
.ls38{letter-spacing:-0.762667pt;}
.ls99{letter-spacing:-0.760000pt;}
.ls6b{letter-spacing:-0.746667pt;}
.ls85{letter-spacing:-0.720000pt;}
.ls44{letter-spacing:-0.704000pt;}
.ls5b{letter-spacing:-0.693333pt;}
.ls1c{letter-spacing:-0.645333pt;}
.ls72{letter-spacing:-0.640000pt;}
.lsa1{letter-spacing:-0.600000pt;}
.ls28{letter-spacing:-0.586667pt;}
.ls2c{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.528000pt;}
.ls96{letter-spacing:-0.520000pt;}
.lsb{letter-spacing:-0.506667pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.469333pt;}
.ls7f{letter-spacing:-0.432000pt;}
.ls6c{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.410667pt;}
.ls3a{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.354667pt;}
.ls20{letter-spacing:-0.352000pt;}
.ls68{letter-spacing:-0.336000pt;}
.ls3c{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.293333pt;}
.ls21{letter-spacing:-0.288000pt;}
.ls98{letter-spacing:-0.280000pt;}
.ls3d{letter-spacing:-0.266667pt;}
.ls66{letter-spacing:-0.264000pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls1a{letter-spacing:-0.234667pt;}
.ls56{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.202667pt;}
.ls16{letter-spacing:-0.176000pt;}
.ls5a{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.152000pt;}
.ls70{letter-spacing:-0.144000pt;}
.ls1b{letter-spacing:-0.117333pt;}
.ls2b{letter-spacing:-0.106667pt;}
.ls84{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.088000pt;}
.ls97{letter-spacing:-0.080000pt;}
.ls18{letter-spacing:-0.058667pt;}
.ls2a{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:-0.050667pt;}
.ls5f{letter-spacing:-0.048000pt;}
.ls8a{letter-spacing:-0.044000pt;}
.ls14{letter-spacing:-0.042667pt;}
.ls95{letter-spacing:-0.040000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.026667pt;}
.ls8f{letter-spacing:0.040000pt;}
.ls11{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.050667pt;}
.ls31{letter-spacing:0.053333pt;}
.ls27{letter-spacing:0.058667pt;}
.ls43{letter-spacing:0.096000pt;}
.ls34{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.117333pt;}
.ls8e{letter-spacing:0.120000pt;}
.ls78{letter-spacing:0.132000pt;}
.ls40{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.152000pt;}
.ls4c{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.176000pt;}
.ls45{letter-spacing:0.186667pt;}
.ls67{letter-spacing:0.192000pt;}
.ls92{letter-spacing:0.200000pt;}
.ls2{letter-spacing:0.202667pt;}
.ls33{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.234667pt;}
.ls47{letter-spacing:0.240000pt;}
.ls73{letter-spacing:0.266667pt;}
.ls8c{letter-spacing:0.280000pt;}
.ls7d{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.293333pt;}
.ls83{letter-spacing:0.308000pt;}
.ls6a{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.336000pt;}
.lsd{letter-spacing:0.352000pt;}
.ls3{letter-spacing:0.354667pt;}
.ls35{letter-spacing:0.373333pt;}
.ls42{letter-spacing:0.384000pt;}
.ls90{letter-spacing:0.400000pt;}
.ls0{letter-spacing:0.405333pt;}
.ls3e{letter-spacing:0.410667pt;}
.ls57{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.432000pt;}
.ls91{letter-spacing:0.440000pt;}
.ls3f{letter-spacing:0.469333pt;}
.ls4d{letter-spacing:0.480000pt;}
.ls69{letter-spacing:0.528000pt;}
.ls32{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.576000pt;}
.ls4b{letter-spacing:0.586667pt;}
.ls82{letter-spacing:0.624000pt;}
.ls76{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.645333pt;}
.ls7e{letter-spacing:0.672000pt;}
.ls8d{letter-spacing:0.680000pt;}
.ls4e{letter-spacing:0.693333pt;}
.lse{letter-spacing:0.704000pt;}
.ls6f{letter-spacing:0.720000pt;}
.ls7a{letter-spacing:0.746667pt;}
.lsf{letter-spacing:0.762667pt;}
.ls71{letter-spacing:0.768000pt;}
.ls79{letter-spacing:0.800000pt;}
.ls5e{letter-spacing:0.816000pt;}
.ls36{letter-spacing:0.821333pt;}
.ls75{letter-spacing:0.853333pt;}
.ls41{letter-spacing:0.880000pt;}
.ls7b{letter-spacing:0.906667pt;}
.ls55{letter-spacing:0.938667pt;}
.ls51{letter-spacing:0.997333pt;}
.ls6e{letter-spacing:1.056000pt;}
.ls88{letter-spacing:1.066667pt;}
.ls59{letter-spacing:1.114667pt;}
.ls74{letter-spacing:1.120000pt;}
.ls4f{letter-spacing:1.173333pt;}
.ls80{letter-spacing:1.290667pt;}
.ls9d{letter-spacing:1.333333pt;}
.ls4a{letter-spacing:1.344000pt;}
.ls25{letter-spacing:1.349333pt;}
.ls9b{letter-spacing:1.386667pt;}
.ls9c{letter-spacing:1.400000pt;}
.ls24{letter-spacing:1.408000pt;}
.ls77{letter-spacing:1.466667pt;}
.ls7c{letter-spacing:1.536000pt;}
.ls60{letter-spacing:1.584000pt;}
.ls81{letter-spacing:1.701333pt;}
.ls63{letter-spacing:12.192000pt;}
.ls61{letter-spacing:12.240000pt;}
.ls5d{letter-spacing:12.266667pt;}
.ls62{letter-spacing:12.288000pt;}
.ls9a{letter-spacing:26.666667pt;}
.wsc6{word-spacing:-16.368000pt;}
.ws96{word-spacing:-16.250667pt;}
.wsb5{word-spacing:-16.133333pt;}
.ws7d{word-spacing:-16.074667pt;}
.ws7c{word-spacing:-16.016000pt;}
.ws8a{word-spacing:-15.781333pt;}
.wsd7{word-spacing:-15.722667pt;}
.wsd8{word-spacing:-15.605333pt;}
.ws7b{word-spacing:-15.546667pt;}
.ws1c{word-spacing:-15.429333pt;}
.ws6b{word-spacing:-15.370667pt;}
.ws4e{word-spacing:-15.312000pt;}
.ws77{word-spacing:-15.253333pt;}
.wsa4{word-spacing:-15.194667pt;}
.wsb2{word-spacing:-15.136000pt;}
.ws5f{word-spacing:-15.077333pt;}
.wsab{word-spacing:-15.018667pt;}
.ws1d{word-spacing:-14.960000pt;}
.ws19{word-spacing:-14.901333pt;}
.ws53{word-spacing:-14.842667pt;}
.ws4f{word-spacing:-14.784000pt;}
.ws8c{word-spacing:-14.725333pt;}
.wsf9{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.666667pt;}
.ws18{word-spacing:-14.608000pt;}
.ws1a{word-spacing:-14.549333pt;}
.ws61{word-spacing:-14.490667pt;}
.wsd5{word-spacing:-14.453333pt;}
.ws3d{word-spacing:-14.432000pt;}
.wscf{word-spacing:-14.400000pt;}
.ws60{word-spacing:-14.373333pt;}
.ws1e{word-spacing:-14.314667pt;}
.ws4d{word-spacing:-14.256000pt;}
.wsbd{word-spacing:-14.240000pt;}
.ws3a{word-spacing:-14.197333pt;}
.ws3e{word-spacing:-14.138667pt;}
.wsb6{word-spacing:-14.080000pt;}
.ws76{word-spacing:-14.026667pt;}
.wsa8{word-spacing:-14.021333pt;}
.wsdd{word-spacing:-13.920000pt;}
.ws50{word-spacing:-13.866667pt;}
.wsac{word-spacing:-13.845333pt;}
.ws62{word-spacing:-13.786667pt;}
.wse9{word-spacing:-13.760000pt;}
.ws51{word-spacing:-13.728000pt;}
.wsb9{word-spacing:-13.706667pt;}
.ws7a{word-spacing:-13.669333pt;}
.wsa6{word-spacing:-13.653333pt;}
.ws90{word-spacing:-13.610667pt;}
.wsa3{word-spacing:-13.600000pt;}
.wsb4{word-spacing:-13.552000pt;}
.wsad{word-spacing:-13.546667pt;}
.wsb8{word-spacing:-13.493333pt;}
.ws8b{word-spacing:-13.440000pt;}
.wsb3{word-spacing:-13.386667pt;}
.ws3b{word-spacing:-13.333333pt;}
.ws91{word-spacing:-13.317333pt;}
.wsaf{word-spacing:-13.280000pt;}
.wsd3{word-spacing:-13.258667pt;}
.ws52{word-spacing:-13.226667pt;}
.ws8f{word-spacing:-13.173333pt;}
.ws7f{word-spacing:-13.120000pt;}
.wsa5{word-spacing:-13.066667pt;}
.ws83{word-spacing:-13.013333pt;}
.wsae{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.920000pt;}
.wsf4{word-spacing:-12.906667pt;}
.ws4{word-spacing:-12.869333pt;}
.ws3c{word-spacing:-12.800000pt;}
.ws85{word-spacing:-12.746667pt;}
.wsf3{word-spacing:-12.693333pt;}
.ws3{word-spacing:-12.666667pt;}
.wsf0{word-spacing:-12.586667pt;}
.wsfd{word-spacing:-12.533333pt;}
.wsc0{word-spacing:-12.480000pt;}
.ws63{word-spacing:-12.384000pt;}
.wsce{word-spacing:-12.373333pt;}
.wsc9{word-spacing:-12.336000pt;}
.wse4{word-spacing:-12.320000pt;}
.wsc1{word-spacing:-12.288000pt;}
.ws84{word-spacing:-12.213333pt;}
.ws6d{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wscb{word-spacing:-11.952000pt;}
.ws20{word-spacing:-11.712000pt;}
.wsf6{word-spacing:-11.626667pt;}
.ws99{word-spacing:-11.472000pt;}
.wsf8{word-spacing:-11.400000pt;}
.wsc8{word-spacing:-11.308000pt;}
.wsca{word-spacing:-11.280000pt;}
.wsc5{word-spacing:-11.176000pt;}
.wsb7{word-spacing:-11.132000pt;}
.wsbe{word-spacing:-11.000000pt;}
.wsd1{word-spacing:-10.956000pt;}
.ws1b{word-spacing:-10.912000pt;}
.ws97{word-spacing:-10.736000pt;}
.wsdf{word-spacing:-10.680000pt;}
.ws16{word-spacing:-10.624000pt;}
.wsd6{word-spacing:-10.472000pt;}
.wse8{word-spacing:-10.440000pt;}
.wse7{word-spacing:-10.320000pt;}
.wsdc{word-spacing:-10.280000pt;}
.wse6{word-spacing:-10.240000pt;}
.wsea{word-spacing:-10.200000pt;}
.wsd9{word-spacing:-10.160000pt;}
.wsda{word-spacing:-10.120000pt;}
.wsde{word-spacing:-10.040000pt;}
.wse1{word-spacing:-10.000000pt;}
.wse5{word-spacing:-9.960000pt;}
.wsd4{word-spacing:-9.944000pt;}
.wsec{word-spacing:-9.920000pt;}
.wse2{word-spacing:-9.760000pt;}
.wsee{word-spacing:-9.720000pt;}
.wsfb{word-spacing:-9.680000pt;}
.wsf2{word-spacing:-9.520000pt;}
.wseb{word-spacing:-9.480000pt;}
.wsfe{word-spacing:-9.400000pt;}
.wsf1{word-spacing:-9.360000pt;}
.wsef{word-spacing:-9.240000pt;}
.wse3{word-spacing:-9.000000pt;}
.wsfc{word-spacing:-8.840000pt;}
.wsf7{word-spacing:-8.720000pt;}
.ws26{word-spacing:-0.762667pt;}
.ws41{word-spacing:-0.704000pt;}
.ws29{word-spacing:-0.645333pt;}
.ws43{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.608000pt;}
.ws24{word-spacing:-0.586667pt;}
.ws6a{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.557333pt;}
.ws44{word-spacing:-0.533333pt;}
.ws32{word-spacing:-0.528000pt;}
.ws11{word-spacing:-0.506667pt;}
.ws94{word-spacing:-0.480000pt;}
.ws23{word-spacing:-0.469333pt;}
.wsd{word-spacing:-0.456000pt;}
.wsaa{word-spacing:-0.432000pt;}
.ws5e{word-spacing:-0.426667pt;}
.ws34{word-spacing:-0.410667pt;}
.wsb0{word-spacing:-0.373333pt;}
.ws25{word-spacing:-0.352000pt;}
.ws2{word-spacing:-0.338667pt;}
.ws38{word-spacing:-0.336000pt;}
.ws5a{word-spacing:-0.320000pt;}
.wsf{word-spacing:-0.304000pt;}
.ws42{word-spacing:-0.293333pt;}
.ws37{word-spacing:-0.288000pt;}
.ws89{word-spacing:-0.266667pt;}
.wsa0{word-spacing:-0.240000pt;}
.ws30{word-spacing:-0.234667pt;}
.ws46{word-spacing:-0.213333pt;}
.ws72{word-spacing:-0.192000pt;}
.ws4c{word-spacing:-0.176000pt;}
.ws45{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.152000pt;}
.wscc{word-spacing:-0.144000pt;}
.ws92{word-spacing:-0.120000pt;}
.ws2c{word-spacing:-0.117333pt;}
.ws8e{word-spacing:-0.106667pt;}
.wsa1{word-spacing:-0.096000pt;}
.ws9a{word-spacing:-0.058667pt;}
.ws78{word-spacing:-0.053333pt;}
.wsa2{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.048000pt;}
.ws95{word-spacing:0.053333pt;}
.ws48{word-spacing:0.058667pt;}
.ws93{word-spacing:0.106667pt;}
.ws3f{word-spacing:0.117333pt;}
.wsc2{word-spacing:0.144000pt;}
.wsd2{word-spacing:0.160000pt;}
.ws4b{word-spacing:0.176000pt;}
.wscd{word-spacing:0.192000pt;}
.wsa{word-spacing:0.202667pt;}
.ws9e{word-spacing:0.213333pt;}
.ws7e{word-spacing:0.234667pt;}
.ws9c{word-spacing:0.266667pt;}
.ws28{word-spacing:0.293333pt;}
.wsd0{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.352000pt;}
.ws5d{word-spacing:0.373333pt;}
.ws73{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.410667pt;}
.ws88{word-spacing:0.426667pt;}
.ws7{word-spacing:0.456000pt;}
.ws31{word-spacing:0.469333pt;}
.ws56{word-spacing:0.480000pt;}
.ws64{word-spacing:0.528000pt;}
.ws47{word-spacing:0.533333pt;}
.ws6{word-spacing:0.557333pt;}
.wsa9{word-spacing:0.572000pt;}
.ws74{word-spacing:0.576000pt;}
.ws27{word-spacing:0.586667pt;}
.ws66{word-spacing:0.616000pt;}
.ws36{word-spacing:0.624000pt;}
.ws79{word-spacing:0.640000pt;}
.ws2b{word-spacing:0.645333pt;}
.ws9d{word-spacing:0.693333pt;}
.ws33{word-spacing:0.704000pt;}
.wsbc{word-spacing:0.720000pt;}
.ws80{word-spacing:0.746667pt;}
.ws2e{word-spacing:0.762667pt;}
.ws39{word-spacing:0.768000pt;}
.ws55{word-spacing:0.800000pt;}
.ws67{word-spacing:0.816000pt;}
.ws40{word-spacing:0.821333pt;}
.ws5c{word-spacing:0.853333pt;}
.wsb{word-spacing:0.861333pt;}
.ws9f{word-spacing:0.864000pt;}
.ws6f{word-spacing:0.880000pt;}
.ws87{word-spacing:0.906667pt;}
.wse{word-spacing:0.912000pt;}
.ws59{word-spacing:0.938667pt;}
.ws5b{word-spacing:0.960000pt;}
.ws65{word-spacing:0.997333pt;}
.ws71{word-spacing:1.008000pt;}
.ws9b{word-spacing:1.013333pt;}
.ws70{word-spacing:1.056000pt;}
.ws10{word-spacing:1.064000pt;}
.ws8d{word-spacing:1.066667pt;}
.ws35{word-spacing:1.104000pt;}
.ws12{word-spacing:1.114667pt;}
.ws57{word-spacing:1.120000pt;}
.ws68{word-spacing:1.152000pt;}
.ws2a{word-spacing:1.173333pt;}
.ws69{word-spacing:1.200000pt;}
.wsc{word-spacing:1.216000pt;}
.ws58{word-spacing:1.226667pt;}
.ws22{word-spacing:1.232000pt;}
.ws8{word-spacing:1.266667pt;}
.ws54{word-spacing:1.280000pt;}
.ws49{word-spacing:1.290667pt;}
.ws86{word-spacing:1.333333pt;}
.ws4a{word-spacing:1.349333pt;}
.ws6e{word-spacing:1.408000pt;}
.ws21{word-spacing:1.466667pt;}
.wsff{word-spacing:2.133333pt;}
.wsed{word-spacing:2.920000pt;}
.ws75{word-spacing:3.216000pt;}
.wsb1{word-spacing:3.573333pt;}
.wsfa{word-spacing:3.693333pt;}
.wsf5{word-spacing:3.973333pt;}
.wse0{word-spacing:4.160000pt;}
.wsdb{word-spacing:4.346667pt;}
.wsc7{word-spacing:5.277333pt;}
.wsbf{word-spacing:6.480000pt;}
.ws81{word-spacing:6.688000pt;}
.wsbb{word-spacing:6.981333pt;}
.wsba{word-spacing:8.016000pt;}
.ws82{word-spacing:8.213333pt;}
.wsc4{word-spacing:14.666667pt;}
.wsa7{word-spacing:21.354667pt;}
.ws98{word-spacing:30.576000pt;}
.ws6c{word-spacing:31.728000pt;}
.ws15{word-spacing:31.914667pt;}
.ws1f{word-spacing:32.016000pt;}
._d{margin-left:-9.296000pt;}
._7{margin-left:-7.509333pt;}
._4{margin-left:-6.586667pt;}
._b{margin-left:-5.456000pt;}
._2{margin-left:-4.144000pt;}
._1{margin-left:-2.989333pt;}
._8{margin-left:-1.968000pt;}
._0{margin-left:-1.024000pt;}
._3{width:1.520000pt;}
._e{width:3.402667pt;}
._53{width:5.845333pt;}
._10{width:13.402667pt;}
._52{width:20.016000pt;}
._f{width:21.354667pt;}
._54{width:26.666667pt;}
._51{width:36.021333pt;}
._5{width:41.898667pt;}
._a{width:42.800000pt;}
._22{width:45.386667pt;}
._3c{width:60.954667pt;}
._13{width:61.949333pt;}
._30{width:70.453333pt;}
._16{width:77.541333pt;}
._1b{width:83.306667pt;}
._25{width:87.146667pt;}
._18{width:89.920000pt;}
._2c{width:92.000000pt;}
._2d{width:96.373333pt;}
._3e{width:97.546667pt;}
._24{width:103.354667pt;}
._26{width:107.626667pt;}
._15{width:109.226667pt;}
._4b{width:113.637333pt;}
._39{width:115.066667pt;}
._35{width:118.874667pt;}
._4c{width:123.194667pt;}
._31{width:127.306667pt;}
._41{width:128.400000pt;}
._12{width:133.061333pt;}
._23{width:140.586667pt;}
._33{width:145.450667pt;}
._34{width:147.466667pt;}
._3f{width:153.600000pt;}
._1a{width:158.784000pt;}
._49{width:161.680000pt;}
._44{width:165.434667pt;}
._2a{width:167.309333pt;}
._20{width:170.133333pt;}
._2b{width:173.120000pt;}
._46{width:174.346667pt;}
._17{width:176.688000pt;}
._4a{width:183.680000pt;}
._1c{width:184.906667pt;}
._38{width:193.509333pt;}
._40{width:203.093333pt;}
._4f{width:207.466667pt;}
._14{width:215.034667pt;}
._28{width:217.920000pt;}
._4e{width:218.933333pt;}
._48{width:221.813333pt;}
._1d{width:233.440000pt;}
._1e{width:240.314667pt;}
._19{width:243.680000pt;}
._32{width:258.346667pt;}
._45{width:267.306667pt;}
._29{width:277.333333pt;}
._11{width:289.920000pt;}
._9{width:359.978667pt;}
._36{width:370.293333pt;}
._3a{width:383.626667pt;}
._3d{width:461.440000pt;}
._2f{width:508.853333pt;}
._43{width:564.746667pt;}
._47{width:618.560000pt;}
._3b{width:680.586667pt;}
._37{width:690.240000pt;}
._42{width:935.893333pt;}
._1f{width:939.253333pt;}
._6{width:965.077333pt;}
._c{width:966.021333pt;}
._2e{width:1283.904000pt;}
._4d{width:1331.466667pt;}
._27{width:1640.741333pt;}
._50{width:1668.917333pt;}
._21{width:1737.013333pt;}
.fs8{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:35.654000pt;}
.ye0{bottom:40.813333pt;}
.y2a3{bottom:40.818667pt;}
.y31a{bottom:40.866667pt;}
.y1d0{bottom:41.296000pt;}
.y1a4{bottom:41.920000pt;}
.ybd{bottom:41.941333pt;}
.y52{bottom:41.952000pt;}
.y208{bottom:41.957333pt;}
.y17d{bottom:41.962667pt;}
.y220{bottom:41.968000pt;}
.y36c{bottom:41.973333pt;}
.y249{bottom:42.466667pt;}
.y143{bottom:42.473333pt;}
.y9d{bottom:42.520000pt;}
.y162{bottom:42.593333pt;}
.y7d{bottom:42.626667pt;}
.y38f{bottom:42.720000pt;}
.y2fa{bottom:43.133333pt;}
.y123{bottom:43.160000pt;}
.y351{bottom:43.180000pt;}
.y3bc{bottom:43.613333pt;}
.y25d{bottom:43.800000pt;}
.y2c4{bottom:43.840000pt;}
.y1ed{bottom:43.858667pt;}
.yfc{bottom:43.937333pt;}
.y113{bottom:44.064000pt;}
.y37d{bottom:44.093333pt;}
.y21{bottom:48.333333pt;}
.y1c2{bottom:50.526667pt;}
.ydf{bottom:53.485333pt;}
.y2a2{bottom:53.490667pt;}
.y1cf{bottom:53.968000pt;}
.y23{bottom:54.324667pt;}
.y1a3{bottom:54.592000pt;}
.ybc{bottom:54.613333pt;}
.y51{bottom:54.624000pt;}
.y207{bottom:54.629333pt;}
.y17c{bottom:54.634667pt;}
.y21f{bottom:54.640000pt;}
.y248{bottom:56.466667pt;}
.y38e{bottom:56.720000pt;}
.y2f9{bottom:57.133333pt;}
.y3bb{bottom:57.613333pt;}
.y142{bottom:57.800000pt;}
.y9c{bottom:57.846667pt;}
.y161{bottom:57.920000pt;}
.y7c{bottom:57.953333pt;}
.y122{bottom:58.486667pt;}
.y350{bottom:58.506667pt;}
.y2c3{bottom:59.166667pt;}
.y1ec{bottom:59.185333pt;}
.yfb{bottom:59.264000pt;}
.y112{bottom:59.390667pt;}
.y37c{bottom:59.420000pt;}
.y20{bottom:61.671333pt;}
.y1c1{bottom:64.126667pt;}
.yde{bottom:66.157333pt;}
.y2a1{bottom:66.162667pt;}
.y1ce{bottom:66.640000pt;}
.y1a2{bottom:67.264000pt;}
.ybb{bottom:67.285333pt;}
.y50{bottom:67.296000pt;}
.y206{bottom:67.301333pt;}
.y17b{bottom:67.306667pt;}
.y247{bottom:70.466667pt;}
.y2f8{bottom:71.133333pt;}
.y3ba{bottom:71.613333pt;}
.y38d{bottom:72.533333pt;}
.y22{bottom:72.995333pt;}
.y9b{bottom:73.173333pt;}
.y160{bottom:73.246667pt;}
.y7b{bottom:73.280000pt;}
.y121{bottom:73.813333pt;}
.y34f{bottom:73.833333pt;}
.y2c2{bottom:74.493333pt;}
.y1eb{bottom:74.512000pt;}
.yfa{bottom:74.590667pt;}
.y111{bottom:74.717333pt;}
.y37b{bottom:74.746667pt;}
.ydd{bottom:78.829333pt;}
.y2a0{bottom:78.834667pt;}
.y1a1{bottom:79.936000pt;}
.yba{bottom:79.957333pt;}
.y4f{bottom:79.968000pt;}
.y205{bottom:79.973333pt;}
.y1c0{bottom:81.060000pt;}
.y319{bottom:83.806667pt;}
.y25c{bottom:83.813333pt;}
.y246{bottom:84.466667pt;}
.y1f{bottom:86.333333pt;}
.y38c{bottom:86.533333pt;}
.y36b{bottom:87.133333pt;}
.y3b9{bottom:87.440000pt;}
.y141{bottom:88.466667pt;}
.y9a{bottom:88.500000pt;}
.y15f{bottom:88.573333pt;}
.y7a{bottom:88.606667pt;}
.y120{bottom:89.140000pt;}
.y34e{bottom:89.160000pt;}
.y2c1{bottom:89.820000pt;}
.y1ea{bottom:89.838667pt;}
.yf9{bottom:89.917333pt;}
.y110{bottom:90.044000pt;}
.y37a{bottom:90.073333pt;}
.ydc{bottom:91.501333pt;}
.y29f{bottom:91.506667pt;}
.y1a0{bottom:92.608000pt;}
.yb9{bottom:92.629333pt;}
.y4e{bottom:92.640000pt;}
.y1bf{bottom:94.660000pt;}
.y21e{bottom:95.160000pt;}
.y282{bottom:95.800000pt;}
.y2f7{bottom:95.806667pt;}
.y245{bottom:98.466667pt;}
.y318{bottom:99.133333pt;}
.y25b{bottom:99.140000pt;}
.y36a{bottom:101.133333pt;}
.y1cd{bottom:101.160000pt;}
.y3b8{bottom:101.440000pt;}
.y38b{bottom:102.346667pt;}
.y140{bottom:102.466667pt;}
.y99{bottom:103.826667pt;}
.y15e{bottom:103.900000pt;}
.y79{bottom:103.933333pt;}
.ydb{bottom:104.173333pt;}
.y29e{bottom:104.178667pt;}
.y11f{bottom:104.466667pt;}
.y34d{bottom:104.486667pt;}
.y2c0{bottom:105.146667pt;}
.y1e9{bottom:105.165333pt;}
.yf8{bottom:105.244000pt;}
.y19f{bottom:105.280000pt;}
.yb8{bottom:105.301333pt;}
.y10f{bottom:105.370667pt;}
.y379{bottom:105.400000pt;}
.y1be{bottom:108.260000pt;}
.y25{bottom:108.453333pt;}
.y17a{bottom:109.206667pt;}
.y281{bottom:109.800000pt;}
.y21d{bottom:110.486667pt;}
.y2f6{bottom:111.133333pt;}
.y244{bottom:112.466667pt;}
.y25a{bottom:114.466667pt;}
.y369{bottom:115.133333pt;}
.y3b7{bottom:115.440000pt;}
.y38a{bottom:116.346667pt;}
.y13f{bottom:116.466667pt;}
.y1cc{bottom:116.486667pt;}
.yda{bottom:116.845333pt;}
.y29d{bottom:116.850667pt;}
.y19e{bottom:117.952000pt;}
.yb7{bottom:117.973333pt;}
.y98{bottom:119.153333pt;}
.y15d{bottom:119.226667pt;}
.y78{bottom:119.260000pt;}
.y34c{bottom:119.813333pt;}
.y2bf{bottom:120.473333pt;}
.y1e8{bottom:120.492000pt;}
.yf7{bottom:120.570667pt;}
.y10e{bottom:120.697333pt;}
.y378{bottom:120.726667pt;}
.y280{bottom:123.800000pt;}
.y179{bottom:124.533333pt;}
.y4d{bottom:124.573333pt;}
.y338{bottom:125.133333pt;}
.y1bd{bottom:125.193333pt;}
.y21c{bottom:125.813333pt;}
.y204{bottom:126.550667pt;}
.y368{bottom:129.133333pt;}
.yd9{bottom:129.517333pt;}
.y29c{bottom:129.522667pt;}
.y317{bottom:129.800000pt;}
.y13e{bottom:130.466667pt;}
.y19d{bottom:130.624000pt;}
.y3b6{bottom:131.253333pt;}
.y1cb{bottom:131.813333pt;}
.y389{bottom:132.160000pt;}
.y97{bottom:134.480000pt;}
.y15c{bottom:134.553333pt;}
.y77{bottom:134.586667pt;}
.y11e{bottom:135.133333pt;}
.y34b{bottom:135.140000pt;}
.y2be{bottom:135.800000pt;}
.y1e7{bottom:135.818667pt;}
.yf6{bottom:135.897333pt;}
.y10d{bottom:136.024000pt;}
.y377{bottom:136.053333pt;}
.y27f{bottom:137.800000pt;}
.y243{bottom:138.500000pt;}
.y337{bottom:139.133333pt;}
.y178{bottom:139.860000pt;}
.y4c{bottom:139.900000pt;}
.y2f5{bottom:141.133333pt;}
.y21b{bottom:141.140000pt;}
.y203{bottom:141.877333pt;}
.y1bc{bottom:142.126667pt;}
.yd8{bottom:142.189333pt;}
.y29b{bottom:142.194667pt;}
.y367{bottom:143.133333pt;}
.y19c{bottom:143.296000pt;}
.y316{bottom:143.800000pt;}
.y13d{bottom:144.466667pt;}
.y259{bottom:145.133333pt;}
.y3b5{bottom:145.253333pt;}
.y388{bottom:146.160000pt;}
.y1ca{bottom:147.140000pt;}
.y11d{bottom:149.133333pt;}
.y96{bottom:149.806667pt;}
.y76{bottom:149.913333pt;}
.y34a{bottom:150.466667pt;}
.y2bd{bottom:151.126667pt;}
.yf5{bottom:151.224000pt;}
.y10c{bottom:151.350667pt;}
.y376{bottom:151.380000pt;}
.y27e{bottom:151.800000pt;}
.y1e{bottom:152.880000pt;}
.y242{bottom:153.826667pt;}
.yd7{bottom:154.861333pt;}
.y29a{bottom:154.866667pt;}
.y2f4{bottom:155.133333pt;}
.y177{bottom:155.186667pt;}
.y4b{bottom:155.226667pt;}
.y1bb{bottom:155.726667pt;}
.y19b{bottom:155.968000pt;}
.y21a{bottom:156.466667pt;}
.y366{bottom:157.133333pt;}
.y202{bottom:157.204000pt;}
.y315{bottom:157.800000pt;}
.y13c{bottom:158.466667pt;}
.y258{bottom:159.133333pt;}
.y3b4{bottom:159.253333pt;}
.y387{bottom:160.160000pt;}
.y1c9{bottom:162.466667pt;}
.y11c{bottom:163.133333pt;}
.y95{bottom:165.133333pt;}
.y336{bottom:165.160000pt;}
.y15b{bottom:165.221333pt;}
.y75{bottom:165.240000pt;}
.y27d{bottom:165.800000pt;}
.y2bc{bottom:166.453333pt;}
.y1e6{bottom:166.486667pt;}
.yb6{bottom:166.506667pt;}
.yf4{bottom:166.550667pt;}
.y10b{bottom:166.677333pt;}
.y375{bottom:166.706667pt;}
.yd6{bottom:167.533333pt;}
.y19a{bottom:168.640000pt;}
.y2f3{bottom:169.133333pt;}
.y241{bottom:169.153333pt;}
.y176{bottom:170.513333pt;}
.y4a{bottom:170.553333pt;}
.y365{bottom:171.133333pt;}
.y314{bottom:171.800000pt;}
.y13b{bottom:172.466667pt;}
.y1ba{bottom:172.660000pt;}
.y1d{bottom:172.841333pt;}
.y257{bottom:173.133333pt;}
.y386{bottom:174.160000pt;}
.y3b3{bottom:175.066667pt;}
.y11b{bottom:177.133333pt;}
.y27c{bottom:179.800000pt;}
.y335{bottom:180.486667pt;}
.y15a{bottom:180.548000pt;}
.y74{bottom:180.566667pt;}
.y349{bottom:181.133333pt;}
.y2bb{bottom:181.780000pt;}
.y1e5{bottom:181.813333pt;}
.yb5{bottom:181.833333pt;}
.yf3{bottom:181.877333pt;}
.y10a{bottom:182.004000pt;}
.y374{bottom:182.033333pt;}
.y2f2{bottom:183.133333pt;}
.y240{bottom:184.480000pt;}
.y364{bottom:185.133333pt;}
.y313{bottom:185.800000pt;}
.y175{bottom:185.840000pt;}
.y49{bottom:185.880000pt;}
.y1c{bottom:186.179333pt;}
.y1b9{bottom:186.260000pt;}
.y13a{bottom:186.466667pt;}
.y219{bottom:187.133333pt;}
.y201{bottom:187.872000pt;}
.y385{bottom:188.160000pt;}
.y3b2{bottom:189.066667pt;}
.y299{bottom:190.466667pt;}
.y11a{bottom:191.133333pt;}
.y1c8{bottom:193.133333pt;}
.y348{bottom:195.133333pt;}
.y94{bottom:195.800000pt;}
.y334{bottom:195.813333pt;}
.y159{bottom:195.874667pt;}
.y73{bottom:195.893333pt;}
.y2ba{bottom:197.106667pt;}
.y2f1{bottom:197.133333pt;}
.y1e4{bottom:197.140000pt;}
.yb4{bottom:197.160000pt;}
.yf2{bottom:197.204000pt;}
.y109{bottom:197.330667pt;}
.y373{bottom:197.360000pt;}
.y1b{bottom:199.517333pt;}
.y312{bottom:199.800000pt;}
.y23f{bottom:199.806667pt;}
.y139{bottom:200.466667pt;}
.y218{bottom:201.133333pt;}
.y174{bottom:201.166667pt;}
.y48{bottom:201.206667pt;}
.y3b1{bottom:203.066667pt;}
.y1b8{bottom:203.193333pt;}
.y200{bottom:203.198667pt;}
.y384{bottom:203.973333pt;}
.y298{bottom:204.466667pt;}
.y27b{bottom:204.513333pt;}
.y119{bottom:205.133333pt;}
.y1c7{bottom:207.133333pt;}
.y347{bottom:209.133333pt;}
.y93{bottom:209.800000pt;}
.y2f0{bottom:211.133333pt;}
.y333{bottom:211.140000pt;}
.y363{bottom:211.153333pt;}
.y158{bottom:211.201333pt;}
.y72{bottom:211.220000pt;}
.y2b9{bottom:212.433333pt;}
.y1e3{bottom:212.466667pt;}
.y199{bottom:212.473333pt;}
.yb3{bottom:212.486667pt;}
.yf1{bottom:212.530667pt;}
.yd5{bottom:212.533333pt;}
.y108{bottom:212.657333pt;}
.y372{bottom:212.686667pt;}
.y1a{bottom:212.855333pt;}
.y311{bottom:213.800000pt;}
.y138{bottom:214.466667pt;}
.y217{bottom:215.133333pt;}
.y173{bottom:216.493333pt;}
.y47{bottom:216.533333pt;}
.y1b7{bottom:216.793333pt;}
.y383{bottom:217.973333pt;}
.y297{bottom:218.466667pt;}
.y1ff{bottom:218.525333pt;}
.y3b0{bottom:218.880000pt;}
.y118{bottom:219.133333pt;}
.y27a{bottom:219.840000pt;}
.y1c6{bottom:221.133333pt;}
.y92{bottom:223.800000pt;}
.y19{bottom:226.193333pt;}
.y332{bottom:226.466667pt;}
.y362{bottom:226.480000pt;}
.y157{bottom:226.528000pt;}
.y71{bottom:226.546667pt;}
.y2b8{bottom:227.760000pt;}
.y310{bottom:227.800000pt;}
.yb2{bottom:227.813333pt;}
.y198{bottom:227.826667pt;}
.yf0{bottom:227.857333pt;}
.yd4{bottom:227.860000pt;}
.y107{bottom:227.984000pt;}
.y371{bottom:228.013333pt;}
.y137{bottom:228.466667pt;}
.y216{bottom:229.133333pt;}
.y1b6{bottom:230.393333pt;}
.y172{bottom:231.820000pt;}
.y46{bottom:231.860000pt;}
.y382{bottom:231.973333pt;}
.y117{bottom:233.133333pt;}
.y1fe{bottom:233.852000pt;}
.y3af{bottom:234.693333pt;}
.y1c5{bottom:235.133333pt;}
.y279{bottom:235.166667pt;}
.y2ef{bottom:235.806667pt;}
.y91{bottom:237.800000pt;}
.y18{bottom:239.531333pt;}
.y30f{bottom:241.800000pt;}
.y361{bottom:241.806667pt;}
.y156{bottom:241.854667pt;}
.y70{bottom:241.873333pt;}
.y136{bottom:242.466667pt;}
.y2b7{bottom:243.086667pt;}
.y1e2{bottom:243.133333pt;}
.yb1{bottom:243.140000pt;}
.y197{bottom:243.153333pt;}
.yef{bottom:243.184000pt;}
.yd3{bottom:243.186667pt;}
.y106{bottom:243.310667pt;}
.y370{bottom:243.340000pt;}
.y1b5{bottom:243.993333pt;}
.y23e{bottom:245.800000pt;}
.y381{bottom:245.973333pt;}
.y116{bottom:247.133333pt;}
.y171{bottom:247.146667pt;}
.y45{bottom:247.186667pt;}
.y296{bottom:247.840000pt;}
.y3ae{bottom:248.693333pt;}
.y1c4{bottom:249.133333pt;}
.y1fd{bottom:249.178667pt;}
.y278{bottom:250.493333pt;}
.y2ee{bottom:251.133333pt;}
.y90{bottom:251.800000pt;}
.y17{bottom:252.869333pt;}
.y30e{bottom:255.800000pt;}
.y135{bottom:256.466667pt;}
.y1e1{bottom:257.133333pt;}
.y155{bottom:257.181333pt;}
.y6f{bottom:257.200000pt;}
.y1b4{bottom:257.593333pt;}
.y2b6{bottom:258.413333pt;}
.y196{bottom:258.480000pt;}
.y2e0{bottom:258.493333pt;}
.yee{bottom:258.510667pt;}
.yd2{bottom:258.513333pt;}
.y105{bottom:258.637333pt;}
.yb0{bottom:258.666667pt;}
.y23d{bottom:259.800000pt;}
.y115{bottom:261.133333pt;}
.y380{bottom:261.800000pt;}
.y170{bottom:262.473333pt;}
.y44{bottom:262.513333pt;}
.y1c3{bottom:263.133333pt;}
.y295{bottom:263.166667pt;}
.y1fc{bottom:264.505333pt;}
.y3ad{bottom:264.506667pt;}
.y8f{bottom:265.800000pt;}
.y277{bottom:265.820000pt;}
.y16{bottom:266.207333pt;}
.y30d{bottom:269.800000pt;}
.y134{bottom:270.466667pt;}
.y1e0{bottom:271.133333pt;}
.y154{bottom:272.508000pt;}
.y6e{bottom:272.526667pt;}
.y2b5{bottom:273.740000pt;}
.y23c{bottom:273.800000pt;}
.y195{bottom:273.806667pt;}
.y2df{bottom:273.820000pt;}
.yed{bottom:273.837333pt;}
.yd1{bottom:273.840000pt;}
.y104{bottom:273.964000pt;}
.yaf{bottom:273.993333pt;}
.y1b3{bottom:274.526667pt;}
.y114{bottom:275.133333pt;}
.y37f{bottom:275.800000pt;}
.y16f{bottom:277.800000pt;}
.y43{bottom:277.840000pt;}
.y294{bottom:278.493333pt;}
.y3ac{bottom:278.506667pt;}
.y15{bottom:279.545333pt;}
.y8e{bottom:279.800000pt;}
.y1fb{bottom:279.832000pt;}
.y276{bottom:281.146667pt;}
.y2ed{bottom:281.800000pt;}
.y30c{bottom:283.800000pt;}
.y133{bottom:284.466667pt;}
.y1df{bottom:285.133333pt;}
.y23b{bottom:287.800000pt;}
.y153{bottom:287.834667pt;}
.y6d{bottom:287.853333pt;}
.y1b2{bottom:288.126667pt;}
.y2b4{bottom:289.066667pt;}
.y2de{bottom:289.146667pt;}
.yd0{bottom:289.166667pt;}
.y194{bottom:289.204000pt;}
.y103{bottom:289.290667pt;}
.yae{bottom:289.320000pt;}
.y3ab{bottom:292.506667pt;}
.y14{bottom:292.883333pt;}
.y42{bottom:293.166667pt;}
.y346{bottom:293.800000pt;}
.y293{bottom:293.820000pt;}
.y1fa{bottom:295.158667pt;}
.y215{bottom:295.800000pt;}
.y275{bottom:296.473333pt;}
.yec{bottom:296.834667pt;}
.y30b{bottom:297.800000pt;}
.y132{bottom:298.466667pt;}
.y37e{bottom:298.633333pt;}
.y1de{bottom:299.133333pt;}
.y23a{bottom:301.800000pt;}
.y152{bottom:303.161333pt;}
.y6c{bottom:303.180000pt;}
.y2b3{bottom:304.393333pt;}
.y2dd{bottom:304.473333pt;}
.y8d{bottom:304.493333pt;}
.y193{bottom:304.530667pt;}
.y102{bottom:304.617333pt;}
.yad{bottom:304.646667pt;}
.y1b1{bottom:305.060000pt;}
.y3d7{bottom:306.813333pt;}
.y345{bottom:307.800000pt;}
.y3aa{bottom:308.320000pt;}
.y16e{bottom:308.466667pt;}
.y41{bottom:308.493333pt;}
.y292{bottom:309.146667pt;}
.y214{bottom:309.800000pt;}
.y1f9{bottom:310.485333pt;}
.y274{bottom:311.800000pt;}
.y1dd{bottom:313.133333pt;}
.y239{bottom:315.800000pt;}
.y151{bottom:318.488000pt;}
.y6b{bottom:318.506667pt;}
.y1b0{bottom:318.660000pt;}
.y13{bottom:319.546667pt;}
.y2b2{bottom:319.720000pt;}
.y8c{bottom:319.820000pt;}
.y192{bottom:319.857333pt;}
.y101{bottom:319.944000pt;}
.y2dc{bottom:319.960000pt;}
.yac{bottom:319.973333pt;}
.y3d6{bottom:320.813333pt;}
.y344{bottom:321.800000pt;}
.y3a9{bottom:322.320000pt;}
.y16d{bottom:322.466667pt;}
.y131{bottom:323.258667pt;}
.y213{bottom:323.800000pt;}
.y40{bottom:323.820000pt;}
.y291{bottom:324.473333pt;}
.y30a{bottom:325.800000pt;}
.y1f8{bottom:325.812000pt;}
.y1dc{bottom:327.133333pt;}
.y238{bottom:329.800000pt;}
.y1af{bottom:332.260000pt;}
.y150{bottom:333.814667pt;}
.y6a{bottom:333.833333pt;}
.y3d5{bottom:334.813333pt;}
.y2b1{bottom:335.046667pt;}
.y8b{bottom:335.146667pt;}
.yeb{bottom:335.173333pt;}
.y191{bottom:335.184000pt;}
.y36f{bottom:335.270667pt;}
.y2db{bottom:335.286667pt;}
.yab{bottom:335.300000pt;}
.y343{bottom:335.800000pt;}
.y3a8{bottom:336.320000pt;}
.y16c{bottom:336.466667pt;}
.y212{bottom:337.800000pt;}
.y130{bottom:338.585333pt;}
.y3f{bottom:339.146667pt;}
.y256{bottom:339.153333pt;}
.y290{bottom:339.800000pt;}
.y331{bottom:341.133333pt;}
.y273{bottom:342.466667pt;}
.y237{bottom:343.800000pt;}
.y1ae{bottom:345.860000pt;}
.y69{bottom:349.160000pt;}
.y3a7{bottom:350.320000pt;}
.y16b{bottom:350.466667pt;}
.y8a{bottom:350.473333pt;}
.yea{bottom:350.500000pt;}
.y190{bottom:350.510667pt;}
.y36e{bottom:350.597333pt;}
.y100{bottom:350.612000pt;}
.y2da{bottom:350.613333pt;}
.yaa{bottom:350.626667pt;}
.y12{bottom:351.507333pt;}
.y211{bottom:351.800000pt;}
.y309{bottom:353.800000pt;}
.y12f{bottom:353.912000pt;}
.y3e{bottom:354.473333pt;}
.y255{bottom:354.480000pt;}
.y330{bottom:355.133333pt;}
.y272{bottom:356.466667pt;}
.y1f7{bottom:356.480000pt;}
.y1db{bottom:356.540000pt;}
.y236{bottom:357.800000pt;}
.y1ad{bottom:359.460000pt;}
.y342{bottom:361.800000pt;}
.y3d4{bottom:364.320000pt;}
.y16a{bottom:364.466667pt;}
.y14f{bottom:364.482667pt;}
.y68{bottom:364.486667pt;}
.y2b0{bottom:365.494667pt;}
.y89{bottom:365.800000pt;}
.ye9{bottom:365.826667pt;}
.y18f{bottom:365.837333pt;}
.ycf{bottom:365.924000pt;}
.yff{bottom:365.938667pt;}
.y2d9{bottom:365.940000pt;}
.ya9{bottom:365.953333pt;}
.y3a6{bottom:366.133333pt;}
.y3d{bottom:369.800000pt;}
.y254{bottom:369.806667pt;}
.y271{bottom:370.466667pt;}
.y11{bottom:371.508000pt;}
.y235{bottom:371.800000pt;}
.y1f6{bottom:371.806667pt;}
.y1da{bottom:371.866667pt;}
.y341{bottom:375.800000pt;}
.y1ac{bottom:376.393333pt;}
.y32f{bottom:377.133333pt;}
.y169{bottom:378.466667pt;}
.y210{bottom:379.800000pt;}
.y14e{bottom:379.809333pt;}
.y67{bottom:379.813333pt;}
.y3d3{bottom:379.826667pt;}
.y308{bottom:379.840000pt;}
.y2af{bottom:380.821333pt;}
.ye8{bottom:381.153333pt;}
.y18e{bottom:381.164000pt;}
.yce{bottom:381.250667pt;}
.yfe{bottom:381.265333pt;}
.y2d8{bottom:381.266667pt;}
.ya8{bottom:381.280000pt;}
.y3a5{bottom:381.946667pt;}
.y270{bottom:384.466667pt;}
.y12e{bottom:384.580000pt;}
.y10{bottom:384.846000pt;}
.y3c{bottom:385.126667pt;}
.y253{bottom:385.133333pt;}
.y234{bottom:385.800000pt;}
.y1f5{bottom:387.133333pt;}
.y1d9{bottom:387.193333pt;}
.y340{bottom:389.800000pt;}
.y1ab{bottom:389.993333pt;}
.y32e{bottom:391.133333pt;}
.y168{bottom:392.466667pt;}
.y20f{bottom:393.800000pt;}
.y14d{bottom:395.136000pt;}
.y66{bottom:395.140000pt;}
.y307{bottom:395.166667pt;}
.y3d2{bottom:395.346667pt;}
.y3a4{bottom:395.946667pt;}
.y88{bottom:396.466667pt;}
.ye7{bottom:396.480000pt;}
.ycd{bottom:396.577333pt;}
.yfd{bottom:396.592000pt;}
.y2d7{bottom:396.593333pt;}
.ya7{bottom:396.606667pt;}
.yf{bottom:398.184000pt;}
.y26f{bottom:398.466667pt;}
.y233{bottom:399.800000pt;}
.y12d{bottom:399.906667pt;}
.y3b{bottom:400.473333pt;}
.y1d8{bottom:402.520000pt;}
.y33f{bottom:403.800000pt;}
.y18d{bottom:404.161333pt;}
.y32d{bottom:405.133333pt;}
.y167{bottom:406.466667pt;}
.y1aa{bottom:406.926667pt;}
.y20e{bottom:407.800000pt;}
.y3d1{bottom:409.346667pt;}
.y65{bottom:410.466667pt;}
.y306{bottom:410.493333pt;}
.ye{bottom:411.522000pt;}
.y3a3{bottom:411.760000pt;}
.ye6{bottom:411.806667pt;}
.y360{bottom:411.900000pt;}
.ycc{bottom:411.904000pt;}
.y2d6{bottom:411.920000pt;}
.ya6{bottom:411.933333pt;}
.y26e{bottom:412.466667pt;}
.y28f{bottom:412.473333pt;}
.y232{bottom:413.800000pt;}
.y12c{bottom:415.233333pt;}
.y3a{bottom:415.800000pt;}
.y1f4{bottom:417.800000pt;}
.y1d7{bottom:417.846667pt;}
.y14c{bottom:418.133333pt;}
.y2ec{bottom:418.473333pt;}
.y32c{bottom:419.133333pt;}
.y2ae{bottom:419.160000pt;}
.y166{bottom:420.466667pt;}
.y1a9{bottom:420.526667pt;}
.y20d{bottom:421.800000pt;}
.y87{bottom:424.466667pt;}
.y3d0{bottom:424.853333pt;}
.yd{bottom:424.860000pt;}
.y3a2{bottom:425.760000pt;}
.y305{bottom:425.820000pt;}
.y26d{bottom:426.466667pt;}
.ye5{bottom:427.133333pt;}
.y35f{bottom:427.226667pt;}
.ycb{bottom:427.230667pt;}
.y2d5{bottom:427.246667pt;}
.ya5{bottom:427.260000pt;}
.y231{bottom:427.800000pt;}
.y28e{bottom:427.840000pt;}
.y252{bottom:429.800000pt;}
.y12b{bottom:430.560000pt;}
.y39{bottom:431.126667pt;}
.y1f3{bottom:431.800000pt;}
.y32b{bottom:433.133333pt;}
.y1d6{bottom:433.173333pt;}
.y2eb{bottom:433.800000pt;}
.y1a8{bottom:434.126667pt;}
.y165{bottom:434.466667pt;}
.y2ad{bottom:434.486667pt;}
.y36d{bottom:434.901333pt;}
.y20c{bottom:435.800000pt;}
.yc{bottom:438.198000pt;}
.y86{bottom:438.466667pt;}
.y3cf{bottom:438.853333pt;}
.y3a1{bottom:439.760000pt;}
.y26c{bottom:440.466667pt;}
.y64{bottom:441.133333pt;}
.y304{bottom:441.146667pt;}
.y18c{bottom:442.500000pt;}
.y35e{bottom:442.553333pt;}
.yca{bottom:442.557333pt;}
.y2d4{bottom:442.573333pt;}
.ya4{bottom:442.586667pt;}
.y28d{bottom:443.166667pt;}
.y251{bottom:443.800000pt;}
.y1f2{bottom:445.800000pt;}
.y12a{bottom:445.886667pt;}
.y38{bottom:446.561333pt;}
.y32a{bottom:447.133333pt;}
.y164{bottom:448.466667pt;}
.y1d5{bottom:448.500000pt;}
.y20b{bottom:449.800000pt;}
.y2ac{bottom:449.813333pt;}
.yb{bottom:451.536000pt;}
.y85{bottom:452.466667pt;}
.y1a7{bottom:453.060000pt;}
.y3ce{bottom:454.360000pt;}
.y26b{bottom:454.466667pt;}
.y63{bottom:455.133333pt;}
.y230{bottom:455.206667pt;}
.y3a0{bottom:455.573333pt;}
.y14b{bottom:456.466667pt;}
.y303{bottom:456.473333pt;}
.ye4{bottom:457.800000pt;}
.y18b{bottom:457.826667pt;}
.y35d{bottom:457.880000pt;}
.yc9{bottom:457.884000pt;}
.y2d3{bottom:457.900000pt;}
.ya3{bottom:457.913333pt;}
.y28c{bottom:458.493333pt;}
.y33e{bottom:459.800000pt;}
.y129{bottom:461.213333pt;}
.y37{bottom:461.888000pt;}
.y163{bottom:462.466667pt;}
.y20a{bottom:463.800000pt;}
.y1d4{bottom:463.826667pt;}
.ya{bottom:464.874000pt;}
.y2ab{bottom:465.140000pt;}
.y84{bottom:466.466667pt;}
.y3cd{bottom:468.360000pt;}
.y26a{bottom:468.466667pt;}
.y62{bottom:469.133333pt;}
.y39f{bottom:469.573333pt;}
.y14a{bottom:470.466667pt;}
.y22f{bottom:470.533333pt;}
.ye3{bottom:471.800000pt;}
.y1a6{bottom:472.393333pt;}
.y1f1{bottom:473.140000pt;}
.y18a{bottom:473.153333pt;}
.y329{bottom:473.166667pt;}
.y35c{bottom:473.206667pt;}
.yc8{bottom:473.210667pt;}
.y2d2{bottom:473.226667pt;}
.ya2{bottom:473.240000pt;}
.y33d{bottom:473.800000pt;}
.y28b{bottom:473.820000pt;}
.y128{bottom:476.540000pt;}
.y36{bottom:477.214667pt;}
.y209{bottom:477.800000pt;}
.y9{bottom:478.212000pt;}
.y1d3{bottom:479.153333pt;}
.y2aa{bottom:480.466667pt;}
.y1a5{bottom:480.520000pt;}
.y61{bottom:483.133333pt;}
.y3cc{bottom:483.880000pt;}
.y149{bottom:484.466667pt;}
.y39e{bottom:485.386667pt;}
.y83{bottom:485.800000pt;}
.y22e{bottom:485.860000pt;}
.y189{bottom:488.480000pt;}
.y328{bottom:488.493333pt;}
.y35b{bottom:488.533333pt;}
.yc7{bottom:488.537333pt;}
.y1f0{bottom:488.552000pt;}
.y2d1{bottom:488.553333pt;}
.ya1{bottom:488.566667pt;}
.y28a{bottom:489.146667pt;}
.y8{bottom:491.550000pt;}
.y2ea{bottom:491.800000pt;}
.y127{bottom:491.866667pt;}
.y35{bottom:492.541333pt;}
.y1d2{bottom:494.480000pt;}
.y60{bottom:497.133333pt;}
.y269{bottom:497.840000pt;}
.y3cb{bottom:497.880000pt;}
.y148{bottom:498.466667pt;}
.y82{bottom:499.800000pt;}
.y33c{bottom:500.493333pt;}
.y22d{bottom:501.186667pt;}
.y39d{bottom:501.200000pt;}
.y302{bottom:502.466667pt;}
.y188{bottom:503.806667pt;}
.y327{bottom:503.820000pt;}
.y35a{bottom:503.860000pt;}
.yc6{bottom:503.864000pt;}
.y1ef{bottom:503.878667pt;}
.y2d0{bottom:503.880000pt;}
.ya0{bottom:503.893333pt;}
.y289{bottom:504.473333pt;}
.y2e9{bottom:505.800000pt;}
.y126{bottom:507.193333pt;}
.y34{bottom:507.868000pt;}
.y1d1{bottom:509.806667pt;}
.y5f{bottom:511.133333pt;}
.y3ca{bottom:511.880000pt;}
.y147{bottom:512.466667pt;}
.y268{bottom:513.166667pt;}
.y81{bottom:513.800000pt;}
.y39c{bottom:515.200000pt;}
.y33b{bottom:515.820000pt;}
.y301{bottom:516.466667pt;}
.y22c{bottom:516.513333pt;}
.y7{bottom:518.213333pt;}
.y187{bottom:519.133333pt;}
.y326{bottom:519.146667pt;}
.y359{bottom:519.186667pt;}
.yc5{bottom:519.190667pt;}
.y1ee{bottom:519.205333pt;}
.y2cf{bottom:519.206667pt;}
.y9f{bottom:519.220000pt;}
.y288{bottom:519.800000pt;}
.y33{bottom:523.194667pt;}
.y5e{bottom:525.133333pt;}
.y146{bottom:526.466667pt;}
.y3c9{bottom:527.386667pt;}
.y80{bottom:527.800000pt;}
.y267{bottom:528.493333pt;}
.y39b{bottom:529.200000pt;}
.y300{bottom:530.466667pt;}
.y33a{bottom:531.146667pt;}
.y22b{bottom:531.840000pt;}
.y2e8{bottom:533.800000pt;}
.y325{bottom:534.473333pt;}
.y358{bottom:534.513333pt;}
.yc4{bottom:534.517333pt;}
.y125{bottom:534.532000pt;}
.y2ce{bottom:534.533333pt;}
.y9e{bottom:534.546667pt;}
.y32{bottom:538.521333pt;}
.y2a9{bottom:539.133333pt;}
.y145{bottom:540.466667pt;}
.y7f{bottom:541.800000pt;}
.y3c8{bottom:542.906667pt;}
.y266{bottom:543.820000pt;}
.y2ff{bottom:544.466667pt;}
.y39a{bottom:545.013333pt;}
.y339{bottom:546.473333pt;}
.y22a{bottom:547.166667pt;}
.y2e7{bottom:547.800000pt;}
.y186{bottom:549.800000pt;}
.y357{bottom:549.840000pt;}
.y124{bottom:549.858667pt;}
.y2cd{bottom:549.860000pt;}
.y324{bottom:549.866667pt;}
.y5d{bottom:549.873333pt;}
.y287{bottom:550.466667pt;}
.y2a8{bottom:553.133333pt;}
.y31{bottom:553.848000pt;}
.y144{bottom:554.466667pt;}
.y7e{bottom:555.800000pt;}
.y3c7{bottom:556.906667pt;}
.y2fe{bottom:558.466667pt;}
.y399{bottom:559.013333pt;}
.y265{bottom:559.146667pt;}
.y2e6{bottom:561.800000pt;}
.y229{bottom:562.493333pt;}
.y185{bottom:563.800000pt;}
.y286{bottom:564.466667pt;}
.y356{bottom:565.166667pt;}
.yc3{bottom:565.185333pt;}
.y2cc{bottom:565.186667pt;}
.y323{bottom:565.193333pt;}
.y5c{bottom:565.200000pt;}
.y30{bottom:569.174667pt;}
.ye2{bottom:569.800000pt;}
.y3c6{bottom:572.413333pt;}
.y2fd{bottom:572.466667pt;}
.y398{bottom:573.013333pt;}
.y264{bottom:574.473333pt;}
.y2e5{bottom:575.800000pt;}
.y184{bottom:577.800000pt;}
.y228{bottom:577.820000pt;}
.y285{bottom:578.466667pt;}
.y2a7{bottom:579.146667pt;}
.y355{bottom:580.493333pt;}
.yc2{bottom:580.512000pt;}
.y2cb{bottom:580.513333pt;}
.y322{bottom:580.520000pt;}
.y5b{bottom:580.526667pt;}
.y250{bottom:581.840000pt;}
.ye1{bottom:583.800000pt;}
.y2f{bottom:584.501333pt;}
.y3c5{bottom:586.413333pt;}
.y2fc{bottom:586.466667pt;}
.y397{bottom:587.013333pt;}
.y263{bottom:589.800000pt;}
.y183{bottom:591.800000pt;}
.y284{bottom:592.466667pt;}
.y227{bottom:593.146667pt;}
.y2a6{bottom:594.473333pt;}
.y354{bottom:595.820000pt;}
.yc1{bottom:595.838667pt;}
.y2ca{bottom:595.840000pt;}
.y321{bottom:595.846667pt;}
.y5a{bottom:595.853333pt;}
.y24f{bottom:597.166667pt;}
.y2e{bottom:599.828000pt;}
.y3c4{bottom:600.413333pt;}
.y2fb{bottom:600.466667pt;}
.y2e4{bottom:600.486667pt;}
.y396{bottom:602.826667pt;}
.y182{bottom:605.800000pt;}
.y283{bottom:606.466667pt;}
.y6{bottom:607.296000pt;}
.y226{bottom:608.473333pt;}
.y2a5{bottom:609.800000pt;}
.y353{bottom:611.146667pt;}
.yc0{bottom:611.165333pt;}
.y2c9{bottom:611.166667pt;}
.y320{bottom:611.173333pt;}
.y59{bottom:611.180000pt;}
.y24e{bottom:612.493333pt;}
.y2d{bottom:615.154667pt;}
.y2e3{bottom:615.813333pt;}
.y3c3{bottom:615.920000pt;}
.y395{bottom:616.826667pt;}
.y181{bottom:619.800000pt;}
.y262{bottom:620.466667pt;}
.y5{bottom:620.628000pt;}
.y225{bottom:623.800000pt;}
.y352{bottom:626.473333pt;}
.ybf{bottom:626.492000pt;}
.y2c8{bottom:626.493333pt;}
.y31f{bottom:626.500000pt;}
.y58{bottom:626.506667pt;}
.y24d{bottom:627.820000pt;}
.y3c2{bottom:629.920000pt;}
.y2c{bottom:630.481333pt;}
.y2e2{bottom:631.140000pt;}
.y394{bottom:632.640000pt;}
.y180{bottom:633.800000pt;}
.y4{bottom:633.960000pt;}
.y261{bottom:634.466667pt;}
.y2a4{bottom:640.466667pt;}
.ybe{bottom:641.818667pt;}
.y2c7{bottom:641.820000pt;}
.y31e{bottom:641.826667pt;}
.y57{bottom:641.833333pt;}
.y24c{bottom:643.146667pt;}
.y3c1{bottom:643.920000pt;}
.y2b{bottom:645.808000pt;}
.y2e1{bottom:646.466667pt;}
.y393{bottom:646.640000pt;}
.y17f{bottom:647.800000pt;}
.y260{bottom:648.466667pt;}
.y3{bottom:650.626667pt;}
.y224{bottom:654.466667pt;}
.y2c6{bottom:657.146667pt;}
.y31d{bottom:657.153333pt;}
.y56{bottom:657.160000pt;}
.y24b{bottom:658.473333pt;}
.y3c0{bottom:659.440000pt;}
.y392{bottom:660.640000pt;}
.y2a{bottom:661.134667pt;}
.y17e{bottom:661.800000pt;}
.y25f{bottom:662.466667pt;}
.y223{bottom:668.466667pt;}
.y2c5{bottom:672.473333pt;}
.y31c{bottom:672.480000pt;}
.y55{bottom:672.486667pt;}
.y3bf{bottom:673.440000pt;}
.y24a{bottom:673.800000pt;}
.y391{bottom:674.640000pt;}
.y29{bottom:676.461333pt;}
.y25e{bottom:676.466667pt;}
.y31b{bottom:687.806667pt;}
.y54{bottom:687.813333pt;}
.y390{bottom:688.640000pt;}
.y3be{bottom:688.946667pt;}
.y222{bottom:690.466667pt;}
.y2{bottom:690.626667pt;}
.y28{bottom:691.788000pt;}
.y3bd{bottom:702.946667pt;}
.y53{bottom:703.140000pt;}
.y221{bottom:704.466667pt;}
.y1{bottom:711.960000pt;}
.y27{bottom:718.466667pt;}
.y26{bottom:760.093333pt;}
.h6{height:45.525333pt;}
.h3{height:51.216000pt;}
.h9{height:52.032000pt;}
.h4{height:54.061333pt;}
.h5{height:54.922667pt;}
.ha{height:56.906667pt;}
.hc{height:57.813333pt;}
.h7{height:62.597333pt;}
.h8{height:63.162667pt;}
.hb{height:63.594667pt;}
.h2{height:68.288000pt;}
.h1{height:91.050667pt;}
.hd{height:529.333333pt;}
.h0{height:820.000000pt;}
.w0{width:529.333333pt;}
.w1{width:820.000000pt;}
.x0{left:0.000000pt;}
.x10{left:33.489333pt;}
.x1{left:47.733333pt;}
.x8{left:48.813333pt;}
.x15{left:62.688000pt;}
.x2{left:65.266667pt;}
.xa{left:67.733333pt;}
.x9{left:68.804000pt;}
.x3{left:78.617333pt;}
.xb{left:87.733333pt;}
.xc{left:88.813333pt;}
.x4{left:100.074667pt;}
.xd{left:107.733333pt;}
.xe{left:108.813333pt;}
.x11{left:160.089333pt;}
.x6{left:245.813333pt;}
.x5{left:275.736000pt;}
.x13{left:320.676000pt;}
.x7{left:366.680000pt;}
.x12{left:449.182667pt;}
.x14{left:533.422667pt;}
.xf{left:760.093333pt;}
}




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