
    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_eb54896fe1e44e5349de8513.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_3024053e9a0cb2604220a24b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_5dcae835c4baf626d010d5c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_0419e82c6248bb62e19c381f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_d015c5d8424a703f8cf0c284.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717000;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_3a9edc320a80383931cd01ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.843000;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_7d43d459d8936c6d4b04d841.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_7e2dd718cdcb5b552493b7d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_e3d5a14f56082eb41a182983.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_14c5bd665e001d234a508fa7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.580000;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_4a4a6930a7d5342407960d0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.ls44{letter-spacing:-1.060292px;}
.ls2f{letter-spacing:-1.049922px;}
.ls21{letter-spacing:-1.020168px;}
.ls3b{letter-spacing:-1.010729px;}
.ls63{letter-spacing:-1.007831px;}
.ls4d{letter-spacing:-1.003682px;}
.ls5a{letter-spacing:-0.541195px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008966px;}
.ls1{letter-spacing:0.014346px;}
.ls5b{letter-spacing:2.254975px;}
.ls53{letter-spacing:2.783710px;}
.ls50{letter-spacing:2.796176px;}
.ls4f{letter-spacing:2.817676px;}
.ls51{letter-spacing:2.818718px;}
.ls52{letter-spacing:2.819963px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls43{letter-spacing:3.534297px;}
.lsd{letter-spacing:3.591390px;}
.ls59{letter-spacing:4.142764px;}
.ls4e{letter-spacing:4.181997px;}
.ls58{letter-spacing:4.183480px;}
.ls64{letter-spacing:4.199284px;}
.ls3c{letter-spacing:4.211358px;}
.ls22{letter-spacing:4.250691px;}
.ls30{letter-spacing:4.374665px;}
.ls45{letter-spacing:4.417871px;}
.lsb{letter-spacing:4.433482px;}
.ls6{letter-spacing:4.453335px;}
.ls9{letter-spacing:4.483147px;}
.ls5{letter-spacing:4.487577px;}
.ls8{letter-spacing:4.489237px;}
.lsa{letter-spacing:4.491220px;}
.ls7{letter-spacing:4.492159px;}
.ls18{letter-spacing:4.878824px;}
.ls17{letter-spacing:4.916901px;}
.ls4a{letter-spacing:5.162571px;}
.ls61{letter-spacing:5.183912px;}
.ls47{letter-spacing:5.185689px;}
.ls5d{letter-spacing:5.207125px;}
.ls37{letter-spacing:5.209385px;}
.ls49{letter-spacing:5.219310px;}
.ls32{letter-spacing:5.222098px;}
.ls46{letter-spacing:5.225563px;}
.ls48{letter-spacing:5.227496px;}
.ls4b{letter-spacing:5.229805px;}
.ls5c{letter-spacing:5.247164px;}
.ls1d{letter-spacing:5.247372px;}
.ls5e{letter-spacing:5.249105px;}
.ls60{letter-spacing:5.251423px;}
.ls36{letter-spacing:5.255955px;}
.ls5f{letter-spacing:5.257701px;}
.ls31{letter-spacing:5.262251px;}
.ls33{letter-spacing:5.264198px;}
.ls1a{letter-spacing:5.270870px;}
.ls19{letter-spacing:5.311399px;}
.ls1b{letter-spacing:5.313363px;}
.ls1c{letter-spacing:5.315710px;}
.ls2b{letter-spacing:5.400416px;}
.ls28{letter-spacing:5.424599px;}
.ls41{letter-spacing:5.453752px;}
.ls27{letter-spacing:5.466310px;}
.ls29{letter-spacing:5.468332px;}
.ls2a{letter-spacing:5.470747px;}
.ls3e{letter-spacing:5.478174px;}
.ls3d{letter-spacing:5.520297px;}
.ls3f{letter-spacing:5.522339px;}
.ls40{letter-spacing:5.524778px;}
.ls2e{letter-spacing:7.353196px;}
.ls56{letter-spacing:9.960359px;}
.ls55{letter-spacing:11.356200px;}
.ls57{letter-spacing:11.358359px;}
.ls15{letter-spacing:13.278359px;}
.ls20{letter-spacing:13.284359px;}
.lsf{letter-spacing:14.004359px;}
.ls13{letter-spacing:14.136359px;}
.ls11{letter-spacing:14.142359px;}
.ls1f{letter-spacing:14.944200px;}
.ls16{letter-spacing:14.946359px;}
.ls67{letter-spacing:16.221193px;}
.lse{letter-spacing:16.234200px;}
.ls10{letter-spacing:16.236359px;}
.ls14{letter-spacing:16.482359px;}
.ls12{letter-spacing:16.488359px;}
.ls54{letter-spacing:16.864150px;}
.ls66{letter-spacing:16.982303px;}
.ls39{letter-spacing:17.834491px;}
.ls65{letter-spacing:20.090303px;}
.ls25{letter-spacing:20.619196px;}
.ls2d{letter-spacing:22.143196px;}
.ls23{letter-spacing:22.293196px;}
.ls26{letter-spacing:22.299196px;}
.ls24{letter-spacing:24.897196px;}
.lsc{letter-spacing:26.858720px;}
.ls4c{letter-spacing:31.286151px;}
.ls62{letter-spacing:31.404941px;}
.ls38{letter-spacing:31.505811px;}
.ls1e{letter-spacing:31.789396px;}
.ls2c{letter-spacing:32.727535px;}
.ls42{letter-spacing:33.050764px;}
.ls3a{letter-spacing:36.684345px;}
.ls34{letter-spacing:41.896863px;}
.ls35{letter-spacing:41.907431px;}
.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;}
}
.ws98{word-spacing:-5.369482px;}
.wsaf{word-spacing:-4.528318px;}
.ws8f{word-spacing:-4.484032px;}
.ws77{word-spacing:-4.356958px;}
.ws9d{word-spacing:-4.316642px;}
.wsee{word-spacing:-4.304266px;}
.wsbf{word-spacing:-4.286547px;}
.ws4e{word-spacing:-3.681175px;}
.wsda{word-spacing:-2.311349px;}
.wsa0{word-spacing:-0.098363px;}
.wsf5{word-spacing:-0.086077px;}
.ws12{word-spacing:-0.059776px;}
.ws1d{word-spacing:0.000000px;}
.wsfc{word-spacing:7.991975px;}
.ws100{word-spacing:8.033818px;}
.ws102{word-spacing:8.243032px;}
.wsff{word-spacing:9.079888px;}
.ws105{word-spacing:9.121730px;}
.ws111{word-spacing:9.247259px;}
.wsfb{word-spacing:10.418857px;}
.ws10a{word-spacing:11.046499px;}
.ws115{word-spacing:11.130185px;}
.ws107{word-spacing:11.172028px;}
.ws10f{word-spacing:11.213870px;}
.wsd4{word-spacing:11.214037px;}
.wsd6{word-spacing:11.218499px;}
.wsd8{word-spacing:11.219696px;}
.wsd7{word-spacing:11.227347px;}
.wsd3{word-spacing:11.242916px;}
.ws35{word-spacing:11.297588px;}
.wse2{word-spacing:11.476915px;}
.ws96{word-spacing:11.716018px;}
.ws67{word-spacing:11.775793px;}
.ws10e{word-spacing:11.799670px;}
.wsca{word-spacing:11.835569px;}
.ws1b{word-spacing:11.887280px;}
.ws2{word-spacing:11.907329px;}
.ws16{word-spacing:11.955120px;}
.wse0{word-spacing:12.074671px;}
.wsf3{word-spacing:12.134447px;}
.ws7a{word-spacing:12.253998px;}
.ws44{word-spacing:12.313774px;}
.wsb3{word-spacing:12.493100px;}
.ws112{word-spacing:12.510997px;}
.ws20{word-spacing:12.672427px;}
.ws104{word-spacing:12.720211px;}
.ws84{word-spacing:12.851754px;}
.wsb4{word-spacing:12.911530px;}
.ws42{word-spacing:12.971305px;}
.ws1c{word-spacing:13.055024px;}
.wsf8{word-spacing:13.150632px;}
.ws7{word-spacing:13.210408px;}
.wsd{word-spacing:13.270183px;}
.ws2b{word-spacing:13.449510px;}
.ws87{word-spacing:13.509286px;}
.ws103{word-spacing:13.515224px;}
.ws82{word-spacing:13.569061px;}
.ws1f{word-spacing:13.628837px;}
.ws24{word-spacing:13.688612px;}
.wse3{word-spacing:13.867939px;}
.ws101{word-spacing:13.933652px;}
.ws108{word-spacing:13.975495px;}
.ws19{word-spacing:13.987490px;}
.wsdc{word-spacing:14.037218px;}
.ws68{word-spacing:14.047266px;}
.ws113{word-spacing:14.059181px;}
.wsfd{word-spacing:14.101024px;}
.ws2a{word-spacing:14.107042px;}
.ws10b{word-spacing:14.142866px;}
.wscd{word-spacing:14.166817px;}
.wsa5{word-spacing:14.226593px;}
.ws27{word-spacing:14.286368px;}
.wsf7{word-spacing:14.346144px;}
.wsfa{word-spacing:14.393923px;}
.wsa4{word-spacing:14.405920px;}
.ws21{word-spacing:14.525471px;}
.ws6{word-spacing:14.645022px;}
.ws93{word-spacing:14.704798px;}
.ws11{word-spacing:14.764573px;}
.wsd0{word-spacing:14.824349px;}
.ws85{word-spacing:14.882992px;}
.ws1{word-spacing:14.884124px;}
.ws59{word-spacing:14.887547px;}
.ws10c{word-spacing:14.896037px;}
.ws88{word-spacing:14.943900px;}
.wsf4{word-spacing:15.003676px;}
.wsc9{word-spacing:15.123227px;}
.ws17{word-spacing:15.183002px;}
.ws38{word-spacing:15.481880px;}
.wsc7{word-spacing:15.601432px;}
.ws23{word-spacing:15.720983px;}
.ws109{word-spacing:15.774736px;}
.ws2d{word-spacing:15.780758px;}
.ws63{word-spacing:15.840534px;}
.ws114{word-spacing:15.900264px;}
.ws45{word-spacing:15.900310px;}
.ws10d{word-spacing:15.942107px;}
.ws80{word-spacing:15.960085px;}
.ws110{word-spacing:15.983950px;}
.wsc5{word-spacing:16.019861px;}
.wsfe{word-spacing:16.067635px;}
.ws3d{word-spacing:16.079636px;}
.wse{word-spacing:16.139412px;}
.ws53{word-spacing:16.159928px;}
.ws54{word-spacing:16.199188px;}
.ws3b{word-spacing:16.318739px;}
.ws106{word-spacing:16.402378px;}
.ws56{word-spacing:16.412332px;}
.ws57{word-spacing:16.414922px;}
.ws55{word-spacing:16.416173px;}
.ws58{word-spacing:16.438290px;}
.ws3{word-spacing:16.498066px;}
.ws29{word-spacing:16.557841px;}
.wsdd{word-spacing:16.637873px;}
.ws1e{word-spacing:16.737168px;}
.ws51{word-spacing:16.772534px;}
.ws47{word-spacing:16.796944px;}
.wsb7{word-spacing:16.856719px;}
.ws22{word-spacing:16.976270px;}
.ws49{word-spacing:17.036046px;}
.wsb6{word-spacing:17.095822px;}
.wscb{word-spacing:17.143966px;}
.wse6{word-spacing:17.155597px;}
.wsc3{word-spacing:17.215373px;}
.ws6b{word-spacing:17.275148px;}
.ws25{word-spacing:17.394700px;}
.ws95{word-spacing:17.454475px;}
.ws86{word-spacing:17.514251px;}
.ws6a{word-spacing:17.574026px;}
.ws26{word-spacing:17.633802px;}
.wsc8{word-spacing:17.693578px;}
.wsd1{word-spacing:17.753353px;}
.ws14{word-spacing:17.861069px;}
.ws4c{word-spacing:17.867164px;}
.wsc6{word-spacing:17.872904px;}
.ws4d{word-spacing:17.881255px;}
.ws4b{word-spacing:17.885166px;}
.ws4a{word-spacing:17.897039px;}
.wsd9{word-spacing:17.904544px;}
.wsd5{word-spacing:17.914707px;}
.ws62{word-spacing:17.932680px;}
.ws6f{word-spacing:17.992456px;}
.ws1a{word-spacing:18.052231px;}
.wscc{word-spacing:18.112007px;}
.ws5{word-spacing:18.231558px;}
.wsa{word-spacing:18.291334px;}
.ws6d{word-spacing:18.470660px;}
.ws8{word-spacing:18.523966px;}
.wsa7{word-spacing:18.530436px;}
.ws3a{word-spacing:18.649987px;}
.wsd2{word-spacing:18.769538px;}
.ws2c{word-spacing:18.829314px;}
.ws3f{word-spacing:18.948865px;}
.wsb5{word-spacing:19.128192px;}
.wse4{word-spacing:19.153966px;}
.ws28{word-spacing:19.187968px;}
.ws33{word-spacing:19.247743px;}
.wsb8{word-spacing:19.367294px;}
.wscf{word-spacing:19.427070px;}
.ws31{word-spacing:19.486846px;}
.wsa6{word-spacing:19.513966px;}
.ws3c{word-spacing:19.546621px;}
.ws5a{word-spacing:19.593987px;}
.ws7d{word-spacing:19.606397px;}
.ws48{word-spacing:19.666172px;}
.ws4{word-spacing:19.725948px;}
.ws39{word-spacing:19.785724px;}
.ws6c{word-spacing:19.845499px;}
.ws64{word-spacing:19.965050px;}
.wsc4{word-spacing:20.024826px;}
.ws46{word-spacing:20.084602px;}
.wse7{word-spacing:20.144377px;}
.ws2e{word-spacing:20.185966px;}
.ws7c{word-spacing:20.263928px;}
.ws15{word-spacing:20.383480px;}
.wsf6{word-spacing:20.443255px;}
.ws37{word-spacing:20.622582px;}
.ws36{word-spacing:20.682358px;}
.ws66{word-spacing:20.742133px;}
.wsde{word-spacing:20.797289px;}
.ws92{word-spacing:20.801909px;}
.wsba{word-spacing:20.802915px;}
.wsbc{word-spacing:20.805433px;}
.wsbd{word-spacing:20.821841px;}
.wsb9{word-spacing:20.840221px;}
.ws6e{word-spacing:20.861684px;}
.wse9{word-spacing:20.890503px;}
.wseb{word-spacing:20.891437px;}
.wsec{word-spacing:20.897374px;}
.ws7e{word-spacing:20.921460px;}
.wse8{word-spacing:20.926368px;}
.ws9a{word-spacing:20.951508px;}
.ws9b{word-spacing:20.968031px;}
.wsa2{word-spacing:20.981236px;}
.ws97{word-spacing:20.986540px;}
.ws75{word-spacing:21.141047px;}
.ws73{word-spacing:21.147186px;}
.ws71{word-spacing:21.151713px;}
.ws3e{word-spacing:21.160562px;}
.ws74{word-spacing:21.163864px;}
.ws70{word-spacing:21.182545px;}
.ws41{word-spacing:21.280114px;}
.wse1{word-spacing:21.339889px;}
.ws0{word-spacing:21.433223px;}
.ws18{word-spacing:21.459440px;}
.ws94{word-spacing:21.578992px;}
.wsc{word-spacing:21.698543px;}
.ws8a{word-spacing:21.762362px;}
.ws8c{word-spacing:21.763960px;}
.ws8d{word-spacing:21.781124px;}
.ws43{word-spacing:21.793966px;}
.ws89{word-spacing:21.800350px;}
.ws7f{word-spacing:21.877870px;}
.wsac{word-spacing:21.978909px;}
.wsad{word-spacing:21.996242px;}
.wsa9{word-spacing:22.015658px;}
.ws81{word-spacing:22.057196px;}
.ws69{word-spacing:22.116972px;}
.wsa8{word-spacing:22.296299px;}
.ws50{word-spacing:22.356401px;}
.wsf9{word-spacing:22.415850px;}
.wsb{word-spacing:22.595177px;}
.ws83{word-spacing:22.834279px;}
.ws30{word-spacing:22.894055px;}
.ws52{word-spacing:23.073382px;}
.ws9{word-spacing:23.312484px;}
.wsf2{word-spacing:23.425966px;}
.wsce{word-spacing:23.491811px;}
.wse5{word-spacing:23.790689px;}
.ws40{word-spacing:24.029791px;}
.wsf{word-spacing:24.209118px;}
.ws5b{word-spacing:24.492422px;}
.ws32{word-spacing:25.165528px;}
.wsa3{word-spacing:25.225303px;}
.ws65{word-spacing:25.387966px;}
.ws34{word-spacing:25.703508px;}
.wsaa{word-spacing:25.954277px;}
.wsc1{word-spacing:26.032929px;}
.wsf0{word-spacing:26.140541px;}
.ws9f{word-spacing:26.215706px;}
.ws79{word-spacing:26.460550px;}
.ws91{word-spacing:27.232292px;}
.wsb1{word-spacing:27.501248px;}
.ws2f{word-spacing:29.828024px;}
.wsbe{word-spacing:33.205136px;}
.wsbb{word-spacing:33.223983px;}
.wsed{word-spacing:33.342396px;}
.wsea{word-spacing:33.361321px;}
.ws9c{word-spacing:33.438270px;}
.ws99{word-spacing:33.457248px;}
.ws76{word-spacing:33.750569px;}
.ws72{word-spacing:33.769725px;}
.ws8e{word-spacing:34.734930px;}
.ws8b{word-spacing:34.754645px;}
.wsae{word-spacing:35.077985px;}
.wsab{word-spacing:35.097894px;}
.ws10{word-spacing:36.901661px;}
.ws13{word-spacing:42.952523px;}
.wsdb{word-spacing:67.592868px;}
.wsdf{word-spacing:100.144377px;}
.ws4f{word-spacing:107.651909px;}
.ws7b{word-spacing:117.937406px;}
.wsc0{word-spacing:125.355349px;}
.wsef{word-spacing:125.873530px;}
.ws9e{word-spacing:126.235468px;}
.ws78{word-spacing:127.414455px;}
.ws90{word-spacing:131.130593px;}
.wsb0{word-spacing:132.425687px;}
.wsc2{word-spacing:251.711277px;}
.wsb2{word-spacing:489.454989px;}
.wsa1{word-spacing:642.901488px;}
.wsf1{word-spacing:658.836317px;}
.ws5c{word-spacing:815.823890px;}
.ws5e{word-spacing:990.713554px;}
.ws5d{word-spacing:1017.960144px;}
.ws5f{word-spacing:1034.288426px;}
.ws60{word-spacing:1056.321769px;}
.ws61{word-spacing:1122.716889px;}
._46{margin-left:-2170.501658px;}
._32{margin-left:-2169.484873px;}
._16{margin-left:-2163.422458px;}
._44{margin-left:-2159.598196px;}
._d{margin-left:-2153.692554px;}
._8{margin-left:-2138.012614px;}
._84{margin-left:-2118.338460px;}
._61{margin-left:-2087.484690px;}
._8b{margin-left:-2046.996032px;}
._88{margin-left:-2033.735666px;}
._8a{margin-left:-1967.768438px;}
._62{margin-left:-1951.995271px;}
._59{margin-left:-1920.254062px;}
._e{margin-left:-1796.832222px;}
._12{margin-left:-1771.291752px;}
._87{margin-left:-1181.529022px;}
._89{margin-left:-833.014372px;}
._7e{margin-left:-725.825220px;}
._86{margin-left:-717.988514px;}
._82{margin-left:-626.365439px;}
._2b{margin-left:-546.818932px;}
._85{margin-left:-506.459899px;}
._83{margin-left:-231.918575px;}
._38{margin-left:-9.776589px;}
._2c{margin-left:-8.157517px;}
._1b{margin-left:-6.906721px;}
._67{margin-left:-5.885257px;}
._17{margin-left:-4.782048px;}
._6{margin-left:-3.567398px;}
._1{margin-left:-2.410162px;}
._0{margin-left:-1.291158px;}
._1c{width:1.795695px;}
._69{width:3.292271px;}
._33{width:6.121010px;}
._52{width:7.199134px;}
._2f{width:10.783513px;}
._45{width:11.895344px;}
._15{width:12.990443px;}
._60{width:14.329411px;}
._b{width:15.459452px;}
._19{width:17.031278px;}
._3{width:18.033944px;}
._31{width:19.204700px;}
._9{width:20.503031px;}
._66{width:21.647665px;}
._11{width:22.654952px;}
._5{width:24.029791px;}
._4{width:25.524181px;}
._f{width:27.515914px;}
._2{width:28.771201px;}
._18{width:29.868662px;}
._10{width:31.561517px;}
._1a{width:32.876580px;}
._2d{width:34.131868px;}
._7{width:35.865600px;}
._2e{width:37.020234px;}
._a{width:38.172703px;}
._30{width:40.109428px;}
._13{width:43.038600px;}
._68{width:44.532822px;}
._14{width:49.350740px;}
._58{width:50.426701px;}
._72{width:69.171350px;}
._7d{width:82.588450px;}
._6f{width:83.997364px;}
._6a{width:91.157354px;}
._6e{width:97.358534px;}
._73{width:104.630828px;}
._78{width:105.926993px;}
._77{width:107.731418px;}
._74{width:112.015870px;}
._6d{width:119.288163px;}
._6c{width:121.825010px;}
._75{width:126.350437px;}
._7c{width:131.183155px;}
._7a{width:132.818012px;}
._76{width:135.918602px;}
._24{width:145.092147px;}
._71{width:153.732903px;}
._56{width:155.532159px;}
._70{width:159.426714px;}
._1e{width:166.640486px;}
._79{width:167.826495px;}
._63{width:169.057213px;}
._53{width:170.244163px;}
._21{width:171.668431px;}
._7b{width:173.520306px;}
._4f{width:176.401525px;}
._5e{width:178.481994px;}
._80{width:181.897924px;}
._23{width:185.193771px;}
._50{width:188.438709px;}
._26{width:189.984519px;}
._65{width:195.090142px;}
._20{width:196.538806px;}
._3e{width:198.294723px;}
._51{width:201.213364px;}
._5f{width:202.559392px;}
._47{width:203.750038px;}
._5b{width:206.093688px;}
._55{width:208.041105px;}
._49{width:215.645307px;}
._3d{width:222.114542px;}
._36{width:224.861540px;}
._3b{width:226.473022px;}
._5c{width:229.488738px;}
._27{width:231.554856px;}
._3f{width:233.910209px;}
._25{width:235.024304px;}
._4a{width:237.632453px;}
._41{width:239.754908px;}
._34{width:241.970570px;}
._4e{width:243.975717px;}
._35{width:248.681359px;}
._29{width:256.231634px;}
._39{width:258.457948px;}
._42{width:263.452509px;}
._5d{width:269.801812px;}
._2a{width:271.225687px;}
._40{width:280.226787px;}
._4b{width:283.238339px;}
._5a{width:291.338934px;}
._54{width:304.930098px;}
._37{width:306.793604px;}
._48{width:310.579997px;}
._4d{width:325.475101px;}
._22{width:332.742263px;}
._3c{width:334.159933px;}
._4c{width:337.921655px;}
._1d{width:344.414280px;}
._43{width:360.155723px;}
._7f{width:374.082570px;}
._57{width:375.154499px;}
._1f{width:377.634635px;}
._3a{width:386.494055px;}
._64{width:407.363030px;}
._28{width:422.527007px;}
._81{width:426.573617px;}
._6b{width:539.445886px;}
._c{width:1106.970382px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs1b{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs16{font-size:45.099608px;}
.fs2{font-size:47.820600px;}
.fs15{font-size:56.374368px;}
.fs1{font-size:59.775600px;}
.fs18{font-size:66.818768px;}
.fs4{font-size:71.731200px;}
.fs8{font-size:71.827976px;}
.fsa{font-size:78.690710px;}
.fs17{font-size:83.523250px;}
.fs14{font-size:83.640142px;}
.fs1a{font-size:83.985885px;}
.fs10{font-size:84.227379px;}
.fsc{font-size:85.014028px;}
.fs0{font-size:86.077200px;}
.fse{font-size:87.493526px;}
.fs12{font-size:88.357644px;}
.fs7{font-size:89.784744px;}
.fs9{font-size:98.363141px;}
.fs13{font-size:104.549915px;}
.fs19{font-size:104.982093px;}
.fsf{font-size:105.283960px;}
.fsb{font-size:106.267268px;}
.fsd{font-size:109.366633px;}
.fs11{font-size:110.446778px;}
.y0{bottom:0.000000px;}
.y22{bottom:134.047500px;}
.y21{bottom:178.879500px;}
.y12d{bottom:179.074500px;}
.y48{bottom:180.411000px;}
.y14a{bottom:184.932000px;}
.yb7{bottom:187.176000px;}
.y7d{bottom:187.203000px;}
.y12c{bottom:197.007000px;}
.y20{bottom:197.415000px;}
.y47{bottom:198.343500px;}
.y5e{bottom:199.392000px;}
.y17d{bottom:202.641000px;}
.y149{bottom:202.866000px;}
.yb6{bottom:205.110000px;}
.y7c{bottom:205.135500px;}
.y10c{bottom:206.881500px;}
.y1f{bottom:207.789000px;}
.y12b{bottom:214.941000px;}
.y17c{bottom:216.090000px;}
.y46{bottom:216.276000px;}
.y15f{bottom:216.390000px;}
.y148{bottom:220.798500px;}
.yb5{bottom:223.042500px;}
.y7b{bottom:223.068000px;}
.y10b{bottom:224.814000px;}
.y1e{bottom:226.326000px;}
.yee{bottom:231.315000px;}
.y12a{bottom:232.873500px;}
.y91{bottom:233.326500px;}
.y45{bottom:234.208500px;}
.y15e{bottom:234.322500px;}
.y147{bottom:238.731000px;}
.yb4{bottom:240.975000px;}
.y7a{bottom:241.002000px;}
.y17b{bottom:241.495500px;}
.y10a{bottom:242.746500px;}
.yed{bottom:249.247500px;}
.yd0{bottom:249.423000px;}
.y5d{bottom:250.264980px;}
.y129{bottom:250.806000px;}
.y90{bottom:251.259000px;}
.y44{bottom:252.142500px;}
.y15d{bottom:252.256500px;}
.y17a{bottom:254.944500px;}
.y146{bottom:256.663500px;}
.yb3{bottom:258.907500px;}
.y79{bottom:258.934500px;}
.y109{bottom:260.679000px;}
.yec{bottom:267.180000px;}
.ycf{bottom:267.355500px;}
.y128{bottom:268.738500px;}
.y43{bottom:270.075000px;}
.y15c{bottom:270.189000px;}
.y1d{bottom:271.774500px;}
.y145{bottom:274.596000px;}
.yb2{bottom:276.840000px;}
.y78{bottom:276.867000px;}
.y5c{bottom:277.200133px;}
.y108{bottom:278.611500px;}
.y179{bottom:280.348500px;}
.yeb{bottom:285.112500px;}
.yce{bottom:285.288000px;}
.y8f{bottom:286.477500px;}
.y127{bottom:286.671000px;}
.y42{bottom:288.007500px;}
.y15b{bottom:288.121500px;}
.y1c{bottom:289.707000px;}
.y144{bottom:292.528500px;}
.y178{bottom:293.799000px;}
.yb1{bottom:294.772500px;}
.y77{bottom:294.799500px;}
.y1a2{bottom:295.441500px;}
.y107{bottom:296.544000px;}
.yea{bottom:303.045000px;}
.ycd{bottom:303.220500px;}
.y126{bottom:304.603500px;}
.y5b{bottom:305.034251px;}
.y41{bottom:305.940000px;}
.y1b{bottom:307.641000px;}
.y1a1{bottom:308.892000px;}
.y143{bottom:310.462500px;}
.y76{bottom:312.732000px;}
.y106{bottom:314.478000px;}
.y177{bottom:319.203000px;}
.ye9{bottom:320.977500px;}
.ycc{bottom:321.153000px;}
.y15a{bottom:321.520500px;}
.y125{bottom:322.537500px;}
.yb0{bottom:322.792500px;}
.y40{bottom:323.872500px;}
.y1a{bottom:325.573500px;}
.y142{bottom:328.395000px;}
.y75{bottom:330.664500px;}
.y105{bottom:332.410500px;}
.y176{bottom:332.653500px;}
.y5a{bottom:332.868369px;}
.y1a0{bottom:334.296000px;}
.ye8{bottom:338.911500px;}
.y8e{bottom:339.000845px;}
.ycb{bottom:339.085500px;}
.y124{bottom:340.470000px;}
.y3f{bottom:341.805000px;}
.y19{bottom:343.506000px;}
.y141{bottom:346.327500px;}
.y19f{bottom:347.746500px;}
.y74{bottom:348.598500px;}
.y104{bottom:350.343000px;}
.ye7{bottom:356.844000px;}
.yca{bottom:357.019500px;}
.y175{bottom:358.057500px;}
.y123{bottom:358.402500px;}
.y3e{bottom:359.739000px;}
.y59{bottom:359.803522px;}
.y18{bottom:361.438500px;}
.yaf{bottom:362.581500px;}
.y73{bottom:366.531000px;}
.y103{bottom:368.275500px;}
.y8d{bottom:370.880705px;}
.y174{bottom:371.508000px;}
.y19e{bottom:373.150500px;}
.y140{bottom:374.347500px;}
.ye6{bottom:374.776500px;}
.yc9{bottom:374.952000px;}
.y122{bottom:376.335000px;}
.y3d{bottom:377.671500px;}
.yae{bottom:380.514000px;}
.y72{bottom:384.463500px;}
.y102{bottom:386.208000px;}
.y19d{bottom:386.601000px;}
.y58{bottom:387.637640px;}
.y159{bottom:389.242500px;}
.y17{bottom:389.458500px;}
.ye5{bottom:392.709000px;}
.yc8{bottom:392.884500px;}
.y121{bottom:394.267500px;}
.y3c{bottom:395.604000px;}
.y173{bottom:396.912000px;}
.yad{bottom:398.446500px;}
.y19c{bottom:400.050000px;}
.y71{bottom:402.396000px;}
.y8c{bottom:402.760566px;}
.y101{bottom:404.140500px;}
.y172{bottom:410.361000px;}
.ye4{bottom:410.641500px;}
.y120{bottom:412.201500px;}
.y3b{bottom:413.536500px;}
.y57{bottom:415.469505px;}
.yac{bottom:416.379000px;}
.y70{bottom:420.328500px;}
.y100{bottom:422.074500px;}
.y19b{bottom:425.454000px;}
.y16{bottom:425.847000px;}
.ye3{bottom:428.574000px;}
.y11f{bottom:430.134000px;}
.y13f{bottom:431.421000px;}
.y3a{bottom:431.469000px;}
.yab{bottom:434.313000px;}
.y8b{bottom:434.640426px;}
.y171{bottom:435.766500px;}
.y6f{bottom:438.262500px;}
.y19a{bottom:438.904500px;}
.yff{bottom:440.007000px;}
.yc7{bottom:440.304000px;}
.y158{bottom:440.974655px;}
.y56{bottom:443.303623px;}
.ye2{bottom:446.508000px;}
.y11e{bottom:448.066500px;}
.y170{bottom:449.215500px;}
.yaa{bottom:452.245500px;}
.y199{bottom:452.353500px;}
.y6e{bottom:456.195000px;}
.yfe{bottom:457.939500px;}
.y39{bottom:459.489000px;}
.ye1{bottom:464.440500px;}
.y11d{bottom:465.999000px;}
.y8a{bottom:466.520287px;}
.ya9{bottom:470.178000px;}
.y55{bottom:470.238776px;}
.y157{bottom:470.483301px;}
.y6d{bottom:474.127500px;}
.y16f{bottom:474.621000px;}
.yfd{bottom:475.872000px;}
.y198{bottom:477.759000px;}
.y15{bottom:479.737500px;}
.y13e{bottom:481.667796px;}
.ye0{bottom:482.373000px;}
.y11c{bottom:483.931500px;}
.y38{bottom:487.509000px;}
.y16e{bottom:488.070000px;}
.ya8{bottom:488.110500px;}
.y197{bottom:491.208000px;}
.yc6{bottom:492.035146px;}
.y6c{bottom:492.060000px;}
.yfc{bottom:493.804500px;}
.y14{bottom:497.670000px;}
.y54{bottom:498.072894px;}
.y89{bottom:498.400147px;}
.ydf{bottom:500.305500px;}
.y156{bottom:500.976803px;}
.y11b{bottom:501.864000px;}
.ya7{bottom:506.043000px;}
.y13d{bottom:506.726616px;}
.y6b{bottom:509.992500px;}
.y196{bottom:516.612000px;}
.yde{bottom:518.238000px;}
.y16d{bottom:518.481000px;}
.y11a{bottom:519.798000px;}
.yc5{bottom:521.543792px;}
.yfb{bottom:521.824500px;}
.y37{bottom:523.897500px;}
.ya6{bottom:523.975500px;}
.y53{bottom:525.008047px;}
.y13{bottom:526.078500px;}
.y6a{bottom:527.925000px;}
.y195{bottom:530.062500px;}
.y88{bottom:530.282674px;}
.y13c{bottom:532.617516px;}
.ydd{bottom:536.170500px;}
.y119{bottom:537.730500px;}
.ya5{bottom:541.909500px;}
.y155{bottom:542.800500px;}
.y12{bottom:544.011000px;}
.y69{bottom:545.859000px;}
.yc4{bottom:552.037294px;}
.y52{bottom:552.842165px;}
.y194{bottom:555.466500px;}
.ya4{bottom:559.842000px;}
.y154{bottom:560.733000px;}
.y16c{bottom:560.847000px;}
.y11{bottom:561.945000px;}
.y87{bottom:562.162535px;}
.ydc{bottom:564.190500px;}
.y118{bottom:565.750500px;}
.y193{bottom:568.917000px;}
.yfa{bottom:569.245500px;}
.y13b{bottom:572.820000px;}
.y68{bottom:573.877500px;}
.y36{bottom:574.333500px;}
.ya3{bottom:577.774500px;}
.y10{bottom:579.877500px;}
.y192{bottom:582.366000px;}
.y13a{bottom:590.752500px;}
.y51{bottom:591.333000px;}
.y35{bottom:592.266000px;}
.yc3{bottom:593.215500px;}
.y86{bottom:594.042395px;}
.ya2{bottom:595.707000px;}
.y153{bottom:595.951500px;}
.yf{bottom:597.810000px;}
.y191{bottom:607.771500px;}
.y50{bottom:609.265500px;}
.y34{bottom:610.198500px;}
.y16b{bottom:611.283000px;}
.ydb{bottom:611.719500px;}
.y117{bottom:613.170000px;}
.ya1{bottom:613.639500px;}
.ye{bottom:615.742500px;}
.yf9{bottom:620.977642px;}
.y190{bottom:621.220500px;}
.y85{bottom:625.922256px;}
.y139{bottom:625.971000px;}
.y4f{bottom:627.198000px;}
.y33{bottom:628.132500px;}
.y16a{bottom:629.215500px;}
.ya0{bottom:631.572000px;}
.y67{bottom:632.947500px;}
.yd{bottom:633.675000px;}
.y18f{bottom:634.669500px;}
.y4e{bottom:645.130500px;}
.yc2{bottom:646.047778px;}
.y32{bottom:646.065000px;}
.y169{bottom:647.148000px;}
.y152{bottom:648.344650px;}
.y9f{bottom:649.506000px;}
.yf8{bottom:650.486288px;}
.yc{bottom:651.607500px;}
.y84{bottom:657.802116px;}
.y18e{bottom:660.075000px;}
.y4d{bottom:663.063000px;}
.yda{bottom:663.449189px;}
.y31{bottom:663.997500px;}
.y116{bottom:664.902214px;}
.y168{bottom:665.082000px;}
.y9e{bottom:667.438500px;}
.yb{bottom:669.541500px;}
.y138{bottom:673.504331px;}
.y18d{bottom:673.524000px;}
.yc1{bottom:678.857439px;}
.y151{bottom:679.838962px;}
.yf7{bottom:680.977321px;}
.y4c{bottom:680.995500px;}
.y30{bottom:681.930000px;}
.y66{bottom:684.677386px;}
.y9d{bottom:685.371000px;}
.y18c{bottom:686.974500px;}
.ya{bottom:687.474000px;}
.y83{bottom:689.684644px;}
.y137{bottom:690.416472px;}
.yd9{bottom:692.960304px;}
.y115{bottom:694.410860px;}
.y167{bottom:698.481000px;}
.y4b{bottom:698.929500px;}
.y9c{bottom:703.303500px;}
.y9{bottom:705.406500px;}
.y136{bottom:707.328613px;}
.y2f{bottom:709.950000px;}
.y150{bottom:711.333273px;}
.yc0{bottom:711.667099px;}
.y18b{bottom:712.378500px;}
.y65{bottom:714.188500px;}
.y4a{bottom:716.862000px;}
.y9b{bottom:721.236000px;}
.y82{bottom:721.564504px;}
.yf6{bottom:722.155500px;}
.y8{bottom:723.339000px;}
.yd8{bottom:723.451337px;}
.y135{bottom:724.240754px;}
.y114{bottom:724.904361px;}
.y18a{bottom:725.827500px;}
.y49{bottom:734.794500px;}
.y9a{bottom:739.168500px;}
.y134{bottom:741.154309px;}
.y7{bottom:741.271500px;}
.y14f{bottom:742.827585px;}
.y64{bottom:743.697146px;}
.ybf{bottom:744.476760px;}
.y166{bottom:748.917000px;}
.y189{bottom:751.233000px;}
.y2e{bottom:752.727000px;}
.y81{bottom:753.444365px;}
.y99{bottom:757.102500px;}
.y133{bottom:758.066450px;}
.y188{bottom:764.682000px;}
.yd7{bottom:764.737500px;}
.y113{bottom:766.080000px;}
.y165{bottom:766.849500px;}
.y6{bottom:767.758500px;}
.y2d{bottom:770.659500px;}
.y63{bottom:773.205792px;}
.y14e{bottom:774.324531px;}
.y132{bottom:774.978591px;}
.y98{bottom:775.035000px;}
.yf5{bottom:775.094818px;}
.ybe{bottom:777.289165px;}
.y80{bottom:786.388221px;}
.y2c{bottom:788.592000px;}
.y187{bottom:790.087500px;}
.y131{bottom:791.890731px;}
.y97{bottom:792.967500px;}
.y164{bottom:800.250000px;}
.y62{bottom:802.714438px;}
.y186{bottom:803.536500px;}
.y2b{bottom:806.526000px;}
.y14d{bottom:806.867336px;}
.yf4{bottom:808.231291px;}
.y130{bottom:809.367317px;}
.ybd{bottom:810.098826px;}
.y185{bottom:816.987000px;}
.yd6{bottom:817.161416px;}
.y7f{bottom:818.268081px;}
.y112{bottom:818.429612px;}
.y96{bottom:820.987500px;}
.y2a{bottom:824.458500px;}
.y12f{bottom:826.279458px;}
.y61{bottom:832.223084px;}
.y14c{bottom:838.361648px;}
.yf3{bottom:841.364991px;}
.y29{bottom:842.391000px;}
.ybc{bottom:842.908486px;}
.y12e{bottom:843.756044px;}
.yd5{bottom:848.746287px;}
.y111{bottom:849.796895px;}
.y163{bottom:850.684500px;}
.y7e{bottom:851.209270px;}
.y184{bottom:855.840000px;}
.y28{bottom:860.323500px;}
.y60{bottom:861.731730px;}
.y5{bottom:867.796500px;}
.y95{bottom:868.407000px;}
.y162{bottom:868.618500px;}
.y14b{bottom:870.907087px;}
.yf2{bottom:874.498692px;}
.ybb{bottom:875.718147px;}
.y27{bottom:878.256000px;}
.yd4{bottom:880.331158px;}
.y110{bottom:881.161555px;}
.y183{bottom:881.245500px;}
.y4{bottom:890.959500px;}
.y5f{bottom:892.225232px;}
.y182{bottom:894.694500px;}
.y26{bottom:896.188500px;}
.y161{bottom:902.017500px;}
.yf1{bottom:908.738236px;}
.yba{bottom:909.622835px;}
.yd3{bottom:912.970179px;}
.y10f{bottom:913.570392px;}
.y3{bottom:914.122500px;}
.y181{bottom:920.100000px;}
.y94{bottom:920.138156px;}
.y25{bottom:932.055000px;}
.y180{bottom:933.549000px;}
.yf0{bottom:941.871937px;}
.yb9{bottom:942.432496px;}
.yd2{bottom:944.555050px;}
.y10e{bottom:944.937675px;}
.y17f{bottom:946.998000px;}
.y93{bottom:949.646803px;}
.y24{bottom:949.987500px;}
.y160{bottom:952.453500px;}
.y2{bottom:958.954500px;}
.y23{bottom:967.920000px;}
.y17e{bottom:972.403500px;}
.yef{bottom:976.108709px;}
.yb8{bottom:976.337184px;}
.yd1{bottom:977.194070px;}
.y10d{bottom:977.346512px;}
.y92{bottom:980.140304px;}
.y1{bottom:985.852500px;}
.h11{height:20.234041px;}
.ha{height:24.675533px;}
.h8{height:25.787366px;}
.h1d{height:28.787846px;}
.h1e{height:30.963672px;}
.h3{height:32.804932px;}
.h9{height:32.900573px;}
.h1a{height:38.785565px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.hb{height:41.484266px;}
.hd{height:41.961802px;}
.h10{height:41.967802px;}
.h12{height:44.233944px;}
.h7{height:49.637990px;}
.h5{height:52.040387px;}
.h17{height:52.046387px;}
.h1b{height:57.463996px;}
.h1{height:59.221114px;}
.h6{height:59.565422px;}
.hc{height:61.771904px;}
.he{height:67.673841px;}
.h19{height:71.930342px;}
.h1c{height:72.227680px;}
.h15{height:72.435364px;}
.h16{height:72.788724px;}
.hf{height:73.111881px;}
.h13{height:75.244244px;}
.h18{height:75.987384px;}
.h14{height:77.910130px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:173.800500px;}
.x6{left:200.652000px;}
.x25{left:204.175893px;}
.xe{left:206.264334px;}
.x14{left:207.294694px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.xc{left:220.294045px;}
.x8{left:222.172500px;}
.x12{left:223.899954px;}
.x1b{left:226.659582px;}
.x1{left:231.355500px;}
.x26{left:233.209449px;}
.x1f{left:235.613535px;}
.x16{left:245.424000px;}
.x1e{left:246.529500px;}
.xb{left:247.643758px;}
.x10{left:253.320000px;}
.x11{left:256.270479px;}
.x18{left:257.892589px;}
.x15{left:262.327500px;}
.x1a{left:265.317000px;}
.x2{left:266.614500px;}
.xf{left:270.223500px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x24{left:315.684264px;}
.x23{left:341.017817px;}
.x22{left:358.190253px;}
.xd{left:397.572638px;}
.x3{left:405.975000px;}
.x13{left:421.928421px;}
.x19{left:435.981396px;}
.x1d{left:440.874790px;}
.x21{left:450.964500px;}
.xa{left:454.699500px;}
.x1c{left:459.388958px;}
.x20{left:461.192471px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.ls44{letter-spacing:-0.942482pt;}
.ls2f{letter-spacing:-0.933264pt;}
.ls21{letter-spacing:-0.906816pt;}
.ls3b{letter-spacing:-0.898425pt;}
.ls63{letter-spacing:-0.895849pt;}
.ls4d{letter-spacing:-0.892162pt;}
.ls5a{letter-spacing:-0.481062pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007970pt;}
.ls1{letter-spacing:0.012752pt;}
.ls5b{letter-spacing:2.004422pt;}
.ls53{letter-spacing:2.474409pt;}
.ls50{letter-spacing:2.485489pt;}
.ls4f{letter-spacing:2.504601pt;}
.ls51{letter-spacing:2.505527pt;}
.ls52{letter-spacing:2.506634pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls43{letter-spacing:3.141597pt;}
.lsd{letter-spacing:3.192346pt;}
.ls59{letter-spacing:3.682457pt;}
.ls4e{letter-spacing:3.717330pt;}
.ls58{letter-spacing:3.718649pt;}
.ls64{letter-spacing:3.732697pt;}
.ls3c{letter-spacing:3.743430pt;}
.ls22{letter-spacing:3.778392pt;}
.ls30{letter-spacing:3.888591pt;}
.ls45{letter-spacing:3.926997pt;}
.lsb{letter-spacing:3.940873pt;}
.ls6{letter-spacing:3.958520pt;}
.ls9{letter-spacing:3.985019pt;}
.ls5{letter-spacing:3.988957pt;}
.ls8{letter-spacing:3.990433pt;}
.lsa{letter-spacing:3.992195pt;}
.ls7{letter-spacing:3.993030pt;}
.ls18{letter-spacing:4.336732pt;}
.ls17{letter-spacing:4.370579pt;}
.ls4a{letter-spacing:4.588952pt;}
.ls61{letter-spacing:4.607921pt;}
.ls47{letter-spacing:4.609501pt;}
.ls5d{letter-spacing:4.628555pt;}
.ls37{letter-spacing:4.630565pt;}
.ls49{letter-spacing:4.639387pt;}
.ls32{letter-spacing:4.641864pt;}
.ls46{letter-spacing:4.644945pt;}
.ls48{letter-spacing:4.646663pt;}
.ls4b{letter-spacing:4.648715pt;}
.ls5c{letter-spacing:4.664145pt;}
.ls1d{letter-spacing:4.664331pt;}
.ls5e{letter-spacing:4.665871pt;}
.ls60{letter-spacing:4.667931pt;}
.ls36{letter-spacing:4.671960pt;}
.ls5f{letter-spacing:4.673512pt;}
.ls31{letter-spacing:4.677557pt;}
.ls33{letter-spacing:4.679287pt;}
.ls1a{letter-spacing:4.685218pt;}
.ls19{letter-spacing:4.721243pt;}
.ls1b{letter-spacing:4.722990pt;}
.ls1c{letter-spacing:4.725076pt;}
.ls2b{letter-spacing:4.800370pt;}
.ls28{letter-spacing:4.821865pt;}
.ls41{letter-spacing:4.847780pt;}
.ls27{letter-spacing:4.858942pt;}
.ls29{letter-spacing:4.860739pt;}
.ls2a{letter-spacing:4.862886pt;}
.ls3e{letter-spacing:4.869488pt;}
.ls3d{letter-spacing:4.906931pt;}
.ls3f{letter-spacing:4.908746pt;}
.ls40{letter-spacing:4.910914pt;}
.ls2e{letter-spacing:6.536174pt;}
.ls56{letter-spacing:8.853652pt;}
.ls55{letter-spacing:10.094400pt;}
.ls57{letter-spacing:10.096319pt;}
.ls15{letter-spacing:11.802986pt;}
.ls20{letter-spacing:11.808319pt;}
.lsf{letter-spacing:12.448319pt;}
.ls13{letter-spacing:12.565652pt;}
.ls11{letter-spacing:12.570986pt;}
.ls1f{letter-spacing:13.283733pt;}
.ls16{letter-spacing:13.285652pt;}
.ls67{letter-spacing:14.418838pt;}
.lse{letter-spacing:14.430400pt;}
.ls10{letter-spacing:14.432319pt;}
.ls14{letter-spacing:14.650986pt;}
.ls12{letter-spacing:14.656319pt;}
.ls54{letter-spacing:14.990355pt;}
.ls66{letter-spacing:15.095380pt;}
.ls39{letter-spacing:15.852881pt;}
.ls65{letter-spacing:17.858047pt;}
.ls25{letter-spacing:18.328174pt;}
.ls2d{letter-spacing:19.682841pt;}
.ls23{letter-spacing:19.816174pt;}
.ls26{letter-spacing:19.821507pt;}
.ls24{letter-spacing:22.130841pt;}
.lsc{letter-spacing:23.874418pt;}
.ls4c{letter-spacing:27.809912pt;}
.ls62{letter-spacing:27.915503pt;}
.ls38{letter-spacing:28.005166pt;}
.ls1e{letter-spacing:28.257241pt;}
.ls2c{letter-spacing:29.091142pt;}
.ls42{letter-spacing:29.378457pt;}
.ls3a{letter-spacing:32.608307pt;}
.ls34{letter-spacing:37.241656pt;}
.ls35{letter-spacing:37.251050pt;}
.ws98{word-spacing:-4.772873pt;}
.wsaf{word-spacing:-4.025171pt;}
.ws8f{word-spacing:-3.985806pt;}
.ws77{word-spacing:-3.872852pt;}
.ws9d{word-spacing:-3.837015pt;}
.wsee{word-spacing:-3.826014pt;}
.wsbf{word-spacing:-3.810264pt;}
.ws4e{word-spacing:-3.272155pt;}
.wsda{word-spacing:-2.054533pt;}
.wsa0{word-spacing:-0.087434pt;}
.wsf5{word-spacing:-0.076513pt;}
.ws12{word-spacing:-0.053134pt;}
.ws1d{word-spacing:0.000000pt;}
.wsfc{word-spacing:7.103978pt;}
.ws100{word-spacing:7.141171pt;}
.ws102{word-spacing:7.327139pt;}
.wsff{word-spacing:8.071011pt;}
.ws105{word-spacing:8.108205pt;}
.ws111{word-spacing:8.219786pt;}
.wsfb{word-spacing:9.261206pt;}
.ws10a{word-spacing:9.819110pt;}
.ws115{word-spacing:9.893498pt;}
.ws107{word-spacing:9.930691pt;}
.ws10f{word-spacing:9.967885pt;}
.wsd4{word-spacing:9.968033pt;}
.wsd6{word-spacing:9.971999pt;}
.wsd8{word-spacing:9.973063pt;}
.wsd7{word-spacing:9.979864pt;}
.wsd3{word-spacing:9.993703pt;}
.ws35{word-spacing:10.042301pt;}
.wse2{word-spacing:10.201702pt;}
.ws96{word-spacing:10.414238pt;}
.ws67{word-spacing:10.467372pt;}
.ws10e{word-spacing:10.488595pt;}
.wsca{word-spacing:10.520506pt;}
.ws1b{word-spacing:10.566471pt;}
.ws2{word-spacing:10.584293pt;}
.ws16{word-spacing:10.626773pt;}
.wse0{word-spacing:10.733041pt;}
.wsf3{word-spacing:10.786175pt;}
.ws7a{word-spacing:10.892443pt;}
.ws44{word-spacing:10.945577pt;}
.wsb3{word-spacing:11.104978pt;}
.ws112{word-spacing:11.120886pt;}
.ws20{word-spacing:11.264380pt;}
.ws104{word-spacing:11.306854pt;}
.ws84{word-spacing:11.423781pt;}
.wsb4{word-spacing:11.476915pt;}
.ws42{word-spacing:11.530049pt;}
.ws1c{word-spacing:11.604466pt;}
.wsf8{word-spacing:11.689451pt;}
.ws7{word-spacing:11.742585pt;}
.wsd{word-spacing:11.795718pt;}
.ws2b{word-spacing:11.955120pt;}
.ws87{word-spacing:12.008254pt;}
.ws103{word-spacing:12.013533pt;}
.ws82{word-spacing:12.061388pt;}
.ws1f{word-spacing:12.114522pt;}
.ws24{word-spacing:12.167655pt;}
.wse3{word-spacing:12.327057pt;}
.ws101{word-spacing:12.385469pt;}
.ws108{word-spacing:12.422662pt;}
.ws19{word-spacing:12.433325pt;}
.wsdc{word-spacing:12.477527pt;}
.ws68{word-spacing:12.486459pt;}
.ws113{word-spacing:12.497050pt;}
.wsfd{word-spacing:12.534243pt;}
.ws2a{word-spacing:12.539593pt;}
.ws10b{word-spacing:12.571437pt;}
.wscd{word-spacing:12.592726pt;}
.wsa5{word-spacing:12.645860pt;}
.ws27{word-spacing:12.698994pt;}
.wsf7{word-spacing:12.752128pt;}
.wsfa{word-spacing:12.794598pt;}
.wsa4{word-spacing:12.805262pt;}
.ws21{word-spacing:12.911530pt;}
.ws6{word-spacing:13.017797pt;}
.ws93{word-spacing:13.070931pt;}
.ws11{word-spacing:13.124065pt;}
.wsd0{word-spacing:13.177199pt;}
.ws85{word-spacing:13.229326pt;}
.ws1{word-spacing:13.230333pt;}
.ws59{word-spacing:13.233375pt;}
.ws10c{word-spacing:13.240922pt;}
.ws88{word-spacing:13.283467pt;}
.wsf4{word-spacing:13.336601pt;}
.wsc9{word-spacing:13.442868pt;}
.ws17{word-spacing:13.496002pt;}
.ws38{word-spacing:13.761671pt;}
.wsc7{word-spacing:13.867939pt;}
.ws23{word-spacing:13.974207pt;}
.ws109{word-spacing:14.021987pt;}
.ws2d{word-spacing:14.027341pt;}
.ws63{word-spacing:14.080475pt;}
.ws114{word-spacing:14.133568pt;}
.ws45{word-spacing:14.133609pt;}
.ws10d{word-spacing:14.170762pt;}
.ws80{word-spacing:14.186742pt;}
.ws110{word-spacing:14.207955pt;}
.wsc5{word-spacing:14.239876pt;}
.wsfe{word-spacing:14.282342pt;}
.ws3d{word-spacing:14.293010pt;}
.wse{word-spacing:14.346144pt;}
.ws53{word-spacing:14.364381pt;}
.ws54{word-spacing:14.399278pt;}
.ws3b{word-spacing:14.505546pt;}
.ws106{word-spacing:14.579891pt;}
.ws56{word-spacing:14.588739pt;}
.ws57{word-spacing:14.591042pt;}
.ws55{word-spacing:14.592154pt;}
.ws58{word-spacing:14.611813pt;}
.ws3{word-spacing:14.664947pt;}
.ws29{word-spacing:14.718081pt;}
.wsdd{word-spacing:14.789221pt;}
.ws1e{word-spacing:14.877483pt;}
.ws51{word-spacing:14.908919pt;}
.ws47{word-spacing:14.930617pt;}
.wsb7{word-spacing:14.983750pt;}
.ws22{word-spacing:15.090018pt;}
.ws49{word-spacing:15.143152pt;}
.wsb6{word-spacing:15.196286pt;}
.wscb{word-spacing:15.239081pt;}
.wse6{word-spacing:15.249420pt;}
.wsc3{word-spacing:15.302554pt;}
.ws6b{word-spacing:15.355687pt;}
.ws25{word-spacing:15.461955pt;}
.ws95{word-spacing:15.515089pt;}
.ws86{word-spacing:15.568223pt;}
.ws6a{word-spacing:15.621357pt;}
.ws26{word-spacing:15.674491pt;}
.wsc8{word-spacing:15.727625pt;}
.wsd1{word-spacing:15.780758pt;}
.ws14{word-spacing:15.876506pt;}
.ws4c{word-spacing:15.881924pt;}
.wsc6{word-spacing:15.887026pt;}
.ws4d{word-spacing:15.894449pt;}
.ws4b{word-spacing:15.897925pt;}
.ws4a{word-spacing:15.908479pt;}
.wsd9{word-spacing:15.915151pt;}
.wsd5{word-spacing:15.924184pt;}
.ws62{word-spacing:15.940160pt;}
.ws6f{word-spacing:15.993294pt;}
.ws1a{word-spacing:16.046428pt;}
.wscc{word-spacing:16.099562pt;}
.ws5{word-spacing:16.205829pt;}
.wsa{word-spacing:16.258963pt;}
.ws6d{word-spacing:16.418365pt;}
.ws8{word-spacing:16.465748pt;}
.wsa7{word-spacing:16.471499pt;}
.ws3a{word-spacing:16.577766pt;}
.wsd2{word-spacing:16.684034pt;}
.ws2c{word-spacing:16.737168pt;}
.ws3f{word-spacing:16.843436pt;}
.wsb5{word-spacing:17.002837pt;}
.wse4{word-spacing:17.025748pt;}
.ws28{word-spacing:17.055971pt;}
.ws33{word-spacing:17.109105pt;}
.wsb8{word-spacing:17.215373pt;}
.wscf{word-spacing:17.268507pt;}
.ws31{word-spacing:17.321641pt;}
.wsa6{word-spacing:17.345748pt;}
.ws3c{word-spacing:17.374774pt;}
.ws5a{word-spacing:17.416877pt;}
.ws7d{word-spacing:17.427908pt;}
.ws48{word-spacing:17.481042pt;}
.ws4{word-spacing:17.534176pt;}
.ws39{word-spacing:17.587310pt;}
.ws6c{word-spacing:17.640444pt;}
.ws64{word-spacing:17.746711pt;}
.wsc4{word-spacing:17.799845pt;}
.ws46{word-spacing:17.852979pt;}
.wse7{word-spacing:17.906113pt;}
.ws2e{word-spacing:17.943081pt;}
.ws7c{word-spacing:18.012381pt;}
.ws15{word-spacing:18.118649pt;}
.wsf6{word-spacing:18.171782pt;}
.ws37{word-spacing:18.331184pt;}
.ws36{word-spacing:18.384318pt;}
.ws66{word-spacing:18.437452pt;}
.wsde{word-spacing:18.486479pt;}
.ws92{word-spacing:18.490586pt;}
.wsba{word-spacing:18.491480pt;}
.wsbc{word-spacing:18.493718pt;}
.wsbd{word-spacing:18.508303pt;}
.wsb9{word-spacing:18.524640pt;}
.ws6e{word-spacing:18.543719pt;}
.wse9{word-spacing:18.569336pt;}
.wseb{word-spacing:18.570166pt;}
.wsec{word-spacing:18.575444pt;}
.ws7e{word-spacing:18.596853pt;}
.wse8{word-spacing:18.601216pt;}
.ws9a{word-spacing:18.623563pt;}
.ws9b{word-spacing:18.638250pt;}
.wsa2{word-spacing:18.649987pt;}
.ws97{word-spacing:18.654702pt;}
.ws75{word-spacing:18.792042pt;}
.ws73{word-spacing:18.797499pt;}
.ws71{word-spacing:18.801523pt;}
.ws3e{word-spacing:18.809389pt;}
.ws74{word-spacing:18.812323pt;}
.ws70{word-spacing:18.828929pt;}
.ws41{word-spacing:18.915657pt;}
.wse1{word-spacing:18.968790pt;}
.ws0{word-spacing:19.051754pt;}
.ws18{word-spacing:19.075058pt;}
.ws94{word-spacing:19.181326pt;}
.wsc{word-spacing:19.287594pt;}
.ws8a{word-spacing:19.344321pt;}
.ws8c{word-spacing:19.345742pt;}
.ws8d{word-spacing:19.360999pt;}
.ws43{word-spacing:19.372414pt;}
.ws89{word-spacing:19.378089pt;}
.ws7f{word-spacing:19.446995pt;}
.wsac{word-spacing:19.536808pt;}
.wsad{word-spacing:19.552215pt;}
.wsa9{word-spacing:19.569474pt;}
.ws81{word-spacing:19.606397pt;}
.ws69{word-spacing:19.659531pt;}
.wsa8{word-spacing:19.818932pt;}
.ws50{word-spacing:19.872357pt;}
.wsf9{word-spacing:19.925200pt;}
.wsb{word-spacing:20.084602pt;}
.ws83{word-spacing:20.297137pt;}
.ws30{word-spacing:20.350271pt;}
.ws52{word-spacing:20.509673pt;}
.ws9{word-spacing:20.722208pt;}
.wsf2{word-spacing:20.823081pt;}
.wsce{word-spacing:20.881610pt;}
.wse5{word-spacing:21.147279pt;}
.ws40{word-spacing:21.359814pt;}
.wsf{word-spacing:21.519216pt;}
.ws5b{word-spacing:21.771042pt;}
.ws32{word-spacing:22.369358pt;}
.wsa3{word-spacing:22.422492pt;}
.ws65{word-spacing:22.567081pt;}
.ws34{word-spacing:22.847563pt;}
.wsaa{word-spacing:23.070468pt;}
.wsc1{word-spacing:23.140381pt;}
.wsf0{word-spacing:23.236037pt;}
.ws9f{word-spacing:23.302850pt;}
.ws79{word-spacing:23.520489pt;}
.ws91{word-spacing:24.206481pt;}
.wsb1{word-spacing:24.445554pt;}
.ws2f{word-spacing:26.513799pt;}
.wsbe{word-spacing:29.515677pt;}
.wsbb{word-spacing:29.532429pt;}
.wsed{word-spacing:29.637686pt;}
.wsea{word-spacing:29.654507pt;}
.ws9c{word-spacing:29.722906pt;}
.ws99{word-spacing:29.739776pt;}
.ws76{word-spacing:30.000506pt;}
.ws72{word-spacing:30.017534pt;}
.ws8e{word-spacing:30.875493pt;}
.ws8b{word-spacing:30.893018pt;}
.wsae{word-spacing:31.180431pt;}
.wsab{word-spacing:31.198128pt;}
.ws10{word-spacing:32.801476pt;}
.ws13{word-spacing:38.180020pt;}
.wsdb{word-spacing:60.082549pt;}
.wsdf{word-spacing:89.017224pt;}
.ws4f{word-spacing:95.690585pt;}
.ws7b{word-spacing:104.833250pt;}
.wsc0{word-spacing:111.426977pt;}
.wsef{word-spacing:111.887582pt;}
.ws9e{word-spacing:112.209305pt;}
.ws78{word-spacing:113.257293pt;}
.ws90{word-spacing:116.560527pt;}
.wsb0{word-spacing:117.711722pt;}
.wsc2{word-spacing:223.743358pt;}
.wsb2{word-spacing:435.071101pt;}
.wsa1{word-spacing:571.467990pt;}
.wsf1{word-spacing:585.632282pt;}
.ws5c{word-spacing:725.176791pt;}
.ws5e{word-spacing:880.634271pt;}
.ws5d{word-spacing:904.853462pt;}
.ws5f{word-spacing:919.367490pt;}
.ws60{word-spacing:938.952684pt;}
.ws61{word-spacing:997.970568pt;}
._46{margin-left:-1929.334807pt;}
._32{margin-left:-1928.430998pt;}
._16{margin-left:-1923.042185pt;}
._44{margin-left:-1919.642841pt;}
._d{margin-left:-1914.393381pt;}
._8{margin-left:-1900.455657pt;}
._84{margin-left:-1882.967520pt;}
._61{margin-left:-1855.541947pt;}
._8b{margin-left:-1819.552029pt;}
._88{margin-left:-1807.765036pt;}
._8a{margin-left:-1749.127501pt;}
._62{margin-left:-1735.106908pt;}
._59{margin-left:-1706.892499pt;}
._e{margin-left:-1597.184197pt;}
._12{margin-left:-1574.481557pt;}
._87{margin-left:-1050.248019pt;}
._89{margin-left:-740.457219pt;}
._7e{margin-left:-645.177973pt;}
._86{margin-left:-638.212013pt;}
._82{margin-left:-556.769279pt;}
._2b{margin-left:-486.061273pt;}
._85{margin-left:-450.186577pt;}
._83{margin-left:-206.149844pt;}
._38{margin-left:-8.690301pt;}
._2c{margin-left:-7.251127pt;}
._1b{margin-left:-6.139308pt;}
._67{margin-left:-5.231340pt;}
._17{margin-left:-4.250709pt;}
._6{margin-left:-3.171021pt;}
._1{margin-left:-2.142366pt;}
._0{margin-left:-1.147696pt;}
._1c{width:1.596173pt;}
._69{width:2.926463pt;}
._33{width:5.440898pt;}
._52{width:6.399230pt;}
._2f{width:9.585345pt;}
._45{width:10.573639pt;}
._15{width:11.547060pt;}
._60{width:12.737254pt;}
._b{width:13.741735pt;}
._19{width:15.138914pt;}
._3{width:16.030173pt;}
._31{width:17.070845pt;}
._9{width:18.224916pt;}
._66{width:19.242369pt;}
._11{width:20.137735pt;}
._5{width:21.359814pt;}
._4{width:22.688161pt;}
._f{width:24.458590pt;}
._2{width:25.574401pt;}
._18{width:26.549922pt;}
._10{width:28.054682pt;}
._1a{width:29.223627pt;}
._2d{width:30.339438pt;}
._7{width:31.880533pt;}
._2e{width:32.906875pt;}
._a{width:33.931292pt;}
._30{width:35.652825pt;}
._13{width:38.256533pt;}
._68{width:39.584731pt;}
._14{width:43.867325pt;}
._58{width:44.823734pt;}
._72{width:61.485644pt;}
._7d{width:73.411955pt;}
._6f{width:74.664324pt;}
._6a{width:81.028759pt;}
._6e{width:86.540919pt;}
._73{width:93.005180pt;}
._78{width:94.157327pt;}
._77{width:95.761260pt;}
._74{width:99.569662pt;}
._6d{width:106.033923pt;}
._6c{width:108.288898pt;}
._75{width:112.311499pt;}
._7c{width:116.607249pt;}
._7a{width:118.060455pt;}
._76{width:120.816535pt;}
._24{width:128.970797pt;}
._71{width:136.651469pt;}
._56{width:138.250808pt;}
._70{width:141.712634pt;}
._1e{width:148.124876pt;}
._79{width:149.179106pt;}
._63{width:150.273078pt;}
._53{width:151.328145pt;}
._21{width:152.594161pt;}
._7b{width:154.240272pt;}
._4f{width:156.801356pt;}
._5e{width:158.650661pt;}
._80{width:161.687043pt;}
._23{width:164.616686pt;}
._50{width:167.501075pt;}
._26{width:168.875128pt;}
._65{width:173.413460pt;}
._20{width:174.701161pt;}
._3e{width:176.261976pt;}
._51{width:178.856323pt;}
._5f{width:180.052792pt;}
._47{width:181.111145pt;}
._5b{width:183.194390pt;}
._55{width:184.925426pt;}
._49{width:191.684718pt;}
._3d{width:197.435148pt;}
._36{width:199.876924pt;}
._3b{width:201.309353pt;}
._5c{width:203.989989pt;}
._27{width:205.826539pt;}
._3f{width:207.920185pt;}
._25{width:208.910493pt;}
._4a{width:211.228847pt;}
._41{width:213.115474pt;}
._34{width:215.084951pt;}
._4e{width:216.867304pt;}
._35{width:221.050097pt;}
._29{width:227.761453pt;}
._39{width:229.740398pt;}
._42{width:234.180008pt;}
._5d{width:239.823833pt;}
._2a{width:241.089499pt;}
._40{width:249.090477pt;}
._4b{width:251.767412pt;}
._5a{width:258.967941pt;}
._54{width:271.048976pt;}
._37{width:272.705426pt;}
._48{width:276.071108pt;}
._4d{width:289.311201pt;}
._22{width:295.770900pt;}
._3c{width:297.031051pt;}
._4c{width:300.374805pt;}
._1d{width:306.146026pt;}
._43{width:320.138421pt;}
._7f{width:332.517840pt;}
._57{width:333.470666pt;}
._1f{width:335.675231pt;}
._3a{width:343.550271pt;}
._64{width:362.100471pt;}
._28{width:375.579562pt;}
._81{width:379.176548pt;}
._6b{width:479.507454pt;}
._c{width:983.973673pt;}
.fs5{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs1b{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs16{font-size:40.088540pt;}
.fs2{font-size:42.507200pt;}
.fs15{font-size:50.110550pt;}
.fs1{font-size:53.133867pt;}
.fs18{font-size:59.394460pt;}
.fs4{font-size:63.761067pt;}
.fs8{font-size:63.847090pt;}
.fsa{font-size:69.947298pt;}
.fs17{font-size:74.242889pt;}
.fs14{font-size:74.346793pt;}
.fs1a{font-size:74.654120pt;}
.fs10{font-size:74.868782pt;}
.fsc{font-size:75.568025pt;}
.fs0{font-size:76.513067pt;}
.fse{font-size:77.772023pt;}
.fs12{font-size:78.540128pt;}
.fs7{font-size:79.808662pt;}
.fs9{font-size:87.433903pt;}
.fs13{font-size:92.933258pt;}
.fs19{font-size:93.317416pt;}
.fsf{font-size:93.585742pt;}
.fsb{font-size:94.459794pt;}
.fsd{font-size:97.214785pt;}
.fs11{font-size:98.174914pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:119.153333pt;}
.y21{bottom:159.004000pt;}
.y12d{bottom:159.177333pt;}
.y48{bottom:160.365333pt;}
.y14a{bottom:164.384000pt;}
.yb7{bottom:166.378667pt;}
.y7d{bottom:166.402667pt;}
.y12c{bottom:175.117333pt;}
.y20{bottom:175.480000pt;}
.y47{bottom:176.305333pt;}
.y5e{bottom:177.237333pt;}
.y17d{bottom:180.125333pt;}
.y149{bottom:180.325333pt;}
.yb6{bottom:182.320000pt;}
.y7c{bottom:182.342667pt;}
.y10c{bottom:183.894667pt;}
.y1f{bottom:184.701333pt;}
.y12b{bottom:191.058667pt;}
.y17c{bottom:192.080000pt;}
.y46{bottom:192.245333pt;}
.y15f{bottom:192.346667pt;}
.y148{bottom:196.265333pt;}
.yb5{bottom:198.260000pt;}
.y7b{bottom:198.282667pt;}
.y10b{bottom:199.834667pt;}
.y1e{bottom:201.178667pt;}
.yee{bottom:205.613333pt;}
.y12a{bottom:206.998667pt;}
.y91{bottom:207.401333pt;}
.y45{bottom:208.185333pt;}
.y15e{bottom:208.286667pt;}
.y147{bottom:212.205333pt;}
.yb4{bottom:214.200000pt;}
.y7a{bottom:214.224000pt;}
.y17b{bottom:214.662667pt;}
.y10a{bottom:215.774667pt;}
.yed{bottom:221.553333pt;}
.yd0{bottom:221.709333pt;}
.y5d{bottom:222.457760pt;}
.y129{bottom:222.938667pt;}
.y90{bottom:223.341333pt;}
.y44{bottom:224.126667pt;}
.y15d{bottom:224.228000pt;}
.y17a{bottom:226.617333pt;}
.y146{bottom:228.145333pt;}
.yb3{bottom:230.140000pt;}
.y79{bottom:230.164000pt;}
.y109{bottom:231.714667pt;}
.yec{bottom:237.493333pt;}
.ycf{bottom:237.649333pt;}
.y128{bottom:238.878667pt;}
.y43{bottom:240.066667pt;}
.y15c{bottom:240.168000pt;}
.y1d{bottom:241.577333pt;}
.y145{bottom:244.085333pt;}
.yb2{bottom:246.080000pt;}
.y78{bottom:246.104000pt;}
.y5c{bottom:246.400118pt;}
.y108{bottom:247.654667pt;}
.y179{bottom:249.198667pt;}
.yeb{bottom:253.433333pt;}
.yce{bottom:253.589333pt;}
.y8f{bottom:254.646667pt;}
.y127{bottom:254.818667pt;}
.y42{bottom:256.006667pt;}
.y15b{bottom:256.108000pt;}
.y1c{bottom:257.517333pt;}
.y144{bottom:260.025333pt;}
.y178{bottom:261.154667pt;}
.yb1{bottom:262.020000pt;}
.y77{bottom:262.044000pt;}
.y1a2{bottom:262.614667pt;}
.y107{bottom:263.594667pt;}
.yea{bottom:269.373333pt;}
.ycd{bottom:269.529333pt;}
.y126{bottom:270.758667pt;}
.y5b{bottom:271.141557pt;}
.y41{bottom:271.946667pt;}
.y1b{bottom:273.458667pt;}
.y1a1{bottom:274.570667pt;}
.y143{bottom:275.966667pt;}
.y76{bottom:277.984000pt;}
.y106{bottom:279.536000pt;}
.y177{bottom:283.736000pt;}
.ye9{bottom:285.313333pt;}
.ycc{bottom:285.469333pt;}
.y15a{bottom:285.796000pt;}
.y125{bottom:286.700000pt;}
.yb0{bottom:286.926667pt;}
.y40{bottom:287.886667pt;}
.y1a{bottom:289.398667pt;}
.y142{bottom:291.906667pt;}
.y75{bottom:293.924000pt;}
.y105{bottom:295.476000pt;}
.y176{bottom:295.692000pt;}
.y5a{bottom:295.882995pt;}
.y1a0{bottom:297.152000pt;}
.ye8{bottom:301.254667pt;}
.y8e{bottom:301.334084pt;}
.ycb{bottom:301.409333pt;}
.y124{bottom:302.640000pt;}
.y3f{bottom:303.826667pt;}
.y19{bottom:305.338667pt;}
.y141{bottom:307.846667pt;}
.y19f{bottom:309.108000pt;}
.y74{bottom:309.865333pt;}
.y104{bottom:311.416000pt;}
.ye7{bottom:317.194667pt;}
.yca{bottom:317.350667pt;}
.y175{bottom:318.273333pt;}
.y123{bottom:318.580000pt;}
.y3e{bottom:319.768000pt;}
.y59{bottom:319.825353pt;}
.y18{bottom:321.278667pt;}
.yaf{bottom:322.294667pt;}
.y73{bottom:325.805333pt;}
.y103{bottom:327.356000pt;}
.y8d{bottom:329.671738pt;}
.y174{bottom:330.229333pt;}
.y19e{bottom:331.689333pt;}
.y140{bottom:332.753333pt;}
.ye6{bottom:333.134667pt;}
.yc9{bottom:333.290667pt;}
.y122{bottom:334.520000pt;}
.y3d{bottom:335.708000pt;}
.yae{bottom:338.234667pt;}
.y72{bottom:341.745333pt;}
.y102{bottom:343.296000pt;}
.y19d{bottom:343.645333pt;}
.y58{bottom:344.566791pt;}
.y159{bottom:345.993333pt;}
.y17{bottom:346.185333pt;}
.ye5{bottom:349.074667pt;}
.yc8{bottom:349.230667pt;}
.y121{bottom:350.460000pt;}
.y3c{bottom:351.648000pt;}
.y173{bottom:352.810667pt;}
.yad{bottom:354.174667pt;}
.y19c{bottom:355.600000pt;}
.y71{bottom:357.685333pt;}
.y8c{bottom:358.009392pt;}
.y101{bottom:359.236000pt;}
.y172{bottom:364.765333pt;}
.ye4{bottom:365.014667pt;}
.y120{bottom:366.401333pt;}
.y3b{bottom:367.588000pt;}
.y57{bottom:369.306226pt;}
.yac{bottom:370.114667pt;}
.y70{bottom:373.625333pt;}
.y100{bottom:375.177333pt;}
.y19b{bottom:378.181333pt;}
.y16{bottom:378.530667pt;}
.ye3{bottom:380.954667pt;}
.y11f{bottom:382.341333pt;}
.y13f{bottom:383.485333pt;}
.y3a{bottom:383.528000pt;}
.yab{bottom:386.056000pt;}
.y8b{bottom:386.347045pt;}
.y171{bottom:387.348000pt;}
.y6f{bottom:389.566667pt;}
.y19a{bottom:390.137333pt;}
.yff{bottom:391.117333pt;}
.yc7{bottom:391.381333pt;}
.y158{bottom:391.977471pt;}
.y56{bottom:394.047665pt;}
.ye2{bottom:396.896000pt;}
.y11e{bottom:398.281333pt;}
.y170{bottom:399.302667pt;}
.yaa{bottom:401.996000pt;}
.y199{bottom:402.092000pt;}
.y6e{bottom:405.506667pt;}
.yfe{bottom:407.057333pt;}
.y39{bottom:408.434667pt;}
.ye1{bottom:412.836000pt;}
.y11d{bottom:414.221333pt;}
.y8a{bottom:414.684699pt;}
.ya9{bottom:417.936000pt;}
.y55{bottom:417.990023pt;}
.y157{bottom:418.207379pt;}
.y6d{bottom:421.446667pt;}
.y16f{bottom:421.885333pt;}
.yfd{bottom:422.997333pt;}
.y198{bottom:424.674667pt;}
.y15{bottom:426.433333pt;}
.y13e{bottom:428.149152pt;}
.ye0{bottom:428.776000pt;}
.y11c{bottom:430.161333pt;}
.y38{bottom:433.341333pt;}
.y16e{bottom:433.840000pt;}
.ya8{bottom:433.876000pt;}
.y197{bottom:436.629333pt;}
.yc6{bottom:437.364574pt;}
.y6c{bottom:437.386667pt;}
.yfc{bottom:438.937333pt;}
.y14{bottom:442.373333pt;}
.y54{bottom:442.731461pt;}
.y89{bottom:443.022353pt;}
.ydf{bottom:444.716000pt;}
.y156{bottom:445.312714pt;}
.y11b{bottom:446.101333pt;}
.ya7{bottom:449.816000pt;}
.y13d{bottom:450.423658pt;}
.y6b{bottom:453.326667pt;}
.y196{bottom:459.210667pt;}
.yde{bottom:460.656000pt;}
.y16d{bottom:460.872000pt;}
.y11a{bottom:462.042667pt;}
.yc5{bottom:463.594482pt;}
.yfb{bottom:463.844000pt;}
.y37{bottom:465.686667pt;}
.ya6{bottom:465.756000pt;}
.y53{bottom:466.673819pt;}
.y13{bottom:467.625333pt;}
.y6a{bottom:469.266667pt;}
.y195{bottom:471.166667pt;}
.y88{bottom:471.362377pt;}
.y13c{bottom:473.437792pt;}
.ydd{bottom:476.596000pt;}
.y119{bottom:477.982667pt;}
.ya5{bottom:481.697333pt;}
.y155{bottom:482.489333pt;}
.y12{bottom:483.565333pt;}
.y69{bottom:485.208000pt;}
.yc4{bottom:490.699817pt;}
.y52{bottom:491.415257pt;}
.y194{bottom:493.748000pt;}
.ya4{bottom:497.637333pt;}
.y154{bottom:498.429333pt;}
.y16c{bottom:498.530667pt;}
.y11{bottom:499.506667pt;}
.y87{bottom:499.700031pt;}
.ydc{bottom:501.502667pt;}
.y118{bottom:502.889333pt;}
.y193{bottom:505.704000pt;}
.yfa{bottom:505.996000pt;}
.y13b{bottom:509.173333pt;}
.y68{bottom:510.113333pt;}
.y36{bottom:510.518667pt;}
.ya3{bottom:513.577333pt;}
.y10{bottom:515.446667pt;}
.y192{bottom:517.658667pt;}
.y13a{bottom:525.113333pt;}
.y51{bottom:525.629333pt;}
.y35{bottom:526.458667pt;}
.yc3{bottom:527.302667pt;}
.y86{bottom:528.037685pt;}
.ya2{bottom:529.517333pt;}
.y153{bottom:529.734667pt;}
.yf{bottom:531.386667pt;}
.y191{bottom:540.241333pt;}
.y50{bottom:541.569333pt;}
.y34{bottom:542.398667pt;}
.y16b{bottom:543.362667pt;}
.ydb{bottom:543.750667pt;}
.y117{bottom:545.040000pt;}
.ya1{bottom:545.457333pt;}
.ye{bottom:547.326667pt;}
.yf9{bottom:551.980126pt;}
.y190{bottom:552.196000pt;}
.y85{bottom:556.375339pt;}
.y139{bottom:556.418667pt;}
.y4f{bottom:557.509333pt;}
.y33{bottom:558.340000pt;}
.y16a{bottom:559.302667pt;}
.ya0{bottom:561.397333pt;}
.y67{bottom:562.620000pt;}
.yd{bottom:563.266667pt;}
.y18f{bottom:564.150667pt;}
.y4e{bottom:573.449333pt;}
.yc2{bottom:574.264692pt;}
.y32{bottom:574.280000pt;}
.y169{bottom:575.242667pt;}
.y152{bottom:576.306355pt;}
.y9f{bottom:577.338667pt;}
.yf8{bottom:578.210034pt;}
.yc{bottom:579.206667pt;}
.y84{bottom:584.712992pt;}
.y18e{bottom:586.733333pt;}
.y4d{bottom:589.389333pt;}
.yda{bottom:589.732613pt;}
.y31{bottom:590.220000pt;}
.y116{bottom:591.024190pt;}
.y168{bottom:591.184000pt;}
.y9e{bottom:593.278667pt;}
.yb{bottom:595.148000pt;}
.y138{bottom:598.670517pt;}
.y18d{bottom:598.688000pt;}
.yc1{bottom:603.428834pt;}
.y151{bottom:604.301299pt;}
.yf7{bottom:605.313174pt;}
.y4c{bottom:605.329333pt;}
.y30{bottom:606.160000pt;}
.y66{bottom:608.602121pt;}
.y9d{bottom:609.218667pt;}
.y18c{bottom:610.644000pt;}
.ya{bottom:611.088000pt;}
.y83{bottom:613.053017pt;}
.y137{bottom:613.703531pt;}
.yd9{bottom:615.964714pt;}
.y115{bottom:617.254097pt;}
.y167{bottom:620.872000pt;}
.y4b{bottom:621.270667pt;}
.y9c{bottom:625.158667pt;}
.y9{bottom:627.028000pt;}
.y136{bottom:628.736545pt;}
.y2f{bottom:631.066667pt;}
.y150{bottom:632.296243pt;}
.yc0{bottom:632.592977pt;}
.y18b{bottom:633.225333pt;}
.y65{bottom:634.834222pt;}
.y4a{bottom:637.210667pt;}
.y9b{bottom:641.098667pt;}
.y82{bottom:641.390670pt;}
.yf6{bottom:641.916000pt;}
.y8{bottom:642.968000pt;}
.yd8{bottom:643.067855pt;}
.y135{bottom:643.769559pt;}
.y114{bottom:644.359432pt;}
.y18a{bottom:645.180000pt;}
.y49{bottom:653.150667pt;}
.y9a{bottom:657.038667pt;}
.y134{bottom:658.803830pt;}
.y7{bottom:658.908000pt;}
.y14f{bottom:660.291187pt;}
.y64{bottom:661.064130pt;}
.ybf{bottom:661.757120pt;}
.y166{bottom:665.704000pt;}
.y189{bottom:667.762667pt;}
.y2e{bottom:669.090667pt;}
.y81{bottom:669.728324pt;}
.y99{bottom:672.980000pt;}
.y133{bottom:673.836844pt;}
.y188{bottom:679.717333pt;}
.yd7{bottom:679.766667pt;}
.y113{bottom:680.960000pt;}
.y165{bottom:681.644000pt;}
.y6{bottom:682.452000pt;}
.y2d{bottom:685.030667pt;}
.y63{bottom:687.294037pt;}
.y14e{bottom:688.288472pt;}
.y132{bottom:688.869858pt;}
.y98{bottom:688.920000pt;}
.yf5{bottom:688.973172pt;}
.ybe{bottom:690.923702pt;}
.y80{bottom:699.011752pt;}
.y2c{bottom:700.970667pt;}
.y187{bottom:702.300000pt;}
.y131{bottom:703.902872pt;}
.y97{bottom:704.860000pt;}
.y164{bottom:711.333333pt;}
.y62{bottom:713.523945pt;}
.y186{bottom:714.254667pt;}
.y2b{bottom:716.912000pt;}
.y14d{bottom:717.215410pt;}
.yf4{bottom:718.427814pt;}
.y130{bottom:719.437615pt;}
.ybd{bottom:720.087845pt;}
.y185{bottom:726.210667pt;}
.yd6{bottom:726.365703pt;}
.y7f{bottom:727.349405pt;}
.y112{bottom:727.492988pt;}
.y96{bottom:729.766667pt;}
.y2a{bottom:732.852000pt;}
.y12f{bottom:734.470629pt;}
.y61{bottom:739.753853pt;}
.y14c{bottom:745.210354pt;}
.yf3{bottom:747.879992pt;}
.y29{bottom:748.792000pt;}
.ybc{bottom:749.251988pt;}
.y12e{bottom:750.005373pt;}
.yd5{bottom:754.441144pt;}
.y111{bottom:755.375018pt;}
.y163{bottom:756.164000pt;}
.y7e{bottom:756.630463pt;}
.y184{bottom:760.746667pt;}
.y28{bottom:764.732000pt;}
.y60{bottom:765.983760pt;}
.y5{bottom:771.374667pt;}
.y95{bottom:771.917333pt;}
.y162{bottom:772.105333pt;}
.y14b{bottom:774.139633pt;}
.yf2{bottom:777.332171pt;}
.ybb{bottom:778.416131pt;}
.y27{bottom:780.672000pt;}
.yd4{bottom:782.516585pt;}
.y110{bottom:783.254716pt;}
.y183{bottom:783.329333pt;}
.y4{bottom:791.964000pt;}
.y5f{bottom:793.089095pt;}
.y182{bottom:795.284000pt;}
.y26{bottom:796.612000pt;}
.y161{bottom:801.793333pt;}
.yf1{bottom:807.767321pt;}
.yba{bottom:808.553631pt;}
.yd3{bottom:811.529048pt;}
.y10f{bottom:812.062570pt;}
.y3{bottom:812.553333pt;}
.y181{bottom:817.866667pt;}
.y94{bottom:817.900584pt;}
.y25{bottom:828.493333pt;}
.y180{bottom:829.821333pt;}
.yf0{bottom:837.219499pt;}
.yb9{bottom:837.717774pt;}
.yd2{bottom:839.604488pt;}
.y10e{bottom:839.944600pt;}
.y17f{bottom:841.776000pt;}
.y93{bottom:844.130491pt;}
.y24{bottom:844.433333pt;}
.y160{bottom:846.625333pt;}
.y2{bottom:852.404000pt;}
.y23{bottom:860.373333pt;}
.y17e{bottom:864.358667pt;}
.yef{bottom:867.652185pt;}
.yb8{bottom:867.855275pt;}
.yd1{bottom:868.616952pt;}
.y10d{bottom:868.752455pt;}
.y92{bottom:871.235826pt;}
.y1{bottom:876.313333pt;}
.h11{height:17.985814pt;}
.ha{height:21.933807pt;}
.h8{height:22.922103pt;}
.h1d{height:25.589197pt;}
.h1e{height:27.523264pt;}
.h3{height:29.159939pt;}
.h9{height:29.244954pt;}
.h1a{height:34.476058pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.hb{height:36.874903pt;}
.hd{height:37.299379pt;}
.h10{height:37.304713pt;}
.h12{height:39.319061pt;}
.h7{height:44.122658pt;}
.h5{height:46.258122pt;}
.h17{height:46.263455pt;}
.h1b{height:51.079108pt;}
.h1{height:52.640990pt;}
.h6{height:52.947042pt;}
.hc{height:54.908359pt;}
.he{height:60.154525pt;}
.h19{height:63.938082pt;}
.h1c{height:64.202382pt;}
.h15{height:64.386991pt;}
.h16{height:64.701088pt;}
.hf{height:64.988338pt;}
.h13{height:66.883772pt;}
.h18{height:67.544341pt;}
.h14{height:69.253449pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:154.489333pt;}
.x6{left:178.357333pt;}
.x25{left:181.489683pt;}
.xe{left:183.346074pt;}
.x14{left:184.261950pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.xc{left:195.816929pt;}
.x8{left:197.486667pt;}
.x12{left:199.022182pt;}
.x1b{left:201.475184pt;}
.x1{left:205.649333pt;}
.x26{left:207.297288pt;}
.x1f{left:209.434253pt;}
.x16{left:218.154667pt;}
.x1e{left:219.137333pt;}
.xb{left:220.127785pt;}
.x10{left:225.173333pt;}
.x11{left:227.795982pt;}
.x18{left:229.237857pt;}
.x15{left:233.180000pt;}
.x1a{left:235.837333pt;}
.x2{left:236.990667pt;}
.xf{left:240.198667pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x24{left:280.608235pt;}
.x23{left:303.126948pt;}
.x22{left:318.391336pt;}
.xd{left:353.397900pt;}
.x3{left:360.866667pt;}
.x13{left:375.047486pt;}
.x19{left:387.539019pt;}
.x1d{left:391.888702pt;}
.x21{left:400.857333pt;}
.xa{left:404.177333pt;}
.x1c{left:408.345740pt;}
.x20{left:409.948863pt;}
}




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