
    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_c0d8ee3b03bd755438419e2c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d83de7d7f980518eeafb5744.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_e74fbd1d90d3dffc4ec6d535.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_112f8518600bd95980572147.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_005a5affe2483d20e7726289.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0b90c2882da62834a5ff4e58.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a3661ad842bb7f2d60eeb2f0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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:ff8;src:url('chunks/assets/font_c691bb9873cd3a19d3474787.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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:ff9;src:url('chunks/assets/font_c32329c5e515943f0677b8ee.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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:ffa;src:url('chunks/assets/font_c15db760df6af7a1bc704042.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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:ffb;src:url('chunks/assets/font_25649096b2c7735e2bfd775f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.082520;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:ffc;src:url('chunks/assets/font_9d9501763ff85f2dec113e53.woff')format("woff");}.ffc{font-family:ffc;line-height:0.717285;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:ffd;src:url('chunks/assets/font_bc698e1ad2117919370d5253.woff')format("woff");}.ffd{font-family:ffd;line-height:0.717285;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:ffe;src:url('chunks/assets/font_8d67ac9f6d34904ec4f045eb.woff')format("woff");}.ffe{font-family:ffe;line-height:1.082520;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:fff;src:url('chunks/assets/font_163efc7584798c7efb86304e.woff')format("woff");}.fff{font-family:fff;line-height:0.683594;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);}
.v2{vertical-align:-16.830000px;}
.v3{vertical-align:-14.688000px;}
.v6{vertical-align:-9.672000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.400000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:36.000000px;}
.ls80{letter-spacing:-13.488000px;}
.ls63{letter-spacing:-8.352000px;}
.ls2a{letter-spacing:-7.200000px;}
.ls40{letter-spacing:-6.552000px;}
.ls83{letter-spacing:-4.800000px;}
.ls31{letter-spacing:-4.320000px;}
.ls29{letter-spacing:-3.816000px;}
.ls62{letter-spacing:-3.600000px;}
.ls76{letter-spacing:-3.528000px;}
.ls3e{letter-spacing:-3.168000px;}
.ls75{letter-spacing:-3.096000px;}
.ls2f{letter-spacing:-2.808000px;}
.ls3f{letter-spacing:-2.304000px;}
.ls44{letter-spacing:-2.160000px;}
.ls5f{letter-spacing:-2.088000px;}
.ls81{letter-spacing:-1.872000px;}
.ls2d{letter-spacing:-1.008000px;}
.ls2e{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.864000px;}
.ls2b{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.504000px;}
.ls84{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.360000px;}
.ls86{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.288000px;}
.ls45{letter-spacing:-0.252000px;}
.ls82{letter-spacing:-0.240000px;}
.ls26{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.201600px;}
.lsc{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.072000px;}
.ls38{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.043200px;}
.lsa{letter-spacing:0.072000px;}
.ls37{letter-spacing:0.100800px;}
.ls11{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.190800px;}
.ls10{letter-spacing:0.216000px;}
.ls49{letter-spacing:0.252000px;}
.ls79{letter-spacing:0.259200px;}
.ls25{letter-spacing:0.280800px;}
.ls9{letter-spacing:0.288000px;}
.ls68{letter-spacing:0.352800px;}
.ls13{letter-spacing:0.360000px;}
.ls77{letter-spacing:0.374400px;}
.ls22{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.480000px;}
.ls7a{letter-spacing:0.496800px;}
.ls18{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.792000px;}
.ls30{letter-spacing:0.864000px;}
.ls4b{letter-spacing:0.907200px;}
.lsb{letter-spacing:0.936000px;}
.ls71{letter-spacing:0.960000px;}
.ls17{letter-spacing:1.008000px;}
.ls48{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.152000px;}
.ls21{letter-spacing:1.224000px;}
.ls47{letter-spacing:1.296000px;}
.ls78{letter-spacing:1.440000px;}
.ls72{letter-spacing:1.512000px;}
.ls2c{letter-spacing:1.584000px;}
.ls3d{letter-spacing:1.800000px;}
.ls69{letter-spacing:2.088000px;}
.ls3c{letter-spacing:2.370600px;}
.ls53{letter-spacing:2.419200px;}
.ls54{letter-spacing:2.448000px;}
.ls52{letter-spacing:2.462400px;}
.ls1{letter-spacing:2.850000px;}
.ls7f{letter-spacing:2.928000px;}
.ls4d{letter-spacing:2.952000px;}
.ls64{letter-spacing:3.052800px;}
.ls4f{letter-spacing:3.067200px;}
.ls4e{letter-spacing:3.132000px;}
.ls4a{letter-spacing:3.319200px;}
.ls7e{letter-spacing:3.408000px;}
.ls59{letter-spacing:3.528000px;}
.ls5a{letter-spacing:3.556800px;}
.ls41{letter-spacing:3.715200px;}
.ls33{letter-spacing:3.888000px;}
.ls34{letter-spacing:3.924000px;}
.ls74{letter-spacing:4.032000px;}
.ls28{letter-spacing:4.176000px;}
.ls3{letter-spacing:4.368000px;}
.ls50{letter-spacing:4.392000px;}
.ls27{letter-spacing:4.536000px;}
.ls8{letter-spacing:4.560000px;}
.ls7c{letter-spacing:4.752000px;}
.ls3a{letter-spacing:5.184000px;}
.ls61{letter-spacing:5.227200px;}
.ls66{letter-spacing:5.385600px;}
.ls5d{letter-spacing:5.544000px;}
.ls39{letter-spacing:5.616000px;}
.ls70{letter-spacing:5.688000px;}
.ls6b{letter-spacing:5.738400px;}
.ls5e{letter-spacing:5.904000px;}
.ls6c{letter-spacing:6.559200px;}
.ls7d{letter-spacing:6.768000px;}
.ls56{letter-spacing:6.840000px;}
.ls46{letter-spacing:7.200000px;}
.ls4c{letter-spacing:7.272000px;}
.ls55{letter-spacing:7.488000px;}
.ls5c{letter-spacing:7.596000px;}
.ls1f{letter-spacing:7.984800px;}
.ls85{letter-spacing:8.100000px;}
.ls6e{letter-spacing:8.208000px;}
.ls6f{letter-spacing:8.280000px;}
.ls6d{letter-spacing:8.308800px;}
.ls0{letter-spacing:8.436000px;}
.ls6{letter-spacing:8.460000px;}
.ls42{letter-spacing:8.568000px;}
.ls5b{letter-spacing:8.640000px;}
.ls60{letter-spacing:8.928000px;}
.ls67{letter-spacing:9.360000px;}
.ls65{letter-spacing:9.648000px;}
.ls7b{letter-spacing:10.080000px;}
.ls58{letter-spacing:10.224000px;}
.ls3b{letter-spacing:10.368000px;}
.ls57{letter-spacing:10.404000px;}
.ls73{letter-spacing:10.965600px;}
.ls51{letter-spacing:11.030400px;}
.ls43{letter-spacing:13.795500px;}
.ls36{letter-spacing:13.796100px;}
.ls6a{letter-spacing:15.501600px;}
.ls2{letter-spacing:16.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;}
}
.ws4c{word-spacing:-72.360000px;}
.ws56{word-spacing:-72.288000px;}
.ws5d{word-spacing:-72.000000px;}
.ws37{word-spacing:-71.928000px;}
.ws2{word-spacing:-25.320000px;}
.ws83{word-spacing:-23.274000px;}
.ws3e{word-spacing:-22.032000px;}
.ws51{word-spacing:-21.312000px;}
.ws58{word-spacing:-21.168000px;}
.ws60{word-spacing:-20.952000px;}
.ws41{word-spacing:-20.808000px;}
.ws4f{word-spacing:-20.592000px;}
.ws50{word-spacing:-20.520000px;}
.ws4b{word-spacing:-20.448000px;}
.ws59{word-spacing:-20.376000px;}
.ws71{word-spacing:-20.304000px;}
.ws15{word-spacing:-20.232000px;}
.ws38{word-spacing:-20.160000px;}
.ws29{word-spacing:-19.872000px;}
.ws68{word-spacing:-18.504000px;}
.ws72{word-spacing:-18.432000px;}
.ws61{word-spacing:-18.360000px;}
.ws42{word-spacing:-18.288000px;}
.ws55{word-spacing:-18.216000px;}
.ws4d{word-spacing:-18.144000px;}
.ws65{word-spacing:-18.072000px;}
.ws3d{word-spacing:-18.000000px;}
.ws39{word-spacing:-17.928000px;}
.ws5f{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws32{word-spacing:-17.712000px;}
.ws36{word-spacing:-17.640000px;}
.ws40{word-spacing:-17.568000px;}
.ws43{word-spacing:-17.496000px;}
.ws4a{word-spacing:-17.424000px;}
.ws67{word-spacing:-17.352000px;}
.ws64{word-spacing:-17.064000px;}
.ws5{word-spacing:-16.860000px;}
.ws2e{word-spacing:-16.848000px;}
.ws3f{word-spacing:-16.776000px;}
.ws4e{word-spacing:-15.069600px;}
.ws84{word-spacing:-14.820000px;}
.ws85{word-spacing:-14.520000px;}
.ws2f{word-spacing:-14.162400px;}
.ws7a{word-spacing:-13.488000px;}
.ws7b{word-spacing:-12.768000px;}
.ws78{word-spacing:-12.336000px;}
.wsc{word-spacing:-11.856000px;}
.ws7d{word-spacing:-11.376000px;}
.ws69{word-spacing:-9.648000px;}
.ws6d{word-spacing:-9.360000px;}
.ws5a{word-spacing:-8.640000px;}
.ws9{word-spacing:-8.496000px;}
.ws2a{word-spacing:-8.460000px;}
.ws79{word-spacing:-6.768000px;}
.ws5e{word-spacing:-5.616000px;}
.ws8{word-spacing:-4.560000px;}
.ws1{word-spacing:-2.907000px;}
.ws6e{word-spacing:-2.088000px;}
.ws44{word-spacing:-1.800000px;}
.ws77{word-spacing:-1.512000px;}
.ws76{word-spacing:-1.440000px;}
.ws52{word-spacing:-1.296000px;}
.ws21{word-spacing:-1.224000px;}
.ws1a{word-spacing:-1.152000px;}
.ws53{word-spacing:-1.080000px;}
.ws1c{word-spacing:-1.008000px;}
.ws6f{word-spacing:-0.960000px;}
.ws13{word-spacing:-0.936000px;}
.ws35{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.792000px;}
.ws27{word-spacing:-0.720000px;}
.ws1d{word-spacing:-0.648000px;}
.ws22{word-spacing:-0.576000px;}
.ws1e{word-spacing:-0.504000px;}
.ws6{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.432000px;}
.ws6c{word-spacing:-0.403200px;}
.ws1b{word-spacing:-0.360000px;}
.ws66{word-spacing:-0.302400px;}
.wsf{word-spacing:-0.288000px;}
.ws54{word-spacing:-0.252000px;}
.ws18{word-spacing:-0.216000px;}
.ws3a{word-spacing:-0.151200px;}
.ws19{word-spacing:-0.144000px;}
.ws10{word-spacing:-0.072000px;}
.ws88{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.050400px;}
.ws7c{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws3c{word-spacing:0.048000px;}
.ws16{word-spacing:0.072000px;}
.wse{word-spacing:0.144000px;}
.ws34{word-spacing:0.151200px;}
.ws49{word-spacing:0.201600px;}
.ws28{word-spacing:0.216000px;}
.ws80{word-spacing:0.240000px;}
.ws11{word-spacing:0.288000px;}
.ws87{word-spacing:0.300000px;}
.ws14{word-spacing:0.360000px;}
.ws7{word-spacing:0.420000px;}
.ws17{word-spacing:0.432000px;}
.ws82{word-spacing:0.480000px;}
.ws26{word-spacing:0.504000px;}
.ws25{word-spacing:0.576000px;}
.ws4{word-spacing:0.600000px;}
.ws20{word-spacing:0.648000px;}
.ws12{word-spacing:0.720000px;}
.ws2d{word-spacing:0.792000px;}
.ws1f{word-spacing:0.864000px;}
.ws75{word-spacing:0.936000px;}
.ws30{word-spacing:1.008000px;}
.ws86{word-spacing:1.440000px;}
.ws7f{word-spacing:1.872000px;}
.ws48{word-spacing:2.088000px;}
.ws46{word-spacing:2.304000px;}
.ws3b{word-spacing:2.400000px;}
.ws31{word-spacing:2.808000px;}
.ws73{word-spacing:3.096000px;}
.ws45{word-spacing:3.168000px;}
.ws74{word-spacing:3.528000px;}
.ws62{word-spacing:3.600000px;}
.ws2b{word-spacing:3.816000px;}
.wsd{word-spacing:4.200000px;}
.ws33{word-spacing:4.248000px;}
.ws5c{word-spacing:4.320000px;}
.ws81{word-spacing:4.800000px;}
.ws6a{word-spacing:5.040000px;}
.ws47{word-spacing:6.552000px;}
.ws2c{word-spacing:7.200000px;}
.ws70{word-spacing:8.208000px;}
.ws63{word-spacing:8.352000px;}
.ws5b{word-spacing:8.712000px;}
.ws6b{word-spacing:10.080000px;}
.ws57{word-spacing:10.152000px;}
.ws7e{word-spacing:13.488000px;}
.ws0{word-spacing:146.196000px;}
._9{margin-left:-948.820800px;}
._13{margin-left:-20.646600px;}
._1c{margin-left:-18.315000px;}
._17{margin-left:-17.172000px;}
._11{margin-left:-15.556800px;}
._15{margin-left:-14.146200px;}
._19{margin-left:-9.726900px;}
._14{margin-left:-8.647200px;}
._c{margin-left:-7.570200px;}
._6{margin-left:-6.144000px;}
._1{margin-left:-4.812000px;}
._b{margin-left:-3.034500px;}
._4{margin-left:-1.716000px;}
._2{width:1.738500px;}
._0{width:3.510000px;}
._7{width:5.389200px;}
._8{width:6.396300px;}
._a{width:7.518300px;}
._3{width:8.532000px;}
._d{width:10.346400px;}
._e{width:11.695500px;}
._10{width:13.456800px;}
._12{width:15.036000px;}
._18{width:16.971900px;}
._1b{width:18.014400px;}
._1a{width:19.039200px;}
._5{width:21.144000px;}
._f{width:31.646100px;}
._16{width:578.530500px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y46{bottom:117.000000px;}
.y1db{bottom:117.978000px;}
.y12c{bottom:117.990000px;}
.y1f4{bottom:118.038000px;}
.y186{bottom:118.302000px;}
.y241{bottom:118.674000px;}
.y22{bottom:119.652750px;}
.y141{bottom:121.207500px;}
.y20e{bottom:121.404000px;}
.y1af{bottom:123.222000px;}
.y26c{bottom:124.586250px;}
.y45{bottom:132.000000px;}
.y240{bottom:133.818000px;}
.y6a{bottom:136.207500px;}
.y20d{bottom:136.404000px;}
.y21{bottom:138.552750px;}
.y140{bottom:139.500000px;}
.y185{bottom:139.596000px;}
.y1da{bottom:141.072000px;}
.y12b{bottom:141.084000px;}
.y1f3{bottom:141.132000px;}
.y26b{bottom:143.486250px;}
.y1b1{bottom:143.707500px;}
.y1ae{bottom:144.966000px;}
.y1cc{bottom:147.000000px;}
.y23f{bottom:148.962000px;}
.y44{bottom:151.207500px;}
.y20c{bottom:151.404000px;}
.y69{bottom:154.500000px;}
.y189{bottom:158.707500px;}
.y184{bottom:160.890000px;}
.y188{bottom:162.000000px;}
.y26a{bottom:162.386250px;}
.y23e{bottom:164.106000px;}
.y1d9{bottom:164.166000px;}
.y12a{bottom:164.178000px;}
.y1f2{bottom:164.226000px;}
.y20{bottom:165.955650px;}
.y1b0{bottom:166.207500px;}
.y20b{bottom:166.404000px;}
.y1ad{bottom:166.710000px;}
.y68{bottom:169.500000px;}
.yd0{bottom:177.750000px;}
.y23d{bottom:179.250000px;}
.y269{bottom:181.286250px;}
.y20a{bottom:181.404000px;}
.y183{bottom:182.796000px;}
.y67{bottom:184.500000px;}
.y1f{bottom:185.605650px;}
.y1d8{bottom:187.260000px;}
.y129{bottom:187.272000px;}
.y1f1{bottom:187.320000px;}
.y1ac{bottom:188.454000px;}
.y13f{bottom:188.707500px;}
.y23c{bottom:194.394000px;}
.yf0{bottom:194.490000px;}
.yad{bottom:194.724000px;}
.y109{bottom:194.850000px;}
.y43{bottom:194.904000px;}
.y8b{bottom:196.320000px;}
.y209{bottom:196.404000px;}
.y1c7{bottom:197.016000px;}
.y1cb{bottom:199.500000px;}
.ycf{bottom:199.800000px;}
.y268{bottom:200.186250px;}
.y66{bottom:203.707500px;}
.y182{bottom:204.702000px;}
.y1e{bottom:205.255650px;}
.y187{bottom:207.000000px;}
.y23b{bottom:209.538000px;}
.y1ab{bottom:210.198000px;}
.y1d7{bottom:210.354000px;}
.y128{bottom:210.366000px;}
.y1f0{bottom:210.414000px;}
.y208{bottom:211.728000px;}
.y1ca{bottom:214.500000px;}
.yac{bottom:216.918000px;}
.yef{bottom:216.990000px;}
.y108{bottom:217.044000px;}
.y42{bottom:217.854000px;}
.y267{bottom:219.086250px;}
.y8a{bottom:219.126000px;}
.y1c6{bottom:219.822000px;}
.yce{bottom:221.850000px;}
.y23a{bottom:224.682000px;}
.y1d{bottom:224.905650px;}
.y181{bottom:226.608000px;}
.y13e{bottom:228.474150px;}
.y160{bottom:229.500000px;}
.y1aa{bottom:231.942000px;}
.y1d6{bottom:233.448000px;}
.y127{bottom:233.460000px;}
.y1ef{bottom:233.508000px;}
.y266{bottom:237.986250px;}
.yab{bottom:239.112000px;}
.yee{bottom:239.184000px;}
.y107{bottom:239.238000px;}
.y239{bottom:239.826000px;}
.y207{bottom:240.600000px;}
.y41{bottom:240.804000px;}
.y89{bottom:241.932000px;}
.y65{bottom:242.586000px;}
.y1c5{bottom:242.628000px;}
.ycd{bottom:243.900000px;}
.y1c9{bottom:244.500000px;}
.y1c{bottom:244.555650px;}
.y180{bottom:248.514000px;}
.y13d{bottom:251.280150px;}
.y15f{bottom:252.000000px;}
.y1a9{bottom:253.686000px;}
.y238{bottom:254.970000px;}
.y1d5{bottom:256.542000px;}
.y126{bottom:256.554000px;}
.y1ee{bottom:256.602000px;}
.y265{bottom:256.886250px;}
.yaa{bottom:261.306000px;}
.yed{bottom:261.378000px;}
.y106{bottom:261.432000px;}
.y1c8{bottom:263.707500px;}
.y40{bottom:263.754000px;}
.y1b{bottom:264.205650px;}
.y88{bottom:264.738000px;}
.y64{bottom:265.392000px;}
.y1c4{bottom:265.434000px;}
.ycc{bottom:265.950000px;}
.y237{bottom:270.114000px;}
.y17f{bottom:270.420000px;}
.y13c{bottom:274.086150px;}
.y15e{bottom:274.500000px;}
.y1a8{bottom:275.430000px;}
.y264{bottom:275.786250px;}
.y1d4{bottom:279.636000px;}
.y125{bottom:279.648000px;}
.y1ed{bottom:279.696000px;}
.yec{bottom:283.572000px;}
.y105{bottom:283.626000px;}
.ya9{bottom:283.674000px;}
.y1a{bottom:283.855650px;}
.y236{bottom:285.258000px;}
.y206{bottom:285.540000px;}
.y3f{bottom:286.704000px;}
.y87{bottom:287.544000px;}
.ycb{bottom:288.000000px;}
.y63{bottom:288.198000px;}
.y1c3{bottom:288.240000px;}
.y17e{bottom:292.326000px;}
.y263{bottom:294.686250px;}
.y13b{bottom:296.892150px;}
.y15d{bottom:297.000000px;}
.y1a7{bottom:297.174000px;}
.y235{bottom:300.402000px;}
.y1d3{bottom:302.730000px;}
.y124{bottom:302.742000px;}
.y1ec{bottom:302.790000px;}
.y19{bottom:303.505650px;}
.yeb{bottom:305.766000px;}
.y104{bottom:305.820000px;}
.ya8{bottom:305.868000px;}
.y205{bottom:308.490000px;}
.y3e{bottom:309.510000px;}
.yca{bottom:310.050000px;}
.y86{bottom:310.350000px;}
.y62{bottom:311.004000px;}
.y1c2{bottom:311.046000px;}
.y262{bottom:313.586250px;}
.y17d{bottom:314.232000px;}
.y234{bottom:315.546000px;}
.y1a6{bottom:318.918000px;}
.y15c{bottom:319.500000px;}
.y13a{bottom:319.698150px;}
.y18{bottom:323.155650px;}
.y1d2{bottom:325.824000px;}
.y123{bottom:325.836000px;}
.y1eb{bottom:325.884000px;}
.yea{bottom:327.960000px;}
.y103{bottom:328.014000px;}
.ya7{bottom:328.062000px;}
.y233{bottom:330.690000px;}
.y204{bottom:331.440000px;}
.yc9{bottom:332.100000px;}
.y3d{bottom:332.316000px;}
.y261{bottom:332.486250px;}
.y85{bottom:333.156000px;}
.y61{bottom:333.810000px;}
.y1c1{bottom:333.852000px;}
.y17c{bottom:336.138000px;}
.y1a5{bottom:340.662000px;}
.y15b{bottom:342.000000px;}
.y139{bottom:342.504150px;}
.y17{bottom:342.805650px;}
.y232{bottom:345.834000px;}
.y1d1{bottom:348.918000px;}
.y122{bottom:348.930000px;}
.y1ea{bottom:348.978000px;}
.ye9{bottom:350.154000px;}
.y102{bottom:350.208000px;}
.ya6{bottom:350.256000px;}
.y260{bottom:351.386250px;}
.yc8{bottom:354.150000px;}
.y203{bottom:354.390000px;}
.y3c{bottom:355.122000px;}
.y84{bottom:355.962000px;}
.y60{bottom:356.616000px;}
.y1c0{bottom:356.658000px;}
.y17b{bottom:358.044000px;}
.y231{bottom:360.978000px;}
.y1a4{bottom:362.406000px;}
.y16{bottom:362.455650px;}
.y15a{bottom:364.500000px;}
.y138{bottom:365.310150px;}
.y25f{bottom:370.286250px;}
.y1d0{bottom:372.012000px;}
.y121{bottom:372.024000px;}
.y1e9{bottom:372.072000px;}
.ye8{bottom:372.348000px;}
.y101{bottom:372.402000px;}
.ya5{bottom:372.450000px;}
.y230{bottom:376.122000px;}
.yc7{bottom:376.200000px;}
.y202{bottom:377.340000px;}
.y3b{bottom:377.928000px;}
.y83{bottom:378.768000px;}
.y5f{bottom:379.422000px;}
.y1bf{bottom:379.464000px;}
.y17a{bottom:379.950000px;}
.y15{bottom:382.105650px;}
.y1a3{bottom:384.150000px;}
.y159{bottom:387.000000px;}
.y137{bottom:388.092150px;}
.y25e{bottom:389.186250px;}
.y22f{bottom:391.266000px;}
.ye7{bottom:394.542000px;}
.y100{bottom:394.596000px;}
.ya4{bottom:394.644000px;}
.y1cf{bottom:395.106000px;}
.y120{bottom:395.118000px;}
.y1e8{bottom:395.166000px;}
.yc6{bottom:398.250000px;}
.y201{bottom:400.290000px;}
.y3a{bottom:400.734000px;}
.y82{bottom:401.574000px;}
.y179{bottom:401.856000px;}
.y5e{bottom:402.228000px;}
.y1be{bottom:402.270000px;}
.y1a2{bottom:405.894000px;}
.y22e{bottom:406.410000px;}
.y25d{bottom:408.086250px;}
.y158{bottom:409.500000px;}
.y14{bottom:410.260650px;}
.y136{bottom:410.898150px;}
.ye6{bottom:416.736000px;}
.yff{bottom:416.790000px;}
.ya3{bottom:416.838000px;}
.y11f{bottom:418.212000px;}
.y1e7{bottom:418.260000px;}
.y1ce{bottom:418.332000px;}
.yc5{bottom:420.300000px;}
.y22d{bottom:421.554000px;}
.y200{bottom:423.240000px;}
.y39{bottom:423.540000px;}
.y178{bottom:423.762000px;}
.y81{bottom:424.380000px;}
.y5d{bottom:425.034000px;}
.y1bd{bottom:425.076000px;}
.y25c{bottom:426.986250px;}
.y1a1{bottom:427.638000px;}
.y157{bottom:432.000000px;}
.y135{bottom:433.704150px;}
.y22c{bottom:436.698000px;}
.ye5{bottom:438.930000px;}
.yfe{bottom:438.984000px;}
.ya2{bottom:439.032000px;}
.y11e{bottom:441.306000px;}
.y1e6{bottom:441.354000px;}
.y1cd{bottom:441.426000px;}
.yc4{bottom:442.350000px;}
.y177{bottom:445.668000px;}
.y25b{bottom:445.886250px;}
.y1ff{bottom:446.190000px;}
.y38{bottom:446.346000px;}
.y80{bottom:447.186000px;}
.y5c{bottom:447.840000px;}
.y1bc{bottom:447.882000px;}
.y1a0{bottom:449.382000px;}
.y22b{bottom:451.842000px;}
.y156{bottom:454.500000px;}
.y134{bottom:456.510150px;}
.y13{bottom:457.060650px;}
.ye4{bottom:461.124000px;}
.yfd{bottom:461.178000px;}
.ya1{bottom:461.226000px;}
.yc3{bottom:464.400000px;}
.y1e5{bottom:464.448000px;}
.y11d{bottom:464.520000px;}
.y25a{bottom:464.786250px;}
.y282{bottom:465.600000px;}
.y22a{bottom:466.986000px;}
.y176{bottom:467.574000px;}
.y1fe{bottom:469.140000px;}
.y37{bottom:469.152000px;}
.y7f{bottom:469.992000px;}
.y5b{bottom:470.646000px;}
.y1bb{bottom:470.688000px;}
.y19f{bottom:471.126000px;}
.y12{bottom:475.960650px;}
.y155{bottom:477.000000px;}
.y133{bottom:479.316150px;}
.y229{bottom:482.130000px;}
.ye3{bottom:483.318000px;}
.yfc{bottom:483.372000px;}
.ya0{bottom:483.420000px;}
.y259{bottom:483.686250px;}
.y281{bottom:484.350000px;}
.yc2{bottom:486.450000px;}
.y1e4{bottom:487.542000px;}
.y11c{bottom:487.614000px;}
.y175{bottom:489.480000px;}
.y36{bottom:491.958000px;}
.y1fd{bottom:492.090000px;}
.y7e{bottom:492.798000px;}
.y19e{bottom:492.870000px;}
.y5a{bottom:493.452000px;}
.y1ba{bottom:493.494000px;}
.y228{bottom:497.274000px;}
.y154{bottom:499.500000px;}
.y258{bottom:502.586250px;}
.y280{bottom:503.100000px;}
.y11{bottom:503.363550px;}
.ye2{bottom:505.512000px;}
.yfb{bottom:505.566000px;}
.y9f{bottom:505.614000px;}
.yc1{bottom:508.500000px;}
.y1e3{bottom:510.636000px;}
.y11b{bottom:510.708000px;}
.y174{bottom:511.386000px;}
.y227{bottom:512.418000px;}
.y19d{bottom:514.614000px;}
.y35{bottom:514.764000px;}
.y1fc{bottom:515.040000px;}
.y7d{bottom:515.604000px;}
.y1b9{bottom:516.192000px;}
.y59{bottom:516.258000px;}
.y257{bottom:521.486250px;}
.y27f{bottom:521.850000px;}
.y153{bottom:522.000000px;}
.y10{bottom:523.013550px;}
.y11a{bottom:524.802000px;}
.y226{bottom:527.562000px;}
.ye1{bottom:527.706000px;}
.yfa{bottom:527.760000px;}
.y9e{bottom:527.808000px;}
.yc0{bottom:530.550000px;}
.y173{bottom:533.292000px;}
.y1e2{bottom:533.730000px;}
.y119{bottom:533.802000px;}
.y19c{bottom:536.358000px;}
.y34{bottom:537.570000px;}
.y1fb{bottom:537.990000px;}
.y7c{bottom:538.410000px;}
.y1b8{bottom:538.998000px;}
.y58{bottom:539.064000px;}
.y256{bottom:540.386250px;}
.yf{bottom:542.663550px;}
.y225{bottom:542.706000px;}
.y152{bottom:544.500000px;}
.ye0{bottom:549.906000px;}
.yf9{bottom:549.954000px;}
.y9d{bottom:550.002000px;}
.y27e{bottom:551.850000px;}
.ybf{bottom:552.600000px;}
.y172{bottom:555.198000px;}
.y1e1{bottom:556.824000px;}
.y118{bottom:556.896000px;}
.y224{bottom:557.850000px;}
.y19b{bottom:558.102000px;}
.y255{bottom:559.286250px;}
.y33{bottom:560.376000px;}
.y1fa{bottom:560.940000px;}
.y7b{bottom:561.216000px;}
.y1b7{bottom:561.804000px;}
.y57{bottom:561.870000px;}
.ye{bottom:562.313550px;}
.y151{bottom:567.000000px;}
.yf8{bottom:572.148000px;}
.ydf{bottom:572.172000px;}
.y9c{bottom:572.196000px;}
.y223{bottom:572.994000px;}
.ybe{bottom:574.650000px;}
.y171{bottom:577.104000px;}
.y254{bottom:578.186250px;}
.y19a{bottom:579.846000px;}
.y1e0{bottom:579.918000px;}
.y117{bottom:579.990000px;}
.yd{bottom:581.963550px;}
.y32{bottom:583.182000px;}
.y1f9{bottom:583.890000px;}
.y7a{bottom:584.022000px;}
.y1b6{bottom:584.610000px;}
.y56{bottom:584.676000px;}
.y222{bottom:588.138000px;}
.y150{bottom:589.500000px;}
.y27d{bottom:593.100000px;}
.yf7{bottom:594.342000px;}
.yde{bottom:594.366000px;}
.y9b{bottom:594.390000px;}
.ybd{bottom:596.700000px;}
.y253{bottom:597.086250px;}
.y170{bottom:599.010000px;}
.y199{bottom:601.590000px;}
.yc{bottom:601.613550px;}
.y1df{bottom:603.012000px;}
.y116{bottom:603.084000px;}
.y221{bottom:603.282000px;}
.y31{bottom:605.988000px;}
.y79{bottom:606.828000px;}
.y1f8{bottom:606.840000px;}
.y1b5{bottom:607.416000px;}
.y55{bottom:607.482000px;}
.y27c{bottom:611.850000px;}
.y14f{bottom:612.000000px;}
.y252{bottom:615.986250px;}
.yf6{bottom:616.536000px;}
.ydd{bottom:616.560000px;}
.y9a{bottom:616.584000px;}
.y220{bottom:618.426000px;}
.ybc{bottom:618.750000px;}
.y16f{bottom:620.916000px;}
.yb{bottom:621.263550px;}
.y198{bottom:623.334000px;}
.y1de{bottom:626.106000px;}
.y115{bottom:626.178000px;}
.y30{bottom:628.794000px;}
.y78{bottom:629.634000px;}
.y1f7{bottom:629.790000px;}
.y1b4{bottom:630.222000px;}
.y54{bottom:630.288000px;}
.y27b{bottom:630.600000px;}
.y21f{bottom:633.570000px;}
.y14e{bottom:634.500000px;}
.y251{bottom:634.886250px;}
.yf5{bottom:638.730000px;}
.ydc{bottom:638.754000px;}
.y99{bottom:638.778000px;}
.ybb{bottom:640.800000px;}
.ya{bottom:640.913550px;}
.y16e{bottom:642.822000px;}
.y197{bottom:645.078000px;}
.y21e{bottom:648.714000px;}
.y1dd{bottom:649.200000px;}
.y114{bottom:649.272000px;}
.y27a{bottom:649.350000px;}
.y2f{bottom:651.600000px;}
.y77{bottom:652.440000px;}
.y1f6{bottom:652.740000px;}
.y1b3{bottom:653.028000px;}
.y53{bottom:653.094000px;}
.y250{bottom:653.786250px;}
.y14d{bottom:657.000000px;}
.y9{bottom:660.563550px;}
.yf4{bottom:660.924000px;}
.ydb{bottom:660.948000px;}
.y98{bottom:660.972000px;}
.yba{bottom:662.850000px;}
.y21d{bottom:663.858000px;}
.y16d{bottom:664.728000px;}
.y196{bottom:666.822000px;}
.y279{bottom:668.100000px;}
.y1dc{bottom:672.300000px;}
.y113{bottom:672.366000px;}
.y24f{bottom:672.686250px;}
.y2e{bottom:674.550000px;}
.y76{bottom:675.246000px;}
.y1f5{bottom:675.690000px;}
.y1b2{bottom:675.834000px;}
.y52{bottom:675.894000px;}
.y21c{bottom:679.002000px;}
.y14c{bottom:679.500000px;}
.y8{bottom:680.213550px;}
.yf3{bottom:683.118000px;}
.yda{bottom:683.142000px;}
.y97{bottom:683.166000px;}
.yb9{bottom:684.900000px;}
.y16c{bottom:686.634000px;}
.y278{bottom:686.850000px;}
.y195{bottom:688.566000px;}
.y21b{bottom:694.146000px;}
.y112{bottom:695.460000px;}
.y2d{bottom:697.500000px;}
.y75{bottom:698.052000px;}
.y51{bottom:698.640000px;}
.y14b{bottom:702.000000px;}
.y24e{bottom:704.342100px;}
.yf2{bottom:705.312000px;}
.yd9{bottom:705.336000px;}
.y96{bottom:705.360000px;}
.y277{bottom:705.600000px;}
.yb8{bottom:706.950000px;}
.y7{bottom:708.218550px;}
.y16b{bottom:708.540000px;}
.y21a{bottom:709.290000px;}
.y194{bottom:710.310000px;}
.y111{bottom:718.554000px;}
.y2c{bottom:720.450000px;}
.y74{bottom:720.858000px;}
.y50{bottom:721.446000px;}
.y276{bottom:724.350000px;}
.y219{bottom:724.434000px;}
.y14a{bottom:724.500000px;}
.yf1{bottom:727.506000px;}
.yd8{bottom:727.530000px;}
.y95{bottom:727.554000px;}
.yb7{bottom:729.000000px;}
.y16a{bottom:730.446000px;}
.y193{bottom:732.054000px;}
.y24d{bottom:735.102000px;}
.y218{bottom:739.578000px;}
.y110{bottom:741.648000px;}
.y275{bottom:743.100000px;}
.y2b{bottom:743.400000px;}
.y73{bottom:743.664000px;}
.y4f{bottom:744.252000px;}
.y149{bottom:747.000000px;}
.yd7{bottom:749.724000px;}
.y94{bottom:749.748000px;}
.yb6{bottom:751.050000px;}
.y169{bottom:752.352000px;}
.y192{bottom:753.798000px;}
.y217{bottom:754.740000px;}
.y6{bottom:754.854300px;}
.y274{bottom:761.850000px;}
.y10f{bottom:764.742000px;}
.y2a{bottom:766.350000px;}
.y72{bottom:766.470000px;}
.y4e{bottom:767.058000px;}
.y148{bottom:769.500000px;}
.y216{bottom:769.896000px;}
.yd6{bottom:771.918000px;}
.y93{bottom:771.942000px;}
.yb5{bottom:773.100000px;}
.y168{bottom:774.258000px;}
.y191{bottom:775.542000px;}
.y5{bottom:778.104300px;}
.y273{bottom:780.600000px;}
.y24c{bottom:784.350000px;}
.y215{bottom:785.040000px;}
.y10e{bottom:787.836000px;}
.y71{bottom:789.276000px;}
.y29{bottom:789.300000px;}
.y4d{bottom:789.864000px;}
.y132{bottom:791.250000px;}
.y147{bottom:792.000000px;}
.yd5{bottom:794.112000px;}
.y92{bottom:794.136000px;}
.yb4{bottom:795.150000px;}
.y167{bottom:796.164000px;}
.y190{bottom:797.286000px;}
.y24b{bottom:799.350000px;}
.y214{bottom:800.184000px;}
.y10d{bottom:810.930000px;}
.y70{bottom:812.082000px;}
.y28{bottom:812.250000px;}
.y4c{bottom:812.670000px;}
.y24a{bottom:814.350000px;}
.y146{bottom:814.500000px;}
.y213{bottom:815.328000px;}
.yd4{bottom:816.306000px;}
.y91{bottom:816.330000px;}
.yb3{bottom:817.200000px;}
.y166{bottom:818.070000px;}
.y272{bottom:818.100000px;}
.y18f{bottom:819.030000px;}
.y249{bottom:829.350000px;}
.y212{bottom:830.472000px;}
.y10c{bottom:834.024000px;}
.y6f{bottom:834.888000px;}
.y27{bottom:835.200000px;}
.y4b{bottom:835.476000px;}
.y131{bottom:836.274000px;}
.y271{bottom:836.850000px;}
.y145{bottom:837.000000px;}
.yd3{bottom:838.512000px;}
.y90{bottom:838.524000px;}
.yb2{bottom:839.250000px;}
.y165{bottom:839.976000px;}
.y18e{bottom:840.774000px;}
.y248{bottom:844.350000px;}
.y4{bottom:846.000000px;}
.y211{bottom:852.000000px;}
.y270{bottom:855.600000px;}
.y10b{bottom:857.118000px;}
.y6e{bottom:857.694000px;}
.y26{bottom:858.150000px;}
.y4a{bottom:858.282000px;}
.y130{bottom:858.918000px;}
.y247{bottom:859.350000px;}
.y144{bottom:859.500000px;}
.yd2{bottom:860.706000px;}
.y8f{bottom:860.718000px;}
.yb1{bottom:861.300000px;}
.y164{bottom:861.882000px;}
.y18d{bottom:862.518000px;}
.y246{bottom:874.350000px;}
.y3{bottom:876.750000px;}
.y10a{bottom:880.212000px;}
.y6d{bottom:880.500000px;}
.y49{bottom:881.088000px;}
.y25{bottom:881.100000px;}
.y12f{bottom:881.562000px;}
.y143{bottom:882.000000px;}
.yd1{bottom:882.900000px;}
.y8e{bottom:882.912000px;}
.yb0{bottom:883.350000px;}
.y163{bottom:883.788000px;}
.y18c{bottom:884.262000px;}
.y245{bottom:889.350000px;}
.y26f{bottom:893.100000px;}
.y210{bottom:897.000000px;}
.y6c{bottom:903.306000px;}
.y48{bottom:903.894000px;}
.y24{bottom:904.050000px;}
.y12e{bottom:904.206000px;}
.y244{bottom:904.350000px;}
.y142{bottom:904.500000px;}
.y8d{bottom:905.106000px;}
.yaf{bottom:905.400000px;}
.y162{bottom:905.694000px;}
.y18b{bottom:906.006000px;}
.y26e{bottom:911.850000px;}
.y20f{bottom:912.000000px;}
.y243{bottom:919.350000px;}
.y2{bottom:926.250000px;}
.y6b{bottom:926.400000px;}
.y47{bottom:926.700000px;}
.y12d{bottom:926.850000px;}
.y23{bottom:927.000000px;}
.y8c{bottom:927.300000px;}
.yae{bottom:927.450000px;}
.y161{bottom:927.600000px;}
.y18a{bottom:927.750000px;}
.y26d{bottom:930.600000px;}
.y242{bottom:934.350000px;}
.h6{height:30.313623px;}
.h2{height:37.990723px;}
.h11{height:39.072000px;}
.h5{height:39.990234px;}
.h7{height:40.757812px;}
.h12{height:45.852539px;}
.hb{height:47.988281px;}
.he{height:48.840000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h9{height:61.160719px;}
.hf{height:61.232719px;}
.h8{height:61.376719px;}
.h10{height:61.568719px;}
.hc{height:66.363703px;}
.ha{height:66.555703px;}
.hd{height:97.136719px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x6{left:82.386000px;}
.x2{left:97.263750px;}
.x4{left:112.500000px;}
.x5{left:127.381950px;}
.x9{left:180.510000px;}
.x8{left:348.132000px;}
.x7{left:412.987950px;}
.x3{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v3{vertical-align:-13.056000pt;}
.v6{vertical-align:-8.597333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.800000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:32.000000pt;}
.ls80{letter-spacing:-11.989333pt;}
.ls63{letter-spacing:-7.424000pt;}
.ls2a{letter-spacing:-6.400000pt;}
.ls40{letter-spacing:-5.824000pt;}
.ls83{letter-spacing:-4.266667pt;}
.ls31{letter-spacing:-3.840000pt;}
.ls29{letter-spacing:-3.392000pt;}
.ls62{letter-spacing:-3.200000pt;}
.ls76{letter-spacing:-3.136000pt;}
.ls3e{letter-spacing:-2.816000pt;}
.ls75{letter-spacing:-2.752000pt;}
.ls2f{letter-spacing:-2.496000pt;}
.ls3f{letter-spacing:-2.048000pt;}
.ls44{letter-spacing:-1.920000pt;}
.ls5f{letter-spacing:-1.856000pt;}
.ls81{letter-spacing:-1.664000pt;}
.ls2d{letter-spacing:-0.896000pt;}
.ls2e{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.768000pt;}
.ls2b{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls84{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls86{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls45{letter-spacing:-0.224000pt;}
.ls82{letter-spacing:-0.213333pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.179200pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls38{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.038400pt;}
.lsa{letter-spacing:0.064000pt;}
.ls37{letter-spacing:0.089600pt;}
.ls11{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.169600pt;}
.ls10{letter-spacing:0.192000pt;}
.ls49{letter-spacing:0.224000pt;}
.ls79{letter-spacing:0.230400pt;}
.ls25{letter-spacing:0.249600pt;}
.ls9{letter-spacing:0.256000pt;}
.ls68{letter-spacing:0.313600pt;}
.ls13{letter-spacing:0.320000pt;}
.ls77{letter-spacing:0.332800pt;}
.ls22{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls7a{letter-spacing:0.441600pt;}
.ls18{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.704000pt;}
.ls30{letter-spacing:0.768000pt;}
.ls4b{letter-spacing:0.806400pt;}
.lsb{letter-spacing:0.832000pt;}
.ls71{letter-spacing:0.853333pt;}
.ls17{letter-spacing:0.896000pt;}
.ls48{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.024000pt;}
.ls21{letter-spacing:1.088000pt;}
.ls47{letter-spacing:1.152000pt;}
.ls78{letter-spacing:1.280000pt;}
.ls72{letter-spacing:1.344000pt;}
.ls2c{letter-spacing:1.408000pt;}
.ls3d{letter-spacing:1.600000pt;}
.ls69{letter-spacing:1.856000pt;}
.ls3c{letter-spacing:2.107200pt;}
.ls53{letter-spacing:2.150400pt;}
.ls54{letter-spacing:2.176000pt;}
.ls52{letter-spacing:2.188800pt;}
.ls1{letter-spacing:2.533333pt;}
.ls7f{letter-spacing:2.602667pt;}
.ls4d{letter-spacing:2.624000pt;}
.ls64{letter-spacing:2.713600pt;}
.ls4f{letter-spacing:2.726400pt;}
.ls4e{letter-spacing:2.784000pt;}
.ls4a{letter-spacing:2.950400pt;}
.ls7e{letter-spacing:3.029333pt;}
.ls59{letter-spacing:3.136000pt;}
.ls5a{letter-spacing:3.161600pt;}
.ls41{letter-spacing:3.302400pt;}
.ls33{letter-spacing:3.456000pt;}
.ls34{letter-spacing:3.488000pt;}
.ls74{letter-spacing:3.584000pt;}
.ls28{letter-spacing:3.712000pt;}
.ls3{letter-spacing:3.882667pt;}
.ls50{letter-spacing:3.904000pt;}
.ls27{letter-spacing:4.032000pt;}
.ls8{letter-spacing:4.053333pt;}
.ls7c{letter-spacing:4.224000pt;}
.ls3a{letter-spacing:4.608000pt;}
.ls61{letter-spacing:4.646400pt;}
.ls66{letter-spacing:4.787200pt;}
.ls5d{letter-spacing:4.928000pt;}
.ls39{letter-spacing:4.992000pt;}
.ls70{letter-spacing:5.056000pt;}
.ls6b{letter-spacing:5.100800pt;}
.ls5e{letter-spacing:5.248000pt;}
.ls6c{letter-spacing:5.830400pt;}
.ls7d{letter-spacing:6.016000pt;}
.ls56{letter-spacing:6.080000pt;}
.ls46{letter-spacing:6.400000pt;}
.ls4c{letter-spacing:6.464000pt;}
.ls55{letter-spacing:6.656000pt;}
.ls5c{letter-spacing:6.752000pt;}
.ls1f{letter-spacing:7.097600pt;}
.ls85{letter-spacing:7.200000pt;}
.ls6e{letter-spacing:7.296000pt;}
.ls6f{letter-spacing:7.360000pt;}
.ls6d{letter-spacing:7.385600pt;}
.ls0{letter-spacing:7.498667pt;}
.ls6{letter-spacing:7.520000pt;}
.ls42{letter-spacing:7.616000pt;}
.ls5b{letter-spacing:7.680000pt;}
.ls60{letter-spacing:7.936000pt;}
.ls67{letter-spacing:8.320000pt;}
.ls65{letter-spacing:8.576000pt;}
.ls7b{letter-spacing:8.960000pt;}
.ls58{letter-spacing:9.088000pt;}
.ls3b{letter-spacing:9.216000pt;}
.ls57{letter-spacing:9.248000pt;}
.ls73{letter-spacing:9.747200pt;}
.ls51{letter-spacing:9.804800pt;}
.ls43{letter-spacing:12.262667pt;}
.ls36{letter-spacing:12.263200pt;}
.ls6a{letter-spacing:13.779200pt;}
.ls2{letter-spacing:14.986667pt;}
.ws4c{word-spacing:-64.320000pt;}
.ws56{word-spacing:-64.256000pt;}
.ws5d{word-spacing:-64.000000pt;}
.ws37{word-spacing:-63.936000pt;}
.ws2{word-spacing:-22.506667pt;}
.ws83{word-spacing:-20.688000pt;}
.ws3e{word-spacing:-19.584000pt;}
.ws51{word-spacing:-18.944000pt;}
.ws58{word-spacing:-18.816000pt;}
.ws60{word-spacing:-18.624000pt;}
.ws41{word-spacing:-18.496000pt;}
.ws4f{word-spacing:-18.304000pt;}
.ws50{word-spacing:-18.240000pt;}
.ws4b{word-spacing:-18.176000pt;}
.ws59{word-spacing:-18.112000pt;}
.ws71{word-spacing:-18.048000pt;}
.ws15{word-spacing:-17.984000pt;}
.ws38{word-spacing:-17.920000pt;}
.ws29{word-spacing:-17.664000pt;}
.ws68{word-spacing:-16.448000pt;}
.ws72{word-spacing:-16.384000pt;}
.ws61{word-spacing:-16.320000pt;}
.ws42{word-spacing:-16.256000pt;}
.ws55{word-spacing:-16.192000pt;}
.ws4d{word-spacing:-16.128000pt;}
.ws65{word-spacing:-16.064000pt;}
.ws3d{word-spacing:-16.000000pt;}
.ws39{word-spacing:-15.936000pt;}
.ws5f{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws32{word-spacing:-15.744000pt;}
.ws36{word-spacing:-15.680000pt;}
.ws40{word-spacing:-15.616000pt;}
.ws43{word-spacing:-15.552000pt;}
.ws4a{word-spacing:-15.488000pt;}
.ws67{word-spacing:-15.424000pt;}
.ws64{word-spacing:-15.168000pt;}
.ws5{word-spacing:-14.986667pt;}
.ws2e{word-spacing:-14.976000pt;}
.ws3f{word-spacing:-14.912000pt;}
.ws4e{word-spacing:-13.395200pt;}
.ws84{word-spacing:-13.173333pt;}
.ws85{word-spacing:-12.906667pt;}
.ws2f{word-spacing:-12.588800pt;}
.ws7a{word-spacing:-11.989333pt;}
.ws7b{word-spacing:-11.349333pt;}
.ws78{word-spacing:-10.965333pt;}
.wsc{word-spacing:-10.538667pt;}
.ws7d{word-spacing:-10.112000pt;}
.ws69{word-spacing:-8.576000pt;}
.ws6d{word-spacing:-8.320000pt;}
.ws5a{word-spacing:-7.680000pt;}
.ws9{word-spacing:-7.552000pt;}
.ws2a{word-spacing:-7.520000pt;}
.ws79{word-spacing:-6.016000pt;}
.ws5e{word-spacing:-4.992000pt;}
.ws8{word-spacing:-4.053333pt;}
.ws1{word-spacing:-2.584000pt;}
.ws6e{word-spacing:-1.856000pt;}
.ws44{word-spacing:-1.600000pt;}
.ws77{word-spacing:-1.344000pt;}
.ws76{word-spacing:-1.280000pt;}
.ws52{word-spacing:-1.152000pt;}
.ws21{word-spacing:-1.088000pt;}
.ws1a{word-spacing:-1.024000pt;}
.ws53{word-spacing:-0.960000pt;}
.ws1c{word-spacing:-0.896000pt;}
.ws6f{word-spacing:-0.853333pt;}
.ws13{word-spacing:-0.832000pt;}
.ws35{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.704000pt;}
.ws27{word-spacing:-0.640000pt;}
.ws1d{word-spacing:-0.576000pt;}
.ws22{word-spacing:-0.512000pt;}
.ws1e{word-spacing:-0.448000pt;}
.ws6{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.384000pt;}
.ws6c{word-spacing:-0.358400pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws66{word-spacing:-0.268800pt;}
.wsf{word-spacing:-0.256000pt;}
.ws54{word-spacing:-0.224000pt;}
.ws18{word-spacing:-0.192000pt;}
.ws3a{word-spacing:-0.134400pt;}
.ws19{word-spacing:-0.128000pt;}
.ws10{word-spacing:-0.064000pt;}
.ws88{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.044800pt;}
.ws7c{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.042667pt;}
.ws16{word-spacing:0.064000pt;}
.wse{word-spacing:0.128000pt;}
.ws34{word-spacing:0.134400pt;}
.ws49{word-spacing:0.179200pt;}
.ws28{word-spacing:0.192000pt;}
.ws80{word-spacing:0.213333pt;}
.ws11{word-spacing:0.256000pt;}
.ws87{word-spacing:0.266667pt;}
.ws14{word-spacing:0.320000pt;}
.ws7{word-spacing:0.373333pt;}
.ws17{word-spacing:0.384000pt;}
.ws82{word-spacing:0.426667pt;}
.ws26{word-spacing:0.448000pt;}
.ws25{word-spacing:0.512000pt;}
.ws4{word-spacing:0.533333pt;}
.ws20{word-spacing:0.576000pt;}
.ws12{word-spacing:0.640000pt;}
.ws2d{word-spacing:0.704000pt;}
.ws1f{word-spacing:0.768000pt;}
.ws75{word-spacing:0.832000pt;}
.ws30{word-spacing:0.896000pt;}
.ws86{word-spacing:1.280000pt;}
.ws7f{word-spacing:1.664000pt;}
.ws48{word-spacing:1.856000pt;}
.ws46{word-spacing:2.048000pt;}
.ws3b{word-spacing:2.133333pt;}
.ws31{word-spacing:2.496000pt;}
.ws73{word-spacing:2.752000pt;}
.ws45{word-spacing:2.816000pt;}
.ws74{word-spacing:3.136000pt;}
.ws62{word-spacing:3.200000pt;}
.ws2b{word-spacing:3.392000pt;}
.wsd{word-spacing:3.733333pt;}
.ws33{word-spacing:3.776000pt;}
.ws5c{word-spacing:3.840000pt;}
.ws81{word-spacing:4.266667pt;}
.ws6a{word-spacing:4.480000pt;}
.ws47{word-spacing:5.824000pt;}
.ws2c{word-spacing:6.400000pt;}
.ws70{word-spacing:7.296000pt;}
.ws63{word-spacing:7.424000pt;}
.ws5b{word-spacing:7.744000pt;}
.ws6b{word-spacing:8.960000pt;}
.ws57{word-spacing:9.024000pt;}
.ws7e{word-spacing:11.989333pt;}
.ws0{word-spacing:129.952000pt;}
._9{margin-left:-843.396267pt;}
._13{margin-left:-18.352533pt;}
._1c{margin-left:-16.280000pt;}
._17{margin-left:-15.264000pt;}
._11{margin-left:-13.828267pt;}
._15{margin-left:-12.574400pt;}
._19{margin-left:-8.646133pt;}
._14{margin-left:-7.686400pt;}
._c{margin-left:-6.729067pt;}
._6{margin-left:-5.461333pt;}
._1{margin-left:-4.277333pt;}
._b{margin-left:-2.697333pt;}
._4{margin-left:-1.525333pt;}
._2{width:1.545333pt;}
._0{width:3.120000pt;}
._7{width:4.790400pt;}
._8{width:5.685600pt;}
._a{width:6.682933pt;}
._3{width:7.584000pt;}
._d{width:9.196800pt;}
._e{width:10.396000pt;}
._10{width:11.961600pt;}
._12{width:13.365333pt;}
._18{width:15.086133pt;}
._1b{width:16.012800pt;}
._1a{width:16.923733pt;}
._5{width:18.794667pt;}
._f{width:28.129867pt;}
._16{width:514.249333pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y46{bottom:104.000000pt;}
.y1db{bottom:104.869333pt;}
.y12c{bottom:104.880000pt;}
.y1f4{bottom:104.922667pt;}
.y186{bottom:105.157333pt;}
.y241{bottom:105.488000pt;}
.y22{bottom:106.358000pt;}
.y141{bottom:107.740000pt;}
.y20e{bottom:107.914667pt;}
.y1af{bottom:109.530667pt;}
.y26c{bottom:110.743333pt;}
.y45{bottom:117.333333pt;}
.y240{bottom:118.949333pt;}
.y6a{bottom:121.073333pt;}
.y20d{bottom:121.248000pt;}
.y21{bottom:123.158000pt;}
.y140{bottom:124.000000pt;}
.y185{bottom:124.085333pt;}
.y1da{bottom:125.397333pt;}
.y12b{bottom:125.408000pt;}
.y1f3{bottom:125.450667pt;}
.y26b{bottom:127.543333pt;}
.y1b1{bottom:127.740000pt;}
.y1ae{bottom:128.858667pt;}
.y1cc{bottom:130.666667pt;}
.y23f{bottom:132.410667pt;}
.y44{bottom:134.406667pt;}
.y20c{bottom:134.581333pt;}
.y69{bottom:137.333333pt;}
.y189{bottom:141.073333pt;}
.y184{bottom:143.013333pt;}
.y188{bottom:144.000000pt;}
.y26a{bottom:144.343333pt;}
.y23e{bottom:145.872000pt;}
.y1d9{bottom:145.925333pt;}
.y12a{bottom:145.936000pt;}
.y1f2{bottom:145.978667pt;}
.y20{bottom:147.516133pt;}
.y1b0{bottom:147.740000pt;}
.y20b{bottom:147.914667pt;}
.y1ad{bottom:148.186667pt;}
.y68{bottom:150.666667pt;}
.yd0{bottom:158.000000pt;}
.y23d{bottom:159.333333pt;}
.y269{bottom:161.143333pt;}
.y20a{bottom:161.248000pt;}
.y183{bottom:162.485333pt;}
.y67{bottom:164.000000pt;}
.y1f{bottom:164.982800pt;}
.y1d8{bottom:166.453333pt;}
.y129{bottom:166.464000pt;}
.y1f1{bottom:166.506667pt;}
.y1ac{bottom:167.514667pt;}
.y13f{bottom:167.740000pt;}
.y23c{bottom:172.794667pt;}
.yf0{bottom:172.880000pt;}
.yad{bottom:173.088000pt;}
.y109{bottom:173.200000pt;}
.y43{bottom:173.248000pt;}
.y8b{bottom:174.506667pt;}
.y209{bottom:174.581333pt;}
.y1c7{bottom:175.125333pt;}
.y1cb{bottom:177.333333pt;}
.ycf{bottom:177.600000pt;}
.y268{bottom:177.943333pt;}
.y66{bottom:181.073333pt;}
.y182{bottom:181.957333pt;}
.y1e{bottom:182.449467pt;}
.y187{bottom:184.000000pt;}
.y23b{bottom:186.256000pt;}
.y1ab{bottom:186.842667pt;}
.y1d7{bottom:186.981333pt;}
.y128{bottom:186.992000pt;}
.y1f0{bottom:187.034667pt;}
.y208{bottom:188.202667pt;}
.y1ca{bottom:190.666667pt;}
.yac{bottom:192.816000pt;}
.yef{bottom:192.880000pt;}
.y108{bottom:192.928000pt;}
.y42{bottom:193.648000pt;}
.y267{bottom:194.743333pt;}
.y8a{bottom:194.778667pt;}
.y1c6{bottom:195.397333pt;}
.yce{bottom:197.200000pt;}
.y23a{bottom:199.717333pt;}
.y1d{bottom:199.916133pt;}
.y181{bottom:201.429333pt;}
.y13e{bottom:203.088133pt;}
.y160{bottom:204.000000pt;}
.y1aa{bottom:206.170667pt;}
.y1d6{bottom:207.509333pt;}
.y127{bottom:207.520000pt;}
.y1ef{bottom:207.562667pt;}
.y266{bottom:211.543333pt;}
.yab{bottom:212.544000pt;}
.yee{bottom:212.608000pt;}
.y107{bottom:212.656000pt;}
.y239{bottom:213.178667pt;}
.y207{bottom:213.866667pt;}
.y41{bottom:214.048000pt;}
.y89{bottom:215.050667pt;}
.y65{bottom:215.632000pt;}
.y1c5{bottom:215.669333pt;}
.ycd{bottom:216.800000pt;}
.y1c9{bottom:217.333333pt;}
.y1c{bottom:217.382800pt;}
.y180{bottom:220.901333pt;}
.y13d{bottom:223.360133pt;}
.y15f{bottom:224.000000pt;}
.y1a9{bottom:225.498667pt;}
.y238{bottom:226.640000pt;}
.y1d5{bottom:228.037333pt;}
.y126{bottom:228.048000pt;}
.y1ee{bottom:228.090667pt;}
.y265{bottom:228.343333pt;}
.yaa{bottom:232.272000pt;}
.yed{bottom:232.336000pt;}
.y106{bottom:232.384000pt;}
.y1c8{bottom:234.406667pt;}
.y40{bottom:234.448000pt;}
.y1b{bottom:234.849467pt;}
.y88{bottom:235.322667pt;}
.y64{bottom:235.904000pt;}
.y1c4{bottom:235.941333pt;}
.ycc{bottom:236.400000pt;}
.y237{bottom:240.101333pt;}
.y17f{bottom:240.373333pt;}
.y13c{bottom:243.632133pt;}
.y15e{bottom:244.000000pt;}
.y1a8{bottom:244.826667pt;}
.y264{bottom:245.143333pt;}
.y1d4{bottom:248.565333pt;}
.y125{bottom:248.576000pt;}
.y1ed{bottom:248.618667pt;}
.yec{bottom:252.064000pt;}
.y105{bottom:252.112000pt;}
.ya9{bottom:252.154667pt;}
.y1a{bottom:252.316133pt;}
.y236{bottom:253.562667pt;}
.y206{bottom:253.813333pt;}
.y3f{bottom:254.848000pt;}
.y87{bottom:255.594667pt;}
.ycb{bottom:256.000000pt;}
.y63{bottom:256.176000pt;}
.y1c3{bottom:256.213333pt;}
.y17e{bottom:259.845333pt;}
.y263{bottom:261.943333pt;}
.y13b{bottom:263.904133pt;}
.y15d{bottom:264.000000pt;}
.y1a7{bottom:264.154667pt;}
.y235{bottom:267.024000pt;}
.y1d3{bottom:269.093333pt;}
.y124{bottom:269.104000pt;}
.y1ec{bottom:269.146667pt;}
.y19{bottom:269.782800pt;}
.yeb{bottom:271.792000pt;}
.y104{bottom:271.840000pt;}
.ya8{bottom:271.882667pt;}
.y205{bottom:274.213333pt;}
.y3e{bottom:275.120000pt;}
.yca{bottom:275.600000pt;}
.y86{bottom:275.866667pt;}
.y62{bottom:276.448000pt;}
.y1c2{bottom:276.485333pt;}
.y262{bottom:278.743333pt;}
.y17d{bottom:279.317333pt;}
.y234{bottom:280.485333pt;}
.y1a6{bottom:283.482667pt;}
.y15c{bottom:284.000000pt;}
.y13a{bottom:284.176133pt;}
.y18{bottom:287.249467pt;}
.y1d2{bottom:289.621333pt;}
.y123{bottom:289.632000pt;}
.y1eb{bottom:289.674667pt;}
.yea{bottom:291.520000pt;}
.y103{bottom:291.568000pt;}
.ya7{bottom:291.610667pt;}
.y233{bottom:293.946667pt;}
.y204{bottom:294.613333pt;}
.yc9{bottom:295.200000pt;}
.y3d{bottom:295.392000pt;}
.y261{bottom:295.543333pt;}
.y85{bottom:296.138667pt;}
.y61{bottom:296.720000pt;}
.y1c1{bottom:296.757333pt;}
.y17c{bottom:298.789333pt;}
.y1a5{bottom:302.810667pt;}
.y15b{bottom:304.000000pt;}
.y139{bottom:304.448133pt;}
.y17{bottom:304.716133pt;}
.y232{bottom:307.408000pt;}
.y1d1{bottom:310.149333pt;}
.y122{bottom:310.160000pt;}
.y1ea{bottom:310.202667pt;}
.ye9{bottom:311.248000pt;}
.y102{bottom:311.296000pt;}
.ya6{bottom:311.338667pt;}
.y260{bottom:312.343333pt;}
.yc8{bottom:314.800000pt;}
.y203{bottom:315.013333pt;}
.y3c{bottom:315.664000pt;}
.y84{bottom:316.410667pt;}
.y60{bottom:316.992000pt;}
.y1c0{bottom:317.029333pt;}
.y17b{bottom:318.261333pt;}
.y231{bottom:320.869333pt;}
.y1a4{bottom:322.138667pt;}
.y16{bottom:322.182800pt;}
.y15a{bottom:324.000000pt;}
.y138{bottom:324.720133pt;}
.y25f{bottom:329.143333pt;}
.y1d0{bottom:330.677333pt;}
.y121{bottom:330.688000pt;}
.y1e9{bottom:330.730667pt;}
.ye8{bottom:330.976000pt;}
.y101{bottom:331.024000pt;}
.ya5{bottom:331.066667pt;}
.y230{bottom:334.330667pt;}
.yc7{bottom:334.400000pt;}
.y202{bottom:335.413333pt;}
.y3b{bottom:335.936000pt;}
.y83{bottom:336.682667pt;}
.y5f{bottom:337.264000pt;}
.y1bf{bottom:337.301333pt;}
.y17a{bottom:337.733333pt;}
.y15{bottom:339.649467pt;}
.y1a3{bottom:341.466667pt;}
.y159{bottom:344.000000pt;}
.y137{bottom:344.970800pt;}
.y25e{bottom:345.943333pt;}
.y22f{bottom:347.792000pt;}
.ye7{bottom:350.704000pt;}
.y100{bottom:350.752000pt;}
.ya4{bottom:350.794667pt;}
.y1cf{bottom:351.205333pt;}
.y120{bottom:351.216000pt;}
.y1e8{bottom:351.258667pt;}
.yc6{bottom:354.000000pt;}
.y201{bottom:355.813333pt;}
.y3a{bottom:356.208000pt;}
.y82{bottom:356.954667pt;}
.y179{bottom:357.205333pt;}
.y5e{bottom:357.536000pt;}
.y1be{bottom:357.573333pt;}
.y1a2{bottom:360.794667pt;}
.y22e{bottom:361.253333pt;}
.y25d{bottom:362.743333pt;}
.y158{bottom:364.000000pt;}
.y14{bottom:364.676133pt;}
.y136{bottom:365.242800pt;}
.ye6{bottom:370.432000pt;}
.yff{bottom:370.480000pt;}
.ya3{bottom:370.522667pt;}
.y11f{bottom:371.744000pt;}
.y1e7{bottom:371.786667pt;}
.y1ce{bottom:371.850667pt;}
.yc5{bottom:373.600000pt;}
.y22d{bottom:374.714667pt;}
.y200{bottom:376.213333pt;}
.y39{bottom:376.480000pt;}
.y178{bottom:376.677333pt;}
.y81{bottom:377.226667pt;}
.y5d{bottom:377.808000pt;}
.y1bd{bottom:377.845333pt;}
.y25c{bottom:379.543333pt;}
.y1a1{bottom:380.122667pt;}
.y157{bottom:384.000000pt;}
.y135{bottom:385.514800pt;}
.y22c{bottom:388.176000pt;}
.ye5{bottom:390.160000pt;}
.yfe{bottom:390.208000pt;}
.ya2{bottom:390.250667pt;}
.y11e{bottom:392.272000pt;}
.y1e6{bottom:392.314667pt;}
.y1cd{bottom:392.378667pt;}
.yc4{bottom:393.200000pt;}
.y177{bottom:396.149333pt;}
.y25b{bottom:396.343333pt;}
.y1ff{bottom:396.613333pt;}
.y38{bottom:396.752000pt;}
.y80{bottom:397.498667pt;}
.y5c{bottom:398.080000pt;}
.y1bc{bottom:398.117333pt;}
.y1a0{bottom:399.450667pt;}
.y22b{bottom:401.637333pt;}
.y156{bottom:404.000000pt;}
.y134{bottom:405.786800pt;}
.y13{bottom:406.276133pt;}
.ye4{bottom:409.888000pt;}
.yfd{bottom:409.936000pt;}
.ya1{bottom:409.978667pt;}
.yc3{bottom:412.800000pt;}
.y1e5{bottom:412.842667pt;}
.y11d{bottom:412.906667pt;}
.y25a{bottom:413.143333pt;}
.y282{bottom:413.866667pt;}
.y22a{bottom:415.098667pt;}
.y176{bottom:415.621333pt;}
.y1fe{bottom:417.013333pt;}
.y37{bottom:417.024000pt;}
.y7f{bottom:417.770667pt;}
.y5b{bottom:418.352000pt;}
.y1bb{bottom:418.389333pt;}
.y19f{bottom:418.778667pt;}
.y12{bottom:423.076133pt;}
.y155{bottom:424.000000pt;}
.y133{bottom:426.058800pt;}
.y229{bottom:428.560000pt;}
.ye3{bottom:429.616000pt;}
.yfc{bottom:429.664000pt;}
.ya0{bottom:429.706667pt;}
.y259{bottom:429.943333pt;}
.y281{bottom:430.533333pt;}
.yc2{bottom:432.400000pt;}
.y1e4{bottom:433.370667pt;}
.y11c{bottom:433.434667pt;}
.y175{bottom:435.093333pt;}
.y36{bottom:437.296000pt;}
.y1fd{bottom:437.413333pt;}
.y7e{bottom:438.042667pt;}
.y19e{bottom:438.106667pt;}
.y5a{bottom:438.624000pt;}
.y1ba{bottom:438.661333pt;}
.y228{bottom:442.021333pt;}
.y154{bottom:444.000000pt;}
.y258{bottom:446.743333pt;}
.y280{bottom:447.200000pt;}
.y11{bottom:447.434267pt;}
.ye2{bottom:449.344000pt;}
.yfb{bottom:449.392000pt;}
.y9f{bottom:449.434667pt;}
.yc1{bottom:452.000000pt;}
.y1e3{bottom:453.898667pt;}
.y11b{bottom:453.962667pt;}
.y174{bottom:454.565333pt;}
.y227{bottom:455.482667pt;}
.y19d{bottom:457.434667pt;}
.y35{bottom:457.568000pt;}
.y1fc{bottom:457.813333pt;}
.y7d{bottom:458.314667pt;}
.y1b9{bottom:458.837333pt;}
.y59{bottom:458.896000pt;}
.y257{bottom:463.543333pt;}
.y27f{bottom:463.866667pt;}
.y153{bottom:464.000000pt;}
.y10{bottom:464.900933pt;}
.y11a{bottom:466.490667pt;}
.y226{bottom:468.944000pt;}
.ye1{bottom:469.072000pt;}
.yfa{bottom:469.120000pt;}
.y9e{bottom:469.162667pt;}
.yc0{bottom:471.600000pt;}
.y173{bottom:474.037333pt;}
.y1e2{bottom:474.426667pt;}
.y119{bottom:474.490667pt;}
.y19c{bottom:476.762667pt;}
.y34{bottom:477.840000pt;}
.y1fb{bottom:478.213333pt;}
.y7c{bottom:478.586667pt;}
.y1b8{bottom:479.109333pt;}
.y58{bottom:479.168000pt;}
.y256{bottom:480.343333pt;}
.yf{bottom:482.367600pt;}
.y225{bottom:482.405333pt;}
.y152{bottom:484.000000pt;}
.ye0{bottom:488.805333pt;}
.yf9{bottom:488.848000pt;}
.y9d{bottom:488.890667pt;}
.y27e{bottom:490.533333pt;}
.ybf{bottom:491.200000pt;}
.y172{bottom:493.509333pt;}
.y1e1{bottom:494.954667pt;}
.y118{bottom:495.018667pt;}
.y224{bottom:495.866667pt;}
.y19b{bottom:496.090667pt;}
.y255{bottom:497.143333pt;}
.y33{bottom:498.112000pt;}
.y1fa{bottom:498.613333pt;}
.y7b{bottom:498.858667pt;}
.y1b7{bottom:499.381333pt;}
.y57{bottom:499.440000pt;}
.ye{bottom:499.834267pt;}
.y151{bottom:504.000000pt;}
.yf8{bottom:508.576000pt;}
.ydf{bottom:508.597333pt;}
.y9c{bottom:508.618667pt;}
.y223{bottom:509.328000pt;}
.ybe{bottom:510.800000pt;}
.y171{bottom:512.981333pt;}
.y254{bottom:513.943333pt;}
.y19a{bottom:515.418667pt;}
.y1e0{bottom:515.482667pt;}
.y117{bottom:515.546667pt;}
.yd{bottom:517.300933pt;}
.y32{bottom:518.384000pt;}
.y1f9{bottom:519.013333pt;}
.y7a{bottom:519.130667pt;}
.y1b6{bottom:519.653333pt;}
.y56{bottom:519.712000pt;}
.y222{bottom:522.789333pt;}
.y150{bottom:524.000000pt;}
.y27d{bottom:527.200000pt;}
.yf7{bottom:528.304000pt;}
.yde{bottom:528.325333pt;}
.y9b{bottom:528.346667pt;}
.ybd{bottom:530.400000pt;}
.y253{bottom:530.743333pt;}
.y170{bottom:532.453333pt;}
.y199{bottom:534.746667pt;}
.yc{bottom:534.767600pt;}
.y1df{bottom:536.010667pt;}
.y116{bottom:536.074667pt;}
.y221{bottom:536.250667pt;}
.y31{bottom:538.656000pt;}
.y79{bottom:539.402667pt;}
.y1f8{bottom:539.413333pt;}
.y1b5{bottom:539.925333pt;}
.y55{bottom:539.984000pt;}
.y27c{bottom:543.866667pt;}
.y14f{bottom:544.000000pt;}
.y252{bottom:547.543333pt;}
.yf6{bottom:548.032000pt;}
.ydd{bottom:548.053333pt;}
.y9a{bottom:548.074667pt;}
.y220{bottom:549.712000pt;}
.ybc{bottom:550.000000pt;}
.y16f{bottom:551.925333pt;}
.yb{bottom:552.234267pt;}
.y198{bottom:554.074667pt;}
.y1de{bottom:556.538667pt;}
.y115{bottom:556.602667pt;}
.y30{bottom:558.928000pt;}
.y78{bottom:559.674667pt;}
.y1f7{bottom:559.813333pt;}
.y1b4{bottom:560.197333pt;}
.y54{bottom:560.256000pt;}
.y27b{bottom:560.533333pt;}
.y21f{bottom:563.173333pt;}
.y14e{bottom:564.000000pt;}
.y251{bottom:564.343333pt;}
.yf5{bottom:567.760000pt;}
.ydc{bottom:567.781333pt;}
.y99{bottom:567.802667pt;}
.ybb{bottom:569.600000pt;}
.ya{bottom:569.700933pt;}
.y16e{bottom:571.397333pt;}
.y197{bottom:573.402667pt;}
.y21e{bottom:576.634667pt;}
.y1dd{bottom:577.066667pt;}
.y114{bottom:577.130667pt;}
.y27a{bottom:577.200000pt;}
.y2f{bottom:579.200000pt;}
.y77{bottom:579.946667pt;}
.y1f6{bottom:580.213333pt;}
.y1b3{bottom:580.469333pt;}
.y53{bottom:580.528000pt;}
.y250{bottom:581.143333pt;}
.y14d{bottom:584.000000pt;}
.y9{bottom:587.167600pt;}
.yf4{bottom:587.488000pt;}
.ydb{bottom:587.509333pt;}
.y98{bottom:587.530667pt;}
.yba{bottom:589.200000pt;}
.y21d{bottom:590.096000pt;}
.y16d{bottom:590.869333pt;}
.y196{bottom:592.730667pt;}
.y279{bottom:593.866667pt;}
.y1dc{bottom:597.600000pt;}
.y113{bottom:597.658667pt;}
.y24f{bottom:597.943333pt;}
.y2e{bottom:599.600000pt;}
.y76{bottom:600.218667pt;}
.y1f5{bottom:600.613333pt;}
.y1b2{bottom:600.741333pt;}
.y52{bottom:600.794667pt;}
.y21c{bottom:603.557333pt;}
.y14c{bottom:604.000000pt;}
.y8{bottom:604.634267pt;}
.yf3{bottom:607.216000pt;}
.yda{bottom:607.237333pt;}
.y97{bottom:607.258667pt;}
.yb9{bottom:608.800000pt;}
.y16c{bottom:610.341333pt;}
.y278{bottom:610.533333pt;}
.y195{bottom:612.058667pt;}
.y21b{bottom:617.018667pt;}
.y112{bottom:618.186667pt;}
.y2d{bottom:620.000000pt;}
.y75{bottom:620.490667pt;}
.y51{bottom:621.013333pt;}
.y14b{bottom:624.000000pt;}
.y24e{bottom:626.081867pt;}
.yf2{bottom:626.944000pt;}
.yd9{bottom:626.965333pt;}
.y96{bottom:626.986667pt;}
.y277{bottom:627.200000pt;}
.yb8{bottom:628.400000pt;}
.y7{bottom:629.527600pt;}
.y16b{bottom:629.813333pt;}
.y21a{bottom:630.480000pt;}
.y194{bottom:631.386667pt;}
.y111{bottom:638.714667pt;}
.y2c{bottom:640.400000pt;}
.y74{bottom:640.762667pt;}
.y50{bottom:641.285333pt;}
.y276{bottom:643.866667pt;}
.y219{bottom:643.941333pt;}
.y14a{bottom:644.000000pt;}
.yf1{bottom:646.672000pt;}
.yd8{bottom:646.693333pt;}
.y95{bottom:646.714667pt;}
.yb7{bottom:648.000000pt;}
.y16a{bottom:649.285333pt;}
.y193{bottom:650.714667pt;}
.y24d{bottom:653.424000pt;}
.y218{bottom:657.402667pt;}
.y110{bottom:659.242667pt;}
.y275{bottom:660.533333pt;}
.y2b{bottom:660.800000pt;}
.y73{bottom:661.034667pt;}
.y4f{bottom:661.557333pt;}
.y149{bottom:664.000000pt;}
.yd7{bottom:666.421333pt;}
.y94{bottom:666.442667pt;}
.yb6{bottom:667.600000pt;}
.y169{bottom:668.757333pt;}
.y192{bottom:670.042667pt;}
.y217{bottom:670.880000pt;}
.y6{bottom:670.981600pt;}
.y274{bottom:677.200000pt;}
.y10f{bottom:679.770667pt;}
.y2a{bottom:681.200000pt;}
.y72{bottom:681.306667pt;}
.y4e{bottom:681.829333pt;}
.y148{bottom:684.000000pt;}
.y216{bottom:684.352000pt;}
.yd6{bottom:686.149333pt;}
.y93{bottom:686.170667pt;}
.yb5{bottom:687.200000pt;}
.y168{bottom:688.229333pt;}
.y191{bottom:689.370667pt;}
.y5{bottom:691.648267pt;}
.y273{bottom:693.866667pt;}
.y24c{bottom:697.200000pt;}
.y215{bottom:697.813333pt;}
.y10e{bottom:700.298667pt;}
.y71{bottom:701.578667pt;}
.y29{bottom:701.600000pt;}
.y4d{bottom:702.101333pt;}
.y132{bottom:703.333333pt;}
.y147{bottom:704.000000pt;}
.yd5{bottom:705.877333pt;}
.y92{bottom:705.898667pt;}
.yb4{bottom:706.800000pt;}
.y167{bottom:707.701333pt;}
.y190{bottom:708.698667pt;}
.y24b{bottom:710.533333pt;}
.y214{bottom:711.274667pt;}
.y10d{bottom:720.826667pt;}
.y70{bottom:721.850667pt;}
.y28{bottom:722.000000pt;}
.y4c{bottom:722.373333pt;}
.y24a{bottom:723.866667pt;}
.y146{bottom:724.000000pt;}
.y213{bottom:724.736000pt;}
.yd4{bottom:725.605333pt;}
.y91{bottom:725.626667pt;}
.yb3{bottom:726.400000pt;}
.y166{bottom:727.173333pt;}
.y272{bottom:727.200000pt;}
.y18f{bottom:728.026667pt;}
.y249{bottom:737.200000pt;}
.y212{bottom:738.197333pt;}
.y10c{bottom:741.354667pt;}
.y6f{bottom:742.122667pt;}
.y27{bottom:742.400000pt;}
.y4b{bottom:742.645333pt;}
.y131{bottom:743.354667pt;}
.y271{bottom:743.866667pt;}
.y145{bottom:744.000000pt;}
.yd3{bottom:745.344000pt;}
.y90{bottom:745.354667pt;}
.yb2{bottom:746.000000pt;}
.y165{bottom:746.645333pt;}
.y18e{bottom:747.354667pt;}
.y248{bottom:750.533333pt;}
.y4{bottom:752.000000pt;}
.y211{bottom:757.333333pt;}
.y270{bottom:760.533333pt;}
.y10b{bottom:761.882667pt;}
.y6e{bottom:762.394667pt;}
.y26{bottom:762.800000pt;}
.y4a{bottom:762.917333pt;}
.y130{bottom:763.482667pt;}
.y247{bottom:763.866667pt;}
.y144{bottom:764.000000pt;}
.yd2{bottom:765.072000pt;}
.y8f{bottom:765.082667pt;}
.yb1{bottom:765.600000pt;}
.y164{bottom:766.117333pt;}
.y18d{bottom:766.682667pt;}
.y246{bottom:777.200000pt;}
.y3{bottom:779.333333pt;}
.y10a{bottom:782.410667pt;}
.y6d{bottom:782.666667pt;}
.y49{bottom:783.189333pt;}
.y25{bottom:783.200000pt;}
.y12f{bottom:783.610667pt;}
.y143{bottom:784.000000pt;}
.yd1{bottom:784.800000pt;}
.y8e{bottom:784.810667pt;}
.yb0{bottom:785.200000pt;}
.y163{bottom:785.589333pt;}
.y18c{bottom:786.010667pt;}
.y245{bottom:790.533333pt;}
.y26f{bottom:793.866667pt;}
.y210{bottom:797.333333pt;}
.y6c{bottom:802.938667pt;}
.y48{bottom:803.461333pt;}
.y24{bottom:803.600000pt;}
.y12e{bottom:803.738667pt;}
.y244{bottom:803.866667pt;}
.y142{bottom:804.000000pt;}
.y8d{bottom:804.538667pt;}
.yaf{bottom:804.800000pt;}
.y162{bottom:805.061333pt;}
.y18b{bottom:805.338667pt;}
.y26e{bottom:810.533333pt;}
.y20f{bottom:810.666667pt;}
.y243{bottom:817.200000pt;}
.y2{bottom:823.333333pt;}
.y6b{bottom:823.466667pt;}
.y47{bottom:823.733333pt;}
.y12d{bottom:823.866667pt;}
.y23{bottom:824.000000pt;}
.y8c{bottom:824.266667pt;}
.yae{bottom:824.400000pt;}
.y161{bottom:824.533333pt;}
.y18a{bottom:824.666667pt;}
.y26d{bottom:827.200000pt;}
.y242{bottom:830.533333pt;}
.h6{height:26.945443pt;}
.h2{height:33.769531pt;}
.h11{height:34.730667pt;}
.h5{height:35.546875pt;}
.h7{height:36.229167pt;}
.h12{height:40.757812pt;}
.hb{height:42.656250pt;}
.he{height:43.413333pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h9{height:54.365083pt;}
.hf{height:54.429083pt;}
.h8{height:54.557083pt;}
.h10{height:54.727750pt;}
.hc{height:58.989958pt;}
.ha{height:59.160625pt;}
.hd{height:86.343750pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x6{left:73.232000pt;}
.x2{left:86.456667pt;}
.x4{left:100.000000pt;}
.x5{left:113.228400pt;}
.x9{left:160.453333pt;}
.x8{left:309.450667pt;}
.x7{left:367.100400pt;}
.x3{left:556.250000pt;}
}




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