
    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_0231ece29ab90e4644004ca2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_e770692f38334a781cb05212.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_58c645eab2ad78273df79ec3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_47fea6b578519d1af3085e38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740000;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_47fea6b578519d1af3085e38.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740000;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_73789023e9b41e61fb0d5921.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.046387;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_633bfe55311632f7e616afe8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_2bc5147a7b0d3784405d9812.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.059000;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_860b63a41064bdb88e6a7c0e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.968000;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_d600e613bb1746d0c9ecbdcc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.920127;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_fa02ea988bfcdc5a0744f71b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941000;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_d68dd9648e8dca1bd14e0f79.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.026000;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_d1e51d5b7f5b4dc3fe62a871.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.046387;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_e01d903a7e6eed0f7d688b6c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_166d1a4218b1748ac26a84e7.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_07907bbc55c0d73c49097464.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b42b21299a615f3a37156d78.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_58c645eab2ad78273df79ec3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.900391;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:ff13;src:url('chunks/assets/font_47fea6b578519d1af3085e38.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.740000;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:ff14;src:url('chunks/assets/font_0123fea7476298f1623a4656.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.046387;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:ff15;src:url('chunks/assets/font_a957c1457252b5844d363e13.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e42fa55fc7d5b64279a208a3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938965;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:ff17;src:url('chunks/assets/font_a05e78cbf84f2c15595c1b6e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.ls45{letter-spacing:-3.240000px;}
.ls2d{letter-spacing:-1.728000px;}
.ls39{letter-spacing:-1.440000px;}
.ls42{letter-spacing:-1.224000px;}
.ls44{letter-spacing:-1.008000px;}
.ls3d{letter-spacing:-0.864000px;}
.ls2b{letter-spacing:-0.792000px;}
.ls37{letter-spacing:-0.780000px;}
.lsf{letter-spacing:-0.756600px;}
.ls3a{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.660000px;}
.ls27{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.432000px;}
.ls23{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.349200px;}
.lsd{letter-spacing:-0.336000px;}
.ls29{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.174600px;}
.ls20{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.116400px;}
.ls2a{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.058200px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.058200px;}
.ls15{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.145500px;}
.ls14{letter-spacing:0.168624px;}
.ls2c{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.240000px;}
.ls1e{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.349200px;}
.ls3b{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.407400px;}
.ls24{letter-spacing:0.432000px;}
.ls36{letter-spacing:0.480000px;}
.ls30{letter-spacing:0.504000px;}
.ls25{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.640200px;}
.ls2e{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.756600px;}
.ls32{letter-spacing:0.780000px;}
.ls7{letter-spacing:0.785700px;}
.ls16{letter-spacing:0.792000px;}
.ls3{letter-spacing:0.814800px;}
.ls26{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.873000px;}
.ls13{letter-spacing:0.936000px;}
.ls38{letter-spacing:1.008000px;}
.ls33{letter-spacing:1.020000px;}
.ls18{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.105800px;}
.ls41{letter-spacing:1.152000px;}
.ls17{letter-spacing:1.224000px;}
.ls3e{letter-spacing:1.296000px;}
.ls31{letter-spacing:1.320000px;}
.ls2f{letter-spacing:1.368000px;}
.ls34{letter-spacing:1.440000px;}
.ls1a{letter-spacing:1.500000px;}
.ls3f{letter-spacing:1.512000px;}
.ls3c{letter-spacing:1.584000px;}
.ls43{letter-spacing:1.728000px;}
.ls35{letter-spacing:2.160000px;}
.ls40{letter-spacing:4.785600px;}
.lsc{letter-spacing:5.100000px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.wsbc{word-spacing:-18.720000px;}
.wsbd{word-spacing:-15.000000px;}
.ws1d{word-spacing:-13.968000px;}
.wsab{word-spacing:-13.824000px;}
.ws94{word-spacing:-13.680000px;}
.ws9f{word-spacing:-13.608000px;}
.wsac{word-spacing:-13.536000px;}
.wsaa{word-spacing:-13.464000px;}
.ws1c{word-spacing:-13.320000px;}
.ws1e{word-spacing:-13.032000px;}
.ws37{word-spacing:-12.096000px;}
.ws106{word-spacing:-10.020000px;}
.ws10c{word-spacing:-9.072000px;}
.ws55{word-spacing:-7.975440px;}
.wsd3{word-spacing:-6.180000px;}
.wsce{word-spacing:-4.800000px;}
.wsc7{word-spacing:-4.620000px;}
.ws13{word-spacing:-4.074000px;}
.wsf{word-spacing:-4.015800px;}
.ws5e{word-spacing:-3.900000px;}
.wse2{word-spacing:-3.840000px;}
.wsb0{word-spacing:-3.816000px;}
.ws5f{word-spacing:-3.720000px;}
.ws6d{word-spacing:-3.672000px;}
.ws86{word-spacing:-3.600000px;}
.ws9e{word-spacing:-3.528000px;}
.ws28{word-spacing:-3.456000px;}
.ws20{word-spacing:-3.384000px;}
.ws19{word-spacing:-3.317400px;}
.ws6e{word-spacing:-3.312000px;}
.wsbf{word-spacing:-3.300000px;}
.ws22{word-spacing:-3.240000px;}
.ws52{word-spacing:-3.168000px;}
.ws89{word-spacing:-3.096000px;}
.ws35{word-spacing:-3.024000px;}
.ws100{word-spacing:-3.000000px;}
.ws58{word-spacing:-2.952000px;}
.ws4a{word-spacing:-2.880000px;}
.ws102{word-spacing:-2.820000px;}
.ws21{word-spacing:-2.808000px;}
.ws90{word-spacing:-2.736000px;}
.ws109{word-spacing:-2.700000px;}
.wsad{word-spacing:-2.664000px;}
.ws4b{word-spacing:-2.592000px;}
.wsc9{word-spacing:-2.580000px;}
.ws6b{word-spacing:-2.520000px;}
.ws25{word-spacing:-2.448000px;}
.ws8b{word-spacing:-2.376000px;}
.ws9c{word-spacing:-2.304000px;}
.ws57{word-spacing:-2.232000px;}
.ws10a{word-spacing:-2.220000px;}
.ws81{word-spacing:-2.160000px;}
.wsa3{word-spacing:-2.088000px;}
.wsd6{word-spacing:-2.040000px;}
.ws75{word-spacing:-2.016000px;}
.wse0{word-spacing:-1.980000px;}
.ws26{word-spacing:-1.944000px;}
.ws59{word-spacing:-1.872000px;}
.wsa9{word-spacing:-1.800000px;}
.ws98{word-spacing:-1.728000px;}
.ws9d{word-spacing:-1.656000px;}
.ws93{word-spacing:-1.584000px;}
.ws50{word-spacing:-1.512000px;}
.ws64{word-spacing:-1.440000px;}
.ws49{word-spacing:-1.368000px;}
.ws42{word-spacing:-1.296000px;}
.ws72{word-spacing:-1.224000px;}
.ws80{word-spacing:-1.152000px;}
.wscf{word-spacing:-1.140000px;}
.ws4e{word-spacing:-1.080000px;}
.ws27{word-spacing:-1.008000px;}
.ws67{word-spacing:-0.936000px;}
.ws76{word-spacing:-0.864000px;}
.ws2c{word-spacing:-0.792000px;}
.wsfa{word-spacing:-0.780000px;}
.wse{word-spacing:-0.756600px;}
.ws7a{word-spacing:-0.720000px;}
.ws7c{word-spacing:-0.648000px;}
.wsb4{word-spacing:-0.576000px;}
.wsc1{word-spacing:-0.540000px;}
.wsb5{word-spacing:-0.504000px;}
.wsd8{word-spacing:-0.480000px;}
.ws61{word-spacing:-0.432000px;}
.ws6{word-spacing:-0.407400px;}
.ws83{word-spacing:-0.360000px;}
.ws4c{word-spacing:-0.288000px;}
.ws5c{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.174600px;}
.ws71{word-spacing:-0.144000px;}
.ws12{word-spacing:-0.116400px;}
.ws43{word-spacing:-0.072000px;}
.ws2{word-spacing:-0.060000px;}
.ws11{word-spacing:-0.058200px;}
.ws10d{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsa8{word-spacing:0.072000px;}
.ws9{word-spacing:0.116400px;}
.ws8c{word-spacing:0.144000px;}
.ws36{word-spacing:0.216000px;}
.ws44{word-spacing:0.288000px;}
.wsc{word-spacing:0.291000px;}
.ws4{word-spacing:0.336000px;}
.ws8f{word-spacing:0.360000px;}
.ws4d{word-spacing:0.432000px;}
.ws69{word-spacing:0.504000px;}
.ws1f{word-spacing:0.576000px;}
.ws10b{word-spacing:0.594000px;}
.ws31{word-spacing:0.648000px;}
.ws3{word-spacing:0.660000px;}
.ws73{word-spacing:0.720000px;}
.ws2f{word-spacing:0.792000px;}
.ws2b{word-spacing:0.864000px;}
.wsb8{word-spacing:0.936000px;}
.ws29{word-spacing:0.960000px;}
.ws54{word-spacing:1.008000px;}
.wsa7{word-spacing:1.080000px;}
.ws10{word-spacing:1.105800px;}
.wscb{word-spacing:1.140000px;}
.wsa1{word-spacing:1.152000px;}
.ws51{word-spacing:1.224000px;}
.ws2d{word-spacing:1.296000px;}
.wse1{word-spacing:1.320000px;}
.ws88{word-spacing:1.368000px;}
.ws39{word-spacing:1.440000px;}
.ws99{word-spacing:1.512000px;}
.wsbe{word-spacing:1.560000px;}
.ws6f{word-spacing:1.584000px;}
.ws6a{word-spacing:1.656000px;}
.wsa4{word-spacing:1.728000px;}
.ws3a{word-spacing:1.800000px;}
.wsd{word-spacing:1.804200px;}
.ws91{word-spacing:1.872000px;}
.ws95{word-spacing:1.944000px;}
.ws3d{word-spacing:2.016000px;}
.wscd{word-spacing:2.040000px;}
.ws30{word-spacing:2.088000px;}
.wsb7{word-spacing:2.160000px;}
.ws18{word-spacing:2.211600px;}
.wsf1{word-spacing:2.220000px;}
.ws2e{word-spacing:2.232000px;}
.ws3b{word-spacing:2.304000px;}
.ws3f{word-spacing:2.376000px;}
.wsb1{word-spacing:2.448000px;}
.ws33{word-spacing:2.520000px;}
.wsb2{word-spacing:2.592000px;}
.ws5b{word-spacing:2.664000px;}
.ws77{word-spacing:2.736000px;}
.ws7e{word-spacing:2.808000px;}
.ws9a{word-spacing:2.880000px;}
.wsb3{word-spacing:2.952000px;}
.ws56{word-spacing:3.024000px;}
.ws4f{word-spacing:3.096000px;}
.ws85{word-spacing:3.168000px;}
.ws78{word-spacing:3.240000px;}
.wsd5{word-spacing:3.300000px;}
.ws8a{word-spacing:3.312000px;}
.ws32{word-spacing:3.384000px;}
.wsaf{word-spacing:3.456000px;}
.ws74{word-spacing:3.528000px;}
.wsd0{word-spacing:3.540000px;}
.ws3e{word-spacing:3.600000px;}
.wsb6{word-spacing:3.672000px;}
.wsc4{word-spacing:3.720000px;}
.ws23{word-spacing:3.744000px;}
.ws79{word-spacing:3.816000px;}
.ws8d{word-spacing:3.888000px;}
.ws1a{word-spacing:3.957600px;}
.ws63{word-spacing:3.960000px;}
.wsfe{word-spacing:4.020000px;}
.ws53{word-spacing:4.032000px;}
.ws68{word-spacing:4.104000px;}
.ws46{word-spacing:4.248000px;}
.ws7d{word-spacing:4.392000px;}
.ws38{word-spacing:4.464000px;}
.wsbb{word-spacing:4.536000px;}
.ws16{word-spacing:4.539600px;}
.ws40{word-spacing:4.608000px;}
.ws9b{word-spacing:4.680000px;}
.ws45{word-spacing:4.752000px;}
.wsae{word-spacing:4.824000px;}
.ws5{word-spacing:4.947000px;}
.wsba{word-spacing:4.968000px;}
.ws48{word-spacing:5.040000px;}
.ws62{word-spacing:5.112000px;}
.wsb{word-spacing:5.121600px;}
.wsa5{word-spacing:5.184000px;}
.ws7b{word-spacing:5.256000px;}
.ws1b{word-spacing:5.296200px;}
.ws87{word-spacing:5.328000px;}
.ws66{word-spacing:5.400000px;}
.ws96{word-spacing:5.472000px;}
.ws47{word-spacing:5.544000px;}
.ws34{word-spacing:5.616000px;}
.wsc3{word-spacing:5.640000px;}
.ws70{word-spacing:5.688000px;}
.ws15{word-spacing:5.703600px;}
.wsa0{word-spacing:5.760000px;}
.ws65{word-spacing:5.832000px;}
.ws3c{word-spacing:5.904000px;}
.ws8e{word-spacing:5.976000px;}
.wsf7{word-spacing:6.000000px;}
.ws97{word-spacing:6.048000px;}
.ws84{word-spacing:6.192000px;}
.wsb9{word-spacing:6.264000px;}
.ws8{word-spacing:6.285600px;}
.ws82{word-spacing:6.408000px;}
.ws5d{word-spacing:6.420000px;}
.ws5a{word-spacing:6.480000px;}
.wsa2{word-spacing:6.552000px;}
.ws7f{word-spacing:6.624000px;}
.wsa6{word-spacing:6.696000px;}
.ws60{word-spacing:6.720000px;}
.ws92{word-spacing:6.768000px;}
.ws24{word-spacing:6.840000px;}
.ws14{word-spacing:7.158600px;}
.ws41{word-spacing:7.416000px;}
.ws2a{word-spacing:7.500000px;}
.wsc2{word-spacing:7.620000px;}
.ws7{word-spacing:7.798800px;}
.ws108{word-spacing:7.980000px;}
.wsa{word-spacing:8.089800px;}
.ws6c{word-spacing:8.352000px;}
.wsd7{word-spacing:8.400000px;}
.ws101{word-spacing:8.940000px;}
.wse7{word-spacing:9.480000px;}
.wsd9{word-spacing:10.080000px;}
.wsdd{word-spacing:10.140000px;}
.wsd1{word-spacing:10.560000px;}
.wsf6{word-spacing:11.520000px;}
.wsd2{word-spacing:11.580000px;}
.wsd4{word-spacing:11.880000px;}
.wsc8{word-spacing:12.180000px;}
.wsda{word-spacing:12.300000px;}
.wsec{word-spacing:12.660000px;}
.wse4{word-spacing:13.440000px;}
.wsc6{word-spacing:14.520000px;}
.wsf4{word-spacing:15.060000px;}
.wsea{word-spacing:15.180000px;}
.wse5{word-spacing:15.960000px;}
.wsfd{word-spacing:16.620000px;}
.wse6{word-spacing:18.540000px;}
.wse9{word-spacing:19.320000px;}
.ws105{word-spacing:20.100000px;}
.wsdf{word-spacing:20.640000px;}
.wsde{word-spacing:20.820000px;}
.wse8{word-spacing:21.120000px;}
.ws103{word-spacing:21.360000px;}
.wsca{word-spacing:22.140000px;}
.wsf9{word-spacing:22.440000px;}
.ws104{word-spacing:22.680000px;}
.wsdb{word-spacing:22.800000px;}
.wsee{word-spacing:22.860000px;}
.wsff{word-spacing:23.820000px;}
.wsf5{word-spacing:24.060000px;}
.wsc5{word-spacing:25.860000px;}
.wsdc{word-spacing:26.040000px;}
.wsfc{word-spacing:28.740000px;}
.wscc{word-spacing:28.920000px;}
.wsf0{word-spacing:29.160000px;}
.wsed{word-spacing:29.700000px;}
.wsfb{word-spacing:29.820000px;}
.wse3{word-spacing:30.120000px;}
.wseb{word-spacing:33.000000px;}
.ws107{word-spacing:37.080000px;}
.wsf8{word-spacing:44.880000px;}
.wsef{word-spacing:49.320000px;}
.wsc0{word-spacing:62.460000px;}
.wsf2{word-spacing:63.120000px;}
.wsf3{word-spacing:77.100000px;}
._1a{margin-left:-29.664000px;}
._f{margin-left:-20.164380px;}
._d{margin-left:-11.210700px;}
._a{margin-left:-9.960300px;}
._e{margin-left:-8.574180px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-5.470800px;}
._3{margin-left:-4.284000px;}
._4{margin-left:-3.000000px;}
._1{margin-left:-1.996800px;}
._6{width:1.030140px;}
._7{width:2.136000px;}
._c{width:3.872160px;}
._0{width:5.587200px;}
._9{width:7.920000px;}
._12{width:9.187200px;}
._16{width:10.254600px;}
._11{width:11.574000px;}
._13{width:12.718920px;}
._14{width:13.987080px;}
._18{width:17.137800px;}
._17{width:20.575200px;}
._10{width:22.204200px;}
._19{width:23.226240px;}
._1e{width:24.338160px;}
._15{width:25.744800px;}
._1d{width:29.784000px;}
._b{width:48.916800px;}
._1b{width:49.972200px;}
._8{width:56.100000px;}
._1c{width:77.124000px;}
.fc4{color:rgb(0,0,10);}
.fc3{color:rgb(122,65,100);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:41.976000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:58.200000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:204.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y1fd{bottom:58.197900px;}
.ye8{bottom:58.662150px;}
.yb5{bottom:65.654400px;}
.yc9{bottom:65.905650px;}
.y191{bottom:69.906300px;}
.ya2{bottom:71.134650px;}
.y6d{bottom:72.130050px;}
.y8a{bottom:72.646500px;}
.y1fc{bottom:76.197900px;}
.y104{bottom:76.554450px;}
.y11f{bottom:76.898400px;}
.y21f{bottom:77.951100px;}
.y151{bottom:81.150450px;}
.yd6{bottom:82.378800px;}
.y17d{bottom:82.638600px;}
.ye7{bottom:82.662150px;}
.y4f{bottom:83.709300px;}
.y182{bottom:83.890500px;}
.yc8{bottom:83.905650px;}
.yb4{bottom:89.654400px;}
.y6c{bottom:90.130050px;}
.y143{bottom:90.882600px;}
.y21e{bottom:92.951100px;}
.y1f{bottom:93.667350px;}
.y190{bottom:93.906300px;}
.y1fb{bottom:94.197900px;}
.ya1{bottom:95.134650px;}
.y89{bottom:96.646500px;}
.y133{bottom:99.386700px;}
.y13{bottom:99.795000px;}
.y103{bottom:100.554450px;}
.yde{bottom:100.898400px;}
.y1b2{bottom:101.063850px;}
.yc7{bottom:101.905650px;}
.y216{bottom:102.702000px;}
.y38{bottom:103.660200px;}
.y4e{bottom:104.259300px;}
.y150{bottom:105.150450px;}
.y162{bottom:106.318350px;}
.yd5{bottom:106.378800px;}
.y17c{bottom:106.638600px;}
.ye6{bottom:106.662150px;}
.y1e{bottom:107.167350px;}
.y21d{bottom:107.951100px;}
.y6b{bottom:108.130050px;}
.y1d6{bottom:111.135000px;}
.y18a{bottom:113.370900px;}
.yb3{bottom:113.654400px;}
.y17{bottom:113.670000px;}
.y1fa{bottom:116.449950px;}
.y18f{bottom:117.906300px;}
.y1b1{bottom:119.063850px;}
.ya0{bottom:119.134650px;}
.yc6{bottom:119.905650px;}
.y88{bottom:120.646500px;}
.y215{bottom:120.702000px;}
.y132{bottom:123.386700px;}
.y37{bottom:124.210200px;}
.y102{bottom:124.554450px;}
.y4d{bottom:124.809300px;}
.ydd{bottom:124.898400px;}
.y6a{bottom:126.130050px;}
.y1d5{bottom:129.135000px;}
.y14f{bottom:129.150450px;}
.y161{bottom:130.318350px;}
.y1a3{bottom:130.378800px;}
.y17b{bottom:130.638600px;}
.ye5{bottom:130.662150px;}
.y142{bottom:131.890500px;}
.y1f9{bottom:134.449950px;}
.y16{bottom:135.750000px;}
.y189{bottom:137.370900px;}
.yb2{bottom:137.654400px;}
.yc5{bottom:137.905650px;}
.y214{bottom:138.702000px;}
.y1b0{bottom:141.315750px;}
.y18e{bottom:141.906300px;}
.y9f{bottom:143.134650px;}
.y69{bottom:144.130050px;}
.y87{bottom:144.646500px;}
.y36{bottom:144.760200px;}
.y4c{bottom:145.359300px;}
.y131{bottom:147.386700px;}
.y101{bottom:148.554450px;}
.ydc{bottom:148.898400px;}
.y1d4{bottom:151.387050px;}
.y1f8{bottom:152.449950px;}
.y14e{bottom:153.150450px;}
.y160{bottom:154.318350px;}
.y1a2{bottom:154.378800px;}
.ye4{bottom:154.662150px;}
.y14{bottom:154.950000px;}
.y141{bottom:155.890500px;}
.yc4{bottom:155.905650px;}
.yf{bottom:156.015000px;}
.y213{bottom:156.702000px;}
.y15{bottom:157.830000px;}
.y1af{bottom:159.315750px;}
.y10d{bottom:160.142550px;}
.y188{bottom:161.370900px;}
.yb1{bottom:161.654400px;}
.y68{bottom:162.130050px;}
.y35{bottom:165.310200px;}
.y18d{bottom:165.906300px;}
.y4b{bottom:165.909300px;}
.y9e{bottom:167.134650px;}
.y17a{bottom:167.394450px;}
.y86{bottom:168.646500px;}
.y1d3{bottom:169.387050px;}
.y130{bottom:171.386700px;}
.y100{bottom:172.554450px;}
.ydb{bottom:172.898400px;}
.yc3{bottom:173.905650px;}
.y1f7{bottom:174.702000px;}
.y14d{bottom:177.150450px;}
.y15f{bottom:178.318350px;}
.y1a1{bottom:178.378800px;}
.ye3{bottom:178.662150px;}
.y212{bottom:178.953900px;}
.y140{bottom:179.890500px;}
.y67{bottom:180.130050px;}
.y1ae{bottom:181.567650px;}
.y10c{bottom:184.142550px;}
.y187{bottom:185.370900px;}
.yb0{bottom:185.654400px;}
.y34{bottom:185.860200px;}
.y4a{bottom:186.459300px;}
.y1d2{bottom:187.387050px;}
.y18c{bottom:189.906300px;}
.y9d{bottom:191.134650px;}
.y179{bottom:191.394450px;}
.yc2{bottom:191.905650px;}
.y85{bottom:192.646500px;}
.y1f6{bottom:192.702000px;}
.yda{bottom:196.898400px;}
.y211{bottom:196.953900px;}
.y14c{bottom:201.150450px;}
.y15e{bottom:202.318350px;}
.y1a0{bottom:202.378800px;}
.ye2{bottom:202.662150px;}
.y13f{bottom:203.890500px;}
.y1d1{bottom:205.387050px;}
.y33{bottom:206.410200px;}
.y49{bottom:207.009300px;}
.y10b{bottom:208.142550px;}
.y186{bottom:209.370900px;}
.yaf{bottom:209.654400px;}
.yff{bottom:213.562350px;}
.y18b{bottom:213.906300px;}
.y1f5{bottom:214.953900px;}
.y9c{bottom:215.134650px;}
.y84{bottom:216.646500px;}
.yc1{bottom:218.409600px;}
.y1ad{bottom:220.827600px;}
.yd9{bottom:220.898400px;}
.y14b{bottom:225.150450px;}
.y15d{bottom:226.318350px;}
.y19f{bottom:226.378800px;}
.ye1{bottom:226.662150px;}
.y32{bottom:226.960200px;}
.y48{bottom:227.559300px;}
.y1d0{bottom:227.638950px;}
.y13e{bottom:227.890500px;}
.y178{bottom:228.150450px;}
.y127{bottom:232.142550px;}
.y1f4{bottom:232.953900px;}
.y185{bottom:233.370900px;}
.yae{bottom:233.654400px;}
.y66{bottom:234.097200px;}
.yc0{bottom:236.409600px;}
.y210{bottom:237.205800px;}
.yfe{bottom:237.562350px;}
.y11e{bottom:237.906300px;}
.y9b{bottom:239.134650px;}
.y83{bottom:240.646500px;}
.yd8{bottom:244.898400px;}
.y1cf{bottom:245.638950px;}
.y31{bottom:247.510200px;}
.y47{bottom:248.109300px;}
.y14a{bottom:249.150450px;}
.y15c{bottom:250.318350px;}
.y19e{bottom:250.378800px;}
.ye0{bottom:250.662150px;}
.y1f3{bottom:250.953900px;}
.y13d{bottom:251.890500px;}
.y177{bottom:252.150450px;}
.ybf{bottom:254.409600px;}
.y20f{bottom:255.205800px;}
.y126{bottom:256.142550px;}
.y184{bottom:257.370900px;}
.yad{bottom:257.654400px;}
.y65{bottom:258.097200px;}
.yfd{bottom:261.562350px;}
.y11d{bottom:261.906300px;}
.y9a{bottom:263.134650px;}
.y1ce{bottom:263.638950px;}
.yd2{bottom:264.646500px;}
.y30{bottom:268.060200px;}
.y46{bottom:268.659300px;}
.yd7{bottom:268.898400px;}
.ybe{bottom:272.409600px;}
.y149{bottom:273.150450px;}
.y1f2{bottom:273.205800px;}
.y15b{bottom:274.318350px;}
.ydf{bottom:274.662150px;}
.y13c{bottom:275.890500px;}
.y176{bottom:276.150450px;}
.y20e{bottom:277.457850px;}
.y125{bottom:280.142550px;}
.y82{bottom:281.654400px;}
.y64{bottom:282.097200px;}
.yfc{bottom:285.562350px;}
.y1cd{bottom:285.891000px;}
.y11c{bottom:285.906300px;}
.ycd{bottom:287.134650px;}
.y2f{bottom:288.610200px;}
.y157{bottom:288.646500px;}
.y45{bottom:289.209300px;}
.y1f1{bottom:291.205800px;}
.y19d{bottom:291.386700px;}
.y1ac{bottom:291.847200px;}
.y10a{bottom:292.898400px;}
.y20d{bottom:295.457850px;}
.y148{bottom:297.150450px;}
.y15a{bottom:298.318350px;}
.yac{bottom:298.662150px;}
.y13b{bottom:299.890500px;}
.y175{bottom:300.150450px;}
.y183{bottom:302.630700px;}
.y12f{bottom:302.914200px;}
.y1cc{bottom:303.891000px;}
.y99{bottom:304.142550px;}
.y81{bottom:305.654400px;}
.y63{bottom:306.097200px;}
.y2e{bottom:309.160200px;}
.y1f0{bottom:309.205800px;}
.y44{bottom:309.759300px;}
.y1ab{bottom:309.847200px;}
.y11b{bottom:309.906300px;}
.ycc{bottom:311.134650px;}
.y156{bottom:312.646500px;}
.y20c{bottom:313.457850px;}
.y19c{bottom:315.386700px;}
.y109{bottom:316.898400px;}
.y147{bottom:321.150450px;}
.yfb{bottom:322.318350px;}
.yab{bottom:322.662150px;}
.y13a{bottom:323.890500px;}
.y1cb{bottom:326.142900px;}
.y12e{bottom:326.914200px;}
.y1aa{bottom:327.847200px;}
.y98{bottom:328.142550px;}
.y80{bottom:329.654400px;}
.y2d{bottom:329.710200px;}
.y43{bottom:330.309300px;}
.y1ef{bottom:331.457850px;}
.y11a{bottom:333.906300px;}
.ycb{bottom:335.134650px;}
.y20b{bottom:335.709750px;}
.y155{bottom:336.646500px;}
.y174{bottom:336.906300px;}
.y19b{bottom:339.386700px;}
.y108{bottom:340.898400px;}
.y1ca{bottom:344.142900px;}
.ya{bottom:344.680500px;}
.y146{bottom:345.150450px;}
.yfa{bottom:346.318350px;}
.yaa{bottom:346.662150px;}
.y62{bottom:347.105100px;}
.y1ee{bottom:349.457850px;}
.y1a9{bottom:350.099250px;}
.y2c{bottom:350.260200px;}
.y42{bottom:350.859300px;}
.y12d{bottom:350.914200px;}
.y97{bottom:352.142550px;}
.y7f{bottom:353.654400px;}
.y20a{bottom:353.709750px;}
.y119{bottom:357.906300px;}
.y154{bottom:360.646500px;}
.y173{bottom:360.906300px;}
.y1c9{bottom:362.142900px;}
.y19a{bottom:363.386700px;}
.y139{bottom:364.898400px;}
.y1ed{bottom:367.457850px;}
.y1a8{bottom:368.099250px;}
.y145{bottom:369.150450px;}
.yf9{bottom:370.318350px;}
.ya9{bottom:370.662150px;}
.y2b{bottom:370.810200px;}
.y61{bottom:371.105100px;}
.y41{bottom:371.409300px;}
.y12c{bottom:374.914200px;}
.y209{bottom:375.961800px;}
.y96{bottom:376.142550px;}
.y7e{bottom:377.654400px;}
.yca{bottom:380.394450px;}
.y107{bottom:381.906300px;}
.y1c8{bottom:384.394950px;}
.y153{bottom:384.646500px;}
.y172{bottom:384.906300px;}
.y1ec{bottom:385.457850px;}
.yd{bottom:386.490000px;}
.y199{bottom:387.386700px;}
.y138{bottom:388.898400px;}
.y2a{bottom:391.360200px;}
.y40{bottom:391.959300px;}
.y208{bottom:393.961800px;}
.yf8{bottom:394.318350px;}
.ya8{bottom:394.662150px;}
.y60{bottom:395.105100px;}
.y9{bottom:395.689500px;}
.y12b{bottom:398.914200px;}
.y95{bottom:400.142550px;}
.y7d{bottom:401.654400px;}
.y1c7{bottom:402.394950px;}
.y106{bottom:405.906300px;}
.y1a7{bottom:407.359050px;}
.y1eb{bottom:407.709750px;}
.y171{bottom:408.906300px;}
.y198{bottom:411.386700px;}
.y29{bottom:411.910200px;}
.y207{bottom:411.961800px;}
.y3f{bottom:412.509300px;}
.y124{bottom:412.898400px;}
.yf7{bottom:418.318350px;}
.ya7{bottom:418.662150px;}
.y5f{bottom:419.105100px;}
.y1c6{bottom:420.394950px;}
.y12a{bottom:422.914200px;}
.y94{bottom:424.142550px;}
.y7c{bottom:425.654250px;}
.y1ea{bottom:425.709750px;}
.y105{bottom:429.906300px;}
.y206{bottom:429.961800px;}
.y28{bottom:432.460200px;}
.y170{bottom:432.906300px;}
.y3e{bottom:433.059300px;}
.yb{bottom:434.850000px;}
.y159{bottom:435.326250px;}
.y197{bottom:435.386700px;}
.ybd{bottom:435.670050px;}
.y123{bottom:436.898400px;}
.yf6{bottom:442.318350px;}
.y1c5{bottom:442.646850px;}
.ya6{bottom:442.662300px;}
.y5e{bottom:443.105100px;}
.y1e9{bottom:443.709750px;}
.y8{bottom:446.698500px;}
.y129{bottom:446.914200px;}
.y93{bottom:448.142550px;}
.y7b{bottom:449.654250px;}
.y205{bottom:452.213700px;}
.y27{bottom:453.010200px;}
.y3d{bottom:453.609300px;}
.y118{bottom:453.906300px;}
.y16f{bottom:456.906300px;}
.y158{bottom:459.326250px;}
.y196{bottom:459.386700px;}
.ybc{bottom:459.670050px;}
.y1c4{bottom:460.646850px;}
.y122{bottom:460.898400px;}
.y1e8{bottom:465.961800px;}
.ya5{bottom:466.662300px;}
.y5d{bottom:467.105100px;}
.y204{bottom:470.213700px;}
.y128{bottom:470.914200px;}
.y92{bottom:472.142550px;}
.y26{bottom:473.560200px;}
.yd1{bottom:473.654250px;}
.y3c{bottom:474.159300px;}
.y144{bottom:477.906300px;}
.y1a6{bottom:478.378800px;}
.y16e{bottom:480.906300px;}
.y1c3{bottom:482.898900px;}
.yf5{bottom:483.326250px;}
.y195{bottom:483.386700px;}
.ybb{bottom:483.670050px;}
.y10{bottom:488.055000px;}
.y1e7{bottom:488.213700px;}
.y7a{bottom:490.662300px;}
.y5c{bottom:491.105100px;}
.y25{bottom:494.110200px;}
.y3b{bottom:494.709300px;}
.y117{bottom:494.914200px;}
.y91{bottom:496.142550px;}
.y1a5{bottom:496.378800px;}
.y137{bottom:497.654250px;}
.y7{bottom:497.707500px;}
.y1c2{bottom:500.898900px;}
.y121{bottom:501.906300px;}
.y16d{bottom:504.906300px;}
.y1e6{bottom:506.213700px;}
.yf4{bottom:507.326250px;}
.y194{bottom:507.386700px;}
.yba{bottom:507.670050px;}
.y24{bottom:514.660200px;}
.y79{bottom:514.662300px;}
.y3a{bottom:515.259300px;}
.y116{bottom:518.914200px;}
.y90{bottom:520.142550px;}
.y136{bottom:521.654250px;}
.y1c1{bottom:523.150800px;}
.y1e5{bottom:524.213700px;}
.y120{bottom:525.906300px;}
.y203{bottom:528.465750px;}
.yf3{bottom:531.326250px;}
.y193{bottom:531.386700px;}
.yb9{bottom:531.670050px;}
.y5b{bottom:532.113000px;}
.y23{bottom:535.210200px;}
.y1a4{bottom:535.638600px;}
.y39{bottom:535.809300px;}
.y11{bottom:538.230000px;}
.y78{bottom:538.662300px;}
.y1c0{bottom:541.150800px;}
.y16c{bottom:541.662300px;}
.y115{bottom:542.914200px;}
.y8f{bottom:544.142550px;}
.y135{bottom:545.654250px;}
.y1e4{bottom:546.465750px;}
.y6{bottom:548.716500px;}
.y181{bottom:549.906300px;}
.yf2{bottom:555.326250px;}
.y192{bottom:555.386700px;}
.yb8{bottom:555.670050px;}
.y5a{bottom:556.113000px;}
.y1bf{bottom:559.150800px;}
.y77{bottom:562.662300px;}
.y1e3{bottom:564.465750px;}
.y16b{bottom:565.662300px;}
.y114{bottom:566.914200px;}
.y8e{bottom:568.142550px;}
.y21c{bottom:569.328900px;}
.y134{bottom:569.654250px;}
.y180{bottom:573.906300px;}
.y1be{bottom:577.150800px;}
.yf1{bottom:579.326250px;}
.yb7{bottom:579.670050px;}
.y59{bottom:580.113000px;}
.y202{bottom:582.465750px;}
.y76{bottom:586.662300px;}
.y1e2{bottom:586.717650px;}
.y18{bottom:589.605000px;}
.y16a{bottom:589.662300px;}
.y113{bottom:590.914200px;}
.y8d{bottom:592.142550px;}
.y17f{bottom:597.906300px;}
.y1bd{bottom:599.402850px;}
.y5{bottom:599.725500px;}
.yf0{bottom:603.326250px;}
.yb6{bottom:603.670050px;}
.y58{bottom:604.113000px;}
.y1d{bottom:604.428900px;}
.y1e1{bottom:604.717650px;}
.y21b{bottom:608.928900px;}
.y75{bottom:610.662300px;}
.y169{bottom:613.662300px;}
.y112{bottom:614.914200px;}
.y8c{bottom:616.142550px;}
.y1bc{bottom:617.402700px;}
.y17e{bottom:621.906300px;}
.y1e0{bottom:622.717650px;}
.y1c{bottom:624.228900px;}
.yef{bottom:627.326250px;}
.ya4{bottom:627.670050px;}
.y57{bottom:628.113000px;}
.ye{bottom:631.920000px;}
.y74{bottom:634.662150px;}
.y168{bottom:637.662150px;}
.y111{bottom:638.914200px;}
.y1bb{bottom:639.654750px;}
.yd4{bottom:640.142550px;}
.y1df{bottom:640.717650px;}
.y22{bottom:642.759150px;}
.y201{bottom:644.969700px;}
.yee{bottom:651.326250px;}
.ya3{bottom:651.670050px;}
.y56{bottom:652.113000px;}
.y1ba{bottom:657.654750px;}
.yd0{bottom:658.662150px;}
.y1de{bottom:658.717650px;}
.y8b{bottom:661.402350px;}
.y167{bottom:661.662150px;}
.y110{bottom:662.914200px;}
.y200{bottom:662.969700px;}
.y1b{bottom:672.673650px;}
.y21a{bottom:672.850950px;}
.yed{bottom:675.326250px;}
.y73{bottom:675.670050px;}
.y55{bottom:676.113000px;}
.y1b9{bottom:679.906650px;}
.y1dd{bottom:680.969700px;}
.ycf{bottom:682.662150px;}
.y217{bottom:685.221600px;}
.yd3{bottom:685.402350px;}
.y166{bottom:685.662150px;}
.y10f{bottom:686.914200px;}
.y1dc{bottom:698.969700px;}
.yec{bottom:699.326250px;}
.y72{bottom:699.670050px;}
.y54{bottom:700.113000px;}
.y1b8{bottom:702.158700px;}
.y1ff{bottom:703.221600px;}
.yce{bottom:706.662150px;}
.y165{bottom:709.662150px;}
.y10e{bottom:710.914200px;}
.y21{bottom:712.916100px;}
.y1b7{bottom:720.158700px;}
.y1db{bottom:721.221600px;}
.yeb{bottom:723.326250px;}
.y71{bottom:723.670050px;}
.y53{bottom:724.113000px;}
.y152{bottom:730.662150px;}
.y1b6{bottom:738.158700px;}
.y1da{bottom:739.221600px;}
.y1fe{bottom:743.473500px;}
.yea{bottom:747.326250px;}
.y70{bottom:747.670050px;}
.y219{bottom:747.879450px;}
.y52{bottom:748.113000px;}
.y1a{bottom:750.043800px;}
.y164{bottom:750.670050px;}
.y20{bottom:753.416100px;}
.y1b5{bottom:760.410600px;}
.y1d9{bottom:761.473500px;}
.y218{bottom:769.479450px;}
.y19{bottom:771.643950px;}
.y6f{bottom:771.670050px;}
.y51{bottom:772.113000px;}
.y163{bottom:773.170050px;}
.y4{bottom:778.225500px;}
.y1b4{bottom:778.410600px;}
.y1d8{bottom:779.473500px;}
.ye9{bottom:792.586050px;}
.y6e{bottom:795.670050px;}
.y50{bottom:796.113000px;}
.y1b3{bottom:796.410600px;}
.y1d7{bottom:797.473500px;}
.y12{bottom:815.670000px;}
.y3{bottom:905.716500px;}
.y2{bottom:964.228500px;}
.y1{bottom:989.716500px;}
.h4{height:33.000000px;}
.h1a{height:39.339844px;}
.h18{height:41.660156px;}
.h13{height:42.544200px;}
.he{height:42.600000px;}
.h19{height:45.826172px;}
.h16{height:49.833984px;}
.hc{height:50.400000px;}
.h12{height:52.992000px;}
.h14{height:54.576000px;}
.hd{height:54.817383px;}
.h15{height:55.793808px;}
.h17{height:57.408000px;}
.h3{height:58.406250px;}
.h11{height:58.800000px;}
.hb{height:63.632812px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h7{height:115.215000px;}
.h10{height:127.152000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.hf{height:180.132000px;}
.h9{height:892.914000px;}
.ha{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w9{width:1262.835000px;}
.wa{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x18{left:72.283500px;}
.x1f{left:96.732300px;}
.x16{left:97.795200px;}
.x1b{left:114.803100px;}
.x17{left:119.055150px;}
.x12{left:123.941250px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x19{left:597.401550px;}
.x14{left:622.913400px;}
.x11{left:628.933500px;}
.x1c{left:639.921300px;}
.x15{left:644.173200px;}
.x13{left:948.262950px;}
.xd{left:1107.719400px;}
.x1e{left:1110.335700px;}
.x1d{left:1115.613600px;}
.xb{left:1116.776850px;}
.xe{left:1120.109400px;}
.x10{left:1124.412150px;}
.xa{left:1128.949800px;}
.xf{left:1134.177000px;}
.x1a{left:1143.043800px;}
.xc{left:1147.660650px;}
@media print{
.v1{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.ls45{letter-spacing:-2.880000pt;}
.ls2d{letter-spacing:-1.536000pt;}
.ls39{letter-spacing:-1.280000pt;}
.ls42{letter-spacing:-1.088000pt;}
.ls44{letter-spacing:-0.896000pt;}
.ls3d{letter-spacing:-0.768000pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls37{letter-spacing:-0.693333pt;}
.lsf{letter-spacing:-0.672533pt;}
.ls3a{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.310400pt;}
.lsd{letter-spacing:-0.298667pt;}
.ls29{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.155200pt;}
.ls20{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.103467pt;}
.ls2a{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.051733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.051733pt;}
.ls15{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.129333pt;}
.ls14{letter-spacing:0.149888pt;}
.ls2c{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.213333pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.310400pt;}
.ls3b{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.362133pt;}
.ls24{letter-spacing:0.384000pt;}
.ls36{letter-spacing:0.426667pt;}
.ls30{letter-spacing:0.448000pt;}
.ls25{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.569067pt;}
.ls2e{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.672533pt;}
.ls32{letter-spacing:0.693333pt;}
.ls7{letter-spacing:0.698400pt;}
.ls16{letter-spacing:0.704000pt;}
.ls3{letter-spacing:0.724267pt;}
.ls26{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.776000pt;}
.ls13{letter-spacing:0.832000pt;}
.ls38{letter-spacing:0.896000pt;}
.ls33{letter-spacing:0.906667pt;}
.ls18{letter-spacing:0.960000pt;}
.ls6{letter-spacing:0.982933pt;}
.ls41{letter-spacing:1.024000pt;}
.ls17{letter-spacing:1.088000pt;}
.ls3e{letter-spacing:1.152000pt;}
.ls31{letter-spacing:1.173333pt;}
.ls2f{letter-spacing:1.216000pt;}
.ls34{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.333333pt;}
.ls3f{letter-spacing:1.344000pt;}
.ls3c{letter-spacing:1.408000pt;}
.ls43{letter-spacing:1.536000pt;}
.ls35{letter-spacing:1.920000pt;}
.ls40{letter-spacing:4.253867pt;}
.lsc{letter-spacing:4.533333pt;}
.ws0{word-spacing:-16.874667pt;}
.wsbc{word-spacing:-16.640000pt;}
.wsbd{word-spacing:-13.333333pt;}
.ws1d{word-spacing:-12.416000pt;}
.wsab{word-spacing:-12.288000pt;}
.ws94{word-spacing:-12.160000pt;}
.ws9f{word-spacing:-12.096000pt;}
.wsac{word-spacing:-12.032000pt;}
.wsaa{word-spacing:-11.968000pt;}
.ws1c{word-spacing:-11.840000pt;}
.ws1e{word-spacing:-11.584000pt;}
.ws37{word-spacing:-10.752000pt;}
.ws106{word-spacing:-8.906667pt;}
.ws10c{word-spacing:-8.064000pt;}
.ws55{word-spacing:-7.089280pt;}
.wsd3{word-spacing:-5.493333pt;}
.wsce{word-spacing:-4.266667pt;}
.wsc7{word-spacing:-4.106667pt;}
.ws13{word-spacing:-3.621333pt;}
.wsf{word-spacing:-3.569600pt;}
.ws5e{word-spacing:-3.466667pt;}
.wse2{word-spacing:-3.413333pt;}
.wsb0{word-spacing:-3.392000pt;}
.ws5f{word-spacing:-3.306667pt;}
.ws6d{word-spacing:-3.264000pt;}
.ws86{word-spacing:-3.200000pt;}
.ws9e{word-spacing:-3.136000pt;}
.ws28{word-spacing:-3.072000pt;}
.ws20{word-spacing:-3.008000pt;}
.ws19{word-spacing:-2.948800pt;}
.ws6e{word-spacing:-2.944000pt;}
.wsbf{word-spacing:-2.933333pt;}
.ws22{word-spacing:-2.880000pt;}
.ws52{word-spacing:-2.816000pt;}
.ws89{word-spacing:-2.752000pt;}
.ws35{word-spacing:-2.688000pt;}
.ws100{word-spacing:-2.666667pt;}
.ws58{word-spacing:-2.624000pt;}
.ws4a{word-spacing:-2.560000pt;}
.ws102{word-spacing:-2.506667pt;}
.ws21{word-spacing:-2.496000pt;}
.ws90{word-spacing:-2.432000pt;}
.ws109{word-spacing:-2.400000pt;}
.wsad{word-spacing:-2.368000pt;}
.ws4b{word-spacing:-2.304000pt;}
.wsc9{word-spacing:-2.293333pt;}
.ws6b{word-spacing:-2.240000pt;}
.ws25{word-spacing:-2.176000pt;}
.ws8b{word-spacing:-2.112000pt;}
.ws9c{word-spacing:-2.048000pt;}
.ws57{word-spacing:-1.984000pt;}
.ws10a{word-spacing:-1.973333pt;}
.ws81{word-spacing:-1.920000pt;}
.wsa3{word-spacing:-1.856000pt;}
.wsd6{word-spacing:-1.813333pt;}
.ws75{word-spacing:-1.792000pt;}
.wse0{word-spacing:-1.760000pt;}
.ws26{word-spacing:-1.728000pt;}
.ws59{word-spacing:-1.664000pt;}
.wsa9{word-spacing:-1.600000pt;}
.ws98{word-spacing:-1.536000pt;}
.ws9d{word-spacing:-1.472000pt;}
.ws93{word-spacing:-1.408000pt;}
.ws50{word-spacing:-1.344000pt;}
.ws64{word-spacing:-1.280000pt;}
.ws49{word-spacing:-1.216000pt;}
.ws42{word-spacing:-1.152000pt;}
.ws72{word-spacing:-1.088000pt;}
.ws80{word-spacing:-1.024000pt;}
.wscf{word-spacing:-1.013333pt;}
.ws4e{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.896000pt;}
.ws67{word-spacing:-0.832000pt;}
.ws76{word-spacing:-0.768000pt;}
.ws2c{word-spacing:-0.704000pt;}
.wsfa{word-spacing:-0.693333pt;}
.wse{word-spacing:-0.672533pt;}
.ws7a{word-spacing:-0.640000pt;}
.ws7c{word-spacing:-0.576000pt;}
.wsb4{word-spacing:-0.512000pt;}
.wsc1{word-spacing:-0.480000pt;}
.wsb5{word-spacing:-0.448000pt;}
.wsd8{word-spacing:-0.426667pt;}
.ws61{word-spacing:-0.384000pt;}
.ws6{word-spacing:-0.362133pt;}
.ws83{word-spacing:-0.320000pt;}
.ws4c{word-spacing:-0.256000pt;}
.ws5c{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.155200pt;}
.ws71{word-spacing:-0.128000pt;}
.ws12{word-spacing:-0.103467pt;}
.ws43{word-spacing:-0.064000pt;}
.ws2{word-spacing:-0.053333pt;}
.ws11{word-spacing:-0.051733pt;}
.ws10d{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.064000pt;}
.ws9{word-spacing:0.103467pt;}
.ws8c{word-spacing:0.128000pt;}
.ws36{word-spacing:0.192000pt;}
.ws44{word-spacing:0.256000pt;}
.wsc{word-spacing:0.258667pt;}
.ws4{word-spacing:0.298667pt;}
.ws8f{word-spacing:0.320000pt;}
.ws4d{word-spacing:0.384000pt;}
.ws69{word-spacing:0.448000pt;}
.ws1f{word-spacing:0.512000pt;}
.ws10b{word-spacing:0.528000pt;}
.ws31{word-spacing:0.576000pt;}
.ws3{word-spacing:0.586667pt;}
.ws73{word-spacing:0.640000pt;}
.ws2f{word-spacing:0.704000pt;}
.ws2b{word-spacing:0.768000pt;}
.wsb8{word-spacing:0.832000pt;}
.ws29{word-spacing:0.853333pt;}
.ws54{word-spacing:0.896000pt;}
.wsa7{word-spacing:0.960000pt;}
.ws10{word-spacing:0.982933pt;}
.wscb{word-spacing:1.013333pt;}
.wsa1{word-spacing:1.024000pt;}
.ws51{word-spacing:1.088000pt;}
.ws2d{word-spacing:1.152000pt;}
.wse1{word-spacing:1.173333pt;}
.ws88{word-spacing:1.216000pt;}
.ws39{word-spacing:1.280000pt;}
.ws99{word-spacing:1.344000pt;}
.wsbe{word-spacing:1.386667pt;}
.ws6f{word-spacing:1.408000pt;}
.ws6a{word-spacing:1.472000pt;}
.wsa4{word-spacing:1.536000pt;}
.ws3a{word-spacing:1.600000pt;}
.wsd{word-spacing:1.603733pt;}
.ws91{word-spacing:1.664000pt;}
.ws95{word-spacing:1.728000pt;}
.ws3d{word-spacing:1.792000pt;}
.wscd{word-spacing:1.813333pt;}
.ws30{word-spacing:1.856000pt;}
.wsb7{word-spacing:1.920000pt;}
.ws18{word-spacing:1.965867pt;}
.wsf1{word-spacing:1.973333pt;}
.ws2e{word-spacing:1.984000pt;}
.ws3b{word-spacing:2.048000pt;}
.ws3f{word-spacing:2.112000pt;}
.wsb1{word-spacing:2.176000pt;}
.ws33{word-spacing:2.240000pt;}
.wsb2{word-spacing:2.304000pt;}
.ws5b{word-spacing:2.368000pt;}
.ws77{word-spacing:2.432000pt;}
.ws7e{word-spacing:2.496000pt;}
.ws9a{word-spacing:2.560000pt;}
.wsb3{word-spacing:2.624000pt;}
.ws56{word-spacing:2.688000pt;}
.ws4f{word-spacing:2.752000pt;}
.ws85{word-spacing:2.816000pt;}
.ws78{word-spacing:2.880000pt;}
.wsd5{word-spacing:2.933333pt;}
.ws8a{word-spacing:2.944000pt;}
.ws32{word-spacing:3.008000pt;}
.wsaf{word-spacing:3.072000pt;}
.ws74{word-spacing:3.136000pt;}
.wsd0{word-spacing:3.146667pt;}
.ws3e{word-spacing:3.200000pt;}
.wsb6{word-spacing:3.264000pt;}
.wsc4{word-spacing:3.306667pt;}
.ws23{word-spacing:3.328000pt;}
.ws79{word-spacing:3.392000pt;}
.ws8d{word-spacing:3.456000pt;}
.ws1a{word-spacing:3.517867pt;}
.ws63{word-spacing:3.520000pt;}
.wsfe{word-spacing:3.573333pt;}
.ws53{word-spacing:3.584000pt;}
.ws68{word-spacing:3.648000pt;}
.ws46{word-spacing:3.776000pt;}
.ws7d{word-spacing:3.904000pt;}
.ws38{word-spacing:3.968000pt;}
.wsbb{word-spacing:4.032000pt;}
.ws16{word-spacing:4.035200pt;}
.ws40{word-spacing:4.096000pt;}
.ws9b{word-spacing:4.160000pt;}
.ws45{word-spacing:4.224000pt;}
.wsae{word-spacing:4.288000pt;}
.ws5{word-spacing:4.397333pt;}
.wsba{word-spacing:4.416000pt;}
.ws48{word-spacing:4.480000pt;}
.ws62{word-spacing:4.544000pt;}
.wsb{word-spacing:4.552533pt;}
.wsa5{word-spacing:4.608000pt;}
.ws7b{word-spacing:4.672000pt;}
.ws1b{word-spacing:4.707733pt;}
.ws87{word-spacing:4.736000pt;}
.ws66{word-spacing:4.800000pt;}
.ws96{word-spacing:4.864000pt;}
.ws47{word-spacing:4.928000pt;}
.ws34{word-spacing:4.992000pt;}
.wsc3{word-spacing:5.013333pt;}
.ws70{word-spacing:5.056000pt;}
.ws15{word-spacing:5.069867pt;}
.wsa0{word-spacing:5.120000pt;}
.ws65{word-spacing:5.184000pt;}
.ws3c{word-spacing:5.248000pt;}
.ws8e{word-spacing:5.312000pt;}
.wsf7{word-spacing:5.333333pt;}
.ws97{word-spacing:5.376000pt;}
.ws84{word-spacing:5.504000pt;}
.wsb9{word-spacing:5.568000pt;}
.ws8{word-spacing:5.587200pt;}
.ws82{word-spacing:5.696000pt;}
.ws5d{word-spacing:5.706667pt;}
.ws5a{word-spacing:5.760000pt;}
.wsa2{word-spacing:5.824000pt;}
.ws7f{word-spacing:5.888000pt;}
.wsa6{word-spacing:5.952000pt;}
.ws60{word-spacing:5.973333pt;}
.ws92{word-spacing:6.016000pt;}
.ws24{word-spacing:6.080000pt;}
.ws14{word-spacing:6.363200pt;}
.ws41{word-spacing:6.592000pt;}
.ws2a{word-spacing:6.666667pt;}
.wsc2{word-spacing:6.773333pt;}
.ws7{word-spacing:6.932267pt;}
.ws108{word-spacing:7.093333pt;}
.wsa{word-spacing:7.190933pt;}
.ws6c{word-spacing:7.424000pt;}
.wsd7{word-spacing:7.466667pt;}
.ws101{word-spacing:7.946667pt;}
.wse7{word-spacing:8.426667pt;}
.wsd9{word-spacing:8.960000pt;}
.wsdd{word-spacing:9.013333pt;}
.wsd1{word-spacing:9.386667pt;}
.wsf6{word-spacing:10.240000pt;}
.wsd2{word-spacing:10.293333pt;}
.wsd4{word-spacing:10.560000pt;}
.wsc8{word-spacing:10.826667pt;}
.wsda{word-spacing:10.933333pt;}
.wsec{word-spacing:11.253333pt;}
.wse4{word-spacing:11.946667pt;}
.wsc6{word-spacing:12.906667pt;}
.wsf4{word-spacing:13.386667pt;}
.wsea{word-spacing:13.493333pt;}
.wse5{word-spacing:14.186667pt;}
.wsfd{word-spacing:14.773333pt;}
.wse6{word-spacing:16.480000pt;}
.wse9{word-spacing:17.173333pt;}
.ws105{word-spacing:17.866667pt;}
.wsdf{word-spacing:18.346667pt;}
.wsde{word-spacing:18.506667pt;}
.wse8{word-spacing:18.773333pt;}
.ws103{word-spacing:18.986667pt;}
.wsca{word-spacing:19.680000pt;}
.wsf9{word-spacing:19.946667pt;}
.ws104{word-spacing:20.160000pt;}
.wsdb{word-spacing:20.266667pt;}
.wsee{word-spacing:20.320000pt;}
.wsff{word-spacing:21.173333pt;}
.wsf5{word-spacing:21.386667pt;}
.wsc5{word-spacing:22.986667pt;}
.wsdc{word-spacing:23.146667pt;}
.wsfc{word-spacing:25.546667pt;}
.wscc{word-spacing:25.706667pt;}
.wsf0{word-spacing:25.920000pt;}
.wsed{word-spacing:26.400000pt;}
.wsfb{word-spacing:26.506667pt;}
.wse3{word-spacing:26.773333pt;}
.wseb{word-spacing:29.333333pt;}
.ws107{word-spacing:32.960000pt;}
.wsf8{word-spacing:39.893333pt;}
.wsef{word-spacing:43.840000pt;}
.wsc0{word-spacing:55.520000pt;}
.wsf2{word-spacing:56.106667pt;}
.wsf3{word-spacing:68.533333pt;}
._1a{margin-left:-26.368000pt;}
._f{margin-left:-17.923893pt;}
._d{margin-left:-9.965067pt;}
._a{margin-left:-8.853600pt;}
._e{margin-left:-7.621493pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-4.862933pt;}
._3{margin-left:-3.808000pt;}
._4{margin-left:-2.666667pt;}
._1{margin-left:-1.774933pt;}
._6{width:0.915680pt;}
._7{width:1.898667pt;}
._c{width:3.441920pt;}
._0{width:4.966400pt;}
._9{width:7.040000pt;}
._12{width:8.166400pt;}
._16{width:9.115200pt;}
._11{width:10.288000pt;}
._13{width:11.305707pt;}
._14{width:12.432960pt;}
._18{width:15.233600pt;}
._17{width:18.289067pt;}
._10{width:19.737067pt;}
._19{width:20.645547pt;}
._1e{width:21.633920pt;}
._15{width:22.884267pt;}
._1d{width:26.474667pt;}
._b{width:43.481600pt;}
._1b{width:44.419733pt;}
._8{width:49.866667pt;}
._1c{width:68.554667pt;}
.fs9{font-size:37.312000pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:51.733333pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:181.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y1fd{bottom:51.731467pt;}
.ye8{bottom:52.144133pt;}
.yb5{bottom:58.359467pt;}
.yc9{bottom:58.582800pt;}
.y191{bottom:62.138933pt;}
.ya2{bottom:63.230800pt;}
.y6d{bottom:64.115600pt;}
.y8a{bottom:64.574667pt;}
.y1fc{bottom:67.731467pt;}
.y104{bottom:68.048400pt;}
.y11f{bottom:68.354133pt;}
.y21f{bottom:69.289867pt;}
.y151{bottom:72.133733pt;}
.yd6{bottom:73.225600pt;}
.y17d{bottom:73.456533pt;}
.ye7{bottom:73.477467pt;}
.y4f{bottom:74.408267pt;}
.y182{bottom:74.569333pt;}
.yc8{bottom:74.582800pt;}
.yb4{bottom:79.692800pt;}
.y6c{bottom:80.115600pt;}
.y143{bottom:80.784533pt;}
.y21e{bottom:82.623200pt;}
.y1f{bottom:83.259867pt;}
.y190{bottom:83.472267pt;}
.y1fb{bottom:83.731467pt;}
.ya1{bottom:84.564133pt;}
.y89{bottom:85.908000pt;}
.y133{bottom:88.343733pt;}
.y13{bottom:88.706667pt;}
.y103{bottom:89.381733pt;}
.yde{bottom:89.687467pt;}
.y1b2{bottom:89.834533pt;}
.yc7{bottom:90.582800pt;}
.y216{bottom:91.290667pt;}
.y38{bottom:92.142400pt;}
.y4e{bottom:92.674933pt;}
.y150{bottom:93.467067pt;}
.y162{bottom:94.505200pt;}
.yd5{bottom:94.558933pt;}
.y17c{bottom:94.789867pt;}
.ye6{bottom:94.810800pt;}
.y1e{bottom:95.259867pt;}
.y21d{bottom:95.956533pt;}
.y6b{bottom:96.115600pt;}
.y1d6{bottom:98.786667pt;}
.y18a{bottom:100.774133pt;}
.yb3{bottom:101.026133pt;}
.y17{bottom:101.040000pt;}
.y1fa{bottom:103.511067pt;}
.y18f{bottom:104.805600pt;}
.y1b1{bottom:105.834533pt;}
.ya0{bottom:105.897467pt;}
.yc6{bottom:106.582800pt;}
.y88{bottom:107.241333pt;}
.y215{bottom:107.290667pt;}
.y132{bottom:109.677067pt;}
.y37{bottom:110.409067pt;}
.y102{bottom:110.715067pt;}
.y4d{bottom:110.941600pt;}
.ydd{bottom:111.020800pt;}
.y6a{bottom:112.115600pt;}
.y1d5{bottom:114.786667pt;}
.y14f{bottom:114.800400pt;}
.y161{bottom:115.838533pt;}
.y1a3{bottom:115.892267pt;}
.y17b{bottom:116.123200pt;}
.ye5{bottom:116.144133pt;}
.y142{bottom:117.236000pt;}
.y1f9{bottom:119.511067pt;}
.y16{bottom:120.666667pt;}
.y189{bottom:122.107467pt;}
.yb2{bottom:122.359467pt;}
.yc5{bottom:122.582800pt;}
.y214{bottom:123.290667pt;}
.y1b0{bottom:125.614000pt;}
.y18e{bottom:126.138933pt;}
.y9f{bottom:127.230800pt;}
.y69{bottom:128.115600pt;}
.y87{bottom:128.574667pt;}
.y36{bottom:128.675733pt;}
.y4c{bottom:129.208267pt;}
.y131{bottom:131.010400pt;}
.y101{bottom:132.048400pt;}
.ydc{bottom:132.354133pt;}
.y1d4{bottom:134.566267pt;}
.y1f8{bottom:135.511067pt;}
.y14e{bottom:136.133733pt;}
.y160{bottom:137.171867pt;}
.y1a2{bottom:137.225600pt;}
.ye4{bottom:137.477467pt;}
.y14{bottom:137.733333pt;}
.y141{bottom:138.569333pt;}
.yc4{bottom:138.582800pt;}
.yf{bottom:138.680000pt;}
.y213{bottom:139.290667pt;}
.y15{bottom:140.293333pt;}
.y1af{bottom:141.614000pt;}
.y10d{bottom:142.348933pt;}
.y188{bottom:143.440800pt;}
.yb1{bottom:143.692800pt;}
.y68{bottom:144.115600pt;}
.y35{bottom:146.942400pt;}
.y18d{bottom:147.472267pt;}
.y4b{bottom:147.474933pt;}
.y9e{bottom:148.564133pt;}
.y17a{bottom:148.795067pt;}
.y86{bottom:149.908000pt;}
.y1d3{bottom:150.566267pt;}
.y130{bottom:152.343733pt;}
.y100{bottom:153.381733pt;}
.ydb{bottom:153.687467pt;}
.yc3{bottom:154.582800pt;}
.y1f7{bottom:155.290667pt;}
.y14d{bottom:157.467067pt;}
.y15f{bottom:158.505200pt;}
.y1a1{bottom:158.558933pt;}
.ye3{bottom:158.810800pt;}
.y212{bottom:159.070133pt;}
.y140{bottom:159.902667pt;}
.y67{bottom:160.115600pt;}
.y1ae{bottom:161.393467pt;}
.y10c{bottom:163.682267pt;}
.y187{bottom:164.774133pt;}
.yb0{bottom:165.026133pt;}
.y34{bottom:165.209067pt;}
.y4a{bottom:165.741600pt;}
.y1d2{bottom:166.566267pt;}
.y18c{bottom:168.805600pt;}
.y9d{bottom:169.897467pt;}
.y179{bottom:170.128400pt;}
.yc2{bottom:170.582800pt;}
.y85{bottom:171.241333pt;}
.y1f6{bottom:171.290667pt;}
.yda{bottom:175.020800pt;}
.y211{bottom:175.070133pt;}
.y14c{bottom:178.800400pt;}
.y15e{bottom:179.838533pt;}
.y1a0{bottom:179.892267pt;}
.ye2{bottom:180.144133pt;}
.y13f{bottom:181.236000pt;}
.y1d1{bottom:182.566267pt;}
.y33{bottom:183.475733pt;}
.y49{bottom:184.008267pt;}
.y10b{bottom:185.015600pt;}
.y186{bottom:186.107467pt;}
.yaf{bottom:186.359467pt;}
.yff{bottom:189.833200pt;}
.y18b{bottom:190.138933pt;}
.y1f5{bottom:191.070133pt;}
.y9c{bottom:191.230800pt;}
.y84{bottom:192.574667pt;}
.yc1{bottom:194.141867pt;}
.y1ad{bottom:196.291200pt;}
.yd9{bottom:196.354133pt;}
.y14b{bottom:200.133733pt;}
.y15d{bottom:201.171867pt;}
.y19f{bottom:201.225600pt;}
.ye1{bottom:201.477467pt;}
.y32{bottom:201.742400pt;}
.y48{bottom:202.274933pt;}
.y1d0{bottom:202.345733pt;}
.y13e{bottom:202.569333pt;}
.y178{bottom:202.800400pt;}
.y127{bottom:206.348933pt;}
.y1f4{bottom:207.070133pt;}
.y185{bottom:207.440800pt;}
.yae{bottom:207.692800pt;}
.y66{bottom:208.086400pt;}
.yc0{bottom:210.141867pt;}
.y210{bottom:210.849600pt;}
.yfe{bottom:211.166533pt;}
.y11e{bottom:211.472267pt;}
.y9b{bottom:212.564133pt;}
.y83{bottom:213.908000pt;}
.yd8{bottom:217.687467pt;}
.y1cf{bottom:218.345733pt;}
.y31{bottom:220.009067pt;}
.y47{bottom:220.541600pt;}
.y14a{bottom:221.467067pt;}
.y15c{bottom:222.505200pt;}
.y19e{bottom:222.558933pt;}
.ye0{bottom:222.810800pt;}
.y1f3{bottom:223.070133pt;}
.y13d{bottom:223.902667pt;}
.y177{bottom:224.133733pt;}
.ybf{bottom:226.141867pt;}
.y20f{bottom:226.849600pt;}
.y126{bottom:227.682267pt;}
.y184{bottom:228.774133pt;}
.yad{bottom:229.026133pt;}
.y65{bottom:229.419733pt;}
.yfd{bottom:232.499867pt;}
.y11d{bottom:232.805600pt;}
.y9a{bottom:233.897467pt;}
.y1ce{bottom:234.345733pt;}
.yd2{bottom:235.241333pt;}
.y30{bottom:238.275733pt;}
.y46{bottom:238.808267pt;}
.yd7{bottom:239.020800pt;}
.ybe{bottom:242.141867pt;}
.y149{bottom:242.800400pt;}
.y1f2{bottom:242.849600pt;}
.y15b{bottom:243.838533pt;}
.ydf{bottom:244.144133pt;}
.y13c{bottom:245.236000pt;}
.y176{bottom:245.467067pt;}
.y20e{bottom:246.629200pt;}
.y125{bottom:249.015600pt;}
.y82{bottom:250.359467pt;}
.y64{bottom:250.753067pt;}
.yfc{bottom:253.833200pt;}
.y1cd{bottom:254.125333pt;}
.y11c{bottom:254.138933pt;}
.ycd{bottom:255.230800pt;}
.y2f{bottom:256.542400pt;}
.y157{bottom:256.574667pt;}
.y45{bottom:257.074933pt;}
.y1f1{bottom:258.849600pt;}
.y19d{bottom:259.010400pt;}
.y1ac{bottom:259.419733pt;}
.y10a{bottom:260.354133pt;}
.y20d{bottom:262.629200pt;}
.y148{bottom:264.133733pt;}
.y15a{bottom:265.171867pt;}
.yac{bottom:265.477467pt;}
.y13b{bottom:266.569333pt;}
.y175{bottom:266.800400pt;}
.y183{bottom:269.005067pt;}
.y12f{bottom:269.257067pt;}
.y1cc{bottom:270.125333pt;}
.y99{bottom:270.348933pt;}
.y81{bottom:271.692800pt;}
.y63{bottom:272.086400pt;}
.y2e{bottom:274.809067pt;}
.y1f0{bottom:274.849600pt;}
.y44{bottom:275.341600pt;}
.y1ab{bottom:275.419733pt;}
.y11b{bottom:275.472267pt;}
.ycc{bottom:276.564133pt;}
.y156{bottom:277.908000pt;}
.y20c{bottom:278.629200pt;}
.y19c{bottom:280.343733pt;}
.y109{bottom:281.687467pt;}
.y147{bottom:285.467067pt;}
.yfb{bottom:286.505200pt;}
.yab{bottom:286.810800pt;}
.y13a{bottom:287.902667pt;}
.y1cb{bottom:289.904800pt;}
.y12e{bottom:290.590400pt;}
.y1aa{bottom:291.419733pt;}
.y98{bottom:291.682267pt;}
.y80{bottom:293.026133pt;}
.y2d{bottom:293.075733pt;}
.y43{bottom:293.608267pt;}
.y1ef{bottom:294.629200pt;}
.y11a{bottom:296.805600pt;}
.ycb{bottom:297.897467pt;}
.y20b{bottom:298.408667pt;}
.y155{bottom:299.241333pt;}
.y174{bottom:299.472267pt;}
.y19b{bottom:301.677067pt;}
.y108{bottom:303.020800pt;}
.y1ca{bottom:305.904800pt;}
.ya{bottom:306.382667pt;}
.y146{bottom:306.800400pt;}
.yfa{bottom:307.838533pt;}
.yaa{bottom:308.144133pt;}
.y62{bottom:308.537867pt;}
.y1ee{bottom:310.629200pt;}
.y1a9{bottom:311.199333pt;}
.y2c{bottom:311.342400pt;}
.y42{bottom:311.874933pt;}
.y12d{bottom:311.923733pt;}
.y97{bottom:313.015600pt;}
.y7f{bottom:314.359467pt;}
.y20a{bottom:314.408667pt;}
.y119{bottom:318.138933pt;}
.y154{bottom:320.574667pt;}
.y173{bottom:320.805600pt;}
.y1c9{bottom:321.904800pt;}
.y19a{bottom:323.010400pt;}
.y139{bottom:324.354133pt;}
.y1ed{bottom:326.629200pt;}
.y1a8{bottom:327.199333pt;}
.y145{bottom:328.133733pt;}
.yf9{bottom:329.171867pt;}
.ya9{bottom:329.477467pt;}
.y2b{bottom:329.609067pt;}
.y61{bottom:329.871200pt;}
.y41{bottom:330.141600pt;}
.y12c{bottom:333.257067pt;}
.y209{bottom:334.188267pt;}
.y96{bottom:334.348933pt;}
.y7e{bottom:335.692800pt;}
.yca{bottom:338.128400pt;}
.y107{bottom:339.472267pt;}
.y1c8{bottom:341.684400pt;}
.y153{bottom:341.908000pt;}
.y172{bottom:342.138933pt;}
.y1ec{bottom:342.629200pt;}
.yd{bottom:343.546667pt;}
.y199{bottom:344.343733pt;}
.y138{bottom:345.687467pt;}
.y2a{bottom:347.875733pt;}
.y40{bottom:348.408267pt;}
.y208{bottom:350.188267pt;}
.yf8{bottom:350.505200pt;}
.ya8{bottom:350.810800pt;}
.y60{bottom:351.204533pt;}
.y9{bottom:351.724000pt;}
.y12b{bottom:354.590400pt;}
.y95{bottom:355.682267pt;}
.y7d{bottom:357.026133pt;}
.y1c7{bottom:357.684400pt;}
.y106{bottom:360.805600pt;}
.y1a7{bottom:362.096933pt;}
.y1eb{bottom:362.408667pt;}
.y171{bottom:363.472267pt;}
.y198{bottom:365.677067pt;}
.y29{bottom:366.142400pt;}
.y207{bottom:366.188267pt;}
.y3f{bottom:366.674933pt;}
.y124{bottom:367.020800pt;}
.yf7{bottom:371.838533pt;}
.ya7{bottom:372.144133pt;}
.y5f{bottom:372.537867pt;}
.y1c6{bottom:373.684400pt;}
.y12a{bottom:375.923733pt;}
.y94{bottom:377.015600pt;}
.y7c{bottom:378.359333pt;}
.y1ea{bottom:378.408667pt;}
.y105{bottom:382.138933pt;}
.y206{bottom:382.188267pt;}
.y28{bottom:384.409067pt;}
.y170{bottom:384.805600pt;}
.y3e{bottom:384.941600pt;}
.yb{bottom:386.533333pt;}
.y159{bottom:386.956667pt;}
.y197{bottom:387.010400pt;}
.ybd{bottom:387.262267pt;}
.y123{bottom:388.354133pt;}
.yf6{bottom:393.171867pt;}
.y1c5{bottom:393.463867pt;}
.ya6{bottom:393.477600pt;}
.y5e{bottom:393.871200pt;}
.y1e9{bottom:394.408667pt;}
.y8{bottom:397.065333pt;}
.y129{bottom:397.257067pt;}
.y93{bottom:398.348933pt;}
.y7b{bottom:399.692667pt;}
.y205{bottom:401.967733pt;}
.y27{bottom:402.675733pt;}
.y3d{bottom:403.208267pt;}
.y118{bottom:403.472267pt;}
.y16f{bottom:406.138933pt;}
.y158{bottom:408.290000pt;}
.y196{bottom:408.343733pt;}
.ybc{bottom:408.595600pt;}
.y1c4{bottom:409.463867pt;}
.y122{bottom:409.687467pt;}
.y1e8{bottom:414.188267pt;}
.ya5{bottom:414.810933pt;}
.y5d{bottom:415.204533pt;}
.y204{bottom:417.967733pt;}
.y128{bottom:418.590400pt;}
.y92{bottom:419.682267pt;}
.y26{bottom:420.942400pt;}
.yd1{bottom:421.026000pt;}
.y3c{bottom:421.474933pt;}
.y144{bottom:424.805600pt;}
.y1a6{bottom:425.225600pt;}
.y16e{bottom:427.472267pt;}
.y1c3{bottom:429.243467pt;}
.yf5{bottom:429.623333pt;}
.y195{bottom:429.677067pt;}
.ybb{bottom:429.928933pt;}
.y10{bottom:433.826667pt;}
.y1e7{bottom:433.967733pt;}
.y7a{bottom:436.144267pt;}
.y5c{bottom:436.537867pt;}
.y25{bottom:439.209067pt;}
.y3b{bottom:439.741600pt;}
.y117{bottom:439.923733pt;}
.y91{bottom:441.015600pt;}
.y1a5{bottom:441.225600pt;}
.y137{bottom:442.359333pt;}
.y7{bottom:442.406667pt;}
.y1c2{bottom:445.243467pt;}
.y121{bottom:446.138933pt;}
.y16d{bottom:448.805600pt;}
.y1e6{bottom:449.967733pt;}
.yf4{bottom:450.956667pt;}
.y194{bottom:451.010400pt;}
.yba{bottom:451.262267pt;}
.y24{bottom:457.475733pt;}
.y79{bottom:457.477600pt;}
.y3a{bottom:458.008267pt;}
.y116{bottom:461.257067pt;}
.y90{bottom:462.348933pt;}
.y136{bottom:463.692667pt;}
.y1c1{bottom:465.022933pt;}
.y1e5{bottom:465.967733pt;}
.y120{bottom:467.472267pt;}
.y203{bottom:469.747333pt;}
.yf3{bottom:472.290000pt;}
.y193{bottom:472.343733pt;}
.yb9{bottom:472.595600pt;}
.y5b{bottom:472.989333pt;}
.y23{bottom:475.742400pt;}
.y1a4{bottom:476.123200pt;}
.y39{bottom:476.274933pt;}
.y11{bottom:478.426667pt;}
.y78{bottom:478.810933pt;}
.y1c0{bottom:481.022933pt;}
.y16c{bottom:481.477600pt;}
.y115{bottom:482.590400pt;}
.y8f{bottom:483.682267pt;}
.y135{bottom:485.026000pt;}
.y1e4{bottom:485.747333pt;}
.y6{bottom:487.748000pt;}
.y181{bottom:488.805600pt;}
.yf2{bottom:493.623333pt;}
.y192{bottom:493.677067pt;}
.yb8{bottom:493.928933pt;}
.y5a{bottom:494.322667pt;}
.y1bf{bottom:497.022933pt;}
.y77{bottom:500.144267pt;}
.y1e3{bottom:501.747333pt;}
.y16b{bottom:502.810933pt;}
.y114{bottom:503.923733pt;}
.y8e{bottom:505.015600pt;}
.y21c{bottom:506.070133pt;}
.y134{bottom:506.359333pt;}
.y180{bottom:510.138933pt;}
.y1be{bottom:513.022933pt;}
.yf1{bottom:514.956667pt;}
.yb7{bottom:515.262267pt;}
.y59{bottom:515.656000pt;}
.y202{bottom:517.747333pt;}
.y76{bottom:521.477600pt;}
.y1e2{bottom:521.526800pt;}
.y18{bottom:524.093333pt;}
.y16a{bottom:524.144267pt;}
.y113{bottom:525.257067pt;}
.y8d{bottom:526.348933pt;}
.y17f{bottom:531.472267pt;}
.y1bd{bottom:532.802533pt;}
.y5{bottom:533.089333pt;}
.yf0{bottom:536.290000pt;}
.yb6{bottom:536.595600pt;}
.y58{bottom:536.989333pt;}
.y1d{bottom:537.270133pt;}
.y1e1{bottom:537.526800pt;}
.y21b{bottom:541.270133pt;}
.y75{bottom:542.810933pt;}
.y169{bottom:545.477600pt;}
.y112{bottom:546.590400pt;}
.y8c{bottom:547.682267pt;}
.y1bc{bottom:548.802400pt;}
.y17e{bottom:552.805600pt;}
.y1e0{bottom:553.526800pt;}
.y1c{bottom:554.870133pt;}
.yef{bottom:557.623333pt;}
.ya4{bottom:557.928933pt;}
.y57{bottom:558.322667pt;}
.ye{bottom:561.706667pt;}
.y74{bottom:564.144133pt;}
.y168{bottom:566.810800pt;}
.y111{bottom:567.923733pt;}
.y1bb{bottom:568.582000pt;}
.yd4{bottom:569.015600pt;}
.y1df{bottom:569.526800pt;}
.y22{bottom:571.341467pt;}
.y201{bottom:573.306400pt;}
.yee{bottom:578.956667pt;}
.ya3{bottom:579.262267pt;}
.y56{bottom:579.656000pt;}
.y1ba{bottom:584.582000pt;}
.yd0{bottom:585.477467pt;}
.y1de{bottom:585.526800pt;}
.y8b{bottom:587.913200pt;}
.y167{bottom:588.144133pt;}
.y110{bottom:589.257067pt;}
.y200{bottom:589.306400pt;}
.y1b{bottom:597.932133pt;}
.y21a{bottom:598.089733pt;}
.yed{bottom:600.290000pt;}
.y73{bottom:600.595600pt;}
.y55{bottom:600.989333pt;}
.y1b9{bottom:604.361467pt;}
.y1dd{bottom:605.306400pt;}
.ycf{bottom:606.810800pt;}
.y217{bottom:609.085867pt;}
.yd3{bottom:609.246533pt;}
.y166{bottom:609.477467pt;}
.y10f{bottom:610.590400pt;}
.y1dc{bottom:621.306400pt;}
.yec{bottom:621.623333pt;}
.y72{bottom:621.928933pt;}
.y54{bottom:622.322667pt;}
.y1b8{bottom:624.141067pt;}
.y1ff{bottom:625.085867pt;}
.yce{bottom:628.144133pt;}
.y165{bottom:630.810800pt;}
.y10e{bottom:631.923733pt;}
.y21{bottom:633.703200pt;}
.y1b7{bottom:640.141067pt;}
.y1db{bottom:641.085867pt;}
.yeb{bottom:642.956667pt;}
.y71{bottom:643.262267pt;}
.y53{bottom:643.656000pt;}
.y152{bottom:649.477467pt;}
.y1b6{bottom:656.141067pt;}
.y1da{bottom:657.085867pt;}
.y1fe{bottom:660.865333pt;}
.yea{bottom:664.290000pt;}
.y70{bottom:664.595600pt;}
.y219{bottom:664.781733pt;}
.y52{bottom:664.989333pt;}
.y1a{bottom:666.705600pt;}
.y164{bottom:667.262267pt;}
.y20{bottom:669.703200pt;}
.y1b5{bottom:675.920533pt;}
.y1d9{bottom:676.865333pt;}
.y218{bottom:683.981733pt;}
.y19{bottom:685.905733pt;}
.y6f{bottom:685.928933pt;}
.y51{bottom:686.322667pt;}
.y163{bottom:687.262267pt;}
.y4{bottom:691.756000pt;}
.y1b4{bottom:691.920533pt;}
.y1d8{bottom:692.865333pt;}
.ye9{bottom:704.520933pt;}
.y6e{bottom:707.262267pt;}
.y50{bottom:707.656000pt;}
.y1b3{bottom:707.920533pt;}
.y1d7{bottom:708.865333pt;}
.y12{bottom:725.040000pt;}
.y3{bottom:805.081333pt;}
.y2{bottom:857.092000pt;}
.y1{bottom:879.748000pt;}
.h4{height:29.333333pt;}
.h1a{height:34.968750pt;}
.h18{height:37.031250pt;}
.h13{height:37.817067pt;}
.he{height:37.866667pt;}
.h19{height:40.734375pt;}
.h16{height:44.296875pt;}
.hc{height:44.800000pt;}
.h12{height:47.104000pt;}
.h14{height:48.512000pt;}
.hd{height:48.726562pt;}
.h15{height:49.594496pt;}
.h17{height:51.029333pt;}
.h3{height:51.916667pt;}
.h11{height:52.266667pt;}
.hb{height:56.562500pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h7{height:102.413333pt;}
.h10{height:113.024000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.hf{height:160.117333pt;}
.h9{height:793.701333pt;}
.ha{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w9{width:1122.520000pt;}
.wa{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x18{left:64.252000pt;}
.x1f{left:85.984267pt;}
.x16{left:86.929067pt;}
.x1b{left:102.047200pt;}
.x17{left:105.826800pt;}
.x12{left:110.170000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x19{left:531.023600pt;}
.x14{left:553.700800pt;}
.x11{left:559.052000pt;}
.x1c{left:568.818933pt;}
.x15{left:572.598400pt;}
.x13{left:842.900400pt;}
.xd{left:984.639467pt;}
.x1e{left:986.965067pt;}
.x1d{left:991.656533pt;}
.xb{left:992.690533pt;}
.xe{left:995.652800pt;}
.x10{left:999.477467pt;}
.xa{left:1003.510933pt;}
.xf{left:1008.157333pt;}
.x1a{left:1016.038933pt;}
.xc{left:1020.142800pt;}
}




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