
    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_0890331b353f86e3fd284966.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_cb94cffbe39a2b7701e6689a.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_96f50e98b94e1b31ec2378f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-16.500000px;}
.v2{vertical-align:-1.002000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.360000px;}
.v1{vertical-align:16.440000px;}
.ls69{letter-spacing:-1.716000px;}
.ls58{letter-spacing:-1.650000px;}
.ls50{letter-spacing:-1.584000px;}
.ls42{letter-spacing:-1.518000px;}
.ls45{letter-spacing:-1.452000px;}
.ls4c{letter-spacing:-1.386000px;}
.ls3b{letter-spacing:-1.320000px;}
.ls59{letter-spacing:-1.254000px;}
.ls24{letter-spacing:-1.188000px;}
.ls16{letter-spacing:-1.122000px;}
.ls32{letter-spacing:-1.056000px;}
.ls34{letter-spacing:-0.990000px;}
.ls17{letter-spacing:-0.924000px;}
.ls29{letter-spacing:-0.858000px;}
.ls60{letter-spacing:-0.840000px;}
.ls8{letter-spacing:-0.792000px;}
.ls37{letter-spacing:-0.780000px;}
.ls18{letter-spacing:-0.726000px;}
.ls2e{letter-spacing:-0.693000px;}
.ls25{letter-spacing:-0.660000px;}
.ls62{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.607500px;}
.ls35{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.594000px;}
.ls61{letter-spacing:-0.585000px;}
.ls3a{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.528000px;}
.ls39{letter-spacing:-0.526500px;}
.ls1e{letter-spacing:-0.486000px;}
.ls1d{letter-spacing:-0.462000px;}
.lsa{letter-spacing:-0.396000px;}
.ls36{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.346500px;}
.ls1b{letter-spacing:-0.330000px;}
.ls53{letter-spacing:-0.324000px;}
.ls26{letter-spacing:-0.270000px;}
.ls1c{letter-spacing:-0.264000px;}
.ls19{letter-spacing:-0.198000px;}
.ls5f{letter-spacing:-0.180000px;}
.ls4b{letter-spacing:-0.162000px;}
.ls28{letter-spacing:-0.148500px;}
.ls9{letter-spacing:-0.132000px;}
.ls2a{letter-spacing:-0.108000px;}
.ls6a{letter-spacing:-0.099000px;}
.ls15{letter-spacing:-0.066000px;}
.lsc{letter-spacing:-0.057000px;}
.ls3c{letter-spacing:-0.054000px;}
.ls6b{letter-spacing:-0.048000px;}
.ls5a{letter-spacing:-0.040500px;}
.ls7{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.030000px;}
.ls5b{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.132000px;}
.ls31{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.264000px;}
.ls23{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.283500px;}
.ls30{letter-spacing:0.300000px;}
.ls4a{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.330000px;}
.ls5c{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.364500px;}
.ls49{letter-spacing:0.378000px;}
.ls21{letter-spacing:0.396000px;}
.ls2f{letter-spacing:0.420000px;}
.ls41{letter-spacing:0.432000px;}
.ls54{letter-spacing:0.445500px;}
.ls1f{letter-spacing:0.462000px;}
.ls43{letter-spacing:0.486000px;}
.ls52{letter-spacing:0.495000px;}
.ls40{letter-spacing:0.526500px;}
.ls0{letter-spacing:0.528000px;}
.ls13{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.594000px;}
.ls5e{letter-spacing:0.600000px;}
.ls64{letter-spacing:0.607500px;}
.ls44{letter-spacing:0.648000px;}
.ls38{letter-spacing:0.660000px;}
.ls68{letter-spacing:0.702000px;}
.ls2d{letter-spacing:0.726000px;}
.ls3d{letter-spacing:0.792000px;}
.ls65{letter-spacing:0.810000px;}
.ls5d{letter-spacing:0.840000px;}
.ls20{letter-spacing:0.858000px;}
.ls4{letter-spacing:0.924000px;}
.ls6{letter-spacing:0.972000px;}
.ls2b{letter-spacing:0.990000px;}
.ls4e{letter-spacing:1.056000px;}
.ls55{letter-spacing:1.122000px;}
.ls47{letter-spacing:1.188000px;}
.ls51{letter-spacing:1.254000px;}
.ls63{letter-spacing:1.320000px;}
.ls4d{letter-spacing:1.350000px;}
.ls66{letter-spacing:1.377000px;}
.ls3f{letter-spacing:1.386000px;}
.ls67{letter-spacing:1.404000px;}
.ls57{letter-spacing:1.452000px;}
.ls56{letter-spacing:1.518000px;}
.ls3e{letter-spacing:1.584000px;}
.ls2c{letter-spacing:1.650000px;}
.ls4f{letter-spacing:2.244000px;}
.ls5{letter-spacing:18.090000px;}
.ls2{letter-spacing:18.210000px;}
.ls46{letter-spacing:775.860000px;}
.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;}
}
.wsae{word-spacing:-18.018000px;}
.ws9b{word-spacing:-17.952000px;}
.wsaf{word-spacing:-17.886000px;}
.ws8e{word-spacing:-17.754000px;}
.ws8d{word-spacing:-17.688000px;}
.ws95{word-spacing:-17.622000px;}
.ws8a{word-spacing:-17.556000px;}
.ws79{word-spacing:-17.424000px;}
.ws6b{word-spacing:-17.358000px;}
.ws82{word-spacing:-17.292000px;}
.ws8c{word-spacing:-17.160000px;}
.ws70{word-spacing:-17.094000px;}
.ws8b{word-spacing:-17.028000px;}
.ws69{word-spacing:-16.962000px;}
.ws35{word-spacing:-16.896000px;}
.ws39{word-spacing:-16.830000px;}
.ws1c{word-spacing:-16.764000px;}
.ws53{word-spacing:-16.698000px;}
.ws1a{word-spacing:-16.632000px;}
.ws5e{word-spacing:-16.566000px;}
.ws18{word-spacing:-16.500000px;}
.ws38{word-spacing:-16.434000px;}
.ws3c{word-spacing:-16.368000px;}
.ws1d{word-spacing:-16.302000px;}
.ws54{word-spacing:-16.236000px;}
.ws1b{word-spacing:-16.170000px;}
.ws4b{word-spacing:-16.104000px;}
.ws5c{word-spacing:-16.038000px;}
.ws9a{word-spacing:-15.972000px;}
.ws37{word-spacing:-15.906000px;}
.ws36{word-spacing:-15.840000px;}
.ws56{word-spacing:-15.774000px;}
.ws55{word-spacing:-15.708000px;}
.ws4e{word-spacing:-15.642000px;}
.ws19{word-spacing:-15.576000px;}
.ws86{word-spacing:-15.510000px;}
.ws5b{word-spacing:-15.444000px;}
.ws76{word-spacing:-15.378000px;}
.wsa0{word-spacing:-15.360000px;}
.ws9c{word-spacing:-15.246000px;}
.ws89{word-spacing:-15.180000px;}
.ws9e{word-spacing:-15.060000px;}
.ws78{word-spacing:-15.048000px;}
.ws5f{word-spacing:-15.000000px;}
.ws96{word-spacing:-14.982000px;}
.wsbe{word-spacing:-14.850000px;}
.wsa1{word-spacing:-14.820000px;}
.ws0{word-spacing:-14.478000px;}
.ws9f{word-spacing:-14.460000px;}
.wsba{word-spacing:-14.310000px;}
.ws60{word-spacing:-14.220000px;}
.wsa2{word-spacing:-14.160000px;}
.ws7b{word-spacing:-14.148000px;}
.wsb8{word-spacing:-14.094000px;}
.ws72{word-spacing:-13.986000px;}
.ws84{word-spacing:-13.824000px;}
.ws4f{word-spacing:-13.770000px;}
.wsb4{word-spacing:-13.608000px;}
.ws2{word-spacing:-13.500000px;}
.ws6d{word-spacing:-13.446000px;}
.wsb7{word-spacing:-12.969000px;}
.ws62{word-spacing:-12.960000px;}
.wsa4{word-spacing:-12.852000px;}
.wsb3{word-spacing:-12.573000px;}
.ws3a{word-spacing:-12.375000px;}
.wsbc{word-spacing:-12.276000px;}
.ws4d{word-spacing:-12.226500px;}
.ws77{word-spacing:-12.177000px;}
.ws5d{word-spacing:-12.028500px;}
.ws20{word-spacing:-12.000000px;}
.wsc2{word-spacing:-11.952000px;}
.ws1e{word-spacing:-11.781000px;}
.ws57{word-spacing:-11.682000px;}
.wsbd{word-spacing:-11.502000px;}
.ws7f{word-spacing:-11.250000px;}
.ws5{word-spacing:-11.097000px;}
.ws7a{word-spacing:-10.773000px;}
.wsb9{word-spacing:-10.732500px;}
.wsa3{word-spacing:-10.665000px;}
.ws71{word-spacing:-10.651500px;}
.ws91{word-spacing:-10.611000px;}
.ws92{word-spacing:-10.570500px;}
.ws83{word-spacing:-10.489500px;}
.ws3d{word-spacing:-10.408500px;}
.ws3{word-spacing:-10.125000px;}
.ws9d{word-spacing:-10.084500px;}
.ws90{word-spacing:-9.801000px;}
.ws61{word-spacing:-9.598500px;}
.ws1{word-spacing:-9.517500px;}
.ws58{word-spacing:-0.858000px;}
.wsc{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.726000px;}
.ws21{word-spacing:-0.660000px;}
.wsad{word-spacing:-0.648000px;}
.ws27{word-spacing:-0.594000px;}
.ws50{word-spacing:-0.540000px;}
.ws2a{word-spacing:-0.528000px;}
.ws52{word-spacing:-0.486000px;}
.wse{word-spacing:-0.462000px;}
.ws43{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.396000px;}
.ws42{word-spacing:-0.378000px;}
.ws66{word-spacing:-0.360000px;}
.ws2d{word-spacing:-0.330000px;}
.wsb2{word-spacing:-0.270000px;}
.ws29{word-spacing:-0.264000px;}
.wsa7{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.198000px;}
.ws65{word-spacing:-0.180000px;}
.ws32{word-spacing:-0.162000px;}
.ws25{word-spacing:-0.132000px;}
.ws68{word-spacing:-0.108000px;}
.ws8{word-spacing:-0.066000px;}
.ws63{word-spacing:-0.060000px;}
.ws15{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.wsc3{word-spacing:0.054000px;}
.ws67{word-spacing:0.060000px;}
.ws6f{word-spacing:0.066000px;}
.ws85{word-spacing:0.108000px;}
.ws24{word-spacing:0.132000px;}
.wsab{word-spacing:0.180000px;}
.ws6e{word-spacing:0.198000px;}
.ws22{word-spacing:0.264000px;}
.ws51{word-spacing:0.270000px;}
.wsb{word-spacing:0.330000px;}
.ws17{word-spacing:0.378000px;}
.ws3e{word-spacing:0.396000px;}
.wsa8{word-spacing:0.420000px;}
.ws16{word-spacing:0.432000px;}
.ws40{word-spacing:0.462000px;}
.ws2c{word-spacing:0.528000px;}
.ws87{word-spacing:0.594000px;}
.wsac{word-spacing:0.648000px;}
.ws10{word-spacing:0.660000px;}
.ws7c{word-spacing:0.702000px;}
.wsa5{word-spacing:0.720000px;}
.ws14{word-spacing:0.726000px;}
.ws33{word-spacing:0.756000px;}
.ws3f{word-spacing:0.792000px;}
.ws73{word-spacing:0.810000px;}
.ws2b{word-spacing:0.858000px;}
.ws74{word-spacing:0.864000px;}
.wsa9{word-spacing:0.900000px;}
.ws75{word-spacing:0.918000px;}
.ws2e{word-spacing:0.924000px;}
.ws59{word-spacing:0.990000px;}
.ws41{word-spacing:1.026000px;}
.ws7{word-spacing:1.056000px;}
.ws34{word-spacing:1.080000px;}
.ws2f{word-spacing:1.122000px;}
.wsa{word-spacing:1.138500px;}
.wsaa{word-spacing:1.140000px;}
.ws13{word-spacing:1.188000px;}
.ws64{word-spacing:1.200000px;}
.wsb5{word-spacing:1.242000px;}
.wsf{word-spacing:1.254000px;}
.ws23{word-spacing:1.320000px;}
.ws28{word-spacing:1.386000px;}
.wsa6{word-spacing:1.440000px;}
.ws26{word-spacing:1.452000px;}
.ws9{word-spacing:1.518000px;}
.ws12{word-spacing:1.584000px;}
.ws30{word-spacing:1.650000px;}
.ws99{word-spacing:1.782000px;}
.wsbf{word-spacing:2.052000px;}
.wsc0{word-spacing:2.106000px;}
.ws97{word-spacing:2.508000px;}
.ws98{word-spacing:2.838000px;}
.wsbb{word-spacing:4.125000px;}
.ws93{word-spacing:4.422000px;}
.ws5a{word-spacing:4.686000px;}
.wsb1{word-spacing:5.091000px;}
.ws88{word-spacing:5.346000px;}
.wsb0{word-spacing:5.511000px;}
.ws8f{word-spacing:5.580000px;}
.ws94{word-spacing:5.805000px;}
.ws6a{word-spacing:7.524000px;}
.ws6c{word-spacing:9.018000px;}
.ws4a{word-spacing:21.054000px;}
.ws46{word-spacing:21.120000px;}
.ws44{word-spacing:21.846000px;}
.ws3b{word-spacing:23.100000px;}
.wsb6{word-spacing:24.024000px;}
.ws81{word-spacing:24.678000px;}
.ws49{word-spacing:27.192000px;}
.ws48{word-spacing:28.578000px;}
.ws47{word-spacing:29.766000px;}
.ws45{word-spacing:30.294000px;}
.ws4c{word-spacing:34.254000px;}
.ws1f{word-spacing:35.712000px;}
.wsc1{word-spacing:35.904000px;}
.ws4{word-spacing:36.018000px;}
.ws7d{word-spacing:278.460000px;}
.ws80{word-spacing:320.160000px;}
.ws7e{word-spacing:350.160000px;}
._9{margin-left:-9.108000px;}
._d{margin-left:-7.788000px;}
._8{margin-left:-6.426000px;}
._1a{margin-left:-5.346000px;}
._5{margin-left:-4.158000px;}
._1{margin-left:-3.096000px;}
._0{margin-left:-2.088000px;}
._6{margin-left:-1.056000px;}
._2{width:1.254000px;}
._c{width:2.832000px;}
._19{width:4.290000px;}
._1b{width:5.478000px;}
._b{width:7.326000px;}
._e{width:9.018000px;}
._17{width:19.494000px;}
._f{width:22.518000px;}
._18{width:38.394000px;}
._22{width:43.428000px;}
._3{width:48.072000px;}
._4{width:50.706000px;}
._1d{width:57.528000px;}
._23{width:184.260000px;}
._13{width:210.108000px;}
._21{width:217.080000px;}
._11{width:365.160000px;}
._1f{width:377.220000px;}
._14{width:395.160000px;}
._20{width:427.680000px;}
._24{width:524.400000px;}
._15{width:553.866000px;}
._10{width:567.648000px;}
._1e{width:641.520000px;}
._12{width:659.100000px;}
._25{width:836.688000px;}
._a{width:861.168000px;}
._16{width:987.048000px;}
._1c{width:1050.072000px;}
._7{width:1074.456000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y14e{bottom:45.792000px;}
.y7d{bottom:45.945000px;}
.yb1{bottom:45.963000px;}
.y163{bottom:45.969000px;}
.y228{bottom:46.089000px;}
.y116{bottom:46.458000px;}
.y13f{bottom:46.494000px;}
.y24b{bottom:46.992000px;}
.y61{bottom:47.004000px;}
.y4f{bottom:47.196000px;}
.yf0{bottom:47.202000px;}
.y258{bottom:47.208000px;}
.ycd{bottom:47.214000px;}
.y89{bottom:47.220000px;}
.y23{bottom:48.564000px;}
.y154{bottom:49.605000px;}
.y14d{bottom:60.048000px;}
.y7c{bottom:60.201000px;}
.y162{bottom:60.213000px;}
.yb0{bottom:60.219000px;}
.y227{bottom:60.345000px;}
.y115{bottom:60.714000px;}
.y13e{bottom:60.750000px;}
.y24a{bottom:61.248000px;}
.y60{bottom:61.260000px;}
.y4e{bottom:61.452000px;}
.yef{bottom:61.458000px;}
.y1a1{bottom:61.464000px;}
.ycc{bottom:61.470000px;}
.y22{bottom:62.814000px;}
.y153{bottom:66.847500px;}
.y14c{bottom:74.304000px;}
.y7b{bottom:74.457000px;}
.y161{bottom:74.469000px;}
.yaf{bottom:74.475000px;}
.y226{bottom:74.601000px;}
.y114{bottom:74.970000px;}
.y249{bottom:75.504000px;}
.y4d{bottom:75.708000px;}
.yee{bottom:75.714000px;}
.y1a0{bottom:75.720000px;}
.y21{bottom:77.064000px;}
.y88{bottom:83.805000px;}
.y152{bottom:84.090000px;}
.y14b{bottom:88.560000px;}
.y7a{bottom:88.713000px;}
.y160{bottom:88.725000px;}
.y225{bottom:88.857000px;}
.y248{bottom:89.760000px;}
.y4c{bottom:89.964000px;}
.yed{bottom:89.970000px;}
.y180{bottom:90.790500px;}
.y20{bottom:91.320000px;}
.y5f{bottom:96.643500px;}
.y87{bottom:101.047500px;}
.y1d9{bottom:101.167500px;}
.ycb{bottom:101.202000px;}
.y151{bottom:101.332500px;}
.y79{bottom:102.969000px;}
.y224{bottom:103.113000px;}
.y4b{bottom:104.220000px;}
.y17f{bottom:108.033000px;}
.y5e{bottom:113.886000px;}
.yae{bottom:115.297500px;}
.y78{bottom:117.225000px;}
.y223{bottom:117.369000px;}
.y278{bottom:117.420000px;}
.y13d{bottom:117.682500px;}
.y86{bottom:118.290000px;}
.y257{bottom:118.305000px;}
.y1d8{bottom:118.410000px;}
.y113{bottom:118.425000px;}
.yca{bottom:118.444500px;}
.y19f{bottom:118.507500px;}
.y150{bottom:118.575000px;}
.y17e{bottom:125.275500px;}
.y5d{bottom:131.128500px;}
.y222{bottom:131.625000px;}
.y18{bottom:132.045000px;}
.yad{bottom:132.540000px;}
.y277{bottom:134.662500px;}
.y13c{bottom:134.925000px;}
.y85{bottom:135.532500px;}
.y256{bottom:135.547500px;}
.y15f{bottom:135.577500px;}
.y14a{bottom:135.607500px;}
.y1d7{bottom:135.652500px;}
.y112{bottom:135.667500px;}
.yc9{bottom:135.687000px;}
.yec{bottom:135.739500px;}
.y19e{bottom:135.750000px;}
.y247{bottom:135.784500px;}
.y14f{bottom:135.817500px;}
.y17d{bottom:142.518000px;}
.y17{bottom:149.287500px;}
.yac{bottom:149.782500px;}
.y276{bottom:151.905000px;}
.y13b{bottom:152.167500px;}
.y77{bottom:152.790000px;}
.y15e{bottom:152.820000px;}
.y4a{bottom:152.827500px;}
.y149{bottom:152.850000px;}
.y1d6{bottom:152.895000px;}
.y111{bottom:152.910000px;}
.yc8{bottom:152.929500px;}
.yeb{bottom:152.982000px;}
.y19d{bottom:152.992500px;}
.y246{bottom:153.027000px;}
.y84{bottom:153.060000px;}
.y1fe{bottom:155.062500px;}
.y5c{bottom:157.630500px;}
.y17c{bottom:159.760500px;}
.y1c6{bottom:162.645000px;}
.y16{bottom:166.642500px;}
.yab{bottom:167.145000px;}
.y275{bottom:169.147500px;}
.y13a{bottom:169.410000px;}
.y76{bottom:170.032500px;}
.y15d{bottom:170.062500px;}
.y49{bottom:170.070000px;}
.y148{bottom:170.092500px;}
.y1d5{bottom:170.137500px;}
.y110{bottom:170.152500px;}
.yc7{bottom:170.172000px;}
.y19c{bottom:170.235000px;}
.y245{bottom:170.269500px;}
.y83{bottom:170.302500px;}
.y1fd{bottom:172.305000px;}
.y5b{bottom:174.873000px;}
.y17b{bottom:177.003000px;}
.yea{bottom:178.854000px;}
.y1c5{bottom:179.887500px;}
.y15{bottom:183.885000px;}
.yaa{bottom:184.387500px;}
.y274{bottom:186.390000px;}
.y139{bottom:186.652500px;}
.y15c{bottom:187.305000px;}
.y48{bottom:187.312500px;}
.y147{bottom:187.335000px;}
.y255{bottom:187.350000px;}
.y1d4{bottom:187.380000px;}
.y10f{bottom:187.395000px;}
.yc6{bottom:187.414500px;}
.y75{bottom:187.416000px;}
.y19b{bottom:187.477500px;}
.y244{bottom:187.512000px;}
.y221{bottom:187.537500px;}
.y82{bottom:187.545000px;}
.y1fc{bottom:189.547500px;}
.y5a{bottom:192.115500px;}
.y17a{bottom:194.245500px;}
.y1c4{bottom:197.130000px;}
.y14{bottom:201.127500px;}
.ya9{bottom:201.630000px;}
.y273{bottom:203.632500px;}
.y138{bottom:203.895000px;}
.y15b{bottom:204.547500px;}
.y47{bottom:204.555000px;}
.y146{bottom:204.577500px;}
.y254{bottom:204.592500px;}
.y1d3{bottom:204.622500px;}
.y10e{bottom:204.637500px;}
.yc5{bottom:204.657000px;}
.y74{bottom:204.658500px;}
.y19a{bottom:204.720000px;}
.y243{bottom:204.754500px;}
.y220{bottom:204.780000px;}
.y81{bottom:204.787500px;}
.y1fb{bottom:206.790000px;}
.y59{bottom:209.358000px;}
.y179{bottom:211.488000px;}
.y1c3{bottom:214.372500px;}
.y13{bottom:218.370000px;}
.ya8{bottom:218.872500px;}
.y272{bottom:220.875000px;}
.y137{bottom:221.137500px;}
.y15a{bottom:221.790000px;}
.y46{bottom:221.797500px;}
.y145{bottom:221.820000px;}
.y253{bottom:221.835000px;}
.y1d2{bottom:221.865000px;}
.y10d{bottom:221.880000px;}
.yc4{bottom:221.899500px;}
.y73{bottom:221.901000px;}
.y199{bottom:221.962500px;}
.ye9{bottom:221.985000px;}
.y242{bottom:221.997000px;}
.y21f{bottom:222.022500px;}
.y80{bottom:222.030000px;}
.y1fa{bottom:224.032500px;}
.y58{bottom:226.600500px;}
.y1c2{bottom:231.615000px;}
.y12{bottom:235.612500px;}
.ya7{bottom:236.115000px;}
.y271{bottom:238.117500px;}
.y136{bottom:238.380000px;}
.y159{bottom:239.032500px;}
.y45{bottom:239.040000px;}
.y144{bottom:239.062500px;}
.y252{bottom:239.077500px;}
.y1d1{bottom:239.107500px;}
.y10c{bottom:239.122500px;}
.yc3{bottom:239.142000px;}
.y72{bottom:239.143500px;}
.y198{bottom:239.205000px;}
.ye8{bottom:239.227500px;}
.y241{bottom:239.239500px;}
.y21e{bottom:239.265000px;}
.y7f{bottom:239.272500px;}
.y1f9{bottom:241.507500px;}
.y57{bottom:243.843000px;}
.y178{bottom:244.488000px;}
.y1c1{bottom:248.857500px;}
.y11{bottom:252.855000px;}
.ya6{bottom:253.357500px;}
.y270{bottom:255.360000px;}
.y135{bottom:255.622500px;}
.y44{bottom:256.282500px;}
.y143{bottom:256.305000px;}
.y251{bottom:256.320000px;}
.y1d0{bottom:256.350000px;}
.y10b{bottom:256.365000px;}
.yc2{bottom:256.384500px;}
.y71{bottom:256.386000px;}
.y197{bottom:256.447500px;}
.ye7{bottom:256.470000px;}
.y240{bottom:256.482000px;}
.y21d{bottom:256.507500px;}
.y7e{bottom:256.515000px;}
.y1f8{bottom:258.750000px;}
.y56{bottom:261.085500px;}
.y177{bottom:261.730500px;}
.y1c0{bottom:266.100000px;}
.y10{bottom:270.097500px;}
.ya5{bottom:270.600000px;}
.y26f{bottom:272.602500px;}
.y134{bottom:272.865000px;}
.y142{bottom:273.547500px;}
.y250{bottom:273.562500px;}
.y1cf{bottom:273.592500px;}
.y10a{bottom:273.607500px;}
.yc1{bottom:273.627000px;}
.y70{bottom:273.628500px;}
.y196{bottom:273.690000px;}
.ye6{bottom:273.712500px;}
.y158{bottom:273.724500px;}
.y21c{bottom:273.750000px;}
.y43{bottom:273.757500px;}
.y1f7{bottom:275.992500px;}
.y55{bottom:278.328000px;}
.y176{bottom:278.973000px;}
.y1bf{bottom:283.342500px;}
.yf{bottom:287.340000px;}
.ya4{bottom:287.842500px;}
.y26e{bottom:289.845000px;}
.y133{bottom:290.107500px;}
.y141{bottom:290.790000px;}
.y24f{bottom:290.805000px;}
.y1ce{bottom:290.835000px;}
.y109{bottom:290.850000px;}
.yc0{bottom:290.869500px;}
.y6f{bottom:290.871000px;}
.y195{bottom:290.932500px;}
.ye5{bottom:290.955000px;}
.y157{bottom:290.967000px;}
.y21b{bottom:290.992500px;}
.y42{bottom:291.000000px;}
.y1f6{bottom:293.235000px;}
.y54{bottom:295.570500px;}
.y175{bottom:296.215500px;}
.y1be{bottom:300.585000px;}
.ye{bottom:304.582500px;}
.ya3{bottom:305.085000px;}
.y26d{bottom:307.087500px;}
.y132{bottom:307.350000px;}
.y140{bottom:308.032500px;}
.y24e{bottom:308.047500px;}
.y1cd{bottom:308.077500px;}
.y108{bottom:308.092500px;}
.ybf{bottom:308.112000px;}
.y6e{bottom:308.113500px;}
.y194{bottom:308.175000px;}
.ye4{bottom:308.197500px;}
.y156{bottom:308.209500px;}
.y21a{bottom:308.235000px;}
.y41{bottom:308.242500px;}
.y1f5{bottom:310.477500px;}
.y53{bottom:312.813000px;}
.y174{bottom:313.458000px;}
.y1bd{bottom:317.827500px;}
.yd{bottom:321.825000px;}
.ya2{bottom:322.327500px;}
.y26c{bottom:324.330000px;}
.y131{bottom:324.592500px;}
.y24d{bottom:325.290000px;}
.y1cc{bottom:325.320000px;}
.y107{bottom:325.335000px;}
.y6d{bottom:325.356000px;}
.y193{bottom:325.417500px;}
.ye3{bottom:325.440000px;}
.y23f{bottom:325.452000px;}
.y219{bottom:325.477500px;}
.y40{bottom:325.485000px;}
.y1f4{bottom:327.720000px;}
.y52{bottom:330.055500px;}
.y173{bottom:330.700500px;}
.y155{bottom:334.081500px;}
.y1bc{bottom:335.070000px;}
.yc{bottom:339.067500px;}
.ya1{bottom:339.570000px;}
.y26b{bottom:341.572500px;}
.y130{bottom:341.835000px;}
.y24c{bottom:342.532500px;}
.y1cb{bottom:342.562500px;}
.y106{bottom:342.577500px;}
.ybe{bottom:342.613500px;}
.y192{bottom:342.660000px;}
.ye2{bottom:342.682500px;}
.y23e{bottom:342.694500px;}
.y218{bottom:342.720000px;}
.y3f{bottom:342.727500px;}
.y1f3{bottom:344.962500px;}
.y172{bottom:347.943000px;}
.y1bb{bottom:352.312500px;}
.y51{bottom:355.927500px;}
.yb{bottom:356.310000px;}
.ya0{bottom:356.812500px;}
.y26a{bottom:358.815000px;}
.y12f{bottom:359.077500px;}
.y1ca{bottom:359.805000px;}
.y105{bottom:359.820000px;}
.ybd{bottom:359.856000px;}
.y6c{bottom:359.857500px;}
.y191{bottom:359.902500px;}
.ye1{bottom:359.925000px;}
.y23d{bottom:359.937000px;}
.y217{bottom:359.962500px;}
.y3e{bottom:359.970000px;}
.y1f2{bottom:362.205000px;}
.y171{bottom:365.185500px;}
.y1ba{bottom:369.555000px;}
.y50{bottom:373.170000px;}
.ya{bottom:373.552500px;}
.y9f{bottom:374.055000px;}
.y269{bottom:376.057500px;}
.y12e{bottom:376.320000px;}
.y1c9{bottom:377.047500px;}
.y104{bottom:377.062500px;}
.ybc{bottom:377.098500px;}
.y6b{bottom:377.100000px;}
.y190{bottom:377.145000px;}
.ye0{bottom:377.167500px;}
.y23c{bottom:377.179500px;}
.y216{bottom:377.205000px;}
.y3d{bottom:377.212500px;}
.y1f1{bottom:379.447500px;}
.y170{bottom:382.428000px;}
.y1b9{bottom:386.797500px;}
.y9{bottom:390.795000px;}
.y9e{bottom:391.297500px;}
.y268{bottom:393.300000px;}
.y12d{bottom:393.562500px;}
.y1c8{bottom:394.290000px;}
.y103{bottom:394.305000px;}
.ybb{bottom:394.341000px;}
.y6a{bottom:394.342500px;}
.y18f{bottom:394.387500px;}
.ydf{bottom:394.410000px;}
.y23b{bottom:394.422000px;}
.y215{bottom:394.447500px;}
.y3c{bottom:394.455000px;}
.y1f0{bottom:396.690000px;}
.y16f{bottom:399.670500px;}
.y1b8{bottom:404.040000px;}
.y8{bottom:408.037500px;}
.y9d{bottom:408.540000px;}
.y267{bottom:410.542500px;}
.y12c{bottom:410.805000px;}
.y1c7{bottom:411.532500px;}
.y102{bottom:411.547500px;}
.yba{bottom:411.583500px;}
.y69{bottom:411.585000px;}
.y18e{bottom:411.630000px;}
.yde{bottom:411.652500px;}
.y23a{bottom:411.664500px;}
.y214{bottom:411.690000px;}
.y3b{bottom:411.697500px;}
.y1ef{bottom:413.932500px;}
.y16e{bottom:416.913000px;}
.y1b7{bottom:421.282500px;}
.y7{bottom:425.295000px;}
.y9c{bottom:425.782500px;}
.y266{bottom:427.785000px;}
.y12b{bottom:428.047500px;}
.y101{bottom:428.790000px;}
.yb9{bottom:428.826000px;}
.y68{bottom:428.827500px;}
.y18d{bottom:428.872500px;}
.ydd{bottom:428.895000px;}
.y239{bottom:428.907000px;}
.y213{bottom:428.932500px;}
.y3a{bottom:428.940000px;}
.y1ee{bottom:431.175000px;}
.y16d{bottom:434.155500px;}
.y1b6{bottom:438.600000px;}
.y6{bottom:442.537500px;}
.y9b{bottom:443.025000px;}
.y265{bottom:445.027500px;}
.y12a{bottom:445.290000px;}
.y100{bottom:446.032500px;}
.yb8{bottom:446.068500px;}
.y67{bottom:446.070000px;}
.y18c{bottom:446.115000px;}
.ydc{bottom:446.137500px;}
.y238{bottom:446.149500px;}
.y212{bottom:446.175000px;}
.y39{bottom:446.182500px;}
.y1ed{bottom:448.417500px;}
.y16c{bottom:451.398000px;}
.y1b5{bottom:455.842500px;}
.y5{bottom:459.780000px;}
.y264{bottom:462.352500px;}
.y129{bottom:462.532500px;}
.yb7{bottom:463.311000px;}
.y66{bottom:463.312500px;}
.y18b{bottom:463.357500px;}
.ydb{bottom:463.380000px;}
.yff{bottom:463.387500px;}
.y211{bottom:463.417500px;}
.y38{bottom:463.425000px;}
.y1ec{bottom:465.660000px;}
.y16b{bottom:468.640500px;}
.y1b4{bottom:473.085000px;}
.y9a{bottom:477.525000px;}
.y263{bottom:479.595000px;}
.y128{bottom:479.782500px;}
.yb6{bottom:480.553500px;}
.y65{bottom:480.555000px;}
.y18a{bottom:480.600000px;}
.yda{bottom:480.622500px;}
.yfe{bottom:480.630000px;}
.y237{bottom:480.651000px;}
.y210{bottom:480.660000px;}
.y37{bottom:480.667500px;}
.y1eb{bottom:482.902500px;}
.y16a{bottom:485.883000px;}
.y1b3{bottom:490.327500px;}
.y99{bottom:493.275000px;}
.y262{bottom:496.837500px;}
.y127{bottom:497.025000px;}
.yb5{bottom:497.796000px;}
.y64{bottom:497.797500px;}
.y189{bottom:497.842500px;}
.yd9{bottom:497.865000px;}
.yfd{bottom:497.872500px;}
.y236{bottom:497.893500px;}
.y20f{bottom:497.902500px;}
.y36{bottom:497.910000px;}
.y1ea{bottom:500.145000px;}
.y169{bottom:503.125500px;}
.y1b2{bottom:507.570000px;}
.y98{bottom:509.025000px;}
.y1b{bottom:510.710250px;}
.y261{bottom:514.080000px;}
.yb4{bottom:515.038500px;}
.y63{bottom:515.040000px;}
.y188{bottom:515.085000px;}
.yd8{bottom:515.107500px;}
.yfc{bottom:515.115000px;}
.y235{bottom:515.136000px;}
.y20e{bottom:515.145000px;}
.y35{bottom:515.152500px;}
.y1e9{bottom:517.387500px;}
.y168{bottom:520.368000px;}
.y97{bottom:524.775000px;}
.y1b1{bottom:524.812500px;}
.y1d{bottom:525.701250px;}
.y260{bottom:531.322500px;}
.y1a{bottom:531.714750px;}
.yb3{bottom:532.281000px;}
.y62{bottom:532.282500px;}
.y187{bottom:532.327500px;}
.yd7{bottom:532.350000px;}
.yfb{bottom:532.357500px;}
.y234{bottom:532.378500px;}
.y20d{bottom:532.387500px;}
.y34{bottom:532.395000px;}
.y1e8{bottom:534.630000px;}
.y167{bottom:537.610500px;}
.y96{bottom:540.525000px;}
.y1b0{bottom:542.055000px;}
.y126{bottom:542.739000px;}
.y1c{bottom:546.705750px;}
.y19{bottom:546.720000px;}
.y25f{bottom:548.565000px;}
.yb2{bottom:549.523500px;}
.y186{bottom:549.570000px;}
.yd6{bottom:549.592500px;}
.yfa{bottom:549.600000px;}
.y233{bottom:549.621000px;}
.y20c{bottom:549.630000px;}
.y33{bottom:549.637500px;}
.y1e7{bottom:551.872500px;}
.y95{bottom:556.275000px;}
.y125{bottom:556.995000px;}
.y1af{bottom:559.297500px;}
.y25e{bottom:565.807500px;}
.y185{bottom:566.812500px;}
.yd5{bottom:566.835000px;}
.yf9{bottom:566.842500px;}
.y232{bottom:566.863500px;}
.y166{bottom:566.865000px;}
.y20b{bottom:566.872500px;}
.y32{bottom:566.880000px;}
.y1e6{bottom:569.115000px;}
.y1e{bottom:570.720000px;}
.y124{bottom:571.251000px;}
.y94{bottom:572.025000px;}
.y1ae{bottom:576.540000px;}
.y25d{bottom:583.050000px;}
.y184{bottom:584.055000px;}
.yd4{bottom:584.077500px;}
.yf8{bottom:584.085000px;}
.y231{bottom:584.106000px;}
.y165{bottom:584.107500px;}
.y20a{bottom:584.115000px;}
.y31{bottom:584.122500px;}
.y123{bottom:585.507000px;}
.y1e5{bottom:586.357500px;}
.y93{bottom:587.775000px;}
.y1ad{bottom:593.782500px;}
.y122{bottom:599.763000px;}
.y25c{bottom:600.292500px;}
.y183{bottom:601.297500px;}
.yd3{bottom:601.320000px;}
.yf7{bottom:601.327500px;}
.y230{bottom:601.348500px;}
.y164{bottom:601.350000px;}
.y209{bottom:601.357500px;}
.y30{bottom:601.365000px;}
.y1e4{bottom:603.600000px;}
.y1ac{bottom:611.025000px;}
.y121{bottom:614.019000px;}
.y25b{bottom:617.535000px;}
.y182{bottom:618.540000px;}
.yd2{bottom:618.562500px;}
.yf6{bottom:618.570000px;}
.y22f{bottom:618.591000px;}
.y92{bottom:618.592500px;}
.y208{bottom:618.600000px;}
.y2f{bottom:618.607500px;}
.y1e3{bottom:620.842500px;}
.y120{bottom:628.275000px;}
.y25a{bottom:634.777500px;}
.y181{bottom:635.782500px;}
.yd1{bottom:635.805000px;}
.yf5{bottom:635.812500px;}
.y22e{bottom:635.833500px;}
.y91{bottom:635.835000px;}
.y207{bottom:635.842500px;}
.y2e{bottom:635.850000px;}
.y1e2{bottom:638.085000px;}
.y11f{bottom:648.525000px;}
.y1ab{bottom:650.775000px;}
.y259{bottom:652.020000px;}
.yd0{bottom:653.047500px;}
.yf4{bottom:653.055000px;}
.y22d{bottom:653.076000px;}
.y90{bottom:653.077500px;}
.y206{bottom:653.085000px;}
.y2d{bottom:653.092500px;}
.y1e1{bottom:655.327500px;}
.y1aa{bottom:666.525000px;}
.y11e{bottom:670.275000px;}
.ycf{bottom:670.290000px;}
.yf3{bottom:670.297500px;}
.y22c{bottom:670.318500px;}
.y8f{bottom:670.320000px;}
.y205{bottom:670.327500px;}
.y2c{bottom:670.335000px;}
.y1e0{bottom:672.570000px;}
.y1a9{bottom:682.275000px;}
.y11d{bottom:686.025000px;}
.yce{bottom:687.532500px;}
.yf2{bottom:687.540000px;}
.y22b{bottom:687.561000px;}
.y8e{bottom:687.562500px;}
.y204{bottom:687.570000px;}
.y2b{bottom:687.577500px;}
.y1df{bottom:689.812500px;}
.y1a8{bottom:698.025000px;}
.y11c{bottom:701.775000px;}
.yf1{bottom:704.782500px;}
.y22a{bottom:704.803500px;}
.y8d{bottom:704.805000px;}
.y203{bottom:704.812500px;}
.y2a{bottom:704.820000px;}
.y1de{bottom:707.055000px;}
.y27e{bottom:713.670000px;}
.y1a7{bottom:713.775000px;}
.y11b{bottom:717.525000px;}
.y229{bottom:722.046000px;}
.y8c{bottom:722.047500px;}
.y202{bottom:722.055000px;}
.y29{bottom:722.062500px;}
.y4{bottom:722.206500px;}
.y1dd{bottom:724.297500px;}
.y27d{bottom:729.420000px;}
.y1a6{bottom:729.525000px;}
.y11a{bottom:733.275000px;}
.y3{bottom:737.205000px;}
.y8b{bottom:739.290000px;}
.y201{bottom:739.297500px;}
.y28{bottom:739.305000px;}
.y1dc{bottom:741.540000px;}
.y27c{bottom:745.170000px;}
.y1a5{bottom:745.275000px;}
.y119{bottom:749.025000px;}
.y2{bottom:755.955000px;}
.y8a{bottom:756.532500px;}
.y200{bottom:756.540000px;}
.y27{bottom:756.547500px;}
.y1db{bottom:758.782500px;}
.y1a4{bottom:761.025000px;}
.y118{bottom:764.775000px;}
.y27b{bottom:766.920000px;}
.y1ff{bottom:773.782500px;}
.y26{bottom:773.790000px;}
.y1da{bottom:776.017500px;}
.y1a3{bottom:776.775000px;}
.y117{bottom:786.525000px;}
.y27a{bottom:788.670000px;}
.y25{bottom:791.032500px;}
.y1a2{bottom:792.525000px;}
.y1{bottom:800.955000px;}
.y24{bottom:808.275000px;}
.y279{bottom:810.420000px;}
.y1f{bottom:855.105000px;}
.h6{height:51.216000px;}
.h3{height:57.618000px;}
.hb{height:57.666000px;}
.hf{height:57.690000px;}
.h7{height:58.536000px;}
.h8{height:58.560000px;}
.hd{height:58.584000px;}
.h5{height:60.819000px;}
.ha{height:64.020000px;}
.hc{height:65.040000px;}
.h4{height:70.422000px;}
.he{height:70.452000px;}
.h9{height:71.544000px;}
.h2{height:76.824000px;}
.h1{height:102.432000px;}
.h0{height:922.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x1{left:53.700000px;}
.x9{left:54.915000px;}
.xe{left:69.915000px;}
.x2{left:76.210500px;}
.xa{left:77.404500px;}
.xc{left:79.581000px;}
.x3{left:96.105000px;}
.xf{left:98.700000px;}
.xb{left:99.915000px;}
.x4{left:145.367250px;}
.x5{left:177.116250px;}
.x10{left:204.165000px;}
.x7{left:273.030000px;}
.x6{left:310.197000px;}
.xd{left:331.290000px;}
.x8{left:418.635000px;}
@media print{
.v4{vertical-align:-14.666667pt;}
.v2{vertical-align:-0.890667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.653333pt;}
.v1{vertical-align:14.613333pt;}
.ls69{letter-spacing:-1.525333pt;}
.ls58{letter-spacing:-1.466667pt;}
.ls50{letter-spacing:-1.408000pt;}
.ls42{letter-spacing:-1.349333pt;}
.ls45{letter-spacing:-1.290667pt;}
.ls4c{letter-spacing:-1.232000pt;}
.ls3b{letter-spacing:-1.173333pt;}
.ls59{letter-spacing:-1.114667pt;}
.ls24{letter-spacing:-1.056000pt;}
.ls16{letter-spacing:-0.997333pt;}
.ls32{letter-spacing:-0.938667pt;}
.ls34{letter-spacing:-0.880000pt;}
.ls17{letter-spacing:-0.821333pt;}
.ls29{letter-spacing:-0.762667pt;}
.ls60{letter-spacing:-0.746667pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls37{letter-spacing:-0.693333pt;}
.ls18{letter-spacing:-0.645333pt;}
.ls2e{letter-spacing:-0.616000pt;}
.ls25{letter-spacing:-0.586667pt;}
.ls62{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.540000pt;}
.ls35{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.528000pt;}
.ls61{letter-spacing:-0.520000pt;}
.ls3a{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.469333pt;}
.ls39{letter-spacing:-0.468000pt;}
.ls1e{letter-spacing:-0.432000pt;}
.ls1d{letter-spacing:-0.410667pt;}
.lsa{letter-spacing:-0.352000pt;}
.ls36{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.308000pt;}
.ls1b{letter-spacing:-0.293333pt;}
.ls53{letter-spacing:-0.288000pt;}
.ls26{letter-spacing:-0.240000pt;}
.ls1c{letter-spacing:-0.234667pt;}
.ls19{letter-spacing:-0.176000pt;}
.ls5f{letter-spacing:-0.160000pt;}
.ls4b{letter-spacing:-0.144000pt;}
.ls28{letter-spacing:-0.132000pt;}
.ls9{letter-spacing:-0.117333pt;}
.ls2a{letter-spacing:-0.096000pt;}
.ls6a{letter-spacing:-0.088000pt;}
.ls15{letter-spacing:-0.058667pt;}
.lsc{letter-spacing:-0.050667pt;}
.ls3c{letter-spacing:-0.048000pt;}
.ls6b{letter-spacing:-0.042667pt;}
.ls5a{letter-spacing:-0.036000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.026667pt;}
.ls5b{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.117333pt;}
.ls31{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.234667pt;}
.ls23{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.252000pt;}
.ls30{letter-spacing:0.266667pt;}
.ls4a{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.293333pt;}
.ls5c{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.324000pt;}
.ls49{letter-spacing:0.336000pt;}
.ls21{letter-spacing:0.352000pt;}
.ls2f{letter-spacing:0.373333pt;}
.ls41{letter-spacing:0.384000pt;}
.ls54{letter-spacing:0.396000pt;}
.ls1f{letter-spacing:0.410667pt;}
.ls43{letter-spacing:0.432000pt;}
.ls52{letter-spacing:0.440000pt;}
.ls40{letter-spacing:0.468000pt;}
.ls0{letter-spacing:0.469333pt;}
.ls13{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.528000pt;}
.ls5e{letter-spacing:0.533333pt;}
.ls64{letter-spacing:0.540000pt;}
.ls44{letter-spacing:0.576000pt;}
.ls38{letter-spacing:0.586667pt;}
.ls68{letter-spacing:0.624000pt;}
.ls2d{letter-spacing:0.645333pt;}
.ls3d{letter-spacing:0.704000pt;}
.ls65{letter-spacing:0.720000pt;}
.ls5d{letter-spacing:0.746667pt;}
.ls20{letter-spacing:0.762667pt;}
.ls4{letter-spacing:0.821333pt;}
.ls6{letter-spacing:0.864000pt;}
.ls2b{letter-spacing:0.880000pt;}
.ls4e{letter-spacing:0.938667pt;}
.ls55{letter-spacing:0.997333pt;}
.ls47{letter-spacing:1.056000pt;}
.ls51{letter-spacing:1.114667pt;}
.ls63{letter-spacing:1.173333pt;}
.ls4d{letter-spacing:1.200000pt;}
.ls66{letter-spacing:1.224000pt;}
.ls3f{letter-spacing:1.232000pt;}
.ls67{letter-spacing:1.248000pt;}
.ls57{letter-spacing:1.290667pt;}
.ls56{letter-spacing:1.349333pt;}
.ls3e{letter-spacing:1.408000pt;}
.ls2c{letter-spacing:1.466667pt;}
.ls4f{letter-spacing:1.994667pt;}
.ls5{letter-spacing:16.080000pt;}
.ls2{letter-spacing:16.186667pt;}
.ls46{letter-spacing:689.653333pt;}
.wsae{word-spacing:-16.016000pt;}
.ws9b{word-spacing:-15.957333pt;}
.wsaf{word-spacing:-15.898667pt;}
.ws8e{word-spacing:-15.781333pt;}
.ws8d{word-spacing:-15.722667pt;}
.ws95{word-spacing:-15.664000pt;}
.ws8a{word-spacing:-15.605333pt;}
.ws79{word-spacing:-15.488000pt;}
.ws6b{word-spacing:-15.429333pt;}
.ws82{word-spacing:-15.370667pt;}
.ws8c{word-spacing:-15.253333pt;}
.ws70{word-spacing:-15.194667pt;}
.ws8b{word-spacing:-15.136000pt;}
.ws69{word-spacing:-15.077333pt;}
.ws35{word-spacing:-15.018667pt;}
.ws39{word-spacing:-14.960000pt;}
.ws1c{word-spacing:-14.901333pt;}
.ws53{word-spacing:-14.842667pt;}
.ws1a{word-spacing:-14.784000pt;}
.ws5e{word-spacing:-14.725333pt;}
.ws18{word-spacing:-14.666667pt;}
.ws38{word-spacing:-14.608000pt;}
.ws3c{word-spacing:-14.549333pt;}
.ws1d{word-spacing:-14.490667pt;}
.ws54{word-spacing:-14.432000pt;}
.ws1b{word-spacing:-14.373333pt;}
.ws4b{word-spacing:-14.314667pt;}
.ws5c{word-spacing:-14.256000pt;}
.ws9a{word-spacing:-14.197333pt;}
.ws37{word-spacing:-14.138667pt;}
.ws36{word-spacing:-14.080000pt;}
.ws56{word-spacing:-14.021333pt;}
.ws55{word-spacing:-13.962667pt;}
.ws4e{word-spacing:-13.904000pt;}
.ws19{word-spacing:-13.845333pt;}
.ws86{word-spacing:-13.786667pt;}
.ws5b{word-spacing:-13.728000pt;}
.ws76{word-spacing:-13.669333pt;}
.wsa0{word-spacing:-13.653333pt;}
.ws9c{word-spacing:-13.552000pt;}
.ws89{word-spacing:-13.493333pt;}
.ws9e{word-spacing:-13.386667pt;}
.ws78{word-spacing:-13.376000pt;}
.ws5f{word-spacing:-13.333333pt;}
.ws96{word-spacing:-13.317333pt;}
.wsbe{word-spacing:-13.200000pt;}
.wsa1{word-spacing:-13.173333pt;}
.ws0{word-spacing:-12.869333pt;}
.ws9f{word-spacing:-12.853333pt;}
.wsba{word-spacing:-12.720000pt;}
.ws60{word-spacing:-12.640000pt;}
.wsa2{word-spacing:-12.586667pt;}
.ws7b{word-spacing:-12.576000pt;}
.wsb8{word-spacing:-12.528000pt;}
.ws72{word-spacing:-12.432000pt;}
.ws84{word-spacing:-12.288000pt;}
.ws4f{word-spacing:-12.240000pt;}
.wsb4{word-spacing:-12.096000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws6d{word-spacing:-11.952000pt;}
.wsb7{word-spacing:-11.528000pt;}
.ws62{word-spacing:-11.520000pt;}
.wsa4{word-spacing:-11.424000pt;}
.wsb3{word-spacing:-11.176000pt;}
.ws3a{word-spacing:-11.000000pt;}
.wsbc{word-spacing:-10.912000pt;}
.ws4d{word-spacing:-10.868000pt;}
.ws77{word-spacing:-10.824000pt;}
.ws5d{word-spacing:-10.692000pt;}
.ws20{word-spacing:-10.666667pt;}
.wsc2{word-spacing:-10.624000pt;}
.ws1e{word-spacing:-10.472000pt;}
.ws57{word-spacing:-10.384000pt;}
.wsbd{word-spacing:-10.224000pt;}
.ws7f{word-spacing:-10.000000pt;}
.ws5{word-spacing:-9.864000pt;}
.ws7a{word-spacing:-9.576000pt;}
.wsb9{word-spacing:-9.540000pt;}
.wsa3{word-spacing:-9.480000pt;}
.ws71{word-spacing:-9.468000pt;}
.ws91{word-spacing:-9.432000pt;}
.ws92{word-spacing:-9.396000pt;}
.ws83{word-spacing:-9.324000pt;}
.ws3d{word-spacing:-9.252000pt;}
.ws3{word-spacing:-9.000000pt;}
.ws9d{word-spacing:-8.964000pt;}
.ws90{word-spacing:-8.712000pt;}
.ws61{word-spacing:-8.532000pt;}
.ws1{word-spacing:-8.460000pt;}
.ws58{word-spacing:-0.762667pt;}
.wsc{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.645333pt;}
.ws21{word-spacing:-0.586667pt;}
.wsad{word-spacing:-0.576000pt;}
.ws27{word-spacing:-0.528000pt;}
.ws50{word-spacing:-0.480000pt;}
.ws2a{word-spacing:-0.469333pt;}
.ws52{word-spacing:-0.432000pt;}
.wse{word-spacing:-0.410667pt;}
.ws43{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.352000pt;}
.ws42{word-spacing:-0.336000pt;}
.ws66{word-spacing:-0.320000pt;}
.ws2d{word-spacing:-0.293333pt;}
.wsb2{word-spacing:-0.240000pt;}
.ws29{word-spacing:-0.234667pt;}
.wsa7{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.176000pt;}
.ws65{word-spacing:-0.160000pt;}
.ws32{word-spacing:-0.144000pt;}
.ws25{word-spacing:-0.117333pt;}
.ws68{word-spacing:-0.096000pt;}
.ws8{word-spacing:-0.058667pt;}
.ws63{word-spacing:-0.053333pt;}
.ws15{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.048000pt;}
.ws67{word-spacing:0.053333pt;}
.ws6f{word-spacing:0.058667pt;}
.ws85{word-spacing:0.096000pt;}
.ws24{word-spacing:0.117333pt;}
.wsab{word-spacing:0.160000pt;}
.ws6e{word-spacing:0.176000pt;}
.ws22{word-spacing:0.234667pt;}
.ws51{word-spacing:0.240000pt;}
.wsb{word-spacing:0.293333pt;}
.ws17{word-spacing:0.336000pt;}
.ws3e{word-spacing:0.352000pt;}
.wsa8{word-spacing:0.373333pt;}
.ws16{word-spacing:0.384000pt;}
.ws40{word-spacing:0.410667pt;}
.ws2c{word-spacing:0.469333pt;}
.ws87{word-spacing:0.528000pt;}
.wsac{word-spacing:0.576000pt;}
.ws10{word-spacing:0.586667pt;}
.ws7c{word-spacing:0.624000pt;}
.wsa5{word-spacing:0.640000pt;}
.ws14{word-spacing:0.645333pt;}
.ws33{word-spacing:0.672000pt;}
.ws3f{word-spacing:0.704000pt;}
.ws73{word-spacing:0.720000pt;}
.ws2b{word-spacing:0.762667pt;}
.ws74{word-spacing:0.768000pt;}
.wsa9{word-spacing:0.800000pt;}
.ws75{word-spacing:0.816000pt;}
.ws2e{word-spacing:0.821333pt;}
.ws59{word-spacing:0.880000pt;}
.ws41{word-spacing:0.912000pt;}
.ws7{word-spacing:0.938667pt;}
.ws34{word-spacing:0.960000pt;}
.ws2f{word-spacing:0.997333pt;}
.wsa{word-spacing:1.012000pt;}
.wsaa{word-spacing:1.013333pt;}
.ws13{word-spacing:1.056000pt;}
.ws64{word-spacing:1.066667pt;}
.wsb5{word-spacing:1.104000pt;}
.wsf{word-spacing:1.114667pt;}
.ws23{word-spacing:1.173333pt;}
.ws28{word-spacing:1.232000pt;}
.wsa6{word-spacing:1.280000pt;}
.ws26{word-spacing:1.290667pt;}
.ws9{word-spacing:1.349333pt;}
.ws12{word-spacing:1.408000pt;}
.ws30{word-spacing:1.466667pt;}
.ws99{word-spacing:1.584000pt;}
.wsbf{word-spacing:1.824000pt;}
.wsc0{word-spacing:1.872000pt;}
.ws97{word-spacing:2.229333pt;}
.ws98{word-spacing:2.522667pt;}
.wsbb{word-spacing:3.666667pt;}
.ws93{word-spacing:3.930667pt;}
.ws5a{word-spacing:4.165333pt;}
.wsb1{word-spacing:4.525333pt;}
.ws88{word-spacing:4.752000pt;}
.wsb0{word-spacing:4.898667pt;}
.ws8f{word-spacing:4.960000pt;}
.ws94{word-spacing:5.160000pt;}
.ws6a{word-spacing:6.688000pt;}
.ws6c{word-spacing:8.016000pt;}
.ws4a{word-spacing:18.714667pt;}
.ws46{word-spacing:18.773333pt;}
.ws44{word-spacing:19.418667pt;}
.ws3b{word-spacing:20.533333pt;}
.wsb6{word-spacing:21.354667pt;}
.ws81{word-spacing:21.936000pt;}
.ws49{word-spacing:24.170667pt;}
.ws48{word-spacing:25.402667pt;}
.ws47{word-spacing:26.458667pt;}
.ws45{word-spacing:26.928000pt;}
.ws4c{word-spacing:30.448000pt;}
.ws1f{word-spacing:31.744000pt;}
.wsc1{word-spacing:31.914667pt;}
.ws4{word-spacing:32.016000pt;}
.ws7d{word-spacing:247.520000pt;}
.ws80{word-spacing:284.586667pt;}
.ws7e{word-spacing:311.253333pt;}
._9{margin-left:-8.096000pt;}
._d{margin-left:-6.922667pt;}
._8{margin-left:-5.712000pt;}
._1a{margin-left:-4.752000pt;}
._5{margin-left:-3.696000pt;}
._1{margin-left:-2.752000pt;}
._0{margin-left:-1.856000pt;}
._6{margin-left:-0.938667pt;}
._2{width:1.114667pt;}
._c{width:2.517333pt;}
._19{width:3.813333pt;}
._1b{width:4.869333pt;}
._b{width:6.512000pt;}
._e{width:8.016000pt;}
._17{width:17.328000pt;}
._f{width:20.016000pt;}
._18{width:34.128000pt;}
._22{width:38.602667pt;}
._3{width:42.730667pt;}
._4{width:45.072000pt;}
._1d{width:51.136000pt;}
._23{width:163.786667pt;}
._13{width:186.762667pt;}
._21{width:192.960000pt;}
._11{width:324.586667pt;}
._1f{width:335.306667pt;}
._14{width:351.253333pt;}
._20{width:380.160000pt;}
._24{width:466.133333pt;}
._15{width:492.325333pt;}
._10{width:504.576000pt;}
._1e{width:570.240000pt;}
._12{width:585.866667pt;}
._25{width:743.722667pt;}
._a{width:765.482667pt;}
._16{width:877.376000pt;}
._1c{width:933.397333pt;}
._7{width:955.072000pt;}
.fs7{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:40.704000pt;}
.y7d{bottom:40.840000pt;}
.yb1{bottom:40.856000pt;}
.y163{bottom:40.861333pt;}
.y228{bottom:40.968000pt;}
.y116{bottom:41.296000pt;}
.y13f{bottom:41.328000pt;}
.y24b{bottom:41.770667pt;}
.y61{bottom:41.781333pt;}
.y4f{bottom:41.952000pt;}
.yf0{bottom:41.957333pt;}
.y258{bottom:41.962667pt;}
.ycd{bottom:41.968000pt;}
.y89{bottom:41.973333pt;}
.y23{bottom:43.168000pt;}
.y154{bottom:44.093333pt;}
.y14d{bottom:53.376000pt;}
.y7c{bottom:53.512000pt;}
.y162{bottom:53.522667pt;}
.yb0{bottom:53.528000pt;}
.y227{bottom:53.640000pt;}
.y115{bottom:53.968000pt;}
.y13e{bottom:54.000000pt;}
.y24a{bottom:54.442667pt;}
.y60{bottom:54.453333pt;}
.y4e{bottom:54.624000pt;}
.yef{bottom:54.629333pt;}
.y1a1{bottom:54.634667pt;}
.ycc{bottom:54.640000pt;}
.y22{bottom:55.834667pt;}
.y153{bottom:59.420000pt;}
.y14c{bottom:66.048000pt;}
.y7b{bottom:66.184000pt;}
.y161{bottom:66.194667pt;}
.yaf{bottom:66.200000pt;}
.y226{bottom:66.312000pt;}
.y114{bottom:66.640000pt;}
.y249{bottom:67.114667pt;}
.y4d{bottom:67.296000pt;}
.yee{bottom:67.301333pt;}
.y1a0{bottom:67.306667pt;}
.y21{bottom:68.501333pt;}
.y88{bottom:74.493333pt;}
.y152{bottom:74.746667pt;}
.y14b{bottom:78.720000pt;}
.y7a{bottom:78.856000pt;}
.y160{bottom:78.866667pt;}
.y225{bottom:78.984000pt;}
.y248{bottom:79.786667pt;}
.y4c{bottom:79.968000pt;}
.yed{bottom:79.973333pt;}
.y180{bottom:80.702667pt;}
.y20{bottom:81.173333pt;}
.y5f{bottom:85.905333pt;}
.y87{bottom:89.820000pt;}
.y1d9{bottom:89.926667pt;}
.ycb{bottom:89.957333pt;}
.y151{bottom:90.073333pt;}
.y79{bottom:91.528000pt;}
.y224{bottom:91.656000pt;}
.y4b{bottom:92.640000pt;}
.y17f{bottom:96.029333pt;}
.y5e{bottom:101.232000pt;}
.yae{bottom:102.486667pt;}
.y78{bottom:104.200000pt;}
.y223{bottom:104.328000pt;}
.y278{bottom:104.373333pt;}
.y13d{bottom:104.606667pt;}
.y86{bottom:105.146667pt;}
.y257{bottom:105.160000pt;}
.y1d8{bottom:105.253333pt;}
.y113{bottom:105.266667pt;}
.yca{bottom:105.284000pt;}
.y19f{bottom:105.340000pt;}
.y150{bottom:105.400000pt;}
.y17e{bottom:111.356000pt;}
.y5d{bottom:116.558667pt;}
.y222{bottom:117.000000pt;}
.y18{bottom:117.373333pt;}
.yad{bottom:117.813333pt;}
.y277{bottom:119.700000pt;}
.y13c{bottom:119.933333pt;}
.y85{bottom:120.473333pt;}
.y256{bottom:120.486667pt;}
.y15f{bottom:120.513333pt;}
.y14a{bottom:120.540000pt;}
.y1d7{bottom:120.580000pt;}
.y112{bottom:120.593333pt;}
.yc9{bottom:120.610667pt;}
.yec{bottom:120.657333pt;}
.y19e{bottom:120.666667pt;}
.y247{bottom:120.697333pt;}
.y14f{bottom:120.726667pt;}
.y17d{bottom:126.682667pt;}
.y17{bottom:132.700000pt;}
.yac{bottom:133.140000pt;}
.y276{bottom:135.026667pt;}
.y13b{bottom:135.260000pt;}
.y77{bottom:135.813333pt;}
.y15e{bottom:135.840000pt;}
.y4a{bottom:135.846667pt;}
.y149{bottom:135.866667pt;}
.y1d6{bottom:135.906667pt;}
.y111{bottom:135.920000pt;}
.yc8{bottom:135.937333pt;}
.yeb{bottom:135.984000pt;}
.y19d{bottom:135.993333pt;}
.y246{bottom:136.024000pt;}
.y84{bottom:136.053333pt;}
.y1fe{bottom:137.833333pt;}
.y5c{bottom:140.116000pt;}
.y17c{bottom:142.009333pt;}
.y1c6{bottom:144.573333pt;}
.y16{bottom:148.126667pt;}
.yab{bottom:148.573333pt;}
.y275{bottom:150.353333pt;}
.y13a{bottom:150.586667pt;}
.y76{bottom:151.140000pt;}
.y15d{bottom:151.166667pt;}
.y49{bottom:151.173333pt;}
.y148{bottom:151.193333pt;}
.y1d5{bottom:151.233333pt;}
.y110{bottom:151.246667pt;}
.yc7{bottom:151.264000pt;}
.y19c{bottom:151.320000pt;}
.y245{bottom:151.350667pt;}
.y83{bottom:151.380000pt;}
.y1fd{bottom:153.160000pt;}
.y5b{bottom:155.442667pt;}
.y17b{bottom:157.336000pt;}
.yea{bottom:158.981333pt;}
.y1c5{bottom:159.900000pt;}
.y15{bottom:163.453333pt;}
.yaa{bottom:163.900000pt;}
.y274{bottom:165.680000pt;}
.y139{bottom:165.913333pt;}
.y15c{bottom:166.493333pt;}
.y48{bottom:166.500000pt;}
.y147{bottom:166.520000pt;}
.y255{bottom:166.533333pt;}
.y1d4{bottom:166.560000pt;}
.y10f{bottom:166.573333pt;}
.yc6{bottom:166.590667pt;}
.y75{bottom:166.592000pt;}
.y19b{bottom:166.646667pt;}
.y244{bottom:166.677333pt;}
.y221{bottom:166.700000pt;}
.y82{bottom:166.706667pt;}
.y1fc{bottom:168.486667pt;}
.y5a{bottom:170.769333pt;}
.y17a{bottom:172.662667pt;}
.y1c4{bottom:175.226667pt;}
.y14{bottom:178.780000pt;}
.ya9{bottom:179.226667pt;}
.y273{bottom:181.006667pt;}
.y138{bottom:181.240000pt;}
.y15b{bottom:181.820000pt;}
.y47{bottom:181.826667pt;}
.y146{bottom:181.846667pt;}
.y254{bottom:181.860000pt;}
.y1d3{bottom:181.886667pt;}
.y10e{bottom:181.900000pt;}
.yc5{bottom:181.917333pt;}
.y74{bottom:181.918667pt;}
.y19a{bottom:181.973333pt;}
.y243{bottom:182.004000pt;}
.y220{bottom:182.026667pt;}
.y81{bottom:182.033333pt;}
.y1fb{bottom:183.813333pt;}
.y59{bottom:186.096000pt;}
.y179{bottom:187.989333pt;}
.y1c3{bottom:190.553333pt;}
.y13{bottom:194.106667pt;}
.ya8{bottom:194.553333pt;}
.y272{bottom:196.333333pt;}
.y137{bottom:196.566667pt;}
.y15a{bottom:197.146667pt;}
.y46{bottom:197.153333pt;}
.y145{bottom:197.173333pt;}
.y253{bottom:197.186667pt;}
.y1d2{bottom:197.213333pt;}
.y10d{bottom:197.226667pt;}
.yc4{bottom:197.244000pt;}
.y73{bottom:197.245333pt;}
.y199{bottom:197.300000pt;}
.ye9{bottom:197.320000pt;}
.y242{bottom:197.330667pt;}
.y21f{bottom:197.353333pt;}
.y80{bottom:197.360000pt;}
.y1fa{bottom:199.140000pt;}
.y58{bottom:201.422667pt;}
.y1c2{bottom:205.880000pt;}
.y12{bottom:209.433333pt;}
.ya7{bottom:209.880000pt;}
.y271{bottom:211.660000pt;}
.y136{bottom:211.893333pt;}
.y159{bottom:212.473333pt;}
.y45{bottom:212.480000pt;}
.y144{bottom:212.500000pt;}
.y252{bottom:212.513333pt;}
.y1d1{bottom:212.540000pt;}
.y10c{bottom:212.553333pt;}
.yc3{bottom:212.570667pt;}
.y72{bottom:212.572000pt;}
.y198{bottom:212.626667pt;}
.ye8{bottom:212.646667pt;}
.y241{bottom:212.657333pt;}
.y21e{bottom:212.680000pt;}
.y7f{bottom:212.686667pt;}
.y1f9{bottom:214.673333pt;}
.y57{bottom:216.749333pt;}
.y178{bottom:217.322667pt;}
.y1c1{bottom:221.206667pt;}
.y11{bottom:224.760000pt;}
.ya6{bottom:225.206667pt;}
.y270{bottom:226.986667pt;}
.y135{bottom:227.220000pt;}
.y44{bottom:227.806667pt;}
.y143{bottom:227.826667pt;}
.y251{bottom:227.840000pt;}
.y1d0{bottom:227.866667pt;}
.y10b{bottom:227.880000pt;}
.yc2{bottom:227.897333pt;}
.y71{bottom:227.898667pt;}
.y197{bottom:227.953333pt;}
.ye7{bottom:227.973333pt;}
.y240{bottom:227.984000pt;}
.y21d{bottom:228.006667pt;}
.y7e{bottom:228.013333pt;}
.y1f8{bottom:230.000000pt;}
.y56{bottom:232.076000pt;}
.y177{bottom:232.649333pt;}
.y1c0{bottom:236.533333pt;}
.y10{bottom:240.086667pt;}
.ya5{bottom:240.533333pt;}
.y26f{bottom:242.313333pt;}
.y134{bottom:242.546667pt;}
.y142{bottom:243.153333pt;}
.y250{bottom:243.166667pt;}
.y1cf{bottom:243.193333pt;}
.y10a{bottom:243.206667pt;}
.yc1{bottom:243.224000pt;}
.y70{bottom:243.225333pt;}
.y196{bottom:243.280000pt;}
.ye6{bottom:243.300000pt;}
.y158{bottom:243.310667pt;}
.y21c{bottom:243.333333pt;}
.y43{bottom:243.340000pt;}
.y1f7{bottom:245.326667pt;}
.y55{bottom:247.402667pt;}
.y176{bottom:247.976000pt;}
.y1bf{bottom:251.860000pt;}
.yf{bottom:255.413333pt;}
.ya4{bottom:255.860000pt;}
.y26e{bottom:257.640000pt;}
.y133{bottom:257.873333pt;}
.y141{bottom:258.480000pt;}
.y24f{bottom:258.493333pt;}
.y1ce{bottom:258.520000pt;}
.y109{bottom:258.533333pt;}
.yc0{bottom:258.550667pt;}
.y6f{bottom:258.552000pt;}
.y195{bottom:258.606667pt;}
.ye5{bottom:258.626667pt;}
.y157{bottom:258.637333pt;}
.y21b{bottom:258.660000pt;}
.y42{bottom:258.666667pt;}
.y1f6{bottom:260.653333pt;}
.y54{bottom:262.729333pt;}
.y175{bottom:263.302667pt;}
.y1be{bottom:267.186667pt;}
.ye{bottom:270.740000pt;}
.ya3{bottom:271.186667pt;}
.y26d{bottom:272.966667pt;}
.y132{bottom:273.200000pt;}
.y140{bottom:273.806667pt;}
.y24e{bottom:273.820000pt;}
.y1cd{bottom:273.846667pt;}
.y108{bottom:273.860000pt;}
.ybf{bottom:273.877333pt;}
.y6e{bottom:273.878667pt;}
.y194{bottom:273.933333pt;}
.ye4{bottom:273.953333pt;}
.y156{bottom:273.964000pt;}
.y21a{bottom:273.986667pt;}
.y41{bottom:273.993333pt;}
.y1f5{bottom:275.980000pt;}
.y53{bottom:278.056000pt;}
.y174{bottom:278.629333pt;}
.y1bd{bottom:282.513333pt;}
.yd{bottom:286.066667pt;}
.ya2{bottom:286.513333pt;}
.y26c{bottom:288.293333pt;}
.y131{bottom:288.526667pt;}
.y24d{bottom:289.146667pt;}
.y1cc{bottom:289.173333pt;}
.y107{bottom:289.186667pt;}
.y6d{bottom:289.205333pt;}
.y193{bottom:289.260000pt;}
.ye3{bottom:289.280000pt;}
.y23f{bottom:289.290667pt;}
.y219{bottom:289.313333pt;}
.y40{bottom:289.320000pt;}
.y1f4{bottom:291.306667pt;}
.y52{bottom:293.382667pt;}
.y173{bottom:293.956000pt;}
.y155{bottom:296.961333pt;}
.y1bc{bottom:297.840000pt;}
.yc{bottom:301.393333pt;}
.ya1{bottom:301.840000pt;}
.y26b{bottom:303.620000pt;}
.y130{bottom:303.853333pt;}
.y24c{bottom:304.473333pt;}
.y1cb{bottom:304.500000pt;}
.y106{bottom:304.513333pt;}
.ybe{bottom:304.545333pt;}
.y192{bottom:304.586667pt;}
.ye2{bottom:304.606667pt;}
.y23e{bottom:304.617333pt;}
.y218{bottom:304.640000pt;}
.y3f{bottom:304.646667pt;}
.y1f3{bottom:306.633333pt;}
.y172{bottom:309.282667pt;}
.y1bb{bottom:313.166667pt;}
.y51{bottom:316.380000pt;}
.yb{bottom:316.720000pt;}
.ya0{bottom:317.166667pt;}
.y26a{bottom:318.946667pt;}
.y12f{bottom:319.180000pt;}
.y1ca{bottom:319.826667pt;}
.y105{bottom:319.840000pt;}
.ybd{bottom:319.872000pt;}
.y6c{bottom:319.873333pt;}
.y191{bottom:319.913333pt;}
.ye1{bottom:319.933333pt;}
.y23d{bottom:319.944000pt;}
.y217{bottom:319.966667pt;}
.y3e{bottom:319.973333pt;}
.y1f2{bottom:321.960000pt;}
.y171{bottom:324.609333pt;}
.y1ba{bottom:328.493333pt;}
.y50{bottom:331.706667pt;}
.ya{bottom:332.046667pt;}
.y9f{bottom:332.493333pt;}
.y269{bottom:334.273333pt;}
.y12e{bottom:334.506667pt;}
.y1c9{bottom:335.153333pt;}
.y104{bottom:335.166667pt;}
.ybc{bottom:335.198667pt;}
.y6b{bottom:335.200000pt;}
.y190{bottom:335.240000pt;}
.ye0{bottom:335.260000pt;}
.y23c{bottom:335.270667pt;}
.y216{bottom:335.293333pt;}
.y3d{bottom:335.300000pt;}
.y1f1{bottom:337.286667pt;}
.y170{bottom:339.936000pt;}
.y1b9{bottom:343.820000pt;}
.y9{bottom:347.373333pt;}
.y9e{bottom:347.820000pt;}
.y268{bottom:349.600000pt;}
.y12d{bottom:349.833333pt;}
.y1c8{bottom:350.480000pt;}
.y103{bottom:350.493333pt;}
.ybb{bottom:350.525333pt;}
.y6a{bottom:350.526667pt;}
.y18f{bottom:350.566667pt;}
.ydf{bottom:350.586667pt;}
.y23b{bottom:350.597333pt;}
.y215{bottom:350.620000pt;}
.y3c{bottom:350.626667pt;}
.y1f0{bottom:352.613333pt;}
.y16f{bottom:355.262667pt;}
.y1b8{bottom:359.146667pt;}
.y8{bottom:362.700000pt;}
.y9d{bottom:363.146667pt;}
.y267{bottom:364.926667pt;}
.y12c{bottom:365.160000pt;}
.y1c7{bottom:365.806667pt;}
.y102{bottom:365.820000pt;}
.yba{bottom:365.852000pt;}
.y69{bottom:365.853333pt;}
.y18e{bottom:365.893333pt;}
.yde{bottom:365.913333pt;}
.y23a{bottom:365.924000pt;}
.y214{bottom:365.946667pt;}
.y3b{bottom:365.953333pt;}
.y1ef{bottom:367.940000pt;}
.y16e{bottom:370.589333pt;}
.y1b7{bottom:374.473333pt;}
.y7{bottom:378.040000pt;}
.y9c{bottom:378.473333pt;}
.y266{bottom:380.253333pt;}
.y12b{bottom:380.486667pt;}
.y101{bottom:381.146667pt;}
.yb9{bottom:381.178667pt;}
.y68{bottom:381.180000pt;}
.y18d{bottom:381.220000pt;}
.ydd{bottom:381.240000pt;}
.y239{bottom:381.250667pt;}
.y213{bottom:381.273333pt;}
.y3a{bottom:381.280000pt;}
.y1ee{bottom:383.266667pt;}
.y16d{bottom:385.916000pt;}
.y1b6{bottom:389.866667pt;}
.y6{bottom:393.366667pt;}
.y9b{bottom:393.800000pt;}
.y265{bottom:395.580000pt;}
.y12a{bottom:395.813333pt;}
.y100{bottom:396.473333pt;}
.yb8{bottom:396.505333pt;}
.y67{bottom:396.506667pt;}
.y18c{bottom:396.546667pt;}
.ydc{bottom:396.566667pt;}
.y238{bottom:396.577333pt;}
.y212{bottom:396.600000pt;}
.y39{bottom:396.606667pt;}
.y1ed{bottom:398.593333pt;}
.y16c{bottom:401.242667pt;}
.y1b5{bottom:405.193333pt;}
.y5{bottom:408.693333pt;}
.y264{bottom:410.980000pt;}
.y129{bottom:411.140000pt;}
.yb7{bottom:411.832000pt;}
.y66{bottom:411.833333pt;}
.y18b{bottom:411.873333pt;}
.ydb{bottom:411.893333pt;}
.yff{bottom:411.900000pt;}
.y211{bottom:411.926667pt;}
.y38{bottom:411.933333pt;}
.y1ec{bottom:413.920000pt;}
.y16b{bottom:416.569333pt;}
.y1b4{bottom:420.520000pt;}
.y9a{bottom:424.466667pt;}
.y263{bottom:426.306667pt;}
.y128{bottom:426.473333pt;}
.yb6{bottom:427.158667pt;}
.y65{bottom:427.160000pt;}
.y18a{bottom:427.200000pt;}
.yda{bottom:427.220000pt;}
.yfe{bottom:427.226667pt;}
.y237{bottom:427.245333pt;}
.y210{bottom:427.253333pt;}
.y37{bottom:427.260000pt;}
.y1eb{bottom:429.246667pt;}
.y16a{bottom:431.896000pt;}
.y1b3{bottom:435.846667pt;}
.y99{bottom:438.466667pt;}
.y262{bottom:441.633333pt;}
.y127{bottom:441.800000pt;}
.yb5{bottom:442.485333pt;}
.y64{bottom:442.486667pt;}
.y189{bottom:442.526667pt;}
.yd9{bottom:442.546667pt;}
.yfd{bottom:442.553333pt;}
.y236{bottom:442.572000pt;}
.y20f{bottom:442.580000pt;}
.y36{bottom:442.586667pt;}
.y1ea{bottom:444.573333pt;}
.y169{bottom:447.222667pt;}
.y1b2{bottom:451.173333pt;}
.y98{bottom:452.466667pt;}
.y1b{bottom:453.964667pt;}
.y261{bottom:456.960000pt;}
.yb4{bottom:457.812000pt;}
.y63{bottom:457.813333pt;}
.y188{bottom:457.853333pt;}
.yd8{bottom:457.873333pt;}
.yfc{bottom:457.880000pt;}
.y235{bottom:457.898667pt;}
.y20e{bottom:457.906667pt;}
.y35{bottom:457.913333pt;}
.y1e9{bottom:459.900000pt;}
.y168{bottom:462.549333pt;}
.y97{bottom:466.466667pt;}
.y1b1{bottom:466.500000pt;}
.y1d{bottom:467.290000pt;}
.y260{bottom:472.286667pt;}
.y1a{bottom:472.635333pt;}
.yb3{bottom:473.138667pt;}
.y62{bottom:473.140000pt;}
.y187{bottom:473.180000pt;}
.yd7{bottom:473.200000pt;}
.yfb{bottom:473.206667pt;}
.y234{bottom:473.225333pt;}
.y20d{bottom:473.233333pt;}
.y34{bottom:473.240000pt;}
.y1e8{bottom:475.226667pt;}
.y167{bottom:477.876000pt;}
.y96{bottom:480.466667pt;}
.y1b0{bottom:481.826667pt;}
.y126{bottom:482.434667pt;}
.y1c{bottom:485.960667pt;}
.y19{bottom:485.973333pt;}
.y25f{bottom:487.613333pt;}
.yb2{bottom:488.465333pt;}
.y186{bottom:488.506667pt;}
.yd6{bottom:488.526667pt;}
.yfa{bottom:488.533333pt;}
.y233{bottom:488.552000pt;}
.y20c{bottom:488.560000pt;}
.y33{bottom:488.566667pt;}
.y1e7{bottom:490.553333pt;}
.y95{bottom:494.466667pt;}
.y125{bottom:495.106667pt;}
.y1af{bottom:497.153333pt;}
.y25e{bottom:502.940000pt;}
.y185{bottom:503.833333pt;}
.yd5{bottom:503.853333pt;}
.yf9{bottom:503.860000pt;}
.y232{bottom:503.878667pt;}
.y166{bottom:503.880000pt;}
.y20b{bottom:503.886667pt;}
.y32{bottom:503.893333pt;}
.y1e6{bottom:505.880000pt;}
.y1e{bottom:507.306667pt;}
.y124{bottom:507.778667pt;}
.y94{bottom:508.466667pt;}
.y1ae{bottom:512.480000pt;}
.y25d{bottom:518.266667pt;}
.y184{bottom:519.160000pt;}
.yd4{bottom:519.180000pt;}
.yf8{bottom:519.186667pt;}
.y231{bottom:519.205333pt;}
.y165{bottom:519.206667pt;}
.y20a{bottom:519.213333pt;}
.y31{bottom:519.220000pt;}
.y123{bottom:520.450667pt;}
.y1e5{bottom:521.206667pt;}
.y93{bottom:522.466667pt;}
.y1ad{bottom:527.806667pt;}
.y122{bottom:533.122667pt;}
.y25c{bottom:533.593333pt;}
.y183{bottom:534.486667pt;}
.yd3{bottom:534.506667pt;}
.yf7{bottom:534.513333pt;}
.y230{bottom:534.532000pt;}
.y164{bottom:534.533333pt;}
.y209{bottom:534.540000pt;}
.y30{bottom:534.546667pt;}
.y1e4{bottom:536.533333pt;}
.y1ac{bottom:543.133333pt;}
.y121{bottom:545.794667pt;}
.y25b{bottom:548.920000pt;}
.y182{bottom:549.813333pt;}
.yd2{bottom:549.833333pt;}
.yf6{bottom:549.840000pt;}
.y22f{bottom:549.858667pt;}
.y92{bottom:549.860000pt;}
.y208{bottom:549.866667pt;}
.y2f{bottom:549.873333pt;}
.y1e3{bottom:551.860000pt;}
.y120{bottom:558.466667pt;}
.y25a{bottom:564.246667pt;}
.y181{bottom:565.140000pt;}
.yd1{bottom:565.160000pt;}
.yf5{bottom:565.166667pt;}
.y22e{bottom:565.185333pt;}
.y91{bottom:565.186667pt;}
.y207{bottom:565.193333pt;}
.y2e{bottom:565.200000pt;}
.y1e2{bottom:567.186667pt;}
.y11f{bottom:576.466667pt;}
.y1ab{bottom:578.466667pt;}
.y259{bottom:579.573333pt;}
.yd0{bottom:580.486667pt;}
.yf4{bottom:580.493333pt;}
.y22d{bottom:580.512000pt;}
.y90{bottom:580.513333pt;}
.y206{bottom:580.520000pt;}
.y2d{bottom:580.526667pt;}
.y1e1{bottom:582.513333pt;}
.y1aa{bottom:592.466667pt;}
.y11e{bottom:595.800000pt;}
.ycf{bottom:595.813333pt;}
.yf3{bottom:595.820000pt;}
.y22c{bottom:595.838667pt;}
.y8f{bottom:595.840000pt;}
.y205{bottom:595.846667pt;}
.y2c{bottom:595.853333pt;}
.y1e0{bottom:597.840000pt;}
.y1a9{bottom:606.466667pt;}
.y11d{bottom:609.800000pt;}
.yce{bottom:611.140000pt;}
.yf2{bottom:611.146667pt;}
.y22b{bottom:611.165333pt;}
.y8e{bottom:611.166667pt;}
.y204{bottom:611.173333pt;}
.y2b{bottom:611.180000pt;}
.y1df{bottom:613.166667pt;}
.y1a8{bottom:620.466667pt;}
.y11c{bottom:623.800000pt;}
.yf1{bottom:626.473333pt;}
.y22a{bottom:626.492000pt;}
.y8d{bottom:626.493333pt;}
.y203{bottom:626.500000pt;}
.y2a{bottom:626.506667pt;}
.y1de{bottom:628.493333pt;}
.y27e{bottom:634.373333pt;}
.y1a7{bottom:634.466667pt;}
.y11b{bottom:637.800000pt;}
.y229{bottom:641.818667pt;}
.y8c{bottom:641.820000pt;}
.y202{bottom:641.826667pt;}
.y29{bottom:641.833333pt;}
.y4{bottom:641.961333pt;}
.y1dd{bottom:643.820000pt;}
.y27d{bottom:648.373333pt;}
.y1a6{bottom:648.466667pt;}
.y11a{bottom:651.800000pt;}
.y3{bottom:655.293333pt;}
.y8b{bottom:657.146667pt;}
.y201{bottom:657.153333pt;}
.y28{bottom:657.160000pt;}
.y1dc{bottom:659.146667pt;}
.y27c{bottom:662.373333pt;}
.y1a5{bottom:662.466667pt;}
.y119{bottom:665.800000pt;}
.y2{bottom:671.960000pt;}
.y8a{bottom:672.473333pt;}
.y200{bottom:672.480000pt;}
.y27{bottom:672.486667pt;}
.y1db{bottom:674.473333pt;}
.y1a4{bottom:676.466667pt;}
.y118{bottom:679.800000pt;}
.y27b{bottom:681.706667pt;}
.y1ff{bottom:687.806667pt;}
.y26{bottom:687.813333pt;}
.y1da{bottom:689.793333pt;}
.y1a3{bottom:690.466667pt;}
.y117{bottom:699.133333pt;}
.y27a{bottom:701.040000pt;}
.y25{bottom:703.140000pt;}
.y1a2{bottom:704.466667pt;}
.y1{bottom:711.960000pt;}
.y24{bottom:718.466667pt;}
.y279{bottom:720.373333pt;}
.y1f{bottom:760.093333pt;}
.h6{height:45.525333pt;}
.h3{height:51.216000pt;}
.hb{height:51.258667pt;}
.hf{height:51.280000pt;}
.h7{height:52.032000pt;}
.h8{height:52.053333pt;}
.hd{height:52.074667pt;}
.h5{height:54.061333pt;}
.ha{height:56.906667pt;}
.hc{height:57.813333pt;}
.h4{height:62.597333pt;}
.he{height:62.624000pt;}
.h9{height:63.594667pt;}
.h2{height:68.288000pt;}
.h1{height:91.050667pt;}
.h0{height:820.000000pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x1{left:47.733333pt;}
.x9{left:48.813333pt;}
.xe{left:62.146667pt;}
.x2{left:67.742667pt;}
.xa{left:68.804000pt;}
.xc{left:70.738667pt;}
.x3{left:85.426667pt;}
.xf{left:87.733333pt;}
.xb{left:88.813333pt;}
.x4{left:129.215333pt;}
.x5{left:157.436667pt;}
.x10{left:181.480000pt;}
.x7{left:242.693333pt;}
.x6{left:275.730667pt;}
.xd{left:294.480000pt;}
.x8{left:372.120000pt;}
}




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