
    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_a29cca1ab2e33e515ce43055.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_2ac264a315e6b422e266c3ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.103000;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_abbe1e0cfb63d2a517a26cef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_b07cef1e8ff5e0fd5ce30fef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_8a829a5f439b3721b39faea9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4cae33027e4f0791fc78d20f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.103000;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_69900cd5dbbfb86f6968c3a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.103000;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_e17a4bcebacb9078a4152caa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_86a90f6cc19b95d743741909.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.399000;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_afeb6cab002caa9d383bda5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897000;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_e6f412c160e55f0df23c9228.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_6f7433762ac2998e66393a57.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_4c726f1e8df7f8783e5b7119.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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_6b9b05adee594c9a8f891ed9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_f8e48ef0cd34ea4ab8b4d59b.woff2')format("woff");}.fff{font-family:fff;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5b83e552c3dd5fdd52b84a4e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7fe71c62ebb4d5c3e3492037.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.692000;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);}
.vd{vertical-align:-87.270000px;}
.v1{vertical-align:-10.764000px;}
.va{vertical-align:-8.238000px;}
.ve{vertical-align:-7.005072px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.758000px;}
.v12{vertical-align:15.906000px;}
.vc{vertical-align:17.934000px;}
.v11{vertical-align:22.266000px;}
.vf{vertical-align:26.472000px;}
.v9{vertical-align:27.492000px;}
.v8{vertical-align:33.474000px;}
.v10{vertical-align:37.764000px;}
.v4{vertical-align:49.206000px;}
.v6{vertical-align:65.424000px;}
.v2{vertical-align:69.342000px;}
.v5{vertical-align:84.354000px;}
.v7{vertical-align:87.270000px;}
.vb{vertical-align:94.074000px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000141px;}
.ls35{letter-spacing:0.001139px;}
.ls44{letter-spacing:0.001150px;}
.ls2f{letter-spacing:0.001165px;}
.ls2d{letter-spacing:0.002012px;}
.ls37{letter-spacing:0.002403px;}
.ls39{letter-spacing:0.002710px;}
.ls6{letter-spacing:0.002759px;}
.ls3a{letter-spacing:0.002775px;}
.ls4b{letter-spacing:0.003427px;}
.ls2{letter-spacing:0.003471px;}
.lsb{letter-spacing:0.003744px;}
.ls13{letter-spacing:0.003848px;}
.lsa{letter-spacing:0.003962px;}
.ls3e{letter-spacing:0.004381px;}
.ls2b{letter-spacing:0.004528px;}
.ls4a{letter-spacing:1.845811px;}
.ls3f{letter-spacing:1.900500px;}
.ls38{letter-spacing:2.892612px;}
.ls4c{letter-spacing:2.988532px;}
.ls3{letter-spacing:4.173471px;}
.ls8{letter-spacing:4.179471px;}
.ls1f{letter-spacing:4.205226px;}
.ls1e{letter-spacing:4.211226px;}
.ls1a{letter-spacing:5.149910px;}
.ls15{letter-spacing:5.155910px;}
.ls2a{letter-spacing:7.178012px;}
.lse{letter-spacing:7.658523px;}
.ls18{letter-spacing:8.013894px;}
.ls3c{letter-spacing:9.756440px;}
.ls9{letter-spacing:11.953473px;}
.ls28{letter-spacing:11.954759px;}
.ls21{letter-spacing:11.955962px;}
.ls29{letter-spacing:11.956438px;}
.ls20{letter-spacing:14.942915px;}
.ls48{letter-spacing:15.935518px;}
.ls17{letter-spacing:15.937473px;}
.ls16{letter-spacing:15.939848px;}
.ls41{letter-spacing:18.037165px;}
.ls47{letter-spacing:18.926915px;}
.ls33{letter-spacing:19.922759px;}
.ls3d{letter-spacing:19.925073px;}
.lsd{letter-spacing:19.925518px;}
.ls34{letter-spacing:19.927473px;}
.ls4d{letter-spacing:20.115471px;}
.ls22{letter-spacing:20.147226px;}
.ls1b{letter-spacing:20.661848px;}
.ls1c{letter-spacing:20.665473px;}
.lsc{letter-spacing:22.058759px;}
.ls31{letter-spacing:23.407165px;}
.ls7{letter-spacing:23.408759px;}
.ls4e{letter-spacing:23.414012px;}
.ls4f{letter-spacing:23.414759px;}
.ls10{letter-spacing:25.981240px;}
.ls23{letter-spacing:25.982657px;}
.ls40{letter-spacing:25.991587px;}
.ls2e{letter-spacing:26.402915px;}
.ls14{letter-spacing:26.566677px;}
.ls19{letter-spacing:27.098759px;}
.ls12{letter-spacing:28.064759px;}
.ls30{letter-spacing:28.828566px;}
.ls1d{letter-spacing:30.344759px;}
.lsf{letter-spacing:30.905566px;}
.ls32{letter-spacing:30.962759px;}
.ls49{letter-spacing:31.213114px;}
.ls46{letter-spacing:31.219114px;}
.ls5{letter-spacing:31.879473px;}
.ls4{letter-spacing:31.880759px;}
.ls11{letter-spacing:33.167464px;}
.ls1{letter-spacing:35.117518px;}
.ls27{letter-spacing:35.867518px;}
.ls26{letter-spacing:38.852915px;}
.ls24{letter-spacing:39.845518px;}
.ls42{letter-spacing:39.853165px;}
.ls43{letter-spacing:47.021518px;}
.ls2c{letter-spacing:145.107332px;}
.ls3b{letter-spacing:190.786389px;}
.ls45{letter-spacing:215.171587px;}
.ls36{letter-spacing:237.890784px;}
.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;}
}
.ws6b{word-spacing:-47.324343px;}
.wsa{word-spacing:-45.664082px;}
.wsc8{word-spacing:-45.040311px;}
.wsf1{word-spacing:-41.851131px;}
.ws82{word-spacing:-40.348800px;}
.wsa2{word-spacing:-36.500671px;}
.ws99{word-spacing:-35.644469px;}
.ws2d{word-spacing:-35.119596px;}
.ws5a{word-spacing:-33.756703px;}
.ws69{word-spacing:-33.211407px;}
.ws93{word-spacing:-31.604111px;}
.ws64{word-spacing:-31.102648px;}
.wsa7{word-spacing:-29.734167px;}
.wsaf{word-spacing:-29.388273px;}
.ws68{word-spacing:-28.305132px;}
.ws9e{word-spacing:-26.899125px;}
.wscf{word-spacing:-26.210507px;}
.wsb6{word-spacing:-22.423111px;}
.wsff{word-spacing:-22.057344px;}
.ws106{word-spacing:-20.694451px;}
.wsb2{word-spacing:-19.833677px;}
.ws85{word-spacing:-19.761946px;}
.wse6{word-spacing:-19.754717px;}
.ws40{word-spacing:-19.553925px;}
.ws53{word-spacing:-19.510886px;}
.ws112{word-spacing:-19.482194px;}
.ws8b{word-spacing:-19.410463px;}
.ws0{word-spacing:-19.367325px;}
.ws100{word-spacing:-19.195269px;}
.ws7d{word-spacing:-19.051807px;}
.ws11f{word-spacing:-18.621420px;}
.wse7{word-spacing:-18.549688px;}
.wsfb{word-spacing:-18.399053px;}
.ws107{word-spacing:-17.975839px;}
.ws113{word-spacing:-17.932800px;}
.ws7e{word-spacing:-17.832376px;}
.ws52{word-spacing:-17.617183px;}
.ws36{word-spacing:-17.473720px;}
.wse{word-spacing:-17.330258px;}
.ws3a{word-spacing:-17.258527px;}
.ws105{word-spacing:-17.251354px;}
.wsb9{word-spacing:-17.115064px;}
.ws3c{word-spacing:-17.043333px;}
.ws3b{word-spacing:-16.971602px;}
.ws111{word-spacing:-16.899871px;}
.ws116{word-spacing:-16.756408px;}
.wsc4{word-spacing:-16.720861px;}
.ws89{word-spacing:-16.684677px;}
.wsd7{word-spacing:-16.612946px;}
.wsce{word-spacing:-16.541215px;}
.wsb4{word-spacing:-16.254290px;}
.ws4c{word-spacing:-16.182559px;}
.ws1f{word-spacing:-16.139475px;}
.wsfc{word-spacing:-16.039096px;}
.ws10e{word-spacing:-15.967365px;}
.ws3f{word-spacing:-15.823903px;}
.wscd{word-spacing:-15.752172px;}
.ws119{word-spacing:-15.709133px;}
.ws10c{word-spacing:-15.608709px;}
.ws29{word-spacing:-15.250053px;}
.wsad{word-spacing:-15.203758px;}
.ws45{word-spacing:-15.178322px;}
.wsf9{word-spacing:-15.106591px;}
.wsfd{word-spacing:-15.099418px;}
.wsc1{word-spacing:-15.034860px;}
.wsa9{word-spacing:-14.963128px;}
.ws2e{word-spacing:-14.812493px;}
.wsdf{word-spacing:-14.604472px;}
.ws11{word-spacing:-14.532741px;}
.ws81{word-spacing:-14.461010px;}
.ws104{word-spacing:-14.453837px;}
.ws118{word-spacing:-14.389279px;}
.ws3{word-spacing:-14.317548px;}
.ws44{word-spacing:-14.245816px;}
.ws50{word-spacing:-14.238643px;}
.ws15{word-spacing:-14.174085px;}
.ws2a{word-spacing:-13.951718px;}
.ws10a{word-spacing:-13.879987px;}
.ws6{word-spacing:-13.815429px;}
.wsea{word-spacing:-13.808256px;}
.wsd6{word-spacing:-13.671967px;}
.wsdb{word-spacing:-13.593062px;}
.ws25{word-spacing:-13.528504px;}
.wsbb{word-spacing:-13.523750px;}
.wsbd{word-spacing:-13.516737px;}
.ws92{word-spacing:-13.503484px;}
.ws1c{word-spacing:-13.449600px;}
.wsf8{word-spacing:-13.377869px;}
.ws41{word-spacing:-13.313311px;}
.wsc6{word-spacing:-13.265878px;}
.ws1a{word-spacing:-13.241580px;}
.wsed{word-spacing:-13.234406px;}
.wsac{word-spacing:-13.169848px;}
.wscc{word-spacing:-13.169781px;}
.ws96{word-spacing:-13.098117px;}
.ws57{word-spacing:-13.067750px;}
.wsdc{word-spacing:-13.040696px;}
.ws58{word-spacing:-13.026386px;}
.ws18{word-spacing:-12.882924px;}
.wsde{word-spacing:-12.804019px;}
.ws83{word-spacing:-12.739461px;}
.ws6f{word-spacing:-12.732288px;}
.ws19{word-spacing:-12.667730px;}
.ws101{word-spacing:-12.524268px;}
.ws4d{word-spacing:-12.517094px;}
.ws51{word-spacing:-12.380805px;}
.ws4{word-spacing:-12.309074px;}
.ws5{word-spacing:-12.237343px;}
.ws2b{word-spacing:-12.165612px;}
.ws20{word-spacing:-12.093880px;}
.wseb{word-spacing:-12.059628px;}
.wsec{word-spacing:-12.022149px;}
.ws3e{word-spacing:-11.950418px;}
.ws22{word-spacing:-11.878687px;}
.ws65{word-spacing:-11.749538px;}
.ws2{word-spacing:-11.735224px;}
.ws8e{word-spacing:-11.725778px;}
.wsfe{word-spacing:-11.724526px;}
.wsb0{word-spacing:-11.717750px;}
.ws62{word-spacing:-11.715091px;}
.ws10b{word-spacing:-11.712432px;}
.ws49{word-spacing:-11.709780px;}
.ws1{word-spacing:-11.663493px;}
.wsc7{word-spacing:-11.574921px;}
.wsee{word-spacing:-11.520031px;}
.wscb{word-spacing:-11.504170px;}
.wse3{word-spacing:-11.441126px;}
.ws11e{word-spacing:-11.405261px;}
.ws127{word-spacing:-11.376568px;}
.wse0{word-spacing:-11.369395px;}
.wsf{word-spacing:-11.161375px;}
.ws70{word-spacing:-11.089644px;}
.ws12{word-spacing:-11.017912px;}
.wsd3{word-spacing:-11.010739px;}
.ws27{word-spacing:-10.946181px;}
.ws4e{word-spacing:-10.874450px;}
.wsd4{word-spacing:-10.867277px;}
.ws8d{word-spacing:-10.759680px;}
.wsf0{word-spacing:-10.755333px;}
.wsa0{word-spacing:-10.750669px;}
.wsf3{word-spacing:-10.659256px;}
.ws120{word-spacing:-10.587525px;}
.wsd1{word-spacing:-10.508621px;}
.ws97{word-spacing:-10.498489px;}
.ws126{word-spacing:-10.472755px;}
.wsdd{word-spacing:-10.444063px;}
.ws7b{word-spacing:-10.372332px;}
.ws117{word-spacing:-10.300600px;}
.ws11c{word-spacing:-10.228869px;}
.ws8a{word-spacing:-10.157138px;}
.wsaa{word-spacing:-10.013676px;}
.wse4{word-spacing:-9.941944px;}
.wse1{word-spacing:-9.870213px;}
.ws6d{word-spacing:-9.863040px;}
.ws37{word-spacing:-9.655020px;}
.ws10{word-spacing:-9.583288px;}
.ws7f{word-spacing:-9.511557px;}
.wsd5{word-spacing:-9.439826px;}
.ws71{word-spacing:-9.432653px;}
.wsa1{word-spacing:-9.380317px;}
.ws12a{word-spacing:-9.368095px;}
.ws8f{word-spacing:-9.308468px;}
.ws47{word-spacing:-9.289190px;}
.ws114{word-spacing:-9.224632px;}
.wsb1{word-spacing:-9.217459px;}
.ws9b{word-spacing:-9.160281px;}
.wsd2{word-spacing:-9.152901px;}
.ws98{word-spacing:-9.104289px;}
.ws3d{word-spacing:-9.081170px;}
.ws77{word-spacing:-9.009439px;}
.wsb3{word-spacing:-8.865976px;}
.ws2c{word-spacing:-8.794245px;}
.wsa5{word-spacing:-8.757707px;}
.ws12b{word-spacing:-8.607744px;}
.ws6e{word-spacing:-8.579052px;}
.wsc{word-spacing:-8.507320px;}
.ws9{word-spacing:-8.435589px;}
.wsd8{word-spacing:-8.428416px;}
.ws39{word-spacing:-8.363858px;}
.ws121{word-spacing:-8.320819px;}
.ws10d{word-spacing:-8.292127px;}
.ws48{word-spacing:-8.220396px;}
.ws88{word-spacing:-8.220373px;}
.ws14{word-spacing:-8.148664px;}
.ws90{word-spacing:-8.121949px;}
.ws123{word-spacing:-8.105626px;}
.ws26{word-spacing:-8.076933px;}
.ws95{word-spacing:-7.933471px;}
.wsb7{word-spacing:-7.790008px;}
.wsd{word-spacing:-7.746970px;}
.wsa6{word-spacing:-7.641391px;}
.ws59{word-spacing:-7.565069px;}
.ws38{word-spacing:-7.503084px;}
.ws84{word-spacing:-7.359621px;}
.ws21{word-spacing:-7.287890px;}
.ws28{word-spacing:-7.216159px;}
.ws4a{word-spacing:-7.208986px;}
.ws5b{word-spacing:-7.084451px;}
.ws5c{word-spacing:-7.072696px;}
.wsf6{word-spacing:-7.065523px;}
.ws61{word-spacing:-7.000965px;}
.wsf5{word-spacing:-6.929234px;}
.wsfa{word-spacing:-6.922061px;}
.wsb8{word-spacing:-6.857503px;}
.ws7a{word-spacing:-6.642309px;}
.ws7{word-spacing:-6.570578px;}
.ws108{word-spacing:-6.491674px;}
.ws1e{word-spacing:-6.455775px;}
.wsd0{word-spacing:-6.355384px;}
.ws4b{word-spacing:-6.283653px;}
.wsd9{word-spacing:-6.204749px;}
.ws8{word-spacing:-6.140191px;}
.ws5e{word-spacing:-6.125023px;}
.ws24{word-spacing:-6.068460px;}
.ws11a{word-spacing:-5.853266px;}
.wsc5{word-spacing:-5.781535px;}
.ws109{word-spacing:-5.638072px;}
.ws94{word-spacing:-5.638057px;}
.wsda{word-spacing:-5.422879px;}
.ws11b{word-spacing:-5.379840px;}
.ws7c{word-spacing:-5.279416px;}
.ws80{word-spacing:-5.064223px;}
.ws110{word-spacing:-4.992492px;}
.ws60{word-spacing:-4.777298px;}
.ws5f{word-spacing:-4.775750px;}
.ws102{word-spacing:-4.698394px;}
.ws8c{word-spacing:-4.562104px;}
.ws74{word-spacing:-4.490373px;}
.ws23{word-spacing:-4.418642px;}
.ws75{word-spacing:-4.346911px;}
.ws86{word-spacing:-4.203448px;}
.ws87{word-spacing:-4.186307px;}
.ws103{word-spacing:-4.059986px;}
.ws35{word-spacing:-3.988255px;}
.ws1d{word-spacing:-3.916524px;}
.ws122{word-spacing:-3.906382px;}
.wsab{word-spacing:-3.844792px;}
.ws2f{word-spacing:-3.837619px;}
.ws66{word-spacing:-3.701330px;}
.ws63{word-spacing:-3.586560px;}
.ws30{word-spacing:-3.414405px;}
.ws72{word-spacing:-3.407232px;}
.ws16{word-spacing:-3.342674px;}
.wse5{word-spacing:-3.270943px;}
.ws76{word-spacing:-3.199212px;}
.ws4f{word-spacing:-3.127480px;}
.ws42{word-spacing:-2.984018px;}
.ws115{word-spacing:-2.912287px;}
.ws17{word-spacing:-2.481900px;}
.ws78{word-spacing:-2.194975px;}
.ws11d{word-spacing:-2.123244px;}
.ws43{word-spacing:-1.979781px;}
.ws124{word-spacing:-1.621125px;}
.ws125{word-spacing:-1.434624px;}
.wsf2{word-spacing:-1.047276px;}
.ws73{word-spacing:-0.975544px;}
.wsf7{word-spacing:-0.968371px;}
.wsf4{word-spacing:-0.903813px;}
.wse8{word-spacing:-0.896640px;}
.wse9{word-spacing:-0.760351px;}
.ws31{word-spacing:-0.609715px;}
.ws32{word-spacing:-0.558612px;}
.ws34{word-spacing:-0.545157px;}
.ws33{word-spacing:-0.502118px;}
.wse2{word-spacing:-0.401695px;}
.ws129{word-spacing:-0.286925px;}
.ws128{word-spacing:-0.258232px;}
.wsb{word-spacing:-0.047821px;}
.wsc0{word-spacing:-0.043039px;}
.wsa4{word-spacing:-0.038224px;}
.ws6a{word-spacing:-0.035866px;}
.ws46{word-spacing:-0.002077px;}
.ws1b{word-spacing:0.000000px;}
.ws79{word-spacing:0.172155px;}
.wsc3{word-spacing:0.358656px;}
.ws55{word-spacing:0.396117px;}
.wsc2{word-spacing:0.430387px;}
.ws9f{word-spacing:1.032929px;}
.ws12d{word-spacing:1.248123px;}
.ws10f{word-spacing:2.467553px;}
.ws56{word-spacing:4.375603px;}
.ws12c{word-spacing:6.556232px;}
.wsba{word-spacing:18.876542px;}
.ws5d{word-spacing:20.299930px;}
.wsae{word-spacing:20.371661px;}
.ws9d{word-spacing:20.574099px;}
.wsb5{word-spacing:21.845451px;}
.wsbe{word-spacing:24.538957px;}
.wsbc{word-spacing:24.540542px;}
.wsbf{word-spacing:24.551451px;}
.wsca{word-spacing:25.997408px;}
.ws6c{word-spacing:26.352207px;}
.ws54{word-spacing:26.357451px;}
.ws13{word-spacing:27.059451px;}
.ws67{word-spacing:42.797451px;}
.ws9a{word-spacing:60.158872px;}
.ws91{word-spacing:79.339195px;}
.ws9c{word-spacing:239.863999px;}
.wsa8{word-spacing:304.812073px;}
.wsc9{word-spacing:438.644583px;}
.wsef{word-spacing:500.991225px;}
.wsa3{word-spacing:547.086591px;}
._1f{margin-left:-10.759650px;}
._3{margin-left:-9.709486px;}
._12{margin-left:-8.392550px;}
._8{margin-left:-7.101389px;}
._4{margin-left:-5.881958px;}
._e{margin-left:-4.831830px;}
._0{margin-left:-3.202064px;}
._5{margin-left:-1.936742px;}
._6{width:1.793280px;}
._2{width:3.305357px;}
._1c{width:7.732124px;}
._1a{width:9.395785px;}
._55{width:10.496457px;}
._15{width:17.502413px;}
._b{width:18.937037px;}
._45{width:19.941274px;}
._43{width:21.688662px;}
._16{width:22.882253px;}
._1d{width:24.401060px;}
._14{width:26.827469px;}
._a{width:27.903437px;}
._f{width:29.696717px;}
._7{width:30.987878px;}
._19{width:32.134230px;}
._d{width:33.257437px;}
._c{width:35.148288px;}
._13{width:37.117300px;}
._17{width:38.690077px;}
._50{width:40.241203px;}
._9{width:41.387139px;}
._18{width:42.611817px;}
._10{width:44.401613px;}
._1b{width:46.097322px;}
._11{width:48.095163px;}
._4f{width:49.150081px;}
._1{width:51.542908px;}
._1e{width:53.297630px;}
._29{width:58.021808px;}
._35{width:59.511214px;}
._56{width:62.567798px;}
._27{width:63.869282px;}
._57{width:66.529519px;}
._54{width:68.617021px;}
._59{width:70.009651px;}
._49{width:73.146883px;}
._58{width:75.186799px;}
._2f{width:81.201218px;}
._3d{width:89.850992px;}
._31{width:96.258434px;}
._51{width:97.946287px;}
._3a{width:106.095704px;}
._46{width:109.609398px;}
._42{width:110.821184px;}
._52{width:115.170598px;}
._2b{width:120.272453px;}
._39{width:122.575407px;}
._38{width:131.437630px;}
._3e{width:137.006070px;}
._22{width:144.192443px;}
._3b{width:151.802631px;}
._4e{width:155.409899px;}
._2c{width:173.386064px;}
._37{width:182.080879px;}
._2e{width:186.946498px;}
._3f{width:191.228248px;}
._24{width:197.541135px;}
._2a{width:201.988478px;}
._4a{width:204.058528px;}
._26{width:205.299462px;}
._2d{width:207.727630px;}
._41{width:215.974025px;}
._44{width:232.441730px;}
._4b{width:241.241052px;}
._33{width:248.343043px;}
._21{width:252.882580px;}
._32{width:295.872935px;}
._40{width:297.389043px;}
._28{width:298.861550px;}
._23{width:306.492117px;}
._20{width:308.876735px;}
._4c{width:317.879498px;}
._36{width:324.653081px;}
._34{width:345.422996px;}
._47{width:363.525000px;}
._3c{width:370.503458px;}
._53{width:394.253091px;}
._30{width:439.208156px;}
._4d{width:468.393084px;}
._25{width:514.701621px;}
._48{width:565.729523px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:31.138384px;}
.fs7{font-size:33.096637px;}
.fs5{font-size:35.865600px;}
.fs9{font-size:37.327804px;}
.fsb{font-size:38.224440px;}
.fs11{font-size:43.827580px;}
.fsc{font-size:46.707771px;}
.fsf{font-size:47.167371px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:49.645164px;}
.fs8{font-size:55.991940px;}
.fsa{font-size:57.336900px;}
.fs4{font-size:59.775600px;}
.fs10{font-size:65.741645px;}
.fse{font-size:70.751352px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y25{bottom:61.467000px;}
.y103{bottom:106.299000px;}
.y150{bottom:106.632000px;}
.ye5{bottom:108.027000px;}
.y1c6{bottom:109.845000px;}
.y50{bottom:112.585500px;}
.y1f7{bottom:115.449000px;}
.y1e2{bottom:116.713500px;}
.y135{bottom:127.968000px;}
.ye4{bottom:129.696000px;}
.y1c5{bottom:131.514000px;}
.y229{bottom:132.759000px;}
.y4f{bottom:134.254500px;}
.y1f6{bottom:137.118000px;}
.y1e1{bottom:138.382500px;}
.y8f{bottom:139.471500px;}
.y102{bottom:142.371000px;}
.y14f{bottom:143.244000px;}
.yac{bottom:147.966000px;}
.y134{bottom:149.637000px;}
.ye3{bottom:151.365000px;}
.y1c4{bottom:153.183000px;}
.y228{bottom:154.428000px;}
.y4e{bottom:155.922000px;}
.y20f{bottom:156.283500px;}
.y1f5{bottom:158.787000px;}
.y8e{bottom:161.140500px;}
.y101{bottom:164.040000px;}
.y24{bottom:164.742000px;}
.yab{bottom:169.635000px;}
.yc7{bottom:171.121500px;}
.y133{bottom:171.306000px;}
.ye2{bottom:173.034000px;}
.y1a7{bottom:173.514000px;}
.y1e0{bottom:174.994500px;}
.y227{bottom:176.097000px;}
.y14e{bottom:176.494500px;}
.y4d{bottom:177.591000px;}
.y20e{bottom:177.952500px;}
.y190{bottom:178.113000px;}
.y8d{bottom:182.809500px;}
.y23{bottom:186.409500px;}
.y1c3{bottom:189.795000px;}
.yaa{bottom:191.302500px;}
.yc6{bottom:192.790500px;}
.y132{bottom:192.975000px;}
.y1a6{bottom:195.183000px;}
.y1f4{bottom:195.399000px;}
.y16d{bottom:196.192500px;}
.y100{bottom:199.030500px;}
.y4c{bottom:199.260000px;}
.y18f{bottom:201.673500px;}
.y6f{bottom:202.609500px;}
.ye1{bottom:206.283000px;}
.y22{bottom:208.078500px;}
.y1df{bottom:208.245000px;}
.y14d{bottom:209.745000px;}
.y1c2{bottom:211.464000px;}
.y226{bottom:212.709000px;}
.y18e{bottom:213.975000px;}
.y20d{bottom:214.564500px;}
.y131{bottom:214.642500px;}
.y8c{bottom:216.060000px;}
.y1a5{bottom:216.850500px;}
.y1f3{bottom:217.068000px;}
.y4b{bottom:220.929000px;}
.y6e{bottom:224.278500px;}
.y11a{bottom:226.470000px;}
.ya9{bottom:227.916000px;}
.yc5{bottom:229.402500px;}
.y21{bottom:229.747500px;}
.y16c{bottom:230.928184px;}
.y1c1{bottom:233.133000px;}
.yff{bottom:234.019500px;}
.y225{bottom:234.378000px;}
.y20c{bottom:236.233500px;}
.y18d{bottom:238.062000px;}
.y1a4{bottom:238.519500px;}
.y4a{bottom:242.598000px;}
.y16b{bottom:245.426690px;}
.y20{bottom:251.416500px;}
.ye0{bottom:253.045500px;}
.y1f2{bottom:253.681500px;}
.y130{bottom:254.070000px;}
.y224{bottom:256.047000px;}
.y14c{bottom:256.507500px;}
.y18c{bottom:259.731000px;}
.y16a{bottom:259.925196px;}
.y1a3{bottom:260.188500px;}
.y1de{bottom:260.238000px;}
.y8b{bottom:260.716500px;}
.y6d{bottom:260.892000px;}
.y119{bottom:263.083500px;}
.y49{bottom:264.267000px;}
.ya8{bottom:264.528000px;}
.yc4{bottom:266.016000px;}
.yfe{bottom:270.091500px;}
.y20b{bottom:272.847000px;}
.y1f{bottom:273.085500px;}
.y1c0{bottom:274.228500px;}
.y169{bottom:274.424678px;}
.ydf{bottom:274.714500px;}
.y1f1{bottom:275.350500px;}
.y18b{bottom:281.398500px;}
.y1dd{bottom:281.905500px;}
.y6c{bottom:282.559500px;}
.y48{bottom:285.934500px;}
.y168{bottom:288.923184px;}
.y223{bottom:292.660500px;}
.y14b{bottom:293.119500px;}
.y20a{bottom:294.514500px;}
.y1e{bottom:294.754500px;}
.y1bf{bottom:295.897500px;}
.y1a2{bottom:299.616000px;}
.y118{bottom:299.695500px;}
.ya7{bottom:301.141500px;}
.yc3{bottom:302.628000px;}
.y18a{bottom:303.067500px;}
.y1dc{bottom:303.574500px;}
.yfd{bottom:305.082000px;}
.y47{bottom:307.603500px;}
.yde{bottom:311.326500px;}
.y1f0{bottom:311.962500px;}
.y12f{bottom:313.839000px;}
.y222{bottom:314.328000px;}
.y209{bottom:316.183500px;}
.y6b{bottom:319.173000px;}
.y8a{bottom:320.617500px;}
.y1db{bottom:325.243500px;}
.y1be{bottom:329.148000px;}
.y167{bottom:329.157000px;}
.y46{bottom:329.272500px;}
.y14a{bottom:329.733000px;}
.y1d{bottom:331.366500px;}
.y1a1{bottom:332.493000px;}
.ydd{bottom:332.995500px;}
.y1ef{bottom:333.631500px;}
.y117{bottom:336.309000px;}
.y189{bottom:336.318000px;}
.ya6{bottom:337.753500px;}
.yc2{bottom:339.241500px;}
.yfc{bottom:340.072500px;}
.y6a{bottom:340.842000px;}
.y89{bottom:342.286500px;}
.y1da{bottom:346.912500px;}
.y12e{bottom:350.197500px;}
.y45{bottom:350.941500px;}
.y149{bottom:351.400500px;}
.y208{bottom:352.797000px;}
.y1c{bottom:353.035500px;}
.y1bd{bottom:356.047500px;}
.ya5{bottom:361.315500px;}
.y88{bottom:363.955500px;}
.y1ee{bottom:366.882000px;}
.y1d9{bottom:368.581500px;}
.ydc{bottom:369.609000px;}
.y44{bottom:372.610500px;}
.y116{bottom:372.921000px;}
.y207{bottom:374.466000px;}
.yfb{bottom:375.063000px;}
.yc1{bottom:375.853500px;}
.y69{bottom:377.454000px;}
.y166{bottom:380.496000px;}
.y148{bottom:384.651000px;}
.ya4{bottom:385.747500px;}
.y12d{bottom:386.047500px;}
.y188{bottom:388.311000px;}
.y1b{bottom:389.647500px;}
.y1d8{bottom:390.249000px;}
.ydb{bottom:391.278000px;}
.y43{bottom:394.278000px;}
.y206{bottom:396.133500px;}
.y68{bottom:399.123000px;}
.y87{bottom:400.567500px;}
.ya3{bottom:403.182000px;}
.y1bc{bottom:408.039000px;}
.y221{bottom:409.222500px;}
.y115{bottom:409.534500px;}
.y187{bottom:409.980000px;}
.yfa{bottom:410.052000px;}
.y1a{bottom:411.316500px;}
.yc0{bottom:414.900000px;}
.y1a0{bottom:415.630500px;}
.y165{bottom:415.840500px;}
.y42{bottom:415.947000px;}
.y1ed{bottom:418.873500px;}
.y67{bottom:420.792000px;}
.ybf{bottom:421.084500px;}
.y12c{bottom:421.897500px;}
.y86{bottom:422.236500px;}
.ya2{bottom:424.851000px;}
.yda{bottom:427.890000px;}
.y1d7{bottom:429.676500px;}
.y1bb{bottom:429.708000px;}
.y220{bottom:430.891500px;}
.y147{bottom:431.413500px;}
.yf9{bottom:431.721000px;}
.y205{bottom:435.561000px;}
.y41{bottom:437.616000px;}
.y1ec{bottom:440.542500px;}
.y114{bottom:446.146500px;}
.y186{bottom:446.592000px;}
.y19{bottom:447.930000px;}
.y164{bottom:449.091000px;}
.yd9{bottom:449.559000px;}
.y19f{bottom:452.745258px;}
.y146{bottom:453.082500px;}
.y66{bottom:457.404000px;}
.y12b{bottom:458.256000px;}
.y85{bottom:458.848500px;}
.y40{bottom:459.285000px;}
.y1eb{bottom:462.211500px;}
.y1ba{bottom:466.321500px;}
.ybe{bottom:466.414500px;}
.ya1{bottom:466.695000px;}
.yf8{bottom:466.711500px;}
.y21f{bottom:467.503500px;}
.y185{bottom:468.261000px;}
.y18{bottom:469.597500px;}
.yd8{bottom:471.228000px;}
.y19e{bottom:474.707105px;}
.y145{bottom:474.751500px;}
.y65{bottom:479.073000px;}
.y84{bottom:480.517500px;}
.y3f{bottom:480.954000px;}
.y113{bottom:482.760000px;}
.y1b9{bottom:487.989000px;}
.ybd{bottom:488.083500px;}
.y21e{bottom:489.172500px;}
.y17{bottom:491.266500px;}
.yd7{bottom:492.897000px;}
.y12a{bottom:494.106000px;}
.y204{bottom:495.462000px;}
.y19d{bottom:496.668951px;}
.y1ea{bottom:498.823500px;}
.yf7{bottom:499.962000px;}
.y64{bottom:500.742000px;}
.y3e{bottom:502.623000px;}
.y184{bottom:504.873000px;}
.ya0{bottom:506.296500px;}
.y144{bottom:508.002000px;}
.y1b8{bottom:509.658000px;}
.y21d{bottom:510.841500px;}
.y1d6{bottom:512.815500px;}
.y163{bottom:516.600000px;}
.y83{bottom:517.131000px;}
.y19c{bottom:518.630797px;}
.y112{bottom:519.372000px;}
.y1e9{bottom:520.492500px;}
.ybc{bottom:521.332500px;}
.y3d{bottom:524.290500px;}
.yd6{bottom:526.146000px;}
.y183{bottom:526.542000px;}
.y16{bottom:527.880000px;}
.y129{bottom:529.954500px;}
.y143{bottom:534.900000px;}
.y63{bottom:537.354000px;}
.y82{bottom:538.798500px;}
.y19b{bottom:540.594123px;}
.y111{bottom:541.041000px;}
.y9f{bottom:542.908500px;}
.y3c{bottom:545.959500px;}
.y1b7{bottom:546.271500px;}
.yf6{bottom:546.444000px;}
.y21c{bottom:547.455000px;}
.y182{bottom:548.211000px;}
.ybb{bottom:548.232000px;}
.y1d5{bottom:549.433022px;}
.y15{bottom:549.549000px;}
.y162{bottom:552.385878px;}
.y1e8{bottom:557.106000px;}
.y62{bottom:559.023000px;}
.y203{bottom:560.467500px;}
.y128{bottom:566.313000px;}
.y3b{bottom:567.628500px;}
.y1b6{bottom:567.940500px;}
.yf5{bottom:568.113000px;}
.y21b{bottom:569.122500px;}
.y1d4{bottom:569.839811px;}
.y161{bottom:570.183760px;}
.yd5{bottom:572.908500px;}
.y81{bottom:575.412000px;}
.y110{bottom:577.653000px;}
.y1e7{bottom:578.775000px;}
.y9e{bottom:579.522000px;}
.y181{bottom:581.461500px;}
.y202{bottom:582.136500px;}
.y14{bottom:586.161000px;}
.y142{bottom:586.893000px;}
.y160{bottom:587.981641px;}
.y3a{bottom:589.297500px;}
.y1d3{bottom:590.247975px;}
.y61{bottom:592.273500px;}
.y19a{bottom:592.831500px;}
.yd4{bottom:594.577500px;}
.y80{bottom:597.081000px;}
.yba{bottom:600.225000px;}
.y1e6{bottom:600.442500px;}
.yf4{bottom:601.363500px;}
.y127{bottom:602.163000px;}
.y201{bottom:603.805500px;}
.y21a{bottom:605.736000px;}
.y15f{bottom:605.780722px;}
.y13{bottom:607.830000px;}
.y141{bottom:608.562000px;}
.y1b5{bottom:609.036000px;}
.y1d2{bottom:610.654764px;}
.y10f{bottom:610.903500px;}
.y39{bottom:610.966500px;}
.y9d{bottom:616.134000px;}
.yd3{bottom:616.246500px;}
.y200{bottom:625.474500px;}
.y219{bottom:627.405000px;}
.y1b4{bottom:630.705000px;}
.y1d1{bottom:631.061553px;}
.y38{bottom:632.635500px;}
.y180{bottom:633.454500px;}
.y7f{bottom:633.693000px;}
.y126{bottom:635.413500px;}
.yb9{bottom:636.837000px;}
.y1e5{bottom:637.056000px;}
.yd2{bottom:637.915500px;}
.y60{bottom:644.266500px;}
.y12{bottom:644.442000px;}
.y199{bottom:644.824500px;}
.y140{bottom:645.174000px;}
.y1ff{bottom:647.143500px;}
.y15e{bottom:651.838500px;}
.y1b3{bottom:652.372500px;}
.yf3{bottom:653.076000px;}
.y37{bottom:654.303000px;}
.y17f{bottom:655.122000px;}
.y7e{bottom:655.362000px;}
.y9c{bottom:655.735500px;}
.y10e{bottom:657.666000px;}
.y1e4{bottom:658.725000px;}
.y218{bottom:664.017000px;}
.y5f{bottom:665.935500px;}
.y11{bottom:666.111000px;}
.y198{bottom:666.493500px;}
.y1fe{bottom:668.811000px;}
.yd1{bottom:671.166000px;}
.yb8{bottom:673.450500px;}
.yf2{bottom:674.745000px;}
.y36{bottom:675.972000px;}
.y17e{bottom:676.791000px;}
.y13f{bottom:678.424500px;}
.y125{bottom:682.044000px;}
.y1d0{bottom:682.198500px;}
.y1b2{bottom:685.623000px;}
.y217{bottom:685.686000px;}
.y5e{bottom:687.603000px;}
.y10{bottom:687.780000px;}
.y1fd{bottom:690.480000px;}
.y7d{bottom:691.975500px;}
.y10d{bottom:694.278000px;}
.y9b{bottom:695.337000px;}
.y35{bottom:697.641000px;}
.y15d{bottom:697.945500px;}
.y17d{bottom:698.460000px;}
.y197{bottom:703.105500px;}
.y216{bottom:707.355000px;}
.y5d{bottom:709.272000px;}
.yf{bottom:709.449000px;}
.yb7{bottom:710.062500px;}
.yf1{bottom:710.817000px;}
.y1fc{bottom:712.149000px;}
.y7c{bottom:713.643000px;}
.yd0{bottom:715.822500px;}
.y124{bottom:718.402500px;}
.y34{bottom:719.310000px;}
.y17c{bottom:720.129000px;}
.y9a{bottom:728.587500px;}
.y10c{bottom:730.891500px;}
.y5c{bottom:730.941000px;}
.ye{bottom:731.118000px;}
.yf0{bottom:732.486000px;}
.y15c{bottom:733.291500px;}
.y1cf{bottom:734.191500px;}
.y1b1{bottom:737.616000px;}
.y196{bottom:739.719000px;}
.y33{bottom:740.979000px;}
.yb6{bottom:741.445500px;}
.y215{bottom:743.967000px;}
.y179{bottom:745.071000px;}
.y1fb{bottom:745.399500px;}
.y17b{bottom:747.001500px;}
.y13e{bottom:749.122500px;}
.y7b{bottom:750.256500px;}
.y5b{bottom:752.610000px;}
.yd{bottom:752.785500px;}
.y123{bottom:754.252500px;}
.y1ce{bottom:755.860500px;}
.y17a{bottom:758.164500px;}
.y1b0{bottom:759.285000px;}
.y178{bottom:762.498000px;}
.y32{bottom:762.648000px;}
.yb5{bottom:765.355500px;}
.y214{bottom:765.636000px;}
.y10b{bottom:767.503500px;}
.yef{bottom:768.558000px;}
.y15b{bottom:768.636000px;}
.y5a{bottom:774.279000px;}
.yc{bottom:774.454500px;}
.ycf{bottom:775.723500px;}
.y195{bottom:776.331000px;}
.y99{bottom:780.580500px;}
.y1af{bottom:780.954000px;}
.y7a{bottom:783.507000px;}
.y13d{bottom:784.146329px;}
.y31{bottom:784.315500px;}
.yb4{bottom:787.024500px;}
.y213{bottom:787.305000px;}
.y177{bottom:787.417500px;}
.y10a{bottom:789.172500px;}
.y122{bottom:790.102500px;}
.yee{bottom:790.227000px;}
.y1cd{bottom:792.472500px;}
.y59{bottom:795.948000px;}
.yb{bottom:796.123500px;}
.yce{bottom:797.392500px;}
.y13c{bottom:799.557666px;}
.y15a{bottom:801.886500px;}
.y98{bottom:802.249500px;}
.y30{bottom:805.984500px;}
.y176{bottom:809.085000px;}
.y194{bottom:812.944500px;}
.y1cc{bottom:814.141500px;}
.y13b{bottom:814.967964px;}
.y1ae{bottom:817.566000px;}
.y58{bottom:817.615500px;}
.ya{bottom:817.792500px;}
.y1fa{bottom:819.060000px;}
.yb3{bottom:820.275000px;}
.y97{bottom:823.917000px;}
.yed{bottom:825.216000px;}
.y109{bottom:825.786000px;}
.y121{bottom:826.461000px;}
.y2f{bottom:827.653500px;}
.y13a{bottom:830.378263px;}
.y175{bottom:830.754000px;}
.ycd{bottom:834.004500px;}
.y79{bottom:835.498500px;}
.y1ad{bottom:839.235000px;}
.y57{bottom:839.284500px;}
.y9{bottom:839.461500px;}
.y212{bottom:845.586000px;}
.yec{bottom:846.885000px;}
.y159{bottom:847.993500px;}
.y2e{bottom:849.322500px;}
.y193{bottom:849.556500px;}
.y1cb{bottom:850.755000px;}
.y174{bottom:852.423000px;}
.ycc{bottom:855.673500px;}
.y78{bottom:857.167500px;}
.y96{bottom:860.530500px;}
.y56{bottom:860.953500px;}
.y8{bottom:861.130500px;}
.y120{bottom:862.311000px;}
.y108{bottom:862.398000px;}
.y211{bottom:867.255000px;}
.yeb{bottom:868.554000px;}
.y158{bottom:869.662500px;}
.y2d{bottom:870.991500px;}
.yb2{bottom:872.266500px;}
.y1ca{bottom:872.422500px;}
.y1ac{bottom:875.847000px;}
.y139{bottom:877.279500px;}
.y1f9{bottom:877.342500px;}
.y77{bottom:878.836500px;}
.y95{bottom:882.199500px;}
.y55{bottom:882.622500px;}
.y7{bottom:882.798000px;}
.y192{bottom:885.171000px;}
.y173{bottom:885.673500px;}
.ycb{bottom:892.285500px;}
.y2c{bottom:892.659000px;}
.yb1{bottom:893.935500px;}
.y1ab{bottom:897.516000px;}
.y11f{bottom:898.159500px;}
.y107{bottom:899.011500px;}
.y76{bottom:900.505500px;}
.yea{bottom:901.804500px;}
.y157{bottom:902.913000px;}
.y94{bottom:903.867000px;}
.y1e3{bottom:903.868500px;}
.y54{bottom:904.291500px;}
.y6{bottom:904.467000px;}
.y1c9{bottom:913.519500px;}
.yca{bottom:913.954500px;}
.y2b{bottom:914.328000px;}
.yb0{bottom:915.604500px;}
.y106{bottom:920.679000px;}
.y75{bottom:922.174500px;}
.y138{bottom:924.042000px;}
.y210{bottom:925.536000px;}
.y191{bottom:928.899000px;}
.y156{bottom:929.812500px;}
.y11e{bottom:934.518000px;}
.y1c8{bottom:935.187000px;}
.y1f8{bottom:935.623500px;}
.y2a{bottom:935.997000px;}
.y53{bottom:937.542000px;}
.y172{bottom:937.666500px;}
.y1aa{bottom:938.613000px;}
.y93{bottom:940.480500px;}
.y74{bottom:943.843500px;}
.ye9{bottom:948.286500px;}
.yae{bottom:948.481500px;}
.yaf{bottom:949.048500px;}
.yc9{bottom:950.568000px;}
.y105{bottom:957.292500px;}
.y29{bottom:957.666000px;}
.y171{bottom:959.334000px;}
.y1a9{bottom:960.280500px;}
.y137{bottom:960.655500px;}
.yad{bottom:961.350000px;}
.y92{bottom:962.149500px;}
.y5{bottom:963.121500px;}
.y73{bottom:965.511000px;}
.y1c7{bottom:968.437500px;}
.ye8{bottom:969.955500px;}
.y11d{bottom:970.368000px;}
.yc8{bottom:972.237000px;}
.y28{bottom:979.335000px;}
.y170{bottom:981.003000px;}
.y155{bottom:981.600000px;}
.y1a8{bottom:981.949500px;}
.y52{bottom:982.198500px;}
.y91{bottom:983.818500px;}
.y4{bottom:984.790500px;}
.y72{bottom:987.180000px;}
.y104{bottom:993.904500px;}
.y136{bottom:997.267500px;}
.y27{bottom:1001.004000px;}
.y16f{bottom:1002.672000px;}
.y11c{bottom:1003.618500px;}
.y22a{bottom:1005.486000px;}
.ye7{bottom:1006.027500px;}
.y71{bottom:1008.849000px;}
.y3{bottom:1015.426500px;}
.y154{bottom:1017.251825px;}
.y90{bottom:1020.430500px;}
.y26{bottom:1022.671500px;}
.y16e{bottom:1024.341000px;}
.ye6{bottom:1027.696500px;}
.y70{bottom:1030.518000px;}
.y153{bottom:1034.633390px;}
.y11b{bottom:1036.869000px;}
.y2{bottom:1039.597500px;}
.y51{bottom:1042.099500px;}
.y152{bottom:1052.013784px;}
.y1{bottom:1063.768500px;}
.y151{bottom:1069.394178px;}
.h18{height:25.285248px;}
.h17{height:26.899200px;}
.h14{height:35.030828px;}
.h9{height:35.865450px;}
.he{height:37.233873px;}
.h15{height:39.795021px;}
.h10{height:41.993955px;}
.hf{height:42.297679px;}
.h1b{height:42.805200px;}
.h12{height:43.002675px;}
.h11{height:47.705133px;}
.h13{height:48.851039px;}
.h1e{height:49.306234px;}
.h6{height:50.498765px;}
.h1c{height:53.063514px;}
.h3{height:53.798400px;}
.h1f{height:56.011881px;}
.h1d{height:60.280152px;}
.h2{height:61.114982px;}
.h1a{height:61.913702px;}
.h4{height:64.557900px;}
.h5{height:71.733024px;}
.h1{height:77.469300px;}
.hc{height:89.661024px;}
.ha{height:99.026765px;}
.h8{height:99.089702px;}
.hb{height:99.704765px;}
.h19{height:102.326400px;}
.h16{height:109.642982px;}
.h7{height:110.320982px;}
.hd{height:114.399024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:106.299000px;}
.x17{left:112.918244px;}
.x1a{left:113.943792px;}
.x23{left:115.732356px;}
.x25{left:118.980000px;}
.x8{left:127.759500px;}
.x6{left:132.637500px;}
.x1{left:136.780500px;}
.x2{left:143.614500px;}
.x9{left:150.196500px;}
.x18{left:217.348500px;}
.x1c{left:228.715500px;}
.x19{left:229.962000px;}
.x1b{left:245.334000px;}
.x14{left:260.908500px;}
.xc{left:266.166000px;}
.x24{left:295.176000px;}
.x3{left:333.516000px;}
.xd{left:342.090000px;}
.x10{left:352.185000px;}
.x22{left:362.427000px;}
.x20{left:376.747500px;}
.xb{left:380.659500px;}
.x5{left:394.252500px;}
.xe{left:395.919000px;}
.xf{left:398.670000px;}
.x4{left:400.716000px;}
.x11{left:425.910000px;}
.x12{left:440.874000px;}
.x16{left:450.220500px;}
.xa{left:454.609500px;}
.x21{left:472.602000px;}
.x1d{left:481.939500px;}
.x13{left:516.526500px;}
.x1e{left:532.158000px;}
.x1f{left:553.158000px;}
.x15{left:591.865500px;}
@media print{
.vd{vertical-align:-77.573333pt;}
.v1{vertical-align:-9.568000pt;}
.va{vertical-align:-7.322667pt;}
.ve{vertical-align:-6.226730pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.562667pt;}
.v12{vertical-align:14.138667pt;}
.vc{vertical-align:15.941333pt;}
.v11{vertical-align:19.792000pt;}
.vf{vertical-align:23.530667pt;}
.v9{vertical-align:24.437333pt;}
.v8{vertical-align:29.754667pt;}
.v10{vertical-align:33.568000pt;}
.v4{vertical-align:43.738667pt;}
.v6{vertical-align:58.154667pt;}
.v2{vertical-align:61.637333pt;}
.v5{vertical-align:74.981333pt;}
.v7{vertical-align:77.573333pt;}
.vb{vertical-align:83.621333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000125pt;}
.ls35{letter-spacing:0.001012pt;}
.ls44{letter-spacing:0.001022pt;}
.ls2f{letter-spacing:0.001036pt;}
.ls2d{letter-spacing:0.001788pt;}
.ls37{letter-spacing:0.002136pt;}
.ls39{letter-spacing:0.002409pt;}
.ls6{letter-spacing:0.002452pt;}
.ls3a{letter-spacing:0.002466pt;}
.ls4b{letter-spacing:0.003046pt;}
.ls2{letter-spacing:0.003086pt;}
.lsb{letter-spacing:0.003328pt;}
.ls13{letter-spacing:0.003420pt;}
.lsa{letter-spacing:0.003521pt;}
.ls3e{letter-spacing:0.003895pt;}
.ls2b{letter-spacing:0.004025pt;}
.ls4a{letter-spacing:1.640721pt;}
.ls3f{letter-spacing:1.689334pt;}
.ls38{letter-spacing:2.571211pt;}
.ls4c{letter-spacing:2.656473pt;}
.ls3{letter-spacing:3.709752pt;}
.ls8{letter-spacing:3.715086pt;}
.ls1f{letter-spacing:3.737979pt;}
.ls1e{letter-spacing:3.743312pt;}
.ls1a{letter-spacing:4.577698pt;}
.ls15{letter-spacing:4.583031pt;}
.ls2a{letter-spacing:6.380455pt;}
.lse{letter-spacing:6.807576pt;}
.ls18{letter-spacing:7.123461pt;}
.ls3c{letter-spacing:8.672391pt;}
.ls9{letter-spacing:10.625309pt;}
.ls28{letter-spacing:10.626452pt;}
.ls21{letter-spacing:10.627521pt;}
.ls29{letter-spacing:10.627945pt;}
.ls20{letter-spacing:13.282591pt;}
.ls48{letter-spacing:14.164905pt;}
.ls17{letter-spacing:14.166642pt;}
.ls16{letter-spacing:14.168753pt;}
.ls41{letter-spacing:16.033036pt;}
.ls47{letter-spacing:16.823925pt;}
.ls33{letter-spacing:17.709119pt;}
.ls3d{letter-spacing:17.711176pt;}
.lsd{letter-spacing:17.711572pt;}
.ls34{letter-spacing:17.713309pt;}
.ls4d{letter-spacing:17.880419pt;}
.ls22{letter-spacing:17.908646pt;}
.ls1b{letter-spacing:18.366087pt;}
.ls1c{letter-spacing:18.369309pt;}
.lsc{letter-spacing:19.607786pt;}
.ls31{letter-spacing:20.806369pt;}
.ls7{letter-spacing:20.807786pt;}
.ls4e{letter-spacing:20.812455pt;}
.ls4f{letter-spacing:20.813119pt;}
.ls10{letter-spacing:23.094436pt;}
.ls23{letter-spacing:23.095695pt;}
.ls40{letter-spacing:23.103633pt;}
.ls2e{letter-spacing:23.469258pt;}
.ls14{letter-spacing:23.614824pt;}
.ls19{letter-spacing:24.087786pt;}
.ls12{letter-spacing:24.946452pt;}
.ls30{letter-spacing:25.625392pt;}
.ls1d{letter-spacing:26.973119pt;}
.lsf{letter-spacing:27.471614pt;}
.ls32{letter-spacing:27.522452pt;}
.ls49{letter-spacing:27.744990pt;}
.ls46{letter-spacing:27.750323pt;}
.ls5{letter-spacing:28.337309pt;}
.ls4{letter-spacing:28.338452pt;}
.ls11{letter-spacing:29.482191pt;}
.ls1{letter-spacing:31.215572pt;}
.ls27{letter-spacing:31.882238pt;}
.ls26{letter-spacing:34.535925pt;}
.ls24{letter-spacing:35.418238pt;}
.ls42{letter-spacing:35.425036pt;}
.ls43{letter-spacing:41.796905pt;}
.ls2c{letter-spacing:128.984295pt;}
.ls3b{letter-spacing:169.587901pt;}
.ls45{letter-spacing:191.263633pt;}
.ls36{letter-spacing:211.458475pt;}
.ws6b{word-spacing:-42.066082pt;}
.wsa{word-spacing:-40.590295pt;}
.wsc8{word-spacing:-40.035832pt;}
.wsf1{word-spacing:-37.201005pt;}
.ws82{word-spacing:-35.865600pt;}
.wsa2{word-spacing:-32.445041pt;}
.ws99{word-spacing:-31.683973pt;}
.ws2d{word-spacing:-31.217418pt;}
.ws5a{word-spacing:-30.005958pt;}
.ws69{word-spacing:-29.521250pt;}
.ws93{word-spacing:-28.092543pt;}
.ws64{word-spacing:-27.646799pt;}
.wsa7{word-spacing:-26.430371pt;}
.wsaf{word-spacing:-26.122909pt;}
.ws68{word-spacing:-25.160117pt;}
.ws9e{word-spacing:-23.910333pt;}
.wscf{word-spacing:-23.298229pt;}
.wsb6{word-spacing:-19.931654pt;}
.wsff{word-spacing:-19.606528pt;}
.ws106{word-spacing:-18.395068pt;}
.wsb2{word-spacing:-17.629935pt;}
.ws85{word-spacing:-17.566174pt;}
.wse6{word-spacing:-17.559749pt;}
.ws40{word-spacing:-17.381267pt;}
.ws53{word-spacing:-17.343010pt;}
.ws112{word-spacing:-17.317506pt;}
.ws8b{word-spacing:-17.253745pt;}
.ws0{word-spacing:-17.215400pt;}
.ws100{word-spacing:-17.062461pt;}
.ws7d{word-spacing:-16.934939pt;}
.ws11f{word-spacing:-16.552373pt;}
.wse7{word-spacing:-16.488612pt;}
.wsfb{word-spacing:-16.354714pt;}
.ws107{word-spacing:-15.978523pt;}
.ws113{word-spacing:-15.940267pt;}
.ws7e{word-spacing:-15.851001pt;}
.ws52{word-spacing:-15.659718pt;}
.ws36{word-spacing:-15.532196pt;}
.wse{word-spacing:-15.404674pt;}
.ws3a{word-spacing:-15.340913pt;}
.ws105{word-spacing:-15.334537pt;}
.wsb9{word-spacing:-15.213391pt;}
.ws3c{word-spacing:-15.149629pt;}
.ws3b{word-spacing:-15.085868pt;}
.ws111{word-spacing:-15.022107pt;}
.ws116{word-spacing:-14.894585pt;}
.wsc4{word-spacing:-14.862988pt;}
.ws89{word-spacing:-14.830824pt;}
.wsd7{word-spacing:-14.767063pt;}
.wsce{word-spacing:-14.703302pt;}
.wsb4{word-spacing:-14.448258pt;}
.ws4c{word-spacing:-14.384497pt;}
.ws1f{word-spacing:-14.346200pt;}
.wsfc{word-spacing:-14.256975pt;}
.ws10e{word-spacing:-14.193213pt;}
.ws3f{word-spacing:-14.065691pt;}
.wscd{word-spacing:-14.001930pt;}
.ws119{word-spacing:-13.963674pt;}
.ws10c{word-spacing:-13.874408pt;}
.ws29{word-spacing:-13.555603pt;}
.wsad{word-spacing:-13.514452pt;}
.ws45{word-spacing:-13.491842pt;}
.wsf9{word-spacing:-13.428081pt;}
.wsfd{word-spacing:-13.421705pt;}
.wsc1{word-spacing:-13.364320pt;}
.wsa9{word-spacing:-13.300559pt;}
.ws2e{word-spacing:-13.166660pt;}
.wsdf{word-spacing:-12.981753pt;}
.ws11{word-spacing:-12.917992pt;}
.ws81{word-spacing:-12.854231pt;}
.ws104{word-spacing:-12.847855pt;}
.ws118{word-spacing:-12.790470pt;}
.ws3{word-spacing:-12.726709pt;}
.ws44{word-spacing:-12.662948pt;}
.ws50{word-spacing:-12.656572pt;}
.ws15{word-spacing:-12.599187pt;}
.ws2a{word-spacing:-12.401527pt;}
.ws10a{word-spacing:-12.337766pt;}
.ws6{word-spacing:-12.280381pt;}
.wsea{word-spacing:-12.274005pt;}
.wsd6{word-spacing:-12.152859pt;}
.wsdb{word-spacing:-12.082722pt;}
.ws25{word-spacing:-12.025337pt;}
.wsbb{word-spacing:-12.021111pt;}
.wsbd{word-spacing:-12.014877pt;}
.ws92{word-spacing:-12.003097pt;}
.ws1c{word-spacing:-11.955200pt;}
.wsf8{word-spacing:-11.891439pt;}
.ws41{word-spacing:-11.834054pt;}
.wsc6{word-spacing:-11.791892pt;}
.ws1a{word-spacing:-11.770293pt;}
.wsed{word-spacing:-11.763917pt;}
.wsac{word-spacing:-11.706532pt;}
.wscc{word-spacing:-11.706472pt;}
.ws96{word-spacing:-11.642771pt;}
.ws57{word-spacing:-11.615778pt;}
.wsdc{word-spacing:-11.591730pt;}
.ws58{word-spacing:-11.579010pt;}
.ws18{word-spacing:-11.451488pt;}
.wsde{word-spacing:-11.381350pt;}
.ws83{word-spacing:-11.323965pt;}
.ws6f{word-spacing:-11.317589pt;}
.ws19{word-spacing:-11.260204pt;}
.ws101{word-spacing:-11.132682pt;}
.ws4d{word-spacing:-11.126306pt;}
.ws51{word-spacing:-11.005160pt;}
.ws4{word-spacing:-10.941399pt;}
.ws5{word-spacing:-10.877638pt;}
.ws2b{word-spacing:-10.813877pt;}
.ws20{word-spacing:-10.750116pt;}
.wseb{word-spacing:-10.719669pt;}
.wsec{word-spacing:-10.686355pt;}
.ws3e{word-spacing:-10.622594pt;}
.ws22{word-spacing:-10.558833pt;}
.ws65{word-spacing:-10.444034pt;}
.ws2{word-spacing:-10.431311pt;}
.ws8e{word-spacing:-10.422914pt;}
.wsfe{word-spacing:-10.421801pt;}
.wsb0{word-spacing:-10.415778pt;}
.ws62{word-spacing:-10.413414pt;}
.ws10b{word-spacing:-10.411051pt;}
.ws49{word-spacing:-10.408694pt;}
.ws1{word-spacing:-10.367549pt;}
.wsc7{word-spacing:-10.288819pt;}
.wsee{word-spacing:-10.240027pt;}
.wscb{word-spacing:-10.225929pt;}
.wse3{word-spacing:-10.169890pt;}
.ws11e{word-spacing:-10.138010pt;}
.ws127{word-spacing:-10.112505pt;}
.wse0{word-spacing:-10.106129pt;}
.wsf{word-spacing:-9.921222pt;}
.ws70{word-spacing:-9.857461pt;}
.ws12{word-spacing:-9.793700pt;}
.wsd3{word-spacing:-9.787324pt;}
.ws27{word-spacing:-9.729939pt;}
.ws4e{word-spacing:-9.666178pt;}
.wsd4{word-spacing:-9.659802pt;}
.ws8d{word-spacing:-9.564160pt;}
.wsf0{word-spacing:-9.560296pt;}
.wsa0{word-spacing:-9.556150pt;}
.wsf3{word-spacing:-9.474895pt;}
.ws120{word-spacing:-9.411133pt;}
.wsd1{word-spacing:-9.340996pt;}
.ws97{word-spacing:-9.331990pt;}
.ws126{word-spacing:-9.309116pt;}
.wsdd{word-spacing:-9.283611pt;}
.ws7b{word-spacing:-9.219850pt;}
.ws117{word-spacing:-9.156089pt;}
.ws11c{word-spacing:-9.092328pt;}
.ws8a{word-spacing:-9.028567pt;}
.wsaa{word-spacing:-8.901045pt;}
.wse4{word-spacing:-8.837284pt;}
.wse1{word-spacing:-8.773523pt;}
.ws6d{word-spacing:-8.767147pt;}
.ws37{word-spacing:-8.582240pt;}
.ws10{word-spacing:-8.518479pt;}
.ws7f{word-spacing:-8.454717pt;}
.wsd5{word-spacing:-8.390956pt;}
.ws71{word-spacing:-8.384580pt;}
.wsa1{word-spacing:-8.338059pt;}
.ws12a{word-spacing:-8.327195pt;}
.ws8f{word-spacing:-8.274194pt;}
.ws47{word-spacing:-8.257058pt;}
.ws114{word-spacing:-8.199673pt;}
.wsb1{word-spacing:-8.193297pt;}
.ws9b{word-spacing:-8.142472pt;}
.wsd2{word-spacing:-8.135912pt;}
.ws98{word-spacing:-8.092702pt;}
.ws3d{word-spacing:-8.072151pt;}
.ws77{word-spacing:-8.008390pt;}
.wsb3{word-spacing:-7.880868pt;}
.ws2c{word-spacing:-7.817107pt;}
.wsa5{word-spacing:-7.784628pt;}
.ws12b{word-spacing:-7.651328pt;}
.ws6e{word-spacing:-7.625824pt;}
.wsc{word-spacing:-7.562063pt;}
.ws9{word-spacing:-7.498301pt;}
.wsd8{word-spacing:-7.491925pt;}
.ws39{word-spacing:-7.434540pt;}
.ws121{word-spacing:-7.396284pt;}
.ws10d{word-spacing:-7.370779pt;}
.ws48{word-spacing:-7.307018pt;}
.ws88{word-spacing:-7.306998pt;}
.ws14{word-spacing:-7.243257pt;}
.ws90{word-spacing:-7.219510pt;}
.ws123{word-spacing:-7.205001pt;}
.ws26{word-spacing:-7.179496pt;}
.ws95{word-spacing:-7.051974pt;}
.wsb7{word-spacing:-6.924452pt;}
.wsd{word-spacing:-6.886195pt;}
.wsa6{word-spacing:-6.792348pt;}
.ws59{word-spacing:-6.724506pt;}
.ws38{word-spacing:-6.669408pt;}
.ws84{word-spacing:-6.541885pt;}
.ws21{word-spacing:-6.478124pt;}
.ws28{word-spacing:-6.414363pt;}
.ws4a{word-spacing:-6.407987pt;}
.ws5b{word-spacing:-6.297289pt;}
.ws5c{word-spacing:-6.286841pt;}
.wsf6{word-spacing:-6.280465pt;}
.ws61{word-spacing:-6.223080pt;}
.wsf5{word-spacing:-6.159319pt;}
.wsfa{word-spacing:-6.152943pt;}
.wsb8{word-spacing:-6.095558pt;}
.ws7a{word-spacing:-5.904275pt;}
.ws7{word-spacing:-5.840514pt;}
.ws108{word-spacing:-5.770377pt;}
.ws1e{word-spacing:-5.738467pt;}
.wsd0{word-spacing:-5.649231pt;}
.ws4b{word-spacing:-5.585469pt;}
.wsd9{word-spacing:-5.515332pt;}
.ws8{word-spacing:-5.457947pt;}
.ws5e{word-spacing:-5.444465pt;}
.ws24{word-spacing:-5.394186pt;}
.ws11a{word-spacing:-5.202903pt;}
.wsc5{word-spacing:-5.139142pt;}
.ws109{word-spacing:-5.011620pt;}
.ws94{word-spacing:-5.011606pt;}
.wsda{word-spacing:-4.820337pt;}
.ws11b{word-spacing:-4.782080pt;}
.ws7c{word-spacing:-4.692815pt;}
.ws80{word-spacing:-4.501531pt;}
.ws110{word-spacing:-4.437770pt;}
.ws60{word-spacing:-4.246487pt;}
.ws5f{word-spacing:-4.245111pt;}
.ws102{word-spacing:-4.176350pt;}
.ws8c{word-spacing:-4.055204pt;}
.ws74{word-spacing:-3.991443pt;}
.ws23{word-spacing:-3.927682pt;}
.ws75{word-spacing:-3.863921pt;}
.ws86{word-spacing:-3.736399pt;}
.ws87{word-spacing:-3.721161pt;}
.ws103{word-spacing:-3.608876pt;}
.ws35{word-spacing:-3.545115pt;}
.ws1d{word-spacing:-3.481354pt;}
.ws122{word-spacing:-3.472340pt;}
.wsab{word-spacing:-3.417593pt;}
.ws2f{word-spacing:-3.411217pt;}
.ws66{word-spacing:-3.290071pt;}
.ws63{word-spacing:-3.188053pt;}
.ws30{word-spacing:-3.035027pt;}
.ws72{word-spacing:-3.028651pt;}
.ws16{word-spacing:-2.971266pt;}
.wse5{word-spacing:-2.907505pt;}
.ws76{word-spacing:-2.843744pt;}
.ws4f{word-spacing:-2.779983pt;}
.ws42{word-spacing:-2.652460pt;}
.ws115{word-spacing:-2.588699pt;}
.ws17{word-spacing:-2.206133pt;}
.ws78{word-spacing:-1.951089pt;}
.ws11d{word-spacing:-1.887328pt;}
.ws43{word-spacing:-1.759805pt;}
.ws124{word-spacing:-1.441000pt;}
.ws125{word-spacing:-1.275221pt;}
.wsf2{word-spacing:-0.930912pt;}
.ws73{word-spacing:-0.867151pt;}
.wsf7{word-spacing:-0.860774pt;}
.wsf4{word-spacing:-0.803389pt;}
.wse8{word-spacing:-0.797013pt;}
.wse9{word-spacing:-0.675867pt;}
.ws31{word-spacing:-0.541969pt;}
.ws32{word-spacing:-0.496544pt;}
.ws34{word-spacing:-0.484584pt;}
.ws33{word-spacing:-0.446327pt;}
.wse2{word-spacing:-0.357062pt;}
.ws129{word-spacing:-0.255044pt;}
.ws128{word-spacing:-0.229540pt;}
.wsb{word-spacing:-0.042507pt;}
.wsc0{word-spacing:-0.038257pt;}
.wsa4{word-spacing:-0.033977pt;}
.ws6a{word-spacing:-0.031881pt;}
.ws46{word-spacing:-0.001847pt;}
.ws1b{word-spacing:0.000000pt;}
.ws79{word-spacing:0.153027pt;}
.wsc3{word-spacing:0.318805pt;}
.ws55{word-spacing:0.352104pt;}
.wsc2{word-spacing:0.382566pt;}
.ws9f{word-spacing:0.918159pt;}
.ws12d{word-spacing:1.109443pt;}
.ws10f{word-spacing:2.193381pt;}
.ws56{word-spacing:3.889425pt;}
.ws12c{word-spacing:5.827761pt;}
.wsba{word-spacing:16.779148pt;}
.ws5d{word-spacing:18.044382pt;}
.wsae{word-spacing:18.108143pt;}
.ws9d{word-spacing:18.288088pt;}
.wsb5{word-spacing:19.418178pt;}
.wsbe{word-spacing:21.812406pt;}
.wsbc{word-spacing:21.813815pt;}
.wsbf{word-spacing:21.823512pt;}
.wsca{word-spacing:23.108807pt;}
.ws6c{word-spacing:23.424184pt;}
.ws54{word-spacing:23.428845pt;}
.ws13{word-spacing:24.052845pt;}
.ws67{word-spacing:38.042178pt;}
.ws9a{word-spacing:53.474553pt;}
.ws91{word-spacing:70.523729pt;}
.ws9c{word-spacing:213.212444pt;}
.wsa8{word-spacing:270.944065pt;}
.wsc9{word-spacing:389.906296pt;}
.wsef{word-spacing:445.325534pt;}
.wsa3{word-spacing:486.299192pt;}
._1f{margin-left:-9.564133pt;}
._3{margin-left:-8.630654pt;}
._12{margin-left:-7.460045pt;}
._8{margin-left:-6.312346pt;}
._4{margin-left:-5.228407pt;}
._e{margin-left:-4.294960pt;}
._0{margin-left:-2.846279pt;}
._5{margin-left:-1.721549pt;}
._6{width:1.594027pt;}
._2{width:2.938095pt;}
._1c{width:6.872999pt;}
._1a{width:8.351809pt;}
._55{width:9.330184pt;}
._15{width:15.557700pt;}
._b{width:16.832922pt;}
._45{width:17.725577pt;}
._43{width:19.278811pt;}
._16{width:20.339780pt;}
._1d{width:21.689831pt;}
._14{width:23.846639pt;}
._a{width:24.803055pt;}
._f{width:26.397082pt;}
._7{width:27.544781pt;}
._19{width:28.563760pt;}
._d{width:29.562166pt;}
._c{width:31.242923pt;}
._13{width:32.993155pt;}
._17{width:34.391180pt;}
._50{width:35.769958pt;}
._9{width:36.788568pt;}
._18{width:37.877171pt;}
._10{width:39.468100pt;}
._1b{width:40.975397pt;}
._11{width:42.751256pt;}
._4f{width:43.688961pt;}
._1{width:45.815918pt;}
._1e{width:47.375671pt;}
._29{width:51.574941pt;}
._35{width:52.898857pt;}
._56{width:55.615821pt;}
._27{width:56.772695pt;}
._57{width:59.137350pt;}
._54{width:60.992907pt;}
._59{width:62.230801pt;}
._49{width:65.019452pt;}
._58{width:66.832710pt;}
._2f{width:72.178861pt;}
._3d{width:79.867549pt;}
._31{width:85.563053pt;}
._51{width:87.063367pt;}
._3a{width:94.307293pt;}
._46{width:97.430576pt;}
._42{width:98.507719pt;}
._52{width:102.373865pt;}
._2b{width:106.908847pt;}
._39{width:108.955917pt;}
._38{width:116.833449pt;}
._3e{width:121.783174pt;}
._22{width:128.171060pt;}
._3b{width:134.935672pt;}
._4e{width:138.142132pt;}
._2c{width:154.120946pt;}
._37{width:161.849670pt;}
._2e{width:166.174665pt;}
._3f{width:169.980665pt;}
._24{width:175.592120pt;}
._2a{width:179.545314pt;}
._4a{width:181.385358pt;}
._26{width:182.488410pt;}
._2d{width:184.646782pt;}
._41{width:191.976911pt;}
._44{width:206.614871pt;}
._4b{width:214.436491pt;}
._33{width:220.749371pt;}
._21{width:224.784516pt;}
._32{width:262.998165pt;}
._40{width:264.345816pt;}
._28{width:265.654711pt;}
._23{width:272.437438pt;}
._20{width:274.557097pt;}
._4c{width:282.559554pt;}
._36{width:288.580517pt;}
._34{width:307.042663pt;}
._47{width:323.133333pt;}
._3c{width:329.336407pt;}
._53{width:350.447192pt;}
._30{width:390.407250pt;}
._4d{width:416.349408pt;}
._25{width:457.512552pt;}
._48{width:502.870687pt;}
.fsd{font-size:27.678563pt;}
.fs7{font-size:29.419233pt;}
.fs5{font-size:31.880533pt;}
.fs9{font-size:33.180270pt;}
.fsb{font-size:33.977280pt;}
.fs11{font-size:38.957849pt;}
.fsc{font-size:41.518019pt;}
.fsf{font-size:41.926552pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:44.129034pt;}
.fs8{font-size:49.770613pt;}
.fsa{font-size:50.966133pt;}
.fs4{font-size:53.133867pt;}
.fs10{font-size:58.437018pt;}
.fse{font-size:62.890090pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:54.637333pt;}
.y103{bottom:94.488000pt;}
.y150{bottom:94.784000pt;}
.ye5{bottom:96.024000pt;}
.y1c6{bottom:97.640000pt;}
.y50{bottom:100.076000pt;}
.y1f7{bottom:102.621333pt;}
.y1e2{bottom:103.745333pt;}
.y135{bottom:113.749333pt;}
.ye4{bottom:115.285333pt;}
.y1c5{bottom:116.901333pt;}
.y229{bottom:118.008000pt;}
.y4f{bottom:119.337333pt;}
.y1f6{bottom:121.882667pt;}
.y1e1{bottom:123.006667pt;}
.y8f{bottom:123.974667pt;}
.y102{bottom:126.552000pt;}
.y14f{bottom:127.328000pt;}
.yac{bottom:131.525333pt;}
.y134{bottom:133.010667pt;}
.ye3{bottom:134.546667pt;}
.y1c4{bottom:136.162667pt;}
.y228{bottom:137.269333pt;}
.y4e{bottom:138.597333pt;}
.y20f{bottom:138.918667pt;}
.y1f5{bottom:141.144000pt;}
.y8e{bottom:143.236000pt;}
.y101{bottom:145.813333pt;}
.y24{bottom:146.437333pt;}
.yab{bottom:150.786667pt;}
.yc7{bottom:152.108000pt;}
.y133{bottom:152.272000pt;}
.ye2{bottom:153.808000pt;}
.y1a7{bottom:154.234667pt;}
.y1e0{bottom:155.550667pt;}
.y227{bottom:156.530667pt;}
.y14e{bottom:156.884000pt;}
.y4d{bottom:157.858667pt;}
.y20e{bottom:158.180000pt;}
.y190{bottom:158.322667pt;}
.y8d{bottom:162.497333pt;}
.y23{bottom:165.697333pt;}
.y1c3{bottom:168.706667pt;}
.yaa{bottom:170.046667pt;}
.yc6{bottom:171.369333pt;}
.y132{bottom:171.533333pt;}
.y1a6{bottom:173.496000pt;}
.y1f4{bottom:173.688000pt;}
.y16d{bottom:174.393333pt;}
.y100{bottom:176.916000pt;}
.y4c{bottom:177.120000pt;}
.y18f{bottom:179.265333pt;}
.y6f{bottom:180.097333pt;}
.ye1{bottom:183.362667pt;}
.y22{bottom:184.958667pt;}
.y1df{bottom:185.106667pt;}
.y14d{bottom:186.440000pt;}
.y1c2{bottom:187.968000pt;}
.y226{bottom:189.074667pt;}
.y18e{bottom:190.200000pt;}
.y20d{bottom:190.724000pt;}
.y131{bottom:190.793333pt;}
.y8c{bottom:192.053333pt;}
.y1a5{bottom:192.756000pt;}
.y1f3{bottom:192.949333pt;}
.y4b{bottom:196.381333pt;}
.y6e{bottom:199.358667pt;}
.y11a{bottom:201.306667pt;}
.ya9{bottom:202.592000pt;}
.yc5{bottom:203.913333pt;}
.y21{bottom:204.220000pt;}
.y16c{bottom:205.269497pt;}
.y1c1{bottom:207.229333pt;}
.yff{bottom:208.017333pt;}
.y225{bottom:208.336000pt;}
.y20c{bottom:209.985333pt;}
.y18d{bottom:211.610667pt;}
.y1a4{bottom:212.017333pt;}
.y4a{bottom:215.642667pt;}
.y16b{bottom:218.157058pt;}
.y20{bottom:223.481333pt;}
.ye0{bottom:224.929333pt;}
.y1f2{bottom:225.494667pt;}
.y130{bottom:225.840000pt;}
.y224{bottom:227.597333pt;}
.y14c{bottom:228.006667pt;}
.y18c{bottom:230.872000pt;}
.y16a{bottom:231.044618pt;}
.y1a3{bottom:231.278667pt;}
.y1de{bottom:231.322667pt;}
.y8b{bottom:231.748000pt;}
.y6d{bottom:231.904000pt;}
.y119{bottom:233.852000pt;}
.y49{bottom:234.904000pt;}
.ya8{bottom:235.136000pt;}
.yc4{bottom:236.458667pt;}
.yfe{bottom:240.081333pt;}
.y20b{bottom:242.530667pt;}
.y1f{bottom:242.742667pt;}
.y1c0{bottom:243.758667pt;}
.y169{bottom:243.933047pt;}
.ydf{bottom:244.190667pt;}
.y1f1{bottom:244.756000pt;}
.y18b{bottom:250.132000pt;}
.y1dd{bottom:250.582667pt;}
.y6c{bottom:251.164000pt;}
.y48{bottom:254.164000pt;}
.y168{bottom:256.820608pt;}
.y223{bottom:260.142667pt;}
.y14b{bottom:260.550667pt;}
.y20a{bottom:261.790667pt;}
.y1e{bottom:262.004000pt;}
.y1bf{bottom:263.020000pt;}
.y1a2{bottom:266.325333pt;}
.y118{bottom:266.396000pt;}
.ya7{bottom:267.681333pt;}
.yc3{bottom:269.002667pt;}
.y18a{bottom:269.393333pt;}
.y1dc{bottom:269.844000pt;}
.yfd{bottom:271.184000pt;}
.y47{bottom:273.425333pt;}
.yde{bottom:276.734667pt;}
.y1f0{bottom:277.300000pt;}
.y12f{bottom:278.968000pt;}
.y222{bottom:279.402667pt;}
.y209{bottom:281.052000pt;}
.y6b{bottom:283.709333pt;}
.y8a{bottom:284.993333pt;}
.y1db{bottom:289.105333pt;}
.y1be{bottom:292.576000pt;}
.y167{bottom:292.584000pt;}
.y46{bottom:292.686667pt;}
.y14a{bottom:293.096000pt;}
.y1d{bottom:294.548000pt;}
.y1a1{bottom:295.549333pt;}
.ydd{bottom:295.996000pt;}
.y1ef{bottom:296.561333pt;}
.y117{bottom:298.941333pt;}
.y189{bottom:298.949333pt;}
.ya6{bottom:300.225333pt;}
.yc2{bottom:301.548000pt;}
.yfc{bottom:302.286667pt;}
.y6a{bottom:302.970667pt;}
.y89{bottom:304.254667pt;}
.y1da{bottom:308.366667pt;}
.y12e{bottom:311.286667pt;}
.y45{bottom:311.948000pt;}
.y149{bottom:312.356000pt;}
.y208{bottom:313.597333pt;}
.y1c{bottom:313.809333pt;}
.y1bd{bottom:316.486667pt;}
.ya5{bottom:321.169333pt;}
.y88{bottom:323.516000pt;}
.y1ee{bottom:326.117333pt;}
.y1d9{bottom:327.628000pt;}
.ydc{bottom:328.541333pt;}
.y44{bottom:331.209333pt;}
.y116{bottom:331.485333pt;}
.y207{bottom:332.858667pt;}
.yfb{bottom:333.389333pt;}
.yc1{bottom:334.092000pt;}
.y69{bottom:335.514667pt;}
.y166{bottom:338.218667pt;}
.y148{bottom:341.912000pt;}
.ya4{bottom:342.886667pt;}
.y12d{bottom:343.153333pt;}
.y188{bottom:345.165333pt;}
.y1b{bottom:346.353333pt;}
.y1d8{bottom:346.888000pt;}
.ydb{bottom:347.802667pt;}
.y43{bottom:350.469333pt;}
.y206{bottom:352.118667pt;}
.y68{bottom:354.776000pt;}
.y87{bottom:356.060000pt;}
.ya3{bottom:358.384000pt;}
.y1bc{bottom:362.701333pt;}
.y221{bottom:363.753333pt;}
.y115{bottom:364.030667pt;}
.y187{bottom:364.426667pt;}
.yfa{bottom:364.490667pt;}
.y1a{bottom:365.614667pt;}
.yc0{bottom:368.800000pt;}
.y1a0{bottom:369.449333pt;}
.y165{bottom:369.636000pt;}
.y42{bottom:369.730667pt;}
.y1ed{bottom:372.332000pt;}
.y67{bottom:374.037333pt;}
.ybf{bottom:374.297333pt;}
.y12c{bottom:375.020000pt;}
.y86{bottom:375.321333pt;}
.ya2{bottom:377.645333pt;}
.yda{bottom:380.346667pt;}
.y1d7{bottom:381.934667pt;}
.y1bb{bottom:381.962667pt;}
.y220{bottom:383.014667pt;}
.y147{bottom:383.478667pt;}
.yf9{bottom:383.752000pt;}
.y205{bottom:387.165333pt;}
.y41{bottom:388.992000pt;}
.y1ec{bottom:391.593333pt;}
.y114{bottom:396.574667pt;}
.y186{bottom:396.970667pt;}
.y19{bottom:398.160000pt;}
.y164{bottom:399.192000pt;}
.yd9{bottom:399.608000pt;}
.y19f{bottom:402.440229pt;}
.y146{bottom:402.740000pt;}
.y66{bottom:406.581333pt;}
.y12b{bottom:407.338667pt;}
.y85{bottom:407.865333pt;}
.y40{bottom:408.253333pt;}
.y1eb{bottom:410.854667pt;}
.y1ba{bottom:414.508000pt;}
.ybe{bottom:414.590667pt;}
.ya1{bottom:414.840000pt;}
.yf8{bottom:414.854667pt;}
.y21f{bottom:415.558667pt;}
.y185{bottom:416.232000pt;}
.y18{bottom:417.420000pt;}
.yd8{bottom:418.869333pt;}
.y19e{bottom:421.961871pt;}
.y145{bottom:422.001333pt;}
.y65{bottom:425.842667pt;}
.y84{bottom:427.126667pt;}
.y3f{bottom:427.514667pt;}
.y113{bottom:429.120000pt;}
.y1b9{bottom:433.768000pt;}
.ybd{bottom:433.852000pt;}
.y21e{bottom:434.820000pt;}
.y17{bottom:436.681333pt;}
.yd7{bottom:438.130667pt;}
.y12a{bottom:439.205333pt;}
.y204{bottom:440.410667pt;}
.y19d{bottom:441.483512pt;}
.y1ea{bottom:443.398667pt;}
.yf7{bottom:444.410667pt;}
.y64{bottom:445.104000pt;}
.y3e{bottom:446.776000pt;}
.y184{bottom:448.776000pt;}
.ya0{bottom:450.041333pt;}
.y144{bottom:451.557333pt;}
.y1b8{bottom:453.029333pt;}
.y21d{bottom:454.081333pt;}
.y1d6{bottom:455.836000pt;}
.y163{bottom:459.200000pt;}
.y83{bottom:459.672000pt;}
.y19c{bottom:461.005153pt;}
.y112{bottom:461.664000pt;}
.y1e9{bottom:462.660000pt;}
.ybc{bottom:463.406667pt;}
.y3d{bottom:466.036000pt;}
.yd6{bottom:467.685333pt;}
.y183{bottom:468.037333pt;}
.y16{bottom:469.226667pt;}
.y129{bottom:471.070667pt;}
.y143{bottom:475.466667pt;}
.y63{bottom:477.648000pt;}
.y82{bottom:478.932000pt;}
.y19b{bottom:480.528110pt;}
.y111{bottom:480.925333pt;}
.y9f{bottom:482.585333pt;}
.y3c{bottom:485.297333pt;}
.y1b7{bottom:485.574667pt;}
.yf6{bottom:485.728000pt;}
.y21c{bottom:486.626667pt;}
.y182{bottom:487.298667pt;}
.ybb{bottom:487.317333pt;}
.y1d5{bottom:488.384909pt;}
.y15{bottom:488.488000pt;}
.y162{bottom:491.009669pt;}
.y1e8{bottom:495.205333pt;}
.y62{bottom:496.909333pt;}
.y203{bottom:498.193333pt;}
.y128{bottom:503.389333pt;}
.y3b{bottom:504.558667pt;}
.y1b6{bottom:504.836000pt;}
.yf5{bottom:504.989333pt;}
.y21b{bottom:505.886667pt;}
.y1d4{bottom:506.524277pt;}
.y161{bottom:506.830009pt;}
.yd5{bottom:509.252000pt;}
.y81{bottom:511.477333pt;}
.y110{bottom:513.469333pt;}
.y1e7{bottom:514.466667pt;}
.y9e{bottom:515.130667pt;}
.y181{bottom:516.854667pt;}
.y202{bottom:517.454667pt;}
.y14{bottom:521.032000pt;}
.y142{bottom:521.682667pt;}
.y160{bottom:522.650348pt;}
.y3a{bottom:523.820000pt;}
.y1d3{bottom:524.664867pt;}
.y61{bottom:526.465333pt;}
.y19a{bottom:526.961333pt;}
.yd4{bottom:528.513333pt;}
.y80{bottom:530.738667pt;}
.yba{bottom:533.533333pt;}
.y1e6{bottom:533.726667pt;}
.yf4{bottom:534.545333pt;}
.y127{bottom:535.256000pt;}
.y201{bottom:536.716000pt;}
.y21a{bottom:538.432000pt;}
.y15f{bottom:538.471753pt;}
.y13{bottom:540.293333pt;}
.y141{bottom:540.944000pt;}
.y1b5{bottom:541.365333pt;}
.y1d2{bottom:542.804235pt;}
.y10f{bottom:543.025333pt;}
.y39{bottom:543.081333pt;}
.y9d{bottom:547.674667pt;}
.yd3{bottom:547.774667pt;}
.y200{bottom:555.977333pt;}
.y219{bottom:557.693333pt;}
.y1b4{bottom:560.626667pt;}
.y1d1{bottom:560.943603pt;}
.y38{bottom:562.342667pt;}
.y180{bottom:563.070667pt;}
.y7f{bottom:563.282667pt;}
.y126{bottom:564.812000pt;}
.yb9{bottom:566.077333pt;}
.y1e5{bottom:566.272000pt;}
.yd2{bottom:567.036000pt;}
.y60{bottom:572.681333pt;}
.y12{bottom:572.837333pt;}
.y199{bottom:573.177333pt;}
.y140{bottom:573.488000pt;}
.y1ff{bottom:575.238667pt;}
.y15e{bottom:579.412000pt;}
.y1b3{bottom:579.886667pt;}
.yf3{bottom:580.512000pt;}
.y37{bottom:581.602667pt;}
.y17f{bottom:582.330667pt;}
.y7e{bottom:582.544000pt;}
.y9c{bottom:582.876000pt;}
.y10e{bottom:584.592000pt;}
.y1e4{bottom:585.533333pt;}
.y218{bottom:590.237333pt;}
.y5f{bottom:591.942667pt;}
.y11{bottom:592.098667pt;}
.y198{bottom:592.438667pt;}
.y1fe{bottom:594.498667pt;}
.yd1{bottom:596.592000pt;}
.yb8{bottom:598.622667pt;}
.yf2{bottom:599.773333pt;}
.y36{bottom:600.864000pt;}
.y17e{bottom:601.592000pt;}
.y13f{bottom:603.044000pt;}
.y125{bottom:606.261333pt;}
.y1d0{bottom:606.398667pt;}
.y1b2{bottom:609.442667pt;}
.y217{bottom:609.498667pt;}
.y5e{bottom:611.202667pt;}
.y10{bottom:611.360000pt;}
.y1fd{bottom:613.760000pt;}
.y7d{bottom:615.089333pt;}
.y10d{bottom:617.136000pt;}
.y9b{bottom:618.077333pt;}
.y35{bottom:620.125333pt;}
.y15d{bottom:620.396000pt;}
.y17d{bottom:620.853333pt;}
.y197{bottom:624.982667pt;}
.y216{bottom:628.760000pt;}
.y5d{bottom:630.464000pt;}
.yf{bottom:630.621333pt;}
.yb7{bottom:631.166667pt;}
.yf1{bottom:631.837333pt;}
.y1fc{bottom:633.021333pt;}
.y7c{bottom:634.349333pt;}
.yd0{bottom:636.286667pt;}
.y124{bottom:638.580000pt;}
.y34{bottom:639.386667pt;}
.y17c{bottom:640.114667pt;}
.y9a{bottom:647.633333pt;}
.y10c{bottom:649.681333pt;}
.y5c{bottom:649.725333pt;}
.ye{bottom:649.882667pt;}
.yf0{bottom:651.098667pt;}
.y15c{bottom:651.814667pt;}
.y1cf{bottom:652.614667pt;}
.y1b1{bottom:655.658667pt;}
.y196{bottom:657.528000pt;}
.y33{bottom:658.648000pt;}
.yb6{bottom:659.062667pt;}
.y215{bottom:661.304000pt;}
.y179{bottom:662.285333pt;}
.y1fb{bottom:662.577333pt;}
.y17b{bottom:664.001333pt;}
.y13e{bottom:665.886667pt;}
.y7b{bottom:666.894667pt;}
.y5b{bottom:668.986667pt;}
.yd{bottom:669.142667pt;}
.y123{bottom:670.446667pt;}
.y1ce{bottom:671.876000pt;}
.y17a{bottom:673.924000pt;}
.y1b0{bottom:674.920000pt;}
.y178{bottom:677.776000pt;}
.y32{bottom:677.909333pt;}
.yb5{bottom:680.316000pt;}
.y214{bottom:680.565333pt;}
.y10b{bottom:682.225333pt;}
.yef{bottom:683.162667pt;}
.y15b{bottom:683.232000pt;}
.y5a{bottom:688.248000pt;}
.yc{bottom:688.404000pt;}
.ycf{bottom:689.532000pt;}
.y195{bottom:690.072000pt;}
.y99{bottom:693.849333pt;}
.y1af{bottom:694.181333pt;}
.y7a{bottom:696.450667pt;}
.y13d{bottom:697.018959pt;}
.y31{bottom:697.169333pt;}
.yb4{bottom:699.577333pt;}
.y213{bottom:699.826667pt;}
.y177{bottom:699.926667pt;}
.y10a{bottom:701.486667pt;}
.y122{bottom:702.313333pt;}
.yee{bottom:702.424000pt;}
.y1cd{bottom:704.420000pt;}
.y59{bottom:707.509333pt;}
.yb{bottom:707.665333pt;}
.yce{bottom:708.793333pt;}
.y13c{bottom:710.717925pt;}
.y15a{bottom:712.788000pt;}
.y98{bottom:713.110667pt;}
.y30{bottom:716.430667pt;}
.y176{bottom:719.186667pt;}
.y194{bottom:722.617333pt;}
.y1cc{bottom:723.681333pt;}
.y13b{bottom:724.415968pt;}
.y1ae{bottom:726.725333pt;}
.y58{bottom:726.769333pt;}
.ya{bottom:726.926667pt;}
.y1fa{bottom:728.053333pt;}
.yb3{bottom:729.133333pt;}
.y97{bottom:732.370667pt;}
.yed{bottom:733.525333pt;}
.y109{bottom:734.032000pt;}
.y121{bottom:734.632000pt;}
.y2f{bottom:735.692000pt;}
.y13a{bottom:738.114011pt;}
.y175{bottom:738.448000pt;}
.ycd{bottom:741.337333pt;}
.y79{bottom:742.665333pt;}
.y1ad{bottom:745.986667pt;}
.y57{bottom:746.030667pt;}
.y9{bottom:746.188000pt;}
.y212{bottom:751.632000pt;}
.yec{bottom:752.786667pt;}
.y159{bottom:753.772000pt;}
.y2e{bottom:754.953333pt;}
.y193{bottom:755.161333pt;}
.y1cb{bottom:756.226667pt;}
.y174{bottom:757.709333pt;}
.ycc{bottom:760.598667pt;}
.y78{bottom:761.926667pt;}
.y96{bottom:764.916000pt;}
.y56{bottom:765.292000pt;}
.y8{bottom:765.449333pt;}
.y120{bottom:766.498667pt;}
.y108{bottom:766.576000pt;}
.y211{bottom:770.893333pt;}
.yeb{bottom:772.048000pt;}
.y158{bottom:773.033333pt;}
.y2d{bottom:774.214667pt;}
.yb2{bottom:775.348000pt;}
.y1ca{bottom:775.486667pt;}
.y1ac{bottom:778.530667pt;}
.y139{bottom:779.804000pt;}
.y1f9{bottom:779.860000pt;}
.y77{bottom:781.188000pt;}
.y95{bottom:784.177333pt;}
.y55{bottom:784.553333pt;}
.y7{bottom:784.709333pt;}
.y192{bottom:786.818667pt;}
.y173{bottom:787.265333pt;}
.ycb{bottom:793.142667pt;}
.y2c{bottom:793.474667pt;}
.yb1{bottom:794.609333pt;}
.y1ab{bottom:797.792000pt;}
.y11f{bottom:798.364000pt;}
.y107{bottom:799.121333pt;}
.y76{bottom:800.449333pt;}
.yea{bottom:801.604000pt;}
.y157{bottom:802.589333pt;}
.y94{bottom:803.437333pt;}
.y1e3{bottom:803.438667pt;}
.y54{bottom:803.814667pt;}
.y6{bottom:803.970667pt;}
.y1c9{bottom:812.017333pt;}
.yca{bottom:812.404000pt;}
.y2b{bottom:812.736000pt;}
.yb0{bottom:813.870667pt;}
.y106{bottom:818.381333pt;}
.y75{bottom:819.710667pt;}
.y138{bottom:821.370667pt;}
.y210{bottom:822.698667pt;}
.y191{bottom:825.688000pt;}
.y156{bottom:826.500000pt;}
.y11e{bottom:830.682667pt;}
.y1c8{bottom:831.277333pt;}
.y1f8{bottom:831.665333pt;}
.y2a{bottom:831.997333pt;}
.y53{bottom:833.370667pt;}
.y172{bottom:833.481333pt;}
.y1aa{bottom:834.322667pt;}
.y93{bottom:835.982667pt;}
.y74{bottom:838.972000pt;}
.ye9{bottom:842.921333pt;}
.yae{bottom:843.094667pt;}
.yaf{bottom:843.598667pt;}
.yc9{bottom:844.949333pt;}
.y105{bottom:850.926667pt;}
.y29{bottom:851.258667pt;}
.y171{bottom:852.741333pt;}
.y1a9{bottom:853.582667pt;}
.y137{bottom:853.916000pt;}
.yad{bottom:854.533333pt;}
.y92{bottom:855.244000pt;}
.y5{bottom:856.108000pt;}
.y73{bottom:858.232000pt;}
.y1c7{bottom:860.833333pt;}
.ye8{bottom:862.182667pt;}
.y11d{bottom:862.549333pt;}
.yc8{bottom:864.210667pt;}
.y28{bottom:870.520000pt;}
.y170{bottom:872.002667pt;}
.y155{bottom:872.533333pt;}
.y1a8{bottom:872.844000pt;}
.y52{bottom:873.065333pt;}
.y91{bottom:874.505333pt;}
.y4{bottom:875.369333pt;}
.y72{bottom:877.493333pt;}
.y104{bottom:883.470667pt;}
.y136{bottom:886.460000pt;}
.y27{bottom:889.781333pt;}
.y16f{bottom:891.264000pt;}
.y11c{bottom:892.105333pt;}
.y22a{bottom:893.765333pt;}
.ye7{bottom:894.246667pt;}
.y71{bottom:896.754667pt;}
.y3{bottom:902.601333pt;}
.y154{bottom:904.223844pt;}
.y90{bottom:907.049333pt;}
.y26{bottom:909.041333pt;}
.y16e{bottom:910.525333pt;}
.ye6{bottom:913.508000pt;}
.y70{bottom:916.016000pt;}
.y153{bottom:919.674124pt;}
.y11b{bottom:921.661333pt;}
.y2{bottom:924.086667pt;}
.y51{bottom:926.310667pt;}
.y152{bottom:935.123364pt;}
.y1{bottom:945.572000pt;}
.y151{bottom:950.572603pt;}
.h18{height:22.475776pt;}
.h17{height:23.910400pt;}
.h14{height:31.138514pt;}
.h9{height:31.880400pt;}
.he{height:33.096776pt;}
.h15{height:35.373352pt;}
.h10{height:37.327960pt;}
.hf{height:37.597937pt;}
.h1b{height:38.049067pt;}
.h12{height:38.224600pt;}
.h11{height:42.404563pt;}
.h13{height:43.423146pt;}
.h1e{height:43.827763pt;}
.h6{height:44.887791pt;}
.h1c{height:47.167568pt;}
.h3{height:47.820800pt;}
.h1f{height:49.788339pt;}
.h1d{height:53.582357pt;}
.h2{height:54.324429pt;}
.h1a{height:55.034402pt;}
.h4{height:57.384800pt;}
.h5{height:63.762688pt;}
.h1{height:68.861600pt;}
.hc{height:79.698688pt;}
.ha{height:88.023791pt;}
.h8{height:88.079735pt;}
.hb{height:88.626458pt;}
.h19{height:90.956800pt;}
.h16{height:97.460429pt;}
.h7{height:98.063095pt;}
.hd{height:101.688021pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:94.488000pt;}
.x17{left:100.371773pt;}
.x1a{left:101.283371pt;}
.x23{left:102.873205pt;}
.x25{left:105.760000pt;}
.x8{left:113.564000pt;}
.x6{left:117.900000pt;}
.x1{left:121.582667pt;}
.x2{left:127.657333pt;}
.x9{left:133.508000pt;}
.x18{left:193.198667pt;}
.x1c{left:203.302667pt;}
.x19{left:204.410667pt;}
.x1b{left:218.074667pt;}
.x14{left:231.918667pt;}
.xc{left:236.592000pt;}
.x24{left:262.378667pt;}
.x3{left:296.458667pt;}
.xd{left:304.080000pt;}
.x10{left:313.053333pt;}
.x22{left:322.157333pt;}
.x20{left:334.886667pt;}
.xb{left:338.364000pt;}
.x5{left:350.446667pt;}
.xe{left:351.928000pt;}
.xf{left:354.373333pt;}
.x4{left:356.192000pt;}
.x11{left:378.586667pt;}
.x12{left:391.888000pt;}
.x16{left:400.196000pt;}
.xa{left:404.097333pt;}
.x21{left:420.090667pt;}
.x1d{left:428.390667pt;}
.x13{left:459.134667pt;}
.x1e{left:473.029333pt;}
.x1f{left:491.696000pt;}
.x15{left:526.102667pt;}
}




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