
    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_5cd72e22a325b73c384f5d17.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752000;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_42046fb0cfc57fb549c0bd8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_9497ab1ada2847d6de191310.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_fa7930daadcde66340c6a502.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_04308efe02f1479536313e71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_597730b09e4273a9445e6c10.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_50c533ff6c8586da4429da5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_0e6f4be7a0efc90314aebffa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_0d04c20e69af7003c9f336c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.631000;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_eb07eacfb8d13d708000c196.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_bb6c45b5947c38692a5d20eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_4e0f440877bad09f8cee5a16.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9a67097b39b54c7ea2b849e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929286;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_277017029cd085046462b5c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_eae55e2e48ab4619aa44de02.woff2')format("woff");}.fff{font-family:fff;line-height:0.918000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.m2{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);}
.v7{vertical-align:-56.208000px;}
.v8{vertical-align:-29.616000px;}
.v6{vertical-align:-25.584000px;}
.v3{vertical-align:-18.900600px;}
.v4{vertical-align:-16.200600px;}
.v5{vertical-align:-7.872000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.912000px;}
.v2{vertical-align:21.600000px;}
.ls25{letter-spacing:-5.880000px;}
.ls27{letter-spacing:-5.670000px;}
.ls24{letter-spacing:-4.830000px;}
.ls17{letter-spacing:-3.150000px;}
.ls26{letter-spacing:-2.940000px;}
.ls18{letter-spacing:-2.100000px;}
.ls16{letter-spacing:-1.368000px;}
.ls9{letter-spacing:-1.083000px;}
.ls29{letter-spacing:-1.050000px;}
.ls1b{letter-spacing:-0.912000px;}
.ls15{letter-spacing:-0.741000px;}
.ls14{letter-spacing:-0.684000px;}
.ls28{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.513000px;}
.ls2b{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.285000px;}
.ls8{letter-spacing:-0.228000px;}
.ls2a{letter-spacing:-0.168000px;}
.lsd{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000240px;}
.lsa{letter-spacing:0.285000px;}
.lsf{letter-spacing:0.342000px;}
.ls5{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.570000px;}
.lse{letter-spacing:0.855000px;}
.ls1{letter-spacing:2.190963px;}
.ls2{letter-spacing:10.986963px;}
.ls0{letter-spacing:13.584000px;}
.ls3{letter-spacing:14.400000px;}
.ls19{letter-spacing:112.944000px;}
.ls1f{letter-spacing:115.152000px;}
.ls1e{letter-spacing:117.792000px;}
.ls1a{letter-spacing:117.840000px;}
.ls1d{letter-spacing:120.000000px;}
.ls1c{letter-spacing:120.096000px;}
.ls10{letter-spacing:143.866800px;}
.ls11{letter-spacing:233.497080px;}
.ls20{letter-spacing:259.296000px;}
.ls21{letter-spacing:260.640000px;}
.ls23{letter-spacing:614.511600px;}
.ls12{letter-spacing:672.728400px;}
.ls22{letter-spacing:1064.312880px;}
.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;}
}
.wsc8{word-spacing:-260.640000px;}
.wsc7{word-spacing:-259.296000px;}
.wsc3{word-spacing:-120.096000px;}
.wsc4{word-spacing:-120.000000px;}
.wsc5{word-spacing:-117.792000px;}
.wsc6{word-spacing:-115.152000px;}
.ws1{word-spacing:-28.602000px;}
.ws7{word-spacing:-13.053000px;}
.ws74{word-spacing:-12.939000px;}
.ws78{word-spacing:-12.768000px;}
.ws3f{word-spacing:-12.540000px;}
.ws6{word-spacing:-12.483000px;}
.ws77{word-spacing:-12.369000px;}
.ws75{word-spacing:-12.312000px;}
.ws4{word-spacing:-12.198000px;}
.ws40{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.970000px;}
.ws76{word-spacing:-11.685000px;}
.ws7d{word-spacing:-11.676000px;}
.ws0{word-spacing:-10.896000px;}
.wsfa{word-spacing:-10.320000px;}
.ws83{word-spacing:-10.008000px;}
.wsfb{word-spacing:-9.450000px;}
.wsd9{word-spacing:-7.706160px;}
.ws2{word-spacing:-7.032960px;}
.ws82{word-spacing:-6.605280px;}
.ws3{word-spacing:-6.153840px;}
.wse1{word-spacing:-4.959000px;}
.wsab{word-spacing:-3.933000px;}
.wsbf{word-spacing:-3.648000px;}
.ws96{word-spacing:-3.249000px;}
.wsf6{word-spacing:-3.150000px;}
.ws92{word-spacing:-3.135000px;}
.ws11{word-spacing:-3.078000px;}
.ws120{word-spacing:-3.024000px;}
.wsf1{word-spacing:-2.679000px;}
.ws5e{word-spacing:-2.565000px;}
.wsa6{word-spacing:-2.451000px;}
.wsa2{word-spacing:-2.337000px;}
.ws111{word-spacing:-2.310000px;}
.ws49{word-spacing:-2.166000px;}
.wsea{word-spacing:-2.052000px;}
.wsc0{word-spacing:-1.995000px;}
.ws10e{word-spacing:-1.968000px;}
.wsa4{word-spacing:-1.938000px;}
.ws99{word-spacing:-1.881000px;}
.ws93{word-spacing:-1.824000px;}
.wsa3{word-spacing:-1.767000px;}
.wsa7{word-spacing:-1.710000px;}
.ws97{word-spacing:-1.596000px;}
.ws108{word-spacing:-1.488000px;}
.ws37{word-spacing:-1.425000px;}
.wsf4{word-spacing:-1.368000px;}
.ws114{word-spacing:-1.344000px;}
.wsac{word-spacing:-1.311000px;}
.ws72{word-spacing:-1.248000px;}
.ws11e{word-spacing:-1.218000px;}
.ws58{word-spacing:-1.140000px;}
.wsd{word-spacing:-1.134000px;}
.ws1a{word-spacing:-1.083000px;}
.ws13{word-spacing:-1.026000px;}
.wsb5{word-spacing:-0.969000px;}
.ws85{word-spacing:-0.912000px;}
.ws9d{word-spacing:-0.855000px;}
.ws29{word-spacing:-0.798000px;}
.ws6c{word-spacing:-0.741000px;}
.ws45{word-spacing:-0.684000px;}
.ws11f{word-spacing:-0.630000px;}
.ws61{word-spacing:-0.570000px;}
.wsb6{word-spacing:-0.513000px;}
.wse{word-spacing:-0.504000px;}
.ws10f{word-spacing:-0.462000px;}
.wsa1{word-spacing:-0.456000px;}
.ws48{word-spacing:-0.399000px;}
.wsfd{word-spacing:-0.342000px;}
.ws8a{word-spacing:-0.285000px;}
.ws12a{word-spacing:-0.126000px;}
.ws41{word-spacing:-0.057000px;}
.ws73{word-spacing:-0.051000px;}
.wsf9{word-spacing:-0.048000px;}
.ws137{word-spacing:-0.042000px;}
.ws8{word-spacing:0.000000px;}
.ws127{word-spacing:0.042000px;}
.wse7{word-spacing:0.057000px;}
.wsd5{word-spacing:0.084000px;}
.ws138{word-spacing:0.126000px;}
.wsc9{word-spacing:0.144000px;}
.ws128{word-spacing:0.168000px;}
.ws12{word-spacing:0.228000px;}
.ws8d{word-spacing:0.285000px;}
.ws12e{word-spacing:0.294000px;}
.ws113{word-spacing:0.378000px;}
.ws124{word-spacing:0.420000px;}
.wsb0{word-spacing:0.432000px;}
.wsb1{word-spacing:0.438900px;}
.ws63{word-spacing:0.456000px;}
.ws139{word-spacing:0.462000px;}
.ws133{word-spacing:0.504000px;}
.ws9e{word-spacing:0.513000px;}
.ws4e{word-spacing:0.627000px;}
.ws14{word-spacing:0.684000px;}
.wse9{word-spacing:0.798000px;}
.wsb8{word-spacing:0.912000px;}
.ws44{word-spacing:0.969000px;}
.wsb7{word-spacing:1.026000px;}
.ws112{word-spacing:1.050000px;}
.ws121{word-spacing:1.134000px;}
.ws38{word-spacing:1.140000px;}
.wsc{word-spacing:1.176000px;}
.ws9b{word-spacing:1.254000px;}
.ws17{word-spacing:1.311000px;}
.ws9c{word-spacing:1.368000px;}
.ws13c{word-spacing:1.428000px;}
.ws10d{word-spacing:1.440000px;}
.ws117{word-spacing:1.470000px;}
.ws55{word-spacing:1.539000px;}
.ws125{word-spacing:1.554000px;}
.ws1c{word-spacing:1.824000px;}
.ws106{word-spacing:1.872000px;}
.ws102{word-spacing:1.881000px;}
.ws107{word-spacing:1.920000px;}
.ws1d{word-spacing:1.995000px;}
.ws54{word-spacing:2.052000px;}
.wsaf{word-spacing:2.100000px;}
.wse5{word-spacing:2.166000px;}
.ws11b{word-spacing:2.226000px;}
.ws6a{word-spacing:2.280000px;}
.ws110{word-spacing:2.352000px;}
.ws39{word-spacing:2.451000px;}
.wsb4{word-spacing:2.565000px;}
.ws11d{word-spacing:2.604000px;}
.ws18{word-spacing:2.679000px;}
.wsb{word-spacing:2.730000px;}
.ws42{word-spacing:2.793000px;}
.wsa{word-spacing:2.814000px;}
.ws2c{word-spacing:2.850000px;}
.ws19{word-spacing:2.907000px;}
.ws132{word-spacing:2.940000px;}
.ws94{word-spacing:2.964000px;}
.ws47{word-spacing:3.135000px;}
.ws10{word-spacing:3.150000px;}
.ws123{word-spacing:3.276000px;}
.wsec{word-spacing:3.306000px;}
.ws5d{word-spacing:3.363000px;}
.wsbe{word-spacing:3.477000px;}
.ws9a{word-spacing:3.534000px;}
.ws90{word-spacing:3.591000px;}
.ws115{word-spacing:3.612000px;}
.ws6b{word-spacing:3.648000px;}
.ws105{word-spacing:3.696000px;}
.ws15{word-spacing:3.762000px;}
.ws126{word-spacing:3.780000px;}
.ws5f{word-spacing:3.819000px;}
.ws5c{word-spacing:3.876000px;}
.ws100{word-spacing:3.933000px;}
.ws129{word-spacing:3.948000px;}
.ws8b{word-spacing:3.990000px;}
.ws131{word-spacing:4.032000px;}
.ws86{word-spacing:4.047000px;}
.wsf5{word-spacing:4.161000px;}
.ws68{word-spacing:4.218000px;}
.ws36{word-spacing:4.275000px;}
.ws64{word-spacing:4.446000px;}
.ws1b{word-spacing:4.503000px;}
.wsc2{word-spacing:4.560000px;}
.wsef{word-spacing:4.617000px;}
.ws8e{word-spacing:4.788000px;}
.ws67{word-spacing:4.845000px;}
.ws51{word-spacing:4.902000px;}
.ws118{word-spacing:4.914000px;}
.ws59{word-spacing:5.016000px;}
.ws33{word-spacing:5.187000px;}
.ws35{word-spacing:5.244000px;}
.ws11a{word-spacing:5.250000px;}
.wsfe{word-spacing:5.301000px;}
.wsf{word-spacing:5.376000px;}
.wsfc{word-spacing:5.415000px;}
.ws3b{word-spacing:5.472000px;}
.ws60{word-spacing:5.529000px;}
.ws16{word-spacing:5.586000px;}
.ws2a{word-spacing:5.643000px;}
.ws98{word-spacing:5.700000px;}
.ws116{word-spacing:5.754000px;}
.ws10c{word-spacing:5.856000px;}
.ws8c{word-spacing:5.871000px;}
.ws89{word-spacing:5.985000px;}
.ws84{word-spacing:6.156000px;}
.ws43{word-spacing:6.213000px;}
.ws136{word-spacing:6.216000px;}
.ws11c{word-spacing:6.258000px;}
.wse4{word-spacing:6.270000px;}
.wse8{word-spacing:6.327000px;}
.ws25{word-spacing:6.441000px;}
.wsbc{word-spacing:6.498000px;}
.ws95{word-spacing:6.555000px;}
.ws12b{word-spacing:6.636000px;}
.ws3a{word-spacing:6.669000px;}
.ws34{word-spacing:6.783000px;}
.ws27{word-spacing:6.840000px;}
.ws20{word-spacing:7.068000px;}
.wsa0{word-spacing:7.182000px;}
.ws5b{word-spacing:7.239000px;}
.ws119{word-spacing:7.266000px;}
.ws26{word-spacing:7.296000px;}
.ws23{word-spacing:7.353000px;}
.wsc1{word-spacing:7.524000px;}
.ws135{word-spacing:7.560000px;}
.ws103{word-spacing:7.581000px;}
.ws70{word-spacing:7.638000px;}
.wsbb{word-spacing:7.752000px;}
.ws134{word-spacing:7.812000px;}
.ws46{word-spacing:7.866000px;}
.ws30{word-spacing:7.980000px;}
.ws50{word-spacing:8.037000px;}
.ws12f{word-spacing:8.064000px;}
.ws21{word-spacing:8.094000px;}
.ws1f{word-spacing:8.151000px;}
.ws8f{word-spacing:8.208000px;}
.wsed{word-spacing:8.265000px;}
.ws130{word-spacing:8.316000px;}
.ws101{word-spacing:8.550000px;}
.ws6e{word-spacing:8.721000px;}
.wsee{word-spacing:8.778000px;}
.ws62{word-spacing:9.063000px;}
.wsff{word-spacing:9.177000px;}
.wsf0{word-spacing:9.291000px;}
.ws57{word-spacing:9.405000px;}
.ws24{word-spacing:9.519000px;}
.ws5a{word-spacing:9.747000px;}
.ws6d{word-spacing:10.089000px;}
.ws13a{word-spacing:10.164000px;}
.ws32{word-spacing:10.260000px;}
.wsa8{word-spacing:10.374000px;}
.wsa9{word-spacing:10.488000px;}
.ws31{word-spacing:10.602000px;}
.ws65{word-spacing:10.773000px;}
.ws91{word-spacing:10.830000px;}
.wsad{word-spacing:11.058000px;}
.wseb{word-spacing:11.172000px;}
.ws13d{word-spacing:11.508000px;}
.ws69{word-spacing:11.628000px;}
.ws9f{word-spacing:11.685000px;}
.ws4c{word-spacing:11.742000px;}
.ws2d{word-spacing:11.856000px;}
.ws22{word-spacing:11.913000px;}
.ws53{word-spacing:12.027000px;}
.ws66{word-spacing:12.084000px;}
.ws52{word-spacing:12.426000px;}
.ws13b{word-spacing:12.432000px;}
.ws71{word-spacing:12.483000px;}
.ws12c{word-spacing:12.852000px;}
.wsf3{word-spacing:12.939000px;}
.ws28{word-spacing:12.996000px;}
.wsaa{word-spacing:13.053000px;}
.ws9{word-spacing:13.104000px;}
.ws4f{word-spacing:13.167000px;}
.ws1e{word-spacing:13.224000px;}
.ws10b{word-spacing:13.248000px;}
.wsbd{word-spacing:13.395000px;}
.ws87{word-spacing:13.851000px;}
.ws12d{word-spacing:13.944000px;}
.wsf2{word-spacing:13.965000px;}
.ws56{word-spacing:14.820000px;}
.ws104{word-spacing:14.991000px;}
.wsa5{word-spacing:15.504000px;}
.ws2b{word-spacing:15.960000px;}
.ws3c{word-spacing:16.302000px;}
.wse6{word-spacing:17.157000px;}
.ws109{word-spacing:17.472000px;}
.ws122{word-spacing:17.892000px;}
.ws6f{word-spacing:18.126000px;}
.ws10a{word-spacing:18.144000px;}
.ws3e{word-spacing:18.411000px;}
.ws4a{word-spacing:18.696000px;}
.ws3d{word-spacing:18.867000px;}
.ws2e{word-spacing:18.981000px;}
.ws2f{word-spacing:19.380000px;}
.wsba{word-spacing:20.577000px;}
.wsb9{word-spacing:20.976000px;}
.ws88{word-spacing:22.686000px;}
.wsae{word-spacing:22.800000px;}
.ws4b{word-spacing:22.914000px;}
.wse3{word-spacing:23.142000px;}
.wse2{word-spacing:23.598000px;}
.ws4d{word-spacing:29.241000px;}
.wsf7{word-spacing:30.324000px;}
.wsf8{word-spacing:33.474000px;}
.wsb3{word-spacing:77.232000px;}
.wsb2{word-spacing:94.992000px;}
.ws7a{word-spacing:129.780000px;}
.ws79{word-spacing:132.132000px;}
.wsda{word-spacing:133.308000px;}
.ws7b{word-spacing:136.080000px;}
.wsce{word-spacing:136.248000px;}
.wse0{word-spacing:137.088000px;}
.wscb{word-spacing:138.138000px;}
.wsd0{word-spacing:139.524000px;}
.ws7f{word-spacing:141.456000px;}
.wsd3{word-spacing:143.388000px;}
.ws7e{word-spacing:144.354000px;}
.wsde{word-spacing:144.438000px;}
.ws80{word-spacing:145.656000px;}
.wsdc{word-spacing:148.008000px;}
.wsd8{word-spacing:148.764000px;}
.wsca{word-spacing:149.772000px;}
.ws7c{word-spacing:150.150000px;}
.wsdf{word-spacing:150.444000px;}
.wsd6{word-spacing:151.452000px;}
.wsdd{word-spacing:151.494000px;}
.ws81{word-spacing:163.506000px;}
.wscf{word-spacing:164.850000px;}
.wsdb{word-spacing:186.858000px;}
.wscc{word-spacing:202.188000px;}
.wsd4{word-spacing:202.818000px;}
.wsd7{word-spacing:208.068000px;}
.wsd1{word-spacing:214.914000px;}
.wsd2{word-spacing:331.674000px;}
.wscd{word-spacing:337.554000px;}
._2b{margin-left:-1642.909800px;}
._11{margin-left:-6.270000px;}
._a{margin-left:-4.803000px;}
._3{margin-left:-3.112200px;}
._5{margin-left:-2.104200px;}
._0{margin-left:-1.056000px;}
._4{width:1.171800px;}
._2{width:2.830800px;}
._8{width:3.979500px;}
._f{width:5.886300px;}
._c{width:6.954000px;}
._d{width:8.334900px;}
._12{width:9.848100px;}
._50{width:10.962000px;}
._10{width:12.038100px;}
._1{width:13.152000px;}
._e{width:15.319800px;}
._4f{width:17.584800px;}
._4e{width:18.606000px;}
._4d{width:20.212800px;}
._27{width:21.489000px;}
._29{width:24.054000px;}
._4c{width:35.752200px;}
._28{width:37.200000px;}
._13{width:38.592000px;}
._9{width:41.895000px;}
._7{width:43.457400px;}
._b{width:45.469800px;}
._6{width:47.645400px;}
._2a{width:126.252000px;}
._3a{width:147.872400px;}
._15{width:149.646000px;}
._14{width:151.998000px;}
._1b{width:153.132000px;}
._23{width:154.980000px;}
._2e{width:156.417600px;}
._36{width:158.298000px;}
._4b{width:160.104000px;}
._25{width:161.406000px;}
._1e{width:163.968000px;}
._47{width:165.294600px;}
._3c{width:167.082600px;}
._32{width:168.924000px;}
._2d{width:171.276000px;}
._18{width:175.182000px;}
._33{width:182.952000px;}
._17{width:184.758000px;}
._1d{width:196.434000px;}
._43{width:208.562400px;}
._2f{width:215.334000px;}
._45{width:220.290000px;}
._3d{width:221.340000px;}
._34{width:225.204000px;}
._3e{width:255.192000px;}
._1a{width:271.404000px;}
._1c{width:280.644000px;}
._21{width:285.390000px;}
._4a{width:296.314200px;}
._19{width:342.174000px;}
._30{width:343.740000px;}
._38{width:351.356100px;}
._3b{width:354.270000px;}
._41{width:372.582000px;}
._3f{width:413.406000px;}
._20{width:462.756000px;}
._16{width:485.654400px;}
._46{width:509.954400px;}
._26{width:570.952200px;}
._1f{width:572.460000px;}
._22{width:591.066000px;}
._24{width:695.448000px;}
._2c{width:933.996000px;}
._35{width:964.992000px;}
._31{width:981.288000px;}
._48{width:1014.006000px;}
._37{width:1109.682000px;}
._39{width:1158.696000px;}
._49{width:1203.090000px;}
._42{width:1215.484200px;}
._40{width:1255.296000px;}
._44{width:1258.975200px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(102,102,102);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:0.600000px;}
.fsb{font-size:23.760000px;}
.fs4{font-size:27.720000px;}
.fs6{font-size:31.680000px;}
.fs8{font-size:33.231000px;}
.fsa{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fsd{font-size:48.000388px;}
.fs9{font-size:51.000000px;}
.fs7{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y145{bottom:3.059700px;}
.y13e{bottom:18.100858px;}
.y13d{bottom:25.432200px;}
.y4d{bottom:66.286650px;}
.y2{bottom:66.297450px;}
.y156{bottom:84.974700px;}
.y154{bottom:100.864200px;}
.ya6{bottom:107.625000px;}
.y120{bottom:109.241100px;}
.y130{bottom:109.326600px;}
.y8f{bottom:110.227650px;}
.yf{bottom:111.057150px;}
.yd8{bottom:111.585000px;}
.y17f{bottom:111.608550px;}
.y19e{bottom:111.793800px;}
.yf4{bottom:112.183500px;}
.y4b{bottom:115.315800px;}
.y155{bottom:118.984200px;}
.ya5{bottom:122.625000px;}
.ye{bottom:124.560150px;}
.y11f{bottom:128.735100px;}
.y12f{bottom:128.820600px;}
.y8e{bottom:129.721650px;}
.yd7{bottom:131.079000px;}
.y17e{bottom:131.102550px;}
.y19d{bottom:131.287800px;}
.yf3{bottom:131.677500px;}
.y4a{bottom:134.821800px;}
.yd{bottom:138.063150px;}
.y11e{bottom:148.229100px;}
.y12e{bottom:148.314600px;}
.y8d{bottom:149.215650px;}
.yd6{bottom:150.573000px;}
.y17d{bottom:150.596550px;}
.y19c{bottom:150.781800px;}
.yf2{bottom:151.171500px;}
.yc{bottom:151.566150px;}
.y49{bottom:154.315800px;}
.yb{bottom:165.069150px;}
.y11d{bottom:167.723100px;}
.y12d{bottom:167.808600px;}
.y8c{bottom:168.709650px;}
.yd5{bottom:170.067000px;}
.y17c{bottom:170.090550px;}
.y19b{bottom:170.275800px;}
.ya4{bottom:170.439150px;}
.yf1{bottom:170.665500px;}
.y48{bottom:173.809800px;}
.ya{bottom:178.572150px;}
.ya3{bottom:183.939150px;}
.y11c{bottom:187.217100px;}
.y12c{bottom:187.302600px;}
.y8b{bottom:188.203650px;}
.yd4{bottom:189.561000px;}
.y17b{bottom:189.584550px;}
.y19a{bottom:189.769800px;}
.yf0{bottom:190.159500px;}
.y9{bottom:192.075150px;}
.ya2{bottom:197.439150px;}
.y47{bottom:200.809800px;}
.y8{bottom:205.572150px;}
.y11b{bottom:206.711100px;}
.y12b{bottom:206.796600px;}
.y8a{bottom:207.697650px;}
.yd3{bottom:209.055000px;}
.y17a{bottom:209.078550px;}
.y199{bottom:209.263800px;}
.yef{bottom:209.653500px;}
.y7{bottom:223.569150px;}
.y11a{bottom:226.205100px;}
.y12a{bottom:226.290600px;}
.y89{bottom:227.191650px;}
.yd2{bottom:228.549000px;}
.y179{bottom:228.572550px;}
.y198{bottom:228.757800px;}
.yee{bottom:229.147500px;}
.y6{bottom:237.072150px;}
.y46{bottom:240.032550px;}
.y226{bottom:242.747250px;}
.y1e5{bottom:243.209250px;}
.y129{bottom:245.784600px;}
.y88{bottom:246.685650px;}
.yd1{bottom:248.043000px;}
.y178{bottom:248.066550px;}
.y197{bottom:248.251800px;}
.yed{bottom:248.641500px;}
.y5{bottom:250.575150px;}
.y119{bottom:253.205100px;}
.y225{bottom:256.250250px;}
.y1e4{bottom:256.712250px;}
.y45{bottom:259.526550px;}
.ya1{bottom:261.195150px;}
.y4{bottom:264.075150px;}
.y128{bottom:265.278600px;}
.y87{bottom:266.179650px;}
.yd0{bottom:267.537000px;}
.y177{bottom:267.560550px;}
.y196{bottom:267.745800px;}
.yec{bottom:268.135500px;}
.y224{bottom:269.753250px;}
.y1e3{bottom:270.215250px;}
.ya0{bottom:274.695150px;}
.y44{bottom:279.020550px;}
.y223{bottom:283.256250px;}
.y1e2{bottom:283.718250px;}
.y127{bottom:284.772600px;}
.y86{bottom:285.673650px;}
.ycf{bottom:287.031000px;}
.y176{bottom:287.054550px;}
.y195{bottom:287.239800px;}
.yeb{bottom:287.629500px;}
.y222{bottom:296.759250px;}
.y1e1{bottom:297.221250px;}
.y33{bottom:298.429050px;}
.y43{bottom:298.514550px;}
.y118{bottom:304.235100px;}
.y126{bottom:304.266600px;}
.y85{bottom:305.167650px;}
.yce{bottom:306.525000px;}
.y175{bottom:306.548550px;}
.y194{bottom:306.733800px;}
.yea{bottom:307.123500px;}
.y221{bottom:310.262250px;}
.y1e0{bottom:310.724250px;}
.y9f{bottom:311.847150px;}
.y32{bottom:317.923050px;}
.y42{bottom:318.008550px;}
.y117{bottom:323.729100px;}
.y125{bottom:323.760600px;}
.y220{bottom:323.765250px;}
.y1df{bottom:324.227250px;}
.y84{bottom:324.661650px;}
.y9e{bottom:325.347150px;}
.ycd{bottom:326.019000px;}
.y174{bottom:326.042550px;}
.y193{bottom:326.227800px;}
.ye9{bottom:326.617500px;}
.y21f{bottom:337.268250px;}
.y31{bottom:337.417050px;}
.y41{bottom:337.502550px;}
.y1de{bottom:337.730250px;}
.y116{bottom:343.223100px;}
.y124{bottom:343.254600px;}
.y83{bottom:344.155650px;}
.ycc{bottom:345.513000px;}
.y173{bottom:345.536550px;}
.y192{bottom:345.721800px;}
.ye8{bottom:346.111500px;}
.y21e{bottom:350.771250px;}
.y1dd{bottom:351.233250px;}
.y9d{bottom:355.443150px;}
.y30{bottom:356.911050px;}
.y40{bottom:356.996550px;}
.y115{bottom:362.717100px;}
.y123{bottom:362.748600px;}
.y82{bottom:363.649650px;}
.y21d{bottom:364.274250px;}
.y1dc{bottom:364.736250px;}
.ycb{bottom:365.007000px;}
.y172{bottom:365.030550px;}
.y191{bottom:365.215800px;}
.ye7{bottom:365.605500px;}
.y9c{bottom:368.943150px;}
.y2f{bottom:376.405050px;}
.y3f{bottom:376.490550px;}
.y21c{bottom:377.777250px;}
.y1db{bottom:378.239250px;}
.y114{bottom:382.211100px;}
.y122{bottom:382.242600px;}
.y81{bottom:383.143650px;}
.yca{bottom:384.501000px;}
.y171{bottom:384.524550px;}
.y190{bottom:384.709800px;}
.ye6{bottom:385.099500px;}
.y21b{bottom:391.280250px;}
.y1da{bottom:391.742250px;}
.y149{bottom:392.780700px;}
.y2e{bottom:395.899050px;}
.y3e{bottom:395.984550px;}
.y113{bottom:401.705100px;}
.y121{bottom:401.736600px;}
.y135{bottom:402.211200px;}
.y80{bottom:402.637650px;}
.y9b{bottom:403.371150px;}
.yc9{bottom:403.995000px;}
.y170{bottom:404.018550px;}
.y18f{bottom:404.203800px;}
.ye5{bottom:404.593500px;}
.y21a{bottom:404.783250px;}
.y1d9{bottom:405.245250px;}
.y2d{bottom:415.393050px;}
.y3d{bottom:415.478550px;}
.y219{bottom:418.286250px;}
.y1d8{bottom:421.745250px;}
.y7f{bottom:422.131650px;}
.yc8{bottom:423.489000px;}
.y16f{bottom:423.512550px;}
.y18e{bottom:423.697800px;}
.ye4{bottom:424.087500px;}
.y218{bottom:431.789250px;}
.y2c{bottom:434.887050px;}
.y3c{bottom:434.972550px;}
.y7e{bottom:441.625650px;}
.yc7{bottom:442.983000px;}
.y16e{bottom:443.006550px;}
.y18d{bottom:443.191800px;}
.ye3{bottom:443.581500px;}
.y217{bottom:445.292250px;}
.y160{bottom:449.189700px;}
.y2b{bottom:454.381050px;}
.y3b{bottom:454.466550px;}
.y1d7{bottom:454.745250px;}
.y216{bottom:458.795250px;}
.y9a{bottom:459.495150px;}
.y7d{bottom:461.119650px;}
.yc6{bottom:462.477000px;}
.y16d{bottom:462.500550px;}
.y18c{bottom:462.685800px;}
.ye2{bottom:463.075500px;}
.y15f{bottom:464.189700px;}
.y1d6{bottom:469.745250px;}
.y215{bottom:472.298250px;}
.y99{bottom:472.995150px;}
.y2a{bottom:473.875050px;}
.y3a{bottom:473.960550px;}
.y7c{bottom:480.613650px;}
.yc5{bottom:481.971000px;}
.y16c{bottom:481.994550px;}
.y18b{bottom:482.179800px;}
.ye1{bottom:482.569500px;}
.y1d5{bottom:484.745250px;}
.y214{bottom:485.801250px;}
.y29{bottom:493.369050px;}
.y39{bottom:493.454550px;}
.y132{bottom:497.940000px;}
.y213{bottom:499.304250px;}
.y1d4{bottom:499.745250px;}
.y7b{bottom:500.107650px;}
.yc4{bottom:501.465000px;}
.y16b{bottom:501.488550px;}
.y18a{bottom:501.673800px;}
.ye0{bottom:502.063500px;}
.y212{bottom:512.807250px;}
.y28{bottom:512.863050px;}
.y38{bottom:512.948550px;}
.y1d3{bottom:514.745250px;}
.y7a{bottom:519.601650px;}
.yc3{bottom:520.959000px;}
.y16a{bottom:520.982550px;}
.y189{bottom:521.167800px;}
.ydf{bottom:521.557500px;}
.y211{bottom:526.310250px;}
.y98{bottom:529.119150px;}
.y1d2{bottom:529.745250px;}
.y142{bottom:531.715035px;}
.y27{bottom:532.357050px;}
.y37{bottom:532.442550px;}
.y140{bottom:535.949225px;}
.y141{bottom:535.957710px;}
.y13f{bottom:538.859700px;}
.y79{bottom:539.095650px;}
.y210{bottom:539.813250px;}
.yc2{bottom:540.453000px;}
.y169{bottom:540.476550px;}
.y188{bottom:540.661800px;}
.yde{bottom:541.051500px;}
.y97{bottom:542.619150px;}
.y1d1{bottom:544.745250px;}
.y26{bottom:551.851050px;}
.y36{bottom:551.936550px;}
.y20f{bottom:553.316250px;}
.y78{bottom:558.589650px;}
.y1d0{bottom:559.745250px;}
.yc1{bottom:559.947000px;}
.y168{bottom:559.970550px;}
.y187{bottom:560.155800px;}
.ydd{bottom:560.545500px;}
.y20e{bottom:566.819250px;}
.y15c{bottom:570.920700px;}
.y25{bottom:571.345050px;}
.y35{bottom:571.430550px;}
.y1cf{bottom:574.745250px;}
.y77{bottom:578.083650px;}
.yc0{bottom:579.441000px;}
.y167{bottom:579.464550px;}
.y186{bottom:579.649800px;}
.ydc{bottom:580.039500px;}
.y20d{bottom:580.322250px;}
.y1ce{bottom:589.745250px;}
.y24{bottom:590.839050px;}
.y34{bottom:590.924550px;}
.y20c{bottom:593.825250px;}
.y96{bottom:595.371150px;}
.y76{bottom:597.577650px;}
.y153{bottom:598.200450px;}
.ybf{bottom:598.935000px;}
.y166{bottom:598.958550px;}
.y185{bottom:599.143800px;}
.ydb{bottom:599.533500px;}
.y15b{bottom:603.920700px;}
.y133{bottom:604.304550px;}
.y1cd{bottom:604.745250px;}
.y20b{bottom:607.328250px;}
.y95{bottom:608.871150px;}
.y151{bottom:616.920450px;}
.y75{bottom:617.071650px;}
.ybe{bottom:618.429000px;}
.y165{bottom:618.452550px;}
.y184{bottom:618.637800px;}
.yda{bottom:619.027500px;}
.y20a{bottom:620.831250px;}
.y1cc{bottom:622.745250px;}
.y150{bottom:631.056450px;}
.y209{bottom:634.334250px;}
.y74{bottom:636.565650px;}
.y15a{bottom:636.920700px;}
.ybd{bottom:637.923000px;}
.y164{bottom:637.946550px;}
.y183{bottom:638.131800px;}
.yd9{bottom:638.521500px;}
.y23{bottom:641.084550px;}
.y208{bottom:647.837250px;}
.y152{bottom:648.552450px;}
.y1cb{bottom:655.883400px;}
.y73{bottom:656.059650px;}
.ybc{bottom:657.417000px;}
.y163{bottom:657.440550px;}
.y182{bottom:657.625800px;}
.y22{bottom:659.082300px;}
.y207{bottom:661.340250px;}
.y159{bottom:669.920700px;}
.y206{bottom:674.843250px;}
.y1ca{bottom:675.377400px;}
.y72{bottom:675.553650px;}
.y162{bottom:676.934550px;}
.y21{bottom:677.080050px;}
.y181{bottom:677.119800px;}
.y112{bottom:678.715950px;}
.ybb{bottom:684.417000px;}
.y94{bottom:684.999150px;}
.y205{bottom:688.346250px;}
.y111{bottom:694.763100px;}
.y1c9{bottom:694.871400px;}
.y71{bottom:695.047650px;}
.y20{bottom:695.077800px;}
.y161{bottom:696.428550px;}
.y180{bottom:696.613800px;}
.y204{bottom:701.849250px;}
.y158{bottom:702.920700px;}
.y110{bottom:705.715950px;}
.y1f{bottom:713.075550px;}
.y1c8{bottom:714.365400px;}
.y70{bottom:714.541650px;}
.y203{bottom:715.352250px;}
.y14f{bottom:715.908450px;}
.y10f{bottom:721.763100px;}
.y202{bottom:728.855250px;}
.y1e{bottom:731.073300px;}
.y1c7{bottom:733.859400px;}
.y6f{bottom:734.035650px;}
.yba{bottom:735.525000px;}
.y157{bottom:735.920700px;}
.y10e{bottom:736.763100px;}
.y201{bottom:742.358250px;}
.y1b3{bottom:746.838300px;}
.y93{bottom:747.039150px;}
.y10d{bottom:747.712950px;}
.y1d{bottom:749.071050px;}
.y1c6{bottom:753.353400px;}
.y6e{bottom:753.529650px;}
.yb9{bottom:755.019000px;}
.y200{bottom:755.861250px;}
.y1b2{bottom:757.788150px;}
.y92{bottom:760.539150px;}
.y1c{bottom:767.068800px;}
.y14e{bottom:768.924450px;}
.y10c{bottom:769.089450px;}
.y1ff{bottom:769.364250px;}
.y1c5{bottom:772.847400px;}
.y6d{bottom:773.023650px;}
.y91{bottom:774.039150px;}
.yb8{bottom:774.513000px;}
.y1b1{bottom:779.169150px;}
.y134{bottom:782.630700px;}
.y1fe{bottom:782.867250px;}
.y1b{bottom:785.066550px;}
.y10b{bottom:785.694450px;}
.y90{bottom:787.539150px;}
.y1c4{bottom:792.341400px;}
.y6c{bottom:792.517650px;}
.yb7{bottom:794.007000px;}
.y1b0{bottom:795.769650px;}
.y1fd{bottom:796.370250px;}
.y10a{bottom:802.294950px;}
.y1a{bottom:803.064300px;}
.y1fc{bottom:809.873250px;}
.y1c3{bottom:811.835400px;}
.y6b{bottom:812.011650px;}
.y1af{bottom:812.370150px;}
.yb6{bottom:813.501000px;}
.y144{bottom:816.727200px;}
.y109{bottom:818.895450px;}
.y19{bottom:821.062050px;}
.y1fb{bottom:823.376250px;}
.y139{bottom:827.599343px;}
.y1ae{bottom:828.970650px;}
.y1c2{bottom:831.329400px;}
.y6a{bottom:831.505650px;}
.yb5{bottom:832.995000px;}
.y138{bottom:834.922200px;}
.y108{bottom:835.506450px;}
.y1fa{bottom:836.879250px;}
.y18{bottom:839.068800px;}
.y13c{bottom:843.271784px;}
.y1ad{bottom:845.577150px;}
.y13b{bottom:847.514459px;}
.y1f9{bottom:850.382250px;}
.y13a{bottom:850.424934px;}
.y1c1{bottom:850.823400px;}
.y5b{bottom:850.928400px;}
.y69{bottom:850.999650px;}
.y107{bottom:852.106950px;}
.yb4{bottom:852.489000px;}
.y17{bottom:857.066550px;}
.y1ac{bottom:862.177650px;}
.y1f8{bottom:863.885250px;}
.y106{bottom:868.707450px;}
.y1c0{bottom:870.317400px;}
.y5a{bottom:870.422400px;}
.y68{bottom:870.493650px;}
.yb3{bottom:871.983000px;}
.y16{bottom:875.064300px;}
.y1f7{bottom:877.388250px;}
.y1ab{bottom:878.778150px;}
.y15e{bottom:883.220700px;}
.y105{bottom:885.307950px;}
.y1bf{bottom:889.811400px;}
.y59{bottom:889.916400px;}
.y67{bottom:889.987650px;}
.y1f6{bottom:890.891250px;}
.yb2{bottom:891.477000px;}
.y15{bottom:893.062050px;}
.y1aa{bottom:895.378650px;}
.y104{bottom:901.908450px;}
.y1f5{bottom:904.394250px;}
.y147{bottom:904.763700px;}
.y1be{bottom:909.305400px;}
.y58{bottom:909.410400px;}
.y66{bottom:909.481650px;}
.yb1{bottom:910.971000px;}
.y14{bottom:911.059800px;}
.y1a9{bottom:911.986500px;}
.y15d{bottom:912.116700px;}
.y1f4{bottom:917.897250px;}
.y103{bottom:918.508950px;}
.y148{bottom:919.019700px;}
.y1a8{bottom:928.587000px;}
.y1bd{bottom:928.799400px;}
.y57{bottom:928.904400px;}
.y65{bottom:928.975650px;}
.yb0{bottom:930.465000px;}
.y1f3{bottom:931.400250px;}
.y146{bottom:935.075700px;}
.y102{bottom:935.109450px;}
.y14d{bottom:940.992450px;}
.y1f2{bottom:944.903250px;}
.y1a7{bottom:945.187500px;}
.y13{bottom:946.534950px;}
.y1bc{bottom:948.293400px;}
.y56{bottom:948.398400px;}
.y64{bottom:948.469650px;}
.yaf{bottom:949.959000px;}
.y101{bottom:951.702300px;}
.y1f1{bottom:958.406250px;}
.y143{bottom:960.547200px;}
.y12{bottom:961.309800px;}
.y1a6{bottom:961.788000px;}
.y4c{bottom:965.610000px;}
.y1bb{bottom:967.787400px;}
.y55{bottom:967.892400px;}
.y63{bottom:967.963650px;}
.y100{bottom:968.302800px;}
.yae{bottom:969.453000px;}
.y14c{bottom:969.888450px;}
.y1f0{bottom:971.909250px;}
.y1a5{bottom:978.388500px;}
.y1ef{bottom:985.412250px;}
.y1ba{bottom:987.281400px;}
.y54{bottom:987.386400px;}
.y62{bottom:987.457650px;}
.y11{bottom:988.305300px;}
.yad{bottom:988.947000px;}
.yff{bottom:989.407800px;}
.yf7{bottom:989.413950px;}
.y1a4{bottom:994.987500px;}
.y14b{bottom:998.784450px;}
.y1ee{bottom:998.915250px;}
.y1b9{bottom:1006.775400px;}
.y53{bottom:1006.880400px;}
.y61{bottom:1006.951650px;}
.yac{bottom:1008.441000px;}
.y1a3{bottom:1011.588000px;}
.y1ed{bottom:1012.418250px;}
.yfe{bottom:1015.006800px;}
.yfa{bottom:1015.009800px;}
.y10{bottom:1024.309800px;}
.y1ec{bottom:1025.921250px;}
.y1b8{bottom:1026.269400px;}
.y52{bottom:1026.374400px;}
.y60{bottom:1026.445650px;}
.y14a{bottom:1027.680450px;}
.yab{bottom:1027.935000px;}
.yfd{bottom:1028.509800px;}
.yf9{bottom:1028.512800px;}
.y1a0{bottom:1032.693000px;}
.y1eb{bottom:1039.424250px;}
.yfc{bottom:1042.012800px;}
.yf8{bottom:1042.015800px;}
.y1b7{bottom:1045.763400px;}
.y51{bottom:1045.868400px;}
.y5f{bottom:1045.939650px;}
.yaa{bottom:1047.429000px;}
.y1ea{bottom:1052.927250px;}
.yfb{bottom:1055.515800px;}
.y136{bottom:1056.575250px;}
.y1a2{bottom:1058.292000px;}
.y1b6{bottom:1065.257400px;}
.y50{bottom:1065.362400px;}
.y5e{bottom:1065.433650px;}
.y1e9{bottom:1066.430250px;}
.ya9{bottom:1066.923000px;}
.y137{bottom:1068.635250px;}
.y1a1{bottom:1071.795000px;}
.y1e8{bottom:1079.933250px;}
.y1b5{bottom:1084.751400px;}
.y4f{bottom:1084.856400px;}
.y5d{bottom:1084.927650px;}
.y131{bottom:1085.469900px;}
.ya8{bottom:1086.417000px;}
.yf6{bottom:1089.742800px;}
.y1e7{bottom:1093.436250px;}
.y1{bottom:1099.948050px;}
.y1b4{bottom:1104.245400px;}
.y4e{bottom:1104.350400px;}
.y5c{bottom:1104.421650px;}
.yf5{bottom:1104.742800px;}
.ya7{bottom:1105.917450px;}
.y19f{bottom:1106.022000px;}
.y1e6{bottom:1106.939250px;}
.y3{bottom:1132.136100px;}
.h5{height:0.445800px;}
.h16{height:17.511120px;}
.ha{height:20.595960px;}
.h15{height:26.532000px;}
.h1f{height:29.988000px;}
.h11{height:30.954000px;}
.h6{height:31.206000px;}
.h17{height:32.256000px;}
.h1a{height:32.256261px;}
.he{height:32.352000px;}
.h3{height:34.272000px;}
.hd{height:34.945312px;}
.h10{height:35.232000px;}
.h1e{height:35.616000px;}
.hf{height:35.664000px;}
.hc{height:37.842000px;}
.h7{height:39.258480px;}
.h13{height:39.287640px;}
.h1c{height:39.300240px;}
.h1d{height:39.305640px;}
.h14{height:39.312240px;}
.h1b{height:39.336240px;}
.h12{height:39.360240px;}
.h19{height:40.320000px;}
.hb{height:40.698000px;}
.h9{height:44.853120px;}
.h4{height:52.992000px;}
.h2{height:53.064000px;}
.h8{height:89.964000px;}
.h18{height:616.770000px;}
.h1{height:1173.750000px;}
.h0{height:1173.960000px;}
.w1{width:468.682500px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x25{left:10.474950px;}
.x32{left:21.279450px;}
.x33{left:50.893322px;}
.x3{left:73.650000px;}
.x4a{left:81.150000px;}
.x4{left:84.150000px;}
.x1{left:85.650000px;}
.x5{left:87.900000px;}
.x15{left:89.515200px;}
.xe{left:92.611200px;}
.x4b{left:93.897000px;}
.x13{left:97.027200px;}
.x12{left:98.575200px;}
.xc{left:109.951200px;}
.x17{left:113.431200px;}
.xf{left:155.215200px;}
.x14{left:168.967200px;}
.x3c{left:185.928600px;}
.x16{left:187.243200px;}
.x24{left:211.159500px;}
.x18{left:215.791200px;}
.x19{left:225.487200px;}
.x23{left:228.172800px;}
.x42{left:234.172800px;}
.x27{left:239.275350px;}
.x26{left:264.508800px;}
.x11{left:266.851200px;}
.x9{left:268.003200px;}
.xa{left:272.287200px;}
.xd{left:274.987200px;}
.xb{left:278.155200px;}
.x10{left:280.291200px;}
.x1a{left:293.935200px;}
.x43{left:301.072800px;}
.x3a{left:303.207900px;}
.x34{left:322.416450px;}
.x28{left:325.545903px;}
.x3d{left:338.305500px;}
.x35{left:355.432947px;}
.x29{left:357.374451px;}
.x44{left:372.184800px;}
.x46{left:374.112600px;}
.x3e{left:376.777500px;}
.x36{left:391.241124px;}
.x2a{left:392.673507px;}
.x3b{left:397.083900px;}
.x3f{left:407.641500px;}
.x41{left:411.656100px;}
.x47{left:424.769100px;}
.x2b{left:427.293735px;}
.x40{left:442.945500px;}
.x6{left:458.998050px;}
.x4e{left:461.544000px;}
.x2c{left:464.035301px;}
.x4c{left:466.500000px;}
.x7{left:473.248050px;}
.x4d{left:479.247000px;}
.x37{left:495.220603px;}
.x2d{left:498.434910px;}
.x48{left:511.119300px;}
.x45{left:514.744800px;}
.x38{left:530.680880px;}
.x2e{left:534.141262px;}
.x39{left:566.709677px;}
.x2f{left:567.760219px;}
.x2{left:572.950350px;}
.x30{left:603.195041px;}
.x49{left:613.221300px;}
.x31{left:633.844125px;}
.x22{left:651.715650px;}
.x1c{left:655.791750px;}
.x1b{left:658.227750px;}
.x1d{left:663.876750px;}
.x1f{left:756.600150px;}
.x20{left:761.640150px;}
.x21{left:767.604150px;}
.x1e{left:771.363150px;}
.x8{left:857.745000px;}
@media print{
.v7{vertical-align:-49.962667pt;}
.v8{vertical-align:-26.325333pt;}
.v6{vertical-align:-22.741333pt;}
.v3{vertical-align:-16.800533pt;}
.v4{vertical-align:-14.400533pt;}
.v5{vertical-align:-6.997333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.810667pt;}
.v2{vertical-align:19.200000pt;}
.ls25{letter-spacing:-5.226667pt;}
.ls27{letter-spacing:-5.040000pt;}
.ls24{letter-spacing:-4.293333pt;}
.ls17{letter-spacing:-2.800000pt;}
.ls26{letter-spacing:-2.613333pt;}
.ls18{letter-spacing:-1.866667pt;}
.ls16{letter-spacing:-1.216000pt;}
.ls9{letter-spacing:-0.962667pt;}
.ls29{letter-spacing:-0.933333pt;}
.ls1b{letter-spacing:-0.810667pt;}
.ls15{letter-spacing:-0.658667pt;}
.ls14{letter-spacing:-0.608000pt;}
.ls28{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.456000pt;}
.ls2b{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.253333pt;}
.ls8{letter-spacing:-0.202667pt;}
.ls2a{letter-spacing:-0.149333pt;}
.lsd{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000213pt;}
.lsa{letter-spacing:0.253333pt;}
.lsf{letter-spacing:0.304000pt;}
.ls5{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.506667pt;}
.lse{letter-spacing:0.760000pt;}
.ls1{letter-spacing:1.947523pt;}
.ls2{letter-spacing:9.766189pt;}
.ls0{letter-spacing:12.074667pt;}
.ls3{letter-spacing:12.800000pt;}
.ls19{letter-spacing:100.394667pt;}
.ls1f{letter-spacing:102.357333pt;}
.ls1e{letter-spacing:104.704000pt;}
.ls1a{letter-spacing:104.746667pt;}
.ls1d{letter-spacing:106.666667pt;}
.ls1c{letter-spacing:106.752000pt;}
.ls10{letter-spacing:127.881600pt;}
.ls11{letter-spacing:207.552960pt;}
.ls20{letter-spacing:230.485333pt;}
.ls21{letter-spacing:231.680000pt;}
.ls23{letter-spacing:546.232533pt;}
.ls12{letter-spacing:597.980800pt;}
.ls22{letter-spacing:946.055893pt;}
.wsc8{word-spacing:-231.680000pt;}
.wsc7{word-spacing:-230.485333pt;}
.wsc3{word-spacing:-106.752000pt;}
.wsc4{word-spacing:-106.666667pt;}
.wsc5{word-spacing:-104.704000pt;}
.wsc6{word-spacing:-102.357333pt;}
.ws1{word-spacing:-25.424000pt;}
.ws7{word-spacing:-11.602667pt;}
.ws74{word-spacing:-11.501333pt;}
.ws78{word-spacing:-11.349333pt;}
.ws3f{word-spacing:-11.146667pt;}
.ws6{word-spacing:-11.096000pt;}
.ws77{word-spacing:-10.994667pt;}
.ws75{word-spacing:-10.944000pt;}
.ws4{word-spacing:-10.842667pt;}
.ws40{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.640000pt;}
.ws76{word-spacing:-10.386667pt;}
.ws7d{word-spacing:-10.378667pt;}
.ws0{word-spacing:-9.685333pt;}
.wsfa{word-spacing:-9.173333pt;}
.ws83{word-spacing:-8.896000pt;}
.wsfb{word-spacing:-8.400000pt;}
.wsd9{word-spacing:-6.849920pt;}
.ws2{word-spacing:-6.251520pt;}
.ws82{word-spacing:-5.871360pt;}
.ws3{word-spacing:-5.470080pt;}
.wse1{word-spacing:-4.408000pt;}
.wsab{word-spacing:-3.496000pt;}
.wsbf{word-spacing:-3.242667pt;}
.ws96{word-spacing:-2.888000pt;}
.wsf6{word-spacing:-2.800000pt;}
.ws92{word-spacing:-2.786667pt;}
.ws11{word-spacing:-2.736000pt;}
.ws120{word-spacing:-2.688000pt;}
.wsf1{word-spacing:-2.381333pt;}
.ws5e{word-spacing:-2.280000pt;}
.wsa6{word-spacing:-2.178667pt;}
.wsa2{word-spacing:-2.077333pt;}
.ws111{word-spacing:-2.053333pt;}
.ws49{word-spacing:-1.925333pt;}
.wsea{word-spacing:-1.824000pt;}
.wsc0{word-spacing:-1.773333pt;}
.ws10e{word-spacing:-1.749333pt;}
.wsa4{word-spacing:-1.722667pt;}
.ws99{word-spacing:-1.672000pt;}
.ws93{word-spacing:-1.621333pt;}
.wsa3{word-spacing:-1.570667pt;}
.wsa7{word-spacing:-1.520000pt;}
.ws97{word-spacing:-1.418667pt;}
.ws108{word-spacing:-1.322667pt;}
.ws37{word-spacing:-1.266667pt;}
.wsf4{word-spacing:-1.216000pt;}
.ws114{word-spacing:-1.194667pt;}
.wsac{word-spacing:-1.165333pt;}
.ws72{word-spacing:-1.109333pt;}
.ws11e{word-spacing:-1.082667pt;}
.ws58{word-spacing:-1.013333pt;}
.wsd{word-spacing:-1.008000pt;}
.ws1a{word-spacing:-0.962667pt;}
.ws13{word-spacing:-0.912000pt;}
.wsb5{word-spacing:-0.861333pt;}
.ws85{word-spacing:-0.810667pt;}
.ws9d{word-spacing:-0.760000pt;}
.ws29{word-spacing:-0.709333pt;}
.ws6c{word-spacing:-0.658667pt;}
.ws45{word-spacing:-0.608000pt;}
.ws11f{word-spacing:-0.560000pt;}
.ws61{word-spacing:-0.506667pt;}
.wsb6{word-spacing:-0.456000pt;}
.wse{word-spacing:-0.448000pt;}
.ws10f{word-spacing:-0.410667pt;}
.wsa1{word-spacing:-0.405333pt;}
.ws48{word-spacing:-0.354667pt;}
.wsfd{word-spacing:-0.304000pt;}
.ws8a{word-spacing:-0.253333pt;}
.ws12a{word-spacing:-0.112000pt;}
.ws41{word-spacing:-0.050667pt;}
.ws73{word-spacing:-0.045333pt;}
.wsf9{word-spacing:-0.042667pt;}
.ws137{word-spacing:-0.037333pt;}
.ws8{word-spacing:0.000000pt;}
.ws127{word-spacing:0.037333pt;}
.wse7{word-spacing:0.050667pt;}
.wsd5{word-spacing:0.074667pt;}
.ws138{word-spacing:0.112000pt;}
.wsc9{word-spacing:0.128000pt;}
.ws128{word-spacing:0.149333pt;}
.ws12{word-spacing:0.202667pt;}
.ws8d{word-spacing:0.253333pt;}
.ws12e{word-spacing:0.261333pt;}
.ws113{word-spacing:0.336000pt;}
.ws124{word-spacing:0.373333pt;}
.wsb0{word-spacing:0.384000pt;}
.wsb1{word-spacing:0.390133pt;}
.ws63{word-spacing:0.405333pt;}
.ws139{word-spacing:0.410667pt;}
.ws133{word-spacing:0.448000pt;}
.ws9e{word-spacing:0.456000pt;}
.ws4e{word-spacing:0.557333pt;}
.ws14{word-spacing:0.608000pt;}
.wse9{word-spacing:0.709333pt;}
.wsb8{word-spacing:0.810667pt;}
.ws44{word-spacing:0.861333pt;}
.wsb7{word-spacing:0.912000pt;}
.ws112{word-spacing:0.933333pt;}
.ws121{word-spacing:1.008000pt;}
.ws38{word-spacing:1.013333pt;}
.wsc{word-spacing:1.045333pt;}
.ws9b{word-spacing:1.114667pt;}
.ws17{word-spacing:1.165333pt;}
.ws9c{word-spacing:1.216000pt;}
.ws13c{word-spacing:1.269333pt;}
.ws10d{word-spacing:1.280000pt;}
.ws117{word-spacing:1.306667pt;}
.ws55{word-spacing:1.368000pt;}
.ws125{word-spacing:1.381333pt;}
.ws1c{word-spacing:1.621333pt;}
.ws106{word-spacing:1.664000pt;}
.ws102{word-spacing:1.672000pt;}
.ws107{word-spacing:1.706667pt;}
.ws1d{word-spacing:1.773333pt;}
.ws54{word-spacing:1.824000pt;}
.wsaf{word-spacing:1.866667pt;}
.wse5{word-spacing:1.925333pt;}
.ws11b{word-spacing:1.978667pt;}
.ws6a{word-spacing:2.026667pt;}
.ws110{word-spacing:2.090667pt;}
.ws39{word-spacing:2.178667pt;}
.wsb4{word-spacing:2.280000pt;}
.ws11d{word-spacing:2.314667pt;}
.ws18{word-spacing:2.381333pt;}
.wsb{word-spacing:2.426667pt;}
.ws42{word-spacing:2.482667pt;}
.wsa{word-spacing:2.501333pt;}
.ws2c{word-spacing:2.533333pt;}
.ws19{word-spacing:2.584000pt;}
.ws132{word-spacing:2.613333pt;}
.ws94{word-spacing:2.634667pt;}
.ws47{word-spacing:2.786667pt;}
.ws10{word-spacing:2.800000pt;}
.ws123{word-spacing:2.912000pt;}
.wsec{word-spacing:2.938667pt;}
.ws5d{word-spacing:2.989333pt;}
.wsbe{word-spacing:3.090667pt;}
.ws9a{word-spacing:3.141333pt;}
.ws90{word-spacing:3.192000pt;}
.ws115{word-spacing:3.210667pt;}
.ws6b{word-spacing:3.242667pt;}
.ws105{word-spacing:3.285333pt;}
.ws15{word-spacing:3.344000pt;}
.ws126{word-spacing:3.360000pt;}
.ws5f{word-spacing:3.394667pt;}
.ws5c{word-spacing:3.445333pt;}
.ws100{word-spacing:3.496000pt;}
.ws129{word-spacing:3.509333pt;}
.ws8b{word-spacing:3.546667pt;}
.ws131{word-spacing:3.584000pt;}
.ws86{word-spacing:3.597333pt;}
.wsf5{word-spacing:3.698667pt;}
.ws68{word-spacing:3.749333pt;}
.ws36{word-spacing:3.800000pt;}
.ws64{word-spacing:3.952000pt;}
.ws1b{word-spacing:4.002667pt;}
.wsc2{word-spacing:4.053333pt;}
.wsef{word-spacing:4.104000pt;}
.ws8e{word-spacing:4.256000pt;}
.ws67{word-spacing:4.306667pt;}
.ws51{word-spacing:4.357333pt;}
.ws118{word-spacing:4.368000pt;}
.ws59{word-spacing:4.458667pt;}
.ws33{word-spacing:4.610667pt;}
.ws35{word-spacing:4.661333pt;}
.ws11a{word-spacing:4.666667pt;}
.wsfe{word-spacing:4.712000pt;}
.wsf{word-spacing:4.778667pt;}
.wsfc{word-spacing:4.813333pt;}
.ws3b{word-spacing:4.864000pt;}
.ws60{word-spacing:4.914667pt;}
.ws16{word-spacing:4.965333pt;}
.ws2a{word-spacing:5.016000pt;}
.ws98{word-spacing:5.066667pt;}
.ws116{word-spacing:5.114667pt;}
.ws10c{word-spacing:5.205333pt;}
.ws8c{word-spacing:5.218667pt;}
.ws89{word-spacing:5.320000pt;}
.ws84{word-spacing:5.472000pt;}
.ws43{word-spacing:5.522667pt;}
.ws136{word-spacing:5.525333pt;}
.ws11c{word-spacing:5.562667pt;}
.wse4{word-spacing:5.573333pt;}
.wse8{word-spacing:5.624000pt;}
.ws25{word-spacing:5.725333pt;}
.wsbc{word-spacing:5.776000pt;}
.ws95{word-spacing:5.826667pt;}
.ws12b{word-spacing:5.898667pt;}
.ws3a{word-spacing:5.928000pt;}
.ws34{word-spacing:6.029333pt;}
.ws27{word-spacing:6.080000pt;}
.ws20{word-spacing:6.282667pt;}
.wsa0{word-spacing:6.384000pt;}
.ws5b{word-spacing:6.434667pt;}
.ws119{word-spacing:6.458667pt;}
.ws26{word-spacing:6.485333pt;}
.ws23{word-spacing:6.536000pt;}
.wsc1{word-spacing:6.688000pt;}
.ws135{word-spacing:6.720000pt;}
.ws103{word-spacing:6.738667pt;}
.ws70{word-spacing:6.789333pt;}
.wsbb{word-spacing:6.890667pt;}
.ws134{word-spacing:6.944000pt;}
.ws46{word-spacing:6.992000pt;}
.ws30{word-spacing:7.093333pt;}
.ws50{word-spacing:7.144000pt;}
.ws12f{word-spacing:7.168000pt;}
.ws21{word-spacing:7.194667pt;}
.ws1f{word-spacing:7.245333pt;}
.ws8f{word-spacing:7.296000pt;}
.wsed{word-spacing:7.346667pt;}
.ws130{word-spacing:7.392000pt;}
.ws101{word-spacing:7.600000pt;}
.ws6e{word-spacing:7.752000pt;}
.wsee{word-spacing:7.802667pt;}
.ws62{word-spacing:8.056000pt;}
.wsff{word-spacing:8.157333pt;}
.wsf0{word-spacing:8.258667pt;}
.ws57{word-spacing:8.360000pt;}
.ws24{word-spacing:8.461333pt;}
.ws5a{word-spacing:8.664000pt;}
.ws6d{word-spacing:8.968000pt;}
.ws13a{word-spacing:9.034667pt;}
.ws32{word-spacing:9.120000pt;}
.wsa8{word-spacing:9.221333pt;}
.wsa9{word-spacing:9.322667pt;}
.ws31{word-spacing:9.424000pt;}
.ws65{word-spacing:9.576000pt;}
.ws91{word-spacing:9.626667pt;}
.wsad{word-spacing:9.829333pt;}
.wseb{word-spacing:9.930667pt;}
.ws13d{word-spacing:10.229333pt;}
.ws69{word-spacing:10.336000pt;}
.ws9f{word-spacing:10.386667pt;}
.ws4c{word-spacing:10.437333pt;}
.ws2d{word-spacing:10.538667pt;}
.ws22{word-spacing:10.589333pt;}
.ws53{word-spacing:10.690667pt;}
.ws66{word-spacing:10.741333pt;}
.ws52{word-spacing:11.045333pt;}
.ws13b{word-spacing:11.050667pt;}
.ws71{word-spacing:11.096000pt;}
.ws12c{word-spacing:11.424000pt;}
.wsf3{word-spacing:11.501333pt;}
.ws28{word-spacing:11.552000pt;}
.wsaa{word-spacing:11.602667pt;}
.ws9{word-spacing:11.648000pt;}
.ws4f{word-spacing:11.704000pt;}
.ws1e{word-spacing:11.754667pt;}
.ws10b{word-spacing:11.776000pt;}
.wsbd{word-spacing:11.906667pt;}
.ws87{word-spacing:12.312000pt;}
.ws12d{word-spacing:12.394667pt;}
.wsf2{word-spacing:12.413333pt;}
.ws56{word-spacing:13.173333pt;}
.ws104{word-spacing:13.325333pt;}
.wsa5{word-spacing:13.781333pt;}
.ws2b{word-spacing:14.186667pt;}
.ws3c{word-spacing:14.490667pt;}
.wse6{word-spacing:15.250667pt;}
.ws109{word-spacing:15.530667pt;}
.ws122{word-spacing:15.904000pt;}
.ws6f{word-spacing:16.112000pt;}
.ws10a{word-spacing:16.128000pt;}
.ws3e{word-spacing:16.365333pt;}
.ws4a{word-spacing:16.618667pt;}
.ws3d{word-spacing:16.770667pt;}
.ws2e{word-spacing:16.872000pt;}
.ws2f{word-spacing:17.226667pt;}
.wsba{word-spacing:18.290667pt;}
.wsb9{word-spacing:18.645333pt;}
.ws88{word-spacing:20.165333pt;}
.wsae{word-spacing:20.266667pt;}
.ws4b{word-spacing:20.368000pt;}
.wse3{word-spacing:20.570667pt;}
.wse2{word-spacing:20.976000pt;}
.ws4d{word-spacing:25.992000pt;}
.wsf7{word-spacing:26.954667pt;}
.wsf8{word-spacing:29.754667pt;}
.wsb3{word-spacing:68.650667pt;}
.wsb2{word-spacing:84.437333pt;}
.ws7a{word-spacing:115.360000pt;}
.ws79{word-spacing:117.450667pt;}
.wsda{word-spacing:118.496000pt;}
.ws7b{word-spacing:120.960000pt;}
.wsce{word-spacing:121.109333pt;}
.wse0{word-spacing:121.856000pt;}
.wscb{word-spacing:122.789333pt;}
.wsd0{word-spacing:124.021333pt;}
.ws7f{word-spacing:125.738667pt;}
.wsd3{word-spacing:127.456000pt;}
.ws7e{word-spacing:128.314667pt;}
.wsde{word-spacing:128.389333pt;}
.ws80{word-spacing:129.472000pt;}
.wsdc{word-spacing:131.562667pt;}
.wsd8{word-spacing:132.234667pt;}
.wsca{word-spacing:133.130667pt;}
.ws7c{word-spacing:133.466667pt;}
.wsdf{word-spacing:133.728000pt;}
.wsd6{word-spacing:134.624000pt;}
.wsdd{word-spacing:134.661333pt;}
.ws81{word-spacing:145.338667pt;}
.wscf{word-spacing:146.533333pt;}
.wsdb{word-spacing:166.096000pt;}
.wscc{word-spacing:179.722667pt;}
.wsd4{word-spacing:180.282667pt;}
.wsd7{word-spacing:184.949333pt;}
.wsd1{word-spacing:191.034667pt;}
.wsd2{word-spacing:294.821333pt;}
.wscd{word-spacing:300.048000pt;}
._2b{margin-left:-1460.364267pt;}
._11{margin-left:-5.573333pt;}
._a{margin-left:-4.269333pt;}
._3{margin-left:-2.766400pt;}
._5{margin-left:-1.870400pt;}
._0{margin-left:-0.938667pt;}
._4{width:1.041600pt;}
._2{width:2.516267pt;}
._8{width:3.537333pt;}
._f{width:5.232267pt;}
._c{width:6.181333pt;}
._d{width:7.408800pt;}
._12{width:8.753867pt;}
._50{width:9.744000pt;}
._10{width:10.700533pt;}
._1{width:11.690667pt;}
._e{width:13.617600pt;}
._4f{width:15.630933pt;}
._4e{width:16.538667pt;}
._4d{width:17.966933pt;}
._27{width:19.101333pt;}
._29{width:21.381333pt;}
._4c{width:31.779733pt;}
._28{width:33.066667pt;}
._13{width:34.304000pt;}
._9{width:37.240000pt;}
._7{width:38.628800pt;}
._b{width:40.417600pt;}
._6{width:42.351467pt;}
._2a{width:112.224000pt;}
._3a{width:131.442133pt;}
._15{width:133.018667pt;}
._14{width:135.109333pt;}
._1b{width:136.117333pt;}
._23{width:137.760000pt;}
._2e{width:139.037867pt;}
._36{width:140.709333pt;}
._4b{width:142.314667pt;}
._25{width:143.472000pt;}
._1e{width:145.749333pt;}
._47{width:146.928533pt;}
._3c{width:148.517867pt;}
._32{width:150.154667pt;}
._2d{width:152.245333pt;}
._18{width:155.717333pt;}
._33{width:162.624000pt;}
._17{width:164.229333pt;}
._1d{width:174.608000pt;}
._43{width:185.388800pt;}
._2f{width:191.408000pt;}
._45{width:195.813333pt;}
._3d{width:196.746667pt;}
._34{width:200.181333pt;}
._3e{width:226.837333pt;}
._1a{width:241.248000pt;}
._1c{width:249.461333pt;}
._21{width:253.680000pt;}
._4a{width:263.390400pt;}
._19{width:304.154667pt;}
._30{width:305.546667pt;}
._38{width:312.316533pt;}
._3b{width:314.906667pt;}
._41{width:331.184000pt;}
._3f{width:367.472000pt;}
._20{width:411.338667pt;}
._16{width:431.692800pt;}
._46{width:453.292800pt;}
._26{width:507.513067pt;}
._1f{width:508.853333pt;}
._22{width:525.392000pt;}
._24{width:618.176000pt;}
._2c{width:830.218667pt;}
._35{width:857.770667pt;}
._31{width:872.256000pt;}
._48{width:901.338667pt;}
._37{width:986.384000pt;}
._39{width:1029.952000pt;}
._49{width:1069.413333pt;}
._42{width:1080.430400pt;}
._40{width:1115.818667pt;}
._44{width:1119.089067pt;}
.fs2{font-size:0.533333pt;}
.fsb{font-size:21.120000pt;}
.fs4{font-size:24.640000pt;}
.fs6{font-size:28.160000pt;}
.fs8{font-size:29.538667pt;}
.fsa{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fsd{font-size:42.667012pt;}
.fs9{font-size:45.333333pt;}
.fs7{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:2.719733pt;}
.y13e{bottom:16.089651pt;}
.y13d{bottom:22.606400pt;}
.y4d{bottom:58.921467pt;}
.y2{bottom:58.931067pt;}
.y156{bottom:75.533067pt;}
.y154{bottom:89.657067pt;}
.ya6{bottom:95.666667pt;}
.y120{bottom:97.103200pt;}
.y130{bottom:97.179200pt;}
.y8f{bottom:97.980133pt;}
.yf{bottom:98.717467pt;}
.yd8{bottom:99.186667pt;}
.y17f{bottom:99.207600pt;}
.y19e{bottom:99.372267pt;}
.yf4{bottom:99.718667pt;}
.y4b{bottom:102.502933pt;}
.y155{bottom:105.763733pt;}
.ya5{bottom:109.000000pt;}
.ye{bottom:110.720133pt;}
.y11f{bottom:114.431200pt;}
.y12f{bottom:114.507200pt;}
.y8e{bottom:115.308133pt;}
.yd7{bottom:116.514667pt;}
.y17e{bottom:116.535600pt;}
.y19d{bottom:116.700267pt;}
.yf3{bottom:117.046667pt;}
.y4a{bottom:119.841600pt;}
.yd{bottom:122.722800pt;}
.y11e{bottom:131.759200pt;}
.y12e{bottom:131.835200pt;}
.y8d{bottom:132.636133pt;}
.yd6{bottom:133.842667pt;}
.y17d{bottom:133.863600pt;}
.y19c{bottom:134.028267pt;}
.yf2{bottom:134.374667pt;}
.yc{bottom:134.725467pt;}
.y49{bottom:137.169600pt;}
.yb{bottom:146.728133pt;}
.y11d{bottom:149.087200pt;}
.y12d{bottom:149.163200pt;}
.y8c{bottom:149.964133pt;}
.yd5{bottom:151.170667pt;}
.y17c{bottom:151.191600pt;}
.y19b{bottom:151.356267pt;}
.ya4{bottom:151.501467pt;}
.yf1{bottom:151.702667pt;}
.y48{bottom:154.497600pt;}
.ya{bottom:158.730800pt;}
.ya3{bottom:163.501467pt;}
.y11c{bottom:166.415200pt;}
.y12c{bottom:166.491200pt;}
.y8b{bottom:167.292133pt;}
.yd4{bottom:168.498667pt;}
.y17b{bottom:168.519600pt;}
.y19a{bottom:168.684267pt;}
.yf0{bottom:169.030667pt;}
.y9{bottom:170.733467pt;}
.ya2{bottom:175.501467pt;}
.y47{bottom:178.497600pt;}
.y8{bottom:182.730800pt;}
.y11b{bottom:183.743200pt;}
.y12b{bottom:183.819200pt;}
.y8a{bottom:184.620133pt;}
.yd3{bottom:185.826667pt;}
.y17a{bottom:185.847600pt;}
.y199{bottom:186.012267pt;}
.yef{bottom:186.358667pt;}
.y7{bottom:198.728133pt;}
.y11a{bottom:201.071200pt;}
.y12a{bottom:201.147200pt;}
.y89{bottom:201.948133pt;}
.yd2{bottom:203.154667pt;}
.y179{bottom:203.175600pt;}
.y198{bottom:203.340267pt;}
.yee{bottom:203.686667pt;}
.y6{bottom:210.730800pt;}
.y46{bottom:213.362267pt;}
.y226{bottom:215.775333pt;}
.y1e5{bottom:216.186000pt;}
.y129{bottom:218.475200pt;}
.y88{bottom:219.276133pt;}
.yd1{bottom:220.482667pt;}
.y178{bottom:220.503600pt;}
.y197{bottom:220.668267pt;}
.yed{bottom:221.014667pt;}
.y5{bottom:222.733467pt;}
.y119{bottom:225.071200pt;}
.y225{bottom:227.778000pt;}
.y1e4{bottom:228.188667pt;}
.y45{bottom:230.690267pt;}
.ya1{bottom:232.173467pt;}
.y4{bottom:234.733467pt;}
.y128{bottom:235.803200pt;}
.y87{bottom:236.604133pt;}
.yd0{bottom:237.810667pt;}
.y177{bottom:237.831600pt;}
.y196{bottom:237.996267pt;}
.yec{bottom:238.342667pt;}
.y224{bottom:239.780667pt;}
.y1e3{bottom:240.191333pt;}
.ya0{bottom:244.173467pt;}
.y44{bottom:248.018267pt;}
.y223{bottom:251.783333pt;}
.y1e2{bottom:252.194000pt;}
.y127{bottom:253.131200pt;}
.y86{bottom:253.932133pt;}
.ycf{bottom:255.138667pt;}
.y176{bottom:255.159600pt;}
.y195{bottom:255.324267pt;}
.yeb{bottom:255.670667pt;}
.y222{bottom:263.786000pt;}
.y1e1{bottom:264.196667pt;}
.y33{bottom:265.270267pt;}
.y43{bottom:265.346267pt;}
.y118{bottom:270.431200pt;}
.y126{bottom:270.459200pt;}
.y85{bottom:271.260133pt;}
.yce{bottom:272.466667pt;}
.y175{bottom:272.487600pt;}
.y194{bottom:272.652267pt;}
.yea{bottom:272.998667pt;}
.y221{bottom:275.788667pt;}
.y1e0{bottom:276.199333pt;}
.y9f{bottom:277.197467pt;}
.y32{bottom:282.598267pt;}
.y42{bottom:282.674267pt;}
.y117{bottom:287.759200pt;}
.y125{bottom:287.787200pt;}
.y220{bottom:287.791333pt;}
.y1df{bottom:288.202000pt;}
.y84{bottom:288.588133pt;}
.y9e{bottom:289.197467pt;}
.ycd{bottom:289.794667pt;}
.y174{bottom:289.815600pt;}
.y193{bottom:289.980267pt;}
.ye9{bottom:290.326667pt;}
.y21f{bottom:299.794000pt;}
.y31{bottom:299.926267pt;}
.y41{bottom:300.002267pt;}
.y1de{bottom:300.204667pt;}
.y116{bottom:305.087200pt;}
.y124{bottom:305.115200pt;}
.y83{bottom:305.916133pt;}
.ycc{bottom:307.122667pt;}
.y173{bottom:307.143600pt;}
.y192{bottom:307.308267pt;}
.ye8{bottom:307.654667pt;}
.y21e{bottom:311.796667pt;}
.y1dd{bottom:312.207333pt;}
.y9d{bottom:315.949467pt;}
.y30{bottom:317.254267pt;}
.y40{bottom:317.330267pt;}
.y115{bottom:322.415200pt;}
.y123{bottom:322.443200pt;}
.y82{bottom:323.244133pt;}
.y21d{bottom:323.799333pt;}
.y1dc{bottom:324.210000pt;}
.ycb{bottom:324.450667pt;}
.y172{bottom:324.471600pt;}
.y191{bottom:324.636267pt;}
.ye7{bottom:324.982667pt;}
.y9c{bottom:327.949467pt;}
.y2f{bottom:334.582267pt;}
.y3f{bottom:334.658267pt;}
.y21c{bottom:335.802000pt;}
.y1db{bottom:336.212667pt;}
.y114{bottom:339.743200pt;}
.y122{bottom:339.771200pt;}
.y81{bottom:340.572133pt;}
.yca{bottom:341.778667pt;}
.y171{bottom:341.799600pt;}
.y190{bottom:341.964267pt;}
.ye6{bottom:342.310667pt;}
.y21b{bottom:347.804667pt;}
.y1da{bottom:348.215333pt;}
.y149{bottom:349.138400pt;}
.y2e{bottom:351.910267pt;}
.y3e{bottom:351.986267pt;}
.y113{bottom:357.071200pt;}
.y121{bottom:357.099200pt;}
.y135{bottom:357.521067pt;}
.y80{bottom:357.900133pt;}
.y9b{bottom:358.552133pt;}
.yc9{bottom:359.106667pt;}
.y170{bottom:359.127600pt;}
.y18f{bottom:359.292267pt;}
.ye5{bottom:359.638667pt;}
.y21a{bottom:359.807333pt;}
.y1d9{bottom:360.218000pt;}
.y2d{bottom:369.238267pt;}
.y3d{bottom:369.314267pt;}
.y219{bottom:371.810000pt;}
.y1d8{bottom:374.884667pt;}
.y7f{bottom:375.228133pt;}
.yc8{bottom:376.434667pt;}
.y16f{bottom:376.455600pt;}
.y18e{bottom:376.620267pt;}
.ye4{bottom:376.966667pt;}
.y218{bottom:383.812667pt;}
.y2c{bottom:386.566267pt;}
.y3c{bottom:386.642267pt;}
.y7e{bottom:392.556133pt;}
.yc7{bottom:393.762667pt;}
.y16e{bottom:393.783600pt;}
.y18d{bottom:393.948267pt;}
.ye3{bottom:394.294667pt;}
.y217{bottom:395.815333pt;}
.y160{bottom:399.279733pt;}
.y2b{bottom:403.894267pt;}
.y3b{bottom:403.970267pt;}
.y1d7{bottom:404.218000pt;}
.y216{bottom:407.818000pt;}
.y9a{bottom:408.440133pt;}
.y7d{bottom:409.884133pt;}
.yc6{bottom:411.090667pt;}
.y16d{bottom:411.111600pt;}
.y18c{bottom:411.276267pt;}
.ye2{bottom:411.622667pt;}
.y15f{bottom:412.613067pt;}
.y1d6{bottom:417.551333pt;}
.y215{bottom:419.820667pt;}
.y99{bottom:420.440133pt;}
.y2a{bottom:421.222267pt;}
.y3a{bottom:421.298267pt;}
.y7c{bottom:427.212133pt;}
.yc5{bottom:428.418667pt;}
.y16c{bottom:428.439600pt;}
.y18b{bottom:428.604267pt;}
.ye1{bottom:428.950667pt;}
.y1d5{bottom:430.884667pt;}
.y214{bottom:431.823333pt;}
.y29{bottom:438.550267pt;}
.y39{bottom:438.626267pt;}
.y132{bottom:442.613333pt;}
.y213{bottom:443.826000pt;}
.y1d4{bottom:444.218000pt;}
.y7b{bottom:444.540133pt;}
.yc4{bottom:445.746667pt;}
.y16b{bottom:445.767600pt;}
.y18a{bottom:445.932267pt;}
.ye0{bottom:446.278667pt;}
.y212{bottom:455.828667pt;}
.y28{bottom:455.878267pt;}
.y38{bottom:455.954267pt;}
.y1d3{bottom:457.551333pt;}
.y7a{bottom:461.868133pt;}
.yc3{bottom:463.074667pt;}
.y16a{bottom:463.095600pt;}
.y189{bottom:463.260267pt;}
.ydf{bottom:463.606667pt;}
.y211{bottom:467.831333pt;}
.y98{bottom:470.328133pt;}
.y1d2{bottom:470.884667pt;}
.y142{bottom:472.635587pt;}
.y27{bottom:473.206267pt;}
.y37{bottom:473.282267pt;}
.y140{bottom:476.399311pt;}
.y141{bottom:476.406854pt;}
.y13f{bottom:478.986400pt;}
.y79{bottom:479.196133pt;}
.y210{bottom:479.834000pt;}
.yc2{bottom:480.402667pt;}
.y169{bottom:480.423600pt;}
.y188{bottom:480.588267pt;}
.yde{bottom:480.934667pt;}
.y97{bottom:482.328133pt;}
.y1d1{bottom:484.218000pt;}
.y26{bottom:490.534267pt;}
.y36{bottom:490.610267pt;}
.y20f{bottom:491.836667pt;}
.y78{bottom:496.524133pt;}
.y1d0{bottom:497.551333pt;}
.yc1{bottom:497.730667pt;}
.y168{bottom:497.751600pt;}
.y187{bottom:497.916267pt;}
.ydd{bottom:498.262667pt;}
.y20e{bottom:503.839333pt;}
.y15c{bottom:507.485067pt;}
.y25{bottom:507.862267pt;}
.y35{bottom:507.938267pt;}
.y1cf{bottom:510.884667pt;}
.y77{bottom:513.852133pt;}
.yc0{bottom:515.058667pt;}
.y167{bottom:515.079600pt;}
.y186{bottom:515.244267pt;}
.ydc{bottom:515.590667pt;}
.y20d{bottom:515.842000pt;}
.y1ce{bottom:524.218000pt;}
.y24{bottom:525.190267pt;}
.y34{bottom:525.266267pt;}
.y20c{bottom:527.844667pt;}
.y96{bottom:529.218800pt;}
.y76{bottom:531.180133pt;}
.y153{bottom:531.733733pt;}
.ybf{bottom:532.386667pt;}
.y166{bottom:532.407600pt;}
.y185{bottom:532.572267pt;}
.ydb{bottom:532.918667pt;}
.y15b{bottom:536.818400pt;}
.y133{bottom:537.159600pt;}
.y1cd{bottom:537.551333pt;}
.y20b{bottom:539.847333pt;}
.y95{bottom:541.218800pt;}
.y151{bottom:548.373733pt;}
.y75{bottom:548.508133pt;}
.ybe{bottom:549.714667pt;}
.y165{bottom:549.735600pt;}
.y184{bottom:549.900267pt;}
.yda{bottom:550.246667pt;}
.y20a{bottom:551.850000pt;}
.y1cc{bottom:553.551333pt;}
.y150{bottom:560.939067pt;}
.y209{bottom:563.852667pt;}
.y74{bottom:565.836133pt;}
.y15a{bottom:566.151733pt;}
.ybd{bottom:567.042667pt;}
.y164{bottom:567.063600pt;}
.y183{bottom:567.228267pt;}
.yd9{bottom:567.574667pt;}
.y23{bottom:569.852933pt;}
.y208{bottom:575.855333pt;}
.y152{bottom:576.491067pt;}
.y1cb{bottom:583.007467pt;}
.y73{bottom:583.164133pt;}
.ybc{bottom:584.370667pt;}
.y163{bottom:584.391600pt;}
.y182{bottom:584.556267pt;}
.y22{bottom:585.850933pt;}
.y207{bottom:587.858000pt;}
.y159{bottom:595.485067pt;}
.y206{bottom:599.860667pt;}
.y1ca{bottom:600.335467pt;}
.y72{bottom:600.492133pt;}
.y162{bottom:601.719600pt;}
.y21{bottom:601.848933pt;}
.y181{bottom:601.884267pt;}
.y112{bottom:603.303067pt;}
.ybb{bottom:608.370667pt;}
.y94{bottom:608.888133pt;}
.y205{bottom:611.863333pt;}
.y111{bottom:617.567200pt;}
.y1c9{bottom:617.663467pt;}
.y71{bottom:617.820133pt;}
.y20{bottom:617.846933pt;}
.y161{bottom:619.047600pt;}
.y180{bottom:619.212267pt;}
.y204{bottom:623.866000pt;}
.y158{bottom:624.818400pt;}
.y110{bottom:627.303067pt;}
.y1f{bottom:633.844933pt;}
.y1c8{bottom:634.991467pt;}
.y70{bottom:635.148133pt;}
.y203{bottom:635.868667pt;}
.y14f{bottom:636.363067pt;}
.y10f{bottom:641.567200pt;}
.y202{bottom:647.871333pt;}
.y1e{bottom:649.842933pt;}
.y1c7{bottom:652.319467pt;}
.y6f{bottom:652.476133pt;}
.yba{bottom:653.800000pt;}
.y157{bottom:654.151733pt;}
.y10e{bottom:654.900533pt;}
.y201{bottom:659.874000pt;}
.y1b3{bottom:663.856267pt;}
.y93{bottom:664.034800pt;}
.y10d{bottom:664.633733pt;}
.y1d{bottom:665.840933pt;}
.y1c6{bottom:669.647467pt;}
.y6e{bottom:669.804133pt;}
.yb9{bottom:671.128000pt;}
.y200{bottom:671.876667pt;}
.y1b2{bottom:673.589467pt;}
.y92{bottom:676.034800pt;}
.y1c{bottom:681.838933pt;}
.y14e{bottom:683.488400pt;}
.y10c{bottom:683.635067pt;}
.y1ff{bottom:683.879333pt;}
.y1c5{bottom:686.975467pt;}
.y6d{bottom:687.132133pt;}
.y91{bottom:688.034800pt;}
.yb8{bottom:688.456000pt;}
.y1b1{bottom:692.594800pt;}
.y134{bottom:695.671733pt;}
.y1fe{bottom:695.882000pt;}
.y1b{bottom:697.836933pt;}
.y10b{bottom:698.395067pt;}
.y90{bottom:700.034800pt;}
.y1c4{bottom:704.303467pt;}
.y6c{bottom:704.460133pt;}
.yb7{bottom:705.784000pt;}
.y1b0{bottom:707.350800pt;}
.y1fd{bottom:707.884667pt;}
.y10a{bottom:713.151067pt;}
.y1a{bottom:713.834933pt;}
.y1fc{bottom:719.887333pt;}
.y1c3{bottom:721.631467pt;}
.y6b{bottom:721.788133pt;}
.y1af{bottom:722.106800pt;}
.yb6{bottom:723.112000pt;}
.y144{bottom:725.979733pt;}
.y109{bottom:727.907067pt;}
.y19{bottom:729.832933pt;}
.y1fb{bottom:731.890000pt;}
.y139{bottom:735.643860pt;}
.y1ae{bottom:736.862800pt;}
.y1c2{bottom:738.959467pt;}
.y6a{bottom:739.116133pt;}
.yb5{bottom:740.440000pt;}
.y138{bottom:742.153067pt;}
.y108{bottom:742.672400pt;}
.y1fa{bottom:743.892667pt;}
.y18{bottom:745.838933pt;}
.y13c{bottom:749.574919pt;}
.y1ad{bottom:751.624133pt;}
.y13b{bottom:753.346186pt;}
.y1f9{bottom:755.895333pt;}
.y13a{bottom:755.933275pt;}
.y1c1{bottom:756.287467pt;}
.y5b{bottom:756.380800pt;}
.y69{bottom:756.444133pt;}
.y107{bottom:757.428400pt;}
.yb4{bottom:757.768000pt;}
.y17{bottom:761.836933pt;}
.y1ac{bottom:766.380133pt;}
.y1f8{bottom:767.898000pt;}
.y106{bottom:772.184400pt;}
.y1c0{bottom:773.615467pt;}
.y5a{bottom:773.708800pt;}
.y68{bottom:773.772133pt;}
.yb3{bottom:775.096000pt;}
.y16{bottom:777.834933pt;}
.y1f7{bottom:779.900667pt;}
.y1ab{bottom:781.136133pt;}
.y15e{bottom:785.085067pt;}
.y105{bottom:786.940400pt;}
.y1bf{bottom:790.943467pt;}
.y59{bottom:791.036800pt;}
.y67{bottom:791.100133pt;}
.y1f6{bottom:791.903333pt;}
.yb2{bottom:792.424000pt;}
.y15{bottom:793.832933pt;}
.y1aa{bottom:795.892133pt;}
.y104{bottom:801.696400pt;}
.y1f5{bottom:803.906000pt;}
.y147{bottom:804.234400pt;}
.y1be{bottom:808.271467pt;}
.y58{bottom:808.364800pt;}
.y66{bottom:808.428133pt;}
.yb1{bottom:809.752000pt;}
.y14{bottom:809.830933pt;}
.y1a9{bottom:810.654667pt;}
.y15d{bottom:810.770400pt;}
.y1f4{bottom:815.908667pt;}
.y103{bottom:816.452400pt;}
.y148{bottom:816.906400pt;}
.y1a8{bottom:825.410667pt;}
.y1bd{bottom:825.599467pt;}
.y57{bottom:825.692800pt;}
.y65{bottom:825.756133pt;}
.yb0{bottom:827.080000pt;}
.y1f3{bottom:827.911333pt;}
.y146{bottom:831.178400pt;}
.y102{bottom:831.208400pt;}
.y14d{bottom:836.437733pt;}
.y1f2{bottom:839.914000pt;}
.y1a7{bottom:840.166667pt;}
.y13{bottom:841.364400pt;}
.y1bc{bottom:842.927467pt;}
.y56{bottom:843.020800pt;}
.y64{bottom:843.084133pt;}
.yaf{bottom:844.408000pt;}
.y101{bottom:845.957600pt;}
.y1f1{bottom:851.916667pt;}
.y143{bottom:853.819733pt;}
.y12{bottom:854.497600pt;}
.y1a6{bottom:854.922667pt;}
.y4c{bottom:858.320000pt;}
.y1bb{bottom:860.255467pt;}
.y55{bottom:860.348800pt;}
.y63{bottom:860.412133pt;}
.y100{bottom:860.713600pt;}
.yae{bottom:861.736000pt;}
.y14c{bottom:862.123067pt;}
.y1f0{bottom:863.919333pt;}
.y1a5{bottom:869.678667pt;}
.y1ef{bottom:875.922000pt;}
.y1ba{bottom:877.583467pt;}
.y54{bottom:877.676800pt;}
.y62{bottom:877.740133pt;}
.y11{bottom:878.493600pt;}
.yad{bottom:879.064000pt;}
.yff{bottom:879.473600pt;}
.yf7{bottom:879.479067pt;}
.y1a4{bottom:884.433333pt;}
.y14b{bottom:887.808400pt;}
.y1ee{bottom:887.924667pt;}
.y1b9{bottom:894.911467pt;}
.y53{bottom:895.004800pt;}
.y61{bottom:895.068133pt;}
.yac{bottom:896.392000pt;}
.y1a3{bottom:899.189333pt;}
.y1ed{bottom:899.927333pt;}
.yfe{bottom:902.228267pt;}
.yfa{bottom:902.230933pt;}
.y10{bottom:910.497600pt;}
.y1ec{bottom:911.930000pt;}
.y1b8{bottom:912.239467pt;}
.y52{bottom:912.332800pt;}
.y60{bottom:912.396133pt;}
.y14a{bottom:913.493733pt;}
.yab{bottom:913.720000pt;}
.yfd{bottom:914.230933pt;}
.yf9{bottom:914.233600pt;}
.y1a0{bottom:917.949333pt;}
.y1eb{bottom:923.932667pt;}
.yfc{bottom:926.233600pt;}
.yf8{bottom:926.236267pt;}
.y1b7{bottom:929.567467pt;}
.y51{bottom:929.660800pt;}
.y5f{bottom:929.724133pt;}
.yaa{bottom:931.048000pt;}
.y1ea{bottom:935.935333pt;}
.yfb{bottom:938.236267pt;}
.y136{bottom:939.178000pt;}
.y1a2{bottom:940.704000pt;}
.y1b6{bottom:946.895467pt;}
.y50{bottom:946.988800pt;}
.y5e{bottom:947.052133pt;}
.y1e9{bottom:947.938000pt;}
.ya9{bottom:948.376000pt;}
.y137{bottom:949.898000pt;}
.y1a1{bottom:952.706667pt;}
.y1e8{bottom:959.940667pt;}
.y1b5{bottom:964.223467pt;}
.y4f{bottom:964.316800pt;}
.y5d{bottom:964.380133pt;}
.y131{bottom:964.862133pt;}
.ya8{bottom:965.704000pt;}
.yf6{bottom:968.660267pt;}
.y1e7{bottom:971.943333pt;}
.y1{bottom:977.731600pt;}
.y1b4{bottom:981.551467pt;}
.y4e{bottom:981.644800pt;}
.y5c{bottom:981.708133pt;}
.yf5{bottom:981.993600pt;}
.ya7{bottom:983.037733pt;}
.y19f{bottom:983.130667pt;}
.y1e6{bottom:983.946000pt;}
.y3{bottom:1006.343200pt;}
.h5{height:0.396267pt;}
.h16{height:15.565440pt;}
.ha{height:18.307520pt;}
.h15{height:23.584000pt;}
.h1f{height:26.656000pt;}
.h11{height:27.514667pt;}
.h6{height:27.738667pt;}
.h17{height:28.672000pt;}
.h1a{height:28.672232pt;}
.he{height:28.757333pt;}
.h3{height:30.464000pt;}
.hd{height:31.062500pt;}
.h10{height:31.317333pt;}
.h1e{height:31.658667pt;}
.hf{height:31.701333pt;}
.hc{height:33.637333pt;}
.h7{height:34.896427pt;}
.h13{height:34.922347pt;}
.h1c{height:34.933547pt;}
.h1d{height:34.938347pt;}
.h14{height:34.944213pt;}
.h1b{height:34.965547pt;}
.h12{height:34.986880pt;}
.h19{height:35.840000pt;}
.hb{height:36.176000pt;}
.h9{height:39.869440pt;}
.h4{height:47.104000pt;}
.h2{height:47.168000pt;}
.h8{height:79.968000pt;}
.h18{height:548.240000pt;}
.h1{height:1043.333333pt;}
.h0{height:1043.520000pt;}
.w1{width:416.606667pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x25{left:9.311067pt;}
.x32{left:18.915067pt;}
.x33{left:45.238508pt;}
.x3{left:65.466667pt;}
.x4a{left:72.133333pt;}
.x4{left:74.800000pt;}
.x1{left:76.133333pt;}
.x5{left:78.133333pt;}
.x15{left:79.569067pt;}
.xe{left:82.321067pt;}
.x4b{left:83.464000pt;}
.x13{left:86.246400pt;}
.x12{left:87.622400pt;}
.xc{left:97.734400pt;}
.x17{left:100.827733pt;}
.xf{left:137.969067pt;}
.x14{left:150.193067pt;}
.x3c{left:165.269867pt;}
.x16{left:166.438400pt;}
.x24{left:187.697333pt;}
.x18{left:191.814400pt;}
.x19{left:200.433067pt;}
.x23{left:202.820267pt;}
.x42{left:208.153600pt;}
.x27{left:212.689200pt;}
.x26{left:235.118933pt;}
.x11{left:237.201067pt;}
.x9{left:238.225067pt;}
.xa{left:242.033067pt;}
.xd{left:244.433067pt;}
.xb{left:247.249067pt;}
.x10{left:249.147733pt;}
.x1a{left:261.275733pt;}
.x43{left:267.620267pt;}
.x3a{left:269.518133pt;}
.x34{left:286.592400pt;}
.x28{left:289.374136pt;}
.x3d{left:300.716000pt;}
.x35{left:315.940397pt;}
.x29{left:317.666179pt;}
.x44{left:330.830933pt;}
.x46{left:332.544533pt;}
.x3e{left:334.913333pt;}
.x36{left:347.769888pt;}
.x2a{left:349.043118pt;}
.x3b{left:352.963467pt;}
.x3f{left:362.348000pt;}
.x41{left:365.916533pt;}
.x47{left:377.572533pt;}
.x2b{left:379.816654pt;}
.x40{left:393.729333pt;}
.x6{left:407.998267pt;}
.x4e{left:410.261333pt;}
.x2c{left:412.475823pt;}
.x4c{left:414.666667pt;}
.x7{left:420.664933pt;}
.x4d{left:425.997333pt;}
.x37{left:440.196091pt;}
.x2d{left:443.053253pt;}
.x48{left:454.328267pt;}
.x45{left:457.550933pt;}
.x38{left:471.716338pt;}
.x2e{left:474.792233pt;}
.x39{left:503.741935pt;}
.x2f{left:504.675750pt;}
.x2{left:509.289200pt;}
.x30{left:536.173370pt;}
.x49{left:545.085600pt;}
.x31{left:563.417000pt;}
.x22{left:579.302800pt;}
.x1c{left:582.926000pt;}
.x1b{left:585.091333pt;}
.x1d{left:590.112667pt;}
.x1f{left:672.533467pt;}
.x20{left:677.013467pt;}
.x21{left:682.314800pt;}
.x1e{left:685.656133pt;}
.x8{left:762.440000pt;}
}




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