
    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_328b925635feadd77b424f9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_6c176681a767ecdc42082b76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115000;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_346b69a6592fc27cf2a41ed6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_276472a72ab8fc83ec416722.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.071000;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_e7303dea3d2ecfb066191bb4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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_9fa54efe0a64a63811da08d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_1f99b9c04ef1c5b5d47af8e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.860840;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_49de9ff88a1afb861d09154f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_6c2db7a2946a3ae516d65ce5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.862793;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_cd801f688ae95ea101960cb0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.765625;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_81b15cbd96fa91f1a999b80e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.143000;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;}
.m2{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);}
.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);}
.v5{vertical-align:-26.838000px;}
.v7{vertical-align:-13.500000px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.599856px;}
.v1{vertical-align:23.975832px;}
.v6{vertical-align:26.838000px;}
.v3{vertical-align:36.018000px;}
.ls41{letter-spacing:-8.856000px;}
.ls44{letter-spacing:-7.704000px;}
.ls86{letter-spacing:-7.200000px;}
.ls51{letter-spacing:-6.624000px;}
.ls43{letter-spacing:-6.480000px;}
.ls4f{letter-spacing:-5.832000px;}
.ls40{letter-spacing:-5.544000px;}
.ls7e{letter-spacing:-5.256000px;}
.ls82{letter-spacing:-5.100000px;}
.ls50{letter-spacing:-4.824000px;}
.ls81{letter-spacing:-4.440000px;}
.ls84{letter-spacing:-3.900000px;}
.ls5d{letter-spacing:-3.600000px;}
.ls29{letter-spacing:-2.448000px;}
.ls30{letter-spacing:-2.376000px;}
.ls72{letter-spacing:-1.872000px;}
.ls2a{letter-spacing:-1.800000px;}
.ls71{letter-spacing:-1.728000px;}
.ls42{letter-spacing:-1.584000px;}
.ls1b{letter-spacing:-1.368000px;}
.ls24{letter-spacing:-1.296000px;}
.ls67{letter-spacing:-1.254000px;}
.ls55{letter-spacing:-1.224000px;}
.ls2e{letter-spacing:-1.152000px;}
.ls5c{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.864000px;}
.ls6b{letter-spacing:-0.792000px;}
.ls33{letter-spacing:-0.756000px;}
.ls31{letter-spacing:-0.702000px;}
.ls85{letter-spacing:-0.660000px;}
.ls3c{letter-spacing:-0.648000px;}
.ls63{letter-spacing:-0.594000px;}
.ls14{letter-spacing:-0.576000px;}
.ls46{letter-spacing:-0.540000px;}
.ls8b{letter-spacing:-0.528000px;}
.ls28{letter-spacing:-0.504000px;}
.ls39{letter-spacing:-0.486000px;}
.ls10{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.420000px;}
.ls64{letter-spacing:-0.396000px;}
.ls3a{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.366000px;}
.ls19{letter-spacing:-0.360000px;}
.ls62{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.270000px;}
.ls69{letter-spacing:-0.264000px;}
.ls87{letter-spacing:-0.240000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls6d{letter-spacing:-0.198000px;}
.ls16{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.168000px;}
.ls32{letter-spacing:-0.162000px;}
.ls4c{letter-spacing:-0.144000px;}
.ls65{letter-spacing:-0.132000px;}
.ls54{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.072000px;}
.ls6c{letter-spacing:-0.066000px;}
.ls80{letter-spacing:-0.060000px;}
.ls47{letter-spacing:-0.054000px;}
.lsf{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.054000px;}
.ls7a{letter-spacing:0.060000px;}
.ls61{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.084000px;}
.lsd{letter-spacing:0.120000px;}
.ls21{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls7f{letter-spacing:0.240000px;}
.ls5f{letter-spacing:0.264000px;}
.ls20{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.324000px;}
.ls6a{letter-spacing:0.330000px;}
.ls6{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.367200px;}
.ls4d{letter-spacing:0.378000px;}
.ls68{letter-spacing:0.396000px;}
.ls8{letter-spacing:0.403200px;}
.ls49{letter-spacing:0.410400px;}
.lsb{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.455994px;}
.ls66{letter-spacing:0.462000px;}
.ls73{letter-spacing:0.468000px;}
.ls83{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.482400px;}
.ls5{letter-spacing:0.504000px;}
.ls53{letter-spacing:0.540000px;}
.ls2b{letter-spacing:0.576000px;}
.ls59{letter-spacing:0.648000px;}
.ls3e{letter-spacing:0.698400px;}
.ls56{letter-spacing:0.720000px;}
.ls60{letter-spacing:0.748800px;}
.ls3d{letter-spacing:0.756000px;}
.ls3b{letter-spacing:0.810000px;}
.ls78{letter-spacing:0.900000px;}
.ls4b{letter-spacing:1.152000px;}
.ls77{letter-spacing:1.194000px;}
.ls7d{letter-spacing:1.200000px;}
.ls70{letter-spacing:1.656000px;}
.ls88{letter-spacing:1.980000px;}
.ls23{letter-spacing:2.376000px;}
.ls7c{letter-spacing:3.180000px;}
.ls37{letter-spacing:3.600000px;}
.ls7b{letter-spacing:4.380000px;}
.ls1e{letter-spacing:4.752000px;}
.ls9{letter-spacing:5.976000px;}
.ls79{letter-spacing:6.780000px;}
.ls22{letter-spacing:7.200000px;}
.ls26{letter-spacing:8.352000px;}
.ls2c{letter-spacing:9.576000px;}
.ls27{letter-spacing:10.800000px;}
.lsc{letter-spacing:11.952000px;}
.ls5a{letter-spacing:13.176000px;}
.ls6e{letter-spacing:14.400000px;}
.ls58{letter-spacing:15.552000px;}
.ls35{letter-spacing:16.776000px;}
.ls52{letter-spacing:18.000000px;}
.ls6f{letter-spacing:19.152000px;}
.ls74{letter-spacing:21.600000px;}
.ls76{letter-spacing:22.920000px;}
.ls1c{letter-spacing:27.576000px;}
.ls48{letter-spacing:31.608000px;}
.lsa{letter-spacing:33.552000px;}
.ls89{letter-spacing:42.780000px;}
.ls8a{letter-spacing:45.600000px;}
.ls75{letter-spacing:92.808000px;}
.ls4a{letter-spacing:138.834000px;}
.ls57{letter-spacing:145.152000px;}
.ls5b{letter-spacing:156.114000px;}
.ls36{letter-spacing:193.644000px;}
.ls4e{letter-spacing:221.454000px;}
.ls3f{letter-spacing:295.920000px;}
.ls5e{letter-spacing:657.690000px;}
.ls1{letter-spacing:846.780000px;}
.ls3{letter-spacing:874.380000px;}
.ls2{letter-spacing:1137.180000px;}
.ls25{letter-spacing:1162.380000px;}
.ls0{letter-spacing:1335.180000px;}
.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;}
}
.ws92{word-spacing:-72.000000px;}
.ws4e{word-spacing:-54.216000px;}
.ws1a{word-spacing:-27.576000px;}
.ws3{word-spacing:-19.584000px;}
.ws12c{word-spacing:-19.440000px;}
.ws9{word-spacing:-19.368000px;}
.ws4{word-spacing:-19.224000px;}
.ws4d{word-spacing:-19.152000px;}
.ws93{word-spacing:-19.080000px;}
.ws9e{word-spacing:-18.936000px;}
.wsd0{word-spacing:-18.864000px;}
.ws9d{word-spacing:-18.792000px;}
.ws6a{word-spacing:-18.720000px;}
.ws31{word-spacing:-18.648000px;}
.ws2{word-spacing:-18.432000px;}
.wsc6{word-spacing:-18.360000px;}
.wsb6{word-spacing:-18.000000px;}
.wsec{word-spacing:-17.952000px;}
.ws8{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.wsea{word-spacing:-17.688000px;}
.wsa{word-spacing:-17.640000px;}
.wseb{word-spacing:-17.622000px;}
.wsed{word-spacing:-17.490000px;}
.wsdd{word-spacing:-17.424000px;}
.ws15c{word-spacing:-17.358000px;}
.ws10b{word-spacing:-17.352000px;}
.ws15b{word-spacing:-17.094000px;}
.ws134{word-spacing:-16.920000px;}
.wsc3{word-spacing:-16.776000px;}
.wse9{word-spacing:-16.764000px;}
.ws15a{word-spacing:-16.368000px;}
.ws1{word-spacing:-16.140000px;}
.ws12f{word-spacing:-16.020000px;}
.wsd1{word-spacing:-15.984000px;}
.ws130{word-spacing:-15.960000px;}
.ws6{word-spacing:-15.840000px;}
.ws133{word-spacing:-15.780000px;}
.ws12e{word-spacing:-15.720000px;}
.ws131{word-spacing:-15.600000px;}
.wsc2{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.540000px;}
.ws132{word-spacing:-15.360000px;}
.ws12d{word-spacing:-14.700000px;}
.ws159{word-spacing:-14.640000px;}
.ws10a{word-spacing:-14.400000px;}
.ws122{word-spacing:-13.176000px;}
.ws6f{word-spacing:-13.014000px;}
.ws72{word-spacing:-12.960000px;}
.wsd2{word-spacing:-12.636000px;}
.ws6b{word-spacing:-12.420000px;}
.wsc8{word-spacing:-12.150000px;}
.wsd3{word-spacing:-12.042000px;}
.ws115{word-spacing:-11.952000px;}
.wsd4{word-spacing:-11.934000px;}
.ws70{word-spacing:-11.718000px;}
.ws71{word-spacing:-11.448000px;}
.ws5{word-spacing:-11.214000px;}
.ws42{word-spacing:-9.576000px;}
.wsa8{word-spacing:-8.352000px;}
.ws2c{word-spacing:-7.200000px;}
.ws22{word-spacing:-4.752000px;}
.ws2f{word-spacing:-4.392000px;}
.wsef{word-spacing:-4.248000px;}
.ws141{word-spacing:-4.140000px;}
.ws117{word-spacing:-3.888000px;}
.ws27{word-spacing:-3.816000px;}
.ws76{word-spacing:-3.600000px;}
.ws43{word-spacing:-3.528000px;}
.ws118{word-spacing:-3.456000px;}
.ws44{word-spacing:-3.384000px;}
.ws29{word-spacing:-3.312000px;}
.ws28{word-spacing:-3.168000px;}
.wsb7{word-spacing:-3.024000px;}
.ws3f{word-spacing:-2.664000px;}
.wsf6{word-spacing:-2.640000px;}
.wsd6{word-spacing:-2.592000px;}
.ws2d{word-spacing:-2.376000px;}
.ws14f{word-spacing:-2.340000px;}
.ws8b{word-spacing:-2.232000px;}
.ws150{word-spacing:-2.160000px;}
.wsb1{word-spacing:-2.016000px;}
.ws15{word-spacing:-1.872000px;}
.ws73{word-spacing:-1.800000px;}
.wsf9{word-spacing:-1.716000px;}
.ws5b{word-spacing:-1.584000px;}
.wsa0{word-spacing:-1.440000px;}
.ws7d{word-spacing:-1.242000px;}
.ws155{word-spacing:-1.200000px;}
.ws30{word-spacing:-1.152000px;}
.ws13e{word-spacing:-1.140000px;}
.ws125{word-spacing:-1.080000px;}
.ws7b{word-spacing:-1.026000px;}
.ws10d{word-spacing:-1.008000px;}
.ws14c{word-spacing:-0.900000px;}
.wsfc{word-spacing:-0.858000px;}
.ws67{word-spacing:-0.792000px;}
.wsb8{word-spacing:-0.756000px;}
.ws14d{word-spacing:-0.660000px;}
.ws32{word-spacing:-0.648000px;}
.ws9b{word-spacing:-0.594000px;}
.ws3a{word-spacing:-0.576000px;}
.wsb{word-spacing:-0.540000px;}
.ws151{word-spacing:-0.480000px;}
.ws9c{word-spacing:-0.432000px;}
.wse{word-spacing:-0.420000px;}
.ws13{word-spacing:-0.360000px;}
.ws79{word-spacing:-0.324000px;}
.ws2a{word-spacing:-0.288000px;}
.ws138{word-spacing:-0.240000px;}
.ws1f{word-spacing:-0.216000px;}
.ws90{word-spacing:-0.162000px;}
.ws2b{word-spacing:-0.144000px;}
.ws13a{word-spacing:-0.120000px;}
.wsba{word-spacing:-0.108000px;}
.wsfb{word-spacing:-0.066000px;}
.ws139{word-spacing:-0.060000px;}
.wsc{word-spacing:0.000000px;}
.wsdc{word-spacing:0.054000px;}
.ws14{word-spacing:0.060000px;}
.wsf3{word-spacing:0.066000px;}
.ws12{word-spacing:0.072000px;}
.ws5d{word-spacing:0.144000px;}
.ws9a{word-spacing:0.162000px;}
.ws78{word-spacing:0.216000px;}
.wsf{word-spacing:0.252000px;}
.wsc5{word-spacing:0.270000px;}
.ws34{word-spacing:0.288000px;}
.ws160{word-spacing:0.300000px;}
.wsf5{word-spacing:0.330000px;}
.ws5c{word-spacing:0.360000px;}
.ws7a{word-spacing:0.378000px;}
.wsd{word-spacing:0.420000px;}
.ws20{word-spacing:0.432000px;}
.wsf4{word-spacing:0.462000px;}
.ws13c{word-spacing:0.480000px;}
.ws68{word-spacing:0.486000px;}
.ws10{word-spacing:0.504000px;}
.ws165{word-spacing:0.528000px;}
.ws7c{word-spacing:0.540000px;}
.ws11{word-spacing:0.576000px;}
.ws91{word-spacing:0.648000px;}
.ws7e{word-spacing:0.756000px;}
.wsf7{word-spacing:0.792000px;}
.ws5a{word-spacing:0.864000px;}
.ws21{word-spacing:0.936000px;}
.ws59{word-spacing:1.152000px;}
.ws152{word-spacing:1.200000px;}
.wsbd{word-spacing:1.224000px;}
.ws69{word-spacing:1.242000px;}
.wsfd{word-spacing:1.254000px;}
.ws142{word-spacing:1.260000px;}
.ws114{word-spacing:1.296000px;}
.ws18{word-spacing:1.368000px;}
.ws86{word-spacing:1.440000px;}
.ws87{word-spacing:1.584000px;}
.wsb9{word-spacing:1.620000px;}
.ws36{word-spacing:1.728000px;}
.ws128{word-spacing:1.800000px;}
.ws99{word-spacing:2.088000px;}
.ws3b{word-spacing:2.160000px;}
.ws149{word-spacing:2.280000px;}
.ws11c{word-spacing:2.376000px;}
.ws19{word-spacing:2.448000px;}
.ws153{word-spacing:2.460000px;}
.ws1d{word-spacing:2.592000px;}
.ws53{word-spacing:2.664000px;}
.ws2e{word-spacing:2.808000px;}
.ws46{word-spacing:2.952000px;}
.ws157{word-spacing:3.180000px;}
.ws61{word-spacing:3.312000px;}
.ws14a{word-spacing:3.360000px;}
.ws105{word-spacing:3.366000px;}
.ws60{word-spacing:3.384000px;}
.ws164{word-spacing:3.564000px;}
.wse4{word-spacing:3.600000px;}
.ws11e{word-spacing:3.672000px;}
.ws11a{word-spacing:3.816000px;}
.ws163{word-spacing:3.960000px;}
.ws143{word-spacing:4.020000px;}
.ws75{word-spacing:4.032000px;}
.ws146{word-spacing:4.140000px;}
.ws45{word-spacing:4.176000px;}
.ws58{word-spacing:4.392000px;}
.wse5{word-spacing:4.464000px;}
.wsd7{word-spacing:4.536000px;}
.ws14b{word-spacing:4.800000px;}
.ws98{word-spacing:4.824000px;}
.wsd9{word-spacing:4.968000px;}
.ws77{word-spacing:5.040000px;}
.ws158{word-spacing:5.100000px;}
.wsfe{word-spacing:5.148000px;}
.ws65{word-spacing:5.184000px;}
.ws11f{word-spacing:5.256000px;}
.ws57{word-spacing:5.328000px;}
.ws148{word-spacing:5.340000px;}
.ws156{word-spacing:5.460000px;}
.ws8a{word-spacing:5.544000px;}
.wsee{word-spacing:5.688000px;}
.wsb3{word-spacing:5.760000px;}
.ws110{word-spacing:5.832000px;}
.ws147{word-spacing:6.000000px;}
.ws89{word-spacing:6.048000px;}
.ws116{word-spacing:6.264000px;}
.ws17{word-spacing:6.408000px;}
.ws8e{word-spacing:6.480000px;}
.ws144{word-spacing:6.540000px;}
.wscc{word-spacing:6.552000px;}
.ws145{word-spacing:6.720000px;}
.ws8d{word-spacing:6.840000px;}
.ws54{word-spacing:6.984000px;}
.ws14e{word-spacing:7.080000px;}
.ws64{word-spacing:7.128000px;}
.wsa7{word-spacing:7.272000px;}
.ws5f{word-spacing:7.416000px;}
.wsd5{word-spacing:7.632000px;}
.ws8f{word-spacing:7.704000px;}
.ws52{word-spacing:7.776000px;}
.ws154{word-spacing:7.980000px;}
.ws127{word-spacing:8.064000px;}
.ws23{word-spacing:8.136000px;}
.wsa2{word-spacing:8.424000px;}
.wsdb{word-spacing:8.568000px;}
.ws126{word-spacing:8.712000px;}
.ws24{word-spacing:8.784000px;}
.ws8c{word-spacing:8.856000px;}
.ws66{word-spacing:8.928000px;}
.wsda{word-spacing:9.360000px;}
.ws55{word-spacing:9.648000px;}
.ws13b{word-spacing:9.660000px;}
.wsb0{word-spacing:10.008000px;}
.wsde{word-spacing:10.152000px;}
.ws35{word-spacing:10.512000px;}
.ws1c{word-spacing:10.584000px;}
.ws85{word-spacing:10.872000px;}
.ws84{word-spacing:11.016000px;}
.ws33{word-spacing:11.160000px;}
.ws40{word-spacing:11.232000px;}
.ws1b{word-spacing:11.376000px;}
.wse6{word-spacing:11.664000px;}
.ws3e{word-spacing:11.736000px;}
.ws121{word-spacing:12.024000px;}
.wsd8{word-spacing:12.168000px;}
.wse7{word-spacing:12.384000px;}
.wscd{word-spacing:12.528000px;}
.wsbe{word-spacing:12.960000px;}
.ws25{word-spacing:13.248000px;}
.ws135{word-spacing:13.464000px;}
.wsbf{word-spacing:13.608000px;}
.ws5e{word-spacing:13.752000px;}
.ws63{word-spacing:14.040000px;}
.wsf1{word-spacing:14.112000px;}
.ws97{word-spacing:14.184000px;}
.ws162{word-spacing:14.322000px;}
.wsb2{word-spacing:14.472000px;}
.ws119{word-spacing:14.544000px;}
.ws11b{word-spacing:14.616000px;}
.wsf2{word-spacing:14.688000px;}
.wsa4{word-spacing:14.832000px;}
.ws161{word-spacing:14.850000px;}
.wsa3{word-spacing:14.976000px;}
.ws47{word-spacing:15.336000px;}
.wscb{word-spacing:15.624000px;}
.ws4a{word-spacing:15.840000px;}
.ws26{word-spacing:15.984000px;}
.ws49{word-spacing:16.056000px;}
.wsfa{word-spacing:16.104000px;}
.ws48{word-spacing:16.128000px;}
.ws74{word-spacing:16.560000px;}
.ws16{word-spacing:16.848000px;}
.ws123{word-spacing:17.064000px;}
.ws113{word-spacing:17.208000px;}
.wsa6{word-spacing:17.280000px;}
.ws1e{word-spacing:17.352000px;}
.wsb4{word-spacing:17.784000px;}
.ws88{word-spacing:18.072000px;}
.ws4c{word-spacing:18.216000px;}
.wsdf{word-spacing:18.288000px;}
.ws12b{word-spacing:18.432000px;}
.ws13f{word-spacing:18.540000px;}
.ws4b{word-spacing:18.576000px;}
.ws62{word-spacing:18.936000px;}
.ws140{word-spacing:19.260000px;}
.ws10f{word-spacing:19.584000px;}
.ws136{word-spacing:19.656000px;}
.ws39{word-spacing:19.728000px;}
.wsa5{word-spacing:20.160000px;}
.ws112{word-spacing:20.736000px;}
.wsc4{word-spacing:20.808000px;}
.ws10e{word-spacing:20.880000px;}
.wsaf{word-spacing:20.952000px;}
.ws56{word-spacing:21.384000px;}
.ws124{word-spacing:21.672000px;}
.ws3c{word-spacing:22.032000px;}
.ws3d{word-spacing:22.176000px;}
.wse2{word-spacing:22.464000px;}
.ws11d{word-spacing:23.328000px;}
.wse8{word-spacing:23.760000px;}
.ws137{word-spacing:24.540000px;}
.wsce{word-spacing:24.552000px;}
.ws10c{word-spacing:24.984000px;}
.ws120{word-spacing:25.272000px;}
.wsf0{word-spacing:25.488000px;}
.wsb5{word-spacing:25.776000px;}
.wscf{word-spacing:27.360000px;}
.wsc9{word-spacing:27.648000px;}
.wsca{word-spacing:28.008000px;}
.wse1{word-spacing:28.584000px;}
.ws108{word-spacing:29.898000px;}
.ws41{word-spacing:30.024000px;}
.ws12a{word-spacing:30.240000px;}
.wsf8{word-spacing:30.294000px;}
.ws129{word-spacing:30.528000px;}
.ws37{word-spacing:31.608000px;}
.wse3{word-spacing:31.752000px;}
.ws38{word-spacing:32.472000px;}
.wsa1{word-spacing:32.616000px;}
.wse0{word-spacing:32.688000px;}
.ws111{word-spacing:35.784000px;}
.ws96{word-spacing:37.584000px;}
.ws95{word-spacing:37.728000px;}
.ws101{word-spacing:42.042000px;}
.ws15d{word-spacing:42.540000px;}
.ws15e{word-spacing:42.660000px;}
.ws15f{word-spacing:42.840000px;}
.wsc1{word-spacing:46.251000px;}
.ws6c{word-spacing:59.751000px;}
.ws4f{word-spacing:65.518200px;}
.wsbc{word-spacing:72.514200px;}
.ws100{word-spacing:72.732000px;}
.wsbb{word-spacing:73.698600px;}
.wsff{word-spacing:73.854000px;}
.ws81{word-spacing:82.761600px;}
.ws80{word-spacing:84.457200px;}
.ws94{word-spacing:84.672000px;}
.ws82{word-spacing:85.024800px;}
.ws7f{word-spacing:85.319400px;}
.wsae{word-spacing:85.875000px;}
.wsad{word-spacing:86.521200px;}
.wsc0{word-spacing:90.990000px;}
.ws109{word-spacing:100.122000px;}
.ws50{word-spacing:107.905800px;}
.ws51{word-spacing:109.501800px;}
.ws106{word-spacing:114.510000px;}
.ws6d{word-spacing:116.187600px;}
.ws104{word-spacing:123.948000px;}
.wsc7{word-spacing:129.546000px;}
.ws6e{word-spacing:139.482000px;}
.ws102{word-spacing:159.588000px;}
.ws9f{word-spacing:194.940000px;}
.ws103{word-spacing:197.406000px;}
.wsac{word-spacing:198.131400px;}
.ws107{word-spacing:241.890000px;}
.ws83{word-spacing:269.352000px;}
.wsa9{word-spacing:423.684000px;}
.wsab{word-spacing:436.860000px;}
.wsaa{word-spacing:438.480000px;}
.ws13d{word-spacing:677.640000px;}
._d{margin-left:-33.199200px;}
._c{margin-left:-30.333600px;}
._9{margin-left:-28.058400px;}
._a{margin-left:-26.676000px;}
._36{margin-left:-23.642400px;}
._45{margin-left:-21.506400px;}
._38{margin-left:-20.145600px;}
._35{margin-left:-18.888000px;}
._34{margin-left:-17.306400px;}
._23{margin-left:-16.173600px;}
._25{margin-left:-15.072000px;}
._46{margin-left:-14.044800px;}
._1d{margin-left:-12.926400px;}
._15{margin-left:-11.892000px;}
._47{margin-left:-10.855200px;}
._12{margin-left:-9.854400px;}
._1a{margin-left:-8.445600px;}
._16{margin-left:-7.156800px;}
._10{margin-left:-6.026400px;}
._8{margin-left:-4.872000px;}
._11{margin-left:-3.309600px;}
._5{margin-left:-2.030400px;}
._0{margin-left:-1.020000px;}
._1{width:1.500000px;}
._f{width:2.805600px;}
._13{width:4.375200px;}
._14{width:5.748000px;}
._1b{width:7.250400px;}
._1f{width:8.834400px;}
._24{width:9.871200px;}
._7{width:10.980000px;}
._19{width:12.012000px;}
._6{width:13.320000px;}
._32{width:15.247200px;}
._3e{width:16.435200px;}
._37{width:18.000000px;}
._33{width:22.792800px;}
._31{width:23.836800px;}
._20{width:25.178400px;}
._1c{width:26.296800px;}
._b{width:27.446400px;}
._e{width:28.468800px;}
._21{width:30.127200px;}
._22{width:31.682400px;}
._17{width:33.189600px;}
._18{width:34.389600px;}
._44{width:37.502400px;}
._43{width:39.163200px;}
._48{width:42.331200px;}
._3c{width:99.081600px;}
._3a{width:109.230000px;}
._2f{width:111.024000px;}
._42{width:114.765600px;}
._41{width:115.818000px;}
._40{width:117.342000px;}
._27{width:120.418800px;}
._3d{width:121.755000px;}
._2e{width:124.686000px;}
._28{width:127.464000px;}
._29{width:128.826600px;}
._3f{width:131.004000px;}
._2b{width:165.834000px;}
._2a{width:179.496000px;}
._30{width:193.644000px;}
._26{width:198.780000px;}
._3b{width:228.500400px;}
._2d{width:254.178000px;}
._2c{width:268.110000px;}
._39{width:463.914000px;}
._3{width:765.780000px;}
._4{width:963.180000px;}
._2{width:1005.420000px;}
._1e{width:1068.660000px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.000000px;}
.fs5{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y9{bottom:-0.000036px;}
.y0{bottom:0.000000px;}
.yf9{bottom:0.001500px;}
.y1aa{bottom:0.300000px;}
.ya{bottom:3.299982px;}
.y1db{bottom:4.500000px;}
.y7{bottom:5.100000px;}
.yb{bottom:5.999964px;}
.y1f4{bottom:25.800000px;}
.yba{bottom:28.200000px;}
.y7f{bottom:28.500000px;}
.y3a{bottom:67.800000px;}
.y4{bottom:67.800002px;}
.y1fb{bottom:68.700000px;}
.y143{bottom:84.752550px;}
.y1d7{bottom:90.000000px;}
.y106{bottom:96.618000px;}
.y38{bottom:98.718000px;}
.y17b{bottom:99.300000px;}
.y91{bottom:101.700000px;}
.y15b{bottom:102.000000px;}
.y209{bottom:102.624000px;}
.ybc{bottom:104.100000px;}
.y20a{bottom:105.096000px;}
.y197{bottom:105.300000px;}
.y92{bottom:106.800000px;}
.y7e{bottom:107.100000px;}
.y80{bottom:112.200000px;}
.y15a{bottom:113.118000px;}
.y121{bottom:119.412000px;}
.y105{bottom:120.018000px;}
.y37{bottom:121.812000px;}
.yb9{bottom:122.400000px;}
.y17a{bottom:122.700000px;}
.y196{bottom:123.600000px;}
.y69{bottom:124.206000px;}
.ye7{bottom:124.506000px;}
.y208{bottom:126.024000px;}
.ybb{bottom:127.500000px;}
.y1d4{bottom:128.190000px;}
.y1f9{bottom:132.600000px;}
.y159{bottom:136.212000px;}
.y179{bottom:141.900000px;}
.y231{bottom:142.800000px;}
.y120{bottom:142.812000px;}
.y104{bottom:143.112000px;}
.y178{bottom:144.600000px;}
.y36{bottom:145.212000px;}
.ye6{bottom:147.600000px;}
.y68{bottom:147.606000px;}
.y90{bottom:148.500000px;}
.y207{bottom:149.424000px;}
.y1d3{bottom:151.590000px;}
.y7d{bottom:153.900000px;}
.y1be{bottom:154.536000px;}
.y20e{bottom:159.360000px;}
.y158{bottom:159.612000px;}
.y230{bottom:162.300000px;}
.y11f{bottom:166.212000px;}
.y103{bottom:166.512000px;}
.y35{bottom:168.306000px;}
.yb8{bottom:168.900000px;}
.y195{bottom:170.100000px;}
.ye5{bottom:171.000000px;}
.y67{bottom:171.006000px;}
.yad{bottom:171.849450px;}
.y206{bottom:172.518000px;}
.y1d2{bottom:174.990000px;}
.y1ed{bottom:175.200000px;}
.y1bd{bottom:177.936000px;}
.y22f{bottom:181.800000px;}
.y20d{bottom:182.760000px;}
.y157{bottom:183.012000px;}
.y11e{bottom:189.306000px;}
.y102{bottom:189.912000px;}
.y177{bottom:191.400000px;}
.yd0{bottom:191.592750px;}
.ye4{bottom:191.700000px;}
.y34{bottom:191.706000px;}
.ya2{bottom:192.801450px;}
.y1a7{bottom:193.718850px;}
.y66{bottom:194.100000px;}
.y205{bottom:195.918000px;}
.y1f7{bottom:196.800000px;}
.y1d1{bottom:198.084000px;}
.ye2{bottom:200.700000px;}
.y22e{bottom:201.000000px;}
.y1bc{bottom:201.336000px;}
.ye3{bottom:205.800000px;}
.y20c{bottom:205.854000px;}
.y156{bottom:206.106000px;}
.yc9{bottom:212.558250px;}
.y11d{bottom:212.706000px;}
.y101{bottom:213.006000px;}
.y19f{bottom:214.684350px;}
.y65{bottom:214.800000px;}
.y33{bottom:215.106000px;}
.y1eb{bottom:218.100000px;}
.y204{bottom:219.318000px;}
.y98{bottom:220.179450px;}
.y22d{bottom:220.500000px;}
.ya3{bottom:220.948950px;}
.y1d0{bottom:221.484000px;}
.y1bb{bottom:224.430000px;}
.y64{bottom:229.254000px;}
.y155{bottom:229.506000px;}
.y11c{bottom:236.106000px;}
.y100{bottom:236.406000px;}
.y32{bottom:238.200000px;}
.y22c{bottom:240.000000px;}
.yc3{bottom:241.259250px;}
.y99{bottom:241.360950px;}
.yca{bottom:242.015250px;}
.ya4{bottom:242.130450px;}
.y203{bottom:242.412000px;}
.y1cf{bottom:244.884000px;}
.y198{bottom:246.125850px;}
.y1a0{bottom:246.881850px;}
.ye1{bottom:247.500000px;}
.y1ba{bottom:247.830000px;}
.y82{bottom:252.283500px;}
.y63{bottom:252.654000px;}
.y154{bottom:252.906000px;}
.y11b{bottom:259.200000px;}
.yff{bottom:259.806000px;}
.y1f5{bottom:260.700000px;}
.y31{bottom:261.600000px;}
.y9a{bottom:262.542450px;}
.ya5{bottom:263.311950px;}
.yc4{bottom:265.059750px;}
.y202{bottom:265.812000px;}
.ycb{bottom:265.815750px;}
.y1ce{bottom:267.978000px;}
.y18d{bottom:270.673050px;}
.y1b9{bottom:271.230000px;}
.yf5{bottom:271.667850px;}
.y199{bottom:275.407350px;}
.y62{bottom:275.748000px;}
.y153{bottom:276.000000px;}
.y1a1{bottom:276.163350px;}
.y22b{bottom:278.700000px;}
.y11a{bottom:282.600000px;}
.yfe{bottom:282.900000px;}
.y9b{bottom:283.723950px;}
.ya6{bottom:284.493450px;}
.y30{bottom:285.000000px;}
.yc5{bottom:288.860250px;}
.y201{bottom:288.906000px;}
.ycc{bottom:289.616250px;}
.y1cd{bottom:291.378000px;}
.yee{bottom:292.660350px;}
.y1b8{bottom:294.324000px;}
.y22a{bottom:298.200000px;}
.y61{bottom:299.148000px;}
.y152{bottom:299.400000px;}
.y19a{bottom:304.688850px;}
.y2f{bottom:304.799996px;}
.y9c{bottom:304.905450px;}
.y1a2{bottom:305.444850px;}
.ya7{bottom:305.674950px;}
.y119{bottom:306.000000px;}
.yfd{bottom:306.300000px;}
.y200{bottom:312.306000px;}
.yc6{bottom:312.660750px;}
.ycd{bottom:313.416750px;}
.y1cc{bottom:314.778000px;}
.y2e{bottom:315.899995px;}
.y229{bottom:317.700000px;}
.y1b7{bottom:317.724000px;}
.y18c{bottom:317.923050px;}
.y151{bottom:318.600000px;}
.y150{bottom:321.600000px;}
.y60{bottom:322.242000px;}
.y118{bottom:324.900000px;}
.ye8{bottom:325.559850px;}
.y9d{bottom:326.086950px;}
.yef{bottom:326.288850px;}
.yfc{bottom:326.700000px;}
.ya8{bottom:326.856450px;}
.y116{bottom:327.900000px;}
.y117{bottom:333.000000px;}
.y19b{bottom:333.970350px;}
.y81{bottom:334.404000px;}
.y1a3{bottom:334.726350px;}
.y1ff{bottom:335.706000px;}
.yfa{bottom:336.000000px;}
.yc7{bottom:336.461250px;}
.y228{bottom:336.900000px;}
.yce{bottom:337.217250px;}
.y1cb{bottom:337.872000px;}
.y2d{bottom:339.299996px;}
.y1b6{bottom:341.124000px;}
.y5f{bottom:345.642000px;}
.y9e{bottom:347.268450px;}
.ya9{bottom:348.037950px;}
.y227{bottom:356.400000px;}
.ye9{bottom:357.716850px;}
.yf0{bottom:358.445850px;}
.y1fe{bottom:358.800000px;}
.y2c{bottom:359.099991px;}
.yc8{bottom:360.261750px;}
.ycf{bottom:361.017750px;}
.y1ca{bottom:361.272000px;}
.y19c{bottom:363.251850px;}
.y1a4{bottom:364.007850px;}
.y1b5{bottom:364.218000px;}
.yfb{bottom:364.500000px;}
.y14f{bottom:368.100000px;}
.y9f{bottom:368.449950px;}
.y5e{bottom:369.042000px;}
.yaa{bottom:369.219450px;}
.y2b{bottom:370.236036px;}
.y115{bottom:374.400000px;}
.y142{bottom:375.000000px;}
.y226{bottom:375.900000px;}
.y18e{bottom:379.793550px;}
.y1fd{bottom:382.200000px;}
.yf8{bottom:382.798500px;}
.y1c9{bottom:384.366000px;}
.y1b4{bottom:387.618000px;}
.y141{bottom:388.260600px;}
.ya0{bottom:389.631450px;}
.yea{bottom:389.873850px;}
.yab{bottom:390.400950px;}
.yf1{bottom:390.602850px;}
.y83{bottom:391.779000px;}
.y5d{bottom:392.136000px;}
.y19d{bottom:392.533350px;}
.y1a5{bottom:393.289350px;}
.y2a{bottom:393.636036px;}
.y225{bottom:395.100000px;}
.y18f{bottom:397.789050px;}
.yd1{bottom:402.048300px;}
.y1fc{bottom:402.900000px;}
.y140{bottom:404.744100px;}
.y112{bottom:406.320750px;}
.y1c8{bottom:407.766000px;}
.y1b3{bottom:410.712000px;}
.ya1{bottom:410.812950px;}
.yac{bottom:411.582450px;}
.y1ea{bottom:412.800000px;}
.y224{bottom:414.600000px;}
.y5c{bottom:415.536000px;}
.y29{bottom:417.036036px;}
.y19e{bottom:421.814850px;}
.yeb{bottom:422.030850px;}
.y136{bottom:422.253600px;}
.y1a6{bottom:422.570850px;}
.yf2{bottom:422.759850px;}
.y190{bottom:426.749850px;}
.y10c{bottom:427.313250px;}
.yb7{bottom:429.900000px;}
.y1c7{bottom:431.166000px;}
.y223{bottom:434.100000px;}
.y1b2{bottom:434.112000px;}
.y1e7{bottom:438.589500px;}
.y5b{bottom:438.936000px;}
.y28{bottom:440.130036px;}
.y84{bottom:440.149500px;}
.y134{bottom:440.964600px;}
.yb6{bottom:444.306000px;}
.y137{bottom:444.623100px;}
.yae{bottom:451.278150px;}
.y222{bottom:453.300000px;}
.yec{bottom:454.187850px;}
.y176{bottom:454.200000px;}
.y1c6{bottom:454.260000px;}
.yf3{bottom:454.916850px;}
.y135{bottom:456.624600px;}
.y1b1{bottom:457.512000px;}
.y162{bottom:457.517550px;}
.y1e6{bottom:459.891000px;}
.y1f3{bottom:459.900000px;}
.y125{bottom:461.093100px;}
.y5a{bottom:462.030000px;}
.y27{bottom:463.530036px;}
.y107{bottom:463.938750px;}
.y10d{bottom:464.667750px;}
.y175{bottom:465.330000px;}
.y123{bottom:465.561600px;}
.y131{bottom:465.575100px;}
.y1a8{bottom:466.348650px;}
.y138{bottom:466.992600px;}
.yb5{bottom:467.706000px;}
.y12f{bottom:470.057100px;}
.y85{bottom:470.230800px;}
.y221{bottom:472.800000px;}
.y1c5{bottom:477.660000px;}
.y8f{bottom:478.800000px;}
.y1b0{bottom:480.606000px;}
.y124{bottom:481.221600px;}
.y1e5{bottom:481.489500px;}
.y1f2{bottom:481.495500px;}
.y59{bottom:485.430000px;}
.yed{bottom:486.344850px;}
.y26{bottom:486.930036px;}
.yf4{bottom:487.073850px;}
.y133{bottom:487.931100px;}
.y174{bottom:488.424000px;}
.y139{bottom:489.362100px;}
.y8e{bottom:489.606000px;}
.yb4{bottom:491.106000px;}
.y220{bottom:492.300000px;}
.y194{bottom:492.900000px;}
.y7c{bottom:498.300000px;}
.y193{bottom:501.060000px;}
.y130{bottom:501.363600px;}
.y1e4{bottom:502.791000px;}
.y1f1{bottom:502.797000px;}
.y108{bottom:503.547750px;}
.y1af{bottom:504.006000px;}
.y10e{bottom:504.276750px;}
.y129{bottom:505.832100px;}
.y126{bottom:508.059600px;}
.y58{bottom:508.830000px;}
.y25{bottom:510.024036px;}
.y13a{bottom:511.731600px;}
.y21f{bottom:511.800000px;}
.y173{bottom:511.824000px;}
.y7b{bottom:512.430000px;}
.y8d{bottom:513.006000px;}
.yb3{bottom:514.200000px;}
.y122{bottom:519.237600px;}
.y163{bottom:522.763050px;}
.y1e3{bottom:524.092500px;}
.y1f0{bottom:524.098500px;}
.y1fa{bottom:524.100000px;}
.y192{bottom:524.154000px;}
.y1ae{bottom:527.406000px;}
.y132{bottom:530.429100px;}
.y21e{bottom:531.000000px;}
.y57{bottom:531.924000px;}
.yf6{bottom:532.342800px;}
.y12a{bottom:532.670100px;}
.y24{bottom:533.424036px;}
.y13b{bottom:534.101100px;}
.yb2{bottom:534.900000px;}
.y172{bottom:535.224000px;}
.y7a{bottom:535.830000px;}
.y8c{bottom:536.406000px;}
.y12b{bottom:541.620600px;}
.y109{bottom:543.156750px;}
.y10f{bottom:543.885750px;}
.y1e2{bottom:545.394000px;}
.y1ef{bottom:545.400000px;}
.y191{bottom:547.554000px;}
.yb1{bottom:549.300000px;}
.y1ad{bottom:550.500000px;}
.y128{bottom:552.798600px;}
.y56{bottom:555.324000px;}
.y13c{bottom:556.470600px;}
.y23{bottom:556.518036px;}
.y171{bottom:558.318000px;}
.y79{bottom:559.230000px;}
.y8b{bottom:559.500000px;}
.ye0{bottom:559.800000px;}
.y1e1{bottom:566.695500px;}
.y1ee{bottom:566.700000px;}
.y21d{bottom:570.000000px;}
.y127{bottom:570.686100px;}
.ydf{bottom:570.954000px;}
.y164{bottom:571.133550px;}
.y1ac{bottom:571.200000px;}
.yb0{bottom:572.394000px;}
.y55{bottom:578.418000px;}
.y13d{bottom:578.840100px;}
.y8a{bottom:579.600000px;}
.y22{bottom:579.918036px;}
.y1ab{bottom:580.500000px;}
.y170{bottom:581.718000px;}
.y12e{bottom:581.877600px;}
.y78{bottom:582.324000px;}
.y10a{bottom:582.765750px;}
.y110{bottom:583.494750px;}
.y1e0{bottom:587.997000px;}
.y1f8{bottom:588.000000px;}
.y12c{bottom:588.587100px;}
.y21c{bottom:589.200000px;}
.y89{bottom:590.700000px;}
.yde{bottom:594.048000px;}
.y13e{bottom:601.209600px;}
.y54{bottom:601.818000px;}
.y21{bottom:603.318036px;}
.y1a9{bottom:603.600000px;}
.y16f{bottom:604.812000px;}
.y77{bottom:605.724000px;}
.y21b{bottom:608.700000px;}
.y1df{bottom:609.595500px;}
.y1ec{bottom:609.600000px;}
.y12d{bottom:610.956600px;}
.y88{bottom:613.794000px;}
.ydd{bottom:617.448000px;}
.y10b{bottom:622.374750px;}
.y111{bottom:623.103750px;}
.y13f{bottom:623.579100px;}
.y53{bottom:625.218000px;}
.y20{bottom:626.412036px;}
.y21a{bottom:628.200000px;}
.y16e{bottom:628.212000px;}
.y76{bottom:629.124000px;}
.y1de{bottom:630.897000px;}
.y87{bottom:632.100000px;}
.ydc{bottom:640.848000px;}
.y219{bottom:647.400000px;}
.y52{bottom:648.312000px;}
.y1f{bottom:649.812036px;}
.y16d{bottom:651.612000px;}
.y1e9{bottom:652.182000px;}
.y1dd{bottom:652.198500px;}
.y1f6{bottom:652.200000px;}
.y75{bottom:652.218000px;}
.y144{bottom:652.685550px;}
.ydb{bottom:663.942000px;}
.y218{bottom:666.900000px;}
.y165{bottom:670.969350px;}
.y51{bottom:671.712000px;}
.y113{bottom:672.095550px;}
.y1e{bottom:673.212036px;}
.y1e8{bottom:673.483500px;}
.y1dc{bottom:673.500000px;}
.y16c{bottom:674.706000px;}
.y74{bottom:675.618000px;}
.y114{bottom:679.200000px;}
.y1c4{bottom:682.589250px;}
.y217{bottom:686.400000px;}
.yda{bottom:687.342000px;}
.y1c2{bottom:690.174000px;}
.ybe{bottom:690.261450px;}
.y1d6{bottom:691.200000px;}
.y50{bottom:695.112000px;}
.y1d{bottom:696.306036px;}
.y14e{bottom:697.500000px;}
.y1c3{bottom:697.587750px;}
.y16b{bottom:698.106000px;}
.y73{bottom:699.018000px;}
.yf7{bottom:699.600000px;}
.y14d{bottom:705.606000px;}
.y216{bottom:705.900000px;}
.yd9{bottom:710.436000px;}
.ybf{bottom:715.006950px;}
.y1da{bottom:716.997000px;}
.y4f{bottom:718.206000px;}
.y1c{bottom:719.706036px;}
.y16a{bottom:721.506000px;}
.y72{bottom:722.112000px;}
.y215{bottom:725.100000px;}
.y14c{bottom:728.700000px;}
.yd8{bottom:733.836000px;}
.y94{bottom:736.231950px;}
.y1d9{bottom:738.298500px;}
.y1d5{bottom:738.300000px;}
.y4e{bottom:741.606000px;}
.y1b{bottom:743.106036px;}
.y169{bottom:744.600000px;}
.y71{bottom:745.512000px;}
.y14b{bottom:752.100000px;}
.yd7{bottom:757.236000px;}
.y1bf{bottom:757.484850px;}
.y1d8{bottom:759.600000px;}
.y214{bottom:764.100000px;}
.y4d{bottom:765.006000px;}
.y1a{bottom:766.200036px;}
.y168{bottom:768.000000px;}
.y70{bottom:768.912000px;}
.y95{bottom:769.981950px;}
.y14a{bottom:775.500000px;}
.yd6{bottom:780.330000px;}
.y213{bottom:783.300000px;}
.y4c{bottom:788.100000px;}
.y19{bottom:789.600036px;}
.y6f{bottom:792.006000px;}
.y167{bottom:793.800000px;}
.y149{bottom:794.400000px;}
.y147{bottom:797.400000px;}
.y148{bottom:802.500000px;}
.yc0{bottom:802.756950px;}
.y212{bottom:802.800000px;}
.yd5{bottom:803.730000px;}
.ybd{bottom:807.265950px;}
.y18{bottom:809.699982px;}
.y20b{bottom:809.700000px;}
.y4b{bottom:811.500000px;}
.y6e{bottom:815.406000px;}
.y17{bottom:819.600036px;}
.y211{bottom:822.300000px;}
.yd4{bottom:827.130000px;}
.y4a{bottom:834.900000px;}
.y6d{bottom:838.500000px;}
.y16{bottom:839.100036px;}
.y166{bottom:840.600000px;}
.yc1{bottom:842.136450px;}
.y146{bottom:844.200000px;}
.yd3{bottom:850.224000px;}
.y49{bottom:854.700000px;}
.y15{bottom:856.199982px;}
.y93{bottom:857.731950px;}
.y210{bottom:858.000000px;}
.y6c{bottom:861.900000px;}
.y18a{bottom:864.240600px;}
.y48{bottom:865.800000px;}
.y14{bottom:866.399964px;}
.yd2{bottom:873.624000px;}
.yc2{bottom:877.842750px;}
.y20f{bottom:879.600000px;}
.y6b{bottom:882.600000px;}
.y182{bottom:885.206100px;}
.y13{bottom:885.600036px;}
.y1c1{bottom:888.798600px;}
.y47{bottom:889.200000px;}
.y96{bottom:889.227450px;}
.y6a{bottom:897.024000px;}
.y23d{bottom:903.300000px;}
.y1c0{bottom:903.797100px;}
.yaf{bottom:905.700000px;}
.y12{bottom:906.000000px;}
.y46{bottom:909.000000px;}
.y17c{bottom:919.806600px;}
.y45{bottom:920.118000px;}
.y183{bottom:920.576100px;}
.y23c{bottom:924.300000px;}
.y15d{bottom:926.784000px;}
.y97{bottom:928.308750px;}
.y11{bottom:929.406006px;}
.y44{bottom:943.518000px;}
.y23b{bottom:944.097000px;}
.y10{bottom:952.500000px;}
.y17d{bottom:955.446600px;}
.y86{bottom:955.800000px;}
.y184{bottom:956.216100px;}
.y15e{bottom:961.654500px;}
.y23a{bottom:965.398500px;}
.y43{bottom:966.612000px;}
.yf{bottom:976.493958px;}
.y239{bottom:986.700000px;}
.y42{bottom:990.012000px;}
.y17e{bottom:991.086600px;}
.y185{bottom:991.856100px;}
.ye{bottom:1003.794018px;}
.y238{bottom:1012.500000px;}
.y41{bottom:1013.412000px;}
.y187{bottom:1019.247600px;}
.y15f{bottom:1021.284000px;}
.y17f{bottom:1026.726600px;}
.y15c{bottom:1028.034000px;}
.yd{bottom:1030.800018px;}
.y186{bottom:1035.731100px;}
.y40{bottom:1036.506000px;}
.y237{bottom:1055.398500px;}
.yc{bottom:1058.100036px;}
.y3f{bottom:1059.906000px;}
.y160{bottom:1061.784000px;}
.y180{bottom:1062.366600px;}
.y188{bottom:1063.122600px;}
.y236{bottom:1076.700000px;}
.y8{bottom:1079.400000px;}
.y3e{bottom:1083.306000px;}
.y161{bottom:1095.235800px;}
.y235{bottom:1097.700000px;}
.y181{bottom:1098.006600px;}
.y189{bottom:1098.762600px;}
.y6{bottom:1103.400000px;}
.y3d{bottom:1106.400000px;}
.y234{bottom:1117.200000px;}
.y145{bottom:1121.700000px;}
.y5{bottom:1129.199982px;}
.y3c{bottom:1129.800000px;}
.y233{bottom:1136.700000px;}
.y3{bottom:1144.800018px;}
.y18b{bottom:1145.701950px;}
.y3b{bottom:1153.200000px;}
.y232{bottom:1156.200000px;}
.y2{bottom:1164.300018px;}
.y39{bottom:1183.500000px;}
.y1{bottom:1183.800018px;}
.h1d{height:10.092000px;}
.he{height:20.184000px;}
.h27{height:23.100000px;}
.h5{height:23.401500px;}
.h8{height:23.998500px;}
.h4{height:30.276000px;}
.h12{height:36.914062px;}
.h16{height:36.966797px;}
.h14{height:38.759766px;}
.h10{height:40.368000px;}
.h18{height:46.500000px;}
.h22{height:46.501500px;}
.h3{height:46.680000px;}
.h1b{height:46.798500px;}
.h11{height:46.800000px;}
.h7{height:47.400000px;}
.h28{height:49.218750px;}
.hd{height:50.460000px;}
.h2{height:52.200000px;}
.h2c{height:55.506000px;}
.h29{height:56.016000px;}
.h2a{height:57.420000px;}
.hc{height:60.552000px;}
.h2e{height:62.578125px;}
.h6{height:62.640000px;}
.h1f{height:65.597766px;}
.ha{height:70.644000px;}
.h9{height:70.664062px;}
.hb{height:73.080000px;}
.h15{height:74.777766px;}
.h19{height:75.093750px;}
.h2b{height:106.800000px;}
.h17{height:258.600000px;}
.h24{height:261.000000px;}
.h21{height:276.600000px;}
.h2d{height:277.500000px;}
.h20{height:303.298500px;}
.h1e{height:303.900000px;}
.h1a{height:310.500000px;}
.h1c{height:315.001500px;}
.h25{height:321.900000px;}
.h13{height:328.500000px;}
.h23{height:330.600000px;}
.hf{height:342.000000px;}
.h26{height:346.500000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w8{width:149.101500px;}
.w9{width:414.600000px;}
.w2{width:478.200000px;}
.w7{width:696.600000px;}
.w6{width:709.200000px;}
.w5{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.099997px;}
.x78{left:31.874850px;}
.xa1{left:36.300000px;}
.x1f{left:40.800000px;}
.x15{left:65.700000px;}
.x7b{left:67.800000px;}
.x7a{left:69.900000px;}
.x56{left:73.500000px;}
.x4a{left:75.300000px;}
.x39{left:76.500000px;}
.x3{left:79.800000px;}
.x83{left:81.900000px;}
.x84{left:84.000000px;}
.x65{left:89.400000px;}
.x1{left:91.500000px;}
.x11{left:95.700000px;}
.x77{left:99.300000px;}
.x9d{left:100.500000px;}
.x31{left:109.304100px;}
.x85{left:111.900000px;}
.x46{left:116.704200px;}
.xa{left:119.996997px;}
.x8{left:123.000018px;}
.x6{left:125.099991px;}
.x59{left:128.400000px;}
.x9c{left:134.736000px;}
.x9{left:136.796997px;}
.x73{left:139.319250px;}
.x13{left:144.600000px;}
.x72{left:146.163750px;}
.x45{left:153.667200px;}
.x5a{left:155.400000px;}
.x25{left:158.103600px;}
.x1d{left:163.494000px;}
.x33{left:164.897100px;}
.x30{left:166.922100px;}
.x63{left:168.167400px;}
.xc{left:172.500000px;}
.xf{left:176.388000px;}
.x62{left:177.725400px;}
.x2e{left:180.921600px;}
.x34{left:185.795100px;}
.x47{left:188.942700px;}
.x2f{left:191.033100px;}
.x61{left:200.054400px;}
.x66{left:202.200000px;}
.x12{left:208.518000px;}
.x58{left:213.300000px;}
.x37{left:216.006000px;}
.xa2{left:218.700000px;}
.x6c{left:219.941250px;}
.x8b{left:225.280500px;}
.x32{left:226.538100px;}
.x60{left:228.930900px;}
.x53{left:229.988250px;}
.x57{left:234.000000px;}
.x8e{left:235.122000px;}
.x6e{left:239.880750px;}
.x20{left:242.400000px;}
.x2d{left:244.898100px;}
.x8c{left:246.678000px;}
.xd{left:249.299995px;}
.x51{left:250.346250px;}
.x50{left:255.044250px;}
.x2c{left:260.220600px;}
.x1e{left:263.394000px;}
.x8d{left:268.237500px;}
.xb{left:273.599991px;}
.x44{left:277.732200px;}
.x3a{left:283.800000px;}
.x5f{left:293.366400px;}
.x74{left:297.201750px;}
.x16{left:298.500000px;}
.x40{left:300.948000px;}
.x4b{left:303.600000px;}
.x9a{left:307.733850px;}
.x52{left:312.527250px;}
.x6a{left:322.824750px;}
.x23{left:332.002350px;}
.x2a{left:333.377100px;}
.x26{left:339.236100px;}
.x3d{left:342.208350px;}
.x2b{left:350.981100px;}
.x19{left:355.814700px;}
.x49{left:359.647950px;}
.x8f{left:361.822950px;}
.x35{left:362.835300px;}
.x95{left:365.427300px;}
.x7e{left:367.216200px;}
.x81{left:371.714700px;}
.xe{left:376.349091px;}
.x71{left:385.950750px;}
.x24{left:387.311850px;}
.x3e{left:389.336850px;}
.x1b{left:391.697700px;}
.x1a{left:395.072700px;}
.x82{left:396.367650px;}
.x8a{left:398.485500px;}
.x7f{left:401.965200px;}
.x4f{left:405.380250px;}
.x3f{left:414.082350px;}
.x90{left:415.472700px;}
.x98{left:416.588400px;}
.x42{left:420.764700px;}
.x5e{left:423.924900px;}
.x67{left:425.708250px;}
.x75{left:438.128250px;}
.x94{left:440.527800px;}
.x21{left:442.432350px;}
.x2{left:446.400009px;}
.x3b{left:447.832350px;}
.x48{left:450.181200px;}
.x7c{left:451.469700px;}
.x64{left:459.524400px;}
.x6d{left:465.587250px;}
.x10{left:473.099991px;}
.x27{left:474.182100px;}
.x7d{left:480.845700px;}
.x22{left:486.131850px;}
.x3c{left:488.453850px;}
.x5d{left:489.561900px;}
.x80{left:493.214700px;}
.x17{left:502.800000px;}
.x18{left:514.439700px;}
.x54{left:521.561250px;}
.x93{left:529.371300px;}
.x96{left:534.703800px;}
.x99{left:540.747150px;}
.x4e{left:545.915250px;}
.x68{left:548.531250px;}
.x5{left:558.000000px;}
.x6b{left:568.470750px;}
.x41{left:593.456700px;}
.x5c{left:594.578400px;}
.x6f{left:608.349750px;}
.x88{left:611.056500px;}
.x92{left:615.636300px;}
.x89{left:625.015500px;}
.x9e{left:633.300000px;}
.xa3{left:641.400000px;}
.x9f{left:643.500000px;}
.x4d{left:644.667750px;}
.xa0{left:654.307500px;}
.x97{left:658.800000px;}
.x29{left:662.048100px;}
.x87{left:669.066000px;}
.x69{left:671.354250px;}
.x76{left:682.586250px;}
.x7{left:685.800000px;}
.x43{left:690.332700px;}
.x55{left:692.100000px;}
.x38{left:705.600000px;}
.x79{left:710.100000px;}
.x14{left:712.200000px;}
.x28{left:714.846600px;}
.x91{left:721.435800px;}
.x86{left:729.586500px;}
.x70{left:731.172750px;}
.x4c{left:734.604750px;}
.x5b{left:738.798900px;}
.x9b{left:748.536000px;}
.x1c{left:777.600000px;}
.x36{left:789.000000px;}
@media print{
.v5{vertical-align:-23.856000pt;}
.v7{vertical-align:-12.000000pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.199872pt;}
.v1{vertical-align:21.311851pt;}
.v6{vertical-align:23.856000pt;}
.v3{vertical-align:32.016000pt;}
.ls41{letter-spacing:-7.872000pt;}
.ls44{letter-spacing:-6.848000pt;}
.ls86{letter-spacing:-6.400000pt;}
.ls51{letter-spacing:-5.888000pt;}
.ls43{letter-spacing:-5.760000pt;}
.ls4f{letter-spacing:-5.184000pt;}
.ls40{letter-spacing:-4.928000pt;}
.ls7e{letter-spacing:-4.672000pt;}
.ls82{letter-spacing:-4.533333pt;}
.ls50{letter-spacing:-4.288000pt;}
.ls81{letter-spacing:-3.946667pt;}
.ls84{letter-spacing:-3.466667pt;}
.ls5d{letter-spacing:-3.200000pt;}
.ls29{letter-spacing:-2.176000pt;}
.ls30{letter-spacing:-2.112000pt;}
.ls72{letter-spacing:-1.664000pt;}
.ls2a{letter-spacing:-1.600000pt;}
.ls71{letter-spacing:-1.536000pt;}
.ls42{letter-spacing:-1.408000pt;}
.ls1b{letter-spacing:-1.216000pt;}
.ls24{letter-spacing:-1.152000pt;}
.ls67{letter-spacing:-1.114667pt;}
.ls55{letter-spacing:-1.088000pt;}
.ls2e{letter-spacing:-1.024000pt;}
.ls5c{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.768000pt;}
.ls6b{letter-spacing:-0.704000pt;}
.ls33{letter-spacing:-0.672000pt;}
.ls31{letter-spacing:-0.624000pt;}
.ls85{letter-spacing:-0.586667pt;}
.ls3c{letter-spacing:-0.576000pt;}
.ls63{letter-spacing:-0.528000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls8b{letter-spacing:-0.469333pt;}
.ls28{letter-spacing:-0.448000pt;}
.ls39{letter-spacing:-0.432000pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.373333pt;}
.ls64{letter-spacing:-0.352000pt;}
.ls3a{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.325333pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls62{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.240000pt;}
.ls69{letter-spacing:-0.234667pt;}
.ls87{letter-spacing:-0.213333pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls6d{letter-spacing:-0.176000pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.149333pt;}
.ls32{letter-spacing:-0.144000pt;}
.ls4c{letter-spacing:-0.128000pt;}
.ls65{letter-spacing:-0.117333pt;}
.ls54{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls6c{letter-spacing:-0.058667pt;}
.ls80{letter-spacing:-0.053333pt;}
.ls47{letter-spacing:-0.048000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.048000pt;}
.ls7a{letter-spacing:0.053333pt;}
.ls61{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.074667pt;}
.lsd{letter-spacing:0.106667pt;}
.ls21{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls7f{letter-spacing:0.213333pt;}
.ls5f{letter-spacing:0.234667pt;}
.ls20{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.288000pt;}
.ls6a{letter-spacing:0.293333pt;}
.ls6{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.326400pt;}
.ls4d{letter-spacing:0.336000pt;}
.ls68{letter-spacing:0.352000pt;}
.ls8{letter-spacing:0.358400pt;}
.ls49{letter-spacing:0.364800pt;}
.lsb{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.405328pt;}
.ls66{letter-spacing:0.410667pt;}
.ls73{letter-spacing:0.416000pt;}
.ls83{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.428800pt;}
.ls5{letter-spacing:0.448000pt;}
.ls53{letter-spacing:0.480000pt;}
.ls2b{letter-spacing:0.512000pt;}
.ls59{letter-spacing:0.576000pt;}
.ls3e{letter-spacing:0.620800pt;}
.ls56{letter-spacing:0.640000pt;}
.ls60{letter-spacing:0.665600pt;}
.ls3d{letter-spacing:0.672000pt;}
.ls3b{letter-spacing:0.720000pt;}
.ls78{letter-spacing:0.800000pt;}
.ls4b{letter-spacing:1.024000pt;}
.ls77{letter-spacing:1.061333pt;}
.ls7d{letter-spacing:1.066667pt;}
.ls70{letter-spacing:1.472000pt;}
.ls88{letter-spacing:1.760000pt;}
.ls23{letter-spacing:2.112000pt;}
.ls7c{letter-spacing:2.826667pt;}
.ls37{letter-spacing:3.200000pt;}
.ls7b{letter-spacing:3.893333pt;}
.ls1e{letter-spacing:4.224000pt;}
.ls9{letter-spacing:5.312000pt;}
.ls79{letter-spacing:6.026667pt;}
.ls22{letter-spacing:6.400000pt;}
.ls26{letter-spacing:7.424000pt;}
.ls2c{letter-spacing:8.512000pt;}
.ls27{letter-spacing:9.600000pt;}
.lsc{letter-spacing:10.624000pt;}
.ls5a{letter-spacing:11.712000pt;}
.ls6e{letter-spacing:12.800000pt;}
.ls58{letter-spacing:13.824000pt;}
.ls35{letter-spacing:14.912000pt;}
.ls52{letter-spacing:16.000000pt;}
.ls6f{letter-spacing:17.024000pt;}
.ls74{letter-spacing:19.200000pt;}
.ls76{letter-spacing:20.373333pt;}
.ls1c{letter-spacing:24.512000pt;}
.ls48{letter-spacing:28.096000pt;}
.lsa{letter-spacing:29.824000pt;}
.ls89{letter-spacing:38.026667pt;}
.ls8a{letter-spacing:40.533333pt;}
.ls75{letter-spacing:82.496000pt;}
.ls4a{letter-spacing:123.408000pt;}
.ls57{letter-spacing:129.024000pt;}
.ls5b{letter-spacing:138.768000pt;}
.ls36{letter-spacing:172.128000pt;}
.ls4e{letter-spacing:196.848000pt;}
.ls3f{letter-spacing:263.040000pt;}
.ls5e{letter-spacing:584.613333pt;}
.ls1{letter-spacing:752.693333pt;}
.ls3{letter-spacing:777.226667pt;}
.ls2{letter-spacing:1010.826667pt;}
.ls25{letter-spacing:1033.226667pt;}
.ls0{letter-spacing:1186.826667pt;}
.ws92{word-spacing:-64.000000pt;}
.ws4e{word-spacing:-48.192000pt;}
.ws1a{word-spacing:-24.512000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws12c{word-spacing:-17.280000pt;}
.ws9{word-spacing:-17.216000pt;}
.ws4{word-spacing:-17.088000pt;}
.ws4d{word-spacing:-17.024000pt;}
.ws93{word-spacing:-16.960000pt;}
.ws9e{word-spacing:-16.832000pt;}
.wsd0{word-spacing:-16.768000pt;}
.ws9d{word-spacing:-16.704000pt;}
.ws6a{word-spacing:-16.640000pt;}
.ws31{word-spacing:-16.576000pt;}
.ws2{word-spacing:-16.384000pt;}
.wsc6{word-spacing:-16.320000pt;}
.wsb6{word-spacing:-16.000000pt;}
.wsec{word-spacing:-15.957333pt;}
.ws8{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.wsea{word-spacing:-15.722667pt;}
.wsa{word-spacing:-15.680000pt;}
.wseb{word-spacing:-15.664000pt;}
.wsed{word-spacing:-15.546667pt;}
.wsdd{word-spacing:-15.488000pt;}
.ws15c{word-spacing:-15.429333pt;}
.ws10b{word-spacing:-15.424000pt;}
.ws15b{word-spacing:-15.194667pt;}
.ws134{word-spacing:-15.040000pt;}
.wsc3{word-spacing:-14.912000pt;}
.wse9{word-spacing:-14.901333pt;}
.ws15a{word-spacing:-14.549333pt;}
.ws1{word-spacing:-14.346667pt;}
.ws12f{word-spacing:-14.240000pt;}
.wsd1{word-spacing:-14.208000pt;}
.ws130{word-spacing:-14.186667pt;}
.ws6{word-spacing:-14.080000pt;}
.ws133{word-spacing:-14.026667pt;}
.ws12e{word-spacing:-13.973333pt;}
.ws131{word-spacing:-13.866667pt;}
.wsc2{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.813333pt;}
.ws132{word-spacing:-13.653333pt;}
.ws12d{word-spacing:-13.066667pt;}
.ws159{word-spacing:-13.013333pt;}
.ws10a{word-spacing:-12.800000pt;}
.ws122{word-spacing:-11.712000pt;}
.ws6f{word-spacing:-11.568000pt;}
.ws72{word-spacing:-11.520000pt;}
.wsd2{word-spacing:-11.232000pt;}
.ws6b{word-spacing:-11.040000pt;}
.wsc8{word-spacing:-10.800000pt;}
.wsd3{word-spacing:-10.704000pt;}
.ws115{word-spacing:-10.624000pt;}
.wsd4{word-spacing:-10.608000pt;}
.ws70{word-spacing:-10.416000pt;}
.ws71{word-spacing:-10.176000pt;}
.ws5{word-spacing:-9.968000pt;}
.ws42{word-spacing:-8.512000pt;}
.wsa8{word-spacing:-7.424000pt;}
.ws2c{word-spacing:-6.400000pt;}
.ws22{word-spacing:-4.224000pt;}
.ws2f{word-spacing:-3.904000pt;}
.wsef{word-spacing:-3.776000pt;}
.ws141{word-spacing:-3.680000pt;}
.ws117{word-spacing:-3.456000pt;}
.ws27{word-spacing:-3.392000pt;}
.ws76{word-spacing:-3.200000pt;}
.ws43{word-spacing:-3.136000pt;}
.ws118{word-spacing:-3.072000pt;}
.ws44{word-spacing:-3.008000pt;}
.ws29{word-spacing:-2.944000pt;}
.ws28{word-spacing:-2.816000pt;}
.wsb7{word-spacing:-2.688000pt;}
.ws3f{word-spacing:-2.368000pt;}
.wsf6{word-spacing:-2.346667pt;}
.wsd6{word-spacing:-2.304000pt;}
.ws2d{word-spacing:-2.112000pt;}
.ws14f{word-spacing:-2.080000pt;}
.ws8b{word-spacing:-1.984000pt;}
.ws150{word-spacing:-1.920000pt;}
.wsb1{word-spacing:-1.792000pt;}
.ws15{word-spacing:-1.664000pt;}
.ws73{word-spacing:-1.600000pt;}
.wsf9{word-spacing:-1.525333pt;}
.ws5b{word-spacing:-1.408000pt;}
.wsa0{word-spacing:-1.280000pt;}
.ws7d{word-spacing:-1.104000pt;}
.ws155{word-spacing:-1.066667pt;}
.ws30{word-spacing:-1.024000pt;}
.ws13e{word-spacing:-1.013333pt;}
.ws125{word-spacing:-0.960000pt;}
.ws7b{word-spacing:-0.912000pt;}
.ws10d{word-spacing:-0.896000pt;}
.ws14c{word-spacing:-0.800000pt;}
.wsfc{word-spacing:-0.762667pt;}
.ws67{word-spacing:-0.704000pt;}
.wsb8{word-spacing:-0.672000pt;}
.ws14d{word-spacing:-0.586667pt;}
.ws32{word-spacing:-0.576000pt;}
.ws9b{word-spacing:-0.528000pt;}
.ws3a{word-spacing:-0.512000pt;}
.wsb{word-spacing:-0.480000pt;}
.ws151{word-spacing:-0.426667pt;}
.ws9c{word-spacing:-0.384000pt;}
.wse{word-spacing:-0.373333pt;}
.ws13{word-spacing:-0.320000pt;}
.ws79{word-spacing:-0.288000pt;}
.ws2a{word-spacing:-0.256000pt;}
.ws138{word-spacing:-0.213333pt;}
.ws1f{word-spacing:-0.192000pt;}
.ws90{word-spacing:-0.144000pt;}
.ws2b{word-spacing:-0.128000pt;}
.ws13a{word-spacing:-0.106667pt;}
.wsba{word-spacing:-0.096000pt;}
.wsfb{word-spacing:-0.058667pt;}
.ws139{word-spacing:-0.053333pt;}
.wsc{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.048000pt;}
.ws14{word-spacing:0.053333pt;}
.wsf3{word-spacing:0.058667pt;}
.ws12{word-spacing:0.064000pt;}
.ws5d{word-spacing:0.128000pt;}
.ws9a{word-spacing:0.144000pt;}
.ws78{word-spacing:0.192000pt;}
.wsf{word-spacing:0.224000pt;}
.wsc5{word-spacing:0.240000pt;}
.ws34{word-spacing:0.256000pt;}
.ws160{word-spacing:0.266667pt;}
.wsf5{word-spacing:0.293333pt;}
.ws5c{word-spacing:0.320000pt;}
.ws7a{word-spacing:0.336000pt;}
.wsd{word-spacing:0.373333pt;}
.ws20{word-spacing:0.384000pt;}
.wsf4{word-spacing:0.410667pt;}
.ws13c{word-spacing:0.426667pt;}
.ws68{word-spacing:0.432000pt;}
.ws10{word-spacing:0.448000pt;}
.ws165{word-spacing:0.469333pt;}
.ws7c{word-spacing:0.480000pt;}
.ws11{word-spacing:0.512000pt;}
.ws91{word-spacing:0.576000pt;}
.ws7e{word-spacing:0.672000pt;}
.wsf7{word-spacing:0.704000pt;}
.ws5a{word-spacing:0.768000pt;}
.ws21{word-spacing:0.832000pt;}
.ws59{word-spacing:1.024000pt;}
.ws152{word-spacing:1.066667pt;}
.wsbd{word-spacing:1.088000pt;}
.ws69{word-spacing:1.104000pt;}
.wsfd{word-spacing:1.114667pt;}
.ws142{word-spacing:1.120000pt;}
.ws114{word-spacing:1.152000pt;}
.ws18{word-spacing:1.216000pt;}
.ws86{word-spacing:1.280000pt;}
.ws87{word-spacing:1.408000pt;}
.wsb9{word-spacing:1.440000pt;}
.ws36{word-spacing:1.536000pt;}
.ws128{word-spacing:1.600000pt;}
.ws99{word-spacing:1.856000pt;}
.ws3b{word-spacing:1.920000pt;}
.ws149{word-spacing:2.026667pt;}
.ws11c{word-spacing:2.112000pt;}
.ws19{word-spacing:2.176000pt;}
.ws153{word-spacing:2.186667pt;}
.ws1d{word-spacing:2.304000pt;}
.ws53{word-spacing:2.368000pt;}
.ws2e{word-spacing:2.496000pt;}
.ws46{word-spacing:2.624000pt;}
.ws157{word-spacing:2.826667pt;}
.ws61{word-spacing:2.944000pt;}
.ws14a{word-spacing:2.986667pt;}
.ws105{word-spacing:2.992000pt;}
.ws60{word-spacing:3.008000pt;}
.ws164{word-spacing:3.168000pt;}
.wse4{word-spacing:3.200000pt;}
.ws11e{word-spacing:3.264000pt;}
.ws11a{word-spacing:3.392000pt;}
.ws163{word-spacing:3.520000pt;}
.ws143{word-spacing:3.573333pt;}
.ws75{word-spacing:3.584000pt;}
.ws146{word-spacing:3.680000pt;}
.ws45{word-spacing:3.712000pt;}
.ws58{word-spacing:3.904000pt;}
.wse5{word-spacing:3.968000pt;}
.wsd7{word-spacing:4.032000pt;}
.ws14b{word-spacing:4.266667pt;}
.ws98{word-spacing:4.288000pt;}
.wsd9{word-spacing:4.416000pt;}
.ws77{word-spacing:4.480000pt;}
.ws158{word-spacing:4.533333pt;}
.wsfe{word-spacing:4.576000pt;}
.ws65{word-spacing:4.608000pt;}
.ws11f{word-spacing:4.672000pt;}
.ws57{word-spacing:4.736000pt;}
.ws148{word-spacing:4.746667pt;}
.ws156{word-spacing:4.853333pt;}
.ws8a{word-spacing:4.928000pt;}
.wsee{word-spacing:5.056000pt;}
.wsb3{word-spacing:5.120000pt;}
.ws110{word-spacing:5.184000pt;}
.ws147{word-spacing:5.333333pt;}
.ws89{word-spacing:5.376000pt;}
.ws116{word-spacing:5.568000pt;}
.ws17{word-spacing:5.696000pt;}
.ws8e{word-spacing:5.760000pt;}
.ws144{word-spacing:5.813333pt;}
.wscc{word-spacing:5.824000pt;}
.ws145{word-spacing:5.973333pt;}
.ws8d{word-spacing:6.080000pt;}
.ws54{word-spacing:6.208000pt;}
.ws14e{word-spacing:6.293333pt;}
.ws64{word-spacing:6.336000pt;}
.wsa7{word-spacing:6.464000pt;}
.ws5f{word-spacing:6.592000pt;}
.wsd5{word-spacing:6.784000pt;}
.ws8f{word-spacing:6.848000pt;}
.ws52{word-spacing:6.912000pt;}
.ws154{word-spacing:7.093333pt;}
.ws127{word-spacing:7.168000pt;}
.ws23{word-spacing:7.232000pt;}
.wsa2{word-spacing:7.488000pt;}
.wsdb{word-spacing:7.616000pt;}
.ws126{word-spacing:7.744000pt;}
.ws24{word-spacing:7.808000pt;}
.ws8c{word-spacing:7.872000pt;}
.ws66{word-spacing:7.936000pt;}
.wsda{word-spacing:8.320000pt;}
.ws55{word-spacing:8.576000pt;}
.ws13b{word-spacing:8.586667pt;}
.wsb0{word-spacing:8.896000pt;}
.wsde{word-spacing:9.024000pt;}
.ws35{word-spacing:9.344000pt;}
.ws1c{word-spacing:9.408000pt;}
.ws85{word-spacing:9.664000pt;}
.ws84{word-spacing:9.792000pt;}
.ws33{word-spacing:9.920000pt;}
.ws40{word-spacing:9.984000pt;}
.ws1b{word-spacing:10.112000pt;}
.wse6{word-spacing:10.368000pt;}
.ws3e{word-spacing:10.432000pt;}
.ws121{word-spacing:10.688000pt;}
.wsd8{word-spacing:10.816000pt;}
.wse7{word-spacing:11.008000pt;}
.wscd{word-spacing:11.136000pt;}
.wsbe{word-spacing:11.520000pt;}
.ws25{word-spacing:11.776000pt;}
.ws135{word-spacing:11.968000pt;}
.wsbf{word-spacing:12.096000pt;}
.ws5e{word-spacing:12.224000pt;}
.ws63{word-spacing:12.480000pt;}
.wsf1{word-spacing:12.544000pt;}
.ws97{word-spacing:12.608000pt;}
.ws162{word-spacing:12.730667pt;}
.wsb2{word-spacing:12.864000pt;}
.ws119{word-spacing:12.928000pt;}
.ws11b{word-spacing:12.992000pt;}
.wsf2{word-spacing:13.056000pt;}
.wsa4{word-spacing:13.184000pt;}
.ws161{word-spacing:13.200000pt;}
.wsa3{word-spacing:13.312000pt;}
.ws47{word-spacing:13.632000pt;}
.wscb{word-spacing:13.888000pt;}
.ws4a{word-spacing:14.080000pt;}
.ws26{word-spacing:14.208000pt;}
.ws49{word-spacing:14.272000pt;}
.wsfa{word-spacing:14.314667pt;}
.ws48{word-spacing:14.336000pt;}
.ws74{word-spacing:14.720000pt;}
.ws16{word-spacing:14.976000pt;}
.ws123{word-spacing:15.168000pt;}
.ws113{word-spacing:15.296000pt;}
.wsa6{word-spacing:15.360000pt;}
.ws1e{word-spacing:15.424000pt;}
.wsb4{word-spacing:15.808000pt;}
.ws88{word-spacing:16.064000pt;}
.ws4c{word-spacing:16.192000pt;}
.wsdf{word-spacing:16.256000pt;}
.ws12b{word-spacing:16.384000pt;}
.ws13f{word-spacing:16.480000pt;}
.ws4b{word-spacing:16.512000pt;}
.ws62{word-spacing:16.832000pt;}
.ws140{word-spacing:17.120000pt;}
.ws10f{word-spacing:17.408000pt;}
.ws136{word-spacing:17.472000pt;}
.ws39{word-spacing:17.536000pt;}
.wsa5{word-spacing:17.920000pt;}
.ws112{word-spacing:18.432000pt;}
.wsc4{word-spacing:18.496000pt;}
.ws10e{word-spacing:18.560000pt;}
.wsaf{word-spacing:18.624000pt;}
.ws56{word-spacing:19.008000pt;}
.ws124{word-spacing:19.264000pt;}
.ws3c{word-spacing:19.584000pt;}
.ws3d{word-spacing:19.712000pt;}
.wse2{word-spacing:19.968000pt;}
.ws11d{word-spacing:20.736000pt;}
.wse8{word-spacing:21.120000pt;}
.ws137{word-spacing:21.813333pt;}
.wsce{word-spacing:21.824000pt;}
.ws10c{word-spacing:22.208000pt;}
.ws120{word-spacing:22.464000pt;}
.wsf0{word-spacing:22.656000pt;}
.wsb5{word-spacing:22.912000pt;}
.wscf{word-spacing:24.320000pt;}
.wsc9{word-spacing:24.576000pt;}
.wsca{word-spacing:24.896000pt;}
.wse1{word-spacing:25.408000pt;}
.ws108{word-spacing:26.576000pt;}
.ws41{word-spacing:26.688000pt;}
.ws12a{word-spacing:26.880000pt;}
.wsf8{word-spacing:26.928000pt;}
.ws129{word-spacing:27.136000pt;}
.ws37{word-spacing:28.096000pt;}
.wse3{word-spacing:28.224000pt;}
.ws38{word-spacing:28.864000pt;}
.wsa1{word-spacing:28.992000pt;}
.wse0{word-spacing:29.056000pt;}
.ws111{word-spacing:31.808000pt;}
.ws96{word-spacing:33.408000pt;}
.ws95{word-spacing:33.536000pt;}
.ws101{word-spacing:37.370667pt;}
.ws15d{word-spacing:37.813333pt;}
.ws15e{word-spacing:37.920000pt;}
.ws15f{word-spacing:38.080000pt;}
.wsc1{word-spacing:41.112000pt;}
.ws6c{word-spacing:53.112000pt;}
.ws4f{word-spacing:58.238400pt;}
.wsbc{word-spacing:64.457067pt;}
.ws100{word-spacing:64.650667pt;}
.wsbb{word-spacing:65.509867pt;}
.wsff{word-spacing:65.648000pt;}
.ws81{word-spacing:73.565867pt;}
.ws80{word-spacing:75.073067pt;}
.ws94{word-spacing:75.264000pt;}
.ws82{word-spacing:75.577600pt;}
.ws7f{word-spacing:75.839467pt;}
.wsae{word-spacing:76.333333pt;}
.wsad{word-spacing:76.907733pt;}
.wsc0{word-spacing:80.880000pt;}
.ws109{word-spacing:88.997333pt;}
.ws50{word-spacing:95.916267pt;}
.ws51{word-spacing:97.334933pt;}
.ws106{word-spacing:101.786667pt;}
.ws6d{word-spacing:103.277867pt;}
.ws104{word-spacing:110.176000pt;}
.wsc7{word-spacing:115.152000pt;}
.ws6e{word-spacing:123.984000pt;}
.ws102{word-spacing:141.856000pt;}
.ws9f{word-spacing:173.280000pt;}
.ws103{word-spacing:175.472000pt;}
.wsac{word-spacing:176.116800pt;}
.ws107{word-spacing:215.013333pt;}
.ws83{word-spacing:239.424000pt;}
.wsa9{word-spacing:376.608000pt;}
.wsab{word-spacing:388.320000pt;}
.wsaa{word-spacing:389.760000pt;}
.ws13d{word-spacing:602.346667pt;}
._d{margin-left:-29.510400pt;}
._c{margin-left:-26.963200pt;}
._9{margin-left:-24.940800pt;}
._a{margin-left:-23.712000pt;}
._36{margin-left:-21.015467pt;}
._45{margin-left:-19.116800pt;}
._38{margin-left:-17.907200pt;}
._35{margin-left:-16.789333pt;}
._34{margin-left:-15.383467pt;}
._23{margin-left:-14.376533pt;}
._25{margin-left:-13.397333pt;}
._46{margin-left:-12.484267pt;}
._1d{margin-left:-11.490133pt;}
._15{margin-left:-10.570667pt;}
._47{margin-left:-9.649067pt;}
._12{margin-left:-8.759467pt;}
._1a{margin-left:-7.507200pt;}
._16{margin-left:-6.361600pt;}
._10{margin-left:-5.356800pt;}
._8{margin-left:-4.330667pt;}
._11{margin-left:-2.941867pt;}
._5{margin-left:-1.804800pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.333333pt;}
._f{width:2.493867pt;}
._13{width:3.889067pt;}
._14{width:5.109333pt;}
._1b{width:6.444800pt;}
._1f{width:7.852800pt;}
._24{width:8.774400pt;}
._7{width:9.760000pt;}
._19{width:10.677333pt;}
._6{width:11.840000pt;}
._32{width:13.553067pt;}
._3e{width:14.609067pt;}
._37{width:16.000000pt;}
._33{width:20.260267pt;}
._31{width:21.188267pt;}
._20{width:22.380800pt;}
._1c{width:23.374933pt;}
._b{width:24.396800pt;}
._e{width:25.305600pt;}
._21{width:26.779733pt;}
._22{width:28.162133pt;}
._17{width:29.501867pt;}
._18{width:30.568533pt;}
._44{width:33.335467pt;}
._43{width:34.811733pt;}
._48{width:37.627733pt;}
._3c{width:88.072533pt;}
._3a{width:97.093333pt;}
._2f{width:98.688000pt;}
._42{width:102.013867pt;}
._41{width:102.949333pt;}
._40{width:104.304000pt;}
._27{width:107.038933pt;}
._3d{width:108.226667pt;}
._2e{width:110.832000pt;}
._28{width:113.301333pt;}
._29{width:114.512533pt;}
._3f{width:116.448000pt;}
._2b{width:147.408000pt;}
._2a{width:159.552000pt;}
._30{width:172.128000pt;}
._26{width:176.693333pt;}
._3b{width:203.111467pt;}
._2d{width:225.936000pt;}
._2c{width:238.320000pt;}
._39{width:412.368000pt;}
._3{width:680.693333pt;}
._4{width:856.160000pt;}
._2{width:893.706667pt;}
._1e{width:949.920000pt;}
.fs8{font-size:10.666667pt;}
.fs5{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y9{bottom:-0.000032pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:0.001333pt;}
.y1aa{bottom:0.266667pt;}
.ya{bottom:2.933317pt;}
.y1db{bottom:4.000000pt;}
.y7{bottom:4.533333pt;}
.yb{bottom:5.333301pt;}
.y1f4{bottom:22.933333pt;}
.yba{bottom:25.066667pt;}
.y7f{bottom:25.333333pt;}
.y3a{bottom:60.266667pt;}
.y4{bottom:60.266668pt;}
.y1fb{bottom:61.066667pt;}
.y143{bottom:75.335600pt;}
.y1d7{bottom:80.000000pt;}
.y106{bottom:85.882667pt;}
.y38{bottom:87.749333pt;}
.y17b{bottom:88.266667pt;}
.y91{bottom:90.400000pt;}
.y15b{bottom:90.666667pt;}
.y209{bottom:91.221333pt;}
.ybc{bottom:92.533333pt;}
.y20a{bottom:93.418667pt;}
.y197{bottom:93.600000pt;}
.y92{bottom:94.933333pt;}
.y7e{bottom:95.200000pt;}
.y80{bottom:99.733333pt;}
.y15a{bottom:100.549333pt;}
.y121{bottom:106.144000pt;}
.y105{bottom:106.682667pt;}
.y37{bottom:108.277333pt;}
.yb9{bottom:108.800000pt;}
.y17a{bottom:109.066667pt;}
.y196{bottom:109.866667pt;}
.y69{bottom:110.405333pt;}
.ye7{bottom:110.672000pt;}
.y208{bottom:112.021333pt;}
.ybb{bottom:113.333333pt;}
.y1d4{bottom:113.946667pt;}
.y1f9{bottom:117.866667pt;}
.y159{bottom:121.077333pt;}
.y179{bottom:126.133333pt;}
.y231{bottom:126.933333pt;}
.y120{bottom:126.944000pt;}
.y104{bottom:127.210667pt;}
.y178{bottom:128.533333pt;}
.y36{bottom:129.077333pt;}
.ye6{bottom:131.200000pt;}
.y68{bottom:131.205333pt;}
.y90{bottom:132.000000pt;}
.y207{bottom:132.821333pt;}
.y1d3{bottom:134.746667pt;}
.y7d{bottom:136.800000pt;}
.y1be{bottom:137.365333pt;}
.y20e{bottom:141.653333pt;}
.y158{bottom:141.877333pt;}
.y230{bottom:144.266667pt;}
.y11f{bottom:147.744000pt;}
.y103{bottom:148.010667pt;}
.y35{bottom:149.605333pt;}
.yb8{bottom:150.133333pt;}
.y195{bottom:151.200000pt;}
.ye5{bottom:152.000000pt;}
.y67{bottom:152.005333pt;}
.yad{bottom:152.755067pt;}
.y206{bottom:153.349333pt;}
.y1d2{bottom:155.546667pt;}
.y1ed{bottom:155.733333pt;}
.y1bd{bottom:158.165333pt;}
.y22f{bottom:161.600000pt;}
.y20d{bottom:162.453333pt;}
.y157{bottom:162.677333pt;}
.y11e{bottom:168.272000pt;}
.y102{bottom:168.810667pt;}
.y177{bottom:170.133333pt;}
.yd0{bottom:170.304667pt;}
.ye4{bottom:170.400000pt;}
.y34{bottom:170.405333pt;}
.ya2{bottom:171.379067pt;}
.y1a7{bottom:172.194533pt;}
.y66{bottom:172.533333pt;}
.y205{bottom:174.149333pt;}
.y1f7{bottom:174.933333pt;}
.y1d1{bottom:176.074667pt;}
.ye2{bottom:178.400000pt;}
.y22e{bottom:178.666667pt;}
.y1bc{bottom:178.965333pt;}
.ye3{bottom:182.933333pt;}
.y20c{bottom:182.981333pt;}
.y156{bottom:183.205333pt;}
.yc9{bottom:188.940667pt;}
.y11d{bottom:189.072000pt;}
.y101{bottom:189.338667pt;}
.y19f{bottom:190.830533pt;}
.y65{bottom:190.933333pt;}
.y33{bottom:191.205333pt;}
.y1eb{bottom:193.866667pt;}
.y204{bottom:194.949333pt;}
.y98{bottom:195.715067pt;}
.y22d{bottom:196.000000pt;}
.ya3{bottom:196.399067pt;}
.y1d0{bottom:196.874667pt;}
.y1bb{bottom:199.493333pt;}
.y64{bottom:203.781333pt;}
.y155{bottom:204.005333pt;}
.y11c{bottom:209.872000pt;}
.y100{bottom:210.138667pt;}
.y32{bottom:211.733333pt;}
.y22c{bottom:213.333333pt;}
.yc3{bottom:214.452667pt;}
.y99{bottom:214.543067pt;}
.yca{bottom:215.124667pt;}
.ya4{bottom:215.227067pt;}
.y203{bottom:215.477333pt;}
.y1cf{bottom:217.674667pt;}
.y198{bottom:218.778533pt;}
.y1a0{bottom:219.450533pt;}
.ye1{bottom:220.000000pt;}
.y1ba{bottom:220.293333pt;}
.y82{bottom:224.252000pt;}
.y63{bottom:224.581333pt;}
.y154{bottom:224.805333pt;}
.y11b{bottom:230.400000pt;}
.yff{bottom:230.938667pt;}
.y1f5{bottom:231.733333pt;}
.y31{bottom:232.533333pt;}
.y9a{bottom:233.371067pt;}
.ya5{bottom:234.055067pt;}
.yc4{bottom:235.608667pt;}
.y202{bottom:236.277333pt;}
.ycb{bottom:236.280667pt;}
.y1ce{bottom:238.202667pt;}
.y18d{bottom:240.598267pt;}
.y1b9{bottom:241.093333pt;}
.yf5{bottom:241.482533pt;}
.y199{bottom:244.806533pt;}
.y62{bottom:245.109333pt;}
.y153{bottom:245.333333pt;}
.y1a1{bottom:245.478533pt;}
.y22b{bottom:247.733333pt;}
.y11a{bottom:251.200000pt;}
.yfe{bottom:251.466667pt;}
.y9b{bottom:252.199067pt;}
.ya6{bottom:252.883067pt;}
.y30{bottom:253.333333pt;}
.yc5{bottom:256.764667pt;}
.y201{bottom:256.805333pt;}
.ycc{bottom:257.436667pt;}
.y1cd{bottom:259.002667pt;}
.yee{bottom:260.142533pt;}
.y1b8{bottom:261.621333pt;}
.y22a{bottom:265.066667pt;}
.y61{bottom:265.909333pt;}
.y152{bottom:266.133333pt;}
.y19a{bottom:270.834533pt;}
.y2f{bottom:270.933329pt;}
.y9c{bottom:271.027067pt;}
.y1a2{bottom:271.506533pt;}
.ya7{bottom:271.711067pt;}
.y119{bottom:272.000000pt;}
.yfd{bottom:272.266667pt;}
.y200{bottom:277.605333pt;}
.yc6{bottom:277.920667pt;}
.ycd{bottom:278.592667pt;}
.y1cc{bottom:279.802667pt;}
.y2e{bottom:280.799996pt;}
.y229{bottom:282.400000pt;}
.y1b7{bottom:282.421333pt;}
.y18c{bottom:282.598267pt;}
.y151{bottom:283.200000pt;}
.y150{bottom:285.866667pt;}
.y60{bottom:286.437333pt;}
.y118{bottom:288.800000pt;}
.ye8{bottom:289.386533pt;}
.y9d{bottom:289.855067pt;}
.yef{bottom:290.034533pt;}
.yfc{bottom:290.400000pt;}
.ya8{bottom:290.539067pt;}
.y116{bottom:291.466667pt;}
.y117{bottom:296.000000pt;}
.y19b{bottom:296.862533pt;}
.y81{bottom:297.248000pt;}
.y1a3{bottom:297.534533pt;}
.y1ff{bottom:298.405333pt;}
.yfa{bottom:298.666667pt;}
.yc7{bottom:299.076667pt;}
.y228{bottom:299.466667pt;}
.yce{bottom:299.748667pt;}
.y1cb{bottom:300.330667pt;}
.y2d{bottom:301.599996pt;}
.y1b6{bottom:303.221333pt;}
.y5f{bottom:307.237333pt;}
.y9e{bottom:308.683067pt;}
.ya9{bottom:309.367067pt;}
.y227{bottom:316.800000pt;}
.ye9{bottom:317.970533pt;}
.yf0{bottom:318.618533pt;}
.y1fe{bottom:318.933333pt;}
.y2c{bottom:319.199992pt;}
.yc8{bottom:320.232667pt;}
.ycf{bottom:320.904667pt;}
.y1ca{bottom:321.130667pt;}
.y19c{bottom:322.890533pt;}
.y1a4{bottom:323.562533pt;}
.y1b5{bottom:323.749333pt;}
.yfb{bottom:324.000000pt;}
.y14f{bottom:327.200000pt;}
.y9f{bottom:327.511067pt;}
.y5e{bottom:328.037333pt;}
.yaa{bottom:328.195067pt;}
.y2b{bottom:329.098699pt;}
.y115{bottom:332.800000pt;}
.y142{bottom:333.333333pt;}
.y226{bottom:334.133333pt;}
.y18e{bottom:337.594267pt;}
.y1fd{bottom:339.733333pt;}
.yf8{bottom:340.265333pt;}
.y1c9{bottom:341.658667pt;}
.y1b4{bottom:344.549333pt;}
.y141{bottom:345.120533pt;}
.ya0{bottom:346.339067pt;}
.yea{bottom:346.554533pt;}
.yab{bottom:347.023067pt;}
.yf1{bottom:347.202533pt;}
.y83{bottom:348.248000pt;}
.y5d{bottom:348.565333pt;}
.y19d{bottom:348.918533pt;}
.y1a5{bottom:349.590533pt;}
.y2a{bottom:349.898699pt;}
.y225{bottom:351.200000pt;}
.y18f{bottom:353.590267pt;}
.yd1{bottom:357.376267pt;}
.y1fc{bottom:358.133333pt;}
.y140{bottom:359.772533pt;}
.y112{bottom:361.174000pt;}
.y1c8{bottom:362.458667pt;}
.y1b3{bottom:365.077333pt;}
.ya1{bottom:365.167067pt;}
.yac{bottom:365.851067pt;}
.y1ea{bottom:366.933333pt;}
.y224{bottom:368.533333pt;}
.y5c{bottom:369.365333pt;}
.y29{bottom:370.698699pt;}
.y19e{bottom:374.946533pt;}
.yeb{bottom:375.138533pt;}
.y136{bottom:375.336533pt;}
.y1a6{bottom:375.618533pt;}
.yf2{bottom:375.786533pt;}
.y190{bottom:379.333200pt;}
.y10c{bottom:379.834000pt;}
.yb7{bottom:382.133333pt;}
.y1c7{bottom:383.258667pt;}
.y223{bottom:385.866667pt;}
.y1b2{bottom:385.877333pt;}
.y1e7{bottom:389.857333pt;}
.y5b{bottom:390.165333pt;}
.y28{bottom:391.226699pt;}
.y84{bottom:391.244000pt;}
.y134{bottom:391.968533pt;}
.yb6{bottom:394.938667pt;}
.y137{bottom:395.220533pt;}
.yae{bottom:401.136133pt;}
.y222{bottom:402.933333pt;}
.yec{bottom:403.722533pt;}
.y176{bottom:403.733333pt;}
.y1c6{bottom:403.786667pt;}
.yf3{bottom:404.370533pt;}
.y135{bottom:405.888533pt;}
.y1b1{bottom:406.677333pt;}
.y162{bottom:406.682267pt;}
.y1e6{bottom:408.792000pt;}
.y1f3{bottom:408.800000pt;}
.y125{bottom:409.860533pt;}
.y5a{bottom:410.693333pt;}
.y27{bottom:412.026699pt;}
.y107{bottom:412.390000pt;}
.y10d{bottom:413.038000pt;}
.y175{bottom:413.626667pt;}
.y123{bottom:413.832533pt;}
.y131{bottom:413.844533pt;}
.y1a8{bottom:414.532133pt;}
.y138{bottom:415.104533pt;}
.yb5{bottom:415.738667pt;}
.y12f{bottom:417.828533pt;}
.y85{bottom:417.982933pt;}
.y221{bottom:420.266667pt;}
.y1c5{bottom:424.586667pt;}
.y8f{bottom:425.600000pt;}
.y1b0{bottom:427.205333pt;}
.y124{bottom:427.752533pt;}
.y1e5{bottom:427.990667pt;}
.y1f2{bottom:427.996000pt;}
.y59{bottom:431.493333pt;}
.yed{bottom:432.306533pt;}
.y26{bottom:432.826699pt;}
.yf4{bottom:432.954533pt;}
.y133{bottom:433.716533pt;}
.y174{bottom:434.154667pt;}
.y139{bottom:434.988533pt;}
.y8e{bottom:435.205333pt;}
.yb4{bottom:436.538667pt;}
.y220{bottom:437.600000pt;}
.y194{bottom:438.133333pt;}
.y7c{bottom:442.933333pt;}
.y193{bottom:445.386667pt;}
.y130{bottom:445.656533pt;}
.y1e4{bottom:446.925333pt;}
.y1f1{bottom:446.930667pt;}
.y108{bottom:447.598000pt;}
.y1af{bottom:448.005333pt;}
.y10e{bottom:448.246000pt;}
.y129{bottom:449.628533pt;}
.y126{bottom:451.608533pt;}
.y58{bottom:452.293333pt;}
.y25{bottom:453.354699pt;}
.y13a{bottom:454.872533pt;}
.y21f{bottom:454.933333pt;}
.y173{bottom:454.954667pt;}
.y7b{bottom:455.493333pt;}
.y8d{bottom:456.005333pt;}
.yb3{bottom:457.066667pt;}
.y122{bottom:461.544533pt;}
.y163{bottom:464.678267pt;}
.y1e3{bottom:465.860000pt;}
.y1f0{bottom:465.865333pt;}
.y1fa{bottom:465.866667pt;}
.y192{bottom:465.914667pt;}
.y1ae{bottom:468.805333pt;}
.y132{bottom:471.492533pt;}
.y21e{bottom:472.000000pt;}
.y57{bottom:472.821333pt;}
.yf6{bottom:473.193600pt;}
.y12a{bottom:473.484533pt;}
.y24{bottom:474.154699pt;}
.y13b{bottom:474.756533pt;}
.yb2{bottom:475.466667pt;}
.y172{bottom:475.754667pt;}
.y7a{bottom:476.293333pt;}
.y8c{bottom:476.805333pt;}
.y12b{bottom:481.440533pt;}
.y109{bottom:482.806000pt;}
.y10f{bottom:483.454000pt;}
.y1e2{bottom:484.794667pt;}
.y1ef{bottom:484.800000pt;}
.y191{bottom:486.714667pt;}
.yb1{bottom:488.266667pt;}
.y1ad{bottom:489.333333pt;}
.y128{bottom:491.376533pt;}
.y56{bottom:493.621333pt;}
.y13c{bottom:494.640533pt;}
.y23{bottom:494.682699pt;}
.y171{bottom:496.282667pt;}
.y79{bottom:497.093333pt;}
.y8b{bottom:497.333333pt;}
.ye0{bottom:497.600000pt;}
.y1e1{bottom:503.729333pt;}
.y1ee{bottom:503.733333pt;}
.y21d{bottom:506.666667pt;}
.y127{bottom:507.276533pt;}
.ydf{bottom:507.514667pt;}
.y164{bottom:507.674267pt;}
.y1ac{bottom:507.733333pt;}
.yb0{bottom:508.794667pt;}
.y55{bottom:514.149333pt;}
.y13d{bottom:514.524533pt;}
.y8a{bottom:515.200000pt;}
.y22{bottom:515.482699pt;}
.y1ab{bottom:516.000000pt;}
.y170{bottom:517.082667pt;}
.y12e{bottom:517.224533pt;}
.y78{bottom:517.621333pt;}
.y10a{bottom:518.014000pt;}
.y110{bottom:518.662000pt;}
.y1e0{bottom:522.664000pt;}
.y1f8{bottom:522.666667pt;}
.y12c{bottom:523.188533pt;}
.y21c{bottom:523.733333pt;}
.y89{bottom:525.066667pt;}
.yde{bottom:528.042667pt;}
.y13e{bottom:534.408533pt;}
.y54{bottom:534.949333pt;}
.y21{bottom:536.282699pt;}
.y1a9{bottom:536.533333pt;}
.y16f{bottom:537.610667pt;}
.y77{bottom:538.421333pt;}
.y21b{bottom:541.066667pt;}
.y1df{bottom:541.862667pt;}
.y1ec{bottom:541.866667pt;}
.y12d{bottom:543.072533pt;}
.y88{bottom:545.594667pt;}
.ydd{bottom:548.842667pt;}
.y10b{bottom:553.222000pt;}
.y111{bottom:553.870000pt;}
.y13f{bottom:554.292533pt;}
.y53{bottom:555.749333pt;}
.y20{bottom:556.810699pt;}
.y21a{bottom:558.400000pt;}
.y16e{bottom:558.410667pt;}
.y76{bottom:559.221333pt;}
.y1de{bottom:560.797333pt;}
.y87{bottom:561.866667pt;}
.ydc{bottom:569.642667pt;}
.y219{bottom:575.466667pt;}
.y52{bottom:576.277333pt;}
.y1f{bottom:577.610699pt;}
.y16d{bottom:579.210667pt;}
.y1e9{bottom:579.717333pt;}
.y1dd{bottom:579.732000pt;}
.y1f6{bottom:579.733333pt;}
.y75{bottom:579.749333pt;}
.y144{bottom:580.164933pt;}
.ydb{bottom:590.170667pt;}
.y218{bottom:592.800000pt;}
.y165{bottom:596.417200pt;}
.y51{bottom:597.077333pt;}
.y113{bottom:597.418267pt;}
.y1e{bottom:598.410699pt;}
.y1e8{bottom:598.652000pt;}
.y1dc{bottom:598.666667pt;}
.y16c{bottom:599.738667pt;}
.y74{bottom:600.549333pt;}
.y114{bottom:603.733333pt;}
.y1c4{bottom:606.746000pt;}
.y217{bottom:610.133333pt;}
.yda{bottom:610.970667pt;}
.y1c2{bottom:613.488000pt;}
.ybe{bottom:613.565733pt;}
.y1d6{bottom:614.400000pt;}
.y50{bottom:617.877333pt;}
.y1d{bottom:618.938699pt;}
.y14e{bottom:620.000000pt;}
.y1c3{bottom:620.078000pt;}
.y16b{bottom:620.538667pt;}
.y73{bottom:621.349333pt;}
.yf7{bottom:621.866667pt;}
.y14d{bottom:627.205333pt;}
.y216{bottom:627.466667pt;}
.yd9{bottom:631.498667pt;}
.ybf{bottom:635.561733pt;}
.y1da{bottom:637.330667pt;}
.y4f{bottom:638.405333pt;}
.y1c{bottom:639.738699pt;}
.y16a{bottom:641.338667pt;}
.y72{bottom:641.877333pt;}
.y215{bottom:644.533333pt;}
.y14c{bottom:647.733333pt;}
.yd8{bottom:652.298667pt;}
.y94{bottom:654.428400pt;}
.y1d9{bottom:656.265333pt;}
.y1d5{bottom:656.266667pt;}
.y4e{bottom:659.205333pt;}
.y1b{bottom:660.538699pt;}
.y169{bottom:661.866667pt;}
.y71{bottom:662.677333pt;}
.y14b{bottom:668.533333pt;}
.yd7{bottom:673.098667pt;}
.y1bf{bottom:673.319867pt;}
.y1d8{bottom:675.200000pt;}
.y214{bottom:679.200000pt;}
.y4d{bottom:680.005333pt;}
.y1a{bottom:681.066699pt;}
.y168{bottom:682.666667pt;}
.y70{bottom:683.477333pt;}
.y95{bottom:684.428400pt;}
.y14a{bottom:689.333333pt;}
.yd6{bottom:693.626667pt;}
.y213{bottom:696.266667pt;}
.y4c{bottom:700.533333pt;}
.y19{bottom:701.866699pt;}
.y6f{bottom:704.005333pt;}
.y167{bottom:705.600000pt;}
.y149{bottom:706.133333pt;}
.y147{bottom:708.800000pt;}
.y148{bottom:713.333333pt;}
.yc0{bottom:713.561733pt;}
.y212{bottom:713.600000pt;}
.yd5{bottom:714.426667pt;}
.ybd{bottom:717.569733pt;}
.y18{bottom:719.733317pt;}
.y20b{bottom:719.733333pt;}
.y4b{bottom:721.333333pt;}
.y6e{bottom:724.805333pt;}
.y17{bottom:728.533365pt;}
.y211{bottom:730.933333pt;}
.yd4{bottom:735.226667pt;}
.y4a{bottom:742.133333pt;}
.y6d{bottom:745.333333pt;}
.y16{bottom:745.866699pt;}
.y166{bottom:747.200000pt;}
.yc1{bottom:748.565733pt;}
.y146{bottom:750.400000pt;}
.yd3{bottom:755.754667pt;}
.y49{bottom:759.733333pt;}
.y15{bottom:761.066651pt;}
.y93{bottom:762.428400pt;}
.y210{bottom:762.666667pt;}
.y6c{bottom:766.133333pt;}
.y18a{bottom:768.213867pt;}
.y48{bottom:769.600000pt;}
.y14{bottom:770.133301pt;}
.yd2{bottom:776.554667pt;}
.yc2{bottom:780.304667pt;}
.y20f{bottom:781.866667pt;}
.y6b{bottom:784.533333pt;}
.y182{bottom:786.849867pt;}
.y13{bottom:787.200032pt;}
.y1c1{bottom:790.043200pt;}
.y47{bottom:790.400000pt;}
.y96{bottom:790.424400pt;}
.y6a{bottom:797.354667pt;}
.y23d{bottom:802.933333pt;}
.y1c0{bottom:803.375200pt;}
.yaf{bottom:805.066667pt;}
.y12{bottom:805.333333pt;}
.y46{bottom:808.000000pt;}
.y17c{bottom:817.605867pt;}
.y45{bottom:817.882667pt;}
.y183{bottom:818.289867pt;}
.y23c{bottom:821.600000pt;}
.y15d{bottom:823.808000pt;}
.y97{bottom:825.163333pt;}
.y11{bottom:826.138672pt;}
.y44{bottom:838.682667pt;}
.y23b{bottom:839.197333pt;}
.y10{bottom:846.666667pt;}
.y17d{bottom:849.285867pt;}
.y86{bottom:849.600000pt;}
.y184{bottom:849.969867pt;}
.y15e{bottom:854.804000pt;}
.y23a{bottom:858.132000pt;}
.y43{bottom:859.210667pt;}
.yf{bottom:867.994629pt;}
.y239{bottom:877.066667pt;}
.y42{bottom:880.010667pt;}
.y17e{bottom:880.965867pt;}
.y185{bottom:881.649867pt;}
.ye{bottom:892.261349pt;}
.y238{bottom:900.000000pt;}
.y41{bottom:900.810667pt;}
.y187{bottom:905.997867pt;}
.y15f{bottom:907.808000pt;}
.y17f{bottom:912.645867pt;}
.y15c{bottom:913.808000pt;}
.yd{bottom:916.266683pt;}
.y186{bottom:920.649867pt;}
.y40{bottom:921.338667pt;}
.y237{bottom:938.132000pt;}
.yc{bottom:940.533365pt;}
.y3f{bottom:942.138667pt;}
.y160{bottom:943.808000pt;}
.y180{bottom:944.325867pt;}
.y188{bottom:944.997867pt;}
.y236{bottom:957.066667pt;}
.y8{bottom:959.466667pt;}
.y3e{bottom:962.938667pt;}
.y161{bottom:973.542933pt;}
.y235{bottom:975.733333pt;}
.y181{bottom:976.005867pt;}
.y189{bottom:976.677867pt;}
.y6{bottom:980.800000pt;}
.y3d{bottom:983.466667pt;}
.y234{bottom:993.066667pt;}
.y145{bottom:997.066667pt;}
.y5{bottom:1003.733317pt;}
.y3c{bottom:1004.266667pt;}
.y233{bottom:1010.400000pt;}
.y3{bottom:1017.600016pt;}
.y18b{bottom:1018.401733pt;}
.y3b{bottom:1025.066667pt;}
.y232{bottom:1027.733333pt;}
.y2{bottom:1034.933349pt;}
.y39{bottom:1052.000000pt;}
.y1{bottom:1052.266683pt;}
.h1d{height:8.970667pt;}
.he{height:17.941333pt;}
.h27{height:20.533333pt;}
.h5{height:20.801333pt;}
.h8{height:21.332000pt;}
.h4{height:26.912000pt;}
.h12{height:32.812500pt;}
.h16{height:32.859375pt;}
.h14{height:34.453125pt;}
.h10{height:35.882667pt;}
.h18{height:41.333333pt;}
.h22{height:41.334667pt;}
.h3{height:41.493333pt;}
.h1b{height:41.598667pt;}
.h11{height:41.600000pt;}
.h7{height:42.133333pt;}
.h28{height:43.750000pt;}
.hd{height:44.853333pt;}
.h2{height:46.400000pt;}
.h2c{height:49.338667pt;}
.h29{height:49.792000pt;}
.h2a{height:51.040000pt;}
.hc{height:53.824000pt;}
.h2e{height:55.625000pt;}
.h6{height:55.680000pt;}
.h1f{height:58.309125pt;}
.ha{height:62.794667pt;}
.h9{height:62.812500pt;}
.hb{height:64.960000pt;}
.h15{height:66.469125pt;}
.h19{height:66.750000pt;}
.h2b{height:94.933333pt;}
.h17{height:229.866667pt;}
.h24{height:232.000000pt;}
.h21{height:245.866667pt;}
.h2d{height:246.666667pt;}
.h20{height:269.598667pt;}
.h1e{height:270.133333pt;}
.h1a{height:276.000000pt;}
.h1c{height:280.001333pt;}
.h25{height:286.133333pt;}
.h13{height:292.000000pt;}
.h23{height:293.866667pt;}
.hf{height:304.000000pt;}
.h26{height:308.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w8{width:132.534667pt;}
.w9{width:368.533333pt;}
.w2{width:425.066667pt;}
.w7{width:619.200000pt;}
.w6{width:630.400000pt;}
.w5{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.199997pt;}
.x78{left:28.333200pt;}
.xa1{left:32.266667pt;}
.x1f{left:36.266667pt;}
.x15{left:58.400000pt;}
.x7b{left:60.266667pt;}
.x7a{left:62.133333pt;}
.x56{left:65.333333pt;}
.x4a{left:66.933333pt;}
.x39{left:68.000000pt;}
.x3{left:70.933333pt;}
.x83{left:72.800000pt;}
.x84{left:74.666667pt;}
.x65{left:79.466667pt;}
.x1{left:81.333333pt;}
.x11{left:85.066667pt;}
.x77{left:88.266667pt;}
.x9d{left:89.333333pt;}
.x31{left:97.159200pt;}
.x85{left:99.466667pt;}
.x46{left:103.737067pt;}
.xa{left:106.663997pt;}
.x8{left:109.333349pt;}
.x6{left:111.199992pt;}
.x59{left:114.133333pt;}
.x9c{left:119.765333pt;}
.x9{left:121.597331pt;}
.x73{left:123.839333pt;}
.x13{left:128.533333pt;}
.x72{left:129.923333pt;}
.x45{left:136.593067pt;}
.x5a{left:138.133333pt;}
.x25{left:140.536533pt;}
.x1d{left:145.328000pt;}
.x33{left:146.575200pt;}
.x30{left:148.375200pt;}
.x63{left:149.482133pt;}
.xc{left:153.333333pt;}
.xf{left:156.789333pt;}
.x62{left:157.978133pt;}
.x2e{left:160.819200pt;}
.x34{left:165.151200pt;}
.x47{left:167.949067pt;}
.x2f{left:169.807200pt;}
.x61{left:177.826133pt;}
.x66{left:179.733333pt;}
.x12{left:185.349333pt;}
.x58{left:189.600000pt;}
.x37{left:192.005333pt;}
.xa2{left:194.400000pt;}
.x6c{left:195.503333pt;}
.x8b{left:200.249333pt;}
.x32{left:201.367200pt;}
.x60{left:203.494133pt;}
.x53{left:204.434000pt;}
.x57{left:208.000000pt;}
.x8e{left:208.997333pt;}
.x6e{left:213.227333pt;}
.x20{left:215.466667pt;}
.x2d{left:217.687200pt;}
.x8c{left:219.269333pt;}
.xd{left:221.599996pt;}
.x51{left:222.530000pt;}
.x50{left:226.706000pt;}
.x2c{left:231.307200pt;}
.x1e{left:234.128000pt;}
.x8d{left:238.433333pt;}
.xb{left:243.199992pt;}
.x44{left:246.873067pt;}
.x3a{left:252.266667pt;}
.x5f{left:260.770133pt;}
.x74{left:264.179333pt;}
.x16{left:265.333333pt;}
.x40{left:267.509333pt;}
.x4b{left:269.866667pt;}
.x9a{left:273.541200pt;}
.x52{left:277.802000pt;}
.x6a{left:286.955333pt;}
.x23{left:295.113200pt;}
.x2a{left:296.335200pt;}
.x26{left:301.543200pt;}
.x3d{left:304.185200pt;}
.x2b{left:311.983200pt;}
.x19{left:316.279733pt;}
.x49{left:319.687067pt;}
.x8f{left:321.620400pt;}
.x35{left:322.520267pt;}
.x95{left:324.824267pt;}
.x7e{left:326.414400pt;}
.x81{left:330.413067pt;}
.xe{left:334.532525pt;}
.x71{left:343.067333pt;}
.x24{left:344.277200pt;}
.x3e{left:346.077200pt;}
.x1b{left:348.175733pt;}
.x1a{left:351.175733pt;}
.x82{left:352.326800pt;}
.x8a{left:354.209333pt;}
.x7f{left:357.302400pt;}
.x4f{left:360.338000pt;}
.x3f{left:368.073200pt;}
.x90{left:369.309067pt;}
.x98{left:370.300800pt;}
.x42{left:374.013067pt;}
.x5e{left:376.822133pt;}
.x67{left:378.407333pt;}
.x75{left:389.447333pt;}
.x94{left:391.580267pt;}
.x21{left:393.273200pt;}
.x2{left:396.800008pt;}
.x3b{left:398.073200pt;}
.x48{left:400.161067pt;}
.x7c{left:401.306400pt;}
.x64{left:408.466133pt;}
.x6d{left:413.855333pt;}
.x10{left:420.533325pt;}
.x27{left:421.495200pt;}
.x7d{left:427.418400pt;}
.x22{left:432.117200pt;}
.x3c{left:434.181200pt;}
.x5d{left:435.166133pt;}
.x80{left:438.413067pt;}
.x17{left:446.933333pt;}
.x18{left:457.279733pt;}
.x54{left:463.610000pt;}
.x93{left:470.552267pt;}
.x96{left:475.292267pt;}
.x99{left:480.664133pt;}
.x4e{left:485.258000pt;}
.x68{left:487.583333pt;}
.x5{left:496.000000pt;}
.x6b{left:505.307333pt;}
.x41{left:527.517067pt;}
.x5c{left:528.514133pt;}
.x6f{left:540.755333pt;}
.x88{left:543.161333pt;}
.x92{left:547.232267pt;}
.x89{left:555.569333pt;}
.x9e{left:562.933333pt;}
.xa3{left:570.133333pt;}
.x9f{left:572.000000pt;}
.x4d{left:573.038000pt;}
.xa0{left:581.606667pt;}
.x97{left:585.600000pt;}
.x29{left:588.487200pt;}
.x87{left:594.725333pt;}
.x69{left:596.759333pt;}
.x76{left:606.743333pt;}
.x7{left:609.600000pt;}
.x43{left:613.629067pt;}
.x55{left:615.200000pt;}
.x38{left:627.200000pt;}
.x79{left:631.200000pt;}
.x14{left:633.066667pt;}
.x28{left:635.419200pt;}
.x91{left:641.276267pt;}
.x86{left:648.521333pt;}
.x70{left:649.931333pt;}
.x4c{left:652.982000pt;}
.x5b{left:656.710133pt;}
.x9b{left:665.365333pt;}
.x1c{left:691.200000pt;}
.x36{left:701.333333pt;}
}




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