
    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_d1b1bc5ee7f345779f717cd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136000;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_58bd3f933d7151cbcc36c6e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_54efa6ab89bb06a34f278667.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_53bd74d5d5376c6ac363beff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a23258ce2dc4e68fac88b88b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ee1fdf3e9f3b685813ae95ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912000;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_5b8630d21a0ff53648bb6d9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.058095;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_fc2250b80a66ffaf348eaa02.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.828095;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_cd538e4194d15d748cdf74a5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.037149;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_ceaf8beb6fa3e04fa3ac0744.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.706055;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_8f5dfca4f781a846be304c37.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.894000;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_8781ebfa719f52432a780c7c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926758;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_7c3be6277874b720993781c6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_53bf0782949a9fc87c87516a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3256ad44db8dae2564a4574a.woff2')format("woff");}.fff{font-family:fff;line-height:0.943600;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.100000px;}
.v4{vertical-align:18.900000px;}
.v5{vertical-align:25.500000px;}
.v2{vertical-align:27.600000px;}
.v6{vertical-align:54.000600px;}
.lsd{letter-spacing:-0.630000px;}
.lse{letter-spacing:-0.189000px;}
.ls3{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.000180px;}
.ls67{letter-spacing:0.000480px;}
.ls83{letter-spacing:0.000540px;}
.ls5c{letter-spacing:0.000660px;}
.ls54{letter-spacing:0.000720px;}
.ls31{letter-spacing:0.000780px;}
.ls19{letter-spacing:0.001020px;}
.ls9a{letter-spacing:0.001320px;}
.ls87{letter-spacing:0.001620px;}
.ls25{letter-spacing:0.009720px;}
.ls2a{letter-spacing:0.011520px;}
.ls51{letter-spacing:0.037140px;}
.ls1a{letter-spacing:0.041520px;}
.ls36{letter-spacing:0.051000px;}
.lsc{letter-spacing:0.063000px;}
.ls37{letter-spacing:0.067620px;}
.ls2f{letter-spacing:0.102000px;}
.ls4b{letter-spacing:0.102780px;}
.ls2b{letter-spacing:0.126000px;}
.ls3c{letter-spacing:0.149640px;}
.ls3b{letter-spacing:0.153000px;}
.lsb{letter-spacing:0.189000px;}
.ls53{letter-spacing:0.204000px;}
.ls1{letter-spacing:0.228000px;}
.ls7b{letter-spacing:0.229320px;}
.ls0{letter-spacing:0.240000px;}
.ls5f{letter-spacing:0.249960px;}
.ls23{letter-spacing:0.252000px;}
.ls4c{letter-spacing:0.255000px;}
.ls4d{letter-spacing:0.257460px;}
.ls6c{letter-spacing:0.260880px;}
.ls6d{letter-spacing:0.262020px;}
.ls6f{letter-spacing:0.262140px;}
.ls6e{letter-spacing:0.263880px;}
.ls8a{letter-spacing:0.273840px;}
.ls88{letter-spacing:0.274140px;}
.ls89{letter-spacing:0.275640px;}
.ls52{letter-spacing:0.306000px;}
.ls24{letter-spacing:0.315000px;}
.ls86{letter-spacing:0.328680px;}
.ls35{letter-spacing:0.330120px;}
.ls1e{letter-spacing:0.332520px;}
.ls74{letter-spacing:0.334620px;}
.ls55{letter-spacing:0.357000px;}
.ls27{letter-spacing:0.378000px;}
.ls11{letter-spacing:0.408840px;}
.ls5{letter-spacing:0.441000px;}
.ls7{letter-spacing:0.459000px;}
.ls82{letter-spacing:0.494160px;}
.ls20{letter-spacing:0.502620px;}
.ls22{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.510000px;}
.ls9f{letter-spacing:0.528660px;}
.lsa0{letter-spacing:0.529320px;}
.ls3d{letter-spacing:0.552780px;}
.ls3e{letter-spacing:0.561000px;}
.ls78{letter-spacing:0.564660px;}
.ls96{letter-spacing:0.565620px;}
.ls79{letter-spacing:0.566820px;}
.ls28{letter-spacing:0.567000px;}
.ls33{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.627000px;}
.ls34{letter-spacing:0.627720px;}
.lsf{letter-spacing:0.630000px;}
.ls43{letter-spacing:0.637140px;}
.ls56{letter-spacing:0.663000px;}
.lsa3{letter-spacing:0.673980px;}
.ls84{letter-spacing:0.678780px;}
.ls85{letter-spacing:0.679320px;}
.ls12{letter-spacing:0.693000px;}
.ls39{letter-spacing:0.712140px;}
.ls38{letter-spacing:0.714000px;}
.ls66{letter-spacing:0.715500px;}
.ls6{letter-spacing:0.756000px;}
.ls64{letter-spacing:0.756960px;}
.ls65{letter-spacing:0.757800px;}
.ls2d{letter-spacing:0.765000px;}
.ls2e{letter-spacing:0.775380px;}
.ls5d{letter-spacing:0.787140px;}
.ls32{letter-spacing:0.789480px;}
.ls95{letter-spacing:0.805860px;}
.ls48{letter-spacing:0.815220px;}
.ls47{letter-spacing:0.816000px;}
.lsa5{letter-spacing:0.863880px;}
.lsa4{letter-spacing:0.864360px;}
.lsa6{letter-spacing:0.866820px;}
.ls44{letter-spacing:0.867000px;}
.ls73{letter-spacing:0.875820px;}
.ls72{letter-spacing:0.879120px;}
.ls21{letter-spacing:0.882000px;}
.ls46{letter-spacing:0.916020px;}
.ls3a{letter-spacing:0.918000px;}
.ls1d{letter-spacing:0.945000px;}
.ls8f{letter-spacing:0.957540px;}
.ls8e{letter-spacing:0.958380px;}
.ls8d{letter-spacing:0.959340px;}
.ls58{letter-spacing:0.969000px;}
.lsa2{letter-spacing:0.981660px;}
.ls1b{letter-spacing:1.008000px;}
.ls1c{letter-spacing:1.071000px;}
.ls71{letter-spacing:1.122000px;}
.ls8{letter-spacing:1.143480px;}
.ls14{letter-spacing:1.260000px;}
.ls9c{letter-spacing:1.271700px;}
.ls9b{letter-spacing:1.271820px;}
.ls7a{letter-spacing:1.272300px;}
.ls57{letter-spacing:1.275000px;}
.ls15{letter-spacing:1.323000px;}
.ls2{letter-spacing:1.368000px;}
.ls61{letter-spacing:1.377000px;}
.ls80{letter-spacing:1.377720px;}
.ls18{letter-spacing:1.386000px;}
.lsa1{letter-spacing:1.391820px;}
.ls45{letter-spacing:1.428000px;}
.ls59{letter-spacing:1.442520px;}
.ls5a{letter-spacing:1.443660px;}
.ls10{letter-spacing:1.449000px;}
.ls60{letter-spacing:1.479000px;}
.ls97{letter-spacing:1.508460px;}
.ls68{letter-spacing:1.530000px;}
.ls69{letter-spacing:1.537980px;}
.ls99{letter-spacing:1.572300px;}
.ls17{letter-spacing:1.575000px;}
.ls98{letter-spacing:1.581000px;}
.ls30{letter-spacing:1.632000px;}
.ls13{letter-spacing:1.701000px;}
.ls4f{letter-spacing:1.716660px;}
.ls50{letter-spacing:1.717020px;}
.ls4e{letter-spacing:1.734000px;}
.lsa{letter-spacing:1.785000px;}
.ls16{letter-spacing:1.827000px;}
.ls2c{letter-spacing:1.890000px;}
.ls63{letter-spacing:1.973040px;}
.ls62{letter-spacing:1.989000px;}
.ls3f{letter-spacing:2.091000px;}
.ls40{letter-spacing:2.113680px;}
.ls70{letter-spacing:2.142000px;}
.ls8c{letter-spacing:2.164860px;}
.ls8b{letter-spacing:2.166360px;}
.lsa8{letter-spacing:2.193000px;}
.ls76{letter-spacing:2.244000px;}
.ls75{letter-spacing:2.248380px;}
.ls77{letter-spacing:2.251500px;}
.ls6b{letter-spacing:2.292840px;}
.ls6a{letter-spacing:2.295000px;}
.ls49{letter-spacing:2.346000px;}
.ls4a{letter-spacing:2.364480px;}
.lsa7{letter-spacing:2.640360px;}
.ls41{letter-spacing:2.652000px;}
.ls42{letter-spacing:2.670000px;}
.ls91{letter-spacing:2.678460px;}
.ls93{letter-spacing:2.679120px;}
.ls94{letter-spacing:2.680320px;}
.ls92{letter-spacing:2.680380px;}
.ls90{letter-spacing:2.703000px;}
.ls81{letter-spacing:2.754000px;}
.ls9d{letter-spacing:3.111000px;}
.ls9e{letter-spacing:3.126180px;}
.ls7e{letter-spacing:3.468000px;}
.ls7d{letter-spacing:3.483480px;}
.ls7f{letter-spacing:3.484800px;}
.ls5b{letter-spacing:4.233000px;}
.ls7c{letter-spacing:6.405960px;}
.ls9{letter-spacing:13.770000px;}
.ls26{letter-spacing:86.681400px;}
.ls29{letter-spacing:94.412400px;}
.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;}
}
.ws81{word-spacing:-38.556000px;}
.ws6c{word-spacing:-37.989000px;}
.ws6e{word-spacing:-30.753000px;}
.ws59{word-spacing:-15.750000px;}
.ws6d{word-spacing:-15.372000px;}
.wsc1{word-spacing:-15.198000px;}
.ws3c{word-spacing:-14.490000px;}
.wsf4{word-spacing:-14.382000px;}
.wsf1{word-spacing:-13.923000px;}
.ws9c{word-spacing:-13.821000px;}
.wsbe{word-spacing:-13.719000px;}
.wsf3{word-spacing:-13.260000px;}
.wsc2{word-spacing:-13.107000px;}
.wsf2{word-spacing:-12.699000px;}
.ws9d{word-spacing:-12.648000px;}
.ws9e{word-spacing:-12.546000px;}
.ws9a{word-spacing:-12.495000px;}
.wsf0{word-spacing:-12.393000px;}
.wsc0{word-spacing:-12.291000px;}
.wsef{word-spacing:-12.240000px;}
.wsbf{word-spacing:-12.087000px;}
.wsbd{word-spacing:-11.985000px;}
.ws9b{word-spacing:-11.781000px;}
.ws99{word-spacing:-11.730000px;}
.ws15{word-spacing:-9.600000px;}
.ws21{word-spacing:-9.418500px;}
.ws0{word-spacing:-8.521500px;}
.ws16{word-spacing:-7.624500px;}
.wsea{word-spacing:-3.468000px;}
.ws102{word-spacing:-3.111000px;}
.wsfc{word-spacing:-2.703000px;}
.ws106{word-spacing:-2.652000px;}
.wsb7{word-spacing:-2.346000px;}
.wsdb{word-spacing:-2.295000px;}
.wse3{word-spacing:-2.244000px;}
.wsfa{word-spacing:-2.193000px;}
.wsd5{word-spacing:-1.989000px;}
.wsff{word-spacing:-1.581000px;}
.wsfe{word-spacing:-1.530000px;}
.wsc3{word-spacing:-1.428000px;}
.wsed{word-spacing:-1.377000px;}
.wse8{word-spacing:-1.275000px;}
.ws52{word-spacing:-1.260000px;}
.wsfb{word-spacing:-0.969000px;}
.wse0{word-spacing:-0.867000px;}
.wsfd{word-spacing:-0.816000px;}
.wsb1{word-spacing:-0.663000px;}
.wsa5{word-spacing:-0.612000px;}
.wse7{word-spacing:-0.561000px;}
.wsf5{word-spacing:-0.510000px;}
.wse1{word-spacing:-0.357000px;}
.wsf7{word-spacing:-0.306000px;}
.wsb8{word-spacing:-0.255000px;}
.wsa9{word-spacing:-0.153000px;}
.wsa7{word-spacing:-0.051000px;}
.ws1{word-spacing:0.000000px;}
.ws1e{word-spacing:0.051000px;}
.ws4d{word-spacing:0.063000px;}
.ws1b{word-spacing:0.102000px;}
.ws43{word-spacing:0.126000px;}
.wsdd{word-spacing:0.153000px;}
.ws2{word-spacing:0.171000px;}
.ws61{word-spacing:0.189000px;}
.ws6f{word-spacing:0.252000px;}
.ws1d{word-spacing:0.255000px;}
.wsdf{word-spacing:0.306000px;}
.ws5a{word-spacing:0.315000px;}
.wsc8{word-spacing:0.357000px;}
.ws37{word-spacing:0.378000px;}
.wsba{word-spacing:0.408000px;}
.ws14{word-spacing:0.456000px;}
.ws76{word-spacing:0.459000px;}
.ws87{word-spacing:0.504000px;}
.ws77{word-spacing:0.510000px;}
.ws20{word-spacing:0.561000px;}
.ws6b{word-spacing:0.567000px;}
.wsb4{word-spacing:0.612000px;}
.ws41{word-spacing:0.693000px;}
.ws63{word-spacing:0.756000px;}
.wse6{word-spacing:0.765000px;}
.ws75{word-spacing:0.816000px;}
.ws105{word-spacing:0.867000px;}
.ws5e{word-spacing:0.882000px;}
.wsd4{word-spacing:0.918000px;}
.wsc7{word-spacing:0.969000px;}
.ws88{word-spacing:1.008000px;}
.ws100{word-spacing:1.020000px;}
.ws26{word-spacing:1.071000px;}
.wse9{word-spacing:1.122000px;}
.ws23{word-spacing:1.134000px;}
.ws48{word-spacing:1.173000px;}
.ws2c{word-spacing:1.197000px;}
.wsf6{word-spacing:1.224000px;}
.ws34{word-spacing:1.260000px;}
.ws25{word-spacing:1.323000px;}
.wsae{word-spacing:1.326000px;}
.ws9f{word-spacing:1.377000px;}
.ws22{word-spacing:1.386000px;}
.ws29{word-spacing:1.449000px;}
.ws1f{word-spacing:1.479000px;}
.ws4{word-spacing:1.482000px;}
.ws2e{word-spacing:1.512000px;}
.wscd{word-spacing:1.530000px;}
.ws2f{word-spacing:1.575000px;}
.wsaa{word-spacing:1.581000px;}
.wsd{word-spacing:1.596000px;}
.ws65{word-spacing:1.638000px;}
.wse{word-spacing:1.653000px;}
.wscf{word-spacing:1.683000px;}
.ws71{word-spacing:1.701000px;}
.ws10{word-spacing:1.710000px;}
.ws108{word-spacing:1.734000px;}
.ws4e{word-spacing:1.764000px;}
.wse2{word-spacing:1.785000px;}
.ws36{word-spacing:1.827000px;}
.wscc{word-spacing:1.887000px;}
.wsac{word-spacing:1.938000px;}
.ws40{word-spacing:1.953000px;}
.wsd9{word-spacing:1.989000px;}
.ws79{word-spacing:2.016000px;}
.ws47{word-spacing:2.040000px;}
.ws39{word-spacing:2.142000px;}
.ws4a{word-spacing:2.205000px;}
.ws104{word-spacing:2.244000px;}
.ws2b{word-spacing:2.268000px;}
.wsb{word-spacing:2.280000px;}
.ws46{word-spacing:2.295000px;}
.ws83{word-spacing:2.331000px;}
.ws56{word-spacing:2.394000px;}
.ws97{word-spacing:2.457000px;}
.ws58{word-spacing:2.520000px;}
.wsab{word-spacing:2.550000px;}
.ws5d{word-spacing:2.583000px;}
.wsd0{word-spacing:2.601000px;}
.ws51{word-spacing:2.709000px;}
.ws6{word-spacing:2.736000px;}
.ws1a{word-spacing:2.772000px;}
.ws44{word-spacing:2.835000px;}
.ws69{word-spacing:2.898000px;}
.wsa0{word-spacing:2.907000px;}
.wsa1{word-spacing:2.958000px;}
.ws8c{word-spacing:2.961000px;}
.ws72{word-spacing:3.024000px;}
.wsd8{word-spacing:3.060000px;}
.ws19{word-spacing:3.087000px;}
.ws35{word-spacing:3.150000px;}
.wsca{word-spacing:3.162000px;}
.ws2d{word-spacing:3.213000px;}
.wsda{word-spacing:3.264000px;}
.ws5c{word-spacing:3.276000px;}
.ws73{word-spacing:3.339000px;}
.ws27{word-spacing:3.402000px;}
.wsa{word-spacing:3.420000px;}
.ws60{word-spacing:3.465000px;}
.wsb2{word-spacing:3.468000px;}
.ws78{word-spacing:3.528000px;}
.ws9{word-spacing:3.534000px;}
.ws32{word-spacing:3.591000px;}
.wsbc{word-spacing:3.621000px;}
.ws7a{word-spacing:3.654000px;}
.ws33{word-spacing:3.717000px;}
.ws6a{word-spacing:3.780000px;}
.ws3b{word-spacing:3.825000px;}
.ws85{word-spacing:3.843000px;}
.wse5{word-spacing:3.876000px;}
.ws7b{word-spacing:3.906000px;}
.wsd1{word-spacing:3.927000px;}
.ws7{word-spacing:3.933000px;}
.ws3a{word-spacing:3.969000px;}
.wsd2{word-spacing:3.978000px;}
.ws13{word-spacing:3.990000px;}
.ws8b{word-spacing:4.032000px;}
.ws3{word-spacing:4.047000px;}
.wsd7{word-spacing:4.080000px;}
.ws4c{word-spacing:4.095000px;}
.ws28{word-spacing:4.158000px;}
.wsa4{word-spacing:4.182000px;}
.ws67{word-spacing:4.221000px;}
.wsb3{word-spacing:4.233000px;}
.ws62{word-spacing:4.284000px;}
.ws103{word-spacing:4.335000px;}
.ws2a{word-spacing:4.347000px;}
.ws11{word-spacing:4.389000px;}
.ws5f{word-spacing:4.410000px;}
.wsbb{word-spacing:4.437000px;}
.ws42{word-spacing:4.473000px;}
.ws24{word-spacing:4.536000px;}
.wsc6{word-spacing:4.539000px;}
.wsa8{word-spacing:4.590000px;}
.ws30{word-spacing:4.599000px;}
.ws8{word-spacing:4.674000px;}
.wsa3{word-spacing:4.692000px;}
.wsec{word-spacing:4.743000px;}
.ws49{word-spacing:4.788000px;}
.ws8d{word-spacing:4.851000px;}
.wsee{word-spacing:4.896000px;}
.ws93{word-spacing:4.914000px;}
.wsa6{word-spacing:4.947000px;}
.ws64{word-spacing:4.977000px;}
.wsf8{word-spacing:4.998000px;}
.ws66{word-spacing:5.040000px;}
.ws70{word-spacing:5.103000px;}
.wscb{word-spacing:5.151000px;}
.ws45{word-spacing:5.166000px;}
.wsc9{word-spacing:5.202000px;}
.ws84{word-spacing:5.229000px;}
.wsa2{word-spacing:5.304000px;}
.ws82{word-spacing:5.355000px;}
.ws38{word-spacing:5.418000px;}
.ws68{word-spacing:5.481000px;}
.ws53{word-spacing:5.544000px;}
.wsaf{word-spacing:5.559000px;}
.ws98{word-spacing:5.607000px;}
.ws109{word-spacing:5.610000px;}
.ws3e{word-spacing:5.670000px;}
.ws5{word-spacing:5.700000px;}
.wsce{word-spacing:5.712000px;}
.ws3d{word-spacing:5.733000px;}
.wsc5{word-spacing:5.763000px;}
.ws96{word-spacing:5.796000px;}
.wsb5{word-spacing:5.814000px;}
.ws4b{word-spacing:5.859000px;}
.ws1c{word-spacing:5.865000px;}
.wsf{word-spacing:5.871000px;}
.ws95{word-spacing:5.985000px;}
.ws55{word-spacing:6.048000px;}
.ws54{word-spacing:6.111000px;}
.ws94{word-spacing:6.237000px;}
.ws74{word-spacing:6.363000px;}
.ws57{word-spacing:6.426000px;}
.ws5b{word-spacing:6.489000px;}
.wsc{word-spacing:6.498000px;}
.ws3f{word-spacing:6.552000px;}
.ws12{word-spacing:6.555000px;}
.wsd6{word-spacing:6.579000px;}
.ws4f{word-spacing:6.615000px;}
.ws50{word-spacing:6.678000px;}
.ws31{word-spacing:6.741000px;}
.wsb9{word-spacing:7.038000px;}
.wsad{word-spacing:7.089000px;}
.wsf9{word-spacing:7.191000px;}
.ws18{word-spacing:7.245000px;}
.wse4{word-spacing:7.497000px;}
.wsdc{word-spacing:7.650000px;}
.wsde{word-spacing:7.701000px;}
.wsb6{word-spacing:7.905000px;}
.ws107{word-spacing:8.823000px;}
.wsb0{word-spacing:8.925000px;}
.wsd3{word-spacing:9.078000px;}
.ws101{word-spacing:10.455000px;}
.wseb{word-spacing:11.628000px;}
.wsc4{word-spacing:14.076000px;}
.ws17{word-spacing:42.210000px;}
.ws89{word-spacing:60.606000px;}
.ws8a{word-spacing:85.050000px;}
.ws86{word-spacing:91.791000px;}
.ws90{word-spacing:117.486240px;}
.ws80{word-spacing:155.277120px;}
.ws7f{word-spacing:173.997600px;}
.ws91{word-spacing:189.294240px;}
.ws7c{word-spacing:255.226200px;}
.ws7d{word-spacing:276.527040px;}
.ws92{word-spacing:371.287200px;}
.ws8e{word-spacing:374.040960px;}
.ws7e{word-spacing:593.707200px;}
.ws8f{word-spacing:664.651200px;}
._1d{margin-left:-4.234132px;}
._6{margin-left:-2.017716px;}
._0{margin-left:-1.015796px;}
._8{width:1.770600px;}
._11{width:3.471600px;}
._7{width:4.541400px;}
._1c{width:6.577860px;}
._5{width:7.854357px;}
._9{width:9.944700px;}
._c{width:11.474700px;}
._3{width:12.960000px;}
._1e{width:15.237600px;}
._f{width:30.955200px;}
._a{width:35.545200px;}
._1{width:42.208614px;}
._2{width:43.344000px;}
._d{width:45.972000px;}
._19{width:66.693000px;}
._12{width:99.465660px;}
._10{width:161.518560px;}
._17{width:172.555740px;}
._14{width:187.059600px;}
._1b{width:195.533280px;}
._13{width:201.486600px;}
._4{width:204.960000px;}
._b{width:309.895740px;}
._e{width:311.155740px;}
._18{width:421.911600px;}
._16{width:668.180940px;}
._1a{width:697.603200px;}
._15{width:714.196740px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:33.150000px;}
.fsb{font-size:36.000000px;}
.fs4{font-size:37.050000px;}
.fsc{font-size:40.950000px;}
.fse{font-size:42.000000px;}
.fs6{font-size:46.800000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:41.903850px;}
.yf8{bottom:42.520500px;}
.y171{bottom:69.697920px;}
.y83{bottom:72.283500px;}
.y6a{bottom:72.283650px;}
.ya2{bottom:72.855300px;}
.y1b8{bottom:75.140400px;}
.yf6{bottom:76.074900px;}
.yc9{bottom:76.107600px;}
.y19f{bottom:77.140005px;}
.y1b1{bottom:77.372850px;}
.y265{bottom:83.998500px;}
.y1dc{bottom:84.038400px;}
.yba{bottom:85.132950px;}
.ydd{bottom:85.795350px;}
.y82{bottom:88.033500px;}
.y135{bottom:88.652400px;}
.y159{bottom:91.059900px;}
.y1ff{bottom:91.633350px;}
.y69{bottom:91.858650px;}
.y170{bottom:92.795520px;}
.ya1{bottom:93.105300px;}
.yc8{bottom:94.411050px;}
.yf5{bottom:94.737000px;}
.y41{bottom:94.836450px;}
.y1b7{bottom:95.390400px;}
.y1b0{bottom:97.622850px;}
.y19e{bottom:98.111805px;}
.y231{bottom:98.807550px;}
.y264{bottom:98.998500px;}
.y1db{bottom:99.038400px;}
.yb9{bottom:105.382950px;}
.y1fe{bottom:106.633350px;}
.y81{bottom:107.608500px;}
.y40{bottom:110.586450px;}
.y158{bottom:111.309900px;}
.ya0{bottom:113.355300px;}
.y230{bottom:113.807550px;}
.yc7{bottom:113.986050px;}
.y263{bottom:113.998500px;}
.y1b6{bottom:115.640400px;}
.y112{bottom:116.877000px;}
.y134{bottom:117.288900px;}
.y1af{bottom:117.872850px;}
.y16d{bottom:118.922670px;}
.y16f{bottom:118.923120px;}
.yf3{bottom:120.248700px;}
.y1fd{bottom:121.633350px;}
.y1da{bottom:121.634550px;}
.y19b{bottom:124.238955px;}
.y19d{bottom:124.239405px;}
.yb8{bottom:125.632950px;}
.y80{bottom:125.911500px;}
.y22f{bottom:128.807550px;}
.y262{bottom:128.998500px;}
.y3f{bottom:130.588050px;}
.y157{bottom:131.559900px;}
.yc6{bottom:132.289500px;}
.y111{bottom:133.126050px;}
.y9f{bottom:133.605300px;}
.y68{bottom:135.890400px;}
.y1d9{bottom:136.634550px;}
.y133{bottom:137.538900px;}
.y186{bottom:142.987500px;}
.y22e{bottom:143.807550px;}
.y261{bottom:143.998500px;}
.y1fc{bottom:144.229500px;}
.y16e{bottom:145.050720px;}
.y7f{bottom:145.486500px;}
.yf4{bottom:145.760400px;}
.yb7{bottom:145.882950px;}
.y3e{bottom:146.338050px;}
.y1a0{bottom:147.240000px;}
.y1ae{bottom:148.114200px;}
.y19c{bottom:150.367005px;}
.y1d8{bottom:151.634550px;}
.y156{bottom:151.809900px;}
.yc5{bottom:151.864500px;}
.y9e{bottom:153.855300px;}
.y67{bottom:156.140400px;}
.y260{bottom:158.998500px;}
.y1fb{bottom:159.229500px;}
.y110{bottom:159.765750px;}
.y131{bottom:162.039600px;}
.y3d{bottom:165.913050px;}
.y22d{bottom:166.403700px;}
.y1d7{bottom:166.634550px;}
.y1ad{bottom:168.364200px;}
.y16c{bottom:171.178320px;}
.yf2{bottom:171.272100px;}
.y155{bottom:172.059900px;}
.y1fa{bottom:174.229500px;}
.y185{bottom:175.251300px;}
.yb6{bottom:176.124900px;}
.y66{bottom:176.390400px;}
.y19a{bottom:176.494605px;}
.y22c{bottom:181.403700px;}
.y25f{bottom:181.594650px;}
.y10f{bottom:183.151650px;}
.y10d{bottom:183.152250px;}
.y9d{bottom:184.097250px;}
.y3c{bottom:184.216500px;}
.y132{bottom:184.540500px;}
.y7e{bottom:185.131800px;}
.y1ac{bottom:188.614200px;}
.y1f9{bottom:189.229500px;}
.y1d6{bottom:189.230700px;}
.yc4{bottom:190.369200px;}
.y154{bottom:192.309900px;}
.yb5{bottom:196.374900px;}
.y22b{bottom:196.403700px;}
.ye8{bottom:196.441500px;}
.y25e{bottom:196.594650px;}
.y65{bottom:196.640400px;}
.yef{bottom:196.783200px;}
.yf1{bottom:196.783800px;}
.y16a{bottom:197.305920px;}
.y3b{bottom:199.966500px;}
.y183{bottom:201.378900px;}
.y198{bottom:202.622205px;}
.y1f8{bottom:204.229500px;}
.y1d5{bottom:204.230700px;}
.y9c{bottom:204.347250px;}
.y7d{bottom:205.381800px;}
.y10e{bottom:206.537550px;}
.y1ab{bottom:208.864200px;}
.yc3{bottom:210.619200px;}
.y22a{bottom:211.403700px;}
.y25d{bottom:211.594650px;}
.y153{bottom:212.559900px;}
.yb4{bottom:216.624900px;}
.y64{bottom:216.890400px;}
.y1f7{bottom:219.229500px;}
.y1d4{bottom:219.230700px;}
.y3a{bottom:219.541500px;}
.yf0{bottom:222.295500px;}
.y16b{bottom:223.433520px;}
.y7c{bottom:225.631800px;}
.y229{bottom:226.403700px;}
.y25c{bottom:226.594650px;}
.y184{bottom:227.506500px;}
.y199{bottom:228.749805px;}
.y1aa{bottom:229.114200px;}
.y10c{bottom:229.923600px;}
.yc2{bottom:230.869200px;}
.y1f{bottom:231.112800px;}
.y152{bottom:232.809900px;}
.y130{bottom:236.053500px;}
.yb3{bottom:236.874900px;}
.y63{bottom:237.140400px;}
.y39{bottom:237.844500px;}
.y25b{bottom:241.594650px;}
.y1f6{bottom:241.825650px;}
.y1d3{bottom:241.826850px;}
.y7b{bottom:245.881800px;}
.yee{bottom:247.807200px;}
.y1e{bottom:248.362800px;}
.y228{bottom:248.999850px;}
.y1a9{bottom:249.364200px;}
.y169{bottom:249.561570px;}
.y9b{bottom:250.108950px;}
.yc1{bottom:251.119200px;}
.y10a{bottom:253.309500px;}
.y38{bottom:253.594500px;}
.y182{bottom:253.634550px;}
.y197{bottom:254.877855px;}
.y25a{bottom:256.594650px;}
.y1f5{bottom:256.825650px;}
.y1d2{bottom:256.826850px;}
.yb2{bottom:257.124900px;}
.y1b5{bottom:257.390400px;}
.y151{bottom:263.051850px;}
.y227{bottom:263.999850px;}
.y1d{bottom:265.612800px;}
.y7a{bottom:266.131800px;}
.y62{bottom:267.382950px;}
.y1a8{bottom:269.614200px;}
.y9a{bottom:270.358950px;}
.yc0{bottom:271.369200px;}
.y1f4{bottom:271.825650px;}
.y1d1{bottom:271.826850px;}
.y37{bottom:273.169500px;}
.yec{bottom:273.318900px;}
.y167{bottom:275.689170px;}
.y10b{bottom:276.695400px;}
.yb1{bottom:277.374900px;}
.y1b4{bottom:277.640400px;}
.y226{bottom:278.999850px;}
.y12f{bottom:279.075900px;}
.y259{bottom:279.191400px;}
.y180{bottom:279.762150px;}
.y194{bottom:281.005005px;}
.y196{bottom:281.005455px;}
.y1c{bottom:282.862800px;}
.y150{bottom:283.301850px;}
.y79{bottom:286.381800px;}
.y1f3{bottom:286.825650px;}
.y1d0{bottom:286.826850px;}
.y61{bottom:287.632950px;}
.y1a7{bottom:289.864200px;}
.y99{bottom:290.608950px;}
.y225{bottom:293.999850px;}
.y258{bottom:294.191400px;}
.yb0{bottom:297.624900px;}
.y1b3{bottom:297.890400px;}
.yed{bottom:298.830600px;}
.y12e{bottom:299.325900px;}
.y109{bottom:300.080850px;}
.y1b{bottom:300.112800px;}
.ybf{bottom:301.611150px;}
.y168{bottom:301.816770px;}
.y1cf{bottom:301.826850px;}
.y14f{bottom:303.551850px;}
.y181{bottom:305.889750px;}
.y78{bottom:306.631800px;}
.y195{bottom:307.133055px;}
.y60{bottom:307.882950px;}
.y224{bottom:308.999850px;}
.y257{bottom:309.191400px;}
.y1f2{bottom:309.421800px;}
.y1a6{bottom:310.114200px;}
.y98{bottom:310.858950px;}
.y1a{bottom:317.362800px;}
.yaf{bottom:317.874900px;}
.y12d{bottom:319.575900px;}
.y108{bottom:323.466750px;}
.y106{bottom:323.467350px;}
.y14e{bottom:323.801850px;}
.yeb{bottom:324.342300px;}
.y1f1{bottom:324.421800px;}
.y1ce{bottom:324.423000px;}
.y77{bottom:326.881800px;}
.y166{bottom:327.944820px;}
.y5f{bottom:328.132950px;}
.y1a5{bottom:330.364200px;}
.y36{bottom:330.558000px;}
.y97{bottom:331.108950px;}
.y223{bottom:331.596000px;}
.y256{bottom:331.787550px;}
.y17f{bottom:332.017800px;}
.y193{bottom:333.260655px;}
.y19{bottom:334.612800px;}
.ybe{bottom:334.617000px;}
.yae{bottom:338.124900px;}
.y1cd{bottom:339.423000px;}
.y12c{bottom:339.825900px;}
.y14d{bottom:344.051850px;}
.y222{bottom:346.596000px;}
.y255{bottom:346.787550px;}
.y107{bottom:346.852650px;}
.y1f0{bottom:347.017950px;}
.y76{bottom:347.131800px;}
.y5e{bottom:348.382950px;}
.ye9{bottom:349.854000px;}
.y1a4{bottom:350.614200px;}
.y35{bottom:350.808000px;}
.y96{bottom:351.358950px;}
.y18{bottom:351.862800px;}
.y163{bottom:354.071970px;}
.y165{bottom:354.072420px;}
.y1cc{bottom:354.423000px;}
.y17c{bottom:358.144950px;}
.y17e{bottom:358.145400px;}
.yad{bottom:358.374900px;}
.y191{bottom:359.388255px;}
.y221{bottom:361.596000px;}
.y254{bottom:361.787550px;}
.yde{bottom:361.905000px;}
.y1ef{bottom:362.017950px;}
.yf9{bottom:362.947500px;}
.y14c{bottom:364.301850px;}
.y12a{bottom:364.326600px;}
.y75{bottom:367.381800px;}
.y5d{bottom:368.632950px;}
.y1cb{bottom:369.423000px;}
.y105{bottom:370.239150px;}
.y1a3{bottom:370.864200px;}
.y34{bottom:371.058000px;}
.y95{bottom:371.608950px;}
.yea{bottom:375.365700px;}
.y220{bottom:376.596000px;}
.y253{bottom:376.787550px;}
.y1ee{bottom:377.017950px;}
.yac{bottom:378.624900px;}
.y164{bottom:380.200020px;}
.y12b{bottom:380.827500px;}
.y17d{bottom:384.273000px;}
.y14b{bottom:384.551850px;}
.y192{bottom:385.515855px;}
.y74{bottom:387.631800px;}
.y5c{bottom:388.882950px;}
.y1a2{bottom:391.114200px;}
.y33{bottom:391.308000px;}
.y21f{bottom:391.596000px;}
.y94{bottom:391.858950px;}
.y1ed{bottom:392.017950px;}
.y1ca{bottom:392.019150px;}
.y103{bottom:393.625050px;}
.yab{bottom:398.874900px;}
.y252{bottom:399.383700px;}
.ydc{bottom:401.628900px;}
.y17{bottom:403.128300px;}
.y14a{bottom:404.801850px;}
.ye7{bottom:405.130350px;}
.y162{bottom:406.327620px;}
.y1c9{bottom:407.019150px;}
.y73{bottom:407.881800px;}
.y5b{bottom:409.132950px;}
.y17b{bottom:410.400600px;}
.y190{bottom:411.642705px;}
.y93{bottom:412.108950px;}
.ye5{bottom:413.637000px;}
.y21e{bottom:414.192750px;}
.y251{bottom:414.383700px;}
.y1ec{bottom:414.614100px;}
.y104{bottom:417.010950px;}
.yaa{bottom:419.124900px;}
.y16{bottom:420.378300px;}
.ydb{bottom:421.618200px;}
.y1c8{bottom:422.019150px;}
.y149{bottom:425.051850px;}
.y32{bottom:425.801550px;}
.ye4{bottom:426.387000px;}
.y21d{bottom:429.192750px;}
.y5a{bottom:429.382950px;}
.y250{bottom:429.383700px;}
.y1eb{bottom:429.614100px;}
.y1a1{bottom:429.861000px;}
.y129{bottom:430.840500px;}
.y92{bottom:432.358950px;}
.y160{bottom:432.455220px;}
.y179{bottom:436.528200px;}
.ye6{bottom:437.020050px;}
.y15{bottom:437.628300px;}
.y18e{bottom:437.770305px;}
.ya9{bottom:439.374900px;}
.y102{bottom:440.396400px;}
.y21c{bottom:444.192750px;}
.y24f{bottom:444.383700px;}
.y1ea{bottom:444.614100px;}
.y1c7{bottom:444.615300px;}
.y59{bottom:449.632950px;}
.y91{bottom:452.608950px;}
.y72{bottom:453.643500px;}
.y14{bottom:454.878300px;}
.y148{bottom:455.294400px;}
.y161{bottom:458.582820px;}
.y21b{bottom:459.192750px;}
.y24e{bottom:459.383700px;}
.y1e9{bottom:459.614100px;}
.y1c6{bottom:459.615300px;}
.ya8{bottom:459.624900px;}
.y17a{bottom:462.655800px;}
.y100{bottom:463.782300px;}
.y18f{bottom:463.897905px;}
.y58{bottom:469.882950px;}
.ye3{bottom:471.714450px;}
.y13{bottom:472.128300px;}
.y21a{bottom:474.192750px;}
.y1e8{bottom:474.614100px;}
.y1c5{bottom:474.615300px;}
.y147{bottom:475.544400px;}
.y128{bottom:477.109650px;}
.ya7{bottom:479.874900px;}
.yda{bottom:479.875050px;}
.y90{bottom:481.363200px;}
.y24d{bottom:481.979850px;}
.y15f{bottom:484.710870px;}
.y101{bottom:487.168200px;}
.y178{bottom:488.783850px;}
.y12{bottom:489.378300px;}
.y275{bottom:489.385050px;}
.y1e7{bottom:489.614100px;}
.y1c4{bottom:489.615300px;}
.y18d{bottom:490.025955px;}
.y57{bottom:490.132950px;}
.y146{bottom:495.794400px;}
.y219{bottom:496.788900px;}
.y24c{bottom:496.979850px;}
.y127{bottom:497.359650px;}
.y31{bottom:497.415450px;}
.y15d{bottom:497.775000px;}
.ya6{bottom:500.124900px;}
.yd9{bottom:500.125050px;}
.y8f{bottom:501.613200px;}
.y18b{bottom:503.089500px;}
.ye2{bottom:504.270300px;}
.y274{bottom:504.385050px;}
.y1c3{bottom:504.615300px;}
.y11{bottom:506.628300px;}
.y56{bottom:510.382950px;}
.yff{bottom:510.554100px;}
.y15e{bottom:510.838470px;}
.y218{bottom:511.788900px;}
.y24b{bottom:511.979850px;}
.y1e6{bottom:512.210250px;}
.y175{bottom:514.911000px;}
.y177{bottom:514.911450px;}
.y145{bottom:516.044400px;}
.y18c{bottom:516.153555px;}
.y126{bottom:517.609650px;}
.y273{bottom:519.385050px;}
.y30{bottom:520.169700px;}
.ya5{bottom:520.374900px;}
.yd8{bottom:520.375050px;}
.y8e{bottom:521.863200px;}
.y10{bottom:523.878300px;}
.ye1{bottom:524.259000px;}
.y217{bottom:526.788900px;}
.y24a{bottom:526.979850px;}
.y1e5{bottom:527.210250px;}
.y1c2{bottom:527.211450px;}
.y55{bottom:530.632950px;}
.yfd{bottom:533.940000px;}
.y144{bottom:536.294400px;}
.y125{bottom:537.859650px;}
.ya4{bottom:540.624900px;}
.yd7{bottom:540.625050px;}
.y176{bottom:541.039050px;}
.yf{bottom:541.128300px;}
.y216{bottom:541.788900px;}
.y249{bottom:541.979850px;}
.y272{bottom:541.981200px;}
.y8d{bottom:542.113200px;}
.y1e4{bottom:542.210250px;}
.y1c1{bottom:542.211450px;}
.y2f{bottom:542.922300px;}
.y15c{bottom:543.716250px;}
.y18a{bottom:549.031200px;}
.y143{bottom:556.544400px;}
.y215{bottom:556.788900px;}
.y248{bottom:556.979850px;}
.y271{bottom:556.981200px;}
.y1c0{bottom:557.211450px;}
.yfe{bottom:557.325900px;}
.y124{bottom:558.109650px;}
.y54{bottom:560.874900px;}
.yd6{bottom:560.875050px;}
.y8c{bottom:562.363200px;}
.y27e{bottom:564.576000px;}
.y1e3{bottom:564.806400px;}
.y2e{bottom:565.675950px;}
.y174{bottom:567.166650px;}
.y15b{bottom:569.222100px;}
.y247{bottom:571.979850px;}
.y270{bottom:571.981200px;}
.y1bf{bottom:572.211450px;}
.y189{bottom:574.537050px;}
.y142{bottom:576.794400px;}
.y123{bottom:578.359650px;}
.y214{bottom:579.385050px;}
.y27d{bottom:579.576000px;}
.y1e2{bottom:579.806400px;}
.yfc{bottom:580.711800px;}
.y53{bottom:581.124900px;}
.yd5{bottom:581.125050px;}
.y8b{bottom:582.613200px;}
.y246{bottom:586.979850px;}
.y26f{bottom:586.981200px;}
.y1be{bottom:587.211450px;}
.y15a{bottom:589.210800px;}
.ye{bottom:592.394250px;}
.y172{bottom:593.294250px;}
.y213{bottom:594.385050px;}
.y188{bottom:594.525750px;}
.y27c{bottom:594.576000px;}
.y1e1{bottom:594.806400px;}
.y2d{bottom:596.934000px;}
.y141{bottom:597.044400px;}
.y122{bottom:598.609650px;}
.y52{bottom:601.374900px;}
.yd4{bottom:601.375050px;}
.y26e{bottom:601.981200px;}
.y8a{bottom:602.863200px;}
.yfa{bottom:604.097700px;}
.y245{bottom:609.576000px;}
.yd{bottom:609.644250px;}
.y1e0{bottom:609.806400px;}
.y1bd{bottom:609.807600px;}
.ye0{bottom:616.536000px;}
.y212{bottom:616.981200px;}
.y121{bottom:618.859650px;}
.y173{bottom:619.421850px;}
.y51{bottom:621.624900px;}
.yd3{bottom:621.625050px;}
.y89{bottom:623.113200px;}
.y2c{bottom:623.438250px;}
.y244{bottom:624.576000px;}
.y26d{bottom:624.577350px;}
.y1df{bottom:624.806400px;}
.y1bc{bottom:624.807600px;}
.yc{bottom:626.894250px;}
.yfb{bottom:627.483600px;}
.y140{bottom:630.050250px;}
.y211{bottom:631.981200px;}
.yf7{bottom:637.795500px;}
.y243{bottom:639.576000px;}
.y26c{bottom:639.577350px;}
.y1de{bottom:639.806400px;}
.y1bb{bottom:639.807600px;}
.y50{bottom:641.874900px;}
.yd2{bottom:641.875050px;}
.y120{bottom:643.361850px;}
.y88{bottom:643.363200px;}
.yb{bottom:644.144250px;}
.y2b{bottom:645.690450px;}
.y210{bottom:646.981200px;}
.y187{bottom:647.964000px;}
.y13f{bottom:650.300250px;}
.y113{bottom:654.342000px;}
.y242{bottom:654.576000px;}
.y26b{bottom:654.577350px;}
.y1dd{bottom:654.806400px;}
.y1ba{bottom:654.807600px;}
.ya{bottom:661.394250px;}
.y20f{bottom:661.981200px;}
.y4f{bottom:662.124900px;}
.yd1{bottom:662.125050px;}
.y11f{bottom:663.611850px;}
.y87{bottom:663.613200px;}
.y2a{bottom:667.942650px;}
.y241{bottom:669.576000px;}
.y26a{bottom:669.577350px;}
.y13e{bottom:670.550250px;}
.y9{bottom:678.644250px;}
.y4e{bottom:682.374900px;}
.yd0{bottom:682.375050px;}
.y11e{bottom:683.861850px;}
.y86{bottom:683.863200px;}
.y240{bottom:684.576000px;}
.y20e{bottom:684.577350px;}
.y29{bottom:690.194850px;}
.y13d{bottom:690.800250px;}
.ya3{bottom:692.366850px;}
.y8{bottom:695.894250px;}
.y23f{bottom:699.576000px;}
.y20d{bottom:699.577350px;}
.y4d{bottom:702.624900px;}
.ycf{bottom:702.625050px;}
.y1b9{bottom:702.890250px;}
.y11d{bottom:704.111850px;}
.ydf{bottom:707.837340px;}
.y13c{bottom:711.050250px;}
.y85{bottom:712.616850px;}
.y7{bottom:713.144250px;}
.y23e{bottom:714.576000px;}
.y20c{bottom:714.577350px;}
.y4c{bottom:722.874900px;}
.yce{bottom:722.875050px;}
.y11c{bottom:724.361850px;}
.y28{bottom:725.202300px;}
.y27b{bottom:729.576000px;}
.y20b{bottom:729.577350px;}
.y6{bottom:730.394250px;}
.y13b{bottom:731.300250px;}
.y84{bottom:732.866850px;}
.y23d{bottom:737.172150px;}
.y269{bottom:737.173500px;}
.ybd{bottom:743.124900px;}
.ycd{bottom:743.125050px;}
.y27a{bottom:744.576000px;}
.y11b{bottom:744.611850px;}
.y13a{bottom:751.550250px;}
.y23c{bottom:752.172150px;}
.y20a{bottom:752.173500px;}
.y4b{bottom:753.116850px;}
.y279{bottom:759.576000px;}
.ybc{bottom:763.374900px;}
.ycc{bottom:763.375050px;}
.y71{bottom:764.375100px;}
.y11a{bottom:764.861850px;}
.y23b{bottom:767.172150px;}
.y209{bottom:767.173500px;}
.y27{bottom:772.054500px;}
.y4a{bottom:773.366850px;}
.y278{bottom:774.576000px;}
.y20{bottom:780.235500px;}
.y139{bottom:780.303900px;}
.y23a{bottom:782.172150px;}
.y208{bottom:782.173500px;}
.ybb{bottom:783.624900px;}
.y70{bottom:784.364400px;}
.y119{bottom:789.364650px;}
.y26{bottom:793.054500px;}
.y49{bottom:793.616850px;}
.ycb{bottom:793.617000px;}
.y239{bottom:797.172150px;}
.y268{bottom:797.173500px;}
.y1b2{bottom:803.874900px;}
.y207{bottom:804.770700px;}
.y5{bottom:807.171450px;}
.y118{bottom:809.614650px;}
.y277{bottom:812.172150px;}
.y48{bottom:813.866850px;}
.yca{bottom:813.867000px;}
.y238{bottom:819.768300px;}
.y206{bottom:819.770700px;}
.y25{bottom:820.054500px;}
.y276{bottom:827.172150px;}
.y4{bottom:828.171450px;}
.y117{bottom:829.864650px;}
.y138{bottom:830.317800px;}
.y47{bottom:834.116850px;}
.y6f{bottom:834.117000px;}
.y237{bottom:834.768300px;}
.y205{bottom:834.770700px;}
.y24{bottom:841.054500px;}
.y236{bottom:849.768300px;}
.y204{bottom:849.770700px;}
.y116{bottom:850.114650px;}
.y46{bottom:854.366850px;}
.y6e{bottom:854.367000px;}
.y137{bottom:854.820000px;}
.y235{bottom:864.768300px;}
.y267{bottom:864.770700px;}
.y3{bottom:866.179500px;}
.y23{bottom:868.054500px;}
.y115{bottom:870.364650px;}
.y203{bottom:872.366850px;}
.y45{bottom:874.616850px;}
.y6d{bottom:874.617000px;}
.y234{bottom:879.768300px;}
.y266{bottom:879.770700px;}
.y202{bottom:887.366850px;}
.y22{bottom:889.054500px;}
.y114{bottom:890.614650px;}
.y44{bottom:894.866850px;}
.y6c{bottom:894.867000px;}
.y136{bottom:896.329350px;}
.y2{bottom:902.179500px;}
.y233{bottom:902.365050px;}
.y201{bottom:902.366850px;}
.y21{bottom:910.054500px;}
.y43{bottom:915.116850px;}
.y6b{bottom:915.117000px;}
.y232{bottom:917.365050px;}
.y200{bottom:917.366850px;}
.y42{bottom:966.861000px;}
.h11{height:23.768550px;}
.h13{height:32.256000px;}
.hf{height:34.416000px;}
.h21{height:36.210000px;}
.h1a{height:36.288000px;}
.h12{height:36.567000px;}
.h16{height:37.632000px;}
.he{height:39.172571px;}
.h6{height:40.470000px;}
.h7{height:40.869000px;}
.h20{height:40.932600px;}
.h3{height:43.008000px;}
.h8{height:43.664850px;}
.h19{height:43.989258px;}
.hd{height:45.171000px;}
.h1c{height:45.174600px;}
.hb{height:46.860000px;}
.h14{height:48.261150px;}
.h9{height:49.896000px;}
.h15{height:51.414000px;}
.h10{height:51.543383px;}
.h1f{height:55.376953px;}
.h1b{height:61.788000px;}
.hc{height:63.655429px;}
.h5{height:63.900000px;}
.ha{height:73.448571px;}
.h4{height:93.720000px;}
.h1e{height:99.171000px;}
.h1d{height:99.171600px;}
.h17{height:722.835000px;}
.h18{height:723.000000px;}
.h2{height:1020.450000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.w4{width:1020.450000px;}
.w2{width:1020.472500px;}
.w3{width:1020.750000px;}
.x0{left:0.000000px;}
.xb{left:14.997660px;}
.xf{left:41.903850px;}
.x10{left:72.283650px;}
.x23{left:73.346400px;}
.x21{left:74.409300px;}
.x18{left:75.472200px;}
.x1c{left:81.537300px;}
.x3{left:85.039500px;}
.x11{left:88.473030px;}
.x27{left:102.047445px;}
.x1{left:106.299000px;}
.x14{left:108.045150px;}
.x9{left:110.551950px;}
.x25{left:123.307080px;}
.xc{left:131.813550px;}
.x15{left:139.937100px;}
.x1f{left:228.820050px;}
.x24{left:257.584500px;}
.x1e{left:293.795100px;}
.x16{left:308.543100px;}
.x5{left:345.280500px;}
.xa{left:360.930000px;}
.x29{left:363.548880px;}
.x1d{left:368.868300px;}
.x13{left:378.563730px;}
.x28{left:380.557530px;}
.x6{left:384.220200px;}
.x26{left:401.817555px;}
.x19{left:403.726500px;}
.x4{left:405.003000px;}
.x1a{left:411.531000px;}
.x12{left:428.795580px;}
.x1b{left:430.299300px;}
.x7{left:440.327250px;}
.x8{left:469.352400px;}
.x2{left:680.314500px;}
.xe{left:780.235500px;}
.x22{left:902.410650px;}
.x20{left:903.473550px;}
.x17{left:904.535100px;}
.xd{left:966.861000px;}
@media print{
.v3{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.200000pt;}
.v4{vertical-align:16.800000pt;}
.v5{vertical-align:22.666667pt;}
.v2{vertical-align:24.533333pt;}
.v6{vertical-align:48.000533pt;}
.lsd{letter-spacing:-0.560000pt;}
.lse{letter-spacing:-0.168000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.000160pt;}
.ls67{letter-spacing:0.000427pt;}
.ls83{letter-spacing:0.000480pt;}
.ls5c{letter-spacing:0.000587pt;}
.ls54{letter-spacing:0.000640pt;}
.ls31{letter-spacing:0.000693pt;}
.ls19{letter-spacing:0.000907pt;}
.ls9a{letter-spacing:0.001173pt;}
.ls87{letter-spacing:0.001440pt;}
.ls25{letter-spacing:0.008640pt;}
.ls2a{letter-spacing:0.010240pt;}
.ls51{letter-spacing:0.033013pt;}
.ls1a{letter-spacing:0.036907pt;}
.ls36{letter-spacing:0.045333pt;}
.lsc{letter-spacing:0.056000pt;}
.ls37{letter-spacing:0.060107pt;}
.ls2f{letter-spacing:0.090667pt;}
.ls4b{letter-spacing:0.091360pt;}
.ls2b{letter-spacing:0.112000pt;}
.ls3c{letter-spacing:0.133013pt;}
.ls3b{letter-spacing:0.136000pt;}
.lsb{letter-spacing:0.168000pt;}
.ls53{letter-spacing:0.181333pt;}
.ls1{letter-spacing:0.202667pt;}
.ls7b{letter-spacing:0.203840pt;}
.ls0{letter-spacing:0.213333pt;}
.ls5f{letter-spacing:0.222187pt;}
.ls23{letter-spacing:0.224000pt;}
.ls4c{letter-spacing:0.226667pt;}
.ls4d{letter-spacing:0.228853pt;}
.ls6c{letter-spacing:0.231893pt;}
.ls6d{letter-spacing:0.232907pt;}
.ls6f{letter-spacing:0.233013pt;}
.ls6e{letter-spacing:0.234560pt;}
.ls8a{letter-spacing:0.243413pt;}
.ls88{letter-spacing:0.243680pt;}
.ls89{letter-spacing:0.245013pt;}
.ls52{letter-spacing:0.272000pt;}
.ls24{letter-spacing:0.280000pt;}
.ls86{letter-spacing:0.292160pt;}
.ls35{letter-spacing:0.293440pt;}
.ls1e{letter-spacing:0.295573pt;}
.ls74{letter-spacing:0.297440pt;}
.ls55{letter-spacing:0.317333pt;}
.ls27{letter-spacing:0.336000pt;}
.ls11{letter-spacing:0.363413pt;}
.ls5{letter-spacing:0.392000pt;}
.ls7{letter-spacing:0.408000pt;}
.ls82{letter-spacing:0.439253pt;}
.ls20{letter-spacing:0.446773pt;}
.ls22{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.453333pt;}
.ls9f{letter-spacing:0.469920pt;}
.lsa0{letter-spacing:0.470507pt;}
.ls3d{letter-spacing:0.491360pt;}
.ls3e{letter-spacing:0.498667pt;}
.ls78{letter-spacing:0.501920pt;}
.ls96{letter-spacing:0.502773pt;}
.ls79{letter-spacing:0.503840pt;}
.ls28{letter-spacing:0.504000pt;}
.ls33{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.557333pt;}
.ls34{letter-spacing:0.557973pt;}
.lsf{letter-spacing:0.560000pt;}
.ls43{letter-spacing:0.566347pt;}
.ls56{letter-spacing:0.589333pt;}
.lsa3{letter-spacing:0.599093pt;}
.ls84{letter-spacing:0.603360pt;}
.ls85{letter-spacing:0.603840pt;}
.ls12{letter-spacing:0.616000pt;}
.ls39{letter-spacing:0.633013pt;}
.ls38{letter-spacing:0.634667pt;}
.ls66{letter-spacing:0.636000pt;}
.ls6{letter-spacing:0.672000pt;}
.ls64{letter-spacing:0.672853pt;}
.ls65{letter-spacing:0.673600pt;}
.ls2d{letter-spacing:0.680000pt;}
.ls2e{letter-spacing:0.689227pt;}
.ls5d{letter-spacing:0.699680pt;}
.ls32{letter-spacing:0.701760pt;}
.ls95{letter-spacing:0.716320pt;}
.ls48{letter-spacing:0.724640pt;}
.ls47{letter-spacing:0.725333pt;}
.lsa5{letter-spacing:0.767893pt;}
.lsa4{letter-spacing:0.768320pt;}
.lsa6{letter-spacing:0.770507pt;}
.ls44{letter-spacing:0.770667pt;}
.ls73{letter-spacing:0.778507pt;}
.ls72{letter-spacing:0.781440pt;}
.ls21{letter-spacing:0.784000pt;}
.ls46{letter-spacing:0.814240pt;}
.ls3a{letter-spacing:0.816000pt;}
.ls1d{letter-spacing:0.840000pt;}
.ls8f{letter-spacing:0.851147pt;}
.ls8e{letter-spacing:0.851893pt;}
.ls8d{letter-spacing:0.852747pt;}
.ls58{letter-spacing:0.861333pt;}
.lsa2{letter-spacing:0.872587pt;}
.ls1b{letter-spacing:0.896000pt;}
.ls1c{letter-spacing:0.952000pt;}
.ls71{letter-spacing:0.997333pt;}
.ls8{letter-spacing:1.016427pt;}
.ls14{letter-spacing:1.120000pt;}
.ls9c{letter-spacing:1.130400pt;}
.ls9b{letter-spacing:1.130507pt;}
.ls7a{letter-spacing:1.130933pt;}
.ls57{letter-spacing:1.133333pt;}
.ls15{letter-spacing:1.176000pt;}
.ls2{letter-spacing:1.216000pt;}
.ls61{letter-spacing:1.224000pt;}
.ls80{letter-spacing:1.224640pt;}
.ls18{letter-spacing:1.232000pt;}
.lsa1{letter-spacing:1.237173pt;}
.ls45{letter-spacing:1.269333pt;}
.ls59{letter-spacing:1.282240pt;}
.ls5a{letter-spacing:1.283253pt;}
.ls10{letter-spacing:1.288000pt;}
.ls60{letter-spacing:1.314667pt;}
.ls97{letter-spacing:1.340853pt;}
.ls68{letter-spacing:1.360000pt;}
.ls69{letter-spacing:1.367093pt;}
.ls99{letter-spacing:1.397600pt;}
.ls17{letter-spacing:1.400000pt;}
.ls98{letter-spacing:1.405333pt;}
.ls30{letter-spacing:1.450667pt;}
.ls13{letter-spacing:1.512000pt;}
.ls4f{letter-spacing:1.525920pt;}
.ls50{letter-spacing:1.526240pt;}
.ls4e{letter-spacing:1.541333pt;}
.lsa{letter-spacing:1.586667pt;}
.ls16{letter-spacing:1.624000pt;}
.ls2c{letter-spacing:1.680000pt;}
.ls63{letter-spacing:1.753813pt;}
.ls62{letter-spacing:1.768000pt;}
.ls3f{letter-spacing:1.858667pt;}
.ls40{letter-spacing:1.878827pt;}
.ls70{letter-spacing:1.904000pt;}
.ls8c{letter-spacing:1.924320pt;}
.ls8b{letter-spacing:1.925653pt;}
.lsa8{letter-spacing:1.949333pt;}
.ls76{letter-spacing:1.994667pt;}
.ls75{letter-spacing:1.998560pt;}
.ls77{letter-spacing:2.001333pt;}
.ls6b{letter-spacing:2.038080pt;}
.ls6a{letter-spacing:2.040000pt;}
.ls49{letter-spacing:2.085333pt;}
.ls4a{letter-spacing:2.101760pt;}
.lsa7{letter-spacing:2.346987pt;}
.ls41{letter-spacing:2.357333pt;}
.ls42{letter-spacing:2.373333pt;}
.ls91{letter-spacing:2.380853pt;}
.ls93{letter-spacing:2.381440pt;}
.ls94{letter-spacing:2.382507pt;}
.ls92{letter-spacing:2.382560pt;}
.ls90{letter-spacing:2.402667pt;}
.ls81{letter-spacing:2.448000pt;}
.ls9d{letter-spacing:2.765333pt;}
.ls9e{letter-spacing:2.778827pt;}
.ls7e{letter-spacing:3.082667pt;}
.ls7d{letter-spacing:3.096427pt;}
.ls7f{letter-spacing:3.097600pt;}
.ls5b{letter-spacing:3.762667pt;}
.ls7c{letter-spacing:5.694187pt;}
.ls9{letter-spacing:12.240000pt;}
.ls26{letter-spacing:77.050133pt;}
.ls29{letter-spacing:83.922133pt;}
.ws81{word-spacing:-34.272000pt;}
.ws6c{word-spacing:-33.768000pt;}
.ws6e{word-spacing:-27.336000pt;}
.ws59{word-spacing:-14.000000pt;}
.ws6d{word-spacing:-13.664000pt;}
.wsc1{word-spacing:-13.509333pt;}
.ws3c{word-spacing:-12.880000pt;}
.wsf4{word-spacing:-12.784000pt;}
.wsf1{word-spacing:-12.376000pt;}
.ws9c{word-spacing:-12.285333pt;}
.wsbe{word-spacing:-12.194667pt;}
.wsf3{word-spacing:-11.786667pt;}
.wsc2{word-spacing:-11.650667pt;}
.wsf2{word-spacing:-11.288000pt;}
.ws9d{word-spacing:-11.242667pt;}
.ws9e{word-spacing:-11.152000pt;}
.ws9a{word-spacing:-11.106667pt;}
.wsf0{word-spacing:-11.016000pt;}
.wsc0{word-spacing:-10.925333pt;}
.wsef{word-spacing:-10.880000pt;}
.wsbf{word-spacing:-10.744000pt;}
.wsbd{word-spacing:-10.653333pt;}
.ws9b{word-spacing:-10.472000pt;}
.ws99{word-spacing:-10.426667pt;}
.ws15{word-spacing:-8.533333pt;}
.ws21{word-spacing:-8.372000pt;}
.ws0{word-spacing:-7.574667pt;}
.ws16{word-spacing:-6.777333pt;}
.wsea{word-spacing:-3.082667pt;}
.ws102{word-spacing:-2.765333pt;}
.wsfc{word-spacing:-2.402667pt;}
.ws106{word-spacing:-2.357333pt;}
.wsb7{word-spacing:-2.085333pt;}
.wsdb{word-spacing:-2.040000pt;}
.wse3{word-spacing:-1.994667pt;}
.wsfa{word-spacing:-1.949333pt;}
.wsd5{word-spacing:-1.768000pt;}
.wsff{word-spacing:-1.405333pt;}
.wsfe{word-spacing:-1.360000pt;}
.wsc3{word-spacing:-1.269333pt;}
.wsed{word-spacing:-1.224000pt;}
.wse8{word-spacing:-1.133333pt;}
.ws52{word-spacing:-1.120000pt;}
.wsfb{word-spacing:-0.861333pt;}
.wse0{word-spacing:-0.770667pt;}
.wsfd{word-spacing:-0.725333pt;}
.wsb1{word-spacing:-0.589333pt;}
.wsa5{word-spacing:-0.544000pt;}
.wse7{word-spacing:-0.498667pt;}
.wsf5{word-spacing:-0.453333pt;}
.wse1{word-spacing:-0.317333pt;}
.wsf7{word-spacing:-0.272000pt;}
.wsb8{word-spacing:-0.226667pt;}
.wsa9{word-spacing:-0.136000pt;}
.wsa7{word-spacing:-0.045333pt;}
.ws1{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.045333pt;}
.ws4d{word-spacing:0.056000pt;}
.ws1b{word-spacing:0.090667pt;}
.ws43{word-spacing:0.112000pt;}
.wsdd{word-spacing:0.136000pt;}
.ws2{word-spacing:0.152000pt;}
.ws61{word-spacing:0.168000pt;}
.ws6f{word-spacing:0.224000pt;}
.ws1d{word-spacing:0.226667pt;}
.wsdf{word-spacing:0.272000pt;}
.ws5a{word-spacing:0.280000pt;}
.wsc8{word-spacing:0.317333pt;}
.ws37{word-spacing:0.336000pt;}
.wsba{word-spacing:0.362667pt;}
.ws14{word-spacing:0.405333pt;}
.ws76{word-spacing:0.408000pt;}
.ws87{word-spacing:0.448000pt;}
.ws77{word-spacing:0.453333pt;}
.ws20{word-spacing:0.498667pt;}
.ws6b{word-spacing:0.504000pt;}
.wsb4{word-spacing:0.544000pt;}
.ws41{word-spacing:0.616000pt;}
.ws63{word-spacing:0.672000pt;}
.wse6{word-spacing:0.680000pt;}
.ws75{word-spacing:0.725333pt;}
.ws105{word-spacing:0.770667pt;}
.ws5e{word-spacing:0.784000pt;}
.wsd4{word-spacing:0.816000pt;}
.wsc7{word-spacing:0.861333pt;}
.ws88{word-spacing:0.896000pt;}
.ws100{word-spacing:0.906667pt;}
.ws26{word-spacing:0.952000pt;}
.wse9{word-spacing:0.997333pt;}
.ws23{word-spacing:1.008000pt;}
.ws48{word-spacing:1.042667pt;}
.ws2c{word-spacing:1.064000pt;}
.wsf6{word-spacing:1.088000pt;}
.ws34{word-spacing:1.120000pt;}
.ws25{word-spacing:1.176000pt;}
.wsae{word-spacing:1.178667pt;}
.ws9f{word-spacing:1.224000pt;}
.ws22{word-spacing:1.232000pt;}
.ws29{word-spacing:1.288000pt;}
.ws1f{word-spacing:1.314667pt;}
.ws4{word-spacing:1.317333pt;}
.ws2e{word-spacing:1.344000pt;}
.wscd{word-spacing:1.360000pt;}
.ws2f{word-spacing:1.400000pt;}
.wsaa{word-spacing:1.405333pt;}
.wsd{word-spacing:1.418667pt;}
.ws65{word-spacing:1.456000pt;}
.wse{word-spacing:1.469333pt;}
.wscf{word-spacing:1.496000pt;}
.ws71{word-spacing:1.512000pt;}
.ws10{word-spacing:1.520000pt;}
.ws108{word-spacing:1.541333pt;}
.ws4e{word-spacing:1.568000pt;}
.wse2{word-spacing:1.586667pt;}
.ws36{word-spacing:1.624000pt;}
.wscc{word-spacing:1.677333pt;}
.wsac{word-spacing:1.722667pt;}
.ws40{word-spacing:1.736000pt;}
.wsd9{word-spacing:1.768000pt;}
.ws79{word-spacing:1.792000pt;}
.ws47{word-spacing:1.813333pt;}
.ws39{word-spacing:1.904000pt;}
.ws4a{word-spacing:1.960000pt;}
.ws104{word-spacing:1.994667pt;}
.ws2b{word-spacing:2.016000pt;}
.wsb{word-spacing:2.026667pt;}
.ws46{word-spacing:2.040000pt;}
.ws83{word-spacing:2.072000pt;}
.ws56{word-spacing:2.128000pt;}
.ws97{word-spacing:2.184000pt;}
.ws58{word-spacing:2.240000pt;}
.wsab{word-spacing:2.266667pt;}
.ws5d{word-spacing:2.296000pt;}
.wsd0{word-spacing:2.312000pt;}
.ws51{word-spacing:2.408000pt;}
.ws6{word-spacing:2.432000pt;}
.ws1a{word-spacing:2.464000pt;}
.ws44{word-spacing:2.520000pt;}
.ws69{word-spacing:2.576000pt;}
.wsa0{word-spacing:2.584000pt;}
.wsa1{word-spacing:2.629333pt;}
.ws8c{word-spacing:2.632000pt;}
.ws72{word-spacing:2.688000pt;}
.wsd8{word-spacing:2.720000pt;}
.ws19{word-spacing:2.744000pt;}
.ws35{word-spacing:2.800000pt;}
.wsca{word-spacing:2.810667pt;}
.ws2d{word-spacing:2.856000pt;}
.wsda{word-spacing:2.901333pt;}
.ws5c{word-spacing:2.912000pt;}
.ws73{word-spacing:2.968000pt;}
.ws27{word-spacing:3.024000pt;}
.wsa{word-spacing:3.040000pt;}
.ws60{word-spacing:3.080000pt;}
.wsb2{word-spacing:3.082667pt;}
.ws78{word-spacing:3.136000pt;}
.ws9{word-spacing:3.141333pt;}
.ws32{word-spacing:3.192000pt;}
.wsbc{word-spacing:3.218667pt;}
.ws7a{word-spacing:3.248000pt;}
.ws33{word-spacing:3.304000pt;}
.ws6a{word-spacing:3.360000pt;}
.ws3b{word-spacing:3.400000pt;}
.ws85{word-spacing:3.416000pt;}
.wse5{word-spacing:3.445333pt;}
.ws7b{word-spacing:3.472000pt;}
.wsd1{word-spacing:3.490667pt;}
.ws7{word-spacing:3.496000pt;}
.ws3a{word-spacing:3.528000pt;}
.wsd2{word-spacing:3.536000pt;}
.ws13{word-spacing:3.546667pt;}
.ws8b{word-spacing:3.584000pt;}
.ws3{word-spacing:3.597333pt;}
.wsd7{word-spacing:3.626667pt;}
.ws4c{word-spacing:3.640000pt;}
.ws28{word-spacing:3.696000pt;}
.wsa4{word-spacing:3.717333pt;}
.ws67{word-spacing:3.752000pt;}
.wsb3{word-spacing:3.762667pt;}
.ws62{word-spacing:3.808000pt;}
.ws103{word-spacing:3.853333pt;}
.ws2a{word-spacing:3.864000pt;}
.ws11{word-spacing:3.901333pt;}
.ws5f{word-spacing:3.920000pt;}
.wsbb{word-spacing:3.944000pt;}
.ws42{word-spacing:3.976000pt;}
.ws24{word-spacing:4.032000pt;}
.wsc6{word-spacing:4.034667pt;}
.wsa8{word-spacing:4.080000pt;}
.ws30{word-spacing:4.088000pt;}
.ws8{word-spacing:4.154667pt;}
.wsa3{word-spacing:4.170667pt;}
.wsec{word-spacing:4.216000pt;}
.ws49{word-spacing:4.256000pt;}
.ws8d{word-spacing:4.312000pt;}
.wsee{word-spacing:4.352000pt;}
.ws93{word-spacing:4.368000pt;}
.wsa6{word-spacing:4.397333pt;}
.ws64{word-spacing:4.424000pt;}
.wsf8{word-spacing:4.442667pt;}
.ws66{word-spacing:4.480000pt;}
.ws70{word-spacing:4.536000pt;}
.wscb{word-spacing:4.578667pt;}
.ws45{word-spacing:4.592000pt;}
.wsc9{word-spacing:4.624000pt;}
.ws84{word-spacing:4.648000pt;}
.wsa2{word-spacing:4.714667pt;}
.ws82{word-spacing:4.760000pt;}
.ws38{word-spacing:4.816000pt;}
.ws68{word-spacing:4.872000pt;}
.ws53{word-spacing:4.928000pt;}
.wsaf{word-spacing:4.941333pt;}
.ws98{word-spacing:4.984000pt;}
.ws109{word-spacing:4.986667pt;}
.ws3e{word-spacing:5.040000pt;}
.ws5{word-spacing:5.066667pt;}
.wsce{word-spacing:5.077333pt;}
.ws3d{word-spacing:5.096000pt;}
.wsc5{word-spacing:5.122667pt;}
.ws96{word-spacing:5.152000pt;}
.wsb5{word-spacing:5.168000pt;}
.ws4b{word-spacing:5.208000pt;}
.ws1c{word-spacing:5.213333pt;}
.wsf{word-spacing:5.218667pt;}
.ws95{word-spacing:5.320000pt;}
.ws55{word-spacing:5.376000pt;}
.ws54{word-spacing:5.432000pt;}
.ws94{word-spacing:5.544000pt;}
.ws74{word-spacing:5.656000pt;}
.ws57{word-spacing:5.712000pt;}
.ws5b{word-spacing:5.768000pt;}
.wsc{word-spacing:5.776000pt;}
.ws3f{word-spacing:5.824000pt;}
.ws12{word-spacing:5.826667pt;}
.wsd6{word-spacing:5.848000pt;}
.ws4f{word-spacing:5.880000pt;}
.ws50{word-spacing:5.936000pt;}
.ws31{word-spacing:5.992000pt;}
.wsb9{word-spacing:6.256000pt;}
.wsad{word-spacing:6.301333pt;}
.wsf9{word-spacing:6.392000pt;}
.ws18{word-spacing:6.440000pt;}
.wse4{word-spacing:6.664000pt;}
.wsdc{word-spacing:6.800000pt;}
.wsde{word-spacing:6.845333pt;}
.wsb6{word-spacing:7.026667pt;}
.ws107{word-spacing:7.842667pt;}
.wsb0{word-spacing:7.933333pt;}
.wsd3{word-spacing:8.069333pt;}
.ws101{word-spacing:9.293333pt;}
.wseb{word-spacing:10.336000pt;}
.wsc4{word-spacing:12.512000pt;}
.ws17{word-spacing:37.520000pt;}
.ws89{word-spacing:53.872000pt;}
.ws8a{word-spacing:75.600000pt;}
.ws86{word-spacing:81.592000pt;}
.ws90{word-spacing:104.432213pt;}
.ws80{word-spacing:138.024107pt;}
.ws7f{word-spacing:154.664533pt;}
.ws91{word-spacing:168.261547pt;}
.ws7c{word-spacing:226.867733pt;}
.ws7d{word-spacing:245.801813pt;}
.ws92{word-spacing:330.033067pt;}
.ws8e{word-spacing:332.480853pt;}
.ws7e{word-spacing:527.739733pt;}
.ws8f{word-spacing:590.801067pt;}
._1d{margin-left:-3.763673pt;}
._6{margin-left:-1.793525pt;}
._0{margin-left:-0.902930pt;}
._8{width:1.573867pt;}
._11{width:3.085867pt;}
._7{width:4.036800pt;}
._1c{width:5.846987pt;}
._5{width:6.981651pt;}
._9{width:8.839733pt;}
._c{width:10.199733pt;}
._3{width:11.520000pt;}
._1e{width:13.544533pt;}
._f{width:27.515733pt;}
._a{width:31.595733pt;}
._1{width:37.518768pt;}
._2{width:38.528000pt;}
._d{width:40.864000pt;}
._19{width:59.282667pt;}
._12{width:88.413920pt;}
._10{width:143.572053pt;}
._17{width:153.382880pt;}
._14{width:166.275200pt;}
._1b{width:173.807360pt;}
._13{width:179.099200pt;}
._4{width:182.186667pt;}
._b{width:275.462880pt;}
._e{width:276.582880pt;}
._18{width:375.032533pt;}
._16{width:593.938613pt;}
._1a{width:620.091733pt;}
._15{width:634.841547pt;}
.fs9{font-size:29.466667pt;}
.fsb{font-size:32.000000pt;}
.fs4{font-size:32.933333pt;}
.fsc{font-size:36.400000pt;}
.fse{font-size:37.333333pt;}
.fs6{font-size:41.600000pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.247867pt;}
.yf8{bottom:37.796000pt;}
.y171{bottom:61.953707pt;}
.y83{bottom:64.252000pt;}
.y6a{bottom:64.252133pt;}
.ya2{bottom:64.760267pt;}
.y1b8{bottom:66.791467pt;}
.yf6{bottom:67.622133pt;}
.yc9{bottom:67.651200pt;}
.y19f{bottom:68.568893pt;}
.y1b1{bottom:68.775867pt;}
.y265{bottom:74.665333pt;}
.y1dc{bottom:74.700800pt;}
.yba{bottom:75.673733pt;}
.ydd{bottom:76.262533pt;}
.y82{bottom:78.252000pt;}
.y135{bottom:78.802133pt;}
.y159{bottom:80.942133pt;}
.y1ff{bottom:81.451867pt;}
.y69{bottom:81.652133pt;}
.y170{bottom:82.484907pt;}
.ya1{bottom:82.760267pt;}
.yc8{bottom:83.920933pt;}
.yf5{bottom:84.210667pt;}
.y41{bottom:84.299067pt;}
.y1b7{bottom:84.791467pt;}
.y1b0{bottom:86.775867pt;}
.y19e{bottom:87.210493pt;}
.y231{bottom:87.828933pt;}
.y264{bottom:87.998667pt;}
.y1db{bottom:88.034133pt;}
.yb9{bottom:93.673733pt;}
.y1fe{bottom:94.785200pt;}
.y81{bottom:95.652000pt;}
.y40{bottom:98.299067pt;}
.y158{bottom:98.942133pt;}
.ya0{bottom:100.760267pt;}
.y230{bottom:101.162267pt;}
.yc7{bottom:101.320933pt;}
.y263{bottom:101.332000pt;}
.y1b6{bottom:102.791467pt;}
.y112{bottom:103.890667pt;}
.y134{bottom:104.256800pt;}
.y1af{bottom:104.775867pt;}
.y16d{bottom:105.709040pt;}
.y16f{bottom:105.709440pt;}
.yf3{bottom:106.887733pt;}
.y1fd{bottom:108.118533pt;}
.y1da{bottom:108.119600pt;}
.y19b{bottom:110.434627pt;}
.y19d{bottom:110.435027pt;}
.yb8{bottom:111.673733pt;}
.y80{bottom:111.921333pt;}
.y22f{bottom:114.495600pt;}
.y262{bottom:114.665333pt;}
.y3f{bottom:116.078267pt;}
.y157{bottom:116.942133pt;}
.yc6{bottom:117.590667pt;}
.y111{bottom:118.334267pt;}
.y9f{bottom:118.760267pt;}
.y68{bottom:120.791467pt;}
.y1d9{bottom:121.452933pt;}
.y133{bottom:122.256800pt;}
.y186{bottom:127.100000pt;}
.y22e{bottom:127.828933pt;}
.y261{bottom:127.998667pt;}
.y1fc{bottom:128.204000pt;}
.y16e{bottom:128.933973pt;}
.y7f{bottom:129.321333pt;}
.yf4{bottom:129.564800pt;}
.yb7{bottom:129.673733pt;}
.y3e{bottom:130.078267pt;}
.y1a0{bottom:130.880000pt;}
.y1ae{bottom:131.657067pt;}
.y19c{bottom:133.659560pt;}
.y1d8{bottom:134.786267pt;}
.y156{bottom:134.942133pt;}
.yc5{bottom:134.990667pt;}
.y9e{bottom:136.760267pt;}
.y67{bottom:138.791467pt;}
.y260{bottom:141.332000pt;}
.y1fb{bottom:141.537333pt;}
.y110{bottom:142.014000pt;}
.y131{bottom:144.035200pt;}
.y3d{bottom:147.478267pt;}
.y22d{bottom:147.914400pt;}
.y1d7{bottom:148.119600pt;}
.y1ad{bottom:149.657067pt;}
.y16c{bottom:152.158507pt;}
.yf2{bottom:152.241867pt;}
.y155{bottom:152.942133pt;}
.y1fa{bottom:154.870667pt;}
.y185{bottom:155.778933pt;}
.yb6{bottom:156.555467pt;}
.y66{bottom:156.791467pt;}
.y19a{bottom:156.884093pt;}
.y22c{bottom:161.247733pt;}
.y25f{bottom:161.417467pt;}
.y10f{bottom:162.801467pt;}
.y10d{bottom:162.802000pt;}
.y9d{bottom:163.642000pt;}
.y3c{bottom:163.748000pt;}
.y132{bottom:164.036000pt;}
.y7e{bottom:164.561600pt;}
.y1ac{bottom:167.657067pt;}
.y1f9{bottom:168.204000pt;}
.y1d6{bottom:168.205067pt;}
.yc4{bottom:169.217067pt;}
.y154{bottom:170.942133pt;}
.yb5{bottom:174.555467pt;}
.y22b{bottom:174.581067pt;}
.ye8{bottom:174.614667pt;}
.y25e{bottom:174.750800pt;}
.y65{bottom:174.791467pt;}
.yef{bottom:174.918400pt;}
.yf1{bottom:174.918933pt;}
.y16a{bottom:175.383040pt;}
.y3b{bottom:177.748000pt;}
.y183{bottom:179.003467pt;}
.y198{bottom:180.108627pt;}
.y1f8{bottom:181.537333pt;}
.y1d5{bottom:181.538400pt;}
.y9c{bottom:181.642000pt;}
.y7d{bottom:182.561600pt;}
.y10e{bottom:183.588933pt;}
.y1ab{bottom:185.657067pt;}
.yc3{bottom:187.217067pt;}
.y22a{bottom:187.914400pt;}
.y25d{bottom:188.084133pt;}
.y153{bottom:188.942133pt;}
.yb4{bottom:192.555467pt;}
.y64{bottom:192.791467pt;}
.y1f7{bottom:194.870667pt;}
.y1d4{bottom:194.871733pt;}
.y3a{bottom:195.148000pt;}
.yf0{bottom:197.596000pt;}
.y16b{bottom:198.607573pt;}
.y7c{bottom:200.561600pt;}
.y229{bottom:201.247733pt;}
.y25c{bottom:201.417467pt;}
.y184{bottom:202.228000pt;}
.y199{bottom:203.333160pt;}
.y1aa{bottom:203.657067pt;}
.y10c{bottom:204.376533pt;}
.yc2{bottom:205.217067pt;}
.y1f{bottom:205.433600pt;}
.y152{bottom:206.942133pt;}
.y130{bottom:209.825333pt;}
.yb3{bottom:210.555467pt;}
.y63{bottom:210.791467pt;}
.y39{bottom:211.417333pt;}
.y25b{bottom:214.750800pt;}
.y1f6{bottom:214.956133pt;}
.y1d3{bottom:214.957200pt;}
.y7b{bottom:218.561600pt;}
.yee{bottom:220.273067pt;}
.y1e{bottom:220.766933pt;}
.y228{bottom:221.333200pt;}
.y1a9{bottom:221.657067pt;}
.y169{bottom:221.832507pt;}
.y9b{bottom:222.319067pt;}
.yc1{bottom:223.217067pt;}
.y10a{bottom:225.164000pt;}
.y38{bottom:225.417333pt;}
.y182{bottom:225.452933pt;}
.y197{bottom:226.558093pt;}
.y25a{bottom:228.084133pt;}
.y1f5{bottom:228.289467pt;}
.y1d2{bottom:228.290533pt;}
.yb2{bottom:228.555467pt;}
.y1b5{bottom:228.791467pt;}
.y151{bottom:233.823867pt;}
.y227{bottom:234.666533pt;}
.y1d{bottom:236.100267pt;}
.y7a{bottom:236.561600pt;}
.y62{bottom:237.673733pt;}
.y1a8{bottom:239.657067pt;}
.y9a{bottom:240.319067pt;}
.yc0{bottom:241.217067pt;}
.y1f4{bottom:241.622800pt;}
.y1d1{bottom:241.623867pt;}
.y37{bottom:242.817333pt;}
.yec{bottom:242.950133pt;}
.y167{bottom:245.057040pt;}
.y10b{bottom:245.951467pt;}
.yb1{bottom:246.555467pt;}
.y1b4{bottom:246.791467pt;}
.y226{bottom:247.999867pt;}
.y12f{bottom:248.067467pt;}
.y259{bottom:248.170133pt;}
.y180{bottom:248.677467pt;}
.y194{bottom:249.782227pt;}
.y196{bottom:249.782627pt;}
.y1c{bottom:251.433600pt;}
.y150{bottom:251.823867pt;}
.y79{bottom:254.561600pt;}
.y1f3{bottom:254.956133pt;}
.y1d0{bottom:254.957200pt;}
.y61{bottom:255.673733pt;}
.y1a7{bottom:257.657067pt;}
.y99{bottom:258.319067pt;}
.y225{bottom:261.333200pt;}
.y258{bottom:261.503467pt;}
.yb0{bottom:264.555467pt;}
.y1b3{bottom:264.791467pt;}
.yed{bottom:265.627200pt;}
.y12e{bottom:266.067467pt;}
.y109{bottom:266.738533pt;}
.y1b{bottom:266.766933pt;}
.ybf{bottom:268.098800pt;}
.y168{bottom:268.281573pt;}
.y1cf{bottom:268.290533pt;}
.y14f{bottom:269.823867pt;}
.y181{bottom:271.902000pt;}
.y78{bottom:272.561600pt;}
.y195{bottom:273.007160pt;}
.y60{bottom:273.673733pt;}
.y224{bottom:274.666533pt;}
.y257{bottom:274.836800pt;}
.y1f2{bottom:275.041600pt;}
.y1a6{bottom:275.657067pt;}
.y98{bottom:276.319067pt;}
.y1a{bottom:282.100267pt;}
.yaf{bottom:282.555467pt;}
.y12d{bottom:284.067467pt;}
.y108{bottom:287.526000pt;}
.y106{bottom:287.526533pt;}
.y14e{bottom:287.823867pt;}
.yeb{bottom:288.304267pt;}
.y1f1{bottom:288.374933pt;}
.y1ce{bottom:288.376000pt;}
.y77{bottom:290.561600pt;}
.y166{bottom:291.506507pt;}
.y5f{bottom:291.673733pt;}
.y1a5{bottom:293.657067pt;}
.y36{bottom:293.829333pt;}
.y97{bottom:294.319067pt;}
.y223{bottom:294.752000pt;}
.y256{bottom:294.922267pt;}
.y17f{bottom:295.126933pt;}
.y193{bottom:296.231693pt;}
.y19{bottom:297.433600pt;}
.ybe{bottom:297.437333pt;}
.yae{bottom:300.555467pt;}
.y1cd{bottom:301.709333pt;}
.y12c{bottom:302.067467pt;}
.y14d{bottom:305.823867pt;}
.y222{bottom:308.085333pt;}
.y255{bottom:308.255600pt;}
.y107{bottom:308.313467pt;}
.y1f0{bottom:308.460400pt;}
.y76{bottom:308.561600pt;}
.y5e{bottom:309.673733pt;}
.ye9{bottom:310.981333pt;}
.y1a4{bottom:311.657067pt;}
.y35{bottom:311.829333pt;}
.y96{bottom:312.319067pt;}
.y18{bottom:312.766933pt;}
.y163{bottom:314.730640pt;}
.y165{bottom:314.731040pt;}
.y1cc{bottom:315.042667pt;}
.y17c{bottom:318.351067pt;}
.y17e{bottom:318.351467pt;}
.yad{bottom:318.555467pt;}
.y191{bottom:319.456227pt;}
.y221{bottom:321.418667pt;}
.y254{bottom:321.588933pt;}
.yde{bottom:321.693333pt;}
.y1ef{bottom:321.793733pt;}
.yf9{bottom:322.620000pt;}
.y14c{bottom:323.823867pt;}
.y12a{bottom:323.845867pt;}
.y75{bottom:326.561600pt;}
.y5d{bottom:327.673733pt;}
.y1cb{bottom:328.376000pt;}
.y105{bottom:329.101467pt;}
.y1a3{bottom:329.657067pt;}
.y34{bottom:329.829333pt;}
.y95{bottom:330.319067pt;}
.yea{bottom:333.658400pt;}
.y220{bottom:334.752000pt;}
.y253{bottom:334.922267pt;}
.y1ee{bottom:335.127067pt;}
.yac{bottom:336.555467pt;}
.y164{bottom:337.955573pt;}
.y12b{bottom:338.513333pt;}
.y17d{bottom:341.576000pt;}
.y14b{bottom:341.823867pt;}
.y192{bottom:342.680760pt;}
.y74{bottom:344.561600pt;}
.y5c{bottom:345.673733pt;}
.y1a2{bottom:347.657067pt;}
.y33{bottom:347.829333pt;}
.y21f{bottom:348.085333pt;}
.y94{bottom:348.319067pt;}
.y1ed{bottom:348.460400pt;}
.y1ca{bottom:348.461467pt;}
.y103{bottom:349.888933pt;}
.yab{bottom:354.555467pt;}
.y252{bottom:355.007733pt;}
.ydc{bottom:357.003467pt;}
.y17{bottom:358.336267pt;}
.y14a{bottom:359.823867pt;}
.ye7{bottom:360.115867pt;}
.y162{bottom:361.180107pt;}
.y1c9{bottom:361.794800pt;}
.y73{bottom:362.561600pt;}
.y5b{bottom:363.673733pt;}
.y17b{bottom:364.800533pt;}
.y190{bottom:365.904627pt;}
.y93{bottom:366.319067pt;}
.ye5{bottom:367.677333pt;}
.y21e{bottom:368.171333pt;}
.y251{bottom:368.341067pt;}
.y1ec{bottom:368.545867pt;}
.y104{bottom:370.676400pt;}
.yaa{bottom:372.555467pt;}
.y16{bottom:373.669600pt;}
.ydb{bottom:374.771733pt;}
.y1c8{bottom:375.128133pt;}
.y149{bottom:377.823867pt;}
.y32{bottom:378.490267pt;}
.ye4{bottom:379.010667pt;}
.y21d{bottom:381.504667pt;}
.y5a{bottom:381.673733pt;}
.y250{bottom:381.674400pt;}
.y1eb{bottom:381.879200pt;}
.y1a1{bottom:382.098667pt;}
.y129{bottom:382.969333pt;}
.y92{bottom:384.319067pt;}
.y160{bottom:384.404640pt;}
.y179{bottom:388.025067pt;}
.ye6{bottom:388.462267pt;}
.y15{bottom:389.002933pt;}
.y18e{bottom:389.129160pt;}
.ya9{bottom:390.555467pt;}
.y102{bottom:391.463467pt;}
.y21c{bottom:394.838000pt;}
.y24f{bottom:395.007733pt;}
.y1ea{bottom:395.212533pt;}
.y1c7{bottom:395.213600pt;}
.y59{bottom:399.673733pt;}
.y91{bottom:402.319067pt;}
.y72{bottom:403.238667pt;}
.y14{bottom:404.336267pt;}
.y148{bottom:404.706133pt;}
.y161{bottom:407.629173pt;}
.y21b{bottom:408.171333pt;}
.y24e{bottom:408.341067pt;}
.y1e9{bottom:408.545867pt;}
.y1c6{bottom:408.546933pt;}
.ya8{bottom:408.555467pt;}
.y17a{bottom:411.249600pt;}
.y100{bottom:412.250933pt;}
.y18f{bottom:412.353693pt;}
.y58{bottom:417.673733pt;}
.ye3{bottom:419.301733pt;}
.y13{bottom:419.669600pt;}
.y21a{bottom:421.504667pt;}
.y1e8{bottom:421.879200pt;}
.y1c5{bottom:421.880267pt;}
.y147{bottom:422.706133pt;}
.y128{bottom:424.097467pt;}
.ya7{bottom:426.555467pt;}
.yda{bottom:426.555600pt;}
.y90{bottom:427.878400pt;}
.y24d{bottom:428.426533pt;}
.y15f{bottom:430.854107pt;}
.y101{bottom:433.038400pt;}
.y178{bottom:434.474533pt;}
.y12{bottom:435.002933pt;}
.y275{bottom:435.008933pt;}
.y1e7{bottom:435.212533pt;}
.y1c4{bottom:435.213600pt;}
.y18d{bottom:435.578627pt;}
.y57{bottom:435.673733pt;}
.y146{bottom:440.706133pt;}
.y219{bottom:441.590133pt;}
.y24c{bottom:441.759867pt;}
.y127{bottom:442.097467pt;}
.y31{bottom:442.147067pt;}
.y15d{bottom:442.466667pt;}
.ya6{bottom:444.555467pt;}
.yd9{bottom:444.555600pt;}
.y8f{bottom:445.878400pt;}
.y18b{bottom:447.190667pt;}
.ye2{bottom:448.240267pt;}
.y274{bottom:448.342267pt;}
.y1c3{bottom:448.546933pt;}
.y11{bottom:450.336267pt;}
.y56{bottom:453.673733pt;}
.yff{bottom:453.825867pt;}
.y15e{bottom:454.078640pt;}
.y218{bottom:454.923467pt;}
.y24b{bottom:455.093200pt;}
.y1e6{bottom:455.298000pt;}
.y175{bottom:457.698667pt;}
.y177{bottom:457.699067pt;}
.y145{bottom:458.706133pt;}
.y18c{bottom:458.803160pt;}
.y126{bottom:460.097467pt;}
.y273{bottom:461.675600pt;}
.y30{bottom:462.373067pt;}
.ya5{bottom:462.555467pt;}
.yd8{bottom:462.555600pt;}
.y8e{bottom:463.878400pt;}
.y10{bottom:465.669600pt;}
.ye1{bottom:466.008000pt;}
.y217{bottom:468.256800pt;}
.y24a{bottom:468.426533pt;}
.y1e5{bottom:468.631333pt;}
.y1c2{bottom:468.632400pt;}
.y55{bottom:471.673733pt;}
.yfd{bottom:474.613333pt;}
.y144{bottom:476.706133pt;}
.y125{bottom:478.097467pt;}
.ya4{bottom:480.555467pt;}
.yd7{bottom:480.555600pt;}
.y176{bottom:480.923600pt;}
.yf{bottom:481.002933pt;}
.y216{bottom:481.590133pt;}
.y249{bottom:481.759867pt;}
.y272{bottom:481.761067pt;}
.y8d{bottom:481.878400pt;}
.y1e4{bottom:481.964667pt;}
.y1c1{bottom:481.965733pt;}
.y2f{bottom:482.597600pt;}
.y15c{bottom:483.303333pt;}
.y18a{bottom:488.027733pt;}
.y143{bottom:494.706133pt;}
.y215{bottom:494.923467pt;}
.y248{bottom:495.093200pt;}
.y271{bottom:495.094400pt;}
.y1c0{bottom:495.299067pt;}
.yfe{bottom:495.400800pt;}
.y124{bottom:496.097467pt;}
.y54{bottom:498.555467pt;}
.yd6{bottom:498.555600pt;}
.y8c{bottom:499.878400pt;}
.y27e{bottom:501.845333pt;}
.y1e3{bottom:502.050133pt;}
.y2e{bottom:502.823067pt;}
.y174{bottom:504.148133pt;}
.y15b{bottom:505.975200pt;}
.y247{bottom:508.426533pt;}
.y270{bottom:508.427733pt;}
.y1bf{bottom:508.632400pt;}
.y189{bottom:510.699600pt;}
.y142{bottom:512.706133pt;}
.y123{bottom:514.097467pt;}
.y214{bottom:515.008933pt;}
.y27d{bottom:515.178667pt;}
.y1e2{bottom:515.383467pt;}
.yfc{bottom:516.188267pt;}
.y53{bottom:516.555467pt;}
.yd5{bottom:516.555600pt;}
.y8b{bottom:517.878400pt;}
.y246{bottom:521.759867pt;}
.y26f{bottom:521.761067pt;}
.y1be{bottom:521.965733pt;}
.y15a{bottom:523.742933pt;}
.ye{bottom:526.572667pt;}
.y172{bottom:527.372667pt;}
.y213{bottom:528.342267pt;}
.y188{bottom:528.467333pt;}
.y27c{bottom:528.512000pt;}
.y1e1{bottom:528.716800pt;}
.y2d{bottom:530.608000pt;}
.y141{bottom:530.706133pt;}
.y122{bottom:532.097467pt;}
.y52{bottom:534.555467pt;}
.yd4{bottom:534.555600pt;}
.y26e{bottom:535.094400pt;}
.y8a{bottom:535.878400pt;}
.yfa{bottom:536.975733pt;}
.y245{bottom:541.845333pt;}
.yd{bottom:541.906000pt;}
.y1e0{bottom:542.050133pt;}
.y1bd{bottom:542.051200pt;}
.ye0{bottom:548.032000pt;}
.y212{bottom:548.427733pt;}
.y121{bottom:550.097467pt;}
.y173{bottom:550.597200pt;}
.y51{bottom:552.555467pt;}
.yd3{bottom:552.555600pt;}
.y89{bottom:553.878400pt;}
.y2c{bottom:554.167333pt;}
.y244{bottom:555.178667pt;}
.y26d{bottom:555.179867pt;}
.y1df{bottom:555.383467pt;}
.y1bc{bottom:555.384533pt;}
.yc{bottom:557.239333pt;}
.yfb{bottom:557.763200pt;}
.y140{bottom:560.044667pt;}
.y211{bottom:561.761067pt;}
.yf7{bottom:566.929333pt;}
.y243{bottom:568.512000pt;}
.y26c{bottom:568.513200pt;}
.y1de{bottom:568.716800pt;}
.y1bb{bottom:568.717867pt;}
.y50{bottom:570.555467pt;}
.yd2{bottom:570.555600pt;}
.y120{bottom:571.877200pt;}
.y88{bottom:571.878400pt;}
.yb{bottom:572.572667pt;}
.y2b{bottom:573.947067pt;}
.y210{bottom:575.094400pt;}
.y187{bottom:575.968000pt;}
.y13f{bottom:578.044667pt;}
.y113{bottom:581.637333pt;}
.y242{bottom:581.845333pt;}
.y26b{bottom:581.846533pt;}
.y1dd{bottom:582.050133pt;}
.y1ba{bottom:582.051200pt;}
.ya{bottom:587.906000pt;}
.y20f{bottom:588.427733pt;}
.y4f{bottom:588.555467pt;}
.yd1{bottom:588.555600pt;}
.y11f{bottom:589.877200pt;}
.y87{bottom:589.878400pt;}
.y2a{bottom:593.726800pt;}
.y241{bottom:595.178667pt;}
.y26a{bottom:595.179867pt;}
.y13e{bottom:596.044667pt;}
.y9{bottom:603.239333pt;}
.y4e{bottom:606.555467pt;}
.yd0{bottom:606.555600pt;}
.y11e{bottom:607.877200pt;}
.y86{bottom:607.878400pt;}
.y240{bottom:608.512000pt;}
.y20e{bottom:608.513200pt;}
.y29{bottom:613.506533pt;}
.y13d{bottom:614.044667pt;}
.ya3{bottom:615.437200pt;}
.y8{bottom:618.572667pt;}
.y23f{bottom:621.845333pt;}
.y20d{bottom:621.846533pt;}
.y4d{bottom:624.555467pt;}
.ycf{bottom:624.555600pt;}
.y1b9{bottom:624.791333pt;}
.y11d{bottom:625.877200pt;}
.ydf{bottom:629.188747pt;}
.y13c{bottom:632.044667pt;}
.y85{bottom:633.437200pt;}
.y7{bottom:633.906000pt;}
.y23e{bottom:635.178667pt;}
.y20c{bottom:635.179867pt;}
.y4c{bottom:642.555467pt;}
.yce{bottom:642.555600pt;}
.y11c{bottom:643.877200pt;}
.y28{bottom:644.624267pt;}
.y27b{bottom:648.512000pt;}
.y20b{bottom:648.513200pt;}
.y6{bottom:649.239333pt;}
.y13b{bottom:650.044667pt;}
.y84{bottom:651.437200pt;}
.y23d{bottom:655.264133pt;}
.y269{bottom:655.265333pt;}
.ybd{bottom:660.555467pt;}
.ycd{bottom:660.555600pt;}
.y27a{bottom:661.845333pt;}
.y11b{bottom:661.877200pt;}
.y13a{bottom:668.044667pt;}
.y23c{bottom:668.597467pt;}
.y20a{bottom:668.598667pt;}
.y4b{bottom:669.437200pt;}
.y279{bottom:675.178667pt;}
.ybc{bottom:678.555467pt;}
.ycc{bottom:678.555600pt;}
.y71{bottom:679.444533pt;}
.y11a{bottom:679.877200pt;}
.y23b{bottom:681.930800pt;}
.y209{bottom:681.932000pt;}
.y27{bottom:686.270667pt;}
.y4a{bottom:687.437200pt;}
.y278{bottom:688.512000pt;}
.y20{bottom:693.542667pt;}
.y139{bottom:693.603467pt;}
.y23a{bottom:695.264133pt;}
.y208{bottom:695.265333pt;}
.ybb{bottom:696.555467pt;}
.y70{bottom:697.212800pt;}
.y119{bottom:701.657467pt;}
.y26{bottom:704.937333pt;}
.y49{bottom:705.437200pt;}
.ycb{bottom:705.437333pt;}
.y239{bottom:708.597467pt;}
.y268{bottom:708.598667pt;}
.y1b2{bottom:714.555467pt;}
.y207{bottom:715.351733pt;}
.y5{bottom:717.485733pt;}
.y118{bottom:719.657467pt;}
.y277{bottom:721.930800pt;}
.y48{bottom:723.437200pt;}
.yca{bottom:723.437333pt;}
.y238{bottom:728.682933pt;}
.y206{bottom:728.685067pt;}
.y25{bottom:728.937333pt;}
.y276{bottom:735.264133pt;}
.y4{bottom:736.152400pt;}
.y117{bottom:737.657467pt;}
.y138{bottom:738.060267pt;}
.y47{bottom:741.437200pt;}
.y6f{bottom:741.437333pt;}
.y237{bottom:742.016267pt;}
.y205{bottom:742.018400pt;}
.y24{bottom:747.604000pt;}
.y236{bottom:755.349600pt;}
.y204{bottom:755.351733pt;}
.y116{bottom:755.657467pt;}
.y46{bottom:759.437200pt;}
.y6e{bottom:759.437333pt;}
.y137{bottom:759.840000pt;}
.y235{bottom:768.682933pt;}
.y267{bottom:768.685067pt;}
.y3{bottom:769.937333pt;}
.y23{bottom:771.604000pt;}
.y115{bottom:773.657467pt;}
.y203{bottom:775.437200pt;}
.y45{bottom:777.437200pt;}
.y6d{bottom:777.437333pt;}
.y234{bottom:782.016267pt;}
.y266{bottom:782.018400pt;}
.y202{bottom:788.770533pt;}
.y22{bottom:790.270667pt;}
.y114{bottom:791.657467pt;}
.y44{bottom:795.437200pt;}
.y6c{bottom:795.437333pt;}
.y136{bottom:796.737200pt;}
.y2{bottom:801.937333pt;}
.y233{bottom:802.102267pt;}
.y201{bottom:802.103867pt;}
.y21{bottom:808.937333pt;}
.y43{bottom:813.437200pt;}
.y6b{bottom:813.437333pt;}
.y232{bottom:815.435600pt;}
.y200{bottom:815.437200pt;}
.y42{bottom:859.432000pt;}
.h11{height:21.127600pt;}
.h13{height:28.672000pt;}
.hf{height:30.592000pt;}
.h21{height:32.186667pt;}
.h1a{height:32.256000pt;}
.h12{height:32.504000pt;}
.h16{height:33.450667pt;}
.he{height:34.820063pt;}
.h6{height:35.973333pt;}
.h7{height:36.328000pt;}
.h20{height:36.384533pt;}
.h3{height:38.229333pt;}
.h8{height:38.813200pt;}
.h19{height:39.101563pt;}
.hd{height:40.152000pt;}
.h1c{height:40.155200pt;}
.hb{height:41.653333pt;}
.h14{height:42.898800pt;}
.h9{height:44.352000pt;}
.h15{height:45.701333pt;}
.h10{height:45.816340pt;}
.h1f{height:49.223958pt;}
.h1b{height:54.922667pt;}
.hc{height:56.582603pt;}
.h5{height:56.800000pt;}
.ha{height:65.287619pt;}
.h4{height:83.306667pt;}
.h1e{height:88.152000pt;}
.h1d{height:88.152533pt;}
.h17{height:642.520000pt;}
.h18{height:642.666667pt;}
.h2{height:907.066667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.w4{width:907.066667pt;}
.w2{width:907.086667pt;}
.w3{width:907.333333pt;}
.x0{left:0.000000pt;}
.xb{left:13.331253pt;}
.xf{left:37.247867pt;}
.x10{left:64.252133pt;}
.x23{left:65.196800pt;}
.x21{left:66.141600pt;}
.x18{left:67.086400pt;}
.x1c{left:72.477600pt;}
.x3{left:75.590667pt;}
.x11{left:78.642693pt;}
.x27{left:90.708840pt;}
.x1{left:94.488000pt;}
.x14{left:96.040133pt;}
.x9{left:98.268400pt;}
.x25{left:109.606293pt;}
.xc{left:117.167600pt;}
.x15{left:124.388533pt;}
.x1f{left:203.395600pt;}
.x24{left:228.964000pt;}
.x1e{left:261.151200pt;}
.x16{left:274.260533pt;}
.x5{left:306.916000pt;}
.xa{left:320.826667pt;}
.x29{left:323.154560pt;}
.x1d{left:327.882933pt;}
.x13{left:336.501093pt;}
.x28{left:338.273360pt;}
.x6{left:341.529067pt;}
.x26{left:357.171160pt;}
.x19{left:358.868000pt;}
.x4{left:360.002667pt;}
.x1a{left:365.805333pt;}
.x12{left:381.151627pt;}
.x1b{left:382.488267pt;}
.x7{left:391.402000pt;}
.x8{left:417.202133pt;}
.x2{left:604.724000pt;}
.xe{left:693.542667pt;}
.x22{left:802.142800pt;}
.x20{left:803.087600pt;}
.x17{left:804.031200pt;}
.xd{left:859.432000pt;}
}




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