
    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_65385944434e036d88af5d08.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_bd6580ed9cda0ba004a6e624.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_15906e7889f096eb5a24366a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_9bd2f6e5335bb9b85bfcdaf3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_6797ae8265617c3fa40475dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_20611c03b15c6081686a6ac6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_6ffcbf7a60060a6e1e17dd4d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.362000;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_61e962078d886bfccb2dd118.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.384000;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_73ccf79de07272709287af8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_396583e88b71d1995e1e0074.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.000000px;}
.v6{vertical-align:-18.900879px;}
.v5{vertical-align:-17.849991px;}
.v7{vertical-align:-10.805927px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.799927px;}
.v4{vertical-align:18.702110px;}
.v3{vertical-align:21.000000px;}
.v9{vertical-align:29.699341px;}
.va{vertical-align:35.070000px;}
.ls3d{letter-spacing:-5.184000px;}
.ls2f{letter-spacing:-4.968000px;}
.ls49{letter-spacing:-4.752000px;}
.ls54{letter-spacing:-3.906000px;}
.ls83{letter-spacing:-3.645000px;}
.ls81{letter-spacing:-3.555000px;}
.ls86{letter-spacing:-3.510000px;}
.ls4a{letter-spacing:-3.132000px;}
.ls89{letter-spacing:-2.835000px;}
.ls35{letter-spacing:-2.592000px;}
.ls8b{letter-spacing:-2.565000px;}
.ls3a{letter-spacing:-2.214000px;}
.ls4d{letter-spacing:-1.890000px;}
.ls37{letter-spacing:-1.782000px;}
.ls39{letter-spacing:-1.674000px;}
.ls3c{letter-spacing:-1.350000px;}
.ls84{letter-spacing:-1.305000px;}
.ls4e{letter-spacing:-1.296000px;}
.ls7b{letter-spacing:-1.170000px;}
.ls3e{letter-spacing:-1.134000px;}
.ls8c{letter-spacing:-1.080000px;}
.ls3b{letter-spacing:-0.972000px;}
.ls42{letter-spacing:-0.918000px;}
.ls4b{letter-spacing:-0.810000px;}
.ls4c{letter-spacing:-0.756000px;}
.ls33{letter-spacing:-0.648000px;}
.ls38{letter-spacing:-0.594000px;}
.ls88{letter-spacing:-0.585000px;}
.ls34{letter-spacing:-0.540000px;}
.ls55{letter-spacing:-0.504000px;}
.ls85{letter-spacing:-0.495000px;}
.ls3f{letter-spacing:-0.486000px;}
.ls26{letter-spacing:-0.432000px;}
.ls53{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.378000px;}
.ls8a{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.324000px;}
.ls68{letter-spacing:-0.315900px;}
.ls87{letter-spacing:-0.315000px;}
.ls48{letter-spacing:-0.280800px;}
.ls2b{letter-spacing:-0.270000px;}
.ls2a{letter-spacing:-0.245700px;}
.ls77{letter-spacing:-0.225000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls31{letter-spacing:-0.210600px;}
.ls78{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.175500px;}
.ls27{letter-spacing:-0.162000px;}
.ls21{letter-spacing:-0.140400px;}
.ls82{letter-spacing:-0.135000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls5f{letter-spacing:-0.105300px;}
.ls7a{letter-spacing:-0.090000px;}
.ls28{letter-spacing:-0.070200px;}
.ls13{letter-spacing:-0.054000px;}
.ls79{letter-spacing:-0.045000px;}
.ls1e{letter-spacing:-0.035100px;}
.lsf{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013406px;}
.ls41{letter-spacing:0.016200px;}
.lse{letter-spacing:0.018028px;}
.ls1{letter-spacing:0.027516px;}
.ls25{letter-spacing:0.035100px;}
.ls67{letter-spacing:0.037800px;}
.ls65{letter-spacing:0.043193px;}
.ls71{letter-spacing:0.045000px;}
.ls10{letter-spacing:0.054000px;}
.ls80{letter-spacing:0.067500px;}
.ls36{letter-spacing:0.070200px;}
.ls72{letter-spacing:0.090000px;}
.ls5b{letter-spacing:0.091788px;}
.ls22{letter-spacing:0.105300px;}
.ls2d{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.121666px;}
.ls56{letter-spacing:0.126000px;}
.ls6f{letter-spacing:0.135000px;}
.ls62{letter-spacing:0.140360px;}
.ls18{letter-spacing:0.140400px;}
.lsc{letter-spacing:0.141990px;}
.lsb{letter-spacing:0.142814px;}
.ls66{letter-spacing:0.151192px;}
.ls19{letter-spacing:0.157950px;}
.ls5{letter-spacing:0.158836px;}
.ls6{letter-spacing:0.159019px;}
.ls52{letter-spacing:0.159021px;}
.ls50{letter-spacing:0.159202px;}
.ls1b{letter-spacing:0.162000px;}
.ls58{letter-spacing:0.167400px;}
.ls1c{letter-spacing:0.175500px;}
.ls51{letter-spacing:0.176414px;}
.ls64{letter-spacing:0.178200px;}
.ls6d{letter-spacing:0.180000px;}
.ls6c{letter-spacing:0.202500px;}
.ls5e{letter-spacing:0.210600px;}
.ls4{letter-spacing:0.216000px;}
.ls6e{letter-spacing:0.225000px;}
.ls57{letter-spacing:0.243000px;}
.ls44{letter-spacing:0.244894px;}
.ls47{letter-spacing:0.245700px;}
.ls6b{letter-spacing:0.264000px;}
.ls8{letter-spacing:0.266485px;}
.ls32{letter-spacing:0.267051px;}
.ls63{letter-spacing:0.269977px;}
.ls12{letter-spacing:0.270000px;}
.ls43{letter-spacing:0.275350px;}
.ls29{letter-spacing:0.280800px;}
.ls7e{letter-spacing:0.315000px;}
.ls20{letter-spacing:0.315900px;}
.ls46{letter-spacing:0.320716px;}
.ls2e{letter-spacing:0.324000px;}
.ls24{letter-spacing:0.351000px;}
.ls7c{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.421200px;}
.lsa{letter-spacing:0.421752px;}
.ls15{letter-spacing:0.432000px;}
.ls59{letter-spacing:0.442789px;}
.ls76{letter-spacing:0.450000px;}
.ls69{letter-spacing:0.456300px;}
.ls7{letter-spacing:0.486000px;}
.ls14{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.583131px;}
.ls1a{letter-spacing:0.594000px;}
.ls61{letter-spacing:0.642567px;}
.ls16{letter-spacing:0.648000px;}
.ls60{letter-spacing:0.669584px;}
.ls5c{letter-spacing:0.691192px;}
.ls17{letter-spacing:0.702000px;}
.ls6a{letter-spacing:0.756000px;}
.ls4f{letter-spacing:0.810000px;}
.ls5d{letter-spacing:0.810063px;}
.ls40{letter-spacing:0.864000px;}
.ls70{letter-spacing:0.886585px;}
.ls7d{letter-spacing:0.940424px;}
.ls75{letter-spacing:0.990000px;}
.ls73{letter-spacing:1.035000px;}
.ls7f{letter-spacing:2.002562px;}
.ls0{letter-spacing:3.000000px;}
.ls74{letter-spacing:5.107416px;}
.ls5a{letter-spacing:102.186000px;}
.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;}
}
.ws56{word-spacing:-54.000000px;}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws8c{word-spacing:-13.860000px;}
.ws6b{word-spacing:-13.596000px;}
.ws69{word-spacing:-12.744000px;}
.ws1f{word-spacing:-12.528000px;}
.ws7c{word-spacing:-12.501000px;}
.ws13{word-spacing:-12.474000px;}
.ws4d{word-spacing:-12.420000px;}
.ws62{word-spacing:-12.366000px;}
.ws1d{word-spacing:-12.258000px;}
.ws88{word-spacing:-12.204000px;}
.ws46{word-spacing:-12.150000px;}
.ws43{word-spacing:-12.096000px;}
.ws8b{word-spacing:-12.042000px;}
.ws33{word-spacing:-11.988000px;}
.ws44{word-spacing:-11.934000px;}
.ws67{word-spacing:-11.880000px;}
.ws41{word-spacing:-11.826000px;}
.ws48{word-spacing:-11.772000px;}
.ws37{word-spacing:-11.718000px;}
.ws64{word-spacing:-11.556000px;}
.ws57{word-spacing:-11.448000px;}
.ws4b{word-spacing:-11.394000px;}
.ws4e{word-spacing:-11.232000px;}
.ws66{word-spacing:-11.070000px;}
.ws4c{word-spacing:-11.016000px;}
.ws49{word-spacing:-10.692000px;}
.ws47{word-spacing:-10.584000px;}
.ws8f{word-spacing:-10.530000px;}
.ws65{word-spacing:-10.476000px;}
.ws8e{word-spacing:-10.417500px;}
.wsa7{word-spacing:-10.350000px;}
.ws8d{word-spacing:-10.215000px;}
.wsa2{word-spacing:-10.170000px;}
.ws4a{word-spacing:-10.152000px;}
.wsa4{word-spacing:-10.080000px;}
.wsa9{word-spacing:-9.945000px;}
.wsa5{word-spacing:-9.810000px;}
.ws42{word-spacing:-9.774000px;}
.wsa8{word-spacing:-9.720000px;}
.ws82{word-spacing:-9.660000px;}
.ws16{word-spacing:-9.600000px;}
.ws7e{word-spacing:-9.534000px;}
.ws90{word-spacing:-9.495000px;}
.ws63{word-spacing:-9.234000px;}
.wsaa{word-spacing:-9.225000px;}
.ws70{word-spacing:-9.114000px;}
.ws8a{word-spacing:-8.424000px;}
.ws23{word-spacing:-8.388900px;}
.ws1c{word-spacing:-8.318700px;}
.ws19{word-spacing:-8.283600px;}
.ws21{word-spacing:-8.248500px;}
.ws61{word-spacing:-8.213400px;}
.ws84{word-spacing:-8.178300px;}
.ws17{word-spacing:-8.143200px;}
.ws4{word-spacing:-8.108100px;}
.ws1b{word-spacing:-8.073000px;}
.ws45{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws1e{word-spacing:-8.002800px;}
.ws3{word-spacing:-7.967700px;}
.ws18{word-spacing:-7.932600px;}
.ws20{word-spacing:-7.897500px;}
.ws85{word-spacing:-7.862400px;}
.ws1a{word-spacing:-7.827300px;}
.ws24{word-spacing:-7.792200px;}
.ws36{word-spacing:-7.757100px;}
.ws22{word-spacing:-7.722000px;}
.ws87{word-spacing:-7.651800px;}
.wsa6{word-spacing:-6.795000px;}
.wsa1{word-spacing:-6.750000px;}
.wsa3{word-spacing:-6.660000px;}
.ws5{word-spacing:-6.630000px;}
.wsad{word-spacing:-6.165000px;}
.wsa0{word-spacing:-6.030000px;}
.wsac{word-spacing:-5.895000px;}
.wsba{word-spacing:-5.715000px;}
.wsb5{word-spacing:-5.625000px;}
.ws5d{word-spacing:-5.508000px;}
.ws7b{word-spacing:-4.284000px;}
.ws51{word-spacing:-1.404000px;}
.ws8{word-spacing:-1.242000px;}
.wsa{word-spacing:-1.188000px;}
.ws30{word-spacing:-1.134000px;}
.ws3f{word-spacing:-1.080000px;}
.ws95{word-spacing:-1.035000px;}
.ws3a{word-spacing:-1.026000px;}
.ws98{word-spacing:-0.990000px;}
.wse{word-spacing:-0.972000px;}
.wsf{word-spacing:-0.918000px;}
.ws5c{word-spacing:-0.864000px;}
.wsb2{word-spacing:-0.855000px;}
.ws27{word-spacing:-0.810000px;}
.wsb{word-spacing:-0.756000px;}
.wsaf{word-spacing:-0.720000px;}
.ws2c{word-spacing:-0.702000px;}
.wsd{word-spacing:-0.648000px;}
.ws10{word-spacing:-0.594000px;}
.ws50{word-spacing:-0.540000px;}
.ws5a{word-spacing:-0.486000px;}
.ws26{word-spacing:-0.432000px;}
.ws2b{word-spacing:-0.378000px;}
.wsb6{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.324000px;}
.wsb3{word-spacing:-0.315000px;}
.ws2a{word-spacing:-0.270000px;}
.ws92{word-spacing:-0.264000px;}
.ws97{word-spacing:-0.225000px;}
.ws7{word-spacing:-0.216000px;}
.ws94{word-spacing:-0.180000px;}
.ws3e{word-spacing:-0.162000px;}
.ws96{word-spacing:-0.135000px;}
.ws34{word-spacing:-0.108000px;}
.ws93{word-spacing:-0.090000px;}
.ws35{word-spacing:-0.054000px;}
.ws9d{word-spacing:-0.045000px;}
.ws6{word-spacing:0.000000px;}
.wsb0{word-spacing:0.045000px;}
.ws2d{word-spacing:0.054000px;}
.ws38{word-spacing:0.108000px;}
.wsb8{word-spacing:0.135000px;}
.ws2f{word-spacing:0.162000px;}
.wsb4{word-spacing:0.180000px;}
.ws32{word-spacing:0.216000px;}
.ws58{word-spacing:0.270000px;}
.wsb9{word-spacing:0.315000px;}
.ws68{word-spacing:0.324000px;}
.wsab{word-spacing:0.360000px;}
.ws79{word-spacing:0.378000px;}
.ws60{word-spacing:0.432000px;}
.ws9a{word-spacing:0.450000px;}
.ws4f{word-spacing:0.486000px;}
.ws54{word-spacing:0.540000px;}
.ws3c{word-spacing:0.594000px;}
.ws5f{word-spacing:0.648000px;}
.ws14{word-spacing:0.702000px;}
.ws9{word-spacing:0.756000px;}
.ws31{word-spacing:0.810000px;}
.ws7a{word-spacing:0.864000px;}
.wsbb{word-spacing:0.900000px;}
.ws25{word-spacing:0.918000px;}
.ws83{word-spacing:0.972000px;}
.ws9c{word-spacing:0.990000px;}
.ws3b{word-spacing:1.026000px;}
.ws99{word-spacing:1.035000px;}
.ws2e{word-spacing:1.080000px;}
.ws29{word-spacing:1.134000px;}
.ws9b{word-spacing:1.170000px;}
.ws28{word-spacing:1.188000px;}
.wsc{word-spacing:1.242000px;}
.ws5b{word-spacing:1.296000px;}
.ws52{word-spacing:1.350000px;}
.wsae{word-spacing:1.395000px;}
.ws11{word-spacing:1.404000px;}
.ws39{word-spacing:1.458000px;}
.ws5e{word-spacing:1.512000px;}
.ws89{word-spacing:1.566000px;}
.ws12{word-spacing:1.620000px;}
.ws77{word-spacing:1.674000px;}
.ws53{word-spacing:1.836000px;}
.ws91{word-spacing:2.052000px;}
.ws86{word-spacing:2.106000px;}
.ws78{word-spacing:2.214000px;}
.wsb7{word-spacing:2.565000px;}
.ws59{word-spacing:2.592000px;}
.wsb1{word-spacing:2.835000px;}
.wsbe{word-spacing:3.024000px;}
.wsbf{word-spacing:3.132000px;}
.wsbc{word-spacing:3.186000px;}
.wsbd{word-spacing:3.348000px;}
.ws9e{word-spacing:3.690000px;}
.ws9f{word-spacing:3.735000px;}
.ws55{word-spacing:4.050000px;}
.wsc1{word-spacing:5.670000px;}
.ws3d{word-spacing:5.832000px;}
.wsc2{word-spacing:6.264000px;}
.ws6a{word-spacing:6.480000px;}
.wsc0{word-spacing:6.750000px;}
.ws40{word-spacing:15.282000px;}
.ws73{word-spacing:45.947996px;}
.ws7f{word-spacing:45.948000px;}
.ws7d{word-spacing:46.367993px;}
.ws72{word-spacing:46.956000px;}
.ws6f{word-spacing:47.212200px;}
.ws6c{word-spacing:55.607996px;}
.ws76{word-spacing:64.810195px;}
.ws81{word-spacing:70.308000px;}
.ws71{word-spacing:117.226195px;}
.ws6e{word-spacing:143.640000px;}
.ws75{word-spacing:165.017995px;}
.ws6d{word-spacing:171.654000px;}
.ws74{word-spacing:182.998195px;}
.ws80{word-spacing:216.300000px;}
._13{margin-left:-20.952007px;}
._7{margin-left:-15.025200px;}
._10{margin-left:-13.771200px;}
._e{margin-left:-12.749600px;}
._6{margin-left:-11.269234px;}
._14{margin-left:-9.964800px;}
._1b{margin-left:-8.170200px;}
._12{margin-left:-7.092614px;}
._f{margin-left:-5.644200px;}
._4{margin-left:-4.108200px;}
._2{margin-left:-3.103200px;}
._0{margin-left:-1.876800px;}
._5{width:1.005000px;}
._8{width:2.554800px;}
._d{width:3.743399px;}
._c{width:5.788500px;}
._a{width:7.792625px;}
._11{width:10.206000px;}
._9{width:11.509800px;}
._b{width:13.128300px;}
._23{width:14.310000px;}
._15{width:15.850200px;}
._22{width:17.190000px;}
._24{width:18.450000px;}
._3{width:39.960026px;}
._17{width:55.477800px;}
._18{width:62.374200px;}
._19{width:75.306000px;}
._1c{width:80.290800px;}
._1a{width:82.509600px;}
._21{width:86.730000px;}
._1e{width:111.132000px;}
._20{width:115.948800px;}
._1f{width:120.413994px;}
._1d{width:140.308800px;}
._1{width:321.268800px;}
._16{width:433.523980px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:3.199200px;}
.y38{bottom:3.199350px;}
.yd0{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y37{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ya4{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y225{bottom:67.981648px;}
.y36{bottom:68.037452px;}
.ya2{bottom:68.607599px;}
.ycf{bottom:68.906095px;}
.y2ad{bottom:71.118749px;}
.y10f{bottom:74.001148px;}
.y195{bottom:77.121152px;}
.y25e{bottom:77.880148px;}
.y1c2{bottom:79.375652px;}
.y7c{bottom:80.060552px;}
.y168{bottom:82.773589px;}
.y224{bottom:82.984648px;}
.y35{bottom:83.043452px;}
.ya1{bottom:83.606099px;}
.yce{bottom:83.904595px;}
.y2ac{bottom:86.117249px;}
.y1e9{bottom:86.875652px;}
.y10e{bottom:88.999648px;}
.y25d{bottom:90.626398px;}
.y194{bottom:92.125652px;}
.y1c1{bottom:94.374152px;}
.y7b{bottom:95.059052px;}
.y167{bottom:97.772089px;}
.y223{bottom:97.983148px;}
.y34{bottom:98.037452px;}
.ya0{bottom:98.604599px;}
.ycd{bottom:98.903095px;}
.y2ab{bottom:101.115749px;}
.y1e8{bottom:101.874152px;}
.y25c{bottom:103.372648px;}
.y10d{bottom:103.998148px;}
.y193{bottom:107.124152px;}
.y1c0{bottom:109.372652px;}
.y7a{bottom:110.057552px;}
.y166{bottom:112.770589px;}
.y222{bottom:112.981648px;}
.y33{bottom:113.037452px;}
.y9f{bottom:113.603099px;}
.ycc{bottom:113.901595px;}
.y2aa{bottom:116.115749px;}
.y25b{bottom:116.118898px;}
.y1e7{bottom:116.872652px;}
.y12f{bottom:117.627152px;}
.y10c{bottom:118.996648px;}
.y192{bottom:122.122652px;}
.y1bf{bottom:124.371152px;}
.y79{bottom:125.056052px;}
.y165{bottom:127.769089px;}
.y221{bottom:127.981648px;}
.y9e{bottom:128.601599px;}
.y25a{bottom:128.865148px;}
.ycb{bottom:128.900095px;}
.y1e6{bottom:131.871152px;}
.y32{bottom:132.493950px;}
.y12e{bottom:132.625652px;}
.y10b{bottom:133.995148px;}
.y191{bottom:137.121152px;}
.y1be{bottom:139.377152px;}
.y78{bottom:140.054552px;}
.y259{bottom:141.611398px;}
.y164{bottom:142.767589px;}
.y220{bottom:142.984648px;}
.y9d{bottom:143.600099px;}
.yca{bottom:143.898595px;}
.y2a9{bottom:146.393284px;}
.y1e5{bottom:146.874152px;}
.y12d{bottom:147.624152px;}
.y10a{bottom:148.993648px;}
.y190{bottom:152.128652px;}
.y258{bottom:154.357648px;}
.y1bd{bottom:154.375652px;}
.y77{bottom:155.053052px;}
.y163{bottom:157.766089px;}
.y21f{bottom:157.983148px;}
.y9c{bottom:158.598599px;}
.yc9{bottom:158.897095px;}
.y2a8{bottom:159.139534px;}
.y1e4{bottom:161.872652px;}
.y12c{bottom:162.622652px;}
.y109{bottom:163.992148px;}
.y257{bottom:167.103898px;}
.y18f{bottom:167.127152px;}
.y1bc{bottom:169.374152px;}
.y76{bottom:170.051552px;}
.y2a7{bottom:171.885784px;}
.y162{bottom:172.764589px;}
.y21e{bottom:172.981648px;}
.y9b{bottom:173.597099px;}
.y1e3{bottom:176.871152px;}
.y12b{bottom:177.621152px;}
.y108{bottom:178.990648px;}
.y256{bottom:179.850148px;}
.y18e{bottom:182.125652px;}
.y1bb{bottom:184.372652px;}
.y30{bottom:184.570943px;}
.y2a6{bottom:184.632034px;}
.y75{bottom:185.050052px;}
.y161{bottom:187.763089px;}
.y21d{bottom:187.981648px;}
.y1e2{bottom:191.872652px;}
.y255{bottom:192.596398px;}
.y12a{bottom:192.624152px;}
.y107{bottom:193.989148px;}
.y18d{bottom:197.124152px;}
.y2a5{bottom:197.378284px;}
.y1ba{bottom:199.371152px;}
.y2f{bottom:199.570805px;}
.y74{bottom:200.048552px;}
.y160{bottom:202.761589px;}
.y21c{bottom:202.990648px;}
.y254{bottom:205.342648px;}
.y1e1{bottom:206.871152px;}
.y129{bottom:207.622652px;}
.y2a4{bottom:210.124534px;}
.y18c{bottom:212.122652px;}
.y1b9{bottom:214.381652px;}
.y2e{bottom:214.575305px;}
.y73{bottom:215.047052px;}
.y21b{bottom:217.989148px;}
.y253{bottom:218.088898px;}
.y1e0{bottom:221.871152px;}
.y128{bottom:222.621152px;}
.y2a3{bottom:222.870784px;}
.y106{bottom:226.983148px;}
.y18b{bottom:227.121152px;}
.y1b8{bottom:229.380152px;}
.y2d{bottom:229.573805px;}
.y72{bottom:230.045552px;}
.y252{bottom:230.835148px;}
.y21a{bottom:232.987648px;}
.y171{bottom:235.158446px;}
.y2a2{bottom:235.617034px;}
.y1df{bottom:236.871152px;}
.y127{bottom:237.621152px;}
.y105{bottom:241.981648px;}
.y18a{bottom:242.119652px;}
.y251{bottom:243.581398px;}
.y170{bottom:243.925946px;}
.y1b7{bottom:244.378652px;}
.y2c{bottom:244.572305px;}
.y71{bottom:245.047052px;}
.y219{bottom:247.986148px;}
.y2a1{bottom:248.363284px;}
.y1de{bottom:251.874152px;}
.y126{bottom:252.621152px;}
.y250{bottom:256.327648px;}
.y104{bottom:256.995148px;}
.y189{bottom:257.119652px;}
.y1b6{bottom:259.377152px;}
.y2b{bottom:259.570805px;}
.y70{bottom:260.045552px;}
.y2a0{bottom:261.109534px;}
.y218{bottom:262.984648px;}
.y1dd{bottom:266.872652px;}
.y125{bottom:267.631652px;}
.y24f{bottom:269.073898px;}
.y16f{bottom:270.228446px;}
.y103{bottom:271.993648px;}
.y29f{bottom:273.855784px;}
.y1b5{bottom:274.375652px;}
.y2a{bottom:274.572305px;}
.y6f{bottom:275.047052px;}
.y217{bottom:277.983148px;}
.y16e{bottom:278.995946px;}
.y24e{bottom:281.820148px;}
.y1dc{bottom:281.871152px;}
.y124{bottom:282.630152px;}
.y29e{bottom:286.602034px;}
.y102{bottom:286.992148px;}
.y1b4{bottom:289.374152px;}
.y29{bottom:289.570805px;}
.y6e{bottom:290.045552px;}
.y188{bottom:290.133129px;}
.y216{bottom:292.981648px;}
.y24d{bottom:294.566398px;}
.y1db{bottom:296.872652px;}
.y123{bottom:297.628652px;}
.y29d{bottom:299.348284px;}
.y101{bottom:301.990648px;}
.y1b3{bottom:304.372652px;}
.y28{bottom:304.575305px;}
.y6d{bottom:305.045552px;}
.y187{bottom:305.131629px;}
.y16d{bottom:305.298446px;}
.y24c{bottom:307.312648px;}
.y215{bottom:307.986148px;}
.y1da{bottom:311.871152px;}
.y29c{bottom:312.094534px;}
.y122{bottom:312.627152px;}
.y16c{bottom:314.065946px;}
.y100{bottom:316.989148px;}
.y1b2{bottom:319.371152px;}
.y27{bottom:319.573805px;}
.y6c{bottom:320.045552px;}
.y24b{bottom:320.058898px;}
.y186{bottom:320.130129px;}
.y214{bottom:322.984648px;}
.y29b{bottom:324.840784px;}
.y1d9{bottom:326.877129px;}
.y121{bottom:327.625652px;}
.yff{bottom:331.987648px;}
.y24a{bottom:332.805148px;}
.y1b1{bottom:334.374152px;}
.y26{bottom:334.572305px;}
.y6b{bottom:335.045552px;}
.y185{bottom:335.128629px;}
.y29a{bottom:337.587034px;}
.y213{bottom:337.983148px;}
.y16b{bottom:340.368446px;}
.y1d8{bottom:341.875629px;}
.y249{bottom:345.551398px;}
.yfe{bottom:346.986148px;}
.y16a{bottom:349.135946px;}
.y1b0{bottom:349.372652px;}
.y25{bottom:349.570805px;}
.y6a{bottom:350.045552px;}
.y184{bottom:350.127129px;}
.y299{bottom:350.333284px;}
.y212{bottom:352.981648px;}
.y1d7{bottom:356.874129px;}
.y248{bottom:358.297648px;}
.y120{bottom:360.633129px;}
.yfd{bottom:361.984648px;}
.y298{bottom:363.079534px;}
.y1af{bottom:364.371152px;}
.y24{bottom:364.572305px;}
.y69{bottom:365.047052px;}
.y183{bottom:365.125629px;}
.y211{bottom:367.984648px;}
.y247{bottom:371.043898px;}
.y1d6{bottom:371.872629px;}
.y169{bottom:375.438446px;}
.y11f{bottom:375.631629px;}
.y297{bottom:375.825784px;}
.yfc{bottom:376.983148px;}
.y1ae{bottom:379.371129px;}
.y23{bottom:379.570805px;}
.y68{bottom:380.045552px;}
.y182{bottom:380.124129px;}
.y210{bottom:382.983148px;}
.y246{bottom:383.790148px;}
.y1d5{bottom:386.871129px;}
.y296{bottom:388.572034px;}
.y11e{bottom:390.630129px;}
.yfb{bottom:391.981648px;}
.y1ad{bottom:394.369629px;}
.y22{bottom:394.573805px;}
.y67{bottom:395.045552px;}
.y181{bottom:395.122629px;}
.y245{bottom:396.536398px;}
.y20f{bottom:397.981648px;}
.y295{bottom:401.318284px;}
.y1d4{bottom:401.875629px;}
.y11d{bottom:405.628629px;}
.yfa{bottom:406.986148px;}
.y244{bottom:409.282648px;}
.y21{bottom:409.572305px;}
.y66{bottom:410.044052px;}
.y180{bottom:410.121129px;}
.y20e{bottom:412.987648px;}
.y294{bottom:414.064534px;}
.y1d3{bottom:416.874129px;}
.y11c{bottom:420.627129px;}
.yf9{bottom:421.984648px;}
.y243{bottom:422.028898px;}
.y20{bottom:424.570805px;}
.y65{bottom:425.044052px;}
.y17f{bottom:425.121129px;}
.y293{bottom:426.810784px;}
.y20d{bottom:427.986148px;}
.y1d2{bottom:431.872629px;}
.y242{bottom:434.775148px;}
.y11b{bottom:435.625629px;}
.y15f{bottom:435.642771px;}
.yf8{bottom:436.983148px;}
.y1c7{bottom:438.577655px;}
.y292{bottom:439.557034px;}
.y1f{bottom:439.573805px;}
.y64{bottom:440.044052px;}
.y17e{bottom:440.121129px;}
.y20c{bottom:442.984648px;}
.y1d1{bottom:446.871129px;}
.y241{bottom:447.521398px;}
.y11a{bottom:450.624129px;}
.y15e{bottom:450.641271px;}
.yf7{bottom:451.981648px;}
.y291{bottom:452.303284px;}
.y1c6{bottom:453.576155px;}
.y1e{bottom:454.572305px;}
.y17d{bottom:455.119629px;}
.y20b{bottom:457.983148px;}
.y240{bottom:460.267648px;}
.y1d0{bottom:461.880129px;}
.y290{bottom:465.049534px;}
.y119{bottom:465.622629px;}
.y15d{bottom:465.641271px;}
.yf6{bottom:466.980148px;}
.y1c5{bottom:468.574655px;}
.y1d{bottom:469.570805px;}
.y17c{bottom:470.119629px;}
.y20a{bottom:472.981648px;}
.y23f{bottom:473.013898px;}
.y63{bottom:473.047052px;}
.y1cf{bottom:476.878629px;}
.y28f{bottom:477.795784px;}
.y118{bottom:480.621129px;}
.y15c{bottom:480.641271px;}
.yf5{bottom:481.980148px;}
.y1c4{bottom:483.573155px;}
.y1c{bottom:484.618769px;}
.y23e{bottom:485.760148px;}
.y209{bottom:487.989148px;}
.y62{bottom:488.045552px;}
.y28e{bottom:490.542034px;}
.y1ce{bottom:491.877129px;}
.y117{bottom:495.624129px;}
.y15b{bottom:495.641271px;}
.y23d{bottom:498.506398px;}
.y1c3{bottom:498.571655px;}
.y1b{bottom:499.617269px;}
.y2c2{bottom:501.526655px;}
.y208{bottom:502.987648px;}
.y61{bottom:503.054552px;}
.y17b{bottom:503.133129px;}
.y28d{bottom:503.288284px;}
.y1cd{bottom:506.875629px;}
.y116{bottom:510.622629px;}
.y15a{bottom:510.660771px;}
.y23c{bottom:511.252648px;}
.yf4{bottom:514.990648px;}
.y28c{bottom:516.034534px;}
.y207{bottom:517.986148px;}
.y60{bottom:518.053052px;}
.y17a{bottom:518.131629px;}
.y1cc{bottom:521.874129px;}
.y23b{bottom:523.998898px;}
.y115{bottom:525.621129px;}
.y159{bottom:525.659271px;}
.y28b{bottom:528.780784px;}
.yf3{bottom:529.989148px;}
.y2c1{bottom:531.523653px;}
.y206{bottom:532.984648px;}
.y5f{bottom:533.051552px;}
.y179{bottom:533.130129px;}
.y23a{bottom:536.745148px;}
.y1cb{bottom:536.872629px;}
.y114{bottom:540.622629px;}
.y158{bottom:540.657771px;}
.y28a{bottom:541.527034px;}
.y1a{bottom:544.761269px;}
.yf2{bottom:544.987648px;}
.y2c0{bottom:546.522153px;}
.y205{bottom:547.983148px;}
.y5e{bottom:548.050052px;}
.y178{bottom:548.128629px;}
.y239{bottom:549.491398px;}
.y1ca{bottom:551.871129px;}
.y289{bottom:554.273284px;}
.y113{bottom:555.621129px;}
.y157{bottom:555.656271px;}
.yf1{bottom:559.986148px;}
.y19{bottom:561.258269px;}
.y2bf{bottom:561.520653px;}
.y238{bottom:562.237648px;}
.y204{bottom:562.981648px;}
.y5d{bottom:563.048552px;}
.y177{bottom:563.127129px;}
.y1c9{bottom:566.871129px;}
.y288{bottom:567.019534px;}
.y112{bottom:570.621129px;}
.y156{bottom:570.654771px;}
.y237{bottom:574.983898px;}
.yf0{bottom:574.984648px;}
.y2be{bottom:576.519153px;}
.y18{bottom:577.755269px;}
.y203{bottom:577.981648px;}
.yc8{bottom:577.993648px;}
.y5c{bottom:578.047052px;}
.y176{bottom:578.125629px;}
.y287{bottom:579.765784px;}
.y1c8{bottom:581.869629px;}
.y111{bottom:585.621129px;}
.y155{bottom:585.653271px;}
.y236{bottom:587.730148px;}
.yef{bottom:589.983148px;}
.y2bd{bottom:591.517653px;}
.y286{bottom:592.512034px;}
.y202{bottom:592.986148px;}
.yc7{bottom:592.992148px;}
.y5b{bottom:593.045552px;}
.y175{bottom:593.124129px;}
.y17{bottom:594.252269px;}
.y235{bottom:600.480148px;}
.y110{bottom:600.619629px;}
.y154{bottom:600.651771px;}
.yee{bottom:604.981648px;}
.y285{bottom:605.258284px;}
.y2bc{bottom:606.516153px;}
.y201{bottom:607.984648px;}
.yc6{bottom:607.990648px;}
.y5a{bottom:608.045552px;}
.y174{bottom:608.122629px;}
.y16{bottom:610.749269px;}
.y153{bottom:615.650271px;}
.y284{bottom:618.004534px;}
.y1f0{bottom:618.994653px;}
.yed{bottom:619.986148px;}
.y2bb{bottom:621.514653px;}
.y200{bottom:622.983148px;}
.yc5{bottom:622.989148px;}
.y59{bottom:623.051552px;}
.y173{bottom:623.121129px;}
.y15{bottom:627.246269px;}
.y152{bottom:630.648771px;}
.y283{bottom:630.750784px;}
.y9a{bottom:633.092267px;}
.y1ef{bottom:633.993153px;}
.yec{bottom:634.984648px;}
.y2ba{bottom:636.513153px;}
.y1ff{bottom:637.981648px;}
.yc4{bottom:637.987648px;}
.y58{bottom:638.050052px;}
.y172{bottom:638.119629px;}
.y282{bottom:643.497034px;}
.y14{bottom:643.743269px;}
.y135{bottom:644.619133px;}
.y151{bottom:645.647271px;}
.y99{bottom:648.090767px;}
.y1ee{bottom:648.997653px;}
.y234{bottom:649.980148px;}
.yeb{bottom:649.983148px;}
.y1fe{bottom:652.983148px;}
.yc3{bottom:652.986148px;}
.y57{bottom:653.048552px;}
.y281{bottom:656.243284px;}
.y2b9{bottom:659.002653px;}
.y134{bottom:659.617633px;}
.y13{bottom:660.240269px;}
.y150{bottom:660.645771px;}
.y98{bottom:663.089267px;}
.y1ed{bottom:663.996153px;}
.yea{bottom:664.981648px;}
.y1fd{bottom:667.981648px;}
.yc2{bottom:667.984648px;}
.y56{bottom:668.047052px;}
.y280{bottom:668.989534px;}
.y2b8{bottom:674.001153px;}
.y133{bottom:674.616133px;}
.y14f{bottom:675.644271px;}
.y12{bottom:676.737269px;}
.y97{bottom:678.087767px;}
.y1ec{bottom:678.994653px;}
.y233{bottom:679.980148px;}
.ye9{bottom:679.983148px;}
.y27f{bottom:681.735784px;}
.yc1{bottom:682.983148px;}
.y55{bottom:683.045552px;}
.y132{bottom:689.614633px;}
.y14e{bottom:690.642771px;}
.y96{bottom:693.086267px;}
.y11{bottom:693.234269px;}
.y1eb{bottom:693.993153px;}
.y27e{bottom:694.482034px;}
.y232{bottom:694.980148px;}
.ye8{bottom:694.981648px;}
.y19a{bottom:695.723102px;}
.y2b7{bottom:696.505653px;}
.yc0{bottom:697.981648px;}
.y54{bottom:698.045552px;}
.y131{bottom:704.613133px;}
.y14d{bottom:705.641271px;}
.y27d{bottom:707.228284px;}
.y95{bottom:708.084767px;}
.y1ea{bottom:708.991653px;}
.y10{bottom:709.731269px;}
.ye7{bottom:709.981648px;}
.y199{bottom:710.721602px;}
.y1fc{bottom:712.983148px;}
.ybf{bottom:712.986194px;}
.y53{bottom:713.045552px;}
.y2b6{bottom:719.010153px;}
.y130{bottom:719.611633px;}
.y27c{bottom:719.974534px;}
.y14c{bottom:720.639771px;}
.y94{bottom:723.083267px;}
.ye6{bottom:724.986194px;}
.y231{bottom:725.001194px;}
.y198{bottom:725.720102px;}
.yf{bottom:726.228269px;}
.y1fb{bottom:727.981648px;}
.ybe{bottom:727.984694px;}
.y52{bottom:728.047052px;}
.y27b{bottom:732.720784px;}
.y14b{bottom:735.639771px;}
.y93{bottom:738.083267px;}
.ye5{bottom:739.984694px;}
.y230{bottom:739.999694px;}
.y197{bottom:740.718602px;}
.y2b5{bottom:741.514653px;}
.ye{bottom:742.725269px;}
.ybd{bottom:742.983194px;}
.y1fa{bottom:742.992194px;}
.y51{bottom:743.045552px;}
.y27a{bottom:745.467034px;}
.ye4{bottom:754.983194px;}
.y22f{bottom:754.998194px;}
.y196{bottom:755.717102px;}
.y2b4{bottom:756.513153px;}
.ybc{bottom:757.981694px;}
.y1f9{bottom:757.990694px;}
.y50{bottom:758.050006px;}
.y279{bottom:758.213284px;}
.yd{bottom:759.222269px;}
.y14a{bottom:768.647271px;}
.ye3{bottom:769.981694px;}
.y22e{bottom:769.996694px;}
.y278{bottom:770.959534px;}
.y92{bottom:771.086221px;}
.y2b3{bottom:771.513153px;}
.ybb{bottom:772.981694px;}
.y1f8{bottom:772.989194px;}
.y4f{bottom:773.048506px;}
.yc{bottom:775.719269px;}
.y149{bottom:783.645771px;}
.y277{bottom:783.705784px;}
.ye2{bottom:784.981694px;}
.y22d{bottom:784.995194px;}
.y91{bottom:786.084721px;}
.yba{bottom:787.987694px;}
.y4e{bottom:788.047006px;}
.y1ac{bottom:788.103486px;}
.y276{bottom:796.452034px;}
.y148{bottom:798.644271px;}
.ye1{bottom:799.981694px;}
.y22c{bottom:799.993694px;}
.y90{bottom:801.084721px;}
.y2b2{bottom:801.513153px;}
.yb9{bottom:802.986194px;}
.y4d{bottom:803.045506px;}
.y1ab{bottom:805.638486px;}
.ya{bottom:805.719269px;}
.y275{bottom:809.198284px;}
.yb{bottom:810.969269px;}
.y147{bottom:813.642771px;}
.ye0{bottom:814.992194px;}
.y8f{bottom:816.086221px;}
.y2b1{bottom:816.513153px;}
.yb8{bottom:817.984694px;}
.y4c{bottom:818.047006px;}
.y274{bottom:821.944534px;}
.y1aa{bottom:823.173486px;}
.y8{bottom:823.719269px;}
.y146{bottom:828.641271px;}
.y9{bottom:828.969269px;}
.ydf{bottom:829.990694px;}
.y8e{bottom:831.084721px;}
.yb7{bottom:832.983194px;}
.y4b{bottom:833.045506px;}
.y273{bottom:834.690784px;}
.y1a9{bottom:840.708486px;}
.y145{bottom:843.639771px;}
.yde{bottom:844.989194px;}
.y8d{bottom:846.089221px;}
.y272{bottom:847.437034px;}
.yb6{bottom:847.981694px;}
.y2b0{bottom:847.989194px;}
.y4a{bottom:848.048506px;}
.y7{bottom:856.707269px;}
.y1a8{bottom:858.243486px;}
.y144{bottom:858.639771px;}
.ydd{bottom:859.987694px;}
.y271{bottom:860.183284px;}
.y8c{bottom:861.087721px;}
.yb5{bottom:862.981694px;}
.y1f7{bottom:862.987694px;}
.y49{bottom:863.047006px;}
.y270{bottom:872.929534px;}
.y143{bottom:873.639771px;}
.ydc{bottom:874.986194px;}
.y1a7{bottom:875.778486px;}
.y8b{bottom:876.086221px;}
.yb4{bottom:877.986194px;}
.y48{bottom:878.045506px;}
.y26f{bottom:885.675784px;}
.ydb{bottom:889.984694px;}
.y8a{bottom:891.084721px;}
.yb3{bottom:892.984694px;}
.y47{bottom:893.045506px;}
.y1a6{bottom:893.313486px;}
.y26e{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.yda{bottom:904.983194px;}
.y89{bottom:906.086221px;}
.y142{bottom:906.656271px;}
.yb2{bottom:907.983194px;}
.y46{bottom:908.045506px;}
.y1a5{bottom:910.848486px;}
.y26d{bottom:911.168284px;}
.yd9{bottom:919.981694px;}
.y88{bottom:921.084721px;}
.y141{bottom:921.654771px;}
.yb1{bottom:922.981694px;}
.y45{bottom:923.045506px;}
.y26c{bottom:923.914534px;}
.y1a4{bottom:928.383486px;}
.y22b{bottom:934.980194px;}
.yd8{bottom:934.981694px;}
.y87{bottom:936.090721px;}
.y140{bottom:936.653271px;}
.y26b{bottom:936.660784px;}
.y2af{bottom:937.980194px;}
.yb0{bottom:937.981694px;}
.y44{bottom:938.047006px;}
.y1a3{bottom:945.918486px;}
.y5{bottom:946.719269px;}
.y26a{bottom:949.407034px;}
.yd7{bottom:949.980194px;}
.y86{bottom:951.089221px;}
.y13f{bottom:951.651771px;}
.y2ae{bottom:952.980194px;}
.y1f6{bottom:952.984694px;}
.yaf{bottom:952.990694px;}
.y43{bottom:953.045506px;}
.y31{bottom:954.366760px;}
.y269{bottom:962.153284px;}
.y1a2{bottom:963.453486px;}
.yd6{bottom:964.980194px;}
.y85{bottom:966.087721px;}
.y13e{bottom:966.650271px;}
.y1f5{bottom:967.983194px;}
.yae{bottom:967.989194px;}
.y42{bottom:968.048506px;}
.y268{bottom:974.899534px;}
.y1a1{bottom:980.988486px;}
.y84{bottom:981.086221px;}
.y13d{bottom:981.648771px;}
.y1f4{bottom:982.981694px;}
.yad{bottom:982.987694px;}
.y22a{bottom:982.990694px;}
.y41{bottom:983.047006px;}
.y267{bottom:987.645784px;}
.y83{bottom:996.084721px;}
.y13c{bottom:996.647271px;}
.y1f3{bottom:997.984694px;}
.yac{bottom:997.986194px;}
.yd5{bottom:997.987694px;}
.y229{bottom:997.989194px;}
.y40{bottom:998.045506px;}
.y1a0{bottom:998.523486px;}
.y266{bottom:1000.392034px;}
.y82{bottom:1011.083221px;}
.y13b{bottom:1011.645771px;}
.y1f2{bottom:1012.983194px;}
.yab{bottom:1012.984694px;}
.yd4{bottom:1012.986194px;}
.y228{bottom:1012.987694px;}
.y3f{bottom:1013.051506px;}
.y265{bottom:1013.138284px;}
.y19f{bottom:1016.058486px;}
.y264{bottom:1025.884534px;}
.y81{bottom:1026.083221px;}
.y13a{bottom:1026.644271px;}
.y1f1{bottom:1027.981694px;}
.yaa{bottom:1027.983194px;}
.yd3{bottom:1027.984694px;}
.y227{bottom:1027.986194px;}
.y3e{bottom:1028.050006px;}
.y19e{bottom:1033.593486px;}
.y263{bottom:1038.630784px;}
.y139{bottom:1041.642771px;}
.ya9{bottom:1042.981694px;}
.yd2{bottom:1042.983194px;}
.y226{bottom:1042.984694px;}
.y3d{bottom:1043.048506px;}
.y19d{bottom:1051.128486px;}
.y262{bottom:1051.377034px;}
.y138{bottom:1056.641271px;}
.yd1{bottom:1057.981694px;}
.ya8{bottom:1057.983194px;}
.y3c{bottom:1058.047006px;}
.y80{bottom:1059.086221px;}
.y261{bottom:1064.123284px;}
.y19c{bottom:1068.663486px;}
.y137{bottom:1071.639771px;}
.ya7{bottom:1072.981694px;}
.y3b{bottom:1073.045506px;}
.y7f{bottom:1074.084721px;}
.y260{bottom:1076.869534px;}
.y19b{bottom:1086.198486px;}
.y136{bottom:1086.639771px;}
.ya6{bottom:1087.980194px;}
.y3a{bottom:1088.044006px;}
.y7e{bottom:1089.083221px;}
.y25f{bottom:1089.615784px;}
.y7d{bottom:1140.640320px;}
.ya5{bottom:1140.746521px;}
.y39{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h8{height:28.050293px;}
.h7{height:28.183594px;}
.h11{height:30.684677px;}
.h2{height:34.523438px;}
.h43{height:35.411133px;}
.h13{height:36.681152px;}
.h9{height:38.838867px;}
.h36{height:41.538000px;}
.h14{height:41.644740px;}
.h37{height:42.084000px;}
.h34{height:43.008000px;}
.h6{height:43.154297px;}
.h45{height:44.505000px;}
.h46{height:45.090000px;}
.h3{height:45.679688px;}
.h44{height:46.080000px;}
.h1e{height:47.469727px;}
.h12{height:48.510668px;}
.h15{height:49.373525px;}
.h47{height:50.439000px;}
.ha{height:53.406000px;}
.hb{height:53.416010px;}
.h32{height:53.529131px;}
.h31{height:53.547680px;}
.h2d{height:53.553863px;}
.h30{height:53.559406px;}
.h2c{height:53.565680px;}
.h39{height:53.565863px;}
.h3b{height:53.571314px;}
.h25{height:53.571680px;}
.h1d{height:53.571863px;}
.h40{height:53.577863px;}
.h3f{height:53.583680px;}
.h1c{height:53.583863px;}
.h3c{height:53.583955px;}
.h16{height:53.584046px;}
.h1f{height:53.584779px;}
.h2a{height:53.589680px;}
.he{height:53.589863px;}
.h3a{height:53.589886px;}
.h1a{height:53.590046px;}
.h21{height:53.590779px;}
.h2f{height:53.595314px;}
.h3e{height:53.595680px;}
.hc{height:53.595863px;}
.h41{height:53.595907px;}
.h17{height:53.596046px;}
.h2e{height:53.601314px;}
.h24{height:53.601680px;}
.hf{height:53.601863px;}
.h18{height:53.602046px;}
.h20{height:53.602779px;}
.h33{height:53.607131px;}
.h38{height:53.607314px;}
.h26{height:53.607680px;}
.h1b{height:53.607863px;}
.h42{height:53.607907px;}
.h19{height:53.608046px;}
.h22{height:53.608779px;}
.h2b{height:53.613680px;}
.h29{height:54.078000px;}
.h27{height:54.084000px;}
.h3d{height:54.090000px;}
.h28{height:54.102000px;}
.hd{height:54.108000px;}
.h23{height:55.296000px;}
.h4{height:57.099609px;}
.h35{height:76.608000px;}
.h10{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.228350px;}
.x3{left:61.653603px;}
.xe{left:141.395702px;}
.x5{left:233.858253px;}
.x11{left:238.570793px;}
.xd{left:251.859431px;}
.x15{left:254.108248px;}
.x16{left:302.498703px;}
.x13{left:307.096046px;}
.x12{left:319.861787px;}
.xa{left:336.648903px;}
.x6{left:401.944199px;}
.xb{left:428.921860px;}
.x7{left:527.332809px;}
.x4{left:586.814117px;}
.xc{left:669.350418px;}
.x8{left:698.370438px;}
.x10{left:797.390808px;}
.x2{left:798.901611px;}
.x9{left:800.106262px;}
.x14{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v6{vertical-align:-16.800781pt;}
.v5{vertical-align:-15.866659pt;}
.v7{vertical-align:-9.605268pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.599935pt;}
.v4{vertical-align:16.624098pt;}
.v3{vertical-align:18.666667pt;}
.v9{vertical-align:26.399414pt;}
.va{vertical-align:31.173333pt;}
.ls3d{letter-spacing:-4.608000pt;}
.ls2f{letter-spacing:-4.416000pt;}
.ls49{letter-spacing:-4.224000pt;}
.ls54{letter-spacing:-3.472000pt;}
.ls83{letter-spacing:-3.240000pt;}
.ls81{letter-spacing:-3.160000pt;}
.ls86{letter-spacing:-3.120000pt;}
.ls4a{letter-spacing:-2.784000pt;}
.ls89{letter-spacing:-2.520000pt;}
.ls35{letter-spacing:-2.304000pt;}
.ls8b{letter-spacing:-2.280000pt;}
.ls3a{letter-spacing:-1.968000pt;}
.ls4d{letter-spacing:-1.680000pt;}
.ls37{letter-spacing:-1.584000pt;}
.ls39{letter-spacing:-1.488000pt;}
.ls3c{letter-spacing:-1.200000pt;}
.ls84{letter-spacing:-1.160000pt;}
.ls4e{letter-spacing:-1.152000pt;}
.ls7b{letter-spacing:-1.040000pt;}
.ls3e{letter-spacing:-1.008000pt;}
.ls8c{letter-spacing:-0.960000pt;}
.ls3b{letter-spacing:-0.864000pt;}
.ls42{letter-spacing:-0.816000pt;}
.ls4b{letter-spacing:-0.720000pt;}
.ls4c{letter-spacing:-0.672000pt;}
.ls33{letter-spacing:-0.576000pt;}
.ls38{letter-spacing:-0.528000pt;}
.ls88{letter-spacing:-0.520000pt;}
.ls34{letter-spacing:-0.480000pt;}
.ls55{letter-spacing:-0.448000pt;}
.ls85{letter-spacing:-0.440000pt;}
.ls3f{letter-spacing:-0.432000pt;}
.ls26{letter-spacing:-0.384000pt;}
.ls53{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.336000pt;}
.ls8a{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.288000pt;}
.ls68{letter-spacing:-0.280800pt;}
.ls87{letter-spacing:-0.280000pt;}
.ls48{letter-spacing:-0.249600pt;}
.ls2b{letter-spacing:-0.240000pt;}
.ls2a{letter-spacing:-0.218400pt;}
.ls77{letter-spacing:-0.200000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls31{letter-spacing:-0.187200pt;}
.ls78{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.156000pt;}
.ls27{letter-spacing:-0.144000pt;}
.ls21{letter-spacing:-0.124800pt;}
.ls82{letter-spacing:-0.120000pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls5f{letter-spacing:-0.093600pt;}
.ls7a{letter-spacing:-0.080000pt;}
.ls28{letter-spacing:-0.062400pt;}
.ls13{letter-spacing:-0.048000pt;}
.ls79{letter-spacing:-0.040000pt;}
.ls1e{letter-spacing:-0.031200pt;}
.lsf{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.011917pt;}
.ls41{letter-spacing:0.014400pt;}
.lse{letter-spacing:0.016025pt;}
.ls1{letter-spacing:0.024458pt;}
.ls25{letter-spacing:0.031200pt;}
.ls67{letter-spacing:0.033600pt;}
.ls65{letter-spacing:0.038394pt;}
.ls71{letter-spacing:0.040000pt;}
.ls10{letter-spacing:0.048000pt;}
.ls80{letter-spacing:0.060000pt;}
.ls36{letter-spacing:0.062400pt;}
.ls72{letter-spacing:0.080000pt;}
.ls5b{letter-spacing:0.081589pt;}
.ls22{letter-spacing:0.093600pt;}
.ls2d{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.108147pt;}
.ls56{letter-spacing:0.112000pt;}
.ls6f{letter-spacing:0.120000pt;}
.ls62{letter-spacing:0.124764pt;}
.ls18{letter-spacing:0.124800pt;}
.lsc{letter-spacing:0.126214pt;}
.lsb{letter-spacing:0.126946pt;}
.ls66{letter-spacing:0.134393pt;}
.ls19{letter-spacing:0.140400pt;}
.ls5{letter-spacing:0.141187pt;}
.ls6{letter-spacing:0.141350pt;}
.ls52{letter-spacing:0.141352pt;}
.ls50{letter-spacing:0.141513pt;}
.ls1b{letter-spacing:0.144000pt;}
.ls58{letter-spacing:0.148800pt;}
.ls1c{letter-spacing:0.156000pt;}
.ls51{letter-spacing:0.156813pt;}
.ls64{letter-spacing:0.158400pt;}
.ls6d{letter-spacing:0.160000pt;}
.ls6c{letter-spacing:0.180000pt;}
.ls5e{letter-spacing:0.187200pt;}
.ls4{letter-spacing:0.192000pt;}
.ls6e{letter-spacing:0.200000pt;}
.ls57{letter-spacing:0.216000pt;}
.ls44{letter-spacing:0.217684pt;}
.ls47{letter-spacing:0.218400pt;}
.ls6b{letter-spacing:0.234667pt;}
.ls8{letter-spacing:0.236876pt;}
.ls32{letter-spacing:0.237379pt;}
.ls63{letter-spacing:0.239979pt;}
.ls12{letter-spacing:0.240000pt;}
.ls43{letter-spacing:0.244755pt;}
.ls29{letter-spacing:0.249600pt;}
.ls7e{letter-spacing:0.280000pt;}
.ls20{letter-spacing:0.280800pt;}
.ls46{letter-spacing:0.285080pt;}
.ls2e{letter-spacing:0.288000pt;}
.ls24{letter-spacing:0.312000pt;}
.ls7c{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.374400pt;}
.lsa{letter-spacing:0.374890pt;}
.ls15{letter-spacing:0.384000pt;}
.ls59{letter-spacing:0.393590pt;}
.ls76{letter-spacing:0.400000pt;}
.ls69{letter-spacing:0.405600pt;}
.ls7{letter-spacing:0.432000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.518338pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls61{letter-spacing:0.571171pt;}
.ls16{letter-spacing:0.576000pt;}
.ls60{letter-spacing:0.595186pt;}
.ls5c{letter-spacing:0.614393pt;}
.ls17{letter-spacing:0.624000pt;}
.ls6a{letter-spacing:0.672000pt;}
.ls4f{letter-spacing:0.720000pt;}
.ls5d{letter-spacing:0.720056pt;}
.ls40{letter-spacing:0.768000pt;}
.ls70{letter-spacing:0.788076pt;}
.ls7d{letter-spacing:0.835933pt;}
.ls75{letter-spacing:0.880000pt;}
.ls73{letter-spacing:0.920000pt;}
.ls7f{letter-spacing:1.780055pt;}
.ls0{letter-spacing:2.666667pt;}
.ls74{letter-spacing:4.539925pt;}
.ls5a{letter-spacing:90.832000pt;}
.ws56{word-spacing:-48.000000pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws8c{word-spacing:-12.320000pt;}
.ws6b{word-spacing:-12.085333pt;}
.ws69{word-spacing:-11.328000pt;}
.ws1f{word-spacing:-11.136000pt;}
.ws7c{word-spacing:-11.112000pt;}
.ws13{word-spacing:-11.088000pt;}
.ws4d{word-spacing:-11.040000pt;}
.ws62{word-spacing:-10.992000pt;}
.ws1d{word-spacing:-10.896000pt;}
.ws88{word-spacing:-10.848000pt;}
.ws46{word-spacing:-10.800000pt;}
.ws43{word-spacing:-10.752000pt;}
.ws8b{word-spacing:-10.704000pt;}
.ws33{word-spacing:-10.656000pt;}
.ws44{word-spacing:-10.608000pt;}
.ws67{word-spacing:-10.560000pt;}
.ws41{word-spacing:-10.512000pt;}
.ws48{word-spacing:-10.464000pt;}
.ws37{word-spacing:-10.416000pt;}
.ws64{word-spacing:-10.272000pt;}
.ws57{word-spacing:-10.176000pt;}
.ws4b{word-spacing:-10.128000pt;}
.ws4e{word-spacing:-9.984000pt;}
.ws66{word-spacing:-9.840000pt;}
.ws4c{word-spacing:-9.792000pt;}
.ws49{word-spacing:-9.504000pt;}
.ws47{word-spacing:-9.408000pt;}
.ws8f{word-spacing:-9.360000pt;}
.ws65{word-spacing:-9.312000pt;}
.ws8e{word-spacing:-9.260000pt;}
.wsa7{word-spacing:-9.200000pt;}
.ws8d{word-spacing:-9.080000pt;}
.wsa2{word-spacing:-9.040000pt;}
.ws4a{word-spacing:-9.024000pt;}
.wsa4{word-spacing:-8.960000pt;}
.wsa9{word-spacing:-8.840000pt;}
.wsa5{word-spacing:-8.720000pt;}
.ws42{word-spacing:-8.688000pt;}
.wsa8{word-spacing:-8.640000pt;}
.ws82{word-spacing:-8.586667pt;}
.ws16{word-spacing:-8.533333pt;}
.ws7e{word-spacing:-8.474667pt;}
.ws90{word-spacing:-8.440000pt;}
.ws63{word-spacing:-8.208000pt;}
.wsaa{word-spacing:-8.200000pt;}
.ws70{word-spacing:-8.101333pt;}
.ws8a{word-spacing:-7.488000pt;}
.ws23{word-spacing:-7.456800pt;}
.ws1c{word-spacing:-7.394400pt;}
.ws19{word-spacing:-7.363200pt;}
.ws21{word-spacing:-7.332000pt;}
.ws61{word-spacing:-7.300800pt;}
.ws84{word-spacing:-7.269600pt;}
.ws17{word-spacing:-7.238400pt;}
.ws4{word-spacing:-7.207200pt;}
.ws1b{word-spacing:-7.176000pt;}
.ws45{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws1e{word-spacing:-7.113600pt;}
.ws3{word-spacing:-7.082400pt;}
.ws18{word-spacing:-7.051200pt;}
.ws20{word-spacing:-7.020000pt;}
.ws85{word-spacing:-6.988800pt;}
.ws1a{word-spacing:-6.957600pt;}
.ws24{word-spacing:-6.926400pt;}
.ws36{word-spacing:-6.895200pt;}
.ws22{word-spacing:-6.864000pt;}
.ws87{word-spacing:-6.801600pt;}
.wsa6{word-spacing:-6.040000pt;}
.wsa1{word-spacing:-6.000000pt;}
.wsa3{word-spacing:-5.920000pt;}
.ws5{word-spacing:-5.893333pt;}
.wsad{word-spacing:-5.480000pt;}
.wsa0{word-spacing:-5.360000pt;}
.wsac{word-spacing:-5.240000pt;}
.wsba{word-spacing:-5.080000pt;}
.wsb5{word-spacing:-5.000000pt;}
.ws5d{word-spacing:-4.896000pt;}
.ws7b{word-spacing:-3.808000pt;}
.ws51{word-spacing:-1.248000pt;}
.ws8{word-spacing:-1.104000pt;}
.wsa{word-spacing:-1.056000pt;}
.ws30{word-spacing:-1.008000pt;}
.ws3f{word-spacing:-0.960000pt;}
.ws95{word-spacing:-0.920000pt;}
.ws3a{word-spacing:-0.912000pt;}
.ws98{word-spacing:-0.880000pt;}
.wse{word-spacing:-0.864000pt;}
.wsf{word-spacing:-0.816000pt;}
.ws5c{word-spacing:-0.768000pt;}
.wsb2{word-spacing:-0.760000pt;}
.ws27{word-spacing:-0.720000pt;}
.wsb{word-spacing:-0.672000pt;}
.wsaf{word-spacing:-0.640000pt;}
.ws2c{word-spacing:-0.624000pt;}
.wsd{word-spacing:-0.576000pt;}
.ws10{word-spacing:-0.528000pt;}
.ws50{word-spacing:-0.480000pt;}
.ws5a{word-spacing:-0.432000pt;}
.ws26{word-spacing:-0.384000pt;}
.ws2b{word-spacing:-0.336000pt;}
.wsb6{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.288000pt;}
.wsb3{word-spacing:-0.280000pt;}
.ws2a{word-spacing:-0.240000pt;}
.ws92{word-spacing:-0.234667pt;}
.ws97{word-spacing:-0.200000pt;}
.ws7{word-spacing:-0.192000pt;}
.ws94{word-spacing:-0.160000pt;}
.ws3e{word-spacing:-0.144000pt;}
.ws96{word-spacing:-0.120000pt;}
.ws34{word-spacing:-0.096000pt;}
.ws93{word-spacing:-0.080000pt;}
.ws35{word-spacing:-0.048000pt;}
.ws9d{word-spacing:-0.040000pt;}
.ws6{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.040000pt;}
.ws2d{word-spacing:0.048000pt;}
.ws38{word-spacing:0.096000pt;}
.wsb8{word-spacing:0.120000pt;}
.ws2f{word-spacing:0.144000pt;}
.wsb4{word-spacing:0.160000pt;}
.ws32{word-spacing:0.192000pt;}
.ws58{word-spacing:0.240000pt;}
.wsb9{word-spacing:0.280000pt;}
.ws68{word-spacing:0.288000pt;}
.wsab{word-spacing:0.320000pt;}
.ws79{word-spacing:0.336000pt;}
.ws60{word-spacing:0.384000pt;}
.ws9a{word-spacing:0.400000pt;}
.ws4f{word-spacing:0.432000pt;}
.ws54{word-spacing:0.480000pt;}
.ws3c{word-spacing:0.528000pt;}
.ws5f{word-spacing:0.576000pt;}
.ws14{word-spacing:0.624000pt;}
.ws9{word-spacing:0.672000pt;}
.ws31{word-spacing:0.720000pt;}
.ws7a{word-spacing:0.768000pt;}
.wsbb{word-spacing:0.800000pt;}
.ws25{word-spacing:0.816000pt;}
.ws83{word-spacing:0.864000pt;}
.ws9c{word-spacing:0.880000pt;}
.ws3b{word-spacing:0.912000pt;}
.ws99{word-spacing:0.920000pt;}
.ws2e{word-spacing:0.960000pt;}
.ws29{word-spacing:1.008000pt;}
.ws9b{word-spacing:1.040000pt;}
.ws28{word-spacing:1.056000pt;}
.wsc{word-spacing:1.104000pt;}
.ws5b{word-spacing:1.152000pt;}
.ws52{word-spacing:1.200000pt;}
.wsae{word-spacing:1.240000pt;}
.ws11{word-spacing:1.248000pt;}
.ws39{word-spacing:1.296000pt;}
.ws5e{word-spacing:1.344000pt;}
.ws89{word-spacing:1.392000pt;}
.ws12{word-spacing:1.440000pt;}
.ws77{word-spacing:1.488000pt;}
.ws53{word-spacing:1.632000pt;}
.ws91{word-spacing:1.824000pt;}
.ws86{word-spacing:1.872000pt;}
.ws78{word-spacing:1.968000pt;}
.wsb7{word-spacing:2.280000pt;}
.ws59{word-spacing:2.304000pt;}
.wsb1{word-spacing:2.520000pt;}
.wsbe{word-spacing:2.688000pt;}
.wsbf{word-spacing:2.784000pt;}
.wsbc{word-spacing:2.832000pt;}
.wsbd{word-spacing:2.976000pt;}
.ws9e{word-spacing:3.280000pt;}
.ws9f{word-spacing:3.320000pt;}
.ws55{word-spacing:3.600000pt;}
.wsc1{word-spacing:5.040000pt;}
.ws3d{word-spacing:5.184000pt;}
.wsc2{word-spacing:5.568000pt;}
.ws6a{word-spacing:5.760000pt;}
.wsc0{word-spacing:6.000000pt;}
.ws40{word-spacing:13.584000pt;}
.ws73{word-spacing:40.842663pt;}
.ws7f{word-spacing:40.842667pt;}
.ws7d{word-spacing:41.215994pt;}
.ws72{word-spacing:41.738667pt;}
.ws6f{word-spacing:41.966400pt;}
.ws6c{word-spacing:49.429330pt;}
.ws76{word-spacing:57.609062pt;}
.ws81{word-spacing:62.496000pt;}
.ws71{word-spacing:104.201062pt;}
.ws6e{word-spacing:127.680000pt;}
.ws75{word-spacing:146.682662pt;}
.ws6d{word-spacing:152.581333pt;}
.ws74{word-spacing:162.665062pt;}
.ws80{word-spacing:192.266667pt;}
._13{margin-left:-18.624006pt;}
._7{margin-left:-13.355733pt;}
._10{margin-left:-12.241067pt;}
._e{margin-left:-11.332978pt;}
._6{margin-left:-10.017097pt;}
._14{margin-left:-8.857600pt;}
._1b{margin-left:-7.262400pt;}
._12{margin-left:-6.304546pt;}
._f{margin-left:-5.017066pt;}
._4{margin-left:-3.651733pt;}
._2{margin-left:-2.758400pt;}
._0{margin-left:-1.668267pt;}
._5{width:0.893333pt;}
._8{width:2.270933pt;}
._d{width:3.327466pt;}
._c{width:5.145333pt;}
._a{width:6.926778pt;}
._11{width:9.072000pt;}
._9{width:10.230933pt;}
._b{width:11.669600pt;}
._23{width:12.720000pt;}
._15{width:14.089066pt;}
._22{width:15.280000pt;}
._24{width:16.400000pt;}
._3{width:35.520023pt;}
._17{width:49.313600pt;}
._18{width:55.443733pt;}
._19{width:66.938667pt;}
._1c{width:71.369600pt;}
._1a{width:73.341866pt;}
._21{width:77.093333pt;}
._1e{width:98.784000pt;}
._20{width:103.065600pt;}
._1f{width:107.034661pt;}
._1d{width:124.718933pt;}
._1{width:285.572267pt;}
._16{width:385.354649pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:2.843733pt;}
.y38{bottom:2.843867pt;}
.yd0{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y37{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ya4{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y225{bottom:60.428132pt;}
.y36{bottom:60.477735pt;}
.ya2{bottom:60.984533pt;}
.ycf{bottom:61.249862pt;}
.y2ad{bottom:63.216666pt;}
.y10f{bottom:65.778799pt;}
.y195{bottom:68.552135pt;}
.y25e{bottom:69.226799pt;}
.y1c2{bottom:70.556135pt;}
.y7c{bottom:71.164935pt;}
.y168{bottom:73.576524pt;}
.y224{bottom:73.764132pt;}
.y35{bottom:73.816402pt;}
.ya1{bottom:74.316533pt;}
.yce{bottom:74.581862pt;}
.y2ac{bottom:76.548666pt;}
.y1e9{bottom:77.222802pt;}
.y10e{bottom:79.110799pt;}
.y25d{bottom:80.556799pt;}
.y194{bottom:81.889468pt;}
.y1c1{bottom:83.888135pt;}
.y7b{bottom:84.496935pt;}
.y167{bottom:86.908524pt;}
.y223{bottom:87.096132pt;}
.y34{bottom:87.144402pt;}
.ya0{bottom:87.648533pt;}
.ycd{bottom:87.913862pt;}
.y2ab{bottom:89.880666pt;}
.y1e8{bottom:90.554802pt;}
.y25c{bottom:91.886799pt;}
.y10d{bottom:92.442799pt;}
.y193{bottom:95.221468pt;}
.y1c0{bottom:97.220135pt;}
.y7a{bottom:97.828935pt;}
.y166{bottom:100.240524pt;}
.y222{bottom:100.428132pt;}
.y33{bottom:100.477735pt;}
.y9f{bottom:100.980533pt;}
.ycc{bottom:101.245862pt;}
.y2aa{bottom:103.213999pt;}
.y25b{bottom:103.216799pt;}
.y1e7{bottom:103.886802pt;}
.y12f{bottom:104.557468pt;}
.y10c{bottom:105.774799pt;}
.y192{bottom:108.553468pt;}
.y1bf{bottom:110.552135pt;}
.y79{bottom:111.160935pt;}
.y165{bottom:113.572524pt;}
.y221{bottom:113.761465pt;}
.y9e{bottom:114.312533pt;}
.y25a{bottom:114.546799pt;}
.ycb{bottom:114.577862pt;}
.y1e6{bottom:117.218802pt;}
.y32{bottom:117.772400pt;}
.y12e{bottom:117.889468pt;}
.y10b{bottom:119.106799pt;}
.y191{bottom:121.885468pt;}
.y1be{bottom:123.890802pt;}
.y78{bottom:124.492935pt;}
.y259{bottom:125.876799pt;}
.y164{bottom:126.904524pt;}
.y220{bottom:127.097465pt;}
.y9d{bottom:127.644533pt;}
.yca{bottom:127.909862pt;}
.y2a9{bottom:130.127363pt;}
.y1e5{bottom:130.554802pt;}
.y12d{bottom:131.221468pt;}
.y10a{bottom:132.438799pt;}
.y190{bottom:135.225468pt;}
.y258{bottom:137.206799pt;}
.y1bd{bottom:137.222802pt;}
.y77{bottom:137.824935pt;}
.y163{bottom:140.236524pt;}
.y21f{bottom:140.429465pt;}
.y9c{bottom:140.976533pt;}
.yc9{bottom:141.241862pt;}
.y2a8{bottom:141.457363pt;}
.y1e4{bottom:143.886802pt;}
.y12c{bottom:144.553468pt;}
.y109{bottom:145.770799pt;}
.y257{bottom:148.536799pt;}
.y18f{bottom:148.557468pt;}
.y1bc{bottom:150.554802pt;}
.y76{bottom:151.156935pt;}
.y2a7{bottom:152.787363pt;}
.y162{bottom:153.568524pt;}
.y21e{bottom:153.761465pt;}
.y9b{bottom:154.308533pt;}
.y1e3{bottom:157.218802pt;}
.y12b{bottom:157.885468pt;}
.y108{bottom:159.102799pt;}
.y256{bottom:159.866799pt;}
.y18e{bottom:161.889468pt;}
.y1bb{bottom:163.886802pt;}
.y30{bottom:164.063060pt;}
.y2a6{bottom:164.117363pt;}
.y75{bottom:164.488935pt;}
.y161{bottom:166.900524pt;}
.y21d{bottom:167.094799pt;}
.y1e2{bottom:170.553468pt;}
.y255{bottom:171.196799pt;}
.y12a{bottom:171.221468pt;}
.y107{bottom:172.434799pt;}
.y18d{bottom:175.221468pt;}
.y2a5{bottom:175.447363pt;}
.y1ba{bottom:177.218802pt;}
.y2f{bottom:177.396271pt;}
.y74{bottom:177.820935pt;}
.y160{bottom:180.232524pt;}
.y21c{bottom:180.436132pt;}
.y254{bottom:182.526799pt;}
.y1e1{bottom:183.885468pt;}
.y129{bottom:184.553468pt;}
.y2a4{bottom:186.777363pt;}
.y18c{bottom:188.553468pt;}
.y1b9{bottom:190.561468pt;}
.y2e{bottom:190.733605pt;}
.y73{bottom:191.152935pt;}
.y21b{bottom:193.768132pt;}
.y253{bottom:193.856799pt;}
.y1e0{bottom:197.218802pt;}
.y128{bottom:197.885468pt;}
.y2a3{bottom:198.107363pt;}
.y106{bottom:201.762799pt;}
.y18b{bottom:201.885468pt;}
.y1b8{bottom:203.893468pt;}
.y2d{bottom:204.065605pt;}
.y72{bottom:204.484935pt;}
.y252{bottom:205.186799pt;}
.y21a{bottom:207.100132pt;}
.y171{bottom:209.029730pt;}
.y2a2{bottom:209.437363pt;}
.y1df{bottom:210.552135pt;}
.y127{bottom:211.218802pt;}
.y105{bottom:215.094799pt;}
.y18a{bottom:215.217468pt;}
.y251{bottom:216.516799pt;}
.y170{bottom:216.823063pt;}
.y1b7{bottom:217.225468pt;}
.y2c{bottom:217.397605pt;}
.y71{bottom:217.819602pt;}
.y219{bottom:220.432132pt;}
.y2a1{bottom:220.767363pt;}
.y1de{bottom:223.888135pt;}
.y126{bottom:224.552135pt;}
.y250{bottom:227.846799pt;}
.y104{bottom:228.440132pt;}
.y189{bottom:228.550802pt;}
.y1b6{bottom:230.557468pt;}
.y2b{bottom:230.729605pt;}
.y70{bottom:231.151602pt;}
.y2a0{bottom:232.097363pt;}
.y218{bottom:233.764132pt;}
.y1dd{bottom:237.220135pt;}
.y125{bottom:237.894802pt;}
.y24f{bottom:239.176799pt;}
.y16f{bottom:240.203063pt;}
.y103{bottom:241.772132pt;}
.y29f{bottom:243.427363pt;}
.y1b5{bottom:243.889468pt;}
.y2a{bottom:244.064271pt;}
.y6f{bottom:244.486269pt;}
.y217{bottom:247.096132pt;}
.y16e{bottom:247.996396pt;}
.y24e{bottom:250.506799pt;}
.y1dc{bottom:250.552135pt;}
.y124{bottom:251.226802pt;}
.y29e{bottom:254.757363pt;}
.y102{bottom:255.104132pt;}
.y1b4{bottom:257.221468pt;}
.y29{bottom:257.396271pt;}
.y6e{bottom:257.818269pt;}
.y188{bottom:257.896115pt;}
.y216{bottom:260.428132pt;}
.y24d{bottom:261.836799pt;}
.y1db{bottom:263.886802pt;}
.y123{bottom:264.558802pt;}
.y29d{bottom:266.087363pt;}
.y101{bottom:268.436132pt;}
.y1b3{bottom:270.553468pt;}
.y28{bottom:270.733605pt;}
.y6d{bottom:271.151602pt;}
.y187{bottom:271.228115pt;}
.y16d{bottom:271.376396pt;}
.y24c{bottom:273.166799pt;}
.y215{bottom:273.765465pt;}
.y1da{bottom:277.218802pt;}
.y29c{bottom:277.417363pt;}
.y122{bottom:277.890802pt;}
.y16c{bottom:279.169730pt;}
.y100{bottom:281.768132pt;}
.y1b2{bottom:283.885468pt;}
.y27{bottom:284.065605pt;}
.y6c{bottom:284.484935pt;}
.y24b{bottom:284.496799pt;}
.y186{bottom:284.560115pt;}
.y214{bottom:287.097465pt;}
.y29b{bottom:288.747363pt;}
.y1d9{bottom:290.557448pt;}
.y121{bottom:291.222802pt;}
.yff{bottom:295.100132pt;}
.y24a{bottom:295.826799pt;}
.y1b1{bottom:297.221468pt;}
.y26{bottom:297.397605pt;}
.y6b{bottom:297.818269pt;}
.y185{bottom:297.892115pt;}
.y29a{bottom:300.077363pt;}
.y213{bottom:300.429465pt;}
.y16b{bottom:302.549730pt;}
.y1d8{bottom:303.889448pt;}
.y249{bottom:307.156799pt;}
.yfe{bottom:308.432132pt;}
.y16a{bottom:310.343063pt;}
.y1b0{bottom:310.553468pt;}
.y25{bottom:310.729605pt;}
.y6a{bottom:311.151602pt;}
.y184{bottom:311.224115pt;}
.y299{bottom:311.407363pt;}
.y212{bottom:313.761465pt;}
.y1d7{bottom:317.221448pt;}
.y248{bottom:318.486799pt;}
.y120{bottom:320.562781pt;}
.yfd{bottom:321.764132pt;}
.y298{bottom:322.737363pt;}
.y1af{bottom:323.885468pt;}
.y24{bottom:324.064271pt;}
.y69{bottom:324.486269pt;}
.y183{bottom:324.556115pt;}
.y211{bottom:327.097465pt;}
.y247{bottom:329.816799pt;}
.y1d6{bottom:330.553448pt;}
.y169{bottom:333.723063pt;}
.y11f{bottom:333.894781pt;}
.y297{bottom:334.067363pt;}
.yfc{bottom:335.096132pt;}
.y1ae{bottom:337.218781pt;}
.y23{bottom:337.396271pt;}
.y68{bottom:337.818269pt;}
.y182{bottom:337.888115pt;}
.y210{bottom:340.429465pt;}
.y246{bottom:341.146799pt;}
.y1d5{bottom:343.885448pt;}
.y296{bottom:345.397363pt;}
.y11e{bottom:347.226781pt;}
.yfb{bottom:348.428132pt;}
.y1ad{bottom:350.550781pt;}
.y22{bottom:350.732271pt;}
.y67{bottom:351.151602pt;}
.y181{bottom:351.220115pt;}
.y245{bottom:352.476799pt;}
.y20f{bottom:353.761465pt;}
.y295{bottom:356.727363pt;}
.y1d4{bottom:357.222781pt;}
.y11d{bottom:360.558781pt;}
.yfa{bottom:361.765465pt;}
.y244{bottom:363.806799pt;}
.y21{bottom:364.064271pt;}
.y66{bottom:364.483602pt;}
.y180{bottom:364.552115pt;}
.y20e{bottom:367.100132pt;}
.y294{bottom:368.057363pt;}
.y1d3{bottom:370.554781pt;}
.y11c{bottom:373.890781pt;}
.yf9{bottom:375.097465pt;}
.y243{bottom:375.136799pt;}
.y20{bottom:377.396271pt;}
.y65{bottom:377.816935pt;}
.y17f{bottom:377.885448pt;}
.y293{bottom:379.387363pt;}
.y20d{bottom:380.432132pt;}
.y1d2{bottom:383.886781pt;}
.y242{bottom:386.466799pt;}
.y11b{bottom:387.222781pt;}
.y15f{bottom:387.238018pt;}
.yf8{bottom:388.429465pt;}
.y1c7{bottom:389.846805pt;}
.y292{bottom:390.717363pt;}
.y1f{bottom:390.732271pt;}
.y64{bottom:391.150269pt;}
.y17e{bottom:391.218781pt;}
.y20c{bottom:393.764132pt;}
.y1d1{bottom:397.218781pt;}
.y241{bottom:397.796799pt;}
.y11a{bottom:400.554781pt;}
.y15e{bottom:400.570018pt;}
.yf7{bottom:401.761465pt;}
.y291{bottom:402.047363pt;}
.y1c6{bottom:403.178805pt;}
.y1e{bottom:404.064271pt;}
.y17d{bottom:404.550781pt;}
.y20b{bottom:407.096132pt;}
.y240{bottom:409.126799pt;}
.y1d0{bottom:410.560115pt;}
.y290{bottom:413.377363pt;}
.y119{bottom:413.886781pt;}
.y15d{bottom:413.903352pt;}
.yf6{bottom:415.093465pt;}
.y1c5{bottom:416.510805pt;}
.y1d{bottom:417.396271pt;}
.y17c{bottom:417.884115pt;}
.y20a{bottom:420.428132pt;}
.y23f{bottom:420.456799pt;}
.y63{bottom:420.486269pt;}
.y1cf{bottom:423.892115pt;}
.y28f{bottom:424.707363pt;}
.y118{bottom:427.218781pt;}
.y15c{bottom:427.236685pt;}
.yf5{bottom:428.426799pt;}
.y1c4{bottom:429.842805pt;}
.y1c{bottom:430.772239pt;}
.y23e{bottom:431.786799pt;}
.y209{bottom:433.768132pt;}
.y62{bottom:433.818269pt;}
.y28e{bottom:436.037363pt;}
.y1ce{bottom:437.224115pt;}
.y117{bottom:440.554781pt;}
.y15b{bottom:440.570018pt;}
.y23d{bottom:443.116799pt;}
.y1c3{bottom:443.174805pt;}
.y1b{bottom:444.104239pt;}
.y2c2{bottom:445.801471pt;}
.y208{bottom:447.100132pt;}
.y61{bottom:447.159602pt;}
.y17b{bottom:447.229448pt;}
.y28d{bottom:447.367363pt;}
.y1cd{bottom:450.556115pt;}
.y116{bottom:453.886781pt;}
.y15a{bottom:453.920685pt;}
.y23c{bottom:454.446799pt;}
.yf4{bottom:457.769465pt;}
.y28c{bottom:458.697363pt;}
.y207{bottom:460.432132pt;}
.y60{bottom:460.491602pt;}
.y17a{bottom:460.561448pt;}
.y1cc{bottom:463.888115pt;}
.y23b{bottom:465.776799pt;}
.y115{bottom:467.218781pt;}
.y159{bottom:467.252685pt;}
.y28b{bottom:470.027363pt;}
.yf3{bottom:471.101465pt;}
.y2c1{bottom:472.465469pt;}
.y206{bottom:473.764132pt;}
.y5f{bottom:473.823602pt;}
.y179{bottom:473.893448pt;}
.y23a{bottom:477.106799pt;}
.y1cb{bottom:477.220115pt;}
.y114{bottom:480.553448pt;}
.y158{bottom:480.584685pt;}
.y28a{bottom:481.357363pt;}
.y1a{bottom:484.232239pt;}
.yf2{bottom:484.433465pt;}
.y2c0{bottom:485.797469pt;}
.y205{bottom:487.096132pt;}
.y5e{bottom:487.155602pt;}
.y178{bottom:487.225448pt;}
.y239{bottom:488.436799pt;}
.y1ca{bottom:490.552115pt;}
.y289{bottom:492.687363pt;}
.y113{bottom:493.885448pt;}
.y157{bottom:493.916685pt;}
.yf1{bottom:497.765465pt;}
.y19{bottom:498.896239pt;}
.y2bf{bottom:499.129469pt;}
.y238{bottom:499.766799pt;}
.y204{bottom:500.428132pt;}
.y5d{bottom:500.487602pt;}
.y177{bottom:500.557448pt;}
.y1c9{bottom:503.885448pt;}
.y288{bottom:504.017363pt;}
.y112{bottom:507.218781pt;}
.y156{bottom:507.248685pt;}
.y237{bottom:511.096799pt;}
.yf0{bottom:511.097465pt;}
.y2be{bottom:512.461469pt;}
.y18{bottom:513.560239pt;}
.y203{bottom:513.761465pt;}
.yc8{bottom:513.772132pt;}
.y5c{bottom:513.819602pt;}
.y176{bottom:513.889448pt;}
.y287{bottom:515.347363pt;}
.y1c8{bottom:517.217448pt;}
.y111{bottom:520.552115pt;}
.y155{bottom:520.580685pt;}
.y236{bottom:522.426799pt;}
.yef{bottom:524.429465pt;}
.y2bd{bottom:525.793469pt;}
.y286{bottom:526.677363pt;}
.y202{bottom:527.098799pt;}
.yc7{bottom:527.104132pt;}
.y5b{bottom:527.151602pt;}
.y175{bottom:527.221448pt;}
.y17{bottom:528.224239pt;}
.y235{bottom:533.760132pt;}
.y110{bottom:533.884115pt;}
.y154{bottom:533.912685pt;}
.yee{bottom:537.761465pt;}
.y285{bottom:538.007363pt;}
.y2bc{bottom:539.125469pt;}
.y201{bottom:540.430799pt;}
.yc6{bottom:540.436132pt;}
.y5a{bottom:540.484935pt;}
.y174{bottom:540.553448pt;}
.y16{bottom:542.888239pt;}
.y153{bottom:547.244685pt;}
.y284{bottom:549.337363pt;}
.y1f0{bottom:550.217470pt;}
.yed{bottom:551.098799pt;}
.y2bb{bottom:552.457469pt;}
.y200{bottom:553.762799pt;}
.yc5{bottom:553.768132pt;}
.y59{bottom:553.823602pt;}
.y173{bottom:553.885448pt;}
.y15{bottom:557.552239pt;}
.y152{bottom:560.576685pt;}
.y283{bottom:560.667363pt;}
.y9a{bottom:562.748682pt;}
.y1ef{bottom:563.549470pt;}
.yec{bottom:564.430799pt;}
.y2ba{bottom:565.789469pt;}
.y1ff{bottom:567.094799pt;}
.yc4{bottom:567.100132pt;}
.y58{bottom:567.155602pt;}
.y172{bottom:567.217448pt;}
.y282{bottom:571.997363pt;}
.y14{bottom:572.216239pt;}
.y135{bottom:572.994785pt;}
.y151{bottom:573.908685pt;}
.y99{bottom:576.080682pt;}
.y1ee{bottom:576.886803pt;}
.y234{bottom:577.760132pt;}
.yeb{bottom:577.762799pt;}
.y1fe{bottom:580.429465pt;}
.yc3{bottom:580.432132pt;}
.y57{bottom:580.487602pt;}
.y281{bottom:583.327363pt;}
.y2b9{bottom:585.780136pt;}
.y134{bottom:586.326785pt;}
.y13{bottom:586.880239pt;}
.y150{bottom:587.240685pt;}
.y98{bottom:589.412682pt;}
.y1ed{bottom:590.218803pt;}
.yea{bottom:591.094799pt;}
.y1fd{bottom:593.761465pt;}
.yc2{bottom:593.764132pt;}
.y56{bottom:593.819602pt;}
.y280{bottom:594.657363pt;}
.y2b8{bottom:599.112136pt;}
.y133{bottom:599.658785pt;}
.y14f{bottom:600.572685pt;}
.y12{bottom:601.544239pt;}
.y97{bottom:602.744682pt;}
.y1ec{bottom:603.550803pt;}
.y233{bottom:604.426799pt;}
.ye9{bottom:604.429465pt;}
.y27f{bottom:605.987363pt;}
.yc1{bottom:607.096132pt;}
.y55{bottom:607.151602pt;}
.y132{bottom:612.990785pt;}
.y14e{bottom:613.904685pt;}
.y96{bottom:616.076682pt;}
.y11{bottom:616.208239pt;}
.y1eb{bottom:616.882803pt;}
.y27e{bottom:617.317363pt;}
.y232{bottom:617.760132pt;}
.ye8{bottom:617.761465pt;}
.y19a{bottom:618.420535pt;}
.y2b7{bottom:619.116136pt;}
.yc0{bottom:620.428132pt;}
.y54{bottom:620.484935pt;}
.y131{bottom:626.322785pt;}
.y14d{bottom:627.236685pt;}
.y27d{bottom:628.647363pt;}
.y95{bottom:629.408682pt;}
.y1ea{bottom:630.214803pt;}
.y10{bottom:630.872239pt;}
.ye7{bottom:631.094799pt;}
.y199{bottom:631.752535pt;}
.y1fc{bottom:633.762799pt;}
.ybf{bottom:633.765506pt;}
.y53{bottom:633.818269pt;}
.y2b6{bottom:639.120136pt;}
.y130{bottom:639.654785pt;}
.y27c{bottom:639.977363pt;}
.y14c{bottom:640.568685pt;}
.y94{bottom:642.740682pt;}
.ye6{bottom:644.432173pt;}
.y231{bottom:644.445506pt;}
.y198{bottom:645.084535pt;}
.yf{bottom:645.536239pt;}
.y1fb{bottom:647.094799pt;}
.ybe{bottom:647.097506pt;}
.y52{bottom:647.152935pt;}
.y27b{bottom:651.307363pt;}
.y14b{bottom:653.902018pt;}
.y93{bottom:656.074015pt;}
.ye5{bottom:657.764173pt;}
.y230{bottom:657.777506pt;}
.y197{bottom:658.416535pt;}
.y2b5{bottom:659.124136pt;}
.ye{bottom:660.200239pt;}
.ybd{bottom:660.429506pt;}
.y1fa{bottom:660.437506pt;}
.y51{bottom:660.484935pt;}
.y27a{bottom:662.637363pt;}
.ye4{bottom:671.096173pt;}
.y22f{bottom:671.109506pt;}
.y196{bottom:671.748535pt;}
.y2b4{bottom:672.456136pt;}
.ybc{bottom:673.761506pt;}
.y1f9{bottom:673.769506pt;}
.y50{bottom:673.822228pt;}
.y279{bottom:673.967363pt;}
.yd{bottom:674.864239pt;}
.y14a{bottom:683.242018pt;}
.ye3{bottom:684.428173pt;}
.y22e{bottom:684.441506pt;}
.y278{bottom:685.297363pt;}
.y92{bottom:685.409975pt;}
.y2b3{bottom:685.789469pt;}
.ybb{bottom:687.094839pt;}
.y1f8{bottom:687.101506pt;}
.y4f{bottom:687.154228pt;}
.yc{bottom:689.528239pt;}
.y149{bottom:696.574018pt;}
.y277{bottom:696.627363pt;}
.ye2{bottom:697.761506pt;}
.y22d{bottom:697.773506pt;}
.y91{bottom:698.741975pt;}
.yba{bottom:700.433506pt;}
.y4e{bottom:700.486228pt;}
.y1ac{bottom:700.536432pt;}
.y276{bottom:707.957363pt;}
.y148{bottom:709.906018pt;}
.ye1{bottom:711.094839pt;}
.y22c{bottom:711.105506pt;}
.y90{bottom:712.075308pt;}
.y2b2{bottom:712.456136pt;}
.yb9{bottom:713.765506pt;}
.y4d{bottom:713.818228pt;}
.y1ab{bottom:716.123099pt;}
.ya{bottom:716.194906pt;}
.y275{bottom:719.287363pt;}
.yb{bottom:720.861572pt;}
.y147{bottom:723.238018pt;}
.ye0{bottom:724.437506pt;}
.y8f{bottom:725.409975pt;}
.y2b1{bottom:725.789469pt;}
.yb8{bottom:727.097506pt;}
.y4c{bottom:727.152895pt;}
.y274{bottom:730.617363pt;}
.y1aa{bottom:731.709766pt;}
.y8{bottom:732.194906pt;}
.y146{bottom:736.570018pt;}
.y9{bottom:736.861572pt;}
.ydf{bottom:737.769506pt;}
.y8e{bottom:738.741975pt;}
.yb7{bottom:740.429506pt;}
.y4b{bottom:740.484895pt;}
.y273{bottom:741.947363pt;}
.y1a9{bottom:747.296432pt;}
.y145{bottom:749.902018pt;}
.yde{bottom:751.101506pt;}
.y8d{bottom:752.079308pt;}
.y272{bottom:753.277363pt;}
.yb6{bottom:753.761506pt;}
.y2b0{bottom:753.768173pt;}
.y4a{bottom:753.820895pt;}
.y7{bottom:761.517572pt;}
.y1a8{bottom:762.883099pt;}
.y144{bottom:763.235352pt;}
.ydd{bottom:764.433506pt;}
.y271{bottom:764.607363pt;}
.y8c{bottom:765.411308pt;}
.yb5{bottom:767.094839pt;}
.y1f7{bottom:767.100173pt;}
.y49{bottom:767.152895pt;}
.y270{bottom:775.937363pt;}
.y143{bottom:776.568685pt;}
.ydc{bottom:777.765506pt;}
.y1a7{bottom:778.469766pt;}
.y8b{bottom:778.743308pt;}
.yb4{bottom:780.432173pt;}
.y48{bottom:780.484895pt;}
.y26f{bottom:787.267363pt;}
.ydb{bottom:791.097506pt;}
.y8a{bottom:792.075308pt;}
.yb3{bottom:793.764173pt;}
.y47{bottom:793.818228pt;}
.y1a6{bottom:794.056432pt;}
.y26e{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.yda{bottom:804.429506pt;}
.y89{bottom:805.409975pt;}
.y142{bottom:805.916685pt;}
.yb2{bottom:807.096173pt;}
.y46{bottom:807.151561pt;}
.y1a5{bottom:809.643099pt;}
.y26d{bottom:809.927363pt;}
.yd9{bottom:817.761506pt;}
.y88{bottom:818.741975pt;}
.y141{bottom:819.248685pt;}
.yb1{bottom:820.428173pt;}
.y45{bottom:820.484895pt;}
.y26c{bottom:821.257363pt;}
.y1a4{bottom:825.229766pt;}
.y22b{bottom:831.093506pt;}
.yd8{bottom:831.094839pt;}
.y87{bottom:832.080641pt;}
.y140{bottom:832.580685pt;}
.y26b{bottom:832.587363pt;}
.y2af{bottom:833.760173pt;}
.yb0{bottom:833.761506pt;}
.y44{bottom:833.819561pt;}
.y1a3{bottom:840.816432pt;}
.y5{bottom:841.528239pt;}
.y26a{bottom:843.917363pt;}
.yd7{bottom:844.426839pt;}
.y86{bottom:845.412641pt;}
.y13f{bottom:845.912685pt;}
.y2ae{bottom:847.093506pt;}
.y1f6{bottom:847.097506pt;}
.yaf{bottom:847.102839pt;}
.y43{bottom:847.151561pt;}
.y31{bottom:848.326009pt;}
.y269{bottom:855.247363pt;}
.y1a2{bottom:856.403099pt;}
.yd6{bottom:857.760173pt;}
.y85{bottom:858.744641pt;}
.y13e{bottom:859.244685pt;}
.y1f5{bottom:860.429506pt;}
.yae{bottom:860.434839pt;}
.y42{bottom:860.487561pt;}
.y268{bottom:866.577363pt;}
.y1a1{bottom:871.989766pt;}
.y84{bottom:872.076641pt;}
.y13d{bottom:872.576685pt;}
.y1f4{bottom:873.761506pt;}
.yad{bottom:873.766839pt;}
.y22a{bottom:873.769506pt;}
.y41{bottom:873.819561pt;}
.y267{bottom:877.907363pt;}
.y83{bottom:885.408641pt;}
.y13c{bottom:885.908685pt;}
.y1f3{bottom:887.097506pt;}
.yac{bottom:887.098839pt;}
.yd5{bottom:887.100173pt;}
.y229{bottom:887.101506pt;}
.y40{bottom:887.151561pt;}
.y1a0{bottom:887.576432pt;}
.y266{bottom:889.237363pt;}
.y82{bottom:898.740641pt;}
.y13b{bottom:899.240685pt;}
.y1f2{bottom:900.429506pt;}
.yab{bottom:900.430839pt;}
.yd4{bottom:900.432173pt;}
.y228{bottom:900.433506pt;}
.y3f{bottom:900.490228pt;}
.y265{bottom:900.567363pt;}
.y19f{bottom:903.163099pt;}
.y264{bottom:911.897363pt;}
.y81{bottom:912.073975pt;}
.y13a{bottom:912.572685pt;}
.y1f1{bottom:913.761506pt;}
.yaa{bottom:913.762839pt;}
.yd3{bottom:913.764173pt;}
.y227{bottom:913.765506pt;}
.y3e{bottom:913.822228pt;}
.y19e{bottom:918.749766pt;}
.y263{bottom:923.227363pt;}
.y139{bottom:925.904685pt;}
.ya9{bottom:927.094839pt;}
.yd2{bottom:927.096173pt;}
.y226{bottom:927.097506pt;}
.y3d{bottom:927.154228pt;}
.y19d{bottom:934.336432pt;}
.y262{bottom:934.557363pt;}
.y138{bottom:939.236685pt;}
.yd1{bottom:940.428173pt;}
.ya8{bottom:940.429506pt;}
.y3c{bottom:940.486228pt;}
.y80{bottom:941.409975pt;}
.y261{bottom:945.887363pt;}
.y19c{bottom:949.923099pt;}
.y137{bottom:952.568685pt;}
.ya7{bottom:953.761506pt;}
.y3b{bottom:953.818228pt;}
.y7f{bottom:954.741975pt;}
.y260{bottom:957.217363pt;}
.y19b{bottom:965.509766pt;}
.y136{bottom:965.902018pt;}
.ya6{bottom:967.093506pt;}
.y3a{bottom:967.150228pt;}
.y7e{bottom:968.073975pt;}
.y25f{bottom:968.547363pt;}
.y7d{bottom:1013.902507pt;}
.ya5{bottom:1013.996908pt;}
.y39{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h8{height:24.933594pt;}
.h7{height:25.052083pt;}
.h11{height:27.275268pt;}
.h2{height:30.687500pt;}
.h43{height:31.476562pt;}
.h13{height:32.605469pt;}
.h9{height:34.523438pt;}
.h36{height:36.922667pt;}
.h14{height:37.017547pt;}
.h37{height:37.408000pt;}
.h34{height:38.229333pt;}
.h6{height:38.359375pt;}
.h45{height:39.560000pt;}
.h46{height:40.080000pt;}
.h3{height:40.604167pt;}
.h44{height:40.960000pt;}
.h1e{height:42.195312pt;}
.h12{height:43.120594pt;}
.h15{height:43.887578pt;}
.h47{height:44.834667pt;}
.ha{height:47.472000pt;}
.hb{height:47.480898pt;}
.h32{height:47.581450pt;}
.h31{height:47.597938pt;}
.h2d{height:47.603434pt;}
.h30{height:47.608361pt;}
.h2c{height:47.613938pt;}
.h39{height:47.614101pt;}
.h3b{height:47.618946pt;}
.h25{height:47.619271pt;}
.h1d{height:47.619434pt;}
.h40{height:47.624767pt;}
.h3f{height:47.629938pt;}
.h1c{height:47.630101pt;}
.h3c{height:47.630182pt;}
.h16{height:47.630264pt;}
.h1f{height:47.630915pt;}
.h2a{height:47.635271pt;}
.he{height:47.635434pt;}
.h3a{height:47.635454pt;}
.h1a{height:47.635597pt;}
.h21{height:47.636248pt;}
.h2f{height:47.640279pt;}
.h3e{height:47.640605pt;}
.hc{height:47.640767pt;}
.h41{height:47.640806pt;}
.h17{height:47.640930pt;}
.h2e{height:47.645613pt;}
.h24{height:47.645938pt;}
.hf{height:47.646101pt;}
.h18{height:47.646264pt;}
.h20{height:47.646915pt;}
.h33{height:47.650783pt;}
.h38{height:47.650946pt;}
.h26{height:47.651271pt;}
.h1b{height:47.651434pt;}
.h42{height:47.651473pt;}
.h19{height:47.651597pt;}
.h22{height:47.652248pt;}
.h2b{height:47.656605pt;}
.h29{height:48.069333pt;}
.h27{height:48.074667pt;}
.h3d{height:48.080000pt;}
.h28{height:48.090667pt;}
.hd{height:48.096000pt;}
.h23{height:49.152000pt;}
.h4{height:50.755208pt;}
.h35{height:68.096000pt;}
.h10{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.425200pt;}
.x3{left:54.803202pt;}
.xe{left:125.685069pt;}
.x5{left:207.874003pt;}
.x11{left:212.062927pt;}
.xd{left:223.875050pt;}
.x15{left:225.873999pt;}
.x16{left:268.887736pt;}
.x13{left:272.974264pt;}
.x12{left:284.321589pt;}
.xa{left:299.243469pt;}
.x6{left:357.283732pt;}
.xb{left:381.263875pt;}
.x7{left:468.740275pt;}
.x4{left:521.612549pt;}
.xc{left:594.978149pt;}
.x8{left:620.773722pt;}
.x10{left:708.791829pt;}
.x2{left:710.134766pt;}
.x9{left:711.205566pt;}
.x14{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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