
    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_5ec0df183c0f1479f2b314a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.899902;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_22a27b49e902ff7c0bf9360a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974609;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_d31d0a9fe5d0932f9c1edcd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_68852c10c409c0eeee06647e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970000;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_3e49520943706b01a4aac90a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.044600;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_7c9ac2a943327514328f2963.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_6c954c22ec1b809920857c3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.952000;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_118d91daee8aa1b7a8e87ed7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966000;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_f729f00fe77753e8b6da64ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.140137;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_e6315f5cfa307b54562f6740.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.952000;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_22a27b49e902ff7c0bf9360a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.974609;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_bede4c932a79a35294eeeac7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.974609;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_d310e96790e15957a8f57de9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8b0ab0fb3ed92362c78de086.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fb0373706eaec20e7a256312.woff2')format("woff");}.fff{font-family:fff;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.981000px;}
.v7{vertical-align:-9.468600px;}
.v6{vertical-align:-6.750000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.596000px;}
.v5{vertical-align:21.936000px;}
.v1{vertical-align:22.977000px;}
.v3{vertical-align:79.800000px;}
.ls3c{letter-spacing:-1.140000px;}
.lsd{letter-spacing:-0.990000px;}
.ls46{letter-spacing:-0.840000px;}
.ls28{letter-spacing:-0.798000px;}
.lsb{letter-spacing:-0.792000px;}
.ls31{letter-spacing:-0.741000px;}
.ls9{letter-spacing:-0.726000px;}
.ls1b{letter-spacing:-0.684000px;}
.lsf{letter-spacing:-0.660000px;}
.ls1a{letter-spacing:-0.627000px;}
.ls47{letter-spacing:-0.600000px;}
.ls30{letter-spacing:-0.594000px;}
.ls27{letter-spacing:-0.570000px;}
.ls10{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.528000px;}
.ls32{letter-spacing:-0.513000px;}
.ls48{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.462000px;}
.ls4{letter-spacing:-0.456000px;}
.ls17{letter-spacing:-0.399000px;}
.lsa{letter-spacing:-0.396000px;}
.ls4b{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.342000px;}
.lsc{letter-spacing:-0.330000px;}
.ls45{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.285000px;}
.ls14{letter-spacing:-0.264000px;}
.ls49{letter-spacing:-0.240000px;}
.ls26{letter-spacing:-0.228000px;}
.ls3{letter-spacing:-0.198000px;}
.ls4c{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.171000px;}
.ls2{letter-spacing:-0.132000px;}
.ls16{letter-spacing:-0.066000px;}
.ls43{letter-spacing:-0.060000px;}
.ls19{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000030px;}
.ls0{letter-spacing:0.000240px;}
.ls41{letter-spacing:0.060000px;}
.ls1c{letter-spacing:0.066000px;}
.ls2d{letter-spacing:0.114000px;}
.ls4a{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.132000px;}
.ls3d{letter-spacing:0.156000px;}
.ls12{letter-spacing:0.198000px;}
.ls3b{letter-spacing:0.228000px;}
.ls8{letter-spacing:0.264000px;}
.ls34{letter-spacing:0.285000px;}
.ls21{letter-spacing:0.330000px;}
.ls44{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.396000px;}
.ls5{letter-spacing:0.468000px;}
.ls3e{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.528000px;}
.ls1d{letter-spacing:0.594000px;}
.ls40{letter-spacing:0.600000px;}
.ls33{letter-spacing:0.627000px;}
.ls1f{letter-spacing:0.660000px;}
.ls38{letter-spacing:0.726000px;}
.ls2a{letter-spacing:0.741000px;}
.ls1e{letter-spacing:0.759000px;}
.ls42{letter-spacing:0.840000px;}
.ls39{letter-spacing:0.855000px;}
.ls36{letter-spacing:0.891000px;}
.ls3f{letter-spacing:0.900000px;}
.ls25{letter-spacing:1.140000px;}
.ls13{letter-spacing:1.188000px;}
.ls22{letter-spacing:1.425000px;}
.ls2b{letter-spacing:1.596000px;}
.ls23{letter-spacing:1.653000px;}
.ls2e{letter-spacing:1.710000px;}
.ls35{letter-spacing:2.112000px;}
.ls11{letter-spacing:2.277000px;}
.ls2f{letter-spacing:2.793000px;}
.ls37{letter-spacing:7.392000px;}
.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;}
}
.ws3{word-spacing:-43.416870px;}
.ws52{word-spacing:-16.344000px;}
.ws2{word-spacing:-16.068000px;}
.wsc7{word-spacing:-15.048000px;}
.wsfc{word-spacing:-13.800000px;}
.ws7e{word-spacing:-13.110000px;}
.wsab{word-spacing:-12.939000px;}
.ws1{word-spacing:-9.252210px;}
.wsa9{word-spacing:-8.849940px;}
.wsad{word-spacing:-7.643130px;}
.ws7{word-spacing:-3.828000px;}
.ws6{word-spacing:-3.762000px;}
.wsc{word-spacing:-3.564000px;}
.wsa8{word-spacing:-3.363000px;}
.wsb3{word-spacing:-3.306000px;}
.wsa{word-spacing:-3.300000px;}
.ws12{word-spacing:-3.249000px;}
.ws10{word-spacing:-3.192000px;}
.wsf6{word-spacing:-2.970000px;}
.wse1{word-spacing:-2.850000px;}
.wsb8{word-spacing:-2.508000px;}
.wscf{word-spacing:-2.337000px;}
.wsb{word-spacing:-2.244000px;}
.ws5{word-spacing:-2.178000px;}
.wsc3{word-spacing:-1.710000px;}
.wsa7{word-spacing:-1.653000px;}
.wsf9{word-spacing:-1.320000px;}
.wsb7{word-spacing:-1.311000px;}
.ws111{word-spacing:-1.200000px;}
.wsda{word-spacing:-1.140000px;}
.wsd{word-spacing:-0.660000px;}
.wsd7{word-spacing:-0.627000px;}
.ws9a{word-spacing:-0.513000px;}
.wsa6{word-spacing:-0.330000px;}
.ws8{word-spacing:-0.264000px;}
.wsed{word-spacing:-0.234000px;}
.wsfb{word-spacing:-0.198000px;}
.wsb6{word-spacing:-0.171000px;}
.wsf0{word-spacing:-0.066000px;}
.ws0{word-spacing:-0.045000px;}
.ws4{word-spacing:0.000000px;}
.ws43{word-spacing:0.060000px;}
.wsf7{word-spacing:0.066000px;}
.ws23{word-spacing:0.132000px;}
.wse4{word-spacing:0.171000px;}
.ws8f{word-spacing:0.198000px;}
.wsd9{word-spacing:0.285000px;}
.ws44{word-spacing:0.300000px;}
.ws89{word-spacing:0.330000px;}
.ws22{word-spacing:0.396000px;}
.wsa3{word-spacing:0.462000px;}
.ws107{word-spacing:0.480000px;}
.ws2d{word-spacing:0.528000px;}
.ws116{word-spacing:0.540000px;}
.wse7{word-spacing:0.570000px;}
.wsc1{word-spacing:0.594000px;}
.ws79{word-spacing:0.627000px;}
.ws73{word-spacing:0.684000px;}
.wscb{word-spacing:0.726000px;}
.ws42{word-spacing:0.792000px;}
.ws11{word-spacing:0.798000px;}
.ws103{word-spacing:0.840000px;}
.wse6{word-spacing:0.855000px;}
.wsf2{word-spacing:0.858000px;}
.wsc4{word-spacing:0.912000px;}
.ws3a{word-spacing:0.924000px;}
.ws48{word-spacing:0.960000px;}
.wsd0{word-spacing:0.969000px;}
.ws31{word-spacing:0.990000px;}
.ws10f{word-spacing:1.020000px;}
.wsb0{word-spacing:1.056000px;}
.ws75{word-spacing:1.083000px;}
.ws9e{word-spacing:1.122000px;}
.wsbc{word-spacing:1.140000px;}
.wsa1{word-spacing:1.188000px;}
.wsbe{word-spacing:1.254000px;}
.ws82{word-spacing:1.320000px;}
.ws10b{word-spacing:1.380000px;}
.wsf{word-spacing:1.386000px;}
.wsdf{word-spacing:1.425000px;}
.ws1f{word-spacing:1.452000px;}
.ws71{word-spacing:1.482000px;}
.ws104{word-spacing:1.500000px;}
.ws1e{word-spacing:1.518000px;}
.ws109{word-spacing:1.560000px;}
.wsbf{word-spacing:1.584000px;}
.ws2a{word-spacing:1.650000px;}
.ws70{word-spacing:1.653000px;}
.ws38{word-spacing:1.716000px;}
.wsef{word-spacing:1.782000px;}
.ws24{word-spacing:1.848000px;}
.wsd4{word-spacing:1.881000px;}
.ws21{word-spacing:1.980000px;}
.ws13{word-spacing:2.046000px;}
.ws1b{word-spacing:2.112000px;}
.wsbb{word-spacing:2.166000px;}
.wsa5{word-spacing:2.178000px;}
.ws47{word-spacing:2.220000px;}
.wsb4{word-spacing:2.223000px;}
.ws20{word-spacing:2.244000px;}
.ws7b{word-spacing:2.280000px;}
.ws101{word-spacing:2.340000px;}
.wseb{word-spacing:2.376000px;}
.wsec{word-spacing:2.508000px;}
.wsd1{word-spacing:2.565000px;}
.ws3d{word-spacing:2.574000px;}
.wse8{word-spacing:2.622000px;}
.ws9{word-spacing:2.640000px;}
.ws10e{word-spacing:2.700000px;}
.ws26{word-spacing:2.772000px;}
.ws105{word-spacing:2.820000px;}
.wsf5{word-spacing:2.904000px;}
.wsb9{word-spacing:2.964000px;}
.ws6a{word-spacing:2.970000px;}
.ws66{word-spacing:3.036000px;}
.ws110{word-spacing:3.060000px;}
.ws115{word-spacing:3.120000px;}
.ws14{word-spacing:3.168000px;}
.ws15{word-spacing:3.234000px;}
.wse9{word-spacing:3.249000px;}
.ws98{word-spacing:3.300000px;}
.wse3{word-spacing:3.363000px;}
.ws67{word-spacing:3.366000px;}
.ws39{word-spacing:3.432000px;}
.ws6d{word-spacing:3.498000px;}
.wsd5{word-spacing:3.534000px;}
.wsf8{word-spacing:3.564000px;}
.ws49{word-spacing:3.630000px;}
.wse2{word-spacing:3.648000px;}
.ws29{word-spacing:3.696000px;}
.ws108{word-spacing:3.720000px;}
.ws2c{word-spacing:3.762000px;}
.ws7a{word-spacing:3.876000px;}
.ws84{word-spacing:3.894000px;}
.wsfd{word-spacing:3.900000px;}
.wsee{word-spacing:3.960000px;}
.ws17{word-spacing:4.026000px;}
.wsd2{word-spacing:4.047000px;}
.wse{word-spacing:4.092000px;}
.ws3e{word-spacing:4.158000px;}
.wsd8{word-spacing:4.218000px;}
.wsfa{word-spacing:4.224000px;}
.ws72{word-spacing:4.275000px;}
.ws1a{word-spacing:4.290000px;}
.wsc2{word-spacing:4.332000px;}
.ws2b{word-spacing:4.422000px;}
.ws62{word-spacing:4.488000px;}
.ws90{word-spacing:4.554000px;}
.ws112{word-spacing:4.560000px;}
.ws53{word-spacing:4.620000px;}
.wsd6{word-spacing:4.674000px;}
.ws61{word-spacing:4.686000px;}
.ws65{word-spacing:4.752000px;}
.ws113{word-spacing:4.800000px;}
.ws1d{word-spacing:4.818000px;}
.ws100{word-spacing:4.860000px;}
.ws96{word-spacing:4.884000px;}
.ws4d{word-spacing:4.950000px;}
.ws88{word-spacing:5.016000px;}
.ws106{word-spacing:5.040000px;}
.ws3b{word-spacing:5.082000px;}
.ws56{word-spacing:5.148000px;}
.ws74{word-spacing:5.187000px;}
.ws8d{word-spacing:5.214000px;}
.wsd3{word-spacing:5.244000px;}
.wsc8{word-spacing:5.358000px;}
.ws2f{word-spacing:5.412000px;}
.ws41{word-spacing:5.478000px;}
.wsc5{word-spacing:5.529000px;}
.wsa0{word-spacing:5.544000px;}
.ws7f{word-spacing:5.610000px;}
.ws6b{word-spacing:5.676000px;}
.ws76{word-spacing:5.700000px;}
.ws59{word-spacing:5.742000px;}
.ws63{word-spacing:5.808000px;}
.ws7d{word-spacing:5.880000px;}
.ws85{word-spacing:6.006000px;}
.ws51{word-spacing:6.048000px;}
.wse5{word-spacing:6.156000px;}
.wsba{word-spacing:6.270000px;}
.ws3f{word-spacing:6.336000px;}
.ws40{word-spacing:6.402000px;}
.wsea{word-spacing:6.468000px;}
.ws114{word-spacing:6.480000px;}
.ws5c{word-spacing:6.534000px;}
.wsb5{word-spacing:6.555000px;}
.ws81{word-spacing:6.732000px;}
.ws27{word-spacing:6.864000px;}
.ws54{word-spacing:6.930000px;}
.ws93{word-spacing:6.996000px;}
.ws92{word-spacing:7.128000px;}
.ws2e{word-spacing:7.194000px;}
.wsa2{word-spacing:7.260000px;}
.ws6e{word-spacing:7.326000px;}
.ws8e{word-spacing:7.392000px;}
.ws7c{word-spacing:7.467000px;}
.wsb1{word-spacing:7.524000px;}
.wsbd{word-spacing:7.590000px;}
.wsc0{word-spacing:7.656000px;}
.ws4b{word-spacing:7.722000px;}
.ws3c{word-spacing:7.788000px;}
.ws35{word-spacing:7.800000px;}
.ws36{word-spacing:7.920000px;}
.ws83{word-spacing:7.986000px;}
.ws91{word-spacing:8.052000px;}
.ws86{word-spacing:8.118000px;}
.ws94{word-spacing:8.184000px;}
.ws45{word-spacing:8.220000px;}
.ws37{word-spacing:8.250000px;}
.ws33{word-spacing:8.514000px;}
.wsdc{word-spacing:8.567400px;}
.ws16{word-spacing:8.580000px;}
.ws50{word-spacing:8.646000px;}
.ws4c{word-spacing:8.844000px;}
.ws6c{word-spacing:8.910000px;}
.ws9f{word-spacing:8.976000px;}
.ws8a{word-spacing:9.042000px;}
.wsf3{word-spacing:9.108000px;}
.ws1c{word-spacing:9.174000px;}
.ws5d{word-spacing:9.240000px;}
.wse0{word-spacing:9.306000px;}
.ws4f{word-spacing:9.372000px;}
.ws78{word-spacing:9.519000px;}
.ws5e{word-spacing:9.570000px;}
.ws95{word-spacing:9.702000px;}
.wsf4{word-spacing:9.834000px;}
.ws60{word-spacing:9.900000px;}
.ws6f{word-spacing:9.966000px;}
.ws77{word-spacing:10.089000px;}
.ws97{word-spacing:10.164000px;}
.wsde{word-spacing:10.317000px;}
.ws10c{word-spacing:10.320000px;}
.wsca{word-spacing:10.488000px;}
.ws10a{word-spacing:10.500000px;}
.ws9c{word-spacing:10.560000px;}
.ws55{word-spacing:10.626000px;}
.ws102{word-spacing:10.740000px;}
.ws5b{word-spacing:10.824000px;}
.wscc{word-spacing:11.088000px;}
.ws46{word-spacing:11.100000px;}
.ws25{word-spacing:11.154000px;}
.ws30{word-spacing:11.220000px;}
.ws64{word-spacing:11.286000px;}
.ws99{word-spacing:11.352000px;}
.ws68{word-spacing:11.484000px;}
.wsce{word-spacing:11.550000px;}
.wsaa{word-spacing:11.628000px;}
.ws18{word-spacing:11.682000px;}
.ws10d{word-spacing:11.700000px;}
.ws57{word-spacing:11.880000px;}
.wsf1{word-spacing:12.012000px;}
.ws80{word-spacing:12.144000px;}
.wsa4{word-spacing:12.210000px;}
.ws34{word-spacing:12.276000px;}
.ws58{word-spacing:12.540000px;}
.ws5f{word-spacing:12.870000px;}
.wsaf{word-spacing:12.936000px;}
.ws8b{word-spacing:13.002000px;}
.ws8c{word-spacing:13.068000px;}
.ws19{word-spacing:13.200000px;}
.ws9d{word-spacing:13.266000px;}
.ws87{word-spacing:13.530000px;}
.ws32{word-spacing:13.596000px;}
.wsfe{word-spacing:13.740000px;}
.wsff{word-spacing:13.800000px;}
.wscd{word-spacing:13.926000px;}
.wsae{word-spacing:14.148000px;}
.ws4e{word-spacing:14.190000px;}
.wsc9{word-spacing:14.250000px;}
.ws4a{word-spacing:14.322000px;}
.ws5a{word-spacing:14.652000px;}
.wsb2{word-spacing:14.718000px;}
.ws69{word-spacing:14.784000px;}
.ws28{word-spacing:15.180000px;}
.wsac{word-spacing:432.231000px;}
.ws9b{word-spacing:641.364000px;}
.wsc6{word-spacing:758.499000px;}
.wsdd{word-spacing:760.551000px;}
.wsdb{word-spacing:790.647000px;}
._9{margin-left:-22.902000px;}
._7{margin-left:-14.459700px;}
._3{margin-left:-10.949700px;}
._13{margin-left:-9.630900px;}
._27{margin-left:-7.909200px;}
._b{margin-left:-6.384000px;}
._8{margin-left:-5.375400px;}
._0{margin-left:-3.280500px;}
._4{margin-left:-2.230800px;}
._2{margin-left:-1.221000px;}
._1{width:1.554000px;}
._14{width:2.964000px;}
._22{width:4.104000px;}
._1b{width:7.590000px;}
._28{width:11.650800px;}
._23{width:12.936000px;}
._1a{width:18.867000px;}
._1e{width:23.383800px;}
._21{width:25.828800px;}
._1d{width:27.025800px;}
._1c{width:31.357800px;}
._20{width:33.672000px;}
._1f{width:35.332800px;}
._2c{width:42.130800px;}
._19{width:45.087000px;}
._16{width:48.392835px;}
._15{width:49.988484px;}
._2b{width:51.070800px;}
._2a{width:52.581000px;}
._5{width:61.405683px;}
._18{width:63.327000px;}
._26{width:65.980500px;}
._25{width:67.240500px;}
._6{width:71.934000px;}
._24{width:77.530800px;}
._29{width:78.610800px;}
._17{width:81.567000px;}
._e{width:346.047600px;}
._f{width:418.900800px;}
._12{width:428.991600px;}
._d{width:516.549600px;}
._10{width:615.916800px;}
._11{width:664.798800px;}
._a{width:772.170000px;}
._c{width:1088.472000px;}
.fc1{color:rgb(147,149,152);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.231000px;}
.fsc{font-size:38.478000px;}
.fs4{font-size:40.227000px;}
.fsb{font-size:42.000000px;}
.fs1{font-size:45.000000px;}
.fse{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs2{font-size:111.000000px;}
.fs8{font-size:188.769000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.313900px;}
.y2{bottom:55.202700px;}
.y86{bottom:55.317900px;}
.y158{bottom:124.091850px;}
.y22a{bottom:125.856150px;}
.y106{bottom:126.980700px;}
.y21{bottom:127.316250px;}
.y124{bottom:128.680650px;}
.y285{bottom:129.375000px;}
.y258{bottom:129.451950px;}
.y84{bottom:131.203500px;}
.ye9{bottom:131.268000px;}
.y57{bottom:131.631000px;}
.ybe{bottom:131.670000px;}
.y90{bottom:131.692500px;}
.y170{bottom:133.342500px;}
.y1a6{bottom:134.282250px;}
.y1d1{bottom:136.190700px;}
.y1fe{bottom:137.313600px;}
.y157{bottom:139.994850px;}
.y24f{bottom:144.389700px;}
.y229{bottom:145.804650px;}
.y105{bottom:146.929200px;}
.y123{bottom:148.629150px;}
.y284{bottom:149.325000px;}
.y257{bottom:149.400450px;}
.y16f{bottom:149.544750px;}
.ybd{bottom:149.667750px;}
.y20{bottom:150.059250px;}
.y83{bottom:151.152000px;}
.y56{bottom:151.579500px;}
.y8f{bottom:151.641000px;}
.y1d0{bottom:152.392950px;}
.y1a5{bottom:154.230750px;}
.ye8{bottom:154.709250px;}
.y156{bottom:155.897850px;}
.y1fd{bottom:157.762350px;}
.y104{bottom:166.877700px;}
.ybc{bottom:167.665500px;}
.y16e{bottom:167.870250px;}
.y1f{bottom:168.059250px;}
.y122{bottom:168.577650px;}
.y1cf{bottom:168.595200px;}
.y283{bottom:169.275000px;}
.y256{bottom:169.348950px;}
.y82{bottom:171.100500px;}
.y55{bottom:171.528000px;}
.y8e{bottom:171.589500px;}
.y155{bottom:171.800850px;}
.y1a4{bottom:174.179250px;}
.ye7{bottom:178.150500px;}
.y1fc{bottom:178.211100px;}
.y1e{bottom:181.316250px;}
.y24e{bottom:184.286700px;}
.y1ce{bottom:184.797450px;}
.ybb{bottom:185.663250px;}
.y228{bottom:185.704800px;}
.y16d{bottom:186.195750px;}
.y103{bottom:186.826200px;}
.y154{bottom:187.703850px;}
.y121{bottom:188.526150px;}
.y282{bottom:189.225000px;}
.y255{bottom:189.297450px;}
.y81{bottom:191.049000px;}
.y54{bottom:191.476500px;}
.y8d{bottom:191.538000px;}
.y1a3{bottom:194.127750px;}
.y1fb{bottom:198.659850px;}
.y1cd{bottom:200.999700px;}
.ye6{bottom:201.591750px;}
.y153{bottom:203.606850px;}
.yba{bottom:203.661000px;}
.y1d{bottom:204.059250px;}
.y24d{bottom:204.235200px;}
.y16c{bottom:204.521250px;}
.y102{bottom:206.774700px;}
.y120{bottom:208.474650px;}
.y281{bottom:209.175000px;}
.y254{bottom:209.245950px;}
.y80{bottom:210.997500px;}
.y53{bottom:211.425000px;}
.y8c{bottom:211.486500px;}
.y1a2{bottom:214.076250px;}
.y1c{bottom:217.316250px;}
.y1fa{bottom:219.108600px;}
.y152{bottom:219.509850px;}
.yb9{bottom:221.658750px;}
.y16b{bottom:222.846750px;}
.y24c{bottom:224.183700px;}
.ye5{bottom:225.033000px;}
.y101{bottom:226.723200px;}
.y1cc{bottom:227.404950px;}
.y11f{bottom:228.423150px;}
.y280{bottom:229.125000px;}
.y253{bottom:229.194450px;}
.y7f{bottom:230.946000px;}
.y52{bottom:231.375000px;}
.y8b{bottom:231.435000px;}
.y1a1{bottom:234.024750px;}
.y151{bottom:235.412850px;}
.y16a{bottom:239.049000px;}
.y1f9{bottom:239.557350px;}
.yb8{bottom:239.656500px;}
.y1b{bottom:240.059250px;}
.y1cb{bottom:243.607200px;}
.y24b{bottom:244.132200px;}
.y227{bottom:245.571150px;}
.y100{bottom:246.671700px;}
.y11e{bottom:248.371650px;}
.ye4{bottom:248.474250px;}
.y27f{bottom:249.075000px;}
.y252{bottom:249.142950px;}
.y7e{bottom:250.894500px;}
.y150{bottom:251.315850px;}
.y8a{bottom:251.383500px;}
.y1a0{bottom:253.973250px;}
.y169{bottom:257.374500px;}
.yb7{bottom:257.654250px;}
.y1ca{bottom:259.809450px;}
.y1f8{bottom:261.119250px;}
.y1a{bottom:262.312500px;}
.y24a{bottom:264.080700px;}
.y226{bottom:265.519650px;}
.yff{bottom:266.620200px;}
.y14f{bottom:267.218850px;}
.y11d{bottom:268.320150px;}
.y27e{bottom:269.025000px;}
.y251{bottom:269.091450px;}
.y7d{bottom:270.843000px;}
.y51{bottom:271.275000px;}
.y89{bottom:271.332000px;}
.ye3{bottom:271.915500px;}
.y19f{bottom:273.921750px;}
.yb6{bottom:275.652000px;}
.y168{bottom:275.700000px;}
.y1f7{bottom:279.891000px;}
.y14e{bottom:283.121850px;}
.y249{bottom:284.029200px;}
.y225{bottom:285.468150px;}
.y1c9{bottom:286.214700px;}
.yfe{bottom:286.568700px;}
.ye2{bottom:288.117750px;}
.y11c{bottom:288.268650px;}
.y27d{bottom:288.975000px;}
.y250{bottom:289.039950px;}
.y19{bottom:289.316250px;}
.y7c{bottom:290.791500px;}
.y88{bottom:291.280500px;}
.y167{bottom:291.902250px;}
.yb5{bottom:293.649750px;}
.y19e{bottom:293.870250px;}
.y1f6{bottom:299.835000px;}
.y14d{bottom:303.770100px;}
.y248{bottom:303.977700px;}
.y224{bottom:305.416650px;}
.yfd{bottom:306.517200px;}
.y18{bottom:307.314000px;}
.y11b{bottom:308.217150px;}
.y27c{bottom:308.925000px;}
.y166{bottom:310.227750px;}
.y7b{bottom:310.740000px;}
.y87{bottom:311.229000px;}
.ye1{bottom:311.559000px;}
.yb4{bottom:311.647500px;}
.y1c8{bottom:312.619950px;}
.y19d{bottom:313.818750px;}
.y14c{bottom:314.918850px;}
.y1f5{bottom:319.779000px;}
.y247{bottom:323.926200px;}
.y223{bottom:325.365150px;}
.yfc{bottom:326.465700px;}
.y11a{bottom:328.165650px;}
.y165{bottom:328.553250px;}
.y1c7{bottom:328.822200px;}
.y27b{bottom:328.875000px;}
.yb3{bottom:329.645250px;}
.y7a{bottom:330.688500px;}
.y14b{bottom:330.821850px;}
.y50{bottom:331.177500px;}
.y19c{bottom:333.767250px;}
.ye0{bottom:335.000250px;}
.y246{bottom:343.874700px;}
.y164{bottom:344.755500px;}
.y222{bottom:345.313650px;}
.yfb{bottom:346.414200px;}
.yb2{bottom:347.643000px;}
.y119{bottom:348.114150px;}
.y27a{bottom:348.825000px;}
.y79{bottom:350.637000px;}
.y4f{bottom:351.126000px;}
.y14a{bottom:351.470100px;}
.y26{bottom:351.576600px;}
.y19b{bottom:353.715750px;}
.y2c{bottom:353.837100px;}
.y1c6{bottom:355.227450px;}
.y1f4{bottom:359.695500px;}
.y163{bottom:360.957750px;}
.y245{bottom:363.823200px;}
.y221{bottom:365.262150px;}
.ydf{bottom:365.542650px;}
.yb1{bottom:365.640750px;}
.yfa{bottom:366.362700px;}
.y118{bottom:368.062650px;}
.y279{bottom:368.775000px;}
.y78{bottom:370.585500px;}
.y4e{bottom:371.074500px;}
.y1c5{bottom:371.429700px;}
.y25{bottom:371.525100px;}
.y19a{bottom:373.664250px;}
.y2b{bottom:373.785600px;}
.y162{bottom:377.160000px;}
.y1f3{bottom:379.644000px;}
.yb0{bottom:383.638500px;}
.y244{bottom:383.771700px;}
.y149{bottom:383.868300px;}
.y220{bottom:385.210650px;}
.yf9{bottom:386.311200px;}
.y1c4{bottom:387.631950px;}
.y117{bottom:388.011150px;}
.y278{bottom:388.725000px;}
.y77{bottom:390.534000px;}
.y4d{bottom:391.023000px;}
.y23{bottom:391.472100px;}
.y24{bottom:391.473600px;}
.y199{bottom:393.612750px;}
.y2a{bottom:393.734100px;}
.y161{bottom:395.485500px;}
.y1f2{bottom:399.592500px;}
.yaf{bottom:401.636250px;}
.y141{bottom:403.077300px;}
.y243{bottom:403.720200px;}
.y1c3{bottom:403.834200px;}
.y21f{bottom:405.159150px;}
.yf8{bottom:406.259700px;}
.y116{bottom:407.959650px;}
.y277{bottom:408.675000px;}
.y76{bottom:410.482500px;}
.y4c{bottom:410.971500px;}
.yde{bottom:411.021000px;}
.y148{bottom:411.157050px;}
.y160{bottom:411.687750px;}
.y2a5{bottom:412.050000px;}
.y198{bottom:413.561250px;}
.y29{bottom:413.682600px;}
.y140{bottom:419.279550px;}
.y1f1{bottom:419.541000px;}
.yae{bottom:419.634000px;}
.y242{bottom:423.668700px;}
.y21e{bottom:425.107650px;}
.yf7{bottom:426.208200px;}
.y147{bottom:427.359300px;}
.y115{bottom:427.908150px;}
.y276{bottom:428.625000px;}
.y15f{bottom:430.013250px;}
.y1c2{bottom:430.239450px;}
.y75{bottom:430.431000px;}
.y4b{bottom:430.920000px;}
.ydd{bottom:430.969500px;}
.y2a4{bottom:432.000000px;}
.y197{bottom:433.509750px;}
.y28{bottom:433.631100px;}
.y13f{bottom:435.481800px;}
.yad{bottom:437.631750px;}
.y1f0{bottom:439.489500px;}
.y146{bottom:443.561550px;}
.y241{bottom:443.617200px;}
.y21d{bottom:445.056150px;}
.yf6{bottom:446.156700px;}
.y15e{bottom:446.215500px;}
.y114{bottom:447.856650px;}
.y275{bottom:448.575000px;}
.y74{bottom:450.379500px;}
.y4a{bottom:450.868500px;}
.ydc{bottom:450.918000px;}
.y22{bottom:451.322100px;}
.y13e{bottom:451.684050px;}
.y2a3{bottom:451.950000px;}
.y196{bottom:453.458250px;}
.y27{bottom:453.579600px;}
.yac{bottom:455.629500px;}
.y1c1{bottom:456.644700px;}
.y1ef{bottom:459.438000px;}
.y145{bottom:459.763800px;}
.y15d{bottom:464.541000px;}
.y21c{bottom:465.004650px;}
.yf5{bottom:466.105200px;}
.y113{bottom:467.805150px;}
.y13d{bottom:467.886300px;}
.y274{bottom:468.525000px;}
.y73{bottom:470.328000px;}
.y49{bottom:470.817000px;}
.ydb{bottom:470.866500px;}
.y2a2{bottom:471.900000px;}
.y195{bottom:473.406750px;}
.yab{bottom:473.627250px;}
.y240{bottom:474.067200px;}
.y144{bottom:475.966050px;}
.y1ee{bottom:479.386500px;}
.y1c0{bottom:483.049950px;}
.y13c{bottom:484.088550px;}
.yf4{bottom:486.053700px;}
.y112{bottom:487.753650px;}
.y15c{bottom:487.984500px;}
.y273{bottom:488.475000px;}
.y72{bottom:490.276500px;}
.y48{bottom:490.765500px;}
.yda{bottom:490.815000px;}
.yaa{bottom:491.625000px;}
.y2a1{bottom:491.850000px;}
.y143{bottom:492.168300px;}
.y194{bottom:493.355250px;}
.y1bf{bottom:499.252200px;}
.y1ed{bottom:499.335000px;}
.y13b{bottom:500.290800px;}
.y21b{bottom:505.507200px;}
.yf3{bottom:506.002200px;}
.y111{bottom:507.702150px;}
.y142{bottom:508.370550px;}
.y272{bottom:508.425000px;}
.y71{bottom:510.225000px;}
.y15b{bottom:510.687000px;}
.y47{bottom:510.714000px;}
.yd9{bottom:510.763500px;}
.y2a0{bottom:511.800000px;}
.y193{bottom:513.303750px;}
.y13a{bottom:516.493050px;}
.y1ec{bottom:519.283500px;}
.y1be{bottom:525.657450px;}
.yf2{bottom:525.950700px;}
.y16{bottom:526.940100px;}
.y110{bottom:527.650650px;}
.y271{bottom:528.375000px;}
.y218{bottom:528.948450px;}
.y15a{bottom:530.631000px;}
.ya9{bottom:530.641500px;}
.y46{bottom:530.662500px;}
.yd8{bottom:530.712000px;}
.y29f{bottom:531.750000px;}
.y192{bottom:533.252250px;}
.y139{bottom:535.687800px;}
.y1eb{bottom:539.232000px;}
.y1bd{bottom:541.859700px;}
.yf1{bottom:545.899200px;}
.y217{bottom:546.048450px;}
.y15{bottom:546.443100px;}
.y70{bottom:548.175000px;}
.y270{bottom:548.325000px;}
.y159{bottom:550.575000px;}
.ya8{bottom:550.590000px;}
.y45{bottom:550.611000px;}
.yd7{bottom:550.660500px;}
.y29e{bottom:551.700000px;}
.y138{bottom:551.890050px;}
.y191{bottom:553.200750px;}
.y1bc{bottom:558.061950px;}
.y1ea{bottom:559.180500px;}
.yf0{bottom:565.847700px;}
.y6f{bottom:566.175000px;}
.y10f{bottom:567.076800px;}
.y216{bottom:567.394950px;}
.y26f{bottom:568.275000px;}
.ya7{bottom:570.538500px;}
.y44{bottom:570.559500px;}
.yd6{bottom:570.609000px;}
.y29d{bottom:571.650000px;}
.y190{bottom:573.149250px;}
.y1bb{bottom:574.264200px;}
.y1e9{bottom:579.129000px;}
.y6e{bottom:584.175000px;}
.y215{bottom:584.494950px;}
.yef{bottom:585.796200px;}
.y14{bottom:586.340100px;}
.y26e{bottom:588.225000px;}
.y10e{bottom:589.135800px;}
.y1ba{bottom:590.466450px;}
.ya6{bottom:590.487000px;}
.y43{bottom:590.508000px;}
.yd5{bottom:590.557500px;}
.y137{bottom:591.378450px;}
.y29c{bottom:591.600000px;}
.y18f{bottom:593.097750px;}
.y6d{bottom:602.175000px;}
.yee{bottom:605.744700px;}
.y214{bottom:605.841450px;}
.y13{bottom:606.288600px;}
.y136{bottom:607.580700px;}
.y26d{bottom:608.175000px;}
.y21a{bottom:610.102200px;}
.ya5{bottom:610.435500px;}
.y42{bottom:610.456500px;}
.yd4{bottom:610.506000px;}
.y29b{bottom:611.550000px;}
.y18e{bottom:613.046250px;}
.y1b9{bottom:616.871700px;}
.y10c{bottom:617.735550px;}
.y6c{bottom:620.175000px;}
.y1e8{bottom:621.282000px;}
.y135{bottom:623.782950px;}
.yed{bottom:625.693200px;}
.y12{bottom:626.237100px;}
.y213{bottom:627.187950px;}
.y219{bottom:627.202200px;}
.y26c{bottom:628.125000px;}
.ya4{bottom:630.384000px;}
.y41{bottom:630.405000px;}
.y23f{bottom:630.438000px;}
.yd3{bottom:630.454500px;}
.y29a{bottom:631.500000px;}
.y18d{bottom:632.994750px;}
.y1b8{bottom:633.073950px;}
.y10b{bottom:633.937800px;}
.y6b{bottom:638.175000px;}
.y134{bottom:639.985200px;}
.y1e4{bottom:643.038750px;}
.y212{bottom:644.287950px;}
.yec{bottom:645.641700px;}
.y11{bottom:646.185600px;}
.y26b{bottom:648.075000px;}
.y10a{bottom:650.140050px;}
.ya3{bottom:650.332500px;}
.y40{bottom:650.353500px;}
.y23e{bottom:650.386500px;}
.yd2{bottom:650.403000px;}
.y299{bottom:651.450000px;}
.y18c{bottom:652.943250px;}
.y6a{bottom:656.175000px;}
.y133{bottom:656.187450px;}
.y10d{bottom:658.234050px;}
.y1e3{bottom:659.241000px;}
.y1b7{bottom:659.479200px;}
.y211{bottom:665.634450px;}
.y10{bottom:666.134100px;}
.y109{bottom:666.342300px;}
.y26a{bottom:668.025000px;}
.ya2{bottom:670.281000px;}
.y3f{bottom:670.302000px;}
.y23d{bottom:670.335000px;}
.yd1{bottom:670.351500px;}
.y298{bottom:671.400000px;}
.y132{bottom:672.389700px;}
.y69{bottom:674.175000px;}
.y1b6{bottom:675.681450px;}
.y1e2{bottom:679.689750px;}
.y108{bottom:682.544550px;}
.yeb{bottom:685.543200px;}
.yf{bottom:686.082600px;}
.y210{bottom:686.980950px;}
.y269{bottom:687.975000px;}
.y131{bottom:688.591950px;}
.ya1{bottom:690.229500px;}
.y3e{bottom:690.250500px;}
.y23c{bottom:690.283500px;}
.yd0{bottom:690.300000px;}
.y297{bottom:691.350000px;}
.y1b5{bottom:691.883700px;}
.y18b{bottom:693.426750px;}
.y1e1{bottom:695.892000px;}
.y107{bottom:698.746800px;}
.y130{bottom:704.794200px;}
.yea{bottom:705.491700px;}
.ye{bottom:706.031100px;}
.y268{bottom:707.925000px;}
.y1b4{bottom:708.085950px;}
.y20f{bottom:708.327450px;}
.ya0{bottom:710.178000px;}
.y3d{bottom:710.199000px;}
.y68{bottom:710.203500px;}
.y23b{bottom:710.232000px;}
.ycf{bottom:710.248500px;}
.y296{bottom:711.300000px;}
.y1e0{bottom:712.094250px;}
.y180{bottom:716.896500px;}
.y12f{bottom:720.996450px;}
.y1b3{bottom:724.288200px;}
.yd{bottom:725.979600px;}
.y267{bottom:727.875000px;}
.y9f{bottom:730.126500px;}
.y3c{bottom:730.147500px;}
.y67{bottom:730.152000px;}
.y23a{bottom:730.180500px;}
.yce{bottom:730.197000px;}
.y295{bottom:731.250000px;}
.y20e{bottom:731.768700px;}
.y1df{bottom:732.543000px;}
.y12e{bottom:737.198700px;}
.y17f{bottom:739.468500px;}
.yc{bottom:745.928100px;}
.y266{bottom:747.825000px;}
.y1de{bottom:748.745250px;}
.y20d{bottom:748.868700px;}
.y9e{bottom:750.075000px;}
.y3b{bottom:750.096000px;}
.y66{bottom:750.100500px;}
.y239{bottom:750.129000px;}
.ycd{bottom:750.145500px;}
.y1b2{bottom:750.693450px;}
.y294{bottom:751.200000px;}
.y12d{bottom:753.400950px;}
.y17e{bottom:762.040500px;}
.yb{bottom:765.876600px;}
.y1b1{bottom:766.895700px;}
.y265{bottom:767.775000px;}
.y1dd{bottom:769.194000px;}
.y12c{bottom:769.603200px;}
.y9d{bottom:770.031000px;}
.y3a{bottom:770.044500px;}
.y65{bottom:770.049000px;}
.y238{bottom:770.077500px;}
.ycc{bottom:770.094000px;}
.y127{bottom:770.670000px;}
.y293{bottom:771.150000px;}
.y18a{bottom:777.972000px;}
.y17d{bottom:778.242750px;}
.y1dc{bottom:785.396250px;}
.ya{bottom:785.825100px;}
.y264{bottom:787.725000px;}
.y126{bottom:787.770000px;}
.y12b{bottom:788.797950px;}
.y9c{bottom:789.975000px;}
.y39{bottom:789.993000px;}
.y64{bottom:789.997500px;}
.y237{bottom:790.026000px;}
.ycb{bottom:790.042500px;}
.y20c{bottom:790.514700px;}
.y292{bottom:791.100000px;}
.y1b0{bottom:793.300950px;}
.y189{bottom:794.174250px;}
.y1e7{bottom:797.736750px;}
.y17c{bottom:800.814750px;}
.y125{bottom:804.870000px;}
.y9{bottom:805.773600px;}
.y1db{bottom:805.845000px;}
.y20b{bottom:806.716950px;}
.y263{bottom:807.675000px;}
.y1af{bottom:809.503200px;}
.y12a{bottom:809.937000px;}
.y38{bottom:809.941500px;}
.y63{bottom:809.946000px;}
.y236{bottom:809.974500px;}
.yca{bottom:809.991000px;}
.y188{bottom:810.376500px;}
.y291{bottom:811.050000px;}
.y1e6{bottom:813.939000px;}
.y1da{bottom:822.047250px;}
.y20a{bottom:822.919200px;}
.y17b{bottom:823.386750px;}
.y8{bottom:825.722100px;}
.y187{bottom:826.578750px;}
.y262{bottom:827.625000px;}
.y1ae{bottom:828.697950px;}
.y129{bottom:829.881000px;}
.y37{bottom:829.890000px;}
.y62{bottom:829.894500px;}
.y235{bottom:829.923000px;}
.yc9{bottom:829.939500px;}
.y9b{bottom:829.956000px;}
.y1e5{bottom:830.141250px;}
.y290{bottom:831.000000px;}
.y209{bottom:839.121450px;}
.y17a{bottom:839.589000px;}
.y1d9{bottom:842.496000px;}
.y186{bottom:842.781000px;}
.y261{bottom:847.575000px;}
.y128{bottom:849.825000px;}
.y36{bottom:849.838500px;}
.y61{bottom:849.843000px;}
.y234{bottom:849.871500px;}
.yc8{bottom:849.888000px;}
.y9a{bottom:849.904500px;}
.y28f{bottom:850.950000px;}
.y208{bottom:855.323700px;}
.y185{bottom:858.983250px;}
.y179{bottom:862.161000px;}
.y1d8{bottom:862.944750px;}
.y260{bottom:867.525000px;}
.y35{bottom:869.787000px;}
.y60{bottom:869.791500px;}
.y233{bottom:869.820000px;}
.yc7{bottom:869.836500px;}
.y99{bottom:869.853000px;}
.y28e{bottom:870.900000px;}
.y184{bottom:875.185500px;}
.y207{bottom:875.772450px;}
.y1d7{bottom:879.147000px;}
.y178{bottom:884.733000px;}
.y25f{bottom:887.475000px;}
.y1ad{bottom:889.731000px;}
.y34{bottom:889.735500px;}
.y5f{bottom:889.740000px;}
.y232{bottom:889.768500px;}
.yc6{bottom:889.785000px;}
.y98{bottom:889.801500px;}
.y28d{bottom:890.850000px;}
.y183{bottom:891.387750px;}
.y206{bottom:891.974700px;}
.y7{bottom:892.472100px;}
.y1d6{bottom:899.595750px;}
.y177{bottom:900.935250px;}
.y25e{bottom:907.425000px;}
.y182{bottom:907.590000px;}
.y1ac{bottom:909.675000px;}
.y33{bottom:909.684000px;}
.y5e{bottom:909.688500px;}
.y231{bottom:909.717000px;}
.yc5{bottom:909.733500px;}
.y97{bottom:909.750000px;}
.y28c{bottom:910.800000px;}
.y205{bottom:912.423450px;}
.y1d5{bottom:915.798000px;}
.y6{bottom:921.676050px;}
.y176{bottom:923.507250px;}
.y181{bottom:923.792250px;}
.y25d{bottom:927.375000px;}
.y32{bottom:929.632500px;}
.y5d{bottom:929.637000px;}
.y230{bottom:929.665500px;}
.yc4{bottom:929.682000px;}
.y96{bottom:929.698500px;}
.y28b{bottom:930.750000px;}
.y204{bottom:932.872200px;}
.y1d4{bottom:936.246750px;}
.y175{bottom:939.709500px;}
.y25c{bottom:947.325000px;}
.y31{bottom:949.581000px;}
.y5c{bottom:949.585500px;}
.y1ab{bottom:949.613250px;}
.y22f{bottom:949.614000px;}
.yc3{bottom:949.630500px;}
.y95{bottom:949.647000px;}
.y28a{bottom:950.700000px;}
.y1d3{bottom:952.449000px;}
.y203{bottom:953.320950px;}
.y5{bottom:954.976050px;}
.y174{bottom:962.281500px;}
.y25b{bottom:967.275000px;}
.y1d2{bottom:968.651250px;}
.y30{bottom:969.529500px;}
.y5b{bottom:969.534000px;}
.y1aa{bottom:969.561750px;}
.y22e{bottom:969.562500px;}
.yc2{bottom:969.579000px;}
.y94{bottom:969.595500px;}
.y289{bottom:970.650000px;}
.y202{bottom:973.769700px;}
.y173{bottom:984.853500px;}
.y25a{bottom:987.225000px;}
.y4{bottom:988.276050px;}
.y2f{bottom:989.478000px;}
.y5a{bottom:989.482500px;}
.y1a9{bottom:989.510250px;}
.y22d{bottom:989.511000px;}
.yc1{bottom:989.527500px;}
.y93{bottom:989.544000px;}
.y201{bottom:989.971950px;}
.y288{bottom:990.600000px;}
.y172{bottom:1008.294750px;}
.y2e{bottom:1009.426500px;}
.y59{bottom:1009.431000px;}
.y1a8{bottom:1009.458750px;}
.y22c{bottom:1009.459500px;}
.yc0{bottom:1009.476000px;}
.y92{bottom:1009.492500px;}
.y200{bottom:1010.420700px;}
.y287{bottom:1010.550000px;}
.y3{bottom:1021.576050px;}
.y171{bottom:1024.497000px;}
.y1ff{bottom:1026.622950px;}
.y259{bottom:1027.125000px;}
.y2d{bottom:1029.375000px;}
.y58{bottom:1029.379500px;}
.y1a7{bottom:1029.407250px;}
.y22b{bottom:1029.408000px;}
.ybf{bottom:1029.424500px;}
.y91{bottom:1029.441000px;}
.y286{bottom:1030.500000px;}
.y17{bottom:1110.000600px;}
.y85{bottom:1114.547400px;}
.hb{height:23.693703px;}
.h15{height:26.767200px;}
.h11{height:31.787109px;}
.h3{height:34.057617px;}
.h19{height:36.279600px;}
.h18{height:38.998200px;}
.h17{height:39.604980px;}
.h13{height:40.470000px;}
.ha{height:40.641000px;}
.h14{height:40.869000px;}
.h16{height:43.340400px;}
.h12{height:45.748200px;}
.h8{height:46.992000px;}
.h7{height:47.322000px;}
.h2{height:47.727539px;}
.h10{height:48.156000px;}
.hf{height:51.120000px;}
.he{height:52.971600px;}
.h1a{height:54.600000px;}
.h6{height:55.379400px;}
.hc{height:55.380000px;}
.h9{height:63.583008px;}
.h4{height:78.033000px;}
.h5{height:79.143000px;}
.hd{height:151.505999px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:85.200000px;}
.x2e{left:89.489400px;}
.x18{left:90.758250px;}
.x10{left:92.178000px;}
.x19{left:99.978000px;}
.x3{left:106.275000px;}
.x2f{left:108.623250px;}
.x28{left:110.694750px;}
.x23{left:111.991500px;}
.x15{left:114.996450px;}
.x36{left:119.100000px;}
.x9{left:121.200000px;}
.xc{left:127.494000px;}
.x6{left:132.418800px;}
.x4{left:159.450000px;}
.x1d{left:171.570000px;}
.x2d{left:313.658550px;}
.x2b{left:315.824550px;}
.x16{left:316.877250px;}
.x1b{left:325.869000px;}
.x17{left:327.721500px;}
.xf{left:330.178800px;}
.x2c{left:331.200300px;}
.x1a{left:333.735000px;}
.x1c{left:335.445000px;}
.x21{left:337.569000px;}
.x25{left:342.157500px;}
.x26{left:346.432500px;}
.x22{left:348.413250px;}
.x5{left:354.117000px;}
.x27{left:356.421750px;}
.x24{left:373.536000px;}
.x11{left:444.894000px;}
.xa{left:457.131000px;}
.x35{left:461.551500px;}
.x33{left:462.834000px;}
.x1e{left:463.959450px;}
.x34{left:472.053750px;}
.x7{left:478.357800px;}
.x30{left:480.698250px;}
.x29{left:482.789400px;}
.x12{left:484.915500px;}
.x1f{left:487.076250px;}
.x37{left:491.175000px;}
.xd{left:499.575000px;}
.x2a{left:504.050400px;}
.x20{left:521.575500px;}
.xb{left:553.465500px;}
.x13{left:662.898000px;}
.x14{left:671.836950px;}
.x31{left:688.924500px;}
.x2{left:693.697650px;}
.xe{left:696.140100px;}
.x32{left:699.768750px;}
.x1{left:779.981250px;}
@media print{
.v2{vertical-align:-16.872000pt;}
.v7{vertical-align:-8.416533pt;}
.v6{vertical-align:-6.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.418667pt;}
.v5{vertical-align:19.498667pt;}
.v1{vertical-align:20.424000pt;}
.v3{vertical-align:70.933333pt;}
.ls3c{letter-spacing:-1.013333pt;}
.lsd{letter-spacing:-0.880000pt;}
.ls46{letter-spacing:-0.746667pt;}
.ls28{letter-spacing:-0.709333pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls31{letter-spacing:-0.658667pt;}
.ls9{letter-spacing:-0.645333pt;}
.ls1b{letter-spacing:-0.608000pt;}
.lsf{letter-spacing:-0.586667pt;}
.ls1a{letter-spacing:-0.557333pt;}
.ls47{letter-spacing:-0.533333pt;}
.ls30{letter-spacing:-0.528000pt;}
.ls27{letter-spacing:-0.506667pt;}
.ls10{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.469333pt;}
.ls32{letter-spacing:-0.456000pt;}
.ls48{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.410667pt;}
.ls4{letter-spacing:-0.405333pt;}
.ls17{letter-spacing:-0.354667pt;}
.lsa{letter-spacing:-0.352000pt;}
.ls4b{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.304000pt;}
.lsc{letter-spacing:-0.293333pt;}
.ls45{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.253333pt;}
.ls14{letter-spacing:-0.234667pt;}
.ls49{letter-spacing:-0.213333pt;}
.ls26{letter-spacing:-0.202667pt;}
.ls3{letter-spacing:-0.176000pt;}
.ls4c{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.152000pt;}
.ls2{letter-spacing:-0.117333pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls43{letter-spacing:-0.053333pt;}
.ls19{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000027pt;}
.ls0{letter-spacing:0.000213pt;}
.ls41{letter-spacing:0.053333pt;}
.ls1c{letter-spacing:0.058667pt;}
.ls2d{letter-spacing:0.101333pt;}
.ls4a{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.117333pt;}
.ls3d{letter-spacing:0.138667pt;}
.ls12{letter-spacing:0.176000pt;}
.ls3b{letter-spacing:0.202667pt;}
.ls8{letter-spacing:0.234667pt;}
.ls34{letter-spacing:0.253333pt;}
.ls21{letter-spacing:0.293333pt;}
.ls44{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.352000pt;}
.ls5{letter-spacing:0.416000pt;}
.ls3e{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.469333pt;}
.ls1d{letter-spacing:0.528000pt;}
.ls40{letter-spacing:0.533333pt;}
.ls33{letter-spacing:0.557333pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls38{letter-spacing:0.645333pt;}
.ls2a{letter-spacing:0.658667pt;}
.ls1e{letter-spacing:0.674667pt;}
.ls42{letter-spacing:0.746667pt;}
.ls39{letter-spacing:0.760000pt;}
.ls36{letter-spacing:0.792000pt;}
.ls3f{letter-spacing:0.800000pt;}
.ls25{letter-spacing:1.013333pt;}
.ls13{letter-spacing:1.056000pt;}
.ls22{letter-spacing:1.266667pt;}
.ls2b{letter-spacing:1.418667pt;}
.ls23{letter-spacing:1.469333pt;}
.ls2e{letter-spacing:1.520000pt;}
.ls35{letter-spacing:1.877333pt;}
.ls11{letter-spacing:2.024000pt;}
.ls2f{letter-spacing:2.482667pt;}
.ls37{letter-spacing:6.570667pt;}
.ws3{word-spacing:-38.592773pt;}
.ws52{word-spacing:-14.528000pt;}
.ws2{word-spacing:-14.282667pt;}
.wsc7{word-spacing:-13.376000pt;}
.wsfc{word-spacing:-12.266667pt;}
.ws7e{word-spacing:-11.653333pt;}
.wsab{word-spacing:-11.501333pt;}
.ws1{word-spacing:-8.224187pt;}
.wsa9{word-spacing:-7.866613pt;}
.wsad{word-spacing:-6.793893pt;}
.ws7{word-spacing:-3.402667pt;}
.ws6{word-spacing:-3.344000pt;}
.wsc{word-spacing:-3.168000pt;}
.wsa8{word-spacing:-2.989333pt;}
.wsb3{word-spacing:-2.938667pt;}
.wsa{word-spacing:-2.933333pt;}
.ws12{word-spacing:-2.888000pt;}
.ws10{word-spacing:-2.837333pt;}
.wsf6{word-spacing:-2.640000pt;}
.wse1{word-spacing:-2.533333pt;}
.wsb8{word-spacing:-2.229333pt;}
.wscf{word-spacing:-2.077333pt;}
.wsb{word-spacing:-1.994667pt;}
.ws5{word-spacing:-1.936000pt;}
.wsc3{word-spacing:-1.520000pt;}
.wsa7{word-spacing:-1.469333pt;}
.wsf9{word-spacing:-1.173333pt;}
.wsb7{word-spacing:-1.165333pt;}
.ws111{word-spacing:-1.066667pt;}
.wsda{word-spacing:-1.013333pt;}
.wsd{word-spacing:-0.586667pt;}
.wsd7{word-spacing:-0.557333pt;}
.ws9a{word-spacing:-0.456000pt;}
.wsa6{word-spacing:-0.293333pt;}
.ws8{word-spacing:-0.234667pt;}
.wsed{word-spacing:-0.208000pt;}
.wsfb{word-spacing:-0.176000pt;}
.wsb6{word-spacing:-0.152000pt;}
.wsf0{word-spacing:-0.058667pt;}
.ws0{word-spacing:-0.040000pt;}
.ws4{word-spacing:0.000000pt;}
.ws43{word-spacing:0.053333pt;}
.wsf7{word-spacing:0.058667pt;}
.ws23{word-spacing:0.117333pt;}
.wse4{word-spacing:0.152000pt;}
.ws8f{word-spacing:0.176000pt;}
.wsd9{word-spacing:0.253333pt;}
.ws44{word-spacing:0.266667pt;}
.ws89{word-spacing:0.293333pt;}
.ws22{word-spacing:0.352000pt;}
.wsa3{word-spacing:0.410667pt;}
.ws107{word-spacing:0.426667pt;}
.ws2d{word-spacing:0.469333pt;}
.ws116{word-spacing:0.480000pt;}
.wse7{word-spacing:0.506667pt;}
.wsc1{word-spacing:0.528000pt;}
.ws79{word-spacing:0.557333pt;}
.ws73{word-spacing:0.608000pt;}
.wscb{word-spacing:0.645333pt;}
.ws42{word-spacing:0.704000pt;}
.ws11{word-spacing:0.709333pt;}
.ws103{word-spacing:0.746667pt;}
.wse6{word-spacing:0.760000pt;}
.wsf2{word-spacing:0.762667pt;}
.wsc4{word-spacing:0.810667pt;}
.ws3a{word-spacing:0.821333pt;}
.ws48{word-spacing:0.853333pt;}
.wsd0{word-spacing:0.861333pt;}
.ws31{word-spacing:0.880000pt;}
.ws10f{word-spacing:0.906667pt;}
.wsb0{word-spacing:0.938667pt;}
.ws75{word-spacing:0.962667pt;}
.ws9e{word-spacing:0.997333pt;}
.wsbc{word-spacing:1.013333pt;}
.wsa1{word-spacing:1.056000pt;}
.wsbe{word-spacing:1.114667pt;}
.ws82{word-spacing:1.173333pt;}
.ws10b{word-spacing:1.226667pt;}
.wsf{word-spacing:1.232000pt;}
.wsdf{word-spacing:1.266667pt;}
.ws1f{word-spacing:1.290667pt;}
.ws71{word-spacing:1.317333pt;}
.ws104{word-spacing:1.333333pt;}
.ws1e{word-spacing:1.349333pt;}
.ws109{word-spacing:1.386667pt;}
.wsbf{word-spacing:1.408000pt;}
.ws2a{word-spacing:1.466667pt;}
.ws70{word-spacing:1.469333pt;}
.ws38{word-spacing:1.525333pt;}
.wsef{word-spacing:1.584000pt;}
.ws24{word-spacing:1.642667pt;}
.wsd4{word-spacing:1.672000pt;}
.ws21{word-spacing:1.760000pt;}
.ws13{word-spacing:1.818667pt;}
.ws1b{word-spacing:1.877333pt;}
.wsbb{word-spacing:1.925333pt;}
.wsa5{word-spacing:1.936000pt;}
.ws47{word-spacing:1.973333pt;}
.wsb4{word-spacing:1.976000pt;}
.ws20{word-spacing:1.994667pt;}
.ws7b{word-spacing:2.026667pt;}
.ws101{word-spacing:2.080000pt;}
.wseb{word-spacing:2.112000pt;}
.wsec{word-spacing:2.229333pt;}
.wsd1{word-spacing:2.280000pt;}
.ws3d{word-spacing:2.288000pt;}
.wse8{word-spacing:2.330667pt;}
.ws9{word-spacing:2.346667pt;}
.ws10e{word-spacing:2.400000pt;}
.ws26{word-spacing:2.464000pt;}
.ws105{word-spacing:2.506667pt;}
.wsf5{word-spacing:2.581333pt;}
.wsb9{word-spacing:2.634667pt;}
.ws6a{word-spacing:2.640000pt;}
.ws66{word-spacing:2.698667pt;}
.ws110{word-spacing:2.720000pt;}
.ws115{word-spacing:2.773333pt;}
.ws14{word-spacing:2.816000pt;}
.ws15{word-spacing:2.874667pt;}
.wse9{word-spacing:2.888000pt;}
.ws98{word-spacing:2.933333pt;}
.wse3{word-spacing:2.989333pt;}
.ws67{word-spacing:2.992000pt;}
.ws39{word-spacing:3.050667pt;}
.ws6d{word-spacing:3.109333pt;}
.wsd5{word-spacing:3.141333pt;}
.wsf8{word-spacing:3.168000pt;}
.ws49{word-spacing:3.226667pt;}
.wse2{word-spacing:3.242667pt;}
.ws29{word-spacing:3.285333pt;}
.ws108{word-spacing:3.306667pt;}
.ws2c{word-spacing:3.344000pt;}
.ws7a{word-spacing:3.445333pt;}
.ws84{word-spacing:3.461333pt;}
.wsfd{word-spacing:3.466667pt;}
.wsee{word-spacing:3.520000pt;}
.ws17{word-spacing:3.578667pt;}
.wsd2{word-spacing:3.597333pt;}
.wse{word-spacing:3.637333pt;}
.ws3e{word-spacing:3.696000pt;}
.wsd8{word-spacing:3.749333pt;}
.wsfa{word-spacing:3.754667pt;}
.ws72{word-spacing:3.800000pt;}
.ws1a{word-spacing:3.813333pt;}
.wsc2{word-spacing:3.850667pt;}
.ws2b{word-spacing:3.930667pt;}
.ws62{word-spacing:3.989333pt;}
.ws90{word-spacing:4.048000pt;}
.ws112{word-spacing:4.053333pt;}
.ws53{word-spacing:4.106667pt;}
.wsd6{word-spacing:4.154667pt;}
.ws61{word-spacing:4.165333pt;}
.ws65{word-spacing:4.224000pt;}
.ws113{word-spacing:4.266667pt;}
.ws1d{word-spacing:4.282667pt;}
.ws100{word-spacing:4.320000pt;}
.ws96{word-spacing:4.341333pt;}
.ws4d{word-spacing:4.400000pt;}
.ws88{word-spacing:4.458667pt;}
.ws106{word-spacing:4.480000pt;}
.ws3b{word-spacing:4.517333pt;}
.ws56{word-spacing:4.576000pt;}
.ws74{word-spacing:4.610667pt;}
.ws8d{word-spacing:4.634667pt;}
.wsd3{word-spacing:4.661333pt;}
.wsc8{word-spacing:4.762667pt;}
.ws2f{word-spacing:4.810667pt;}
.ws41{word-spacing:4.869333pt;}
.wsc5{word-spacing:4.914667pt;}
.wsa0{word-spacing:4.928000pt;}
.ws7f{word-spacing:4.986667pt;}
.ws6b{word-spacing:5.045333pt;}
.ws76{word-spacing:5.066667pt;}
.ws59{word-spacing:5.104000pt;}
.ws63{word-spacing:5.162667pt;}
.ws7d{word-spacing:5.226667pt;}
.ws85{word-spacing:5.338667pt;}
.ws51{word-spacing:5.376000pt;}
.wse5{word-spacing:5.472000pt;}
.wsba{word-spacing:5.573333pt;}
.ws3f{word-spacing:5.632000pt;}
.ws40{word-spacing:5.690667pt;}
.wsea{word-spacing:5.749333pt;}
.ws114{word-spacing:5.760000pt;}
.ws5c{word-spacing:5.808000pt;}
.wsb5{word-spacing:5.826667pt;}
.ws81{word-spacing:5.984000pt;}
.ws27{word-spacing:6.101333pt;}
.ws54{word-spacing:6.160000pt;}
.ws93{word-spacing:6.218667pt;}
.ws92{word-spacing:6.336000pt;}
.ws2e{word-spacing:6.394667pt;}
.wsa2{word-spacing:6.453333pt;}
.ws6e{word-spacing:6.512000pt;}
.ws8e{word-spacing:6.570667pt;}
.ws7c{word-spacing:6.637333pt;}
.wsb1{word-spacing:6.688000pt;}
.wsbd{word-spacing:6.746667pt;}
.wsc0{word-spacing:6.805333pt;}
.ws4b{word-spacing:6.864000pt;}
.ws3c{word-spacing:6.922667pt;}
.ws35{word-spacing:6.933333pt;}
.ws36{word-spacing:7.040000pt;}
.ws83{word-spacing:7.098667pt;}
.ws91{word-spacing:7.157333pt;}
.ws86{word-spacing:7.216000pt;}
.ws94{word-spacing:7.274667pt;}
.ws45{word-spacing:7.306667pt;}
.ws37{word-spacing:7.333333pt;}
.ws33{word-spacing:7.568000pt;}
.wsdc{word-spacing:7.615467pt;}
.ws16{word-spacing:7.626667pt;}
.ws50{word-spacing:7.685333pt;}
.ws4c{word-spacing:7.861333pt;}
.ws6c{word-spacing:7.920000pt;}
.ws9f{word-spacing:7.978667pt;}
.ws8a{word-spacing:8.037333pt;}
.wsf3{word-spacing:8.096000pt;}
.ws1c{word-spacing:8.154667pt;}
.ws5d{word-spacing:8.213333pt;}
.wse0{word-spacing:8.272000pt;}
.ws4f{word-spacing:8.330667pt;}
.ws78{word-spacing:8.461333pt;}
.ws5e{word-spacing:8.506667pt;}
.ws95{word-spacing:8.624000pt;}
.wsf4{word-spacing:8.741333pt;}
.ws60{word-spacing:8.800000pt;}
.ws6f{word-spacing:8.858667pt;}
.ws77{word-spacing:8.968000pt;}
.ws97{word-spacing:9.034667pt;}
.wsde{word-spacing:9.170667pt;}
.ws10c{word-spacing:9.173333pt;}
.wsca{word-spacing:9.322667pt;}
.ws10a{word-spacing:9.333333pt;}
.ws9c{word-spacing:9.386667pt;}
.ws55{word-spacing:9.445333pt;}
.ws102{word-spacing:9.546667pt;}
.ws5b{word-spacing:9.621333pt;}
.wscc{word-spacing:9.856000pt;}
.ws46{word-spacing:9.866667pt;}
.ws25{word-spacing:9.914667pt;}
.ws30{word-spacing:9.973333pt;}
.ws64{word-spacing:10.032000pt;}
.ws99{word-spacing:10.090667pt;}
.ws68{word-spacing:10.208000pt;}
.wsce{word-spacing:10.266667pt;}
.wsaa{word-spacing:10.336000pt;}
.ws18{word-spacing:10.384000pt;}
.ws10d{word-spacing:10.400000pt;}
.ws57{word-spacing:10.560000pt;}
.wsf1{word-spacing:10.677333pt;}
.ws80{word-spacing:10.794667pt;}
.wsa4{word-spacing:10.853333pt;}
.ws34{word-spacing:10.912000pt;}
.ws58{word-spacing:11.146667pt;}
.ws5f{word-spacing:11.440000pt;}
.wsaf{word-spacing:11.498667pt;}
.ws8b{word-spacing:11.557333pt;}
.ws8c{word-spacing:11.616000pt;}
.ws19{word-spacing:11.733333pt;}
.ws9d{word-spacing:11.792000pt;}
.ws87{word-spacing:12.026667pt;}
.ws32{word-spacing:12.085333pt;}
.wsfe{word-spacing:12.213333pt;}
.wsff{word-spacing:12.266667pt;}
.wscd{word-spacing:12.378667pt;}
.wsae{word-spacing:12.576000pt;}
.ws4e{word-spacing:12.613333pt;}
.wsc9{word-spacing:12.666667pt;}
.ws4a{word-spacing:12.730667pt;}
.ws5a{word-spacing:13.024000pt;}
.wsb2{word-spacing:13.082667pt;}
.ws69{word-spacing:13.141333pt;}
.ws28{word-spacing:13.493333pt;}
.wsac{word-spacing:384.205333pt;}
.ws9b{word-spacing:570.101333pt;}
.wsc6{word-spacing:674.221333pt;}
.wsdd{word-spacing:676.045333pt;}
.wsdb{word-spacing:702.797333pt;}
._9{margin-left:-20.357333pt;}
._7{margin-left:-12.853067pt;}
._3{margin-left:-9.733067pt;}
._13{margin-left:-8.560800pt;}
._27{margin-left:-7.030400pt;}
._b{margin-left:-5.674667pt;}
._8{margin-left:-4.778133pt;}
._0{margin-left:-2.916000pt;}
._4{margin-left:-1.982933pt;}
._2{margin-left:-1.085333pt;}
._1{width:1.381333pt;}
._14{width:2.634667pt;}
._22{width:3.648000pt;}
._1b{width:6.746667pt;}
._28{width:10.356267pt;}
._23{width:11.498667pt;}
._1a{width:16.770667pt;}
._1e{width:20.785600pt;}
._21{width:22.958933pt;}
._1d{width:24.022933pt;}
._1c{width:27.873600pt;}
._20{width:29.930667pt;}
._1f{width:31.406933pt;}
._2c{width:37.449600pt;}
._19{width:40.077333pt;}
._16{width:43.015853pt;}
._15{width:44.434208pt;}
._2b{width:45.396267pt;}
._2a{width:46.738667pt;}
._5{width:54.582829pt;}
._18{width:56.290667pt;}
._26{width:58.649333pt;}
._25{width:59.769333pt;}
._6{width:63.941333pt;}
._24{width:68.916267pt;}
._29{width:69.876267pt;}
._17{width:72.504000pt;}
._e{width:307.597867pt;}
._f{width:372.356267pt;}
._12{width:381.325867pt;}
._d{width:459.155200pt;}
._10{width:547.481600pt;}
._11{width:590.932267pt;}
._a{width:686.373333pt;}
._c{width:967.530667pt;}
.fs6{font-size:29.538667pt;}
.fsc{font-size:34.202667pt;}
.fs4{font-size:35.757333pt;}
.fsb{font-size:37.333333pt;}
.fs1{font-size:40.000000pt;}
.fse{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs2{font-size:98.666667pt;}
.fs8{font-size:167.794667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.390133pt;}
.y2{bottom:49.069067pt;}
.y86{bottom:49.171467pt;}
.y158{bottom:110.303867pt;}
.y22a{bottom:111.872133pt;}
.y106{bottom:112.871733pt;}
.y21{bottom:113.170000pt;}
.y124{bottom:114.382800pt;}
.y285{bottom:115.000000pt;}
.y258{bottom:115.068400pt;}
.y84{bottom:116.625333pt;}
.ye9{bottom:116.682667pt;}
.y57{bottom:117.005333pt;}
.ybe{bottom:117.040000pt;}
.y90{bottom:117.060000pt;}
.y170{bottom:118.526667pt;}
.y1a6{bottom:119.362000pt;}
.y1d1{bottom:121.058400pt;}
.y1fe{bottom:122.056533pt;}
.y157{bottom:124.439867pt;}
.y24f{bottom:128.346400pt;}
.y229{bottom:129.604133pt;}
.y105{bottom:130.603733pt;}
.y123{bottom:132.114800pt;}
.y284{bottom:132.733333pt;}
.y257{bottom:132.800400pt;}
.y16f{bottom:132.928667pt;}
.ybd{bottom:133.038000pt;}
.y20{bottom:133.386000pt;}
.y83{bottom:134.357333pt;}
.y56{bottom:134.737333pt;}
.y8f{bottom:134.792000pt;}
.y1d0{bottom:135.460400pt;}
.y1a5{bottom:137.094000pt;}
.ye8{bottom:137.519333pt;}
.y156{bottom:138.575867pt;}
.y1fd{bottom:140.233200pt;}
.y104{bottom:148.335733pt;}
.ybc{bottom:149.036000pt;}
.y16e{bottom:149.218000pt;}
.y1f{bottom:149.386000pt;}
.y122{bottom:149.846800pt;}
.y1cf{bottom:149.862400pt;}
.y283{bottom:150.466667pt;}
.y256{bottom:150.532400pt;}
.y82{bottom:152.089333pt;}
.y55{bottom:152.469333pt;}
.y8e{bottom:152.524000pt;}
.y155{bottom:152.711867pt;}
.y1a4{bottom:154.826000pt;}
.ye7{bottom:158.356000pt;}
.y1fc{bottom:158.409867pt;}
.y1e{bottom:161.170000pt;}
.y24e{bottom:163.810400pt;}
.y1ce{bottom:164.264400pt;}
.ybb{bottom:165.034000pt;}
.y228{bottom:165.070933pt;}
.y16d{bottom:165.507333pt;}
.y103{bottom:166.067733pt;}
.y154{bottom:166.847867pt;}
.y121{bottom:167.578800pt;}
.y282{bottom:168.200000pt;}
.y255{bottom:168.264400pt;}
.y81{bottom:169.821333pt;}
.y54{bottom:170.201333pt;}
.y8d{bottom:170.256000pt;}
.y1a3{bottom:172.558000pt;}
.y1fb{bottom:176.586533pt;}
.y1cd{bottom:178.666400pt;}
.ye6{bottom:179.192667pt;}
.y153{bottom:180.983867pt;}
.yba{bottom:181.032000pt;}
.y1d{bottom:181.386000pt;}
.y24d{bottom:181.542400pt;}
.y16c{bottom:181.796667pt;}
.y102{bottom:183.799733pt;}
.y120{bottom:185.310800pt;}
.y281{bottom:185.933333pt;}
.y254{bottom:185.996400pt;}
.y80{bottom:187.553333pt;}
.y53{bottom:187.933333pt;}
.y8c{bottom:187.988000pt;}
.y1a2{bottom:190.290000pt;}
.y1c{bottom:193.170000pt;}
.y1fa{bottom:194.763200pt;}
.y152{bottom:195.119867pt;}
.yb9{bottom:197.030000pt;}
.y16b{bottom:198.086000pt;}
.y24c{bottom:199.274400pt;}
.ye5{bottom:200.029333pt;}
.y101{bottom:201.531733pt;}
.y1cc{bottom:202.137733pt;}
.y11f{bottom:203.042800pt;}
.y280{bottom:203.666667pt;}
.y253{bottom:203.728400pt;}
.y7f{bottom:205.285333pt;}
.y52{bottom:205.666667pt;}
.y8b{bottom:205.720000pt;}
.y1a1{bottom:208.022000pt;}
.y151{bottom:209.255867pt;}
.y16a{bottom:212.488000pt;}
.y1f9{bottom:212.939867pt;}
.yb8{bottom:213.028000pt;}
.y1b{bottom:213.386000pt;}
.y1cb{bottom:216.539733pt;}
.y24b{bottom:217.006400pt;}
.y227{bottom:218.285467pt;}
.y100{bottom:219.263733pt;}
.y11e{bottom:220.774800pt;}
.ye4{bottom:220.866000pt;}
.y27f{bottom:221.400000pt;}
.y252{bottom:221.460400pt;}
.y7e{bottom:223.017333pt;}
.y150{bottom:223.391867pt;}
.y8a{bottom:223.452000pt;}
.y1a0{bottom:225.754000pt;}
.y169{bottom:228.777333pt;}
.yb7{bottom:229.026000pt;}
.y1ca{bottom:230.941733pt;}
.y1f8{bottom:232.106000pt;}
.y1a{bottom:233.166667pt;}
.y24a{bottom:234.738400pt;}
.y226{bottom:236.017467pt;}
.yff{bottom:236.995733pt;}
.y14f{bottom:237.527867pt;}
.y11d{bottom:238.506800pt;}
.y27e{bottom:239.133333pt;}
.y251{bottom:239.192400pt;}
.y7d{bottom:240.749333pt;}
.y51{bottom:241.133333pt;}
.y89{bottom:241.184000pt;}
.ye3{bottom:241.702667pt;}
.y19f{bottom:243.486000pt;}
.yb6{bottom:245.024000pt;}
.y168{bottom:245.066667pt;}
.y1f7{bottom:248.792000pt;}
.y14e{bottom:251.663867pt;}
.y249{bottom:252.470400pt;}
.y225{bottom:253.749467pt;}
.y1c9{bottom:254.413067pt;}
.yfe{bottom:254.727733pt;}
.ye2{bottom:256.104667pt;}
.y11c{bottom:256.238800pt;}
.y27d{bottom:256.866667pt;}
.y250{bottom:256.924400pt;}
.y19{bottom:257.170000pt;}
.y7c{bottom:258.481333pt;}
.y88{bottom:258.916000pt;}
.y167{bottom:259.468667pt;}
.yb5{bottom:261.022000pt;}
.y19e{bottom:261.218000pt;}
.y1f6{bottom:266.520000pt;}
.y14d{bottom:270.017867pt;}
.y248{bottom:270.202400pt;}
.y224{bottom:271.481467pt;}
.yfd{bottom:272.459733pt;}
.y18{bottom:273.168000pt;}
.y11b{bottom:273.970800pt;}
.y27c{bottom:274.600000pt;}
.y166{bottom:275.758000pt;}
.y7b{bottom:276.213333pt;}
.y87{bottom:276.648000pt;}
.ye1{bottom:276.941333pt;}
.yb4{bottom:277.020000pt;}
.y1c8{bottom:277.884400pt;}
.y19d{bottom:278.950000pt;}
.y14c{bottom:279.927867pt;}
.y1f5{bottom:284.248000pt;}
.y247{bottom:287.934400pt;}
.y223{bottom:289.213467pt;}
.yfc{bottom:290.191733pt;}
.y11a{bottom:291.702800pt;}
.y165{bottom:292.047333pt;}
.y1c7{bottom:292.286400pt;}
.y27b{bottom:292.333333pt;}
.yb3{bottom:293.018000pt;}
.y7a{bottom:293.945333pt;}
.y14b{bottom:294.063867pt;}
.y50{bottom:294.380000pt;}
.y19c{bottom:296.682000pt;}
.ye0{bottom:297.778000pt;}
.y246{bottom:305.666400pt;}
.y164{bottom:306.449333pt;}
.y222{bottom:306.945467pt;}
.yfb{bottom:307.923733pt;}
.yb2{bottom:309.016000pt;}
.y119{bottom:309.434800pt;}
.y27a{bottom:310.066667pt;}
.y79{bottom:311.677333pt;}
.y4f{bottom:312.112000pt;}
.y14a{bottom:312.417867pt;}
.y26{bottom:312.512533pt;}
.y19b{bottom:314.414000pt;}
.y2c{bottom:314.521867pt;}
.y1c6{bottom:315.757733pt;}
.y1f4{bottom:319.729333pt;}
.y163{bottom:320.851333pt;}
.y245{bottom:323.398400pt;}
.y221{bottom:324.677467pt;}
.ydf{bottom:324.926800pt;}
.yb1{bottom:325.014000pt;}
.yfa{bottom:325.655733pt;}
.y118{bottom:327.166800pt;}
.y279{bottom:327.800000pt;}
.y78{bottom:329.409333pt;}
.y4e{bottom:329.844000pt;}
.y1c5{bottom:330.159733pt;}
.y25{bottom:330.244533pt;}
.y19a{bottom:332.146000pt;}
.y2b{bottom:332.253867pt;}
.y162{bottom:335.253333pt;}
.y1f3{bottom:337.461333pt;}
.yb0{bottom:341.012000pt;}
.y244{bottom:341.130400pt;}
.y149{bottom:341.216267pt;}
.y220{bottom:342.409467pt;}
.yf9{bottom:343.387733pt;}
.y1c4{bottom:344.561733pt;}
.y117{bottom:344.898800pt;}
.y278{bottom:345.533333pt;}
.y77{bottom:347.141333pt;}
.y4d{bottom:347.576000pt;}
.y23{bottom:347.975200pt;}
.y24{bottom:347.976533pt;}
.y199{bottom:349.878000pt;}
.y2a{bottom:349.985867pt;}
.y161{bottom:351.542667pt;}
.y1f2{bottom:355.193333pt;}
.yaf{bottom:357.010000pt;}
.y141{bottom:358.290933pt;}
.y243{bottom:358.862400pt;}
.y1c3{bottom:358.963733pt;}
.y21f{bottom:360.141467pt;}
.yf8{bottom:361.119733pt;}
.y116{bottom:362.630800pt;}
.y277{bottom:363.266667pt;}
.y76{bottom:364.873333pt;}
.y4c{bottom:365.308000pt;}
.yde{bottom:365.352000pt;}
.y148{bottom:365.472933pt;}
.y160{bottom:365.944667pt;}
.y2a5{bottom:366.266667pt;}
.y198{bottom:367.610000pt;}
.y29{bottom:367.717867pt;}
.y140{bottom:372.692933pt;}
.y1f1{bottom:372.925333pt;}
.yae{bottom:373.008000pt;}
.y242{bottom:376.594400pt;}
.y21e{bottom:377.873467pt;}
.yf7{bottom:378.851733pt;}
.y147{bottom:379.874933pt;}
.y115{bottom:380.362800pt;}
.y276{bottom:381.000000pt;}
.y15f{bottom:382.234000pt;}
.y1c2{bottom:382.435067pt;}
.y75{bottom:382.605333pt;}
.y4b{bottom:383.040000pt;}
.ydd{bottom:383.084000pt;}
.y2a4{bottom:384.000000pt;}
.y197{bottom:385.342000pt;}
.y28{bottom:385.449867pt;}
.y13f{bottom:387.094933pt;}
.yad{bottom:389.006000pt;}
.y1f0{bottom:390.657333pt;}
.y146{bottom:394.276933pt;}
.y241{bottom:394.326400pt;}
.y21d{bottom:395.605467pt;}
.yf6{bottom:396.583733pt;}
.y15e{bottom:396.636000pt;}
.y114{bottom:398.094800pt;}
.y275{bottom:398.733333pt;}
.y74{bottom:400.337333pt;}
.y4a{bottom:400.772000pt;}
.ydc{bottom:400.816000pt;}
.y22{bottom:401.175200pt;}
.y13e{bottom:401.496933pt;}
.y2a3{bottom:401.733333pt;}
.y196{bottom:403.074000pt;}
.y27{bottom:403.181867pt;}
.yac{bottom:405.004000pt;}
.y1c1{bottom:405.906400pt;}
.y1ef{bottom:408.389333pt;}
.y145{bottom:408.678933pt;}
.y15d{bottom:412.925333pt;}
.y21c{bottom:413.337467pt;}
.yf5{bottom:414.315733pt;}
.y113{bottom:415.826800pt;}
.y13d{bottom:415.898933pt;}
.y274{bottom:416.466667pt;}
.y73{bottom:418.069333pt;}
.y49{bottom:418.504000pt;}
.ydb{bottom:418.548000pt;}
.y2a2{bottom:419.466667pt;}
.y195{bottom:420.806000pt;}
.yab{bottom:421.002000pt;}
.y240{bottom:421.393067pt;}
.y144{bottom:423.080933pt;}
.y1ee{bottom:426.121333pt;}
.y1c0{bottom:429.377733pt;}
.y13c{bottom:430.300933pt;}
.yf4{bottom:432.047733pt;}
.y112{bottom:433.558800pt;}
.y15c{bottom:433.764000pt;}
.y273{bottom:434.200000pt;}
.y72{bottom:435.801333pt;}
.y48{bottom:436.236000pt;}
.yda{bottom:436.280000pt;}
.yaa{bottom:437.000000pt;}
.y2a1{bottom:437.200000pt;}
.y143{bottom:437.482933pt;}
.y194{bottom:438.538000pt;}
.y1bf{bottom:443.779733pt;}
.y1ed{bottom:443.853333pt;}
.y13b{bottom:444.702933pt;}
.y21b{bottom:449.339733pt;}
.yf3{bottom:449.779733pt;}
.y111{bottom:451.290800pt;}
.y142{bottom:451.884933pt;}
.y272{bottom:451.933333pt;}
.y71{bottom:453.533333pt;}
.y15b{bottom:453.944000pt;}
.y47{bottom:453.968000pt;}
.yd9{bottom:454.012000pt;}
.y2a0{bottom:454.933333pt;}
.y193{bottom:456.270000pt;}
.y13a{bottom:459.104933pt;}
.y1ec{bottom:461.585333pt;}
.y1be{bottom:467.251067pt;}
.yf2{bottom:467.511733pt;}
.y16{bottom:468.391200pt;}
.y110{bottom:469.022800pt;}
.y271{bottom:469.666667pt;}
.y218{bottom:470.176400pt;}
.y15a{bottom:471.672000pt;}
.ya9{bottom:471.681333pt;}
.y46{bottom:471.700000pt;}
.yd8{bottom:471.744000pt;}
.y29f{bottom:472.666667pt;}
.y192{bottom:474.002000pt;}
.y139{bottom:476.166933pt;}
.y1eb{bottom:479.317333pt;}
.y1bd{bottom:481.653067pt;}
.yf1{bottom:485.243733pt;}
.y217{bottom:485.376400pt;}
.y15{bottom:485.727200pt;}
.y70{bottom:487.266667pt;}
.y270{bottom:487.400000pt;}
.y159{bottom:489.400000pt;}
.ya8{bottom:489.413333pt;}
.y45{bottom:489.432000pt;}
.yd7{bottom:489.476000pt;}
.y29e{bottom:490.400000pt;}
.y138{bottom:490.568933pt;}
.y191{bottom:491.734000pt;}
.y1bc{bottom:496.055067pt;}
.y1ea{bottom:497.049333pt;}
.yf0{bottom:502.975733pt;}
.y6f{bottom:503.266667pt;}
.y10f{bottom:504.068267pt;}
.y216{bottom:504.351067pt;}
.y26f{bottom:505.133333pt;}
.ya7{bottom:507.145333pt;}
.y44{bottom:507.164000pt;}
.yd6{bottom:507.208000pt;}
.y29d{bottom:508.133333pt;}
.y190{bottom:509.466000pt;}
.y1bb{bottom:510.457067pt;}
.y1e9{bottom:514.781333pt;}
.y6e{bottom:519.266667pt;}
.y215{bottom:519.551067pt;}
.yef{bottom:520.707733pt;}
.y14{bottom:521.191200pt;}
.y26e{bottom:522.866667pt;}
.y10e{bottom:523.676267pt;}
.y1ba{bottom:524.859067pt;}
.ya6{bottom:524.877333pt;}
.y43{bottom:524.896000pt;}
.yd5{bottom:524.940000pt;}
.y137{bottom:525.669733pt;}
.y29c{bottom:525.866667pt;}
.y18f{bottom:527.198000pt;}
.y6d{bottom:535.266667pt;}
.yee{bottom:538.439733pt;}
.y214{bottom:538.525733pt;}
.y13{bottom:538.923200pt;}
.y136{bottom:540.071733pt;}
.y26d{bottom:540.600000pt;}
.y21a{bottom:542.313067pt;}
.ya5{bottom:542.609333pt;}
.y42{bottom:542.628000pt;}
.yd4{bottom:542.672000pt;}
.y29b{bottom:543.600000pt;}
.y18e{bottom:544.930000pt;}
.y1b9{bottom:548.330400pt;}
.y10c{bottom:549.098267pt;}
.y6c{bottom:551.266667pt;}
.y1e8{bottom:552.250667pt;}
.y135{bottom:554.473733pt;}
.yed{bottom:556.171733pt;}
.y12{bottom:556.655200pt;}
.y213{bottom:557.500400pt;}
.y219{bottom:557.513067pt;}
.y26c{bottom:558.333333pt;}
.ya4{bottom:560.341333pt;}
.y41{bottom:560.360000pt;}
.y23f{bottom:560.389333pt;}
.yd3{bottom:560.404000pt;}
.y29a{bottom:561.333333pt;}
.y18d{bottom:562.662000pt;}
.y1b8{bottom:562.732400pt;}
.y10b{bottom:563.500267pt;}
.y6b{bottom:567.266667pt;}
.y134{bottom:568.875733pt;}
.y1e4{bottom:571.590000pt;}
.y212{bottom:572.700400pt;}
.yec{bottom:573.903733pt;}
.y11{bottom:574.387200pt;}
.y26b{bottom:576.066667pt;}
.y10a{bottom:577.902267pt;}
.ya3{bottom:578.073333pt;}
.y40{bottom:578.092000pt;}
.y23e{bottom:578.121333pt;}
.yd2{bottom:578.136000pt;}
.y299{bottom:579.066667pt;}
.y18c{bottom:580.394000pt;}
.y6a{bottom:583.266667pt;}
.y133{bottom:583.277733pt;}
.y10d{bottom:585.096933pt;}
.y1e3{bottom:585.992000pt;}
.y1b7{bottom:586.203733pt;}
.y211{bottom:591.675067pt;}
.y10{bottom:592.119200pt;}
.y109{bottom:592.304267pt;}
.y26a{bottom:593.800000pt;}
.ya2{bottom:595.805333pt;}
.y3f{bottom:595.824000pt;}
.y23d{bottom:595.853333pt;}
.yd1{bottom:595.868000pt;}
.y298{bottom:596.800000pt;}
.y132{bottom:597.679733pt;}
.y69{bottom:599.266667pt;}
.y1b6{bottom:600.605733pt;}
.y1e2{bottom:604.168667pt;}
.y108{bottom:606.706267pt;}
.yeb{bottom:609.371733pt;}
.yf{bottom:609.851200pt;}
.y210{bottom:610.649733pt;}
.y269{bottom:611.533333pt;}
.y131{bottom:612.081733pt;}
.ya1{bottom:613.537333pt;}
.y3e{bottom:613.556000pt;}
.y23c{bottom:613.585333pt;}
.yd0{bottom:613.600000pt;}
.y297{bottom:614.533333pt;}
.y1b5{bottom:615.007733pt;}
.y18b{bottom:616.379333pt;}
.y1e1{bottom:618.570667pt;}
.y107{bottom:621.108267pt;}
.y130{bottom:626.483733pt;}
.yea{bottom:627.103733pt;}
.ye{bottom:627.583200pt;}
.y268{bottom:629.266667pt;}
.y1b4{bottom:629.409733pt;}
.y20f{bottom:629.624400pt;}
.ya0{bottom:631.269333pt;}
.y3d{bottom:631.288000pt;}
.y68{bottom:631.292000pt;}
.y23b{bottom:631.317333pt;}
.ycf{bottom:631.332000pt;}
.y296{bottom:632.266667pt;}
.y1e0{bottom:632.972667pt;}
.y180{bottom:637.241333pt;}
.y12f{bottom:640.885733pt;}
.y1b3{bottom:643.811733pt;}
.yd{bottom:645.315200pt;}
.y267{bottom:647.000000pt;}
.y9f{bottom:649.001333pt;}
.y3c{bottom:649.020000pt;}
.y67{bottom:649.024000pt;}
.y23a{bottom:649.049333pt;}
.yce{bottom:649.064000pt;}
.y295{bottom:650.000000pt;}
.y20e{bottom:650.461067pt;}
.y1df{bottom:651.149333pt;}
.y12e{bottom:655.287733pt;}
.y17f{bottom:657.305333pt;}
.yc{bottom:663.047200pt;}
.y266{bottom:664.733333pt;}
.y1de{bottom:665.551333pt;}
.y20d{bottom:665.661067pt;}
.y9e{bottom:666.733333pt;}
.y3b{bottom:666.752000pt;}
.y66{bottom:666.756000pt;}
.y239{bottom:666.781333pt;}
.ycd{bottom:666.796000pt;}
.y1b2{bottom:667.283067pt;}
.y294{bottom:667.733333pt;}
.y12d{bottom:669.689733pt;}
.y17e{bottom:677.369333pt;}
.yb{bottom:680.779200pt;}
.y1b1{bottom:681.685067pt;}
.y265{bottom:682.466667pt;}
.y1dd{bottom:683.728000pt;}
.y12c{bottom:684.091733pt;}
.y9d{bottom:684.472000pt;}
.y3a{bottom:684.484000pt;}
.y65{bottom:684.488000pt;}
.y238{bottom:684.513333pt;}
.ycc{bottom:684.528000pt;}
.y127{bottom:685.040000pt;}
.y293{bottom:685.466667pt;}
.y18a{bottom:691.530667pt;}
.y17d{bottom:691.771333pt;}
.y1dc{bottom:698.130000pt;}
.ya{bottom:698.511200pt;}
.y264{bottom:700.200000pt;}
.y126{bottom:700.240000pt;}
.y12b{bottom:701.153733pt;}
.y9c{bottom:702.200000pt;}
.y39{bottom:702.216000pt;}
.y64{bottom:702.220000pt;}
.y237{bottom:702.245333pt;}
.ycb{bottom:702.260000pt;}
.y20c{bottom:702.679733pt;}
.y292{bottom:703.200000pt;}
.y1b0{bottom:705.156400pt;}
.y189{bottom:705.932667pt;}
.y1e7{bottom:709.099333pt;}
.y17c{bottom:711.835333pt;}
.y125{bottom:715.440000pt;}
.y9{bottom:716.243200pt;}
.y1db{bottom:716.306667pt;}
.y20b{bottom:717.081733pt;}
.y263{bottom:717.933333pt;}
.y1af{bottom:719.558400pt;}
.y12a{bottom:719.944000pt;}
.y38{bottom:719.948000pt;}
.y63{bottom:719.952000pt;}
.y236{bottom:719.977333pt;}
.yca{bottom:719.992000pt;}
.y188{bottom:720.334667pt;}
.y291{bottom:720.933333pt;}
.y1e6{bottom:723.501333pt;}
.y1da{bottom:730.708667pt;}
.y20a{bottom:731.483733pt;}
.y17b{bottom:731.899333pt;}
.y8{bottom:733.975200pt;}
.y187{bottom:734.736667pt;}
.y262{bottom:735.666667pt;}
.y1ae{bottom:736.620400pt;}
.y129{bottom:737.672000pt;}
.y37{bottom:737.680000pt;}
.y62{bottom:737.684000pt;}
.y235{bottom:737.709333pt;}
.yc9{bottom:737.724000pt;}
.y9b{bottom:737.738667pt;}
.y1e5{bottom:737.903333pt;}
.y290{bottom:738.666667pt;}
.y209{bottom:745.885733pt;}
.y17a{bottom:746.301333pt;}
.y1d9{bottom:748.885333pt;}
.y186{bottom:749.138667pt;}
.y261{bottom:753.400000pt;}
.y128{bottom:755.400000pt;}
.y36{bottom:755.412000pt;}
.y61{bottom:755.416000pt;}
.y234{bottom:755.441333pt;}
.yc8{bottom:755.456000pt;}
.y9a{bottom:755.470667pt;}
.y28f{bottom:756.400000pt;}
.y208{bottom:760.287733pt;}
.y185{bottom:763.540667pt;}
.y179{bottom:766.365333pt;}
.y1d8{bottom:767.062000pt;}
.y260{bottom:771.133333pt;}
.y35{bottom:773.144000pt;}
.y60{bottom:773.148000pt;}
.y233{bottom:773.173333pt;}
.yc7{bottom:773.188000pt;}
.y99{bottom:773.202667pt;}
.y28e{bottom:774.133333pt;}
.y184{bottom:777.942667pt;}
.y207{bottom:778.464400pt;}
.y1d7{bottom:781.464000pt;}
.y178{bottom:786.429333pt;}
.y25f{bottom:788.866667pt;}
.y1ad{bottom:790.872000pt;}
.y34{bottom:790.876000pt;}
.y5f{bottom:790.880000pt;}
.y232{bottom:790.905333pt;}
.yc6{bottom:790.920000pt;}
.y98{bottom:790.934667pt;}
.y28d{bottom:791.866667pt;}
.y183{bottom:792.344667pt;}
.y206{bottom:792.866400pt;}
.y7{bottom:793.308533pt;}
.y1d6{bottom:799.640667pt;}
.y177{bottom:800.831333pt;}
.y25e{bottom:806.600000pt;}
.y182{bottom:806.746667pt;}
.y1ac{bottom:808.600000pt;}
.y33{bottom:808.608000pt;}
.y5e{bottom:808.612000pt;}
.y231{bottom:808.637333pt;}
.yc5{bottom:808.652000pt;}
.y97{bottom:808.666667pt;}
.y28c{bottom:809.600000pt;}
.y205{bottom:811.043067pt;}
.y1d5{bottom:814.042667pt;}
.y6{bottom:819.267600pt;}
.y176{bottom:820.895333pt;}
.y181{bottom:821.148667pt;}
.y25d{bottom:824.333333pt;}
.y32{bottom:826.340000pt;}
.y5d{bottom:826.344000pt;}
.y230{bottom:826.369333pt;}
.yc4{bottom:826.384000pt;}
.y96{bottom:826.398667pt;}
.y28b{bottom:827.333333pt;}
.y204{bottom:829.219733pt;}
.y1d4{bottom:832.219333pt;}
.y175{bottom:835.297333pt;}
.y25c{bottom:842.066667pt;}
.y31{bottom:844.072000pt;}
.y5c{bottom:844.076000pt;}
.y1ab{bottom:844.100667pt;}
.y22f{bottom:844.101333pt;}
.yc3{bottom:844.116000pt;}
.y95{bottom:844.130667pt;}
.y28a{bottom:845.066667pt;}
.y1d3{bottom:846.621333pt;}
.y203{bottom:847.396400pt;}
.y5{bottom:848.867600pt;}
.y174{bottom:855.361333pt;}
.y25b{bottom:859.800000pt;}
.y1d2{bottom:861.023333pt;}
.y30{bottom:861.804000pt;}
.y5b{bottom:861.808000pt;}
.y1aa{bottom:861.832667pt;}
.y22e{bottom:861.833333pt;}
.yc2{bottom:861.848000pt;}
.y94{bottom:861.862667pt;}
.y289{bottom:862.800000pt;}
.y202{bottom:865.573067pt;}
.y173{bottom:875.425333pt;}
.y25a{bottom:877.533333pt;}
.y4{bottom:878.467600pt;}
.y2f{bottom:879.536000pt;}
.y5a{bottom:879.540000pt;}
.y1a9{bottom:879.564667pt;}
.y22d{bottom:879.565333pt;}
.yc1{bottom:879.580000pt;}
.y93{bottom:879.594667pt;}
.y201{bottom:879.975067pt;}
.y288{bottom:880.533333pt;}
.y172{bottom:896.262000pt;}
.y2e{bottom:897.268000pt;}
.y59{bottom:897.272000pt;}
.y1a8{bottom:897.296667pt;}
.y22c{bottom:897.297333pt;}
.yc0{bottom:897.312000pt;}
.y92{bottom:897.326667pt;}
.y200{bottom:898.151733pt;}
.y287{bottom:898.266667pt;}
.y3{bottom:908.067600pt;}
.y171{bottom:910.664000pt;}
.y1ff{bottom:912.553733pt;}
.y259{bottom:913.000000pt;}
.y2d{bottom:915.000000pt;}
.y58{bottom:915.004000pt;}
.y1a7{bottom:915.028667pt;}
.y22b{bottom:915.029333pt;}
.ybf{bottom:915.044000pt;}
.y91{bottom:915.058667pt;}
.y286{bottom:916.000000pt;}
.y17{bottom:986.667200pt;}
.y85{bottom:990.708800pt;}
.hb{height:21.061069pt;}
.h15{height:23.793067pt;}
.h11{height:28.255208pt;}
.h3{height:30.273438pt;}
.h19{height:32.248533pt;}
.h18{height:34.665067pt;}
.h17{height:35.204427pt;}
.h13{height:35.973333pt;}
.ha{height:36.125333pt;}
.h14{height:36.328000pt;}
.h16{height:38.524800pt;}
.h12{height:40.665067pt;}
.h8{height:41.770667pt;}
.h7{height:42.064000pt;}
.h2{height:42.424479pt;}
.h10{height:42.805333pt;}
.hf{height:45.440000pt;}
.he{height:47.085867pt;}
.h1a{height:48.533333pt;}
.h6{height:49.226133pt;}
.hc{height:49.226667pt;}
.h9{height:56.518229pt;}
.h4{height:69.362667pt;}
.h5{height:70.349333pt;}
.hd{height:134.671999pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.733333pt;}
.x2e{left:79.546133pt;}
.x18{left:80.674000pt;}
.x10{left:81.936000pt;}
.x19{left:88.869333pt;}
.x3{left:94.466667pt;}
.x2f{left:96.554000pt;}
.x28{left:98.395333pt;}
.x23{left:99.548000pt;}
.x15{left:102.219067pt;}
.x36{left:105.866667pt;}
.x9{left:107.733333pt;}
.xc{left:113.328000pt;}
.x6{left:117.705600pt;}
.x4{left:141.733333pt;}
.x1d{left:152.506667pt;}
.x2d{left:278.807600pt;}
.x2b{left:280.732933pt;}
.x16{left:281.668667pt;}
.x1b{left:289.661333pt;}
.x17{left:291.308000pt;}
.xf{left:293.492267pt;}
.x2c{left:294.400267pt;}
.x1a{left:296.653333pt;}
.x1c{left:298.173333pt;}
.x21{left:300.061333pt;}
.x25{left:304.140000pt;}
.x26{left:307.940000pt;}
.x22{left:309.700667pt;}
.x5{left:314.770667pt;}
.x27{left:316.819333pt;}
.x24{left:332.032000pt;}
.x11{left:395.461333pt;}
.xa{left:406.338667pt;}
.x35{left:410.268000pt;}
.x33{left:411.408000pt;}
.x1e{left:412.408400pt;}
.x34{left:419.603333pt;}
.x7{left:425.206933pt;}
.x30{left:427.287333pt;}
.x29{left:429.146133pt;}
.x12{left:431.036000pt;}
.x1f{left:432.956667pt;}
.x37{left:436.600000pt;}
.xd{left:444.066667pt;}
.x2a{left:448.044800pt;}
.x20{left:463.622667pt;}
.xb{left:491.969333pt;}
.x13{left:589.242667pt;}
.x14{left:597.188400pt;}
.x31{left:612.377333pt;}
.x2{left:616.620133pt;}
.xe{left:618.791200pt;}
.x32{left:622.016667pt;}
.x1{left:693.316667pt;}
}




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