
    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_128a498b858c4181b4a30a82.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_a1b0bb7226e8bfafc1655986.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_769914018007d36b1f5517e1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_317310f16ed1c2987a82fde6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_91aa402a7e754aa2070ad6c9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_437b73da9ae64180852e04b1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_748f3424b3b9e7135546009c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2ae83bea440e066b83096958.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200885;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_84bbbc9867fd76b8dd00802d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.411000;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:-20.400879px;}
.v5{vertical-align:-18.359985px;}
.v4{vertical-align:-17.339996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.179979px;}
.v1{vertical-align:20.400879px;}
.ls8a{letter-spacing:-3.150000px;}
.ls87{letter-spacing:-2.790000px;}
.ls65{letter-spacing:-2.385000px;}
.ls89{letter-spacing:-1.755000px;}
.ls66{letter-spacing:-1.395000px;}
.ls8d{letter-spacing:-1.350000px;}
.ls86{letter-spacing:-1.305000px;}
.ls76{letter-spacing:-1.080000px;}
.ls37{letter-spacing:-1.026000px;}
.ls2f{letter-spacing:-0.864000px;}
.ls75{letter-spacing:-0.855000px;}
.ls18{letter-spacing:-0.810000px;}
.ls8b{letter-spacing:-0.765000px;}
.ls59{letter-spacing:-0.756000px;}
.ls70{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.702000px;}
.ls88{letter-spacing:-0.675000px;}
.ls82{letter-spacing:-0.630000px;}
.ls56{letter-spacing:-0.594000px;}
.ls72{letter-spacing:-0.585000px;}
.ls6b{letter-spacing:-0.540000px;}
.ls6c{letter-spacing:-0.495000px;}
.ls64{letter-spacing:-0.450000px;}
.ls8f{letter-spacing:-0.432000px;}
.ls83{letter-spacing:-0.405000px;}
.ls84{letter-spacing:-0.360000px;}
.ls50{letter-spacing:-0.324000px;}
.ls68{letter-spacing:-0.315000px;}
.ls33{letter-spacing:-0.300000px;}
.ls2e{letter-spacing:-0.270000px;}
.ls62{letter-spacing:-0.240000px;}
.ls6d{letter-spacing:-0.225000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls67{letter-spacing:-0.180000px;}
.ls30{letter-spacing:-0.175500px;}
.ls3e{letter-spacing:-0.162000px;}
.ls81{letter-spacing:-0.135000px;}
.ls31{letter-spacing:-0.108000px;}
.ls57{letter-spacing:-0.105300px;}
.ls21{letter-spacing:-0.102000px;}
.ls71{letter-spacing:-0.090000px;}
.ls58{letter-spacing:-0.070200px;}
.ls60{letter-spacing:-0.060000px;}
.ls32{letter-spacing:-0.054000px;}
.ls6a{letter-spacing:-0.045000px;}
.ls4c{letter-spacing:-0.035100px;}
.ls16{letter-spacing:0.000000px;}
.lse{letter-spacing:0.003449px;}
.ls5{letter-spacing:0.013223px;}
.ls4{letter-spacing:0.013773px;}
.ls2{letter-spacing:0.013864px;}
.ls3{letter-spacing:0.013956px;}
.lsd{letter-spacing:0.016359px;}
.ls52{letter-spacing:0.035100px;}
.ls63{letter-spacing:0.045000px;}
.ls15{letter-spacing:0.051000px;}
.ls27{letter-spacing:0.054000px;}
.ls26{letter-spacing:0.060000px;}
.ls7a{letter-spacing:0.067500px;}
.ls4f{letter-spacing:0.070200px;}
.ls6e{letter-spacing:0.090000px;}
.ls47{letter-spacing:0.105300px;}
.ls8{letter-spacing:0.107933px;}
.ls1a{letter-spacing:0.108000px;}
.ls46{letter-spacing:0.122398px;}
.ls6{letter-spacing:0.127708px;}
.ls10{letter-spacing:0.129426px;}
.ls7d{letter-spacing:0.134985px;}
.ls74{letter-spacing:0.135000px;}
.ls40{letter-spacing:0.140400px;}
.ls7{letter-spacing:0.162000px;}
.ls44{letter-spacing:0.175500px;}
.ls7f{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.184540px;}
.ls77{letter-spacing:0.202515px;}
.lsf{letter-spacing:0.204000px;}
.ls4d{letter-spacing:0.210600px;}
.ls19{letter-spacing:0.216000px;}
.ls5a{letter-spacing:0.225000px;}
.ls43{letter-spacing:0.245700px;}
.ls39{letter-spacing:0.253797px;}
.ls3a{letter-spacing:0.259203px;}
.ls45{letter-spacing:0.269432px;}
.ls9{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.273530px;}
.ls48{letter-spacing:0.275395px;}
.ls3f{letter-spacing:0.280800px;}
.ls55{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.306000px;}
.ls6f{letter-spacing:0.315000px;}
.ls4e{letter-spacing:0.315900px;}
.ls42{letter-spacing:0.315902px;}
.ls1e{letter-spacing:0.324000px;}
.ls7e{letter-spacing:0.346490px;}
.ls41{letter-spacing:0.351000px;}
.ls5e{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.364098px;}
.ls29{letter-spacing:0.378000px;}
.ls53{letter-spacing:0.386100px;}
.ls85{letter-spacing:0.405000px;}
.ls2c{letter-spacing:0.421200px;}
.ls23{letter-spacing:0.428551px;}
.ls25{letter-spacing:0.432000px;}
.ls5b{letter-spacing:0.450000px;}
.ls54{letter-spacing:0.456300px;}
.ls7b{letter-spacing:0.458948px;}
.ls20{letter-spacing:0.459000px;}
.ls7c{letter-spacing:0.472500px;}
.ls61{letter-spacing:0.480000px;}
.ls36{letter-spacing:0.486000px;}
.ls73{letter-spacing:0.495000px;}
.lsb{letter-spacing:0.540000px;}
.ls79{letter-spacing:0.585000px;}
.ls38{letter-spacing:0.592247px;}
.ls49{letter-spacing:0.593998px;}
.ls28{letter-spacing:0.594000px;}
.ls51{letter-spacing:0.596700px;}
.ls69{letter-spacing:0.630000px;}
.lsc{letter-spacing:0.642967px;}
.ls24{letter-spacing:0.648000px;}
.ls3c{letter-spacing:0.702000px;}
.ls2b{letter-spacing:0.756000px;}
.ls5c{letter-spacing:0.765000px;}
.ls80{letter-spacing:0.783026px;}
.ls1f{letter-spacing:0.810000px;}
.ls8c{letter-spacing:0.864000px;}
.ls78{letter-spacing:0.900000px;}
.ls14{letter-spacing:0.918000px;}
.ls1d{letter-spacing:0.972000px;}
.ls35{letter-spacing:1.026000px;}
.ls34{letter-spacing:1.134000px;}
.ls4a{letter-spacing:1.150187px;}
.ls2a{letter-spacing:1.188000px;}
.ls1b{letter-spacing:1.296000px;}
.ls3b{letter-spacing:1.320000px;}
.ls8e{letter-spacing:1.350000px;}
.ls1c{letter-spacing:1.512000px;}
.ls3d{letter-spacing:1.566000px;}
.ls4b{letter-spacing:1.620000px;}
.ls5d{letter-spacing:1.845000px;}
.ls0{letter-spacing:2.592000px;}
.ls22{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls5f{letter-spacing:6.120000px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws27{word-spacing:-14.700000px;}
.ws29{word-spacing:-13.596000px;}
.ws2e{word-spacing:-13.500000px;}
.ws49{word-spacing:-13.176000px;}
.ws4c{word-spacing:-12.906000px;}
.ws2c{word-spacing:-12.798000px;}
.ws4b{word-spacing:-12.690000px;}
.ws50{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.wsc5{word-spacing:-12.420000px;}
.ws2d{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws2a{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws4a{word-spacing:-12.150000px;}
.ws4{word-spacing:-11.556000px;}
.wsb0{word-spacing:-11.250000px;}
.wsc3{word-spacing:-10.485000px;}
.ws9f{word-spacing:-10.440000px;}
.ws7f{word-spacing:-10.395000px;}
.ws86{word-spacing:-10.305000px;}
.wsb7{word-spacing:-10.260000px;}
.ws7{word-spacing:-10.251000px;}
.ws87{word-spacing:-10.215000px;}
.ws8{word-spacing:-10.200000px;}
.wsad{word-spacing:-10.125000px;}
.ws7e{word-spacing:-9.990000px;}
.wsae{word-spacing:-9.945000px;}
.wsa7{word-spacing:-9.900000px;}
.ws83{word-spacing:-9.855000px;}
.ws82{word-spacing:-9.675000px;}
.wsb9{word-spacing:-9.630000px;}
.ws80{word-spacing:-9.585000px;}
.wsb1{word-spacing:-9.540000px;}
.wsbe{word-spacing:-9.495000px;}
.ws84{word-spacing:-9.450000px;}
.ws85{word-spacing:-9.225000px;}
.wsaf{word-spacing:-9.000000px;}
.wsc4{word-spacing:-8.955000px;}
.ws81{word-spacing:-8.910000px;}
.ws68{word-spacing:-8.564400px;}
.ws6b{word-spacing:-8.424000px;}
.ws28{word-spacing:-8.388900px;}
.ws6a{word-spacing:-8.353800px;}
.ws4f{word-spacing:-8.318700px;}
.ws65{word-spacing:-8.283600px;}
.ws4d{word-spacing:-8.248500px;}
.ws5f{word-spacing:-8.213400px;}
.ws64{word-spacing:-8.178300px;}
.ws60{word-spacing:-8.143200px;}
.ws4e{word-spacing:-8.108100px;}
.ws67{word-spacing:-8.073000px;}
.ws66{word-spacing:-8.037900px;}
.ws69{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws63{word-spacing:-7.932600px;}
.wsac{word-spacing:-7.920000px;}
.ws75{word-spacing:-7.897500px;}
.ws74{word-spacing:-7.862400px;}
.ws2b{word-spacing:-7.792200px;}
.ws6{word-spacing:-6.630000px;}
.ws88{word-spacing:-6.120000px;}
.ws47{word-spacing:-5.508000px;}
.wsd{word-spacing:-5.340000px;}
.ws8b{word-spacing:-4.224000px;}
.wsc7{word-spacing:-3.960000px;}
.wse{word-spacing:-3.840000px;}
.wsb{word-spacing:-3.276000px;}
.wsf{word-spacing:-3.000000px;}
.ws38{word-spacing:-1.944000px;}
.ws1c{word-spacing:-1.890000px;}
.ws89{word-spacing:-1.860000px;}
.ws32{word-spacing:-1.836000px;}
.ws5b{word-spacing:-1.782000px;}
.ws58{word-spacing:-1.728000px;}
.ws76{word-spacing:-1.674000px;}
.ws77{word-spacing:-1.620000px;}
.wsb2{word-spacing:-1.575000px;}
.ws79{word-spacing:-1.566000px;}
.ws23{word-spacing:-1.530000px;}
.ws19{word-spacing:-1.512000px;}
.ws42{word-spacing:-1.458000px;}
.ws7b{word-spacing:-1.386000px;}
.ws8e{word-spacing:-1.350000px;}
.wsb4{word-spacing:-1.305000px;}
.ws6f{word-spacing:-1.296000px;}
.ws26{word-spacing:-1.275000px;}
.wsc{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.242000px;}
.ws48{word-spacing:-1.188000px;}
.wsb5{word-spacing:-1.170000px;}
.ws10{word-spacing:-1.134000px;}
.wsa2{word-spacing:-1.125000px;}
.ws57{word-spacing:-1.080000px;}
.ws8d{word-spacing:-1.035000px;}
.ws6e{word-spacing:-1.026000px;}
.ws95{word-spacing:-0.990000px;}
.ws36{word-spacing:-0.972000px;}
.wsa{word-spacing:-0.960000px;}
.ws25{word-spacing:-0.918000px;}
.ws12{word-spacing:-0.864000px;}
.ws92{word-spacing:-0.855000px;}
.ws78{word-spacing:-0.810000px;}
.wsa5{word-spacing:-0.765000px;}
.ws54{word-spacing:-0.756000px;}
.ws9e{word-spacing:-0.720000px;}
.ws55{word-spacing:-0.702000px;}
.ws7c{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.648000px;}
.ws33{word-spacing:-0.600000px;}
.ws11{word-spacing:-0.594000px;}
.ws96{word-spacing:-0.585000px;}
.ws44{word-spacing:-0.540000px;}
.ws1e{word-spacing:-0.510000px;}
.ws8c{word-spacing:-0.495000px;}
.ws3d{word-spacing:-0.486000px;}
.ws20{word-spacing:-0.459000px;}
.ws34{word-spacing:-0.432000px;}
.wsa9{word-spacing:-0.405000px;}
.ws7a{word-spacing:-0.386100px;}
.ws3e{word-spacing:-0.378000px;}
.wsa3{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.324000px;}
.ws97{word-spacing:-0.315000px;}
.ws24{word-spacing:-0.306000px;}
.ws7d{word-spacing:-0.300000px;}
.ws61{word-spacing:-0.280800px;}
.ws43{word-spacing:-0.270000px;}
.ws62{word-spacing:-0.245700px;}
.wsbf{word-spacing:-0.225000px;}
.ws31{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.204000px;}
.ws9b{word-spacing:-0.180000px;}
.ws5c{word-spacing:-0.162000px;}
.ws70{word-spacing:-0.140400px;}
.wsaa{word-spacing:-0.135000px;}
.ws8a{word-spacing:-0.120000px;}
.ws46{word-spacing:-0.108000px;}
.wsba{word-spacing:-0.090000px;}
.ws3b{word-spacing:-0.054000px;}
.ws99{word-spacing:-0.045000px;}
.ws9{word-spacing:0.000000px;}
.wsa8{word-spacing:0.045000px;}
.ws21{word-spacing:0.051000px;}
.ws39{word-spacing:0.054000px;}
.ws9c{word-spacing:0.090000px;}
.ws22{word-spacing:0.102000px;}
.ws3c{word-spacing:0.108000px;}
.wsb3{word-spacing:0.135000px;}
.ws3a{word-spacing:0.162000px;}
.ws98{word-spacing:0.180000px;}
.ws18{word-spacing:0.216000px;}
.wsab{word-spacing:0.225000px;}
.ws35{word-spacing:0.270000px;}
.ws37{word-spacing:0.300000px;}
.ws9a{word-spacing:0.315000px;}
.ws5d{word-spacing:0.324000px;}
.ws90{word-spacing:0.360000px;}
.ws5a{word-spacing:0.378000px;}
.wsc2{word-spacing:0.405000px;}
.ws30{word-spacing:0.432000px;}
.ws91{word-spacing:0.450000px;}
.ws51{word-spacing:0.486000px;}
.ws94{word-spacing:0.495000px;}
.ws73{word-spacing:0.540000px;}
.ws9d{word-spacing:0.585000px;}
.wsc8{word-spacing:0.594000px;}
.wsbd{word-spacing:0.630000px;}
.ws2f{word-spacing:0.648000px;}
.ws13{word-spacing:0.702000px;}
.wsbb{word-spacing:0.720000px;}
.ws1d{word-spacing:0.810000px;}
.ws93{word-spacing:0.855000px;}
.wsc1{word-spacing:0.900000px;}
.wsa1{word-spacing:0.945000px;}
.ws6d{word-spacing:0.972000px;}
.wsb8{word-spacing:0.990000px;}
.ws52{word-spacing:1.026000px;}
.ws8f{word-spacing:1.035000px;}
.ws72{word-spacing:1.080000px;}
.ws71{word-spacing:1.134000px;}
.ws59{word-spacing:1.188000px;}
.ws56{word-spacing:1.242000px;}
.wsb6{word-spacing:1.260000px;}
.ws1a{word-spacing:1.296000px;}
.ws41{word-spacing:1.350000px;}
.wsa6{word-spacing:1.395000px;}
.ws40{word-spacing:1.404000px;}
.wsa0{word-spacing:1.440000px;}
.wsa4{word-spacing:1.530000px;}
.ws3f{word-spacing:1.620000px;}
.ws45{word-spacing:1.674000px;}
.wsbc{word-spacing:1.755000px;}
.wsc6{word-spacing:2.052000px;}
.ws5e{word-spacing:2.100000px;}
.ws16{word-spacing:2.106000px;}
.wsc0{word-spacing:2.115000px;}
.ws17{word-spacing:2.538000px;}
.ws53{word-spacing:2.592000px;}
.ws6c{word-spacing:2.754000px;}
._e{margin-left:-14.804472px;}
._17{margin-left:-11.520000px;}
._1a{margin-left:-10.440000px;}
._15{margin-left:-9.360000px;}
._b{margin-left:-8.227789px;}
._6{margin-left:-6.093902px;}
._4{margin-left:-4.823994px;}
._1{margin-left:-3.198000px;}
._0{margin-left:-1.776011px;}
._5{width:1.470781px;}
._7{width:3.203331px;}
._2{width:4.219138px;}
._18{width:5.286009px;}
._13{width:6.681010px;}
._11{width:8.145000px;}
._12{width:10.035002px;}
._19{width:11.085918px;}
._10{width:12.375000px;}
._14{width:13.500000px;}
._c{width:15.281992px;}
._16{width:17.460001px;}
._d{width:39.720107px;}
._a{width:41.088108px;}
._3{width:42.915999px;}
._9{width:44.310026px;}
._8{width:48.007132px;}
._f{width:49.410601px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y32{bottom:68.319899px;}
.yc1{bottom:68.551502px;}
.y77{bottom:68.606105px;}
.yd4{bottom:80.055303px;}
.y31{bottom:83.313899px;}
.yc0{bottom:83.550001px;}
.y121{bottom:83.552997px;}
.y76{bottom:83.604604px;}
.y1ec{bottom:84.089515px;}
.y19c{bottom:89.737513px;}
.yd3{bottom:95.053802px;}
.y1eb{bottom:96.835765px;}
.y82{bottom:97.993966px;}
.y30{bottom:98.307899px;}
.y120{bottom:98.551496px;}
.y75{bottom:98.603103px;}
.y19b{bottom:102.483763px;}
.y15a{bottom:104.796298px;}
.y1ea{bottom:109.582015px;}
.yd2{bottom:110.052302px;}
.ybf{bottom:112.386017px;}
.y81{bottom:112.992465px;}
.y2f{bottom:113.307899px;}
.y11f{bottom:113.551496px;}
.y74{bottom:113.601602px;}
.y19a{bottom:115.230013px;}
.y159{bottom:119.794798px;}
.y1e9{bottom:122.328265px;}
.yd1{bottom:125.050801px;}
.ybe{bottom:127.384516px;}
.y199{bottom:127.976263px;}
.y80{bottom:127.990965px;}
.y2e{bottom:128.307899px;}
.y11e{bottom:128.551496px;}
.y73{bottom:128.600101px;}
.y158{bottom:134.794798px;}
.y1e8{bottom:135.074515px;}
.yd0{bottom:140.049300px;}
.y198{bottom:140.722513px;}
.ybd{bottom:142.383015px;}
.y7f{bottom:142.989464px;}
.y2d{bottom:143.307899px;}
.y11d{bottom:143.552997px;}
.y72{bottom:143.598601px;}
.y1e7{bottom:147.820766px;}
.y157{bottom:149.793297px;}
.y197{bottom:153.468763px;}
.ycf{bottom:155.047799px;}
.ybc{bottom:157.381514px;}
.y7e{bottom:157.987963px;}
.y2c{bottom:158.307899px;}
.y11c{bottom:158.551496px;}
.y71{bottom:158.597100px;}
.y1e6{bottom:160.567016px;}
.y196{bottom:166.215013px;}
.yce{bottom:170.046298px;}
.ybb{bottom:172.380014px;}
.y7d{bottom:172.986462px;}
.y1e5{bottom:173.313266px;}
.y11b{bottom:173.552997px;}
.y70{bottom:173.595599px;}
.y2b{bottom:177.636898px;}
.y195{bottom:178.961263px;}
.y156{bottom:182.797799px;}
.ycd{bottom:185.044798px;}
.y1e4{bottom:186.059516px;}
.yba{bottom:187.378513px;}
.y7c{bottom:187.984961px;}
.y11a{bottom:188.551496px;}
.y6f{bottom:188.594098px;}
.y194{bottom:191.707514px;}
.y155{bottom:197.796298px;}
.y1e3{bottom:198.805766px;}
.ycc{bottom:200.044798px;}
.yb9{bottom:202.377012px;}
.y7b{bottom:202.983461px;}
.y119{bottom:203.551496px;}
.y6e{bottom:203.592597px;}
.y193{bottom:204.453764px;}
.y1e2{bottom:211.552016px;}
.y154{bottom:212.794798px;}
.ycb{bottom:215.044798px;}
.y192{bottom:217.200014px;}
.yb8{bottom:217.380014px;}
.y7a{bottom:217.981960px;}
.y118{bottom:218.559000px;}
.y6d{bottom:218.591096px;}
.y1e1{bottom:224.298266px;}
.y2a{bottom:227.185812px;}
.y153{bottom:227.797799px;}
.y191{bottom:229.946264px;}
.yca{bottom:230.053802px;}
.yb7{bottom:232.378513px;}
.y79{bottom:232.980459px;}
.y117{bottom:233.557499px;}
.y6c{bottom:233.589596px;}
.y1e0{bottom:237.044516px;}
.y29{bottom:242.188813px;}
.y190{bottom:242.692514px;}
.y152{bottom:242.796298px;}
.yc9{bottom:245.052302px;}
.yb6{bottom:247.377012px;}
.y78{bottom:247.978958px;}
.y116{bottom:248.555999px;}
.y6b{bottom:248.588095px;}
.y1df{bottom:249.790766px;}
.y18f{bottom:255.438764px;}
.y28{bottom:257.187313px;}
.y151{bottom:257.794798px;}
.yc8{bottom:260.050801px;}
.yb5{bottom:262.378513px;}
.y1de{bottom:262.537017px;}
.y115{bottom:263.554498px;}
.y6a{bottom:263.586594px;}
.y18e{bottom:268.185014px;}
.y27{bottom:272.185812px;}
.y150{bottom:272.793297px;}
.yc7{bottom:275.049300px;}
.y1dd{bottom:275.283267px;}
.yb4{bottom:277.377012px;}
.y114{bottom:278.552997px;}
.y69{bottom:278.585093px;}
.y18d{bottom:280.931264px;}
.y26{bottom:287.187313px;}
.y14f{bottom:287.793297px;}
.y1dc{bottom:288.029517px;}
.yc6{bottom:290.047799px;}
.yb3{bottom:292.380014px;}
.y113{bottom:293.551496px;}
.y18c{bottom:293.677514px;}
.y1db{bottom:300.775767px;}
.y25{bottom:302.185812px;}
.yc5{bottom:305.046298px;}
.y18b{bottom:306.423765px;}
.yb2{bottom:307.378513px;}
.y112{bottom:308.551496px;}
.y68{bottom:309.648595px;}
.y1da{bottom:313.522017px;}
.y24{bottom:317.191815px;}
.y18a{bottom:319.170015px;}
.yc4{bottom:320.044798px;}
.y14e{bottom:320.800824px;}
.yb1{bottom:322.377012px;}
.y111{bottom:323.551496px;}
.y67{bottom:324.647094px;}
.y1d9{bottom:326.268267px;}
.y189{bottom:331.916265px;}
.y23{bottom:332.190314px;}
.yc3{bottom:335.044798px;}
.y14d{bottom:335.799323px;}
.yb0{bottom:337.437307px;}
.y110{bottom:338.552997px;}
.y1d8{bottom:339.014517px;}
.y66{bottom:339.645593px;}
.y188{bottom:344.662515px;}
.y22{bottom:347.188813px;}
.yc2{bottom:350.043297px;}
.y14c{bottom:350.797822px;}
.y1d7{bottom:351.760767px;}
.yaf{bottom:352.435806px;}
.y10f{bottom:353.551496px;}
.y65{bottom:354.644092px;}
.y187{bottom:357.408765px;}
.y21{bottom:362.187313px;}
.y1d6{bottom:364.507018px;}
.y14b{bottom:365.796321px;}
.yae{bottom:367.434305px;}
.y10e{bottom:368.551496px;}
.y64{bottom:369.642591px;}
.y186{bottom:370.155015px;}
.y20{bottom:377.185812px;}
.y1d5{bottom:377.253268px;}
.y14a{bottom:380.794821px;}
.yad{bottom:382.432804px;}
.y185{bottom:382.901265px;}
.y10d{bottom:383.551519px;}
.y63{bottom:384.641091px;}
.y1d4{bottom:389.999518px;}
.y1f{bottom:392.188813px;}
.y184{bottom:395.647515px;}
.y149{bottom:395.793320px;}
.yac{bottom:397.431304px;}
.y10c{bottom:398.551519px;}
.y62{bottom:399.639590px;}
.y1d3{bottom:402.745768px;}
.ye0{bottom:403.215438px;}
.y1e{bottom:407.187313px;}
.y183{bottom:408.393765px;}
.y148{bottom:410.793320px;}
.yab{bottom:412.429803px;}
.y10b{bottom:413.553020px;}
.y61{bottom:414.638089px;}
.y1d2{bottom:415.492018px;}
.ydf{bottom:418.213937px;}
.y182{bottom:421.140016px;}
.y1d{bottom:422.185812px;}
.yaa{bottom:427.428302px;}
.y1d1{bottom:428.238268px;}
.y10a{bottom:428.551519px;}
.yde{bottom:433.212436px;}
.y181{bottom:433.886266px;}
.y1c{bottom:437.229313px;}
.y1d0{bottom:440.984518px;}
.ya9{bottom:442.426801px;}
.y109{bottom:443.553020px;}
.y147{bottom:443.797822px;}
.y60{bottom:445.701591px;}
.y180{bottom:446.632516px;}
.ydd{bottom:448.210935px;}
.y1b{bottom:452.227812px;}
.y1cf{bottom:453.730768px;}
.ya8{bottom:457.425300px;}
.y108{bottom:458.551519px;}
.y146{bottom:458.796321px;}
.y17f{bottom:459.378766px;}
.y5f{bottom:460.700090px;}
.ydc{bottom:463.209434px;}
.y1ce{bottom:466.477018px;}
.y1a{bottom:467.226311px;}
.y17e{bottom:472.125016px;}
.ya7{bottom:472.423800px;}
.y107{bottom:473.562025px;}
.y145{bottom:473.794821px;}
.y5e{bottom:475.698589px;}
.ydb{bottom:478.207934px;}
.y1cd{bottom:479.223269px;}
.y17d{bottom:484.871266px;}
.ya6{bottom:487.422299px;}
.y106{bottom:488.560524px;}
.y144{bottom:488.794821px;}
.y5d{bottom:490.697088px;}
.y1cc{bottom:491.969519px;}
.yda{bottom:493.206433px;}
.y20b{bottom:493.306827px;}
.y17c{bottom:497.617516px;}
.ya5{bottom:502.420798px;}
.y105{bottom:503.559023px;}
.y143{bottom:503.796321px;}
.y1cb{bottom:504.715769px;}
.y5c{bottom:505.695587px;}
.yd9{bottom:508.204932px;}
.y20a{bottom:508.305326px;}
.y17b{bottom:510.363766px;}
.y19{bottom:514.476311px;}
.ya4{bottom:517.419297px;}
.y1ca{bottom:517.462019px;}
.y104{bottom:518.557522px;}
.y142{bottom:518.794821px;}
.y5b{bottom:520.694086px;}
.y17a{bottom:523.110017px;}
.yd8{bottom:523.203431px;}
.y209{bottom:523.303825px;}
.y1c9{bottom:530.208269px;}
.y18{bottom:530.973311px;}
.ya3{bottom:532.417796px;}
.y103{bottom:533.556022px;}
.y141{bottom:533.796321px;}
.y5a{bottom:535.692586px;}
.y179{bottom:535.856267px;}
.yd7{bottom:538.201930px;}
.y208{bottom:538.302325px;}
.y1c8{bottom:542.954519px;}
.ya2{bottom:547.416296px;}
.y17{bottom:547.470311px;}
.y102{bottom:548.554521px;}
.y178{bottom:548.602517px;}
.y140{bottom:548.794821px;}
.y59{bottom:550.691085px;}
.yd6{bottom:553.200430px;}
.y207{bottom:553.300824px;}
.y1c7{bottom:555.700769px;}
.y177{bottom:561.348767px;}
.ya1{bottom:562.414795px;}
.y101{bottom:563.553020px;}
.y13f{bottom:563.794821px;}
.y16{bottom:563.967311px;}
.y58{bottom:565.689584px;}
.yd5{bottom:568.198929px;}
.y206{bottom:568.299323px;}
.y1c6{bottom:568.447019px;}
.y176{bottom:574.095017px;}
.ya0{bottom:577.413294px;}
.y100{bottom:578.551519px;}
.y13e{bottom:578.794821px;}
.y15{bottom:580.464311px;}
.y57{bottom:580.688083px;}
.y1c5{bottom:581.193269px;}
.y205{bottom:583.297822px;}
.y175{bottom:586.841267px;}
.y9f{bottom:592.411793px;}
.yff{bottom:593.553020px;}
.y13d{bottom:593.796321px;}
.y1c4{bottom:593.939520px;}
.y56{bottom:595.686582px;}
.y14{bottom:596.961311px;}
.y204{bottom:598.296321px;}
.y174{bottom:599.587517px;}
.y1c3{bottom:606.685770px;}
.yfe{bottom:608.551519px;}
.y13c{bottom:608.794821px;}
.y55{bottom:610.685082px;}
.y173{bottom:612.333767px;}
.y203{bottom:613.294821px;}
.y13{bottom:613.458311px;}
.y1c2{bottom:619.432020px;}
.yfd{bottom:623.553020px;}
.y13b{bottom:623.799323px;}
.y9e{bottom:623.826292px;}
.y172{bottom:625.080017px;}
.y54{bottom:625.683581px;}
.y202{bottom:628.293320px;}
.y12{bottom:629.955311px;}
.y1c1{bottom:632.178270px;}
.y171{bottom:637.826268px;}
.yfc{bottom:638.551519px;}
.y13a{bottom:638.797822px;}
.y9d{bottom:638.824791px;}
.y53{bottom:640.682080px;}
.y1c0{bottom:644.924520px;}
.y11{bottom:646.452311px;}
.y201{bottom:650.047822px;}
.y170{bottom:650.572518px;}
.yfb{bottom:653.551519px;}
.y139{bottom:653.796321px;}
.y9c{bottom:653.823290px;}
.y52{bottom:655.680579px;}
.y1bf{bottom:657.670770px;}
.y10{bottom:662.949311px;}
.y16f{bottom:663.318768px;}
.y200{bottom:665.046321px;}
.yfa{bottom:668.563526px;}
.y138{bottom:668.794821px;}
.y9b{bottom:668.821789px;}
.y1be{bottom:670.417020px;}
.y51{bottom:670.679078px;}
.y16e{bottom:676.065018px;}
.yf{bottom:679.446311px;}
.y1bd{bottom:683.163270px;}
.yf9{bottom:683.562025px;}
.y137{bottom:683.796321px;}
.y9a{bottom:683.820288px;}
.y1ff{bottom:686.794821px;}
.y16d{bottom:688.811268px;}
.y1bc{bottom:695.909520px;}
.ye{bottom:695.943311px;}
.yf8{bottom:698.560524px;}
.y136{bottom:698.794821px;}
.y99{bottom:698.818788px;}
.y16c{bottom:701.557518px;}
.y50{bottom:701.742580px;}
.y1fe{bottom:708.543320px;}
.y1bb{bottom:708.655771px;}
.yd{bottom:712.440311px;}
.yf7{bottom:713.559023px;}
.y135{bottom:713.794821px;}
.y98{bottom:713.817287px;}
.y16b{bottom:714.303768px;}
.y4f{bottom:716.741079px;}
.y1ba{bottom:721.402021px;}
.y1fd{bottom:723.543320px;}
.y16a{bottom:727.050018px;}
.yf6{bottom:728.557522px;}
.y134{bottom:728.800778px;}
.y97{bottom:728.815786px;}
.yc{bottom:728.937311px;}
.y4e{bottom:731.739578px;}
.y1b9{bottom:734.148271px;}
.y169{bottom:739.800018px;}
.yf5{bottom:743.556022px;}
.y133{bottom:743.799277px;}
.y96{bottom:743.814285px;}
.yb{bottom:745.434311px;}
.y1b8{bottom:746.894521px;}
.y1fc{bottom:750.546276px;}
.y35{bottom:757.151396px;}
.yf4{bottom:758.554521px;}
.y132{bottom:758.797776px;}
.y95{bottom:758.812784px;}
.y1b7{bottom:759.640771px;}
.y4d{bottom:760.284276px;}
.y1fb{bottom:765.544775px;}
.y168{bottom:770.601634px;}
.y1b6{bottom:772.387021px;}
.yf3{bottom:773.553020px;}
.y131{bottom:773.796276px;}
.y94{bottom:773.811284px;}
.y4c{bottom:775.282775px;}
.y9{bottom:775.434265px;}
.y34{bottom:778.150646px;}
.ya{bottom:780.534485px;}
.y1fa{bottom:780.543274px;}
.y1b5{bottom:785.133271px;}
.y167{bottom:785.600134px;}
.yf2{bottom:788.551519px;}
.y130{bottom:788.794775px;}
.y93{bottom:788.809783px;}
.y4b{bottom:790.281274px;}
.y7{bottom:793.434265px;}
.y1f9{bottom:795.543274px;}
.y1b4{bottom:797.879521px;}
.y8{bottom:798.534485px;}
.y33{bottom:799.149895px;}
.y166{bottom:800.598633px;}
.yf1{bottom:803.566527px;}
.y12f{bottom:803.794775px;}
.y92{bottom:803.808282px;}
.y4a{bottom:805.279773px;}
.y1b3{bottom:810.625771px;}
.y165{bottom:815.598633px;}
.yf0{bottom:818.565026px;}
.y12e{bottom:818.796276px;}
.y91{bottom:818.806781px;}
.y49{bottom:820.278272px;}
.y1f8{bottom:822.558282px;}
.y1b2{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.yef{bottom:833.563526px;}
.y12d{bottom:833.794775px;}
.y90{bottom:833.805280px;}
.y48{bottom:835.276772px;}
.y1b1{bottom:836.118272px;}
.y1f7{bottom:837.556781px;}
.y164{bottom:846.398840px;}
.yee{bottom:848.562025px;}
.y8f{bottom:848.803780px;}
.y12c{bottom:848.806781px;}
.y1b0{bottom:848.864522px;}
.y47{bottom:850.275271px;}
.y1f6{bottom:852.555280px;}
.y163{bottom:861.398840px;}
.y1af{bottom:861.610772px;}
.yed{bottom:863.560524px;}
.y8e{bottom:863.802279px;}
.y12b{bottom:863.805280px;}
.y46{bottom:865.273770px;}
.y1f5{bottom:867.553780px;}
.y5{bottom:871.428264px;}
.y1ae{bottom:874.357022px;}
.y162{bottom:876.397339px;}
.yec{bottom:878.559023px;}
.y8d{bottom:878.800778px;}
.y12a{bottom:878.803780px;}
.y45{bottom:880.272269px;}
.y1f4{bottom:882.552279px;}
.y1ad{bottom:887.103272px;}
.yeb{bottom:893.557522px;}
.y8c{bottom:893.799277px;}
.y129{bottom:893.802279px;}
.y44{bottom:895.270768px;}
.y1f3{bottom:897.550778px;}
.y1ac{bottom:899.849522px;}
.y161{bottom:907.198955px;}
.yea{bottom:908.556022px;}
.y8b{bottom:908.797776px;}
.y128{bottom:908.800778px;}
.y43{bottom:910.269267px;}
.y1f2{bottom:912.549277px;}
.y1ab{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y160{bottom:922.197454px;}
.ye9{bottom:923.554521px;}
.y8a{bottom:923.796276px;}
.y127{bottom:923.799277px;}
.y42{bottom:925.267767px;}
.y1aa{bottom:925.342022px;}
.y36{bottom:926.409576px;}
.y1f1{bottom:927.547776px;}
.y15f{bottom:937.195953px;}
.y1a9{bottom:938.088273px;}
.ye8{bottom:938.553020px;}
.y89{bottom:938.794775px;}
.y126{bottom:938.797776px;}
.y41{bottom:940.267767px;}
.y1f0{bottom:942.546276px;}
.y1a8{bottom:950.834523px;}
.ye7{bottom:953.551519px;}
.y125{bottom:953.796276px;}
.y88{bottom:953.805280px;}
.y40{bottom:955.266266px;}
.y1ef{bottom:957.544775px;}
.y1a7{bottom:963.580773px;}
.y15e{bottom:967.997569px;}
.ye6{bottom:968.551519px;}
.y124{bottom:968.794775px;}
.y87{bottom:968.803780px;}
.y3f{bottom:970.266266px;}
.y1ee{bottom:972.543274px;}
.y1a6{bottom:976.327023px;}
.y15d{bottom:982.996069px;}
.ye5{bottom:983.553020px;}
.y123{bottom:983.794775px;}
.y86{bottom:983.802279px;}
.y1ed{bottom:987.543274px;}
.y1a5{bottom:989.073273px;}
.y15c{bottom:997.996069px;}
.ye4{bottom:998.551519px;}
.y3e{bottom:998.797776px;}
.y85{bottom:998.800778px;}
.y1a4{bottom:1001.819523px;}
.y15b{bottom:1012.994568px;}
.ye3{bottom:1013.550018px;}
.y3d{bottom:1013.796276px;}
.y84{bottom:1013.799277px;}
.y1a3{bottom:1014.565773px;}
.y1a2{bottom:1027.312023px;}
.ye2{bottom:1028.550018px;}
.y3c{bottom:1028.794775px;}
.y83{bottom:1028.797776px;}
.y1a1{bottom:1040.058273px;}
.y3b{bottom:1043.796276px;}
.y122{bottom:1043.797776px;}
.y1a0{bottom:1052.804524px;}
.y3a{bottom:1058.794775px;}
.ye1{bottom:1058.796276px;}
.y19f{bottom:1065.550774px;}
.y39{bottom:1073.794775px;}
.y19e{bottom:1078.297024px;}
.y38{bottom:1088.793274px;}
.y19d{bottom:1091.043274px;}
.y37{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.he{height:23.842749px;}
.h8{height:28.050293px;}
.h12{height:35.394000px;}
.h11{height:36.669000px;}
.h10{height:36.681152px;}
.ha{height:38.826000px;}
.hb{height:38.838867px;}
.hf{height:41.158746px;}
.h2{height:43.140000px;}
.h4{height:44.218500px;}
.h18{height:44.505000px;}
.h16{height:45.090000px;}
.h3{height:45.744000px;}
.h17{height:46.080000px;}
.h14{height:47.454000px;}
.h19{height:47.469727px;}
.h7{height:48.451172px;}
.h9{height:48.451174px;}
.hc{height:53.406000px;}
.hd{height:54.108000px;}
.h15{height:55.296000px;}
.h13{height:77.652000px;}
.h5{height:112.164000px;}
.h6{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:14.083643px;}
.x2{left:61.191450px;}
.x9{left:140.952747px;}
.x4{left:233.456406px;}
.x7{left:251.452941px;}
.xc{left:300.594589px;}
.x5{left:582.470535px;}
.x3{left:584.586594px;}
.x6{left:657.489578px;}
.xb{left:816.003571px;}
.xa{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v2{vertical-align:-18.134115pt;}
.v5{vertical-align:-16.319987pt;}
.v4{vertical-align:-15.413330pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.159981pt;}
.v1{vertical-align:18.134115pt;}
.ls8a{letter-spacing:-2.800000pt;}
.ls87{letter-spacing:-2.480000pt;}
.ls65{letter-spacing:-2.120000pt;}
.ls89{letter-spacing:-1.560000pt;}
.ls66{letter-spacing:-1.240000pt;}
.ls8d{letter-spacing:-1.200000pt;}
.ls86{letter-spacing:-1.160000pt;}
.ls76{letter-spacing:-0.960000pt;}
.ls37{letter-spacing:-0.912000pt;}
.ls2f{letter-spacing:-0.768000pt;}
.ls75{letter-spacing:-0.760000pt;}
.ls18{letter-spacing:-0.720000pt;}
.ls8b{letter-spacing:-0.680000pt;}
.ls59{letter-spacing:-0.672000pt;}
.ls70{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.624000pt;}
.ls88{letter-spacing:-0.600000pt;}
.ls82{letter-spacing:-0.560000pt;}
.ls56{letter-spacing:-0.528000pt;}
.ls72{letter-spacing:-0.520000pt;}
.ls6b{letter-spacing:-0.480000pt;}
.ls6c{letter-spacing:-0.440000pt;}
.ls64{letter-spacing:-0.400000pt;}
.ls8f{letter-spacing:-0.384000pt;}
.ls83{letter-spacing:-0.360000pt;}
.ls84{letter-spacing:-0.320000pt;}
.ls50{letter-spacing:-0.288000pt;}
.ls68{letter-spacing:-0.280000pt;}
.ls33{letter-spacing:-0.266667pt;}
.ls2e{letter-spacing:-0.240000pt;}
.ls62{letter-spacing:-0.213333pt;}
.ls6d{letter-spacing:-0.200000pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls67{letter-spacing:-0.160000pt;}
.ls30{letter-spacing:-0.156000pt;}
.ls3e{letter-spacing:-0.144000pt;}
.ls81{letter-spacing:-0.120000pt;}
.ls31{letter-spacing:-0.096000pt;}
.ls57{letter-spacing:-0.093600pt;}
.ls21{letter-spacing:-0.090667pt;}
.ls71{letter-spacing:-0.080000pt;}
.ls58{letter-spacing:-0.062400pt;}
.ls60{letter-spacing:-0.053333pt;}
.ls32{letter-spacing:-0.048000pt;}
.ls6a{letter-spacing:-0.040000pt;}
.ls4c{letter-spacing:-0.031200pt;}
.ls16{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.003066pt;}
.ls5{letter-spacing:0.011754pt;}
.ls4{letter-spacing:0.012242pt;}
.ls2{letter-spacing:0.012324pt;}
.ls3{letter-spacing:0.012405pt;}
.lsd{letter-spacing:0.014542pt;}
.ls52{letter-spacing:0.031200pt;}
.ls63{letter-spacing:0.040000pt;}
.ls15{letter-spacing:0.045333pt;}
.ls27{letter-spacing:0.048000pt;}
.ls26{letter-spacing:0.053333pt;}
.ls7a{letter-spacing:0.060000pt;}
.ls4f{letter-spacing:0.062400pt;}
.ls6e{letter-spacing:0.080000pt;}
.ls47{letter-spacing:0.093600pt;}
.ls8{letter-spacing:0.095940pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls46{letter-spacing:0.108798pt;}
.ls6{letter-spacing:0.113518pt;}
.ls10{letter-spacing:0.115045pt;}
.ls7d{letter-spacing:0.119986pt;}
.ls74{letter-spacing:0.120000pt;}
.ls40{letter-spacing:0.124800pt;}
.ls7{letter-spacing:0.144000pt;}
.ls44{letter-spacing:0.156000pt;}
.ls7f{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.164036pt;}
.ls77{letter-spacing:0.180013pt;}
.lsf{letter-spacing:0.181333pt;}
.ls4d{letter-spacing:0.187200pt;}
.ls19{letter-spacing:0.192000pt;}
.ls5a{letter-spacing:0.200000pt;}
.ls43{letter-spacing:0.218400pt;}
.ls39{letter-spacing:0.225597pt;}
.ls3a{letter-spacing:0.230403pt;}
.ls45{letter-spacing:0.239495pt;}
.ls9{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.243137pt;}
.ls48{letter-spacing:0.244795pt;}
.ls3f{letter-spacing:0.249600pt;}
.ls55{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.272000pt;}
.ls6f{letter-spacing:0.280000pt;}
.ls4e{letter-spacing:0.280800pt;}
.ls42{letter-spacing:0.280802pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls7e{letter-spacing:0.307991pt;}
.ls41{letter-spacing:0.312000pt;}
.ls5e{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.323642pt;}
.ls29{letter-spacing:0.336000pt;}
.ls53{letter-spacing:0.343200pt;}
.ls85{letter-spacing:0.360000pt;}
.ls2c{letter-spacing:0.374400pt;}
.ls23{letter-spacing:0.380934pt;}
.ls25{letter-spacing:0.384000pt;}
.ls5b{letter-spacing:0.400000pt;}
.ls54{letter-spacing:0.405600pt;}
.ls7b{letter-spacing:0.407954pt;}
.ls20{letter-spacing:0.408000pt;}
.ls7c{letter-spacing:0.420000pt;}
.ls61{letter-spacing:0.426667pt;}
.ls36{letter-spacing:0.432000pt;}
.ls73{letter-spacing:0.440000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls79{letter-spacing:0.520000pt;}
.ls38{letter-spacing:0.526442pt;}
.ls49{letter-spacing:0.527999pt;}
.ls28{letter-spacing:0.528000pt;}
.ls51{letter-spacing:0.530400pt;}
.ls69{letter-spacing:0.560000pt;}
.lsc{letter-spacing:0.571526pt;}
.ls24{letter-spacing:0.576000pt;}
.ls3c{letter-spacing:0.624000pt;}
.ls2b{letter-spacing:0.672000pt;}
.ls5c{letter-spacing:0.680000pt;}
.ls80{letter-spacing:0.696023pt;}
.ls1f{letter-spacing:0.720000pt;}
.ls8c{letter-spacing:0.768000pt;}
.ls78{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.816000pt;}
.ls1d{letter-spacing:0.864000pt;}
.ls35{letter-spacing:0.912000pt;}
.ls34{letter-spacing:1.008000pt;}
.ls4a{letter-spacing:1.022388pt;}
.ls2a{letter-spacing:1.056000pt;}
.ls1b{letter-spacing:1.152000pt;}
.ls3b{letter-spacing:1.173333pt;}
.ls8e{letter-spacing:1.200000pt;}
.ls1c{letter-spacing:1.344000pt;}
.ls3d{letter-spacing:1.392000pt;}
.ls4b{letter-spacing:1.440000pt;}
.ls5d{letter-spacing:1.640000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls22{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls5f{letter-spacing:5.440000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws27{word-spacing:-13.066667pt;}
.ws29{word-spacing:-12.085333pt;}
.ws2e{word-spacing:-12.000000pt;}
.ws49{word-spacing:-11.712000pt;}
.ws4c{word-spacing:-11.472000pt;}
.ws2c{word-spacing:-11.376000pt;}
.ws4b{word-spacing:-11.280000pt;}
.ws50{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.wsc5{word-spacing:-11.040000pt;}
.ws2d{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws2a{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws4a{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.272000pt;}
.wsb0{word-spacing:-10.000000pt;}
.wsc3{word-spacing:-9.320000pt;}
.ws9f{word-spacing:-9.280000pt;}
.ws7f{word-spacing:-9.240000pt;}
.ws86{word-spacing:-9.160000pt;}
.wsb7{word-spacing:-9.120000pt;}
.ws7{word-spacing:-9.112000pt;}
.ws87{word-spacing:-9.080000pt;}
.ws8{word-spacing:-9.066667pt;}
.wsad{word-spacing:-9.000000pt;}
.ws7e{word-spacing:-8.880000pt;}
.wsae{word-spacing:-8.840000pt;}
.wsa7{word-spacing:-8.800000pt;}
.ws83{word-spacing:-8.760000pt;}
.ws82{word-spacing:-8.600000pt;}
.wsb9{word-spacing:-8.560000pt;}
.ws80{word-spacing:-8.520000pt;}
.wsb1{word-spacing:-8.480000pt;}
.wsbe{word-spacing:-8.440000pt;}
.ws84{word-spacing:-8.400000pt;}
.ws85{word-spacing:-8.200000pt;}
.wsaf{word-spacing:-8.000000pt;}
.wsc4{word-spacing:-7.960000pt;}
.ws81{word-spacing:-7.920000pt;}
.ws68{word-spacing:-7.612800pt;}
.ws6b{word-spacing:-7.488000pt;}
.ws28{word-spacing:-7.456800pt;}
.ws6a{word-spacing:-7.425600pt;}
.ws4f{word-spacing:-7.394400pt;}
.ws65{word-spacing:-7.363200pt;}
.ws4d{word-spacing:-7.332000pt;}
.ws5f{word-spacing:-7.300800pt;}
.ws64{word-spacing:-7.269600pt;}
.ws60{word-spacing:-7.238400pt;}
.ws4e{word-spacing:-7.207200pt;}
.ws67{word-spacing:-7.176000pt;}
.ws66{word-spacing:-7.144800pt;}
.ws69{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws63{word-spacing:-7.051200pt;}
.wsac{word-spacing:-7.040000pt;}
.ws75{word-spacing:-7.020000pt;}
.ws74{word-spacing:-6.988800pt;}
.ws2b{word-spacing:-6.926400pt;}
.ws6{word-spacing:-5.893333pt;}
.ws88{word-spacing:-5.440000pt;}
.ws47{word-spacing:-4.896000pt;}
.wsd{word-spacing:-4.746667pt;}
.ws8b{word-spacing:-3.754667pt;}
.wsc7{word-spacing:-3.520000pt;}
.wse{word-spacing:-3.413333pt;}
.wsb{word-spacing:-2.912000pt;}
.wsf{word-spacing:-2.666667pt;}
.ws38{word-spacing:-1.728000pt;}
.ws1c{word-spacing:-1.680000pt;}
.ws89{word-spacing:-1.653333pt;}
.ws32{word-spacing:-1.632000pt;}
.ws5b{word-spacing:-1.584000pt;}
.ws58{word-spacing:-1.536000pt;}
.ws76{word-spacing:-1.488000pt;}
.ws77{word-spacing:-1.440000pt;}
.wsb2{word-spacing:-1.400000pt;}
.ws79{word-spacing:-1.392000pt;}
.ws23{word-spacing:-1.360000pt;}
.ws19{word-spacing:-1.344000pt;}
.ws42{word-spacing:-1.296000pt;}
.ws7b{word-spacing:-1.232000pt;}
.ws8e{word-spacing:-1.200000pt;}
.wsb4{word-spacing:-1.160000pt;}
.ws6f{word-spacing:-1.152000pt;}
.ws26{word-spacing:-1.133333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.104000pt;}
.ws48{word-spacing:-1.056000pt;}
.wsb5{word-spacing:-1.040000pt;}
.ws10{word-spacing:-1.008000pt;}
.wsa2{word-spacing:-1.000000pt;}
.ws57{word-spacing:-0.960000pt;}
.ws8d{word-spacing:-0.920000pt;}
.ws6e{word-spacing:-0.912000pt;}
.ws95{word-spacing:-0.880000pt;}
.ws36{word-spacing:-0.864000pt;}
.wsa{word-spacing:-0.853333pt;}
.ws25{word-spacing:-0.816000pt;}
.ws12{word-spacing:-0.768000pt;}
.ws92{word-spacing:-0.760000pt;}
.ws78{word-spacing:-0.720000pt;}
.wsa5{word-spacing:-0.680000pt;}
.ws54{word-spacing:-0.672000pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws55{word-spacing:-0.624000pt;}
.ws7c{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.576000pt;}
.ws33{word-spacing:-0.533333pt;}
.ws11{word-spacing:-0.528000pt;}
.ws96{word-spacing:-0.520000pt;}
.ws44{word-spacing:-0.480000pt;}
.ws1e{word-spacing:-0.453333pt;}
.ws8c{word-spacing:-0.440000pt;}
.ws3d{word-spacing:-0.432000pt;}
.ws20{word-spacing:-0.408000pt;}
.ws34{word-spacing:-0.384000pt;}
.wsa9{word-spacing:-0.360000pt;}
.ws7a{word-spacing:-0.343200pt;}
.ws3e{word-spacing:-0.336000pt;}
.wsa3{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.288000pt;}
.ws97{word-spacing:-0.280000pt;}
.ws24{word-spacing:-0.272000pt;}
.ws7d{word-spacing:-0.266667pt;}
.ws61{word-spacing:-0.249600pt;}
.ws43{word-spacing:-0.240000pt;}
.ws62{word-spacing:-0.218400pt;}
.wsbf{word-spacing:-0.200000pt;}
.ws31{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.181333pt;}
.ws9b{word-spacing:-0.160000pt;}
.ws5c{word-spacing:-0.144000pt;}
.ws70{word-spacing:-0.124800pt;}
.wsaa{word-spacing:-0.120000pt;}
.ws8a{word-spacing:-0.106667pt;}
.ws46{word-spacing:-0.096000pt;}
.wsba{word-spacing:-0.080000pt;}
.ws3b{word-spacing:-0.048000pt;}
.ws99{word-spacing:-0.040000pt;}
.ws9{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.040000pt;}
.ws21{word-spacing:0.045333pt;}
.ws39{word-spacing:0.048000pt;}
.ws9c{word-spacing:0.080000pt;}
.ws22{word-spacing:0.090667pt;}
.ws3c{word-spacing:0.096000pt;}
.wsb3{word-spacing:0.120000pt;}
.ws3a{word-spacing:0.144000pt;}
.ws98{word-spacing:0.160000pt;}
.ws18{word-spacing:0.192000pt;}
.wsab{word-spacing:0.200000pt;}
.ws35{word-spacing:0.240000pt;}
.ws37{word-spacing:0.266667pt;}
.ws9a{word-spacing:0.280000pt;}
.ws5d{word-spacing:0.288000pt;}
.ws90{word-spacing:0.320000pt;}
.ws5a{word-spacing:0.336000pt;}
.wsc2{word-spacing:0.360000pt;}
.ws30{word-spacing:0.384000pt;}
.ws91{word-spacing:0.400000pt;}
.ws51{word-spacing:0.432000pt;}
.ws94{word-spacing:0.440000pt;}
.ws73{word-spacing:0.480000pt;}
.ws9d{word-spacing:0.520000pt;}
.wsc8{word-spacing:0.528000pt;}
.wsbd{word-spacing:0.560000pt;}
.ws2f{word-spacing:0.576000pt;}
.ws13{word-spacing:0.624000pt;}
.wsbb{word-spacing:0.640000pt;}
.ws1d{word-spacing:0.720000pt;}
.ws93{word-spacing:0.760000pt;}
.wsc1{word-spacing:0.800000pt;}
.wsa1{word-spacing:0.840000pt;}
.ws6d{word-spacing:0.864000pt;}
.wsb8{word-spacing:0.880000pt;}
.ws52{word-spacing:0.912000pt;}
.ws8f{word-spacing:0.920000pt;}
.ws72{word-spacing:0.960000pt;}
.ws71{word-spacing:1.008000pt;}
.ws59{word-spacing:1.056000pt;}
.ws56{word-spacing:1.104000pt;}
.wsb6{word-spacing:1.120000pt;}
.ws1a{word-spacing:1.152000pt;}
.ws41{word-spacing:1.200000pt;}
.wsa6{word-spacing:1.240000pt;}
.ws40{word-spacing:1.248000pt;}
.wsa0{word-spacing:1.280000pt;}
.wsa4{word-spacing:1.360000pt;}
.ws3f{word-spacing:1.440000pt;}
.ws45{word-spacing:1.488000pt;}
.wsbc{word-spacing:1.560000pt;}
.wsc6{word-spacing:1.824000pt;}
.ws5e{word-spacing:1.866667pt;}
.ws16{word-spacing:1.872000pt;}
.wsc0{word-spacing:1.880000pt;}
.ws17{word-spacing:2.256000pt;}
.ws53{word-spacing:2.304000pt;}
.ws6c{word-spacing:2.448000pt;}
._e{margin-left:-13.159531pt;}
._17{margin-left:-10.240000pt;}
._1a{margin-left:-9.280000pt;}
._15{margin-left:-8.320000pt;}
._b{margin-left:-7.313590pt;}
._6{margin-left:-5.416801pt;}
._4{margin-left:-4.287994pt;}
._1{margin-left:-2.842667pt;}
._0{margin-left:-1.578676pt;}
._5{width:1.307361pt;}
._7{width:2.847405pt;}
._2{width:3.750345pt;}
._18{width:4.698675pt;}
._13{width:5.938675pt;}
._11{width:7.240000pt;}
._12{width:8.920002pt;}
._19{width:9.854150pt;}
._10{width:11.000000pt;}
._14{width:12.000000pt;}
._c{width:13.583993pt;}
._16{width:15.520001pt;}
._d{width:35.306762pt;}
._a{width:36.522762pt;}
._3{width:38.147555pt;}
._9{width:39.386690pt;}
._8{width:42.673006pt;}
._f{width:43.920534pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y32{bottom:60.728799pt;}
.yc1{bottom:60.934668pt;}
.y77{bottom:60.983204pt;}
.yd4{bottom:71.160270pt;}
.y31{bottom:74.056799pt;}
.yc0{bottom:74.266668pt;}
.y121{bottom:74.269331pt;}
.y76{bottom:74.315203pt;}
.y1ec{bottom:74.746236pt;}
.y19c{bottom:79.766678pt;}
.yd3{bottom:84.492269pt;}
.y1eb{bottom:86.076236pt;}
.y82{bottom:87.105748pt;}
.y30{bottom:87.384799pt;}
.y120{bottom:87.601330pt;}
.y75{bottom:87.647203pt;}
.y19b{bottom:91.096678pt;}
.y15a{bottom:93.152265pt;}
.y1ea{bottom:97.406236pt;}
.yd2{bottom:97.824268pt;}
.ybf{bottom:99.898682pt;}
.y81{bottom:100.437747pt;}
.y2f{bottom:100.718132pt;}
.y11f{bottom:100.934663pt;}
.y74{bottom:100.979202pt;}
.y19a{bottom:102.426678pt;}
.y159{bottom:106.484265pt;}
.y1e9{bottom:108.736236pt;}
.yd1{bottom:111.156267pt;}
.ybe{bottom:113.230681pt;}
.y199{bottom:113.756678pt;}
.y80{bottom:113.769746pt;}
.y2e{bottom:114.051466pt;}
.y11e{bottom:114.267997pt;}
.y73{bottom:114.311201pt;}
.y158{bottom:119.817598pt;}
.y1e8{bottom:120.066236pt;}
.yd0{bottom:124.488267pt;}
.y198{bottom:125.086678pt;}
.ybd{bottom:126.562680pt;}
.y7f{bottom:127.101746pt;}
.y2d{bottom:127.384799pt;}
.y11d{bottom:127.602664pt;}
.y72{bottom:127.643200pt;}
.y1e7{bottom:131.396236pt;}
.y157{bottom:133.149597pt;}
.y197{bottom:136.416678pt;}
.ycf{bottom:137.820266pt;}
.ybc{bottom:139.894679pt;}
.y7e{bottom:140.433745pt;}
.y2c{bottom:140.718132pt;}
.y11c{bottom:140.934663pt;}
.y71{bottom:140.975200pt;}
.y1e6{bottom:142.726236pt;}
.y196{bottom:147.746679pt;}
.yce{bottom:151.152265pt;}
.ybb{bottom:153.226679pt;}
.y7d{bottom:153.765744pt;}
.y1e5{bottom:154.056236pt;}
.y11b{bottom:154.269331pt;}
.y70{bottom:154.307199pt;}
.y2b{bottom:157.899465pt;}
.y195{bottom:159.076679pt;}
.y156{bottom:162.486933pt;}
.ycd{bottom:164.484265pt;}
.y1e4{bottom:165.386236pt;}
.yba{bottom:166.558678pt;}
.y7c{bottom:167.097743pt;}
.y11a{bottom:167.601330pt;}
.y6f{bottom:167.639198pt;}
.y194{bottom:170.406679pt;}
.y155{bottom:175.818932pt;}
.y1e3{bottom:176.716236pt;}
.ycc{bottom:177.817598pt;}
.yb9{bottom:179.890677pt;}
.y7b{bottom:180.429743pt;}
.y119{bottom:180.934663pt;}
.y6e{bottom:180.971198pt;}
.y193{bottom:181.736679pt;}
.y1e2{bottom:188.046237pt;}
.y154{bottom:189.150931pt;}
.ycb{bottom:191.150931pt;}
.y192{bottom:193.066679pt;}
.yb8{bottom:193.226679pt;}
.y7a{bottom:193.761742pt;}
.y118{bottom:194.274667pt;}
.y6d{bottom:194.303197pt;}
.y1e1{bottom:199.376237pt;}
.y2a{bottom:201.942944pt;}
.y153{bottom:202.486933pt;}
.y191{bottom:204.396679pt;}
.yca{bottom:204.492269pt;}
.yb7{bottom:206.558678pt;}
.y79{bottom:207.093741pt;}
.y117{bottom:207.606666pt;}
.y6c{bottom:207.635196pt;}
.y1e0{bottom:210.706237pt;}
.y29{bottom:215.278945pt;}
.y190{bottom:215.726679pt;}
.y152{bottom:215.818932pt;}
.yc9{bottom:217.824268pt;}
.yb6{bottom:219.890677pt;}
.y78{bottom:220.425741pt;}
.y116{bottom:220.938665pt;}
.y6b{bottom:220.967195pt;}
.y1df{bottom:222.036237pt;}
.y18f{bottom:227.056679pt;}
.y28{bottom:228.610944pt;}
.y151{bottom:229.150931pt;}
.yc8{bottom:231.156267pt;}
.yb5{bottom:233.225345pt;}
.y1de{bottom:233.366237pt;}
.y115{bottom:234.270665pt;}
.y6a{bottom:234.299195pt;}
.y18e{bottom:238.386679pt;}
.y27{bottom:241.942944pt;}
.y150{bottom:242.482930pt;}
.yc7{bottom:244.488267pt;}
.y1dd{bottom:244.696237pt;}
.yb4{bottom:246.557344pt;}
.y114{bottom:247.602664pt;}
.y69{bottom:247.631194pt;}
.y18d{bottom:249.716679pt;}
.y26{bottom:255.277611pt;}
.y14f{bottom:255.816264pt;}
.y1dc{bottom:256.026237pt;}
.yc6{bottom:257.820266pt;}
.yb3{bottom:259.893345pt;}
.y113{bottom:260.934663pt;}
.y18c{bottom:261.046680pt;}
.y1db{bottom:267.356237pt;}
.y25{bottom:268.609610pt;}
.yc5{bottom:271.152265pt;}
.y18b{bottom:272.376680pt;}
.yb2{bottom:273.225345pt;}
.y112{bottom:274.267997pt;}
.y68{bottom:275.243195pt;}
.y1da{bottom:278.686237pt;}
.y24{bottom:281.948280pt;}
.y18a{bottom:283.706680pt;}
.yc4{bottom:284.484265pt;}
.y14e{bottom:285.156288pt;}
.yb1{bottom:286.557344pt;}
.y111{bottom:287.601330pt;}
.y67{bottom:288.575195pt;}
.y1d9{bottom:290.016237pt;}
.y189{bottom:295.036680pt;}
.y23{bottom:295.280279pt;}
.yc3{bottom:297.817598pt;}
.y14d{bottom:298.488287pt;}
.yb0{bottom:299.944273pt;}
.y110{bottom:300.935997pt;}
.y1d8{bottom:301.346238pt;}
.y66{bottom:301.907194pt;}
.y188{bottom:306.366680pt;}
.y22{bottom:308.612279pt;}
.yc2{bottom:311.149597pt;}
.y14c{bottom:311.820286pt;}
.y1d7{bottom:312.676238pt;}
.yaf{bottom:313.276272pt;}
.y10f{bottom:314.267997pt;}
.y65{bottom:315.239193pt;}
.y187{bottom:317.696680pt;}
.y21{bottom:321.944278pt;}
.y1d6{bottom:324.006238pt;}
.y14b{bottom:325.152286pt;}
.yae{bottom:326.608271pt;}
.y10e{bottom:327.601330pt;}
.y64{bottom:328.571192pt;}
.y186{bottom:329.026680pt;}
.y20{bottom:335.276277pt;}
.y1d5{bottom:335.336238pt;}
.y14a{bottom:338.484285pt;}
.yad{bottom:339.940271pt;}
.y185{bottom:340.356680pt;}
.y10d{bottom:340.934684pt;}
.y63{bottom:341.903192pt;}
.y1d4{bottom:346.666238pt;}
.y1f{bottom:348.612279pt;}
.y184{bottom:351.686680pt;}
.y149{bottom:351.816284pt;}
.yac{bottom:353.272270pt;}
.y10c{bottom:354.268017pt;}
.y62{bottom:355.235191pt;}
.y1d3{bottom:357.996238pt;}
.ye0{bottom:358.413722pt;}
.y1e{bottom:361.944278pt;}
.y183{bottom:363.016680pt;}
.y148{bottom:365.149618pt;}
.yab{bottom:366.604269pt;}
.y10b{bottom:367.602684pt;}
.y61{bottom:368.567190pt;}
.y1d2{bottom:369.326238pt;}
.ydf{bottom:371.745722pt;}
.y182{bottom:374.346681pt;}
.y1d{bottom:375.276277pt;}
.yaa{bottom:379.936268pt;}
.y1d1{bottom:380.656238pt;}
.y10a{bottom:380.934684pt;}
.yde{bottom:385.077721pt;}
.y181{bottom:385.676681pt;}
.y1c{bottom:388.648278pt;}
.y1d0{bottom:391.986238pt;}
.ya9{bottom:393.268268pt;}
.y109{bottom:394.269351pt;}
.y147{bottom:394.486953pt;}
.y60{bottom:396.179192pt;}
.y180{bottom:397.006681pt;}
.ydd{bottom:398.409720pt;}
.y1b{bottom:401.980277pt;}
.y1cf{bottom:403.316238pt;}
.ya8{bottom:406.600267pt;}
.y108{bottom:407.601350pt;}
.y146{bottom:407.818952pt;}
.y17f{bottom:408.336681pt;}
.y5f{bottom:409.511191pt;}
.ydc{bottom:411.741720pt;}
.y1ce{bottom:414.646239pt;}
.y1a{bottom:415.312276pt;}
.y17e{bottom:419.666681pt;}
.ya7{bottom:419.932266pt;}
.y107{bottom:420.944022pt;}
.y145{bottom:421.150952pt;}
.y5e{bottom:422.843190pt;}
.ydb{bottom:425.073719pt;}
.y1cd{bottom:425.976239pt;}
.y17d{bottom:430.996681pt;}
.ya6{bottom:433.264266pt;}
.y106{bottom:434.276021pt;}
.y144{bottom:434.484285pt;}
.y5d{bottom:436.175189pt;}
.y1cc{bottom:437.306239pt;}
.yda{bottom:438.405718pt;}
.y20b{bottom:438.494957pt;}
.y17c{bottom:442.326681pt;}
.ya5{bottom:446.596265pt;}
.y105{bottom:447.608021pt;}
.y143{bottom:447.818952pt;}
.y1cb{bottom:448.636239pt;}
.y5c{bottom:449.507189pt;}
.yd9{bottom:451.737717pt;}
.y20a{bottom:451.826957pt;}
.y17b{bottom:453.656681pt;}
.y19{bottom:457.312276pt;}
.ya4{bottom:459.928264pt;}
.y1ca{bottom:459.966239pt;}
.y104{bottom:460.940020pt;}
.y142{bottom:461.150952pt;}
.y5b{bottom:462.839188pt;}
.y17a{bottom:464.986681pt;}
.yd8{bottom:465.069717pt;}
.y209{bottom:465.158956pt;}
.y1c9{bottom:471.296239pt;}
.y18{bottom:471.976276pt;}
.ya3{bottom:473.260263pt;}
.y103{bottom:474.272019pt;}
.y141{bottom:474.485619pt;}
.y5a{bottom:476.171187pt;}
.y179{bottom:476.316681pt;}
.yd7{bottom:478.401716pt;}
.y208{bottom:478.490955pt;}
.y1c8{bottom:482.626239pt;}
.ya2{bottom:486.592263pt;}
.y17{bottom:486.640276pt;}
.y102{bottom:487.604018pt;}
.y178{bottom:487.646682pt;}
.y140{bottom:487.817618pt;}
.y59{bottom:489.503187pt;}
.yd6{bottom:491.733715pt;}
.y207{bottom:491.822954pt;}
.y1c7{bottom:493.956239pt;}
.y177{bottom:498.976682pt;}
.ya1{bottom:499.924262pt;}
.y101{bottom:500.936018pt;}
.y13f{bottom:501.150952pt;}
.y16{bottom:501.304276pt;}
.y58{bottom:502.835186pt;}
.yd5{bottom:505.065715pt;}
.y206{bottom:505.154954pt;}
.y1c6{bottom:505.286239pt;}
.y176{bottom:510.306682pt;}
.ya0{bottom:513.256261pt;}
.y100{bottom:514.268017pt;}
.y13e{bottom:514.484285pt;}
.y15{bottom:515.968276pt;}
.y57{bottom:516.167185pt;}
.y1c5{bottom:516.616239pt;}
.y205{bottom:518.486953pt;}
.y175{bottom:521.636682pt;}
.y9f{bottom:526.588261pt;}
.yff{bottom:527.602684pt;}
.y13d{bottom:527.818952pt;}
.y1c4{bottom:527.946240pt;}
.y56{bottom:529.499184pt;}
.y14{bottom:530.632276pt;}
.y204{bottom:531.818952pt;}
.y174{bottom:532.966682pt;}
.y1c3{bottom:539.276240pt;}
.yfe{bottom:540.934684pt;}
.y13c{bottom:541.150952pt;}
.y55{bottom:542.831184pt;}
.y173{bottom:544.296682pt;}
.y203{bottom:545.150952pt;}
.y13{bottom:545.296276pt;}
.y1c2{bottom:550.606240pt;}
.yfd{bottom:554.269351pt;}
.y13b{bottom:554.488287pt;}
.y9e{bottom:554.512259pt;}
.y172{bottom:555.626682pt;}
.y54{bottom:556.163183pt;}
.y202{bottom:558.482951pt;}
.y12{bottom:559.960276pt;}
.y1c1{bottom:561.936240pt;}
.y171{bottom:566.956682pt;}
.yfc{bottom:567.601350pt;}
.y13a{bottom:567.820286pt;}
.y9d{bottom:567.844259pt;}
.y53{bottom:569.495182pt;}
.y1c0{bottom:573.266240pt;}
.y11{bottom:574.624276pt;}
.y201{bottom:577.820286pt;}
.y170{bottom:578.286682pt;}
.yfb{bottom:580.934684pt;}
.y139{bottom:581.152286pt;}
.y9c{bottom:581.176258pt;}
.y52{bottom:582.827182pt;}
.y1bf{bottom:584.596240pt;}
.y10{bottom:589.288276pt;}
.y16f{bottom:589.616682pt;}
.y200{bottom:591.152286pt;}
.yfa{bottom:594.278689pt;}
.y138{bottom:594.484285pt;}
.y9b{bottom:594.508257pt;}
.y1be{bottom:595.926240pt;}
.y51{bottom:596.159181pt;}
.y16e{bottom:600.946683pt;}
.yf{bottom:603.952276pt;}
.y1bd{bottom:607.256240pt;}
.yf9{bottom:607.610689pt;}
.y137{bottom:607.818952pt;}
.y9a{bottom:607.840256pt;}
.y1ff{bottom:610.484285pt;}
.y16d{bottom:612.276683pt;}
.y1bc{bottom:618.586240pt;}
.ye{bottom:618.616276pt;}
.yf8{bottom:620.942688pt;}
.y136{bottom:621.150952pt;}
.y99{bottom:621.172256pt;}
.y16c{bottom:623.606683pt;}
.y50{bottom:623.771182pt;}
.y1fe{bottom:629.816284pt;}
.y1bb{bottom:629.916240pt;}
.yd{bottom:633.280276pt;}
.yf7{bottom:634.274687pt;}
.y135{bottom:634.484285pt;}
.y98{bottom:634.504255pt;}
.y16b{bottom:634.936683pt;}
.y4f{bottom:637.103181pt;}
.y1ba{bottom:641.246241pt;}
.y1fd{bottom:643.149618pt;}
.y16a{bottom:646.266683pt;}
.yf6{bottom:647.606687pt;}
.y134{bottom:647.822914pt;}
.y97{bottom:647.836254pt;}
.yc{bottom:647.944276pt;}
.y4e{bottom:650.435181pt;}
.y1b9{bottom:652.576241pt;}
.y169{bottom:657.600016pt;}
.yf5{bottom:660.938686pt;}
.y133{bottom:661.154913pt;}
.y96{bottom:661.168254pt;}
.yb{bottom:662.608276pt;}
.y1b8{bottom:663.906241pt;}
.y1fc{bottom:667.152245pt;}
.y35{bottom:673.023463pt;}
.yf4{bottom:674.270685pt;}
.y132{bottom:674.486912pt;}
.y95{bottom:674.500253pt;}
.y1b7{bottom:675.236241pt;}
.y4d{bottom:675.808245pt;}
.y1fb{bottom:680.484244pt;}
.y168{bottom:684.979231pt;}
.y1b6{bottom:686.566241pt;}
.yf3{bottom:687.602684pt;}
.y131{bottom:687.818912pt;}
.y94{bottom:687.832252pt;}
.y4c{bottom:689.140244pt;}
.y9{bottom:689.274902pt;}
.y34{bottom:691.689463pt;}
.ya{bottom:693.808431pt;}
.y1fa{bottom:693.816243pt;}
.y1b5{bottom:697.896241pt;}
.y167{bottom:698.311230pt;}
.yf2{bottom:700.934684pt;}
.y130{bottom:701.150911pt;}
.y93{bottom:701.164251pt;}
.y4b{bottom:702.472244pt;}
.y7{bottom:705.274902pt;}
.y1f9{bottom:707.149577pt;}
.y1b4{bottom:709.226241pt;}
.y8{bottom:709.808431pt;}
.y33{bottom:710.355462pt;}
.y166{bottom:711.643229pt;}
.yf1{bottom:714.281358pt;}
.y12f{bottom:714.484244pt;}
.y92{bottom:714.496251pt;}
.y4a{bottom:715.804243pt;}
.y1b3{bottom:720.556241pt;}
.y165{bottom:724.976562pt;}
.yf0{bottom:727.613357pt;}
.y12e{bottom:727.818912pt;}
.y91{bottom:727.828250pt;}
.y49{bottom:729.136242pt;}
.y1f8{bottom:731.162917pt;}
.y1b2{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.yef{bottom:740.945356pt;}
.y12d{bottom:741.150911pt;}
.y90{bottom:741.160249pt;}
.y48{bottom:742.468241pt;}
.y1b1{bottom:743.216241pt;}
.y1f7{bottom:744.494917pt;}
.y164{bottom:752.354524pt;}
.yee{bottom:754.277355pt;}
.y8f{bottom:754.492249pt;}
.y12c{bottom:754.494917pt;}
.y1b0{bottom:754.546242pt;}
.y47{bottom:755.800241pt;}
.y1f6{bottom:757.826916pt;}
.y163{bottom:765.687857pt;}
.y1af{bottom:765.876242pt;}
.yed{bottom:767.609355pt;}
.y8e{bottom:767.824248pt;}
.y12b{bottom:767.826916pt;}
.y46{bottom:769.132240pt;}
.y1f5{bottom:771.158915pt;}
.y5{bottom:774.602901pt;}
.y1ae{bottom:777.206242pt;}
.y162{bottom:779.019857pt;}
.yec{bottom:780.941354pt;}
.y8d{bottom:781.156247pt;}
.y12a{bottom:781.158915pt;}
.y45{bottom:782.464239pt;}
.y1f4{bottom:784.490914pt;}
.y1ad{bottom:788.536242pt;}
.yeb{bottom:794.273353pt;}
.y8c{bottom:794.488246pt;}
.y129{bottom:794.490914pt;}
.y44{bottom:795.796238pt;}
.y1f3{bottom:797.822914pt;}
.y1ac{bottom:799.866242pt;}
.y161{bottom:806.399071pt;}
.yea{bottom:807.605352pt;}
.y8b{bottom:807.820246pt;}
.y128{bottom:807.822914pt;}
.y43{bottom:809.128238pt;}
.y1f2{bottom:811.154913pt;}
.y1ab{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y160{bottom:819.731070pt;}
.ye9{bottom:820.937352pt;}
.y8a{bottom:821.152245pt;}
.y127{bottom:821.154913pt;}
.y42{bottom:822.460237pt;}
.y1aa{bottom:822.526242pt;}
.y36{bottom:823.475179pt;}
.y1f1{bottom:824.486912pt;}
.y15f{bottom:833.063070pt;}
.y1a9{bottom:833.856242pt;}
.ye8{bottom:834.269351pt;}
.y89{bottom:834.484244pt;}
.y126{bottom:834.486912pt;}
.y41{bottom:835.793570pt;}
.y1f0{bottom:837.818912pt;}
.y1a8{bottom:845.186242pt;}
.ye7{bottom:847.601350pt;}
.y125{bottom:847.818912pt;}
.y88{bottom:847.826916pt;}
.y40{bottom:849.125570pt;}
.y1ef{bottom:851.150911pt;}
.y1a7{bottom:856.516242pt;}
.y15e{bottom:860.442284pt;}
.ye6{bottom:860.934684pt;}
.y124{bottom:861.150911pt;}
.y87{bottom:861.158915pt;}
.y3f{bottom:862.458903pt;}
.y1ee{bottom:864.482910pt;}
.y1a6{bottom:867.846243pt;}
.y15d{bottom:873.774283pt;}
.ye5{bottom:874.269351pt;}
.y123{bottom:874.484244pt;}
.y86{bottom:874.490914pt;}
.y1ed{bottom:877.816243pt;}
.y1a5{bottom:879.176243pt;}
.y15c{bottom:887.107617pt;}
.ye4{bottom:887.601350pt;}
.y3e{bottom:887.820246pt;}
.y85{bottom:887.822914pt;}
.y1a4{bottom:890.506243pt;}
.y15b{bottom:900.439616pt;}
.ye3{bottom:900.933350pt;}
.y3d{bottom:901.152245pt;}
.y84{bottom:901.154913pt;}
.y1a3{bottom:901.836243pt;}
.y1a2{bottom:913.166243pt;}
.ye2{bottom:914.266683pt;}
.y3c{bottom:914.484244pt;}
.y83{bottom:914.486912pt;}
.y1a1{bottom:924.496243pt;}
.y3b{bottom:927.818912pt;}
.y122{bottom:927.820246pt;}
.y1a0{bottom:935.826243pt;}
.y3a{bottom:941.150911pt;}
.ye1{bottom:941.152245pt;}
.y19f{bottom:947.156243pt;}
.y39{bottom:954.484244pt;}
.y19e{bottom:958.486243pt;}
.y38{bottom:967.816243pt;}
.y19d{bottom:969.816243pt;}
.y37{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.he{height:21.193555pt;}
.h8{height:24.933594pt;}
.h12{height:31.461333pt;}
.h11{height:32.594667pt;}
.h10{height:32.605469pt;}
.ha{height:34.512000pt;}
.hb{height:34.523438pt;}
.hf{height:36.585552pt;}
.h2{height:38.346667pt;}
.h4{height:39.305333pt;}
.h18{height:39.560000pt;}
.h16{height:40.080000pt;}
.h3{height:40.661333pt;}
.h17{height:40.960000pt;}
.h14{height:42.181333pt;}
.h19{height:42.195312pt;}
.h7{height:43.067708pt;}
.h9{height:43.067710pt;}
.hc{height:47.472000pt;}
.hd{height:48.096000pt;}
.h15{height:49.152000pt;}
.h13{height:69.024000pt;}
.h5{height:99.701333pt;}
.h6{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:12.518794pt;}
.x2{left:54.392400pt;}
.x9{left:125.291331pt;}
.x4{left:207.516805pt;}
.x7{left:223.513725pt;}
.xc{left:267.195190pt;}
.x5{left:517.751587pt;}
.x3{left:519.632528pt;}
.x6{left:584.435181pt;}
.xb{left:725.336507pt;}
.xa{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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