
    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_eeb787b12f5d65a3701827af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.004395;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_d7c84a374cbf66cd290fcc9d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_60f381e7f9fa65476b03cf39.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_f7bf2e6468ec5f40fd5d2040.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d431e90094d798743f2d7cc0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7d98daee6dac239eb8cb09e9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bf7bfb6d816dc7a20918f12b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls51{letter-spacing:-0.967657px;}
.ls25{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.817920px;}
.ls2d{letter-spacing:-0.792000px;}
.ls4b{letter-spacing:-0.776880px;}
.ls42{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.613440px;}
.ls34{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.379473px;}
.ls46{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.336960px;}
.ls20{letter-spacing:-0.303579px;}
.ls3e{letter-spacing:-0.298800px;}
.ls17{letter-spacing:-0.288000px;}
.ls3d{letter-spacing:-0.284605px;}
.lsd{letter-spacing:-0.252720px;}
.ls4c{letter-spacing:-0.239040px;}
.ls44{letter-spacing:-0.227684px;}
.ls14{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.204480px;}
.ls45{letter-spacing:-0.170763px;}
.ls54{letter-spacing:-0.168480px;}
.ls22{letter-spacing:-0.151789px;}
.lsc{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.102240px;}
.ls2{letter-spacing:-0.087120px;}
.lsf{letter-spacing:-0.084240px;}
.ls24{letter-spacing:-0.075895px;}
.lsb{letter-spacing:-0.072000px;}
.ls49{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.056921px;}
.ls8{letter-spacing:0.059760px;}
.ls10{letter-spacing:0.062993px;}
.lsa{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.075895px;}
.ls23{letter-spacing:0.083484px;}
.ls41{letter-spacing:0.113842px;}
.ls11{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.151789px;}
.ls9{letter-spacing:0.168480px;}
.ls43{letter-spacing:0.170763px;}
.ls4a{letter-spacing:0.179280px;}
.ls39{letter-spacing:0.211680px;}
.ls12{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.288000px;}
.ls48{letter-spacing:0.298800px;}
.ls5d{letter-spacing:0.352800px;}
.ls3f{letter-spacing:0.358560px;}
.ls16{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.379473px;}
.ls0{letter-spacing:0.408960px;}
.ls52{letter-spacing:0.432000px;}
.ls53{letter-spacing:0.504000px;}
.ls5f{letter-spacing:0.531263px;}
.ls4f{letter-spacing:0.648000px;}
.ls59{letter-spacing:0.712800px;}
.ls28{letter-spacing:0.720000px;}
.ls2f{letter-spacing:1.440000px;}
.ls5c{letter-spacing:2.138400px;}
.ls56{letter-spacing:2.152800px;}
.ls1b{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.880000px;}
.ls33{letter-spacing:3.600000px;}
.ls3b{letter-spacing:3.752928px;}
.ls2b{letter-spacing:4.320000px;}
.ls5a{letter-spacing:5.040000px;}
.ls15{letter-spacing:5.464416px;}
.ls50{letter-spacing:5.760000px;}
.ls58{letter-spacing:6.480000px;}
.ls2a{letter-spacing:7.200000px;}
.ls1e{letter-spacing:7.920000px;}
.ls57{letter-spacing:9.360000px;}
.ls36{letter-spacing:10.080000px;}
.ls47{letter-spacing:10.278720px;}
.ls2e{letter-spacing:10.800000px;}
.ls1a{letter-spacing:11.520000px;}
.ls2c{letter-spacing:12.240000px;}
.ls30{letter-spacing:12.960000px;}
.ls40{letter-spacing:13.680000px;}
.ls4e{letter-spacing:15.120000px;}
.ls32{letter-spacing:15.840000px;}
.ls1d{letter-spacing:16.560000px;}
.ls3a{letter-spacing:18.000000px;}
.ls55{letter-spacing:20.160000px;}
.ls29{letter-spacing:23.040000px;}
.ls38{letter-spacing:24.480000px;}
.ls37{letter-spacing:30.240000px;}
.ls27{letter-spacing:35.424000px;}
.ls5b{letter-spacing:43.200000px;}
.ls4d{letter-spacing:44.784000px;}
.ls5e{letter-spacing:828.000000px;}
.ls13{letter-spacing:846.000000px;}
.ls1{letter-spacing:1623.600000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse6{word-spacing:-72.000000px;}
.ws26{word-spacing:-35.856000px;}
.ws0{word-spacing:-25.560000px;}
.wse{word-spacing:-21.228480px;}
.wsc{word-spacing:-21.060000px;}
.wsf{word-spacing:-20.975760px;}
.wsd{word-spacing:-20.723040px;}
.wsf0{word-spacing:-19.353139px;}
.wsf1{word-spacing:-19.125455px;}
.wscc{word-spacing:-19.049561px;}
.ws3b{word-spacing:-18.973666px;}
.wseb{word-spacing:-18.897771px;}
.wscb{word-spacing:-18.821877px;}
.ws124{word-spacing:-18.745982px;}
.wscd{word-spacing:-18.670087px;}
.ws1c{word-spacing:-18.360000px;}
.ws5e{word-spacing:-18.216000px;}
.ws27{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws18{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.928000px;}
.ws1b{word-spacing:-17.856000px;}
.ws1a{word-spacing:-17.784000px;}
.ws3c{word-spacing:-17.712000px;}
.wsa6{word-spacing:-17.352000px;}
.wsdf{word-spacing:-14.999760px;}
.wsd5{word-spacing:-14.059486px;}
.ws24{word-spacing:-5.464416px;}
.ws102{word-spacing:-5.184000px;}
.wsae{word-spacing:-4.680000px;}
.ws65{word-spacing:-4.464000px;}
.wsd4{word-spacing:-4.392000px;}
.ws94{word-spacing:-4.248000px;}
.ws64{word-spacing:-4.176000px;}
.wsd7{word-spacing:-4.104000px;}
.wsb5{word-spacing:-4.032000px;}
.ws125{word-spacing:-3.960000px;}
.ws8f{word-spacing:-3.744000px;}
.ws22{word-spacing:-3.456000px;}
.ws58{word-spacing:-3.240000px;}
.ws1e{word-spacing:-3.024000px;}
.ws8a{word-spacing:-2.952000px;}
.wsf6{word-spacing:-2.883997px;}
.ws1f{word-spacing:-2.808000px;}
.ws20{word-spacing:-2.736000px;}
.ws10e{word-spacing:-2.664000px;}
.ws89{word-spacing:-2.592000px;}
.ws130{word-spacing:-2.520000px;}
.ws9a{word-spacing:-2.304000px;}
.ws4b{word-spacing:-2.232000px;}
.ws122{word-spacing:-2.088000px;}
.ws30{word-spacing:-2.016000px;}
.ws39{word-spacing:-1.584000px;}
.wsc3{word-spacing:-1.512000px;}
.ws134{word-spacing:-1.440000px;}
.wsdd{word-spacing:-1.368000px;}
.ws35{word-spacing:-1.296000px;}
.ws92{word-spacing:-1.152000px;}
.ws52{word-spacing:-1.138420px;}
.ws116{word-spacing:-1.080000px;}
.ws10d{word-spacing:-0.926640px;}
.ws51{word-spacing:-0.910736px;}
.ws33{word-spacing:-0.864000px;}
.ws82{word-spacing:-0.792000px;}
.ws111{word-spacing:-0.758160px;}
.ws77{word-spacing:-0.720000px;}
.ws5c{word-spacing:-0.648000px;}
.ws133{word-spacing:-0.607157px;}
.wsc7{word-spacing:-0.597600px;}
.ws34{word-spacing:-0.576000px;}
.ws137{word-spacing:-0.531263px;}
.wsfe{word-spacing:-0.504000px;}
.wsee{word-spacing:-0.432000px;}
.ws53{word-spacing:-0.379473px;}
.ws59{word-spacing:-0.360000px;}
.ws16{word-spacing:-0.336960px;}
.ws5d{word-spacing:-0.288000px;}
.ws9e{word-spacing:-0.216000px;}
.wsca{word-spacing:-0.179280px;}
.ws15{word-spacing:-0.168480px;}
.ws3f{word-spacing:-0.151789px;}
.ws25{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.102240px;}
.ws1{word-spacing:-0.087120px;}
.ws126{word-spacing:-0.075895px;}
.ws37{word-spacing:-0.072000px;}
.wsc5{word-spacing:-0.056921px;}
.ws2{word-spacing:0.000000px;}
.wsce{word-spacing:0.056921px;}
.ws10{word-spacing:0.072000px;}
.ws50{word-spacing:0.075895px;}
.ws13{word-spacing:0.084240px;}
.wsd9{word-spacing:0.113842px;}
.wsa{word-spacing:0.119520px;}
.ws17{word-spacing:0.125985px;}
.ws11{word-spacing:0.144000px;}
.ws40{word-spacing:0.151789px;}
.wsdb{word-spacing:0.170763px;}
.ws4{word-spacing:0.204480px;}
.ws1d{word-spacing:0.216000px;}
.ws12c{word-spacing:0.227684px;}
.ws14{word-spacing:0.252720px;}
.wsd8{word-spacing:0.284605px;}
.ws38{word-spacing:0.288000px;}
.ws3e{word-spacing:0.303579px;}
.ws9{word-spacing:0.306720px;}
.ws7d{word-spacing:0.324000px;}
.ws70{word-spacing:0.360000px;}
.ws3d{word-spacing:0.379473px;}
.wsda{word-spacing:0.398447px;}
.ws9f{word-spacing:0.432000px;}
.wsc6{word-spacing:0.455368px;}
.wsd6{word-spacing:0.540000px;}
.ws93{word-spacing:0.576000px;}
.ws3{word-spacing:0.613440px;}
.wsdc{word-spacing:0.648000px;}
.wsd0{word-spacing:0.720000px;}
.wse2{word-spacing:0.776880px;}
.ws31{word-spacing:0.792000px;}
.ws69{word-spacing:0.864000px;}
.ws57{word-spacing:0.936000px;}
.wsf5{word-spacing:0.967657px;}
.ws9c{word-spacing:1.008000px;}
.wsb8{word-spacing:1.080000px;}
.ws6a{word-spacing:1.296000px;}
.wsa0{word-spacing:1.368000px;}
.wsb4{word-spacing:1.512000px;}
.wse5{word-spacing:1.553760px;}
.ws66{word-spacing:1.584000px;}
.ws98{word-spacing:1.728000px;}
.ws10b{word-spacing:1.800000px;}
.ws49{word-spacing:2.016000px;}
.wsd2{word-spacing:2.088000px;}
.ws106{word-spacing:2.232000px;}
.ws48{word-spacing:2.304000px;}
.ws97{word-spacing:2.376000px;}
.ws10a{word-spacing:2.448000px;}
.wsb9{word-spacing:2.664000px;}
.ws2a{word-spacing:2.736000px;}
.ws7f{word-spacing:2.808000px;}
.wsf9{word-spacing:2.952000px;}
.ws2b{word-spacing:3.024000px;}
.wsfb{word-spacing:3.168000px;}
.ws32{word-spacing:3.456000px;}
.wsa7{word-spacing:3.528000px;}
.wsb2{word-spacing:3.672000px;}
.wsc8{word-spacing:3.705120px;}
.ws28{word-spacing:3.744000px;}
.wsaf{word-spacing:3.816000px;}
.ws95{word-spacing:3.960000px;}
.wsc9{word-spacing:4.063680px;}
.ws96{word-spacing:4.176000px;}
.ws10f{word-spacing:4.248000px;}
.wsbe{word-spacing:4.392000px;}
.ws6c{word-spacing:4.464000px;}
.ws7c{word-spacing:4.608000px;}
.wsa5{word-spacing:4.680000px;}
.ws9d{word-spacing:4.896000px;}
.ws68{word-spacing:4.968000px;}
.ws29{word-spacing:5.184000px;}
.wsa4{word-spacing:5.328000px;}
.wsb7{word-spacing:5.400000px;}
.wsa3{word-spacing:5.616000px;}
.wsaa{word-spacing:5.688000px;}
.ws4a{word-spacing:5.832000px;}
.ws2f{word-spacing:5.904000px;}
.wsfd{word-spacing:6.048000px;}
.wsfc{word-spacing:6.223362px;}
.wsa2{word-spacing:6.336000px;}
.ws85{word-spacing:6.408000px;}
.ws113{word-spacing:6.552000px;}
.ws71{word-spacing:6.624000px;}
.ws9b{word-spacing:6.840000px;}
.ws117{word-spacing:6.982309px;}
.ws7b{word-spacing:7.056000px;}
.ws79{word-spacing:7.128000px;}
.ws123{word-spacing:7.272000px;}
.ws60{word-spacing:7.344000px;}
.ws8c{word-spacing:7.488000px;}
.ws5a{word-spacing:7.560000px;}
.ws6b{word-spacing:7.776000px;}
.ws104{word-spacing:7.848000px;}
.wsac{word-spacing:7.992000px;}
.ws2c{word-spacing:8.064000px;}
.ws120{word-spacing:8.136000px;}
.ws121{word-spacing:8.208000px;}
.ws4f{word-spacing:8.424000px;}
.wsf4{word-spacing:8.496000px;}
.wsb3{word-spacing:8.568000px;}
.ws3a{word-spacing:8.784000px;}
.ws99{word-spacing:9.216000px;}
.ws46{word-spacing:9.288000px;}
.ws45{word-spacing:9.504000px;}
.ws47{word-spacing:9.648000px;}
.ws135{word-spacing:9.720000px;}
.wsb6{word-spacing:9.936000px;}
.ws2d{word-spacing:10.008000px;}
.ws2e{word-spacing:10.152000px;}
.ws36{word-spacing:10.224000px;}
.ws12e{word-spacing:10.296000px;}
.wse1{word-spacing:10.338480px;}
.wsec{word-spacing:10.368000px;}
.wse4{word-spacing:10.517760px;}
.ws12f{word-spacing:10.549358px;}
.wse3{word-spacing:10.577520px;}
.ws63{word-spacing:10.656000px;}
.ws61{word-spacing:10.728000px;}
.wse7{word-spacing:10.777042px;}
.ws91{word-spacing:10.872000px;}
.ws62{word-spacing:10.944000px;}
.ws90{word-spacing:11.088000px;}
.ws43{word-spacing:11.376000px;}
.wsea{word-spacing:11.448000px;}
.ws44{word-spacing:11.664000px;}
.ws127{word-spacing:11.736000px;}
.ws72{word-spacing:12.096000px;}
.ws128{word-spacing:12.219041px;}
.ws118{word-spacing:12.312000px;}
.ws21{word-spacing:12.384000px;}
.wsad{word-spacing:12.456000px;}
.ws108{word-spacing:12.528000px;}
.wscf{word-spacing:12.600000px;}
.ws73{word-spacing:12.816000px;}
.wsa1{word-spacing:13.032000px;}
.ws56{word-spacing:13.104000px;}
.ws131{word-spacing:13.176000px;}
.ws54{word-spacing:13.509250px;}
.ws7a{word-spacing:13.536000px;}
.ws84{word-spacing:13.608000px;}
.ws107{word-spacing:13.752000px;}
.ws55{word-spacing:13.812829px;}
.ws83{word-spacing:13.824000px;}
.ws132{word-spacing:13.964618px;}
.wsd1{word-spacing:13.968000px;}
.ws10c{word-spacing:14.040000px;}
.ws42{word-spacing:14.256000px;}
.wsba{word-spacing:14.544000px;}
.ws105{word-spacing:14.688000px;}
.wsfa{word-spacing:14.976000px;}
.wsc1{word-spacing:15.048000px;}
.ws67{word-spacing:15.264000px;}
.ws41{word-spacing:15.330722px;}
.wsed{word-spacing:15.408000px;}
.ws5b{word-spacing:15.480000px;}
.wsf3{word-spacing:15.696000px;}
.wsa9{word-spacing:15.984000px;}
.wsa8{word-spacing:16.128000px;}
.wsf2{word-spacing:16.200000px;}
.ws4d{word-spacing:16.344000px;}
.ws4e{word-spacing:16.416000px;}
.ws4c{word-spacing:16.704000px;}
.ws81{word-spacing:16.848000px;}
.wsc4{word-spacing:17.136000px;}
.ws103{word-spacing:17.208000px;}
.wsab{word-spacing:17.352000px;}
.ws6e{word-spacing:17.424000px;}
.ws74{word-spacing:17.856000px;}
.ws6f{word-spacing:18.144000px;}
.ws6d{word-spacing:18.288000px;}
.ws80{word-spacing:18.648000px;}
.wsd3{word-spacing:19.584000px;}
.wse9{word-spacing:19.728000px;}
.ws7e{word-spacing:20.016000px;}
.ws109{word-spacing:20.232000px;}
.wse0{word-spacing:20.304000px;}
.ws5f{word-spacing:20.736000px;}
.wsef{word-spacing:20.808000px;}
.wsbb{word-spacing:20.952000px;}
.ws23{word-spacing:21.024000px;}
.wsc0{word-spacing:21.168000px;}
.ws112{word-spacing:21.456000px;}
.ws8e{word-spacing:21.744000px;}
.ws78{word-spacing:22.176000px;}
.ws75{word-spacing:22.464000px;}
.ws76{word-spacing:22.536000px;}
.wsbf{word-spacing:22.896000px;}
.ws101{word-spacing:23.112000px;}
.ws100{word-spacing:23.184000px;}
.wsbd{word-spacing:23.904000px;}
.wsf8{word-spacing:24.336000px;}
.wsf7{word-spacing:24.408000px;}
.wsbc{word-spacing:24.624000px;}
.ws87{word-spacing:25.128000px;}
.ws86{word-spacing:25.344000px;}
.wsc2{word-spacing:25.488000px;}
.ws114{word-spacing:25.776000px;}
.ws115{word-spacing:26.208000px;}
.ws8b{word-spacing:27.288000px;}
.ws11a{word-spacing:28.008000px;}
.ws119{word-spacing:28.224000px;}
.ws8d{word-spacing:29.376000px;}
.wsde{word-spacing:29.808000px;}
.ws110{word-spacing:29.880000px;}
.wsb1{word-spacing:30.024000px;}
.ws88{word-spacing:30.096000px;}
.wsb0{word-spacing:30.384000px;}
.wse8{word-spacing:32.544000px;}
.wsff{word-spacing:39.024000px;}
.ws11d{word-spacing:43.056000px;}
.ws11f{word-spacing:43.200000px;}
.ws11b{word-spacing:43.344000px;}
.ws11e{word-spacing:43.416000px;}
.ws11c{word-spacing:45.612693px;}
.ws139{word-spacing:51.480000px;}
.ws13b{word-spacing:52.056000px;}
.ws13a{word-spacing:54.264685px;}
.ws7{word-spacing:58.072320px;}
.ws6{word-spacing:67.376160px;}
.ws12{word-spacing:67.478400px;}
.ws5{word-spacing:68.194080px;}
.ws129{word-spacing:87.336000px;}
.ws12a{word-spacing:87.696000px;}
.ws12d{word-spacing:88.056000px;}
.ws12b{word-spacing:92.515595px;}
.ws138{word-spacing:97.416000px;}
.ws136{word-spacing:101.850639px;}
._12{margin-left:-17.958456px;}
._c{margin-left:-16.560000px;}
._a{margin-left:-14.701829px;}
._d{margin-left:-12.985992px;}
._14{margin-left:-11.884680px;}
._b{margin-left:-10.830816px;}
._11{margin-left:-9.743112px;}
._f{margin-left:-8.151408px;}
._e{margin-left:-6.890544px;}
._10{margin-left:-4.934520px;}
._13{margin-left:-3.736368px;}
._5{margin-left:-2.700715px;}
._2{margin-left:-1.072296px;}
._0{width:1.141272px;}
._9{width:3.005640px;}
._16{width:4.279464px;}
._6{width:5.925456px;}
._1c{width:8.891280px;}
._17{width:10.102032px;}
._18{width:11.234880px;}
._8{width:12.387024px;}
._15{width:13.824000px;}
._7{width:15.097334px;}
._1a{width:28.818072px;}
._1b{width:30.674664px;}
._1{width:67.376160px;}
._3{width:124.719120px;}
._4{width:201.032640px;}
._19{width:1988.640000px;}
.fc2{color:transparent;}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(102,102,102);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(153,153,154);}
.fs9{font-size:30.240000px;}
.fsa{font-size:56.920998px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:62.992571px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:75.894664px;}
.fsb{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:87.120000px;}
.fs2{font-size:102.240000px;}
.fs8{font-size:108.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:7.740000px;}
.y39{bottom:56.160000px;}
.y38{bottom:77.760000px;}
.y37{bottom:100.620000px;}
.y1b6{bottom:108.896760px;}
.y16f{bottom:109.622520px;}
.y1f1{bottom:110.160000px;}
.y210{bottom:110.880000px;}
.y7{bottom:114.660000px;}
.y219{bottom:114.840000px;}
.yeb{bottom:119.160000px;}
.y36{bottom:120.181140px;}
.y185{bottom:124.920000px;}
.y16e{bottom:125.996760px;}
.y103{bottom:126.360000px;}
.y1b5{bottom:126.899460px;}
.y1be{bottom:128.160000px;}
.y1dc{bottom:129.780000px;}
.y14c{bottom:129.960000px;}
.y10e{bottom:132.300000px;}
.y243{bottom:133.560000px;}
.y280{bottom:134.820000px;}
.y1a0{bottom:138.960000px;}
.y23f{bottom:140.760000px;}
.y1f0{bottom:142.560000px;}
.y20f{bottom:143.280000px;}
.y16d{bottom:143.999460px;}
.ybd{bottom:144.360000px;}
.y35{bottom:145.389960px;}
.y257{bottom:145.980000px;}
.y218{bottom:147.240000px;}
.y140{bottom:147.960000px;}
.y1b4{bottom:149.940000px;}
.yea{bottom:151.560000px;}
.y130{bottom:156.960000px;}
.y184{bottom:157.320000px;}
.y102{bottom:158.760000px;}
.y1bd{bottom:160.560000px;}
.y1db{bottom:162.180000px;}
.y14b{bottom:162.360000px;}
.y10d{bottom:164.700000px;}
.y242{bottom:165.960000px;}
.y16c{bottom:167.040000px;}
.y1b3{bottom:167.940000px;}
.y27f{bottom:169.020000px;}
.y34{bottom:170.598780px;}
.y19f{bottom:171.540000px;}
.y23e{bottom:173.160000px;}
.y1ef{bottom:174.960000px;}
.ybc{bottom:176.760000px;}
.y256{bottom:178.380000px;}
.y217{bottom:179.640000px;}
.y13f{bottom:180.360000px;}
.y158{bottom:181.440000px;}
.y229{bottom:183.960000px;}
.y16b{bottom:185.040000px;}
.y12f{bottom:189.360000px;}
.y183{bottom:189.720000px;}
.y101{bottom:191.160000px;}
.y27e{bottom:192.960000px;}
.y20e{bottom:193.680000px;}
.y1da{bottom:194.580000px;}
.y14a{bottom:194.760000px;}
.y33{bottom:195.807600px;}
.y10c{bottom:197.100000px;}
.y241{bottom:198.360000px;}
.y1bc{bottom:199.440000px;}
.ye9{bottom:201.960000px;}
.y19e{bottom:203.940000px;}
.y23d{bottom:205.560000px;}
.y1ee{bottom:207.360000px;}
.ybb{bottom:209.160000px;}
.y255{bottom:210.780000px;}
.y216{bottom:212.040000px;}
.y13e{bottom:212.760000px;}
.y157{bottom:213.840000px;}
.y228{bottom:216.360000px;}
.yb{bottom:217.980000px;}
.y32{bottom:221.016420px;}
.y12e{bottom:221.760000px;}
.y182{bottom:222.120000px;}
.y100{bottom:223.560000px;}
.y1bb{bottom:224.100000px;}
.y98{bottom:224.460000px;}
.y20d{bottom:226.080000px;}
.y1d9{bottom:226.980000px;}
.y25c{bottom:227.160000px;}
.y10b{bottom:229.500000px;}
.y240{bottom:230.760000px;}
.y27d{bottom:232.560000px;}
.ye8{bottom:234.360000px;}
.y16a{bottom:235.800000px;}
.y19d{bottom:236.340000px;}
.y23c{bottom:237.960000px;}
.y1ed{bottom:239.760000px;}
.yba{bottom:241.560000px;}
.y254{bottom:243.180000px;}
.y215{bottom:244.620000px;}
.y13d{bottom:245.160000px;}
.y31{bottom:246.225240px;}
.y244{bottom:246.240000px;}
.y156{bottom:246.420000px;}
.y227{bottom:248.760000px;}
.y12d{bottom:254.160000px;}
.y181{bottom:254.700000px;}
.y1b2{bottom:256.500000px;}
.y97{bottom:256.860000px;}
.y20c{bottom:258.480000px;}
.y1d8{bottom:259.380000px;}
.y25b{bottom:259.560000px;}
.y10a{bottom:261.900000px;}
.y1fb{bottom:263.160000px;}
.ye7{bottom:266.760000px;}
.y169{bottom:268.200000px;}
.y23b{bottom:270.360000px;}
.y30{bottom:271.434060px;}
.y27c{bottom:272.160000px;}
.yff{bottom:273.960000px;}
.y214{bottom:277.020000px;}
.y13c{bottom:277.560000px;}
.y155{bottom:278.820000px;}
.y1d7{bottom:280.980000px;}
.y226{bottom:281.160000px;}
.y19c{bottom:283.680000px;}
.y180{bottom:287.100000px;}
.yb9{bottom:288.900000px;}
.y168{bottom:289.260000px;}
.y96{bottom:289.800000px;}
.y20b{bottom:290.880000px;}
.y25a{bottom:291.960000px;}
.y253{bottom:293.580000px;}
.y27b{bottom:293.760000px;}
.y109{bottom:294.300000px;}
.y1fa{bottom:295.560000px;}
.y2f{bottom:295.905780px;}
.ye6{bottom:299.160000px;}
.y23a{bottom:302.760000px;}
.y12c{bottom:304.560000px;}
.yfe{bottom:306.360000px;}
.y13b{bottom:309.960000px;}
.y154{bottom:311.220000px;}
.y238{bottom:312.300000px;}
.y225{bottom:313.560000px;}
.y27a{bottom:315.360000px;}
.y19b{bottom:316.080000px;}
.y64{bottom:318.960000px;}
.y1ec{bottom:319.500000px;}
.yb8{bottom:321.300000px;}
.y2e{bottom:321.830640px;}
.y167{bottom:322.200000px;}
.y20a{bottom:323.280000px;}
.y18b{bottom:323.640000px;}
.y213{bottom:324.360000px;}
.y252{bottom:325.980000px;}
.y95{bottom:326.700000px;}
.y1f9{bottom:327.960000px;}
.y1d6{bottom:328.500000px;}
.ye5{bottom:331.560000px;}
.y17f{bottom:334.440000px;}
.y166{bottom:336.060000px;}
.y12b{bottom:336.960000px;}
.yfd{bottom:338.760000px;}
.y13a{bottom:342.360000px;}
.y153{bottom:343.620000px;}
.y237{bottom:344.700000px;}
.y224{bottom:345.960000px;}
.y2d{bottom:347.039460px;}
.y108{bottom:347.580000px;}
.y19a{bottom:348.480000px;}
.y63{bottom:351.360000px;}
.y1eb{bottom:351.900000px;}
.yb7{bottom:353.700000px;}
.y212{bottom:356.760000px;}
.y18a{bottom:357.660000px;}
.y251{bottom:358.380000px;}
.y279{bottom:358.560000px;}
.y1f8{bottom:360.360000px;}
.y1d5{bottom:360.900000px;}
.y94{bottom:363.060000px;}
.ye4{bottom:363.960000px;}
.y17e{bottom:366.840000px;}
.y12a{bottom:369.360000px;}
.yfc{bottom:371.160000px;}
.y189{bottom:371.520000px;}
.y2c{bottom:372.248280px;}
.y209{bottom:373.680000px;}
.y139{bottom:374.760000px;}
.y152{bottom:376.020000px;}
.y236{bottom:377.100000px;}
.y223{bottom:378.360000px;}
.y278{bottom:380.160000px;}
.y199{bottom:380.880000px;}
.y62{bottom:383.760000px;}
.y1ea{bottom:384.300000px;}
.yb6{bottom:386.100000px;}
.y115{bottom:389.160000px;}
.y250{bottom:390.780000px;}
.y1f7{bottom:392.760000px;}
.y1d4{bottom:393.300000px;}
.y2b{bottom:396.720000px;}
.y17d{bottom:399.240000px;}
.y93{bottom:399.960000px;}
.y129{bottom:401.760000px;}
.yfb{bottom:403.560000px;}
.y1b1{bottom:404.100000px;}
.y208{bottom:406.080000px;}
.y149{bottom:407.160000px;}
.y1c6{bottom:408.060000px;}
.y151{bottom:408.420000px;}
.y235{bottom:409.500000px;}
.y222{bottom:410.760000px;}
.y198{bottom:413.280000px;}
.ye3{bottom:414.360000px;}
.y61{bottom:416.160000px;}
.y1e9{bottom:416.700000px;}
.yb5{bottom:418.500000px;}
.y2a{bottom:421.560000px;}
.y24f{bottom:423.180000px;}
.y277{bottom:423.360000px;}
.y1f6{bottom:425.160000px;}
.y1d3{bottom:425.700000px;}
.yd0{bottom:430.020000px;}
.y17c{bottom:431.640000px;}
.y138{bottom:432.720000px;}
.y128{bottom:434.160000px;}
.yfa{bottom:435.960000px;}
.y1b0{bottom:436.500000px;}
.y92{bottom:436.860000px;}
.y207{bottom:438.480000px;}
.y148{bottom:439.560000px;}
.y1c5{bottom:440.460000px;}
.y150{bottom:440.820000px;}
.y234{bottom:441.900000px;}
.y29{bottom:443.160000px;}
.y276{bottom:444.960000px;}
.y197{bottom:445.680000px;}
.ye2{bottom:446.760000px;}
.y60{bottom:448.560000px;}
.y1e8{bottom:449.100000px;}
.y262{bottom:450.720000px;}
.yb4{bottom:450.900000px;}
.y114{bottom:453.960000px;}
.y24e{bottom:455.760000px;}
.y1f5{bottom:457.560000px;}
.y1d2{bottom:458.100000px;}
.y17b{bottom:464.040000px;}
.y28{bottom:464.760000px;}
.y275{bottom:466.560000px;}
.yf9{bottom:468.360000px;}
.y1af{bottom:468.900000px;}
.y206{bottom:470.880000px;}
.y147{bottom:471.960000px;}
.y1c4{bottom:472.860000px;}
.y165{bottom:473.220000px;}
.y91{bottom:473.760000px;}
.y233{bottom:474.300000px;}
.y221{bottom:475.560000px;}
.ycf{bottom:477.360000px;}
.ye1{bottom:479.160000px;}
.y5f{bottom:480.960000px;}
.y1e7{bottom:481.500000px;}
.yb3{bottom:483.300000px;}
.y127{bottom:484.560000px;}
.y27{bottom:486.360000px;}
.y14f{bottom:486.720000px;}
.y274{bottom:488.160000px;}
.y1f4{bottom:489.960000px;}
.y1d1{bottom:490.500000px;}
.y196{bottom:493.020000px;}
.y17a{bottom:496.440000px;}
.yf8{bottom:500.760000px;}
.y1ae{bottom:501.300000px;}
.y146{bottom:504.360000px;}
.y1c3{bottom:505.260000px;}
.y164{bottom:505.620000px;}
.y24d{bottom:506.160000px;}
.y232{bottom:506.700000px;}
.y26{bottom:507.960000px;}
.yce{bottom:509.760000px;}
.y90{bottom:510.660000px;}
.ye0{bottom:511.560000px;}
.y5e{bottom:513.360000px;}
.y1e6{bottom:513.900000px;}
.yb2{bottom:515.700000px;}
.y126{bottom:516.960000px;}
.y113{bottom:518.760000px;}
.y220{bottom:521.460000px;}
.y1f3{bottom:522.360000px;}
.y1d0{bottom:522.900000px;}
.y205{bottom:524.160000px;}
.y195{bottom:525.420000px;}
.y179{bottom:528.840000px;}
.y25{bottom:529.560000px;}
.y273{bottom:531.360000px;}
.y107{bottom:533.160000px;}
.y1ad{bottom:533.700000px;}
.y1e5{bottom:536.400000px;}
.y145{bottom:536.760000px;}
.y1c2{bottom:537.660000px;}
.y163{bottom:538.020000px;}
.y24c{bottom:538.560000px;}
.y231{bottom:539.100000px;}
.ycd{bottom:542.160000px;}
.ydf{bottom:543.960000px;}
.y5d{bottom:545.760000px;}
.y8f{bottom:547.560000px;}
.yb1{bottom:548.100000px;}
.y125{bottom:549.360000px;}
.y24{bottom:551.160000px;}
.y272{bottom:552.960000px;}
.y14e{bottom:554.760000px;}
.y1cf{bottom:555.300000px;}
.y194{bottom:558.000000px;}
.y178{bottom:561.240000px;}
.y133{bottom:565.560000px;}
.y1ac{bottom:566.100000px;}
.y259{bottom:569.160000px;}
.y1c1{bottom:570.060000px;}
.y162{bottom:570.420000px;}
.y24b{bottom:570.960000px;}
.y23{bottom:572.760000px;}
.ycc{bottom:574.560000px;}
.y1ce{bottom:576.900000px;}
.y5c{bottom:578.160000px;}
.y1e4{bottom:578.682000px;}
.y204{bottom:580.140000px;}
.yb0{bottom:580.500000px;}
.y124{bottom:581.760000px;}
.yf7{bottom:583.560000px;}
.y8e{bottom:584.460000px;}
.y144{bottom:587.160000px;}
.y21f{bottom:589.500000px;}
.y193{bottom:590.400000px;}
.ya2{bottom:592.560000px;}
.y177{bottom:593.640000px;}
.y22{bottom:594.360000px;}
.y271{bottom:596.160000px;}
.y137{bottom:597.960000px;}
.y1ab{bottom:598.499850px;}
.y258{bottom:601.560000px;}
.y161{bottom:602.820000px;}
.y24a{bottom:603.360000px;}
.y1cd{bottom:606.600000px;}
.ycb{bottom:606.960000px;}
.y5b{bottom:610.560000px;}
.y203{bottom:612.540000px;}
.yaf{bottom:612.900000px;}
.yf6{bottom:615.960000px;}
.y21{bottom:616.284720px;}
.y270{bottom:617.760000px;}
.y1e3{bottom:617.926500px;}
.y143{bottom:619.560000px;}
.y4b{bottom:620.100000px;}
.y8d{bottom:621.360000px;}
.y21e{bottom:621.900000px;}
.y230{bottom:622.080000px;}
.y192{bottom:622.800000px;}
.y239{bottom:624.780000px;}
.ya1{bottom:624.960000px;}
.yde{bottom:626.760000px;}
.y136{bottom:630.360000px;}
.y1aa{bottom:631.079850px;}
.y123{bottom:632.160000px;}
.y112{bottom:633.960000px;}
.y160{bottom:635.220000px;}
.y249{bottom:635.760000px;}
.yca{bottom:639.360000px;}
.y176{bottom:640.980000px;}
.y20{bottom:641.493540px;}
.y4a{bottom:642.240000px;}
.y5a{bottom:642.960000px;}
.y202{bottom:644.940000px;}
.yae{bottom:645.480000px;}
.yf5{bottom:648.360000px;}
.y142{bottom:651.960000px;}
.y1c0{bottom:652.860000px;}
.y21d{bottom:654.480000px;}
.y191{bottom:655.200000px;}
.y1e2{bottom:657.346500px;}
.ya0{bottom:657.360000px;}
.y8c{bottom:658.260000px;}
.ydd{bottom:659.160000px;}
.y26f{bottom:660.960000px;}
.y1ba{bottom:662.760000px;}
.y1a9{bottom:663.479850px;}
.y49{bottom:663.840000px;}
.y74{bottom:664.020000px;}
.y122{bottom:664.560000px;}
.y111{bottom:666.360000px;}
.y1f{bottom:666.702360px;}
.y15f{bottom:667.620000px;}
.y248{bottom:668.160000px;}
.yc9{bottom:671.760000px;}
.y175{bottom:673.560000px;}
.y1cc{bottom:674.640000px;}
.y59{bottom:675.360000px;}
.y201{bottom:677.340000px;}
.yad{bottom:677.880000px;}
.y1bf{bottom:680.400000px;}
.yf4{bottom:680.760000px;}
.y26e{bottom:682.560000px;}
.y80{bottom:683.820000px;}
.y141{bottom:684.360000px;}
.y21c{bottom:686.880000px;}
.y190{bottom:687.600000px;}
.y9f{bottom:689.760000px;}
.ydc{bottom:691.560000px;}
.y1e{bottom:691.911180px;}
.y48{bottom:692.100000px;}
.y1b9{bottom:695.160000px;}
.y8b{bottom:695.700000px;}
.y1a8{bottom:695.879850px;}
.y73{bottom:696.420000px;}
.y1e1{bottom:696.591000px;}
.y121{bottom:696.960000px;}
.y110{bottom:698.760000px;}
.y15e{bottom:700.020000px;}
.y247{bottom:700.560000px;}
.y261{bottom:702.360000px;}
.y26d{bottom:704.160000px;}
.ya7{bottom:705.960000px;}
.y1cb{bottom:707.040000px;}
.y58{bottom:707.760000px;}
.y200{bottom:709.740000px;}
.yac{bottom:710.280000px;}
.yf3{bottom:713.160000px;}
.y7f{bottom:716.760000px;}
.y1d{bottom:717.120000px;}
.yc8{bottom:719.280000px;}
.y18f{bottom:720.000000px;}
.y211{bottom:721.980000px;}
.y9e{bottom:722.160000px;}
.ydb{bottom:723.960000px;}
.y26c{bottom:725.760000px;}
.y1b8{bottom:727.560000px;}
.y1a7{bottom:728.279850px;}
.y6{bottom:728.280000px;}
.y72{bottom:729.360000px;}
.y10f{bottom:731.160000px;}
.y8a{bottom:732.060000px;}
.y15d{bottom:732.420000px;}
.y260{bottom:734.760000px;}
.y1e0{bottom:735.835500px;}
.y174{bottom:738.360000px;}
.y1ca{bottom:739.440000px;}
.y57{bottom:740.160000px;}
.y1ff{bottom:742.140000px;}
.y47{bottom:742.500000px;}
.yab{bottom:742.680000px;}
.y1c{bottom:743.954040px;}
.y246{bottom:744.480000px;}
.yf2{bottom:745.560000px;}
.y26b{bottom:747.360000px;}
.y7e{bottom:749.160000px;}
.y71{bottom:750.960000px;}
.yc7{bottom:751.680000px;}
.y9d{bottom:754.560000px;}
.yda{bottom:756.360000px;}
.y245{bottom:758.340000px;}
.y1b7{bottom:759.960000px;}
.y5{bottom:760.127760px;}
.y14d{bottom:760.320000px;}
.y18e{bottom:760.500000px;}
.y1a6{bottom:760.679850px;}
.y120{bottom:761.760000px;}
.y106{bottom:763.560000px;}
.y1fe{bottom:764.640000px;}
.y15c{bottom:764.820000px;}
.y25f{bottom:767.160000px;}
.y89{bottom:768.960000px;}
.y173{bottom:770.760000px;}
.y56{bottom:772.560000px;}
.y1b{bottom:774.549360px;}
.y46{bottom:774.900000px;}
.y1df{bottom:775.255500px;}
.yf1{bottom:777.960000px;}
.y1c9{bottom:779.940000px;}
.y7d{bottom:781.560000px;}
.y70{bottom:783.360000px;}
.yc6{bottom:784.080000px;}
.y9c{bottom:786.960000px;}
.yaa{bottom:790.020000px;}
.y26a{bottom:790.560000px;}
.y4{bottom:792.180000px;}
.ya6{bottom:792.360000px;}
.y1a5{bottom:793.079850px;}
.y11f{bottom:794.160000px;}
.y18d{bottom:794.520000px;}
.y105{bottom:795.960000px;}
.y15b{bottom:797.220000px;}
.y21b{bottom:799.020000px;}
.y25e{bottom:799.560000px;}
.y172{bottom:803.160000px;}
.y55{bottom:804.960000px;}
.y1a{bottom:805.144680px;}
.y88{bottom:805.860000px;}
.y45{bottom:806.760000px;}
.y1fd{bottom:806.940000px;}
.yf0{bottom:810.360000px;}
.y269{bottom:812.160000px;}
.y7c{bottom:813.960000px;}
.y1c8{bottom:814.140000px;}
.yd9{bottom:814.320000px;}
.y1de{bottom:814.500000px;}
.y6f{bottom:815.760000px;}
.yc5{bottom:816.480000px;}
.y9b{bottom:819.360000px;}
.y18c{bottom:820.980000px;}
.ya9{bottom:822.420000px;}
.y3{bottom:823.500000px;}
.y1a4{bottom:825.479850px;}
.y11e{bottom:826.560000px;}
.y104{bottom:828.360000px;}
.y1dd{bottom:831.420000px;}
.y1fc{bottom:831.600000px;}
.y25d{bottom:831.960000px;}
.y268{bottom:833.760000px;}
.y22f{bottom:834.480000px;}
.ya5{bottom:835.560000px;}
.y19{bottom:835.740000px;}
.y54{bottom:837.360000px;}
.y1c7{bottom:838.800000px;}
.y171{bottom:838.979850px;}
.y44{bottom:839.160000px;}
.y135{bottom:842.760000px;}
.y15a{bottom:843.120000px;}
.y87{bottom:843.300000px;}
.y7b{bottom:846.360000px;}
.y6e{bottom:848.160000px;}
.yc4{bottom:848.880000px;}
.y9a{bottom:851.760000px;}
.ya8{bottom:854.820000px;}
.y267{bottom:855.360000px;}
.y11d{bottom:858.960000px;}
.yef{bottom:860.760000px;}
.y170{bottom:863.460000px;}
.y21a{bottom:863.820000px;}
.y18{bottom:864.360000px;}
.y22e{bottom:866.880000px;}
.y53{bottom:869.760000px;}
.y1a3{bottom:871.380000px;}
.y43{bottom:871.560000px;}
.y2{bottom:872.640000px;}
.y134{bottom:875.160000px;}
.y7a{bottom:878.760000px;}
.y86{bottom:879.660000px;}
.y6d{bottom:880.560000px;}
.yd8{bottom:882.360000px;}
.y17{bottom:885.960000px;}
.y11c{bottom:891.360000px;}
.yee{bottom:893.160000px;}
.y266{bottom:894.960000px;}
.yc3{bottom:896.220000px;}
.y22d{bottom:899.280000px;}
.y52{bottom:902.160000px;}
.y42{bottom:903.960000px;}
.y188{bottom:907.560000px;}
.y16{bottom:908.824680px;}
.y79{bottom:911.160000px;}
.y6c{bottom:912.960000px;}
.yd7{bottom:914.760000px;}
.y85{bottom:916.560000px;}
.y99{bottom:916.920000px;}
.ya4{bottom:921.960000px;}
.yed{bottom:925.560000px;}
.yc2{bottom:928.620000px;}
.y22c{bottom:931.680000px;}
.y51{bottom:934.560000px;}
.y41{bottom:936.360000px;}
.y15{bottom:939.420000px;}
.y11b{bottom:941.760000px;}
.y78{bottom:943.560000px;}
.y6b{bottom:945.360000px;}
.yd6{bottom:947.160000px;}
.y84{bottom:953.460000px;}
.y265{bottom:956.160000px;}
.yec{bottom:957.960000px;}
.yc1{bottom:961.020000px;}
.y22b{bottom:964.080000px;}
.ya3{bottom:965.160000px;}
.y50{bottom:966.960000px;}
.y14{bottom:968.220000px;}
.y40{bottom:968.760000px;}
.y1a2{bottom:971.820000px;}
.y11a{bottom:974.160000px;}
.y77{bottom:975.960000px;}
.y6a{bottom:977.760000px;}
.yd5{bottom:979.560000px;}
.y13{bottom:986.760000px;}
.y83{bottom:990.360000px;}
.yc0{bottom:993.420000px;}
.y22a{bottom:996.300000px;}
.y4f{bottom:999.360000px;}
.y3f{bottom:1001.160000px;}
.y119{bottom:1006.560000px;}
.y12{bottom:1008.360000px;}
.y69{bottom:1010.160000px;}
.yd4{bottom:1011.960000px;}
.y1a1{bottom:1018.980000px;}
.y264{bottom:1020.960000px;}
.y132{bottom:1022.760000px;}
.ybf{bottom:1025.820000px;}
.y82{bottom:1027.800000px;}
.y11{bottom:1029.960000px;}
.y4e{bottom:1031.760000px;}
.y3e{bottom:1033.560000px;}
.y65{bottom:1033.740000px;}
.y118{bottom:1039.140000px;}
.y76{bottom:1040.760000px;}
.y68{bottom:1042.740000px;}
.yd3{bottom:1044.540000px;}
.y1f2{bottom:1049.760000px;}
.y10{bottom:1051.740000px;}
.y187{bottom:1055.160000px;}
.y131{bottom:1055.340000px;}
.ybe{bottom:1058.220000px;}
.y4d{bottom:1064.340000px;}
.y81{bottom:1064.880000px;}
.y3d{bottom:1066.140000px;}
.y117{bottom:1071.540000px;}
.yf{bottom:1073.340000px;}
.y67{bottom:1075.140000px;}
.yd2{bottom:1076.940000px;}
.y1{bottom:1078.380000px;}
.y263{bottom:1085.940000px;}
.y8{bottom:1093.500000px;}
.ye{bottom:1094.940000px;}
.y186{bottom:1097.100000px;}
.y3c{bottom:1098.540000px;}
.ya{bottom:1101.240000px;}
.y75{bottom:1105.740000px;}
.y66{bottom:1107.540000px;}
.yd{bottom:1116.540000px;}
.y3b{bottom:1119.600000px;}
.yd1{bottom:1120.320000px;}
.y4c{bottom:1120.500000px;}
.y116{bottom:1129.500000px;}
.y159{bottom:1137.960000px;}
.yc{bottom:1138.140000px;}
.y3a{bottom:1138.680000px;}
.h7{height:29.700000px;}
.h15{height:32.305781px;}
.h16{height:39.830273px;}
.h14{height:47.915918px;}
.h4{height:47.988281px;}
.h6{height:50.305781px;}
.hf{height:53.026949px;}
.h18{height:58.710938px;}
.hc{height:60.609375px;}
.h17{height:60.609975px;}
.h10{height:61.523438px;}
.h11{height:63.887891px;}
.h19{height:68.488594px;}
.hd{height:70.912969px;}
.he{height:71.982422px;}
.h2{height:73.337344px;}
.h8{height:74.443359px;}
.h3{height:86.065312px;}
.h5{height:87.363281px;}
.h13{height:92.285156px;}
.h12{height:123.046875px;}
.ha{height:1262.880000px;}
.hb{height:1263.000000px;}
.h0{height:1288.260000px;}
.h9{height:1288.440000px;}
.h1{height:1288.500000px;}
.w2{width:280.980000px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.w1{width:1896.000000px;}
.w0{width:1896.300000px;}
.x5{left:-12.240000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x6{left:127.620000px;}
.x4b{left:142.380000px;}
.x3c{left:148.680000px;}
.x17{left:154.620000px;}
.x42{left:156.240000px;}
.x54{left:169.920000px;}
.x28{left:176.760000px;}
.xf{left:181.620000px;}
.x4f{left:222.660000px;}
.x2c{left:225.000000px;}
.x4d{left:232.380000px;}
.x45{left:235.440000px;}
.x23{left:236.880000px;}
.x68{left:238.680000px;}
.x67{left:242.100000px;}
.x72{left:244.980000px;}
.x51{left:247.320000px;}
.x26{left:249.120000px;}
.x29{left:250.740000px;}
.x48{left:254.520000px;}
.x3d{left:257.040000px;}
.x2e{left:265.860000px;}
.x50{left:274.500000px;}
.x24{left:278.820000px;}
.xe{left:280.620000px;}
.x4a{left:289.260000px;}
.x4c{left:300.960000px;}
.x2b{left:305.640000px;}
.x70{left:307.800000px;}
.x55{left:311.400000px;}
.x1a{left:313.560000px;}
.x33{left:315.900000px;}
.x11{left:327.600000px;}
.x3a{left:333.900000px;}
.x3b{left:338.751000px;}
.x14{left:342.360000px;}
.x1b{left:343.440000px;}
.x47{left:344.700000px;}
.x49{left:350.100000px;}
.x15{left:352.080000px;}
.x63{left:359.100000px;}
.x34{left:364.320000px;}
.x64{left:367.920000px;}
.x8{left:372.240000px;}
.x65{left:376.740000px;}
.x2f{left:378.180000px;}
.x5d{left:393.660000px;}
.x36{left:395.100000px;}
.x4e{left:403.380000px;}
.xb{left:405.000000px;}
.x5f{left:410.040000px;}
.x5e{left:411.300000px;}
.x60{left:417.060000px;}
.x30{left:426.600000px;}
.x18{left:439.920000px;}
.x16{left:441.720000px;}
.x10{left:443.340000px;}
.xc{left:445.140000px;}
.xd{left:448.560000px;}
.x52{left:455.580000px;}
.x9{left:459.180000px;}
.x1f{left:462.240000px;}
.x12{left:467.820000px;}
.x35{left:471.240000px;}
.x21{left:475.200000px;}
.x37{left:479.700000px;}
.x57{left:488.880000px;}
.x13{left:490.320000px;}
.x58{left:493.200000px;}
.x44{left:497.160000px;}
.x59{left:519.660000px;}
.x20{left:521.280000px;}
.x3e{left:522.540000px;}
.x38{left:535.140000px;}
.x22{left:538.200000px;}
.x7{left:540.540000px;}
.xa{left:570.772620px;}
.x69{left:588.600000px;}
.x56{left:601.740000px;}
.x6a{left:614.160000px;}
.x66{left:615.420000px;}
.x6b{left:618.840000px;}
.x3f{left:629.640000px;}
.x5a{left:632.160000px;}
.x6e{left:633.780000px;}
.x31{left:645.660000px;}
.x6c{left:650.160000px;}
.x6f{left:651.600000px;}
.x71{left:654.300000px;}
.x5b{left:662.940000px;}
.x5c{left:680.580000px;}
.x43{left:681.840000px;}
.x61{left:683.640000px;}
.x39{left:684.720000px;}
.x62{left:687.780000px;}
.x46{left:693.720000px;}
.x41{left:697.320000px;}
.x27{left:700.920000px;}
.x53{left:702.360000px;}
.x40{left:706.680000px;}
.x32{left:714.060000px;}
.x2d{left:717.300000px;}
.x1d{left:723.420000px;}
.x25{left:730.800000px;}
.x2a{left:735.300000px;}
.x19{left:760.140000px;}
.x6d{left:764.100000px;}
.x1e{left:765.360000px;}
.x1c{left:769.140000px;}
.x3{left:958.680000px;}
.x1{left:1326.600000px;}
.x4{left:1535.940000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls51{letter-spacing:-0.860140pt;}
.ls25{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.727040pt;}
.ls2d{letter-spacing:-0.704000pt;}
.ls4b{letter-spacing:-0.690560pt;}
.ls42{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.545280pt;}
.ls34{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.337310pt;}
.ls46{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.299520pt;}
.ls20{letter-spacing:-0.269848pt;}
.ls3e{letter-spacing:-0.265600pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls3d{letter-spacing:-0.252982pt;}
.lsd{letter-spacing:-0.224640pt;}
.ls4c{letter-spacing:-0.212480pt;}
.ls44{letter-spacing:-0.202386pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.181760pt;}
.ls45{letter-spacing:-0.151789pt;}
.ls54{letter-spacing:-0.149760pt;}
.ls22{letter-spacing:-0.134924pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.090880pt;}
.ls2{letter-spacing:-0.077440pt;}
.lsf{letter-spacing:-0.074880pt;}
.ls24{letter-spacing:-0.067462pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls49{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.050596pt;}
.ls8{letter-spacing:0.053120pt;}
.ls10{letter-spacing:0.055993pt;}
.lsa{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.067462pt;}
.ls23{letter-spacing:0.074208pt;}
.ls41{letter-spacing:0.101193pt;}
.ls11{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.134924pt;}
.ls9{letter-spacing:0.149760pt;}
.ls43{letter-spacing:0.151789pt;}
.ls4a{letter-spacing:0.159360pt;}
.ls39{letter-spacing:0.188160pt;}
.ls12{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.256000pt;}
.ls48{letter-spacing:0.265600pt;}
.ls5d{letter-spacing:0.313600pt;}
.ls3f{letter-spacing:0.318720pt;}
.ls16{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.337310pt;}
.ls0{letter-spacing:0.363520pt;}
.ls52{letter-spacing:0.384000pt;}
.ls53{letter-spacing:0.448000pt;}
.ls5f{letter-spacing:0.472233pt;}
.ls4f{letter-spacing:0.576000pt;}
.ls59{letter-spacing:0.633600pt;}
.ls28{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls5c{letter-spacing:1.900800pt;}
.ls56{letter-spacing:1.913600pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls33{letter-spacing:3.200000pt;}
.ls3b{letter-spacing:3.335936pt;}
.ls2b{letter-spacing:3.840000pt;}
.ls5a{letter-spacing:4.480000pt;}
.ls15{letter-spacing:4.857258pt;}
.ls50{letter-spacing:5.120000pt;}
.ls58{letter-spacing:5.760000pt;}
.ls2a{letter-spacing:6.400000pt;}
.ls1e{letter-spacing:7.040000pt;}
.ls57{letter-spacing:8.320000pt;}
.ls36{letter-spacing:8.960000pt;}
.ls47{letter-spacing:9.136640pt;}
.ls2e{letter-spacing:9.600000pt;}
.ls1a{letter-spacing:10.240000pt;}
.ls2c{letter-spacing:10.880000pt;}
.ls30{letter-spacing:11.520000pt;}
.ls40{letter-spacing:12.160000pt;}
.ls4e{letter-spacing:13.440000pt;}
.ls32{letter-spacing:14.080000pt;}
.ls1d{letter-spacing:14.720000pt;}
.ls3a{letter-spacing:16.000000pt;}
.ls55{letter-spacing:17.920000pt;}
.ls29{letter-spacing:20.480000pt;}
.ls38{letter-spacing:21.760000pt;}
.ls37{letter-spacing:26.880000pt;}
.ls27{letter-spacing:31.488000pt;}
.ls5b{letter-spacing:38.400000pt;}
.ls4d{letter-spacing:39.808000pt;}
.ls5e{letter-spacing:736.000000pt;}
.ls13{letter-spacing:752.000000pt;}
.ls1{letter-spacing:1443.200000pt;}
.wse6{word-spacing:-64.000000pt;}
.ws26{word-spacing:-31.872000pt;}
.ws0{word-spacing:-22.720000pt;}
.wse{word-spacing:-18.869760pt;}
.wsc{word-spacing:-18.720000pt;}
.wsf{word-spacing:-18.645120pt;}
.wsd{word-spacing:-18.420480pt;}
.wsf0{word-spacing:-17.202790pt;}
.wsf1{word-spacing:-17.000405pt;}
.wscc{word-spacing:-16.932943pt;}
.ws3b{word-spacing:-16.865481pt;}
.wseb{word-spacing:-16.798019pt;}
.wscb{word-spacing:-16.730557pt;}
.ws124{word-spacing:-16.663095pt;}
.wscd{word-spacing:-16.595633pt;}
.ws1c{word-spacing:-16.320000pt;}
.ws5e{word-spacing:-16.192000pt;}
.ws27{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws18{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.936000pt;}
.ws1b{word-spacing:-15.872000pt;}
.ws1a{word-spacing:-15.808000pt;}
.ws3c{word-spacing:-15.744000pt;}
.wsa6{word-spacing:-15.424000pt;}
.wsdf{word-spacing:-13.333120pt;}
.wsd5{word-spacing:-12.497321pt;}
.ws24{word-spacing:-4.857258pt;}
.ws102{word-spacing:-4.608000pt;}
.wsae{word-spacing:-4.160000pt;}
.ws65{word-spacing:-3.968000pt;}
.wsd4{word-spacing:-3.904000pt;}
.ws94{word-spacing:-3.776000pt;}
.ws64{word-spacing:-3.712000pt;}
.wsd7{word-spacing:-3.648000pt;}
.wsb5{word-spacing:-3.584000pt;}
.ws125{word-spacing:-3.520000pt;}
.ws8f{word-spacing:-3.328000pt;}
.ws22{word-spacing:-3.072000pt;}
.ws58{word-spacing:-2.880000pt;}
.ws1e{word-spacing:-2.688000pt;}
.ws8a{word-spacing:-2.624000pt;}
.wsf6{word-spacing:-2.563553pt;}
.ws1f{word-spacing:-2.496000pt;}
.ws20{word-spacing:-2.432000pt;}
.ws10e{word-spacing:-2.368000pt;}
.ws89{word-spacing:-2.304000pt;}
.ws130{word-spacing:-2.240000pt;}
.ws9a{word-spacing:-2.048000pt;}
.ws4b{word-spacing:-1.984000pt;}
.ws122{word-spacing:-1.856000pt;}
.ws30{word-spacing:-1.792000pt;}
.ws39{word-spacing:-1.408000pt;}
.wsc3{word-spacing:-1.344000pt;}
.ws134{word-spacing:-1.280000pt;}
.wsdd{word-spacing:-1.216000pt;}
.ws35{word-spacing:-1.152000pt;}
.ws92{word-spacing:-1.024000pt;}
.ws52{word-spacing:-1.011929pt;}
.ws116{word-spacing:-0.960000pt;}
.ws10d{word-spacing:-0.823680pt;}
.ws51{word-spacing:-0.809543pt;}
.ws33{word-spacing:-0.768000pt;}
.ws82{word-spacing:-0.704000pt;}
.ws111{word-spacing:-0.673920pt;}
.ws77{word-spacing:-0.640000pt;}
.ws5c{word-spacing:-0.576000pt;}
.ws133{word-spacing:-0.539695pt;}
.wsc7{word-spacing:-0.531200pt;}
.ws34{word-spacing:-0.512000pt;}
.ws137{word-spacing:-0.472233pt;}
.wsfe{word-spacing:-0.448000pt;}
.wsee{word-spacing:-0.384000pt;}
.ws53{word-spacing:-0.337310pt;}
.ws59{word-spacing:-0.320000pt;}
.ws16{word-spacing:-0.299520pt;}
.ws5d{word-spacing:-0.256000pt;}
.ws9e{word-spacing:-0.192000pt;}
.wsca{word-spacing:-0.159360pt;}
.ws15{word-spacing:-0.149760pt;}
.ws3f{word-spacing:-0.134924pt;}
.ws25{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.090880pt;}
.ws1{word-spacing:-0.077440pt;}
.ws126{word-spacing:-0.067462pt;}
.ws37{word-spacing:-0.064000pt;}
.wsc5{word-spacing:-0.050596pt;}
.ws2{word-spacing:0.000000pt;}
.wsce{word-spacing:0.050596pt;}
.ws10{word-spacing:0.064000pt;}
.ws50{word-spacing:0.067462pt;}
.ws13{word-spacing:0.074880pt;}
.wsd9{word-spacing:0.101193pt;}
.wsa{word-spacing:0.106240pt;}
.ws17{word-spacing:0.111987pt;}
.ws11{word-spacing:0.128000pt;}
.ws40{word-spacing:0.134924pt;}
.wsdb{word-spacing:0.151789pt;}
.ws4{word-spacing:0.181760pt;}
.ws1d{word-spacing:0.192000pt;}
.ws12c{word-spacing:0.202386pt;}
.ws14{word-spacing:0.224640pt;}
.wsd8{word-spacing:0.252982pt;}
.ws38{word-spacing:0.256000pt;}
.ws3e{word-spacing:0.269848pt;}
.ws9{word-spacing:0.272640pt;}
.ws7d{word-spacing:0.288000pt;}
.ws70{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.337310pt;}
.wsda{word-spacing:0.354175pt;}
.ws9f{word-spacing:0.384000pt;}
.wsc6{word-spacing:0.404772pt;}
.wsd6{word-spacing:0.480000pt;}
.ws93{word-spacing:0.512000pt;}
.ws3{word-spacing:0.545280pt;}
.wsdc{word-spacing:0.576000pt;}
.wsd0{word-spacing:0.640000pt;}
.wse2{word-spacing:0.690560pt;}
.ws31{word-spacing:0.704000pt;}
.ws69{word-spacing:0.768000pt;}
.ws57{word-spacing:0.832000pt;}
.wsf5{word-spacing:0.860140pt;}
.ws9c{word-spacing:0.896000pt;}
.wsb8{word-spacing:0.960000pt;}
.ws6a{word-spacing:1.152000pt;}
.wsa0{word-spacing:1.216000pt;}
.wsb4{word-spacing:1.344000pt;}
.wse5{word-spacing:1.381120pt;}
.ws66{word-spacing:1.408000pt;}
.ws98{word-spacing:1.536000pt;}
.ws10b{word-spacing:1.600000pt;}
.ws49{word-spacing:1.792000pt;}
.wsd2{word-spacing:1.856000pt;}
.ws106{word-spacing:1.984000pt;}
.ws48{word-spacing:2.048000pt;}
.ws97{word-spacing:2.112000pt;}
.ws10a{word-spacing:2.176000pt;}
.wsb9{word-spacing:2.368000pt;}
.ws2a{word-spacing:2.432000pt;}
.ws7f{word-spacing:2.496000pt;}
.wsf9{word-spacing:2.624000pt;}
.ws2b{word-spacing:2.688000pt;}
.wsfb{word-spacing:2.816000pt;}
.ws32{word-spacing:3.072000pt;}
.wsa7{word-spacing:3.136000pt;}
.wsb2{word-spacing:3.264000pt;}
.wsc8{word-spacing:3.293440pt;}
.ws28{word-spacing:3.328000pt;}
.wsaf{word-spacing:3.392000pt;}
.ws95{word-spacing:3.520000pt;}
.wsc9{word-spacing:3.612160pt;}
.ws96{word-spacing:3.712000pt;}
.ws10f{word-spacing:3.776000pt;}
.wsbe{word-spacing:3.904000pt;}
.ws6c{word-spacing:3.968000pt;}
.ws7c{word-spacing:4.096000pt;}
.wsa5{word-spacing:4.160000pt;}
.ws9d{word-spacing:4.352000pt;}
.ws68{word-spacing:4.416000pt;}
.ws29{word-spacing:4.608000pt;}
.wsa4{word-spacing:4.736000pt;}
.wsb7{word-spacing:4.800000pt;}
.wsa3{word-spacing:4.992000pt;}
.wsaa{word-spacing:5.056000pt;}
.ws4a{word-spacing:5.184000pt;}
.ws2f{word-spacing:5.248000pt;}
.wsfd{word-spacing:5.376000pt;}
.wsfc{word-spacing:5.531878pt;}
.wsa2{word-spacing:5.632000pt;}
.ws85{word-spacing:5.696000pt;}
.ws113{word-spacing:5.824000pt;}
.ws71{word-spacing:5.888000pt;}
.ws9b{word-spacing:6.080000pt;}
.ws117{word-spacing:6.206497pt;}
.ws7b{word-spacing:6.272000pt;}
.ws79{word-spacing:6.336000pt;}
.ws123{word-spacing:6.464000pt;}
.ws60{word-spacing:6.528000pt;}
.ws8c{word-spacing:6.656000pt;}
.ws5a{word-spacing:6.720000pt;}
.ws6b{word-spacing:6.912000pt;}
.ws104{word-spacing:6.976000pt;}
.wsac{word-spacing:7.104000pt;}
.ws2c{word-spacing:7.168000pt;}
.ws120{word-spacing:7.232000pt;}
.ws121{word-spacing:7.296000pt;}
.ws4f{word-spacing:7.488000pt;}
.wsf4{word-spacing:7.552000pt;}
.wsb3{word-spacing:7.616000pt;}
.ws3a{word-spacing:7.808000pt;}
.ws99{word-spacing:8.192000pt;}
.ws46{word-spacing:8.256000pt;}
.ws45{word-spacing:8.448000pt;}
.ws47{word-spacing:8.576000pt;}
.ws135{word-spacing:8.640000pt;}
.wsb6{word-spacing:8.832000pt;}
.ws2d{word-spacing:8.896000pt;}
.ws2e{word-spacing:9.024000pt;}
.ws36{word-spacing:9.088000pt;}
.ws12e{word-spacing:9.152000pt;}
.wse1{word-spacing:9.189760pt;}
.wsec{word-spacing:9.216000pt;}
.wse4{word-spacing:9.349120pt;}
.ws12f{word-spacing:9.377207pt;}
.wse3{word-spacing:9.402240pt;}
.ws63{word-spacing:9.472000pt;}
.ws61{word-spacing:9.536000pt;}
.wse7{word-spacing:9.579593pt;}
.ws91{word-spacing:9.664000pt;}
.ws62{word-spacing:9.728000pt;}
.ws90{word-spacing:9.856000pt;}
.ws43{word-spacing:10.112000pt;}
.wsea{word-spacing:10.176000pt;}
.ws44{word-spacing:10.368000pt;}
.ws127{word-spacing:10.432000pt;}
.ws72{word-spacing:10.752000pt;}
.ws128{word-spacing:10.861370pt;}
.ws118{word-spacing:10.944000pt;}
.ws21{word-spacing:11.008000pt;}
.wsad{word-spacing:11.072000pt;}
.ws108{word-spacing:11.136000pt;}
.wscf{word-spacing:11.200000pt;}
.ws73{word-spacing:11.392000pt;}
.wsa1{word-spacing:11.584000pt;}
.ws56{word-spacing:11.648000pt;}
.ws131{word-spacing:11.712000pt;}
.ws54{word-spacing:12.008222pt;}
.ws7a{word-spacing:12.032000pt;}
.ws84{word-spacing:12.096000pt;}
.ws107{word-spacing:12.224000pt;}
.ws55{word-spacing:12.278070pt;}
.ws83{word-spacing:12.288000pt;}
.ws132{word-spacing:12.412994pt;}
.wsd1{word-spacing:12.416000pt;}
.ws10c{word-spacing:12.480000pt;}
.ws42{word-spacing:12.672000pt;}
.wsba{word-spacing:12.928000pt;}
.ws105{word-spacing:13.056000pt;}
.wsfa{word-spacing:13.312000pt;}
.wsc1{word-spacing:13.376000pt;}
.ws67{word-spacing:13.568000pt;}
.ws41{word-spacing:13.627309pt;}
.wsed{word-spacing:13.696000pt;}
.ws5b{word-spacing:13.760000pt;}
.wsf3{word-spacing:13.952000pt;}
.wsa9{word-spacing:14.208000pt;}
.wsa8{word-spacing:14.336000pt;}
.wsf2{word-spacing:14.400000pt;}
.ws4d{word-spacing:14.528000pt;}
.ws4e{word-spacing:14.592000pt;}
.ws4c{word-spacing:14.848000pt;}
.ws81{word-spacing:14.976000pt;}
.wsc4{word-spacing:15.232000pt;}
.ws103{word-spacing:15.296000pt;}
.wsab{word-spacing:15.424000pt;}
.ws6e{word-spacing:15.488000pt;}
.ws74{word-spacing:15.872000pt;}
.ws6f{word-spacing:16.128000pt;}
.ws6d{word-spacing:16.256000pt;}
.ws80{word-spacing:16.576000pt;}
.wsd3{word-spacing:17.408000pt;}
.wse9{word-spacing:17.536000pt;}
.ws7e{word-spacing:17.792000pt;}
.ws109{word-spacing:17.984000pt;}
.wse0{word-spacing:18.048000pt;}
.ws5f{word-spacing:18.432000pt;}
.wsef{word-spacing:18.496000pt;}
.wsbb{word-spacing:18.624000pt;}
.ws23{word-spacing:18.688000pt;}
.wsc0{word-spacing:18.816000pt;}
.ws112{word-spacing:19.072000pt;}
.ws8e{word-spacing:19.328000pt;}
.ws78{word-spacing:19.712000pt;}
.ws75{word-spacing:19.968000pt;}
.ws76{word-spacing:20.032000pt;}
.wsbf{word-spacing:20.352000pt;}
.ws101{word-spacing:20.544000pt;}
.ws100{word-spacing:20.608000pt;}
.wsbd{word-spacing:21.248000pt;}
.wsf8{word-spacing:21.632000pt;}
.wsf7{word-spacing:21.696000pt;}
.wsbc{word-spacing:21.888000pt;}
.ws87{word-spacing:22.336000pt;}
.ws86{word-spacing:22.528000pt;}
.wsc2{word-spacing:22.656000pt;}
.ws114{word-spacing:22.912000pt;}
.ws115{word-spacing:23.296000pt;}
.ws8b{word-spacing:24.256000pt;}
.ws11a{word-spacing:24.896000pt;}
.ws119{word-spacing:25.088000pt;}
.ws8d{word-spacing:26.112000pt;}
.wsde{word-spacing:26.496000pt;}
.ws110{word-spacing:26.560000pt;}
.wsb1{word-spacing:26.688000pt;}
.ws88{word-spacing:26.752000pt;}
.wsb0{word-spacing:27.008000pt;}
.wse8{word-spacing:28.928000pt;}
.wsff{word-spacing:34.688000pt;}
.ws11d{word-spacing:38.272000pt;}
.ws11f{word-spacing:38.400000pt;}
.ws11b{word-spacing:38.528000pt;}
.ws11e{word-spacing:38.592000pt;}
.ws11c{word-spacing:40.544616pt;}
.ws139{word-spacing:45.760000pt;}
.ws13b{word-spacing:46.272000pt;}
.ws13a{word-spacing:48.235275pt;}
.ws7{word-spacing:51.619840pt;}
.ws6{word-spacing:59.889920pt;}
.ws12{word-spacing:59.980800pt;}
.ws5{word-spacing:60.616960pt;}
.ws129{word-spacing:77.632000pt;}
.ws12a{word-spacing:77.952000pt;}
.ws12d{word-spacing:78.272000pt;}
.ws12b{word-spacing:82.236085pt;}
.ws138{word-spacing:86.592000pt;}
.ws136{word-spacing:90.533901pt;}
._12{margin-left:-15.963072pt;}
._c{margin-left:-14.720000pt;}
._a{margin-left:-13.068293pt;}
._d{margin-left:-11.543104pt;}
._14{margin-left:-10.564160pt;}
._b{margin-left:-9.627392pt;}
._11{margin-left:-8.660544pt;}
._f{margin-left:-7.245696pt;}
._e{margin-left:-6.124928pt;}
._10{margin-left:-4.386240pt;}
._13{margin-left:-3.321216pt;}
._5{margin-left:-2.400635pt;}
._2{margin-left:-0.953152pt;}
._0{width:1.014464pt;}
._9{width:2.671680pt;}
._16{width:3.803968pt;}
._6{width:5.267072pt;}
._1c{width:7.903360pt;}
._17{width:8.979584pt;}
._18{width:9.986560pt;}
._8{width:11.010688pt;}
._15{width:12.288000pt;}
._7{width:13.419852pt;}
._1a{width:25.616064pt;}
._1b{width:27.266368pt;}
._1{width:59.889920pt;}
._3{width:110.861440pt;}
._4{width:178.695680pt;}
._19{width:1767.680000pt;}
.fs9{font-size:26.880000pt;}
.fsa{font-size:50.596443pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:55.993396pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:67.461923pt;}
.fsb{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:77.440000pt;}
.fs2{font-size:90.880000pt;}
.fs8{font-size:96.000000pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:6.880000pt;}
.y39{bottom:49.920000pt;}
.y38{bottom:69.120000pt;}
.y37{bottom:89.440000pt;}
.y1b6{bottom:96.797120pt;}
.y16f{bottom:97.442240pt;}
.y1f1{bottom:97.920000pt;}
.y210{bottom:98.560000pt;}
.y7{bottom:101.920000pt;}
.y219{bottom:102.080000pt;}
.yeb{bottom:105.920000pt;}
.y36{bottom:106.827680pt;}
.y185{bottom:111.040000pt;}
.y16e{bottom:111.997120pt;}
.y103{bottom:112.320000pt;}
.y1b5{bottom:112.799520pt;}
.y1be{bottom:113.920000pt;}
.y1dc{bottom:115.360000pt;}
.y14c{bottom:115.520000pt;}
.y10e{bottom:117.600000pt;}
.y243{bottom:118.720000pt;}
.y280{bottom:119.840000pt;}
.y1a0{bottom:123.520000pt;}
.y23f{bottom:125.120000pt;}
.y1f0{bottom:126.720000pt;}
.y20f{bottom:127.360000pt;}
.y16d{bottom:127.999520pt;}
.ybd{bottom:128.320000pt;}
.y35{bottom:129.235520pt;}
.y257{bottom:129.760000pt;}
.y218{bottom:130.880000pt;}
.y140{bottom:131.520000pt;}
.y1b4{bottom:133.280000pt;}
.yea{bottom:134.720000pt;}
.y130{bottom:139.520000pt;}
.y184{bottom:139.840000pt;}
.y102{bottom:141.120000pt;}
.y1bd{bottom:142.720000pt;}
.y1db{bottom:144.160000pt;}
.y14b{bottom:144.320000pt;}
.y10d{bottom:146.400000pt;}
.y242{bottom:147.520000pt;}
.y16c{bottom:148.480000pt;}
.y1b3{bottom:149.280000pt;}
.y27f{bottom:150.240000pt;}
.y34{bottom:151.643360pt;}
.y19f{bottom:152.480000pt;}
.y23e{bottom:153.920000pt;}
.y1ef{bottom:155.520000pt;}
.ybc{bottom:157.120000pt;}
.y256{bottom:158.560000pt;}
.y217{bottom:159.680000pt;}
.y13f{bottom:160.320000pt;}
.y158{bottom:161.280000pt;}
.y229{bottom:163.520000pt;}
.y16b{bottom:164.480000pt;}
.y12f{bottom:168.320000pt;}
.y183{bottom:168.640000pt;}
.y101{bottom:169.920000pt;}
.y27e{bottom:171.520000pt;}
.y20e{bottom:172.160000pt;}
.y1da{bottom:172.960000pt;}
.y14a{bottom:173.120000pt;}
.y33{bottom:174.051200pt;}
.y10c{bottom:175.200000pt;}
.y241{bottom:176.320000pt;}
.y1bc{bottom:177.280000pt;}
.ye9{bottom:179.520000pt;}
.y19e{bottom:181.280000pt;}
.y23d{bottom:182.720000pt;}
.y1ee{bottom:184.320000pt;}
.ybb{bottom:185.920000pt;}
.y255{bottom:187.360000pt;}
.y216{bottom:188.480000pt;}
.y13e{bottom:189.120000pt;}
.y157{bottom:190.080000pt;}
.y228{bottom:192.320000pt;}
.yb{bottom:193.760000pt;}
.y32{bottom:196.459040pt;}
.y12e{bottom:197.120000pt;}
.y182{bottom:197.440000pt;}
.y100{bottom:198.720000pt;}
.y1bb{bottom:199.200000pt;}
.y98{bottom:199.520000pt;}
.y20d{bottom:200.960000pt;}
.y1d9{bottom:201.760000pt;}
.y25c{bottom:201.920000pt;}
.y10b{bottom:204.000000pt;}
.y240{bottom:205.120000pt;}
.y27d{bottom:206.720000pt;}
.ye8{bottom:208.320000pt;}
.y16a{bottom:209.600000pt;}
.y19d{bottom:210.080000pt;}
.y23c{bottom:211.520000pt;}
.y1ed{bottom:213.120000pt;}
.yba{bottom:214.720000pt;}
.y254{bottom:216.160000pt;}
.y215{bottom:217.440000pt;}
.y13d{bottom:217.920000pt;}
.y31{bottom:218.866880pt;}
.y244{bottom:218.880000pt;}
.y156{bottom:219.040000pt;}
.y227{bottom:221.120000pt;}
.y12d{bottom:225.920000pt;}
.y181{bottom:226.400000pt;}
.y1b2{bottom:228.000000pt;}
.y97{bottom:228.320000pt;}
.y20c{bottom:229.760000pt;}
.y1d8{bottom:230.560000pt;}
.y25b{bottom:230.720000pt;}
.y10a{bottom:232.800000pt;}
.y1fb{bottom:233.920000pt;}
.ye7{bottom:237.120000pt;}
.y169{bottom:238.400000pt;}
.y23b{bottom:240.320000pt;}
.y30{bottom:241.274720pt;}
.y27c{bottom:241.920000pt;}
.yff{bottom:243.520000pt;}
.y214{bottom:246.240000pt;}
.y13c{bottom:246.720000pt;}
.y155{bottom:247.840000pt;}
.y1d7{bottom:249.760000pt;}
.y226{bottom:249.920000pt;}
.y19c{bottom:252.160000pt;}
.y180{bottom:255.200000pt;}
.yb9{bottom:256.800000pt;}
.y168{bottom:257.120000pt;}
.y96{bottom:257.600000pt;}
.y20b{bottom:258.560000pt;}
.y25a{bottom:259.520000pt;}
.y253{bottom:260.960000pt;}
.y27b{bottom:261.120000pt;}
.y109{bottom:261.600000pt;}
.y1fa{bottom:262.720000pt;}
.y2f{bottom:263.027360pt;}
.ye6{bottom:265.920000pt;}
.y23a{bottom:269.120000pt;}
.y12c{bottom:270.720000pt;}
.yfe{bottom:272.320000pt;}
.y13b{bottom:275.520000pt;}
.y154{bottom:276.640000pt;}
.y238{bottom:277.600000pt;}
.y225{bottom:278.720000pt;}
.y27a{bottom:280.320000pt;}
.y19b{bottom:280.960000pt;}
.y64{bottom:283.520000pt;}
.y1ec{bottom:284.000000pt;}
.yb8{bottom:285.600000pt;}
.y2e{bottom:286.071680pt;}
.y167{bottom:286.400000pt;}
.y20a{bottom:287.360000pt;}
.y18b{bottom:287.680000pt;}
.y213{bottom:288.320000pt;}
.y252{bottom:289.760000pt;}
.y95{bottom:290.400000pt;}
.y1f9{bottom:291.520000pt;}
.y1d6{bottom:292.000000pt;}
.ye5{bottom:294.720000pt;}
.y17f{bottom:297.280000pt;}
.y166{bottom:298.720000pt;}
.y12b{bottom:299.520000pt;}
.yfd{bottom:301.120000pt;}
.y13a{bottom:304.320000pt;}
.y153{bottom:305.440000pt;}
.y237{bottom:306.400000pt;}
.y224{bottom:307.520000pt;}
.y2d{bottom:308.479520pt;}
.y108{bottom:308.960000pt;}
.y19a{bottom:309.760000pt;}
.y63{bottom:312.320000pt;}
.y1eb{bottom:312.800000pt;}
.yb7{bottom:314.400000pt;}
.y212{bottom:317.120000pt;}
.y18a{bottom:317.920000pt;}
.y251{bottom:318.560000pt;}
.y279{bottom:318.720000pt;}
.y1f8{bottom:320.320000pt;}
.y1d5{bottom:320.800000pt;}
.y94{bottom:322.720000pt;}
.ye4{bottom:323.520000pt;}
.y17e{bottom:326.080000pt;}
.y12a{bottom:328.320000pt;}
.yfc{bottom:329.920000pt;}
.y189{bottom:330.240000pt;}
.y2c{bottom:330.887360pt;}
.y209{bottom:332.160000pt;}
.y139{bottom:333.120000pt;}
.y152{bottom:334.240000pt;}
.y236{bottom:335.200000pt;}
.y223{bottom:336.320000pt;}
.y278{bottom:337.920000pt;}
.y199{bottom:338.560000pt;}
.y62{bottom:341.120000pt;}
.y1ea{bottom:341.600000pt;}
.yb6{bottom:343.200000pt;}
.y115{bottom:345.920000pt;}
.y250{bottom:347.360000pt;}
.y1f7{bottom:349.120000pt;}
.y1d4{bottom:349.600000pt;}
.y2b{bottom:352.640000pt;}
.y17d{bottom:354.880000pt;}
.y93{bottom:355.520000pt;}
.y129{bottom:357.120000pt;}
.yfb{bottom:358.720000pt;}
.y1b1{bottom:359.200000pt;}
.y208{bottom:360.960000pt;}
.y149{bottom:361.920000pt;}
.y1c6{bottom:362.720000pt;}
.y151{bottom:363.040000pt;}
.y235{bottom:364.000000pt;}
.y222{bottom:365.120000pt;}
.y198{bottom:367.360000pt;}
.ye3{bottom:368.320000pt;}
.y61{bottom:369.920000pt;}
.y1e9{bottom:370.400000pt;}
.yb5{bottom:372.000000pt;}
.y2a{bottom:374.720000pt;}
.y24f{bottom:376.160000pt;}
.y277{bottom:376.320000pt;}
.y1f6{bottom:377.920000pt;}
.y1d3{bottom:378.400000pt;}
.yd0{bottom:382.240000pt;}
.y17c{bottom:383.680000pt;}
.y138{bottom:384.640000pt;}
.y128{bottom:385.920000pt;}
.yfa{bottom:387.520000pt;}
.y1b0{bottom:388.000000pt;}
.y92{bottom:388.320000pt;}
.y207{bottom:389.760000pt;}
.y148{bottom:390.720000pt;}
.y1c5{bottom:391.520000pt;}
.y150{bottom:391.840000pt;}
.y234{bottom:392.800000pt;}
.y29{bottom:393.920000pt;}
.y276{bottom:395.520000pt;}
.y197{bottom:396.160000pt;}
.ye2{bottom:397.120000pt;}
.y60{bottom:398.720000pt;}
.y1e8{bottom:399.200000pt;}
.y262{bottom:400.640000pt;}
.yb4{bottom:400.800000pt;}
.y114{bottom:403.520000pt;}
.y24e{bottom:405.120000pt;}
.y1f5{bottom:406.720000pt;}
.y1d2{bottom:407.200000pt;}
.y17b{bottom:412.480000pt;}
.y28{bottom:413.120000pt;}
.y275{bottom:414.720000pt;}
.yf9{bottom:416.320000pt;}
.y1af{bottom:416.800000pt;}
.y206{bottom:418.560000pt;}
.y147{bottom:419.520000pt;}
.y1c4{bottom:420.320000pt;}
.y165{bottom:420.640000pt;}
.y91{bottom:421.120000pt;}
.y233{bottom:421.600000pt;}
.y221{bottom:422.720000pt;}
.ycf{bottom:424.320000pt;}
.ye1{bottom:425.920000pt;}
.y5f{bottom:427.520000pt;}
.y1e7{bottom:428.000000pt;}
.yb3{bottom:429.600000pt;}
.y127{bottom:430.720000pt;}
.y27{bottom:432.320000pt;}
.y14f{bottom:432.640000pt;}
.y274{bottom:433.920000pt;}
.y1f4{bottom:435.520000pt;}
.y1d1{bottom:436.000000pt;}
.y196{bottom:438.240000pt;}
.y17a{bottom:441.280000pt;}
.yf8{bottom:445.120000pt;}
.y1ae{bottom:445.600000pt;}
.y146{bottom:448.320000pt;}
.y1c3{bottom:449.120000pt;}
.y164{bottom:449.440000pt;}
.y24d{bottom:449.920000pt;}
.y232{bottom:450.400000pt;}
.y26{bottom:451.520000pt;}
.yce{bottom:453.120000pt;}
.y90{bottom:453.920000pt;}
.ye0{bottom:454.720000pt;}
.y5e{bottom:456.320000pt;}
.y1e6{bottom:456.800000pt;}
.yb2{bottom:458.400000pt;}
.y126{bottom:459.520000pt;}
.y113{bottom:461.120000pt;}
.y220{bottom:463.520000pt;}
.y1f3{bottom:464.320000pt;}
.y1d0{bottom:464.800000pt;}
.y205{bottom:465.920000pt;}
.y195{bottom:467.040000pt;}
.y179{bottom:470.080000pt;}
.y25{bottom:470.720000pt;}
.y273{bottom:472.320000pt;}
.y107{bottom:473.920000pt;}
.y1ad{bottom:474.400000pt;}
.y1e5{bottom:476.800000pt;}
.y145{bottom:477.120000pt;}
.y1c2{bottom:477.920000pt;}
.y163{bottom:478.240000pt;}
.y24c{bottom:478.720000pt;}
.y231{bottom:479.200000pt;}
.ycd{bottom:481.920000pt;}
.ydf{bottom:483.520000pt;}
.y5d{bottom:485.120000pt;}
.y8f{bottom:486.720000pt;}
.yb1{bottom:487.200000pt;}
.y125{bottom:488.320000pt;}
.y24{bottom:489.920000pt;}
.y272{bottom:491.520000pt;}
.y14e{bottom:493.120000pt;}
.y1cf{bottom:493.600000pt;}
.y194{bottom:496.000000pt;}
.y178{bottom:498.880000pt;}
.y133{bottom:502.720000pt;}
.y1ac{bottom:503.200000pt;}
.y259{bottom:505.920000pt;}
.y1c1{bottom:506.720000pt;}
.y162{bottom:507.040000pt;}
.y24b{bottom:507.520000pt;}
.y23{bottom:509.120000pt;}
.ycc{bottom:510.720000pt;}
.y1ce{bottom:512.800000pt;}
.y5c{bottom:513.920000pt;}
.y1e4{bottom:514.384000pt;}
.y204{bottom:515.680000pt;}
.yb0{bottom:516.000000pt;}
.y124{bottom:517.120000pt;}
.yf7{bottom:518.720000pt;}
.y8e{bottom:519.520000pt;}
.y144{bottom:521.920000pt;}
.y21f{bottom:524.000000pt;}
.y193{bottom:524.800000pt;}
.ya2{bottom:526.720000pt;}
.y177{bottom:527.680000pt;}
.y22{bottom:528.320000pt;}
.y271{bottom:529.920000pt;}
.y137{bottom:531.520000pt;}
.y1ab{bottom:531.999867pt;}
.y258{bottom:534.720000pt;}
.y161{bottom:535.840000pt;}
.y24a{bottom:536.320000pt;}
.y1cd{bottom:539.200000pt;}
.ycb{bottom:539.520000pt;}
.y5b{bottom:542.720000pt;}
.y203{bottom:544.480000pt;}
.yaf{bottom:544.800000pt;}
.yf6{bottom:547.520000pt;}
.y21{bottom:547.808640pt;}
.y270{bottom:549.120000pt;}
.y1e3{bottom:549.268000pt;}
.y143{bottom:550.720000pt;}
.y4b{bottom:551.200000pt;}
.y8d{bottom:552.320000pt;}
.y21e{bottom:552.800000pt;}
.y230{bottom:552.960000pt;}
.y192{bottom:553.600000pt;}
.y239{bottom:555.360000pt;}
.ya1{bottom:555.520000pt;}
.yde{bottom:557.120000pt;}
.y136{bottom:560.320000pt;}
.y1aa{bottom:560.959867pt;}
.y123{bottom:561.920000pt;}
.y112{bottom:563.520000pt;}
.y160{bottom:564.640000pt;}
.y249{bottom:565.120000pt;}
.yca{bottom:568.320000pt;}
.y176{bottom:569.760000pt;}
.y20{bottom:570.216480pt;}
.y4a{bottom:570.880000pt;}
.y5a{bottom:571.520000pt;}
.y202{bottom:573.280000pt;}
.yae{bottom:573.760000pt;}
.yf5{bottom:576.320000pt;}
.y142{bottom:579.520000pt;}
.y1c0{bottom:580.320000pt;}
.y21d{bottom:581.760000pt;}
.y191{bottom:582.400000pt;}
.y1e2{bottom:584.308000pt;}
.ya0{bottom:584.320000pt;}
.y8c{bottom:585.120000pt;}
.ydd{bottom:585.920000pt;}
.y26f{bottom:587.520000pt;}
.y1ba{bottom:589.120000pt;}
.y1a9{bottom:589.759867pt;}
.y49{bottom:590.080000pt;}
.y74{bottom:590.240000pt;}
.y122{bottom:590.720000pt;}
.y111{bottom:592.320000pt;}
.y1f{bottom:592.624320pt;}
.y15f{bottom:593.440000pt;}
.y248{bottom:593.920000pt;}
.yc9{bottom:597.120000pt;}
.y175{bottom:598.720000pt;}
.y1cc{bottom:599.680000pt;}
.y59{bottom:600.320000pt;}
.y201{bottom:602.080000pt;}
.yad{bottom:602.560000pt;}
.y1bf{bottom:604.800000pt;}
.yf4{bottom:605.120000pt;}
.y26e{bottom:606.720000pt;}
.y80{bottom:607.840000pt;}
.y141{bottom:608.320000pt;}
.y21c{bottom:610.560000pt;}
.y190{bottom:611.200000pt;}
.y9f{bottom:613.120000pt;}
.ydc{bottom:614.720000pt;}
.y1e{bottom:615.032160pt;}
.y48{bottom:615.200000pt;}
.y1b9{bottom:617.920000pt;}
.y8b{bottom:618.400000pt;}
.y1a8{bottom:618.559867pt;}
.y73{bottom:619.040000pt;}
.y1e1{bottom:619.192000pt;}
.y121{bottom:619.520000pt;}
.y110{bottom:621.120000pt;}
.y15e{bottom:622.240000pt;}
.y247{bottom:622.720000pt;}
.y261{bottom:624.320000pt;}
.y26d{bottom:625.920000pt;}
.ya7{bottom:627.520000pt;}
.y1cb{bottom:628.480000pt;}
.y58{bottom:629.120000pt;}
.y200{bottom:630.880000pt;}
.yac{bottom:631.360000pt;}
.yf3{bottom:633.920000pt;}
.y7f{bottom:637.120000pt;}
.y1d{bottom:637.440000pt;}
.yc8{bottom:639.360000pt;}
.y18f{bottom:640.000000pt;}
.y211{bottom:641.760000pt;}
.y9e{bottom:641.920000pt;}
.ydb{bottom:643.520000pt;}
.y26c{bottom:645.120000pt;}
.y1b8{bottom:646.720000pt;}
.y1a7{bottom:647.359867pt;}
.y6{bottom:647.360000pt;}
.y72{bottom:648.320000pt;}
.y10f{bottom:649.920000pt;}
.y8a{bottom:650.720000pt;}
.y15d{bottom:651.040000pt;}
.y260{bottom:653.120000pt;}
.y1e0{bottom:654.076000pt;}
.y174{bottom:656.320000pt;}
.y1ca{bottom:657.280000pt;}
.y57{bottom:657.920000pt;}
.y1ff{bottom:659.680000pt;}
.y47{bottom:660.000000pt;}
.yab{bottom:660.160000pt;}
.y1c{bottom:661.292480pt;}
.y246{bottom:661.760000pt;}
.yf2{bottom:662.720000pt;}
.y26b{bottom:664.320000pt;}
.y7e{bottom:665.920000pt;}
.y71{bottom:667.520000pt;}
.yc7{bottom:668.160000pt;}
.y9d{bottom:670.720000pt;}
.yda{bottom:672.320000pt;}
.y245{bottom:674.080000pt;}
.y1b7{bottom:675.520000pt;}
.y5{bottom:675.669120pt;}
.y14d{bottom:675.840000pt;}
.y18e{bottom:676.000000pt;}
.y1a6{bottom:676.159867pt;}
.y120{bottom:677.120000pt;}
.y106{bottom:678.720000pt;}
.y1fe{bottom:679.680000pt;}
.y15c{bottom:679.840000pt;}
.y25f{bottom:681.920000pt;}
.y89{bottom:683.520000pt;}
.y173{bottom:685.120000pt;}
.y56{bottom:686.720000pt;}
.y1b{bottom:688.488320pt;}
.y46{bottom:688.800000pt;}
.y1df{bottom:689.116000pt;}
.yf1{bottom:691.520000pt;}
.y1c9{bottom:693.280000pt;}
.y7d{bottom:694.720000pt;}
.y70{bottom:696.320000pt;}
.yc6{bottom:696.960000pt;}
.y9c{bottom:699.520000pt;}
.yaa{bottom:702.240000pt;}
.y26a{bottom:702.720000pt;}
.y4{bottom:704.160000pt;}
.ya6{bottom:704.320000pt;}
.y1a5{bottom:704.959867pt;}
.y11f{bottom:705.920000pt;}
.y18d{bottom:706.240000pt;}
.y105{bottom:707.520000pt;}
.y15b{bottom:708.640000pt;}
.y21b{bottom:710.240000pt;}
.y25e{bottom:710.720000pt;}
.y172{bottom:713.920000pt;}
.y55{bottom:715.520000pt;}
.y1a{bottom:715.684160pt;}
.y88{bottom:716.320000pt;}
.y45{bottom:717.120000pt;}
.y1fd{bottom:717.280000pt;}
.yf0{bottom:720.320000pt;}
.y269{bottom:721.920000pt;}
.y7c{bottom:723.520000pt;}
.y1c8{bottom:723.680000pt;}
.yd9{bottom:723.840000pt;}
.y1de{bottom:724.000000pt;}
.y6f{bottom:725.120000pt;}
.yc5{bottom:725.760000pt;}
.y9b{bottom:728.320000pt;}
.y18c{bottom:729.760000pt;}
.ya9{bottom:731.040000pt;}
.y3{bottom:732.000000pt;}
.y1a4{bottom:733.759867pt;}
.y11e{bottom:734.720000pt;}
.y104{bottom:736.320000pt;}
.y1dd{bottom:739.040000pt;}
.y1fc{bottom:739.200000pt;}
.y25d{bottom:739.520000pt;}
.y268{bottom:741.120000pt;}
.y22f{bottom:741.760000pt;}
.ya5{bottom:742.720000pt;}
.y19{bottom:742.880000pt;}
.y54{bottom:744.320000pt;}
.y1c7{bottom:745.600000pt;}
.y171{bottom:745.759867pt;}
.y44{bottom:745.920000pt;}
.y135{bottom:749.120000pt;}
.y15a{bottom:749.440000pt;}
.y87{bottom:749.600000pt;}
.y7b{bottom:752.320000pt;}
.y6e{bottom:753.920000pt;}
.yc4{bottom:754.560000pt;}
.y9a{bottom:757.120000pt;}
.ya8{bottom:759.840000pt;}
.y267{bottom:760.320000pt;}
.y11d{bottom:763.520000pt;}
.yef{bottom:765.120000pt;}
.y170{bottom:767.520000pt;}
.y21a{bottom:767.840000pt;}
.y18{bottom:768.320000pt;}
.y22e{bottom:770.560000pt;}
.y53{bottom:773.120000pt;}
.y1a3{bottom:774.560000pt;}
.y43{bottom:774.720000pt;}
.y2{bottom:775.680000pt;}
.y134{bottom:777.920000pt;}
.y7a{bottom:781.120000pt;}
.y86{bottom:781.920000pt;}
.y6d{bottom:782.720000pt;}
.yd8{bottom:784.320000pt;}
.y17{bottom:787.520000pt;}
.y11c{bottom:792.320000pt;}
.yee{bottom:793.920000pt;}
.y266{bottom:795.520000pt;}
.yc3{bottom:796.640000pt;}
.y22d{bottom:799.360000pt;}
.y52{bottom:801.920000pt;}
.y42{bottom:803.520000pt;}
.y188{bottom:806.720000pt;}
.y16{bottom:807.844160pt;}
.y79{bottom:809.920000pt;}
.y6c{bottom:811.520000pt;}
.yd7{bottom:813.120000pt;}
.y85{bottom:814.720000pt;}
.y99{bottom:815.040000pt;}
.ya4{bottom:819.520000pt;}
.yed{bottom:822.720000pt;}
.yc2{bottom:825.440000pt;}
.y22c{bottom:828.160000pt;}
.y51{bottom:830.720000pt;}
.y41{bottom:832.320000pt;}
.y15{bottom:835.040000pt;}
.y11b{bottom:837.120000pt;}
.y78{bottom:838.720000pt;}
.y6b{bottom:840.320000pt;}
.yd6{bottom:841.920000pt;}
.y84{bottom:847.520000pt;}
.y265{bottom:849.920000pt;}
.yec{bottom:851.520000pt;}
.yc1{bottom:854.240000pt;}
.y22b{bottom:856.960000pt;}
.ya3{bottom:857.920000pt;}
.y50{bottom:859.520000pt;}
.y14{bottom:860.640000pt;}
.y40{bottom:861.120000pt;}
.y1a2{bottom:863.840000pt;}
.y11a{bottom:865.920000pt;}
.y77{bottom:867.520000pt;}
.y6a{bottom:869.120000pt;}
.yd5{bottom:870.720000pt;}
.y13{bottom:877.120000pt;}
.y83{bottom:880.320000pt;}
.yc0{bottom:883.040000pt;}
.y22a{bottom:885.600000pt;}
.y4f{bottom:888.320000pt;}
.y3f{bottom:889.920000pt;}
.y119{bottom:894.720000pt;}
.y12{bottom:896.320000pt;}
.y69{bottom:897.920000pt;}
.yd4{bottom:899.520000pt;}
.y1a1{bottom:905.760000pt;}
.y264{bottom:907.520000pt;}
.y132{bottom:909.120000pt;}
.ybf{bottom:911.840000pt;}
.y82{bottom:913.600000pt;}
.y11{bottom:915.520000pt;}
.y4e{bottom:917.120000pt;}
.y3e{bottom:918.720000pt;}
.y65{bottom:918.880000pt;}
.y118{bottom:923.680000pt;}
.y76{bottom:925.120000pt;}
.y68{bottom:926.880000pt;}
.yd3{bottom:928.480000pt;}
.y1f2{bottom:933.120000pt;}
.y10{bottom:934.880000pt;}
.y187{bottom:937.920000pt;}
.y131{bottom:938.080000pt;}
.ybe{bottom:940.640000pt;}
.y4d{bottom:946.080000pt;}
.y81{bottom:946.560000pt;}
.y3d{bottom:947.680000pt;}
.y117{bottom:952.480000pt;}
.yf{bottom:954.080000pt;}
.y67{bottom:955.680000pt;}
.yd2{bottom:957.280000pt;}
.y1{bottom:958.560000pt;}
.y263{bottom:965.280000pt;}
.y8{bottom:972.000000pt;}
.ye{bottom:973.280000pt;}
.y186{bottom:975.200000pt;}
.y3c{bottom:976.480000pt;}
.ya{bottom:978.880000pt;}
.y75{bottom:982.880000pt;}
.y66{bottom:984.480000pt;}
.yd{bottom:992.480000pt;}
.y3b{bottom:995.200000pt;}
.yd1{bottom:995.840000pt;}
.y4c{bottom:996.000000pt;}
.y116{bottom:1004.000000pt;}
.y159{bottom:1011.520000pt;}
.yc{bottom:1011.680000pt;}
.y3a{bottom:1012.160000pt;}
.h7{height:26.400000pt;}
.h15{height:28.716250pt;}
.h16{height:35.404688pt;}
.h14{height:42.591927pt;}
.h4{height:42.656250pt;}
.h6{height:44.716250pt;}
.hf{height:47.135066pt;}
.h18{height:52.187500pt;}
.hc{height:53.875000pt;}
.h17{height:53.875533pt;}
.h10{height:54.687500pt;}
.h11{height:56.789236pt;}
.h19{height:60.878750pt;}
.hd{height:63.033750pt;}
.he{height:63.984375pt;}
.h2{height:65.188750pt;}
.h8{height:66.171875pt;}
.h3{height:76.502500pt;}
.h5{height:77.656250pt;}
.h13{height:82.031250pt;}
.h12{height:109.375000pt;}
.ha{height:1122.560000pt;}
.hb{height:1122.666667pt;}
.h0{height:1145.120000pt;}
.h9{height:1145.280000pt;}
.h1{height:1145.333333pt;}
.w2{width:249.760000pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.w1{width:1685.333333pt;}
.w0{width:1685.600000pt;}
.x5{left:-10.880000pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x6{left:113.440000pt;}
.x4b{left:126.560000pt;}
.x3c{left:132.160000pt;}
.x17{left:137.440000pt;}
.x42{left:138.880000pt;}
.x54{left:151.040000pt;}
.x28{left:157.120000pt;}
.xf{left:161.440000pt;}
.x4f{left:197.920000pt;}
.x2c{left:200.000000pt;}
.x4d{left:206.560000pt;}
.x45{left:209.280000pt;}
.x23{left:210.560000pt;}
.x68{left:212.160000pt;}
.x67{left:215.200000pt;}
.x72{left:217.760000pt;}
.x51{left:219.840000pt;}
.x26{left:221.440000pt;}
.x29{left:222.880000pt;}
.x48{left:226.240000pt;}
.x3d{left:228.480000pt;}
.x2e{left:236.320000pt;}
.x50{left:244.000000pt;}
.x24{left:247.840000pt;}
.xe{left:249.440000pt;}
.x4a{left:257.120000pt;}
.x4c{left:267.520000pt;}
.x2b{left:271.680000pt;}
.x70{left:273.600000pt;}
.x55{left:276.800000pt;}
.x1a{left:278.720000pt;}
.x33{left:280.800000pt;}
.x11{left:291.200000pt;}
.x3a{left:296.800000pt;}
.x3b{left:301.112000pt;}
.x14{left:304.320000pt;}
.x1b{left:305.280000pt;}
.x47{left:306.400000pt;}
.x49{left:311.200000pt;}
.x15{left:312.960000pt;}
.x63{left:319.200000pt;}
.x34{left:323.840000pt;}
.x64{left:327.040000pt;}
.x8{left:330.880000pt;}
.x65{left:334.880000pt;}
.x2f{left:336.160000pt;}
.x5d{left:349.920000pt;}
.x36{left:351.200000pt;}
.x4e{left:358.560000pt;}
.xb{left:360.000000pt;}
.x5f{left:364.480000pt;}
.x5e{left:365.600000pt;}
.x60{left:370.720000pt;}
.x30{left:379.200000pt;}
.x18{left:391.040000pt;}
.x16{left:392.640000pt;}
.x10{left:394.080000pt;}
.xc{left:395.680000pt;}
.xd{left:398.720000pt;}
.x52{left:404.960000pt;}
.x9{left:408.160000pt;}
.x1f{left:410.880000pt;}
.x12{left:415.840000pt;}
.x35{left:418.880000pt;}
.x21{left:422.400000pt;}
.x37{left:426.400000pt;}
.x57{left:434.560000pt;}
.x13{left:435.840000pt;}
.x58{left:438.400000pt;}
.x44{left:441.920000pt;}
.x59{left:461.920000pt;}
.x20{left:463.360000pt;}
.x3e{left:464.480000pt;}
.x38{left:475.680000pt;}
.x22{left:478.400000pt;}
.x7{left:480.480000pt;}
.xa{left:507.353440pt;}
.x69{left:523.200000pt;}
.x56{left:534.880000pt;}
.x6a{left:545.920000pt;}
.x66{left:547.040000pt;}
.x6b{left:550.080000pt;}
.x3f{left:559.680000pt;}
.x5a{left:561.920000pt;}
.x6e{left:563.360000pt;}
.x31{left:573.920000pt;}
.x6c{left:577.920000pt;}
.x6f{left:579.200000pt;}
.x71{left:581.600000pt;}
.x5b{left:589.280000pt;}
.x5c{left:604.960000pt;}
.x43{left:606.080000pt;}
.x61{left:607.680000pt;}
.x39{left:608.640000pt;}
.x62{left:611.360000pt;}
.x46{left:616.640000pt;}
.x41{left:619.840000pt;}
.x27{left:623.040000pt;}
.x53{left:624.320000pt;}
.x40{left:628.160000pt;}
.x32{left:634.720000pt;}
.x2d{left:637.600000pt;}
.x1d{left:643.040000pt;}
.x25{left:649.600000pt;}
.x2a{left:653.600000pt;}
.x19{left:675.680000pt;}
.x6d{left:679.200000pt;}
.x1e{left:680.320000pt;}
.x1c{left:683.680000pt;}
.x3{left:852.160000pt;}
.x1{left:1179.200000pt;}
.x4{left:1365.280000pt;}
}




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