
    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_f3d6dbd5438ade0e7e62186e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.880000;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_a575a4da212e3ec7e6c231dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.823000;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_d45770ac9a9541fbd3559218.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d537d7397fee433bf6d62f54.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b6682cb0aeaf3875751d95e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.902000;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_850179b8e0fc1902217efde4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.827000;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_34c056b795d30117bdbf0c91.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.193359;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_c45932e5a209151a848ef435.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.206055;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_04b72b8c37e00512a0010a3a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.209473;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_794b7aa81807d837b8f87a61.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.209473;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_791ca257b2a8f9ccf33b4c77.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.193359;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_7944818bda940562bdd6d96e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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_f3d6dbd5438ade0e7e62186e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.880000;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_a575a4da212e3ec7e6c231dc.woff2')format("woff");}.fff{font-family:fff;line-height:0.823000;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_d45770ac9a9541fbd3559218.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d537d7397fee433bf6d62f54.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b6682cb0aeaf3875751d95e3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.902000;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:ff13;src:url('chunks/assets/font_850179b8e0fc1902217efde4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.827000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-16.983000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.992000px;}
.v1{vertical-align:20.589000px;}
.ls5{letter-spacing:-10.920000px;}
.ls7{letter-spacing:-3.864000px;}
.ls9{letter-spacing:-3.600000px;}
.ls17{letter-spacing:-2.646000px;}
.ls1d{letter-spacing:-2.538000px;}
.lsa{letter-spacing:-2.520000px;}
.ls10{letter-spacing:-1.449000px;}
.ls1f{letter-spacing:-0.960000px;}
.ls15{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.660000px;}
.ls16{letter-spacing:-0.594000px;}
.ls27{letter-spacing:-0.466105px;}
.ls1a{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000300px;}
.ls18{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.066000px;}
.ls1c{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.264000px;}
.ls1b{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.378000px;}
.lse{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.864000px;}
.lsd{letter-spacing:2.160000px;}
.ls2{letter-spacing:3.240000px;}
.ls20{letter-spacing:4.800000px;}
.ls8{letter-spacing:5.160000px;}
.lsf{letter-spacing:5.775000px;}
.ls24{letter-spacing:6.468000px;}
.lsb{letter-spacing:8.520000px;}
.ls28{letter-spacing:9.040500px;}
.lsc{letter-spacing:9.600000px;}
.ls1{letter-spacing:10.752000px;}
.ls21{letter-spacing:11.520000px;}
.ls0{letter-spacing:14.400000px;}
.ls25{letter-spacing:20.298000px;}
.ls26{letter-spacing:22.929600px;}
.ls4{letter-spacing:32.760000px;}
.ls3{letter-spacing:50.904000px;}
.ls23{letter-spacing:121.500000px;}
.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;}
}
.ws0{word-spacing:-126.360000px;}
.ws1{word-spacing:-108.000000px;}
.ws2{word-spacing:-54.432000px;}
.ws4{word-spacing:-36.360000px;}
.ws3{word-spacing:-30.576000px;}
.ws6{word-spacing:-25.275000px;}
.ws9{word-spacing:-24.600000px;}
.ws8{word-spacing:-23.640000px;}
.ws114{word-spacing:-22.968000px;}
.ws3e{word-spacing:-15.375000px;}
.ws3d{word-spacing:-13.500000px;}
.ws5c{word-spacing:-12.750000px;}
.ws5{word-spacing:-11.400000px;}
.ws7{word-spacing:-10.230000px;}
.ws29{word-spacing:-8.963550px;}
.ws18{word-spacing:-7.830000px;}
.ws6c{word-spacing:-7.433250px;}
.ws2a{word-spacing:-7.011000px;}
.ws11c{word-spacing:-6.826500px;}
.ws115{word-spacing:-6.642000px;}
.ws4a{word-spacing:-6.468000px;}
.wsfb{word-spacing:-6.273000px;}
.ws3f{word-spacing:-6.150000px;}
.ws7b{word-spacing:-5.457000px;}
.wsdb{word-spacing:-5.412000px;}
.ws61{word-spacing:-5.227500px;}
.ws5a{word-spacing:-4.998000px;}
.ws8c{word-spacing:-4.920000px;}
.ws95{word-spacing:-4.551000px;}
.wsd5{word-spacing:-4.489500px;}
.wscd{word-spacing:-4.059000px;}
.wsbd{word-spacing:-3.997500px;}
.ws6b{word-spacing:-3.774000px;}
.ws10b{word-spacing:-3.567000px;}
.wsd4{word-spacing:-3.444000px;}
.wsc4{word-spacing:-3.321000px;}
.wsb0{word-spacing:-3.136500px;}
.ws87{word-spacing:-3.075000px;}
.ws53{word-spacing:-3.013500px;}
.ws11b{word-spacing:-2.767500px;}
.ws54{word-spacing:-2.644500px;}
.wsbe{word-spacing:-2.583000px;}
.wsaf{word-spacing:-2.398500px;}
.wsa3{word-spacing:-2.397000px;}
.ws73{word-spacing:-2.337000px;}
.ws112{word-spacing:-2.275500px;}
.ws9e{word-spacing:-2.214000px;}
.ws113{word-spacing:-2.142000px;}
.ws75{word-spacing:-2.091000px;}
.ws93{word-spacing:-2.029500px;}
.ws2f{word-spacing:-1.783500px;}
.ws7c{word-spacing:-1.734000px;}
.ws71{word-spacing:-1.722000px;}
.wsa8{word-spacing:-1.660500px;}
.ws111{word-spacing:-1.599000px;}
.wsb9{word-spacing:-1.537500px;}
.ws98{word-spacing:-1.476000px;}
.wsab{word-spacing:-1.353000px;}
.wsf4{word-spacing:-1.291500px;}
.ws34{word-spacing:-1.230000px;}
.ws56{word-spacing:-1.107000px;}
.ws8a{word-spacing:-1.045500px;}
.ws49{word-spacing:-0.984000px;}
.ws33{word-spacing:-0.922500px;}
.ws13{word-spacing:-0.864000px;}
.wsd9{word-spacing:-0.799500px;}
.ws2d{word-spacing:-0.738000px;}
.wsc3{word-spacing:-0.714000px;}
.ws79{word-spacing:-0.615000px;}
.ws15{word-spacing:-0.378000px;}
.wse5{word-spacing:-0.369000px;}
.wsb3{word-spacing:-0.357000px;}
.ws25{word-spacing:-0.324000px;}
.ws4e{word-spacing:-0.307500px;}
.ws3c{word-spacing:-0.306000px;}
.ws23{word-spacing:-0.264000px;}
.ws28{word-spacing:-0.198000px;}
.ws50{word-spacing:-0.184500px;}
.ws8e{word-spacing:-0.123000px;}
.ws26{word-spacing:-0.108000px;}
.ws19{word-spacing:-0.066000px;}
.ws57{word-spacing:-0.061500px;}
.ws21{word-spacing:-0.054000px;}
.wsc{word-spacing:0.000000px;}
.ws24{word-spacing:0.054000px;}
.ws128{word-spacing:0.061500px;}
.ws6f{word-spacing:0.123000px;}
.wscc{word-spacing:0.184500px;}
.wsbc{word-spacing:0.246000px;}
.ws102{word-spacing:0.255000px;}
.wsae{word-spacing:0.307500px;}
.ws60{word-spacing:0.369000px;}
.wsd1{word-spacing:0.430500px;}
.wsff{word-spacing:0.466105px;}
.ws127{word-spacing:0.492000px;}
.wsa6{word-spacing:0.553500px;}
.wsb4{word-spacing:0.612000px;}
.ws7f{word-spacing:0.615000px;}
.ws78{word-spacing:0.676500px;}
.wsa5{word-spacing:0.765000px;}
.ws2c{word-spacing:0.799500px;}
.ws5b{word-spacing:0.816000px;}
.ws62{word-spacing:0.861000px;}
.ws17{word-spacing:0.864000px;}
.wsfe{word-spacing:0.922500px;}
.wse3{word-spacing:0.984000px;}
.ws69{word-spacing:1.045500px;}
.wsf{word-spacing:1.080000px;}
.wsa0{word-spacing:1.107000px;}
.wsb1{word-spacing:1.168500px;}
.ws107{word-spacing:1.224000px;}
.wsb7{word-spacing:1.230000px;}
.ws4b{word-spacing:1.291500px;}
.wsb5{word-spacing:1.326000px;}
.ws39{word-spacing:1.353000px;}
.ws31{word-spacing:1.414500px;}
.ws10{word-spacing:1.449000px;}
.ws10d{word-spacing:1.476000px;}
.ws83{word-spacing:1.537500px;}
.ws59{word-spacing:1.581000px;}
.ws76{word-spacing:1.599000px;}
.ws81{word-spacing:1.660500px;}
.ws10a{word-spacing:1.722000px;}
.ws101{word-spacing:1.836000px;}
.wse4{word-spacing:1.845000px;}
.wsd0{word-spacing:1.887000px;}
.ws6a{word-spacing:1.989000px;}
.ws3a{word-spacing:2.091000px;}
.wsdc{word-spacing:2.193000px;}
.ws8b{word-spacing:2.214000px;}
.ws7e{word-spacing:2.275500px;}
.wsa4{word-spacing:2.346000px;}
.ws116{word-spacing:2.398500px;}
.wse{word-spacing:2.520000px;}
.wsb2{word-spacing:2.521500px;}
.ws27{word-spacing:2.538000px;}
.ws1f{word-spacing:2.646000px;}
.wsc0{word-spacing:2.706000px;}
.wsad{word-spacing:2.767500px;}
.ws125{word-spacing:2.829000px;}
.wsa9{word-spacing:2.890500px;}
.ws37{word-spacing:2.952000px;}
.ws32{word-spacing:3.075000px;}
.ws106{word-spacing:3.136500px;}
.ws92{word-spacing:3.198000px;}
.ws108{word-spacing:3.321000px;}
.ws119{word-spacing:3.444000px;}
.ws64{word-spacing:3.505500px;}
.ws63{word-spacing:3.567000px;}
.wsd{word-spacing:3.600000px;}
.ws3b{word-spacing:3.621000px;}
.wsdf{word-spacing:3.672000px;}
.wsba{word-spacing:3.690000px;}
.ws30{word-spacing:3.751500px;}
.ws74{word-spacing:3.813000px;}
.wse1{word-spacing:3.825000px;}
.ws70{word-spacing:3.874500px;}
.wsda{word-spacing:3.936000px;}
.wse0{word-spacing:3.978000px;}
.ws8f{word-spacing:4.059000px;}
.ws11d{word-spacing:4.120500px;}
.wsa2{word-spacing:4.182000px;}
.ws46{word-spacing:4.305000px;}
.ws4f{word-spacing:4.366500px;}
.ws4c{word-spacing:4.428000px;}
.wsa{word-spacing:4.536000px;}
.ws91{word-spacing:4.551000px;}
.wsb6{word-spacing:4.612500px;}
.ws103{word-spacing:4.735500px;}
.ws36{word-spacing:4.797000px;}
.wsc8{word-spacing:4.858500px;}
.wse6{word-spacing:4.920000px;}
.ws40{word-spacing:4.981500px;}
.ws97{word-spacing:5.043000px;}
.wsc1{word-spacing:5.104500px;}
.ws109{word-spacing:5.166000px;}
.wsd6{word-spacing:5.227500px;}
.wsd2{word-spacing:5.350500px;}
.wsc9{word-spacing:5.473500px;}
.wsde{word-spacing:5.508000px;}
.ws6d{word-spacing:5.535000px;}
.wsb8{word-spacing:5.596500px;}
.ws7d{word-spacing:5.610000px;}
.ws77{word-spacing:5.658000px;}
.wse2{word-spacing:5.781000px;}
.ws9d{word-spacing:5.965500px;}
.ws89{word-spacing:5.967000px;}
.ws9c{word-spacing:6.088500px;}
.wsd8{word-spacing:6.150000px;}
.ws38{word-spacing:6.211500px;}
.wsbf{word-spacing:6.396000px;}
.ws120{word-spacing:6.519000px;}
.ws100{word-spacing:6.580500px;}
.ws121{word-spacing:6.642000px;}
.ws82{word-spacing:6.826500px;}
.ws96{word-spacing:6.949500px;}
.wsea{word-spacing:7.134000px;}
.ws42{word-spacing:7.195500px;}
.wsc2{word-spacing:7.380000px;}
.ws84{word-spacing:7.441500px;}
.ws94{word-spacing:7.687500px;}
.wsac{word-spacing:7.749000px;}
.wsf3{word-spacing:7.810500px;}
.wse8{word-spacing:7.872000px;}
.ws44{word-spacing:7.933500px;}
.ws66{word-spacing:7.995000px;}
.ws48{word-spacing:8.056500px;}
.wsf8{word-spacing:8.118000px;}
.wsaa{word-spacing:8.179500px;}
.ws67{word-spacing:8.241000px;}
.ws72{word-spacing:8.302500px;}
.ws80{word-spacing:8.364000px;}
.wscb{word-spacing:8.487000px;}
.wscf{word-spacing:8.610000px;}
.wsf0{word-spacing:8.671500px;}
.ws99{word-spacing:8.856000px;}
.ws5e{word-spacing:8.917500px;}
.ws117{word-spacing:8.979000px;}
.wsd3{word-spacing:9.040500px;}
.wsec{word-spacing:9.102000px;}
.ws41{word-spacing:9.225000px;}
.wsdd{word-spacing:9.333000px;}
.ws5f{word-spacing:9.532500px;}
.ws45{word-spacing:9.717000px;}
.ws7a{word-spacing:9.840000px;}
.ws47{word-spacing:10.024500px;}
.ws8d{word-spacing:10.455000px;}
.ws123{word-spacing:10.516500px;}
.ws88{word-spacing:10.639500px;}
.ws118{word-spacing:10.701000px;}
.wsef{word-spacing:10.762500px;}
.wse7{word-spacing:10.824000px;}
.wsb{word-spacing:10.920000px;}
.ws11e{word-spacing:11.008500px;}
.wsf5{word-spacing:11.070000px;}
.wsed{word-spacing:11.131500px;}
.ws68{word-spacing:11.193000px;}
.wsf7{word-spacing:11.254500px;}
.wsfc{word-spacing:11.316000px;}
.wsa1{word-spacing:11.377500px;}
.wsfd{word-spacing:11.685000px;}
.ws5d{word-spacing:11.808000px;}
.ws9a{word-spacing:11.992500px;}
.ws11a{word-spacing:12.036000px;}
.ws51{word-spacing:12.054000px;}
.ws10e{word-spacing:12.177000px;}
.wsee{word-spacing:12.300000px;}
.ws55{word-spacing:12.361500px;}
.ws1e{word-spacing:12.375000px;}
.ws10c{word-spacing:12.484500px;}
.wsca{word-spacing:12.669000px;}
.ws86{word-spacing:13.161000px;}
.wse9{word-spacing:13.407000px;}
.ws9b{word-spacing:13.960500px;}
.ws6e{word-spacing:14.022000px;}
.ws2b{word-spacing:14.145000px;}
.wsfa{word-spacing:14.206500px;}
.ws126{word-spacing:14.391000px;}
.ws104{word-spacing:14.452500px;}
.wsf1{word-spacing:14.821500px;}
.ws122{word-spacing:15.190500px;}
.wseb{word-spacing:15.252000px;}
.ws110{word-spacing:15.805500px;}
.ws4d{word-spacing:16.113000px;}
.wsd7{word-spacing:16.174500px;}
.wsa7{word-spacing:16.236000px;}
.ws65{word-spacing:16.543500px;}
.wsc7{word-spacing:16.666500px;}
.ws11f{word-spacing:16.851000px;}
.wsf2{word-spacing:17.035500px;}
.wsbb{word-spacing:17.527500px;}
.wsc5{word-spacing:17.958000px;}
.ws90{word-spacing:19.311000px;}
.ws2e{word-spacing:19.434000px;}
.ws85{word-spacing:19.495500px;}
.ws9f{word-spacing:20.418000px;}
.wsce{word-spacing:20.541000px;}
.wsc6{word-spacing:20.848500px;}
.wsf9{word-spacing:21.156000px;}
.ws105{word-spacing:21.771000px;}
.ws10f{word-spacing:21.894000px;}
.ws35{word-spacing:22.939500px;}
.ws58{word-spacing:23.001000px;}
.ws43{word-spacing:23.185500px;}
.wsf6{word-spacing:25.092000px;}
.ws52{word-spacing:25.584000px;}
.ws124{word-spacing:26.076000px;}
.ws14{word-spacing:32.760000px;}
.ws12{word-spacing:137.880000px;}
.ws1b{word-spacing:158.670000px;}
.ws1d{word-spacing:172.170000px;}
.ws11{word-spacing:191.160000px;}
.ws16{word-spacing:208.845000px;}
.ws22{word-spacing:220.725000px;}
.ws1c{word-spacing:222.345000px;}
.ws20{word-spacing:229.950000px;}
.ws1a{word-spacing:235.215000px;}
._1b{margin-left:-199.693200px;}
._15{margin-left:-174.373200px;}
._13{margin-left:-156.956400px;}
._1a{margin-left:-142.383600px;}
._37{margin-left:-141.380400px;}
._18{margin-left:-124.099200px;}
._6{margin-left:-25.488000px;}
._4{margin-left:-11.232000px;}
._26{margin-left:-9.860400px;}
._10{margin-left:-8.648400px;}
._2c{margin-left:-7.543050px;}
._f{margin-left:-6.192000px;}
._5{margin-left:-4.428000px;}
._8{margin-left:-3.384000px;}
._21{margin-left:-2.338800px;}
._1{margin-left:-1.335600px;}
._3{width:1.915200px;}
._b{width:3.343200px;}
._0{width:4.510800px;}
._e{width:5.664000px;}
._2{width:6.678000px;}
._c{width:8.551200px;}
._d{width:10.008000px;}
._27{width:11.061150px;}
._a{width:12.297600px;}
._2a{width:13.304850px;}
._30{width:14.320950px;}
._2f{width:16.445100px;}
._2b{width:17.527500px;}
._17{width:18.600000px;}
._33{width:19.680750px;}
._2d{width:21.076050px;}
._7{width:23.004000px;}
._31{width:24.652350px;}
._2e{width:26.500350px;}
._9{width:31.824000px;}
._34{width:33.812700px;}
._12{width:35.067900px;}
._29{width:39.449100px;}
._28{width:40.572600px;}
._19{width:42.210000px;}
._16{width:48.008400px;}
._36{width:49.011600px;}
._32{width:121.500000px;}
._1e{width:126.106200px;}
._22{width:134.947500px;}
._1c{width:139.546200px;}
._20{width:151.745100px;}
._11{width:162.559500px;}
._35{width:163.562700px;}
._25{width:170.501100px;}
._14{width:173.341200px;}
._24{width:236.730600px;}
._23{width:250.393800px;}
._1d{width:487.806000px;}
._1f{width:492.888000px;}
.fc9{color:rgb(25,26,27);}
.fc8{color:rgb(40,41,42);}
.fc7{color:rgb(26,24,26);}
.fc4{color:transparent;}
.fc2{color:rgb(143,87,89);}
.fc5{color:rgb(35,31,32);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc6{color:rgb(4,6,6);}
.fc0{color:rgb(250,181,150);}
.fs11{font-size:29.733000px;}
.fsf{font-size:35.854200px;}
.fs4{font-size:36.000000px;}
.fsb{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs10{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fse{font-size:61.500000px;}
.fs9{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:75.000000px;}
.fs3{font-size:120.000000px;}
.fsd{font-size:126.000000px;}
.fsc{font-size:144.000000px;}
.fs2{font-size:168.000000px;}
.fs0{font-size:252.000000px;}
.fs1{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:46.038450px;}
.y35{bottom:46.278900px;}
.y10{bottom:69.438450px;}
.y209{bottom:80.988750px;}
.y5c{bottom:80.993250px;}
.y140{bottom:80.995500px;}
.yb3{bottom:80.997750px;}
.y2ec{bottom:83.050800px;}
.yff{bottom:85.245750px;}
.y208{bottom:94.491000px;}
.y5b{bottom:94.495500px;}
.y13f{bottom:94.497750px;}
.yb2{bottom:98.745750px;}
.y2eb{bottom:101.054925px;}
.yfe{bottom:105.297750px;}
.y207{bottom:107.993250px;}
.y5a{bottom:107.997750px;}
.y2a6{bottom:109.545750px;}
.y13e{bottom:112.245750px;}
.yb1{bottom:118.797750px;}
.y304{bottom:119.059050px;}
.y206{bottom:121.495500px;}
.yfd{bottom:123.045750px;}
.y59{bottom:125.745750px;}
.y2ea{bottom:125.808675px;}
.y2b6{bottom:129.595500px;}
.y2a5{bottom:133.845750px;}
.y205{bottom:134.997750px;}
.yb0{bottom:136.545750px;}
.y303{bottom:137.063175px;}
.y89{bottom:139.472175px;}
.yfc{bottom:143.097750px;}
.y2e9{bottom:143.812800px;}
.y58{bottom:145.795500px;}
.y161{bottom:147.345750px;}
.yf{bottom:150.771300px;}
.y204{bottom:152.745750px;}
.y302{bottom:155.067300px;}
.yaf{bottom:156.597750px;}
.y88{bottom:157.476300px;}
.y2a4{bottom:158.145750px;}
.y57{bottom:159.297750px;}
.yfb{bottom:160.845750px;}
.y2e8{bottom:161.816925px;}
.y232{bottom:161.963925px;}
.y189{bottom:167.397750px;}
.y203{bottom:172.797750px;}
.y301{bottom:173.071425px;}
.yae{bottom:174.345750px;}
.y87{bottom:175.480425px;}
.y56{bottom:177.045750px;}
.y2a3{bottom:178.195500px;}
.ye{bottom:179.423850px;}
.y2e7{bottom:179.821050px;}
.y231{bottom:179.968050px;}
.yfa{bottom:180.895500px;}
.y121{bottom:180.897750px;}
.y1ea{bottom:182.225925px;}
.y188{bottom:185.145750px;}
.yc{bottom:190.080000px;}
.yd{bottom:190.223850px;}
.yd7{bottom:190.472325px;}
.y202{bottom:190.545750px;}
.y300{bottom:191.075550px;}
.y2a2{bottom:191.697750px;}
.y55{bottom:193.047750px;}
.yad{bottom:194.397750px;}
.y2e6{bottom:197.825175px;}
.y230{bottom:197.972175px;}
.y120{bottom:198.645750px;}
.y1e9{bottom:200.230050px;}
.y86{bottom:200.234175px;}
.y187{bottom:205.197750px;}
.y54{bottom:206.550000px;}
.yd6{bottom:208.476450px;}
.y2ff{bottom:209.079675px;}
.y283{bottom:209.445750px;}
.y201{bottom:210.593250px;}
.yac{bottom:212.145750px;}
.y2e5{bottom:215.829300px;}
.y22f{bottom:215.976300px;}
.y32{bottom:217.624500px;}
.y1e8{bottom:218.234175px;}
.y85{bottom:218.238300px;}
.y268{bottom:218.693250px;}
.y1d1{bottom:222.664800px;}
.y186{bottom:222.945750px;}
.yb{bottom:223.080000px;}
.y13d{bottom:223.730775px;}
.y200{bottom:224.095500px;}
.yd5{bottom:226.480575px;}
.y2fe{bottom:227.083800px;}
.yab{bottom:232.195500px;}
.y2e4{bottom:233.833425px;}
.y22e{bottom:233.980425px;}
.y1e7{bottom:236.238300px;}
.y84{bottom:236.242425px;}
.yf9{bottom:236.445750px;}
.y1ff{bottom:237.597750px;}
.y1d0{bottom:240.668925px;}
.yd4{bottom:244.484700px;}
.yaa{bottom:245.697750px;}
.y31{bottom:246.424500px;}
.y13c{bottom:248.484525px;}
.y2fd{bottom:251.837550px;}
.y2b5{bottom:251.963925px;}
.y282{bottom:251.975925px;}
.y1e6{bottom:254.242425px;}
.y83{bottom:254.246550px;}
.y1fe{bottom:255.345750px;}
.ya{bottom:256.080000px;}
.y2e3{bottom:258.587175px;}
.y1cf{bottom:258.673050px;}
.y22d{bottom:258.734175px;}
.y11f{bottom:259.710150px;}
.ya9{bottom:263.445750px;}
.y13b{bottom:266.465850px;}
.y250{bottom:268.195050px;}
.y2fc{bottom:269.841675px;}
.y2b4{bottom:269.968050px;}
.y281{bottom:269.980050px;}
.y160{bottom:269.988300px;}
.y2d7{bottom:272.217675px;}
.y1e5{bottom:272.246550px;}
.y1aa{bottom:274.456050px;}
.y30{bottom:275.224500px;}
.y2e2{bottom:276.591300px;}
.y1ce{bottom:276.677175px;}
.y22c{bottom:276.738300px;}
.yd3{bottom:277.611300px;}
.y11e{bottom:277.714275px;}
.yf8{bottom:283.488300px;}
.y13a{bottom:284.469975px;}
.y82{bottom:285.745050px;}
.y24f{bottom:286.199175px;}
.y33{bottom:286.906650px;}
.y2fb{bottom:287.845800px;}
.y2b3{bottom:287.972175px;}
.y280{bottom:287.984175px;}
.y2a1{bottom:287.988300px;}
.y15f{bottom:287.992425px;}
.y53{bottom:288.043200px;}
.y2d6{bottom:290.221800px;}
.y1a9{bottom:292.460175px;}
.y2e1{bottom:294.595425px;}
.y1cd{bottom:294.681300px;}
.y185{bottom:294.734175px;}
.y22b{bottom:294.742425px;}
.y2f{bottom:295.024500px;}
.y2e{bottom:295.029000px;}
.yd2{bottom:295.615425px;}
.y11d{bottom:295.718400px;}
.y1e4{bottom:296.988300px;}
.yf7{bottom:301.492425px;}
.y139{bottom:302.474100px;}
.y81{bottom:303.746550px;}
.ya8{bottom:304.199175px;}
.y24e{bottom:304.203300px;}
.y2fa{bottom:305.849925px;}
.y2b2{bottom:305.976300px;}
.y15e{bottom:305.984175px;}
.y27f{bottom:305.988300px;}
.y2a0{bottom:305.992425px;}
.y52{bottom:306.047325px;}
.y2d5{bottom:308.225925px;}
.y1a8{bottom:310.464300px;}
.y2e0{bottom:312.599550px;}
.y22a{bottom:312.611925px;}
.y1cc{bottom:312.685425px;}
.y184{bottom:312.738300px;}
.yd1{bottom:313.619550px;}
.y11c{bottom:313.722525px;}
.y1e3{bottom:314.992425px;}
.yf6{bottom:319.480050px;}
.y138{bottom:320.478225px;}
.y9{bottom:322.080000px;}
.ya7{bottom:322.203300px;}
.y24d{bottom:322.207425px;}
.y2d{bottom:323.824500px;}
.y2f9{bottom:323.854050px;}
.y2b1{bottom:323.980425px;}
.y29f{bottom:323.984175px;}
.y15d{bottom:323.988300px;}
.y27e{bottom:323.992425px;}
.y51{bottom:324.051450px;}
.y2d4{bottom:326.230050px;}
.y2df{bottom:330.603675px;}
.y229{bottom:330.616050px;}
.y1cb{bottom:330.689550px;}
.y1fd{bottom:330.697425px;}
.y183{bottom:330.742425px;}
.yd0{bottom:331.623675px;}
.y11b{bottom:331.726650px;}
.y1e2{bottom:332.943300px;}
.y1a7{bottom:335.218050px;}
.yf5{bottom:337.484175px;}
.y137{bottom:338.482350px;}
.y2c{bottom:340.024500px;}
.y24c{bottom:340.211550px;}
.y2f8{bottom:341.858175px;}
.y29e{bottom:341.988300px;}
.y15c{bottom:341.992425px;}
.y50{bottom:342.055575px;}
.y2d3{bottom:344.234175px;}
.y80{bottom:348.607800px;}
.y228{bottom:348.620175px;}
.y182{bottom:348.664800px;}
.y1ca{bottom:348.693675px;}
.y1fc{bottom:348.701550px;}
.ya6{bottom:348.709800px;}
.y2b0{bottom:348.734175px;}
.ycf{bottom:349.627800px;}
.y11a{bottom:349.730775px;}
.y1e1{bottom:350.947425px;}
.y1a6{bottom:353.222175px;}
.y8{bottom:355.080000px;}
.yf4{bottom:355.488300px;}
.y136{bottom:356.486475px;}
.y2f7{bottom:359.862300px;}
.y27d{bottom:359.972550px;}
.y15b{bottom:359.988300px;}
.y29d{bottom:359.992425px;}
.y4f{bottom:360.059700px;}
.y2d2{bottom:362.238300px;}
.y7f{bottom:366.611925px;}
.y181{bottom:366.668925px;}
.y1c9{bottom:366.697800px;}
.y1fb{bottom:366.705675px;}
.ya5{bottom:366.713925px;}
.y24b{bottom:366.718050px;}
.y2af{bottom:366.738300px;}
.yce{bottom:367.631925px;}
.y2b{bottom:368.824500px;}
.y1e0{bottom:368.951550px;}
.y1a5{bottom:371.226300px;}
.y227{bottom:373.373925px;}
.yf3{bottom:373.492425px;}
.y119{bottom:374.484525px;}
.y2f6{bottom:377.866425px;}
.y27c{bottom:377.976675px;}
.y15a{bottom:377.992425px;}
.y29c{bottom:377.996550px;}
.y4e{bottom:378.063825px;}
.y2d1{bottom:380.242425px;}
.y7e{bottom:384.616050px;}
.y180{bottom:384.673050px;}
.y1fa{bottom:384.709800px;}
.ya4{bottom:384.718050px;}
.y24a{bottom:384.722175px;}
.y2ae{bottom:384.742425px;}
.ycd{bottom:385.636050px;}
.y1df{bottom:386.955675px;}
.y7{bottom:388.080000px;}
.y1a4{bottom:389.230425px;}
.y135{bottom:389.666175px;}
.y226{bottom:391.378050px;}
.y1c8{bottom:391.451550px;}
.y267{bottom:391.475925px;}
.yf2{bottom:391.496550px;}
.y118{bottom:392.459775px;}
.y2f5{bottom:395.870550px;}
.y159{bottom:395.996550px;}
.y4d{bottom:396.067950px;}
.y2a{bottom:397.624500px;}
.y2d0{bottom:398.246550px;}
.y7d{bottom:402.620175px;}
.y1f9{bottom:402.713925px;}
.ya3{bottom:402.722175px;}
.y29b{bottom:402.725925px;}
.y249{bottom:402.726300px;}
.y27b{bottom:402.730425px;}
.y1de{bottom:404.959800px;}
.y1a3{bottom:407.234550px;}
.y134{bottom:407.670300px;}
.y2de{bottom:409.369800px;}
.y225{bottom:409.382175px;}
.y17f{bottom:409.426800px;}
.y1c7{bottom:409.455675px;}
.y266{bottom:409.480050px;}
.y117{bottom:410.463900px;}
.ycc{bottom:412.142550px;}
.y2f4{bottom:413.874675px;}
.y4c{bottom:414.072075px;}
.yf1{bottom:416.213550px;}
.y29{bottom:417.424500px;}
.y158{bottom:420.624300px;}
.y1f8{bottom:420.718050px;}
.ya2{bottom:420.726300px;}
.y29a{bottom:420.730050px;}
.y248{bottom:420.730425px;}
.y27a{bottom:420.734550px;}
.y1dd{bottom:422.963925px;}
.y1a2{bottom:425.238675px;}
.y133{bottom:425.674425px;}
.y7c{bottom:427.373925px;}
.y224{bottom:427.386300px;}
.y17e{bottom:427.430925px;}
.y1c6{bottom:427.459800px;}
.y265{bottom:427.484175px;}
.y116{bottom:428.468025px;}
.y2cf{bottom:429.746550px;}
.ycb{bottom:430.146675px;}
.y2f3{bottom:431.878800px;}
.y4b{bottom:432.043575px;}
.yf0{bottom:434.217675px;}
.y157{bottom:438.628425px;}
.y1f7{bottom:438.722175px;}
.ya1{bottom:438.730425px;}
.y299{bottom:438.734175px;}
.y279{bottom:438.738675px;}
.y1dc{bottom:440.968050px;}
.y1a1{bottom:443.242800px;}
.y132{bottom:443.678550px;}
.y7b{bottom:445.378050px;}
.y223{bottom:445.390425px;}
.y17d{bottom:445.435050px;}
.y1c5{bottom:445.463925px;}
.y247{bottom:445.484175px;}
.y264{bottom:445.488300px;}
.y28{bottom:446.224500px;}
.y115{bottom:446.472150px;}
.yca{bottom:448.150800px;}
.y4a{bottom:450.047700px;}
.yef{bottom:452.221800px;}
.y156{bottom:456.632550px;}
.y1f6{bottom:456.726300px;}
.ya0{bottom:456.734550px;}
.y298{bottom:456.738300px;}
.y278{bottom:456.742800px;}
.y1db{bottom:458.972175px;}
.y131{bottom:461.682675px;}
.y7a{bottom:463.382175px;}
.y222{bottom:463.394550px;}
.y17c{bottom:463.439175px;}
.y1c4{bottom:463.468050px;}
.y246{bottom:463.488300px;}
.y263{bottom:463.492425px;}
.y114{bottom:464.476275px;}
.yc9{bottom:466.154925px;}
.y1a0{bottom:467.975925px;}
.yee{bottom:470.225925px;}
.y155{bottom:474.636675px;}
.y2ce{bottom:474.722175px;}
.y1f5{bottom:474.730425px;}
.y297{bottom:474.742425px;}
.y49{bottom:474.801450px;}
.y27{bottom:475.024500px;}
.y1da{bottom:476.976300px;}
.y130{bottom:479.686800px;}
.y79{bottom:481.386300px;}
.y221{bottom:481.398675px;}
.y17b{bottom:481.443300px;}
.y277{bottom:481.459800px;}
.y9f{bottom:481.488300px;}
.y245{bottom:481.492425px;}
.y262{bottom:481.496550px;}
.y113{bottom:482.480400px;}
.yc8{bottom:484.159050px;}
.y19f{bottom:485.980050px;}
.y1c3{bottom:488.221800px;}
.yed{bottom:488.230050px;}
.y154{bottom:492.640800px;}
.y2cd{bottom:492.726300px;}
.y296{bottom:492.746550px;}
.y48{bottom:492.805575px;}
.y26{bottom:494.824500px;}
.y78{bottom:499.390425px;}
.y17a{bottom:499.447425px;}
.y276{bottom:499.463925px;}
.y2ad{bottom:499.472175px;}
.y1f4{bottom:499.484175px;}
.y9e{bottom:499.492425px;}
.y112{bottom:500.484525px;}
.y1d9{bottom:501.730050px;}
.y19e{bottom:503.984175px;}
.y220{bottom:506.152425px;}
.y12f{bottom:506.193300px;}
.y261{bottom:506.213550px;}
.y1c2{bottom:506.225925px;}
.yec{bottom:506.234175px;}
.yc7{bottom:508.912800px;}
.y153{bottom:510.644925px;}
.y2cc{bottom:510.730425px;}
.y47{bottom:510.809700px;}
.y77{bottom:517.394550px;}
.y295{bottom:517.423425px;}
.y9d{bottom:517.435425px;}
.y275{bottom:517.468050px;}
.y2ac{bottom:517.476300px;}
.y1f3{bottom:517.488300px;}
.y111{bottom:518.488650px;}
.y1d8{bottom:519.734175px;}
.y19d{bottom:521.988300px;}
.y25{bottom:523.624500px;}
.y2dd{bottom:524.144175px;}
.y21f{bottom:524.156550px;}
.y12e{bottom:524.197425px;}
.y179{bottom:524.201175px;}
.y260{bottom:524.217675px;}
.y1c1{bottom:524.230050px;}
.yeb{bottom:524.238300px;}
.yc6{bottom:526.916925px;}
.y152{bottom:528.649050px;}
.y2cb{bottom:528.734550px;}
.y46{bottom:528.813825px;}
.y76{bottom:535.398675px;}
.y294{bottom:535.427550px;}
.y9c{bottom:535.439550px;}
.y274{bottom:535.472175px;}
.y2ab{bottom:535.480425px;}
.y1f2{bottom:535.492425px;}
.y1d7{bottom:537.738300px;}
.y24{bottom:539.824500px;}
.y19c{bottom:539.992425px;}
.y2dc{bottom:542.148300px;}
.y21e{bottom:542.160675px;}
.y12d{bottom:542.201550px;}
.y178{bottom:542.205300px;}
.y25f{bottom:542.221800px;}
.y1c0{bottom:542.234175px;}
.yea{bottom:542.242425px;}
.yc5{bottom:544.921050px;}
.y151{bottom:546.653175px;}
.y45{bottom:546.817950px;}
.y110{bottom:551.711550px;}
.y75{bottom:553.402800px;}
.y293{bottom:553.431675px;}
.y9b{bottom:553.443675px;}
.y1f1{bottom:553.468050px;}
.y273{bottom:553.476300px;}
.y2ca{bottom:553.488300px;}
.y244{bottom:553.496550px;}
.y1d6{bottom:555.742425px;}
.y19b{bottom:557.955675px;}
.y2db{bottom:560.152425px;}
.y21d{bottom:560.164800px;}
.y12c{bottom:560.205675px;}
.y177{bottom:560.209425px;}
.y25e{bottom:560.225925px;}
.y2aa{bottom:560.234175px;}
.y1bf{bottom:560.238300px;}
.ye9{bottom:560.242425px;}
.yc4{bottom:562.925175px;}
.y2f2{bottom:564.657300px;}
.y44{bottom:564.822075px;}
.y23{bottom:568.624500px;}
.y10f{bottom:569.715675px;}
.y74{bottom:571.406925px;}
.y292{bottom:571.435800px;}
.y9a{bottom:571.447800px;}
.y1f0{bottom:571.472175px;}
.y272{bottom:571.480425px;}
.y2c9{bottom:571.492425px;}
.y1d5{bottom:573.746550px;}
.y19a{bottom:575.959800px;}
.y2da{bottom:578.156550px;}
.y21c{bottom:578.168925px;}
.y12b{bottom:578.209800px;}
.y176{bottom:578.213550px;}
.y243{bottom:578.225925px;}
.y25d{bottom:578.230050px;}
.y2a9{bottom:578.238300px;}
.y1be{bottom:578.242425px;}
.ye8{bottom:578.246550px;}
.y2f1{bottom:582.661425px;}
.y43{bottom:582.826200px;}
.yc3{bottom:587.678925px;}
.y10e{bottom:587.719800px;}
.y73{bottom:589.411050px;}
.y291{bottom:589.439925px;}
.y1ef{bottom:589.476300px;}
.y2c8{bottom:589.484175px;}
.y271{bottom:589.484550px;}
.y199{bottom:593.963925px;}
.y2d9{bottom:596.160675px;}
.y21b{bottom:596.173050px;}
.y1bd{bottom:596.197800px;}
.y99{bottom:596.201550px;}
.y12a{bottom:596.213925px;}
.y175{bottom:596.217675px;}
.y242{bottom:596.230050px;}
.y25c{bottom:596.234175px;}
.y2a8{bottom:596.242425px;}
.y22{bottom:597.424500px;}
.y2f0{bottom:600.665550px;}
.ye7{bottom:602.951550px;}
.y1d4{bottom:605.245050px;}
.yc2{bottom:605.683050px;}
.y10d{bottom:605.723925px;}
.y150{bottom:607.415175px;}
.y1ee{bottom:607.480425px;}
.y2c7{bottom:607.488300px;}
.y72{bottom:614.164800px;}
.y21a{bottom:614.177175px;}
.y290{bottom:614.193675px;}
.y1bc{bottom:614.201925px;}
.y98{bottom:614.205675px;}
.y129{bottom:614.218050px;}
.y174{bottom:614.221800px;}
.y241{bottom:614.234175px;}
.y25b{bottom:614.238300px;}
.y42{bottom:616.052850px;}
.y6{bottom:617.394600px;}
.y2ef{bottom:618.669675px;}
.y198{bottom:618.717675px;}
.ye6{bottom:620.955675px;}
.y1d3{bottom:623.246550px;}
.yc1{bottom:623.687175px;}
.y10c{bottom:623.728050px;}
.y14f{bottom:625.419300px;}
.y1ed{bottom:625.484550px;}
.y2c6{bottom:625.492425px;}
.y21{bottom:626.224500px;}
.y71{bottom:632.168925px;}
.y219{bottom:632.181300px;}
.y28f{bottom:632.197800px;}
.y97{bottom:632.209800px;}
.y128{bottom:632.222175px;}
.y173{bottom:632.225925px;}
.y240{bottom:632.238300px;}
.y25a{bottom:632.242425px;}
.y41{bottom:634.056975px;}
.y197{bottom:636.721800px;}
.y1bb{bottom:638.955675px;}
.ye5{bottom:638.959800px;}
.yc0{bottom:641.691300px;}
.y14e{bottom:643.423425px;}
.y2c5{bottom:643.496550px;}
.y70{bottom:650.173050px;}
.y218{bottom:650.185425px;}
.y28e{bottom:650.201925px;}
.y270{bottom:650.213550px;}
.y96{bottom:650.213925px;}
.y127{bottom:650.226300px;}
.y172{bottom:650.230050px;}
.y10b{bottom:650.234550px;}
.y1ec{bottom:650.238300px;}
.y23f{bottom:650.242425px;}
.y259{bottom:650.246550px;}
.y40{bottom:652.061100px;}
.y196{bottom:654.725925px;}
.y20{bottom:655.024500px;}
.y1ba{bottom:656.959800px;}
.ye4{bottom:656.963925px;}
.y5{bottom:659.394600px;}
.ybf{bottom:659.695425px;}
.y14d{bottom:661.427550px;}
.y6f{bottom:668.177175px;}
.y2c4{bottom:668.193300px;}
.y23e{bottom:668.197800px;}
.y28d{bottom:668.206050px;}
.y26f{bottom:668.217675px;}
.y95{bottom:668.218050px;}
.y126{bottom:668.230425px;}
.y171{bottom:668.234175px;}
.y10a{bottom:668.238675px;}
.y1eb{bottom:668.242425px;}
.y3f{bottom:670.065225px;}
.y195{bottom:672.730050px;}
.y217{bottom:674.939175px;}
.y258{bottom:674.959425px;}
.y1b9{bottom:674.963925px;}
.ye3{bottom:674.968050px;}
.ybe{bottom:677.699550px;}
.y14c{bottom:679.431675px;}
.y1f{bottom:683.824500px;}
.y6e{bottom:686.181300px;}
.y2c3{bottom:686.197425px;}
.y23d{bottom:686.201925px;}
.y28c{bottom:686.210175px;}
.y26e{bottom:686.221800px;}
.y94{bottom:686.222175px;}
.y170{bottom:686.238300px;}
.y109{bottom:686.242800px;}
.y194{bottom:690.734175px;}
.y2d8{bottom:692.930925px;}
.y216{bottom:692.943300px;}
.y257{bottom:692.963550px;}
.y1b8{bottom:692.968050px;}
.ye2{bottom:692.972175px;}
.y125{bottom:692.984175px;}
.ybd{bottom:695.703675px;}
.y3e{bottom:696.571725px;}
.y14b{bottom:697.435800px;}
.y4{bottom:701.394600px;}
.y6d{bottom:704.185425px;}
.y2c2{bottom:704.201550px;}
.y23c{bottom:704.206050px;}
.y28b{bottom:704.214300px;}
.y26d{bottom:704.225925px;}
.y16f{bottom:704.242425px;}
.y193{bottom:708.738300px;}
.y2a7{bottom:710.935050px;}
.y215{bottom:710.947425px;}
.y108{bottom:710.959425px;}
.y256{bottom:710.967675px;}
.y1b7{bottom:710.972175px;}
.y93{bottom:710.975925px;}
.ye1{bottom:710.976300px;}
.y124{bottom:710.988300px;}
.y1e{bottom:712.624500px;}
.y3d{bottom:714.575850px;}
.y2ee{bottom:715.439925px;}
.ybc{bottom:720.457425px;}
.y6c{bottom:722.189550px;}
.y2c1{bottom:722.205675px;}
.y16e{bottom:722.209800px;}
.y26c{bottom:722.230050px;}
.y192{bottom:726.742425px;}
.y1d2{bottom:728.939175px;}
.y214{bottom:728.951550px;}
.y23b{bottom:728.959800px;}
.y107{bottom:728.963550px;}
.y28a{bottom:728.968050px;}
.y255{bottom:728.971800px;}
.y1b6{bottom:728.976300px;}
.y92{bottom:728.980050px;}
.ye0{bottom:728.980425px;}
.y123{bottom:728.992425px;}
.y3c{bottom:732.579975px;}
.y2ed{bottom:733.444050px;}
.ybb{bottom:738.461550px;}
.y6b{bottom:740.193675px;}
.y2c0{bottom:740.209800px;}
.y16d{bottom:740.213925px;}
.y26b{bottom:740.234175px;}
.y1d{bottom:741.424500px;}
.y191{bottom:744.738300px;}
.y122{bottom:746.943300px;}
.y213{bottom:746.955675px;}
.y23a{bottom:746.963925px;}
.y106{bottom:746.967675px;}
.y289{bottom:746.972175px;}
.y254{bottom:746.975925px;}
.y1b5{bottom:746.980425px;}
.y91{bottom:746.984175px;}
.ydf{bottom:746.984550px;}
.y3b{bottom:750.584100px;}
.yba{bottom:756.465675px;}
.y1c{bottom:757.624500px;}
.y14a{bottom:758.197800px;}
.y2bf{bottom:758.213925px;}
.y16c{bottom:758.218050px;}
.y26a{bottom:758.238300px;}
.y190{bottom:762.742425px;}
.y6a{bottom:764.947425px;}
.y212{bottom:764.959800px;}
.y239{bottom:764.968050px;}
.y105{bottom:764.971800px;}
.y288{bottom:764.976300px;}
.y253{bottom:764.980050px;}
.y1b4{bottom:764.984550px;}
.y90{bottom:764.988300px;}
.yde{bottom:764.988675px;}
.yb9{bottom:774.469800px;}
.y149{bottom:776.201925px;}
.y2be{bottom:776.218050px;}
.y16b{bottom:776.222175px;}
.y269{bottom:776.242425px;}
.y18f{bottom:780.706800px;}
.y69{bottom:782.951550px;}
.y211{bottom:782.963925px;}
.y238{bottom:782.972175px;}
.y104{bottom:782.975925px;}
.y287{bottom:782.980425px;}
.y252{bottom:782.984175px;}
.y8f{bottom:782.992425px;}
.ydd{bottom:782.992800px;}
.y1b{bottom:786.424500px;}
.y1b3{bottom:789.738300px;}
.yb8{bottom:792.473925px;}
.y148{bottom:794.206050px;}
.y2bd{bottom:794.222175px;}
.y18e{bottom:798.710925px;}
.y3a{bottom:800.084100px;}
.y68{bottom:800.955675px;}
.y210{bottom:800.968050px;}
.y16a{bottom:800.975925px;}
.y237{bottom:800.976300px;}
.y103{bottom:800.980050px;}
.y286{bottom:800.984550px;}
.y8e{bottom:800.988300px;}
.ydc{bottom:807.705300px;}
.y1b2{bottom:807.742425px;}
.y3{bottom:809.022000px;}
.yb7{bottom:810.478050px;}
.y147{bottom:812.210175px;}
.y2bc{bottom:812.226300px;}
.y1a{bottom:815.224500px;}
.y18d{bottom:816.715050px;}
.y67{bottom:818.959800px;}
.y169{bottom:818.980050px;}
.y236{bottom:818.980425px;}
.y102{bottom:818.984175px;}
.y285{bottom:818.988675px;}
.y8d{bottom:818.992425px;}
.ydb{bottom:825.709425px;}
.y1b1{bottom:825.717675px;}
.y20f{bottom:825.721800px;}
.yb6{bottom:828.482175px;}
.y146{bottom:830.214300px;}
.y66{bottom:836.963925px;}
.y2bb{bottom:836.980050px;}
.y168{bottom:836.984175px;}
.y235{bottom:836.984550px;}
.y8c{bottom:836.988300px;}
.y284{bottom:836.992800px;}
.y251{bottom:836.996550px;}
.y18c{bottom:841.468800px;}
.yda{bottom:843.713550px;}
.y1b0{bottom:843.721800px;}
.y20e{bottom:843.725925px;}
.y19{bottom:844.024500px;}
.yb5{bottom:846.486300px;}
.y145{bottom:848.218425px;}
.y39{bottom:849.584100px;}
.y65{bottom:854.968050px;}
.y2ba{bottom:854.984175px;}
.y167{bottom:854.988300px;}
.y8b{bottom:854.992425px;}
.y18b{bottom:859.472925px;}
.yd9{bottom:861.717675px;}
.y1af{bottom:861.725925px;}
.y20d{bottom:861.730050px;}
.y234{bottom:861.738300px;}
.yb4{bottom:864.490425px;}
.y144{bottom:866.222550px;}
.y18{bottom:872.824500px;}
.y64{bottom:872.972175px;}
.y2b9{bottom:872.988300px;}
.y166{bottom:872.992425px;}
.y8a{bottom:872.996550px;}
.yd8{bottom:879.721800px;}
.y1ae{bottom:879.730050px;}
.y20c{bottom:879.734175px;}
.y233{bottom:879.742425px;}
.y143{bottom:884.226675px;}
.y38{bottom:887.384100px;}
.y101{bottom:890.976300px;}
.y165{bottom:890.980425px;}
.y2b8{bottom:890.992425px;}
.y63{bottom:897.725925px;}
.y1ad{bottom:897.734175px;}
.y20b{bottom:897.738300px;}
.y2{bottom:900.552000px;}
.y17{bottom:901.629000px;}
.y18a{bottom:902.230800px;}
.y100{bottom:908.980425px;}
.y164{bottom:908.984550px;}
.y2b7{bottom:908.996550px;}
.y62{bottom:915.730050px;}
.y1ac{bottom:915.738300px;}
.y20a{bottom:915.742425px;}
.y37{bottom:925.184100px;}
.y142{bottom:926.984550px;}
.y163{bottom:926.988675px;}
.y16{bottom:930.424500px;}
.y61{bottom:933.734175px;}
.y1ab{bottom:933.742425px;}
.y141{bottom:944.988675px;}
.y162{bottom:944.992800px;}
.y15{bottom:946.624500px;}
.y60{bottom:951.738300px;}
.y5f{bottom:969.742425px;}
.y14{bottom:970.924500px;}
.y5e{bottom:987.746550px;}
.y1{bottom:992.052000px;}
.y13{bottom:994.324500px;}
.y12{bottom:1021.624500px;}
.y36{bottom:1025.260650px;}
.y5d{bottom:1025.299050px;}
.y34{bottom:1034.397000px;}
.h17{height:30.182039px;}
.h9{height:33.648000px;}
.h23{height:34.415438px;}
.hd{height:36.774000px;}
.h7{height:37.546875px;}
.hc{height:39.564000px;}
.h8{height:42.060000px;}
.he{height:46.248000px;}
.hb{height:46.266000px;}
.h16{height:47.165039px;}
.h32{height:47.174039px;}
.h18{height:49.280273px;}
.h11{height:49.939453px;}
.ha{height:51.075000px;}
.h13{height:55.488281px;}
.h14{height:56.875488px;}
.h31{height:56.875788px;}
.h1e{height:56.891988px;}
.h1a{height:56.908488px;}
.h27{height:56.924988px;}
.h28{height:56.939988px;}
.h1f{height:56.941488px;}
.h37{height:56.956488px;}
.h1c{height:56.957988px;}
.h26{height:56.966688px;}
.h35{height:56.971488px;}
.h20{height:56.972988px;}
.h2f{height:56.989488px;}
.h22{height:56.990988px;}
.h15{height:57.005988px;}
.h34{height:57.007488px;}
.h29{height:57.022488px;}
.h21{height:57.023988px;}
.h2b{height:57.034488px;}
.h33{height:57.037488px;}
.h2c{height:57.038988px;}
.h1d{height:57.040488px;}
.h2d{height:57.070488px;}
.h24{height:57.088488px;}
.h1b{height:57.119988px;}
.h2e{height:57.136488px;}
.h36{height:57.169488px;}
.h25{height:57.181188px;}
.h2a{height:57.202488px;}
.h30{height:57.413988px;}
.h19{height:61.037109px;}
.h6{height:74.880000px;}
.h5{height:81.720000px;}
.hf{height:98.064000px;}
.h4{height:104.832000px;}
.h3{height:114.408000px;}
.h12{height:116.525391px;}
.h1{height:171.612000px;}
.h2{height:245.160000px;}
.h10{height:1080.000000px;}
.h0{height:1081.500000px;}
.h38{height:1081.512000px;}
.w0{width:756.000000px;}
.xc{left:-810.551850px;}
.x7{left:-788.851500px;}
.x6{left:-783.408750px;}
.x5{left:-779.658000px;}
.xd{left:-675.554100px;}
.x8{left:-629.472450px;}
.x9{left:-614.103450px;}
.xb{left:-550.083900px;}
.xa{left:-530.684100px;}
.xf{left:-62.067150px;}
.xe{left:-59.163000px;}
.x0{left:0.000000px;}
.x1{left:46.095300px;}
.x22{left:67.648500px;}
.x21{left:73.091250px;}
.x20{left:76.842000px;}
.x16{left:108.000000px;}
.x17{left:129.263625px;}
.x18{left:130.556400px;}
.x13{left:149.168550px;}
.x19{left:153.689400px;}
.x12{left:169.297050px;}
.x27{left:180.945900px;}
.x1a{left:218.006400px;}
.x23{left:227.027550px;}
.x24{left:242.396550px;}
.x14{left:252.425550px;}
.x15{left:280.782000px;}
.x26{left:306.416100px;}
.x1b{left:307.858950px;}
.x25{left:325.815900px;}
.x2{left:350.926350px;}
.x10{left:504.375750px;}
.x3{left:520.144350px;}
.x11{left:524.786100px;}
.x4{left:624.262350px;}
.x29{left:794.432850px;}
.x28{left:797.337000px;}
.x1c{left:902.595300px;}
.x1d{left:1207.426350px;}
.x1e{left:1376.644350px;}
.x1f{left:1480.762350px;}
@media print{
.v2{vertical-align:-15.096000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.104000pt;}
.v1{vertical-align:18.301333pt;}
.ls5{letter-spacing:-9.706667pt;}
.ls7{letter-spacing:-3.434667pt;}
.ls9{letter-spacing:-3.200000pt;}
.ls17{letter-spacing:-2.352000pt;}
.ls1d{letter-spacing:-2.256000pt;}
.lsa{letter-spacing:-2.240000pt;}
.ls10{letter-spacing:-1.288000pt;}
.ls1f{letter-spacing:-0.853333pt;}
.ls15{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls16{letter-spacing:-0.528000pt;}
.ls27{letter-spacing:-0.414315pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000267pt;}
.ls18{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.058667pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.234667pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.336000pt;}
.lse{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.768000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls2{letter-spacing:2.880000pt;}
.ls20{letter-spacing:4.266667pt;}
.ls8{letter-spacing:4.586667pt;}
.lsf{letter-spacing:5.133333pt;}
.ls24{letter-spacing:5.749333pt;}
.lsb{letter-spacing:7.573333pt;}
.ls28{letter-spacing:8.036000pt;}
.lsc{letter-spacing:8.533333pt;}
.ls1{letter-spacing:9.557333pt;}
.ls21{letter-spacing:10.240000pt;}
.ls0{letter-spacing:12.800000pt;}
.ls25{letter-spacing:18.042667pt;}
.ls26{letter-spacing:20.381867pt;}
.ls4{letter-spacing:29.120000pt;}
.ls3{letter-spacing:45.248000pt;}
.ls23{letter-spacing:108.000000pt;}
.ws0{word-spacing:-112.320000pt;}
.ws1{word-spacing:-96.000000pt;}
.ws2{word-spacing:-48.384000pt;}
.ws4{word-spacing:-32.320000pt;}
.ws3{word-spacing:-27.178667pt;}
.ws6{word-spacing:-22.466667pt;}
.ws9{word-spacing:-21.866667pt;}
.ws8{word-spacing:-21.013333pt;}
.ws114{word-spacing:-20.416000pt;}
.ws3e{word-spacing:-13.666667pt;}
.ws3d{word-spacing:-12.000000pt;}
.ws5c{word-spacing:-11.333333pt;}
.ws5{word-spacing:-10.133333pt;}
.ws7{word-spacing:-9.093333pt;}
.ws29{word-spacing:-7.967600pt;}
.ws18{word-spacing:-6.960000pt;}
.ws6c{word-spacing:-6.607333pt;}
.ws2a{word-spacing:-6.232000pt;}
.ws11c{word-spacing:-6.068000pt;}
.ws115{word-spacing:-5.904000pt;}
.ws4a{word-spacing:-5.749333pt;}
.wsfb{word-spacing:-5.576000pt;}
.ws3f{word-spacing:-5.466667pt;}
.ws7b{word-spacing:-4.850667pt;}
.wsdb{word-spacing:-4.810667pt;}
.ws61{word-spacing:-4.646667pt;}
.ws5a{word-spacing:-4.442667pt;}
.ws8c{word-spacing:-4.373333pt;}
.ws95{word-spacing:-4.045333pt;}
.wsd5{word-spacing:-3.990667pt;}
.wscd{word-spacing:-3.608000pt;}
.wsbd{word-spacing:-3.553333pt;}
.ws6b{word-spacing:-3.354667pt;}
.ws10b{word-spacing:-3.170667pt;}
.wsd4{word-spacing:-3.061333pt;}
.wsc4{word-spacing:-2.952000pt;}
.wsb0{word-spacing:-2.788000pt;}
.ws87{word-spacing:-2.733333pt;}
.ws53{word-spacing:-2.678667pt;}
.ws11b{word-spacing:-2.460000pt;}
.ws54{word-spacing:-2.350667pt;}
.wsbe{word-spacing:-2.296000pt;}
.wsaf{word-spacing:-2.132000pt;}
.wsa3{word-spacing:-2.130667pt;}
.ws73{word-spacing:-2.077333pt;}
.ws112{word-spacing:-2.022667pt;}
.ws9e{word-spacing:-1.968000pt;}
.ws113{word-spacing:-1.904000pt;}
.ws75{word-spacing:-1.858667pt;}
.ws93{word-spacing:-1.804000pt;}
.ws2f{word-spacing:-1.585333pt;}
.ws7c{word-spacing:-1.541333pt;}
.ws71{word-spacing:-1.530667pt;}
.wsa8{word-spacing:-1.476000pt;}
.ws111{word-spacing:-1.421333pt;}
.wsb9{word-spacing:-1.366667pt;}
.ws98{word-spacing:-1.312000pt;}
.wsab{word-spacing:-1.202667pt;}
.wsf4{word-spacing:-1.148000pt;}
.ws34{word-spacing:-1.093333pt;}
.ws56{word-spacing:-0.984000pt;}
.ws8a{word-spacing:-0.929333pt;}
.ws49{word-spacing:-0.874667pt;}
.ws33{word-spacing:-0.820000pt;}
.ws13{word-spacing:-0.768000pt;}
.wsd9{word-spacing:-0.710667pt;}
.ws2d{word-spacing:-0.656000pt;}
.wsc3{word-spacing:-0.634667pt;}
.ws79{word-spacing:-0.546667pt;}
.ws15{word-spacing:-0.336000pt;}
.wse5{word-spacing:-0.328000pt;}
.wsb3{word-spacing:-0.317333pt;}
.ws25{word-spacing:-0.288000pt;}
.ws4e{word-spacing:-0.273333pt;}
.ws3c{word-spacing:-0.272000pt;}
.ws23{word-spacing:-0.234667pt;}
.ws28{word-spacing:-0.176000pt;}
.ws50{word-spacing:-0.164000pt;}
.ws8e{word-spacing:-0.109333pt;}
.ws26{word-spacing:-0.096000pt;}
.ws19{word-spacing:-0.058667pt;}
.ws57{word-spacing:-0.054667pt;}
.ws21{word-spacing:-0.048000pt;}
.wsc{word-spacing:0.000000pt;}
.ws24{word-spacing:0.048000pt;}
.ws128{word-spacing:0.054667pt;}
.ws6f{word-spacing:0.109333pt;}
.wscc{word-spacing:0.164000pt;}
.wsbc{word-spacing:0.218667pt;}
.ws102{word-spacing:0.226667pt;}
.wsae{word-spacing:0.273333pt;}
.ws60{word-spacing:0.328000pt;}
.wsd1{word-spacing:0.382667pt;}
.wsff{word-spacing:0.414315pt;}
.ws127{word-spacing:0.437333pt;}
.wsa6{word-spacing:0.492000pt;}
.wsb4{word-spacing:0.544000pt;}
.ws7f{word-spacing:0.546667pt;}
.ws78{word-spacing:0.601333pt;}
.wsa5{word-spacing:0.680000pt;}
.ws2c{word-spacing:0.710667pt;}
.ws5b{word-spacing:0.725333pt;}
.ws62{word-spacing:0.765333pt;}
.ws17{word-spacing:0.768000pt;}
.wsfe{word-spacing:0.820000pt;}
.wse3{word-spacing:0.874667pt;}
.ws69{word-spacing:0.929333pt;}
.wsf{word-spacing:0.960000pt;}
.wsa0{word-spacing:0.984000pt;}
.wsb1{word-spacing:1.038667pt;}
.ws107{word-spacing:1.088000pt;}
.wsb7{word-spacing:1.093333pt;}
.ws4b{word-spacing:1.148000pt;}
.wsb5{word-spacing:1.178667pt;}
.ws39{word-spacing:1.202667pt;}
.ws31{word-spacing:1.257333pt;}
.ws10{word-spacing:1.288000pt;}
.ws10d{word-spacing:1.312000pt;}
.ws83{word-spacing:1.366667pt;}
.ws59{word-spacing:1.405333pt;}
.ws76{word-spacing:1.421333pt;}
.ws81{word-spacing:1.476000pt;}
.ws10a{word-spacing:1.530667pt;}
.ws101{word-spacing:1.632000pt;}
.wse4{word-spacing:1.640000pt;}
.wsd0{word-spacing:1.677333pt;}
.ws6a{word-spacing:1.768000pt;}
.ws3a{word-spacing:1.858667pt;}
.wsdc{word-spacing:1.949333pt;}
.ws8b{word-spacing:1.968000pt;}
.ws7e{word-spacing:2.022667pt;}
.wsa4{word-spacing:2.085333pt;}
.ws116{word-spacing:2.132000pt;}
.wse{word-spacing:2.240000pt;}
.wsb2{word-spacing:2.241333pt;}
.ws27{word-spacing:2.256000pt;}
.ws1f{word-spacing:2.352000pt;}
.wsc0{word-spacing:2.405333pt;}
.wsad{word-spacing:2.460000pt;}
.ws125{word-spacing:2.514667pt;}
.wsa9{word-spacing:2.569333pt;}
.ws37{word-spacing:2.624000pt;}
.ws32{word-spacing:2.733333pt;}
.ws106{word-spacing:2.788000pt;}
.ws92{word-spacing:2.842667pt;}
.ws108{word-spacing:2.952000pt;}
.ws119{word-spacing:3.061333pt;}
.ws64{word-spacing:3.116000pt;}
.ws63{word-spacing:3.170667pt;}
.wsd{word-spacing:3.200000pt;}
.ws3b{word-spacing:3.218667pt;}
.wsdf{word-spacing:3.264000pt;}
.wsba{word-spacing:3.280000pt;}
.ws30{word-spacing:3.334667pt;}
.ws74{word-spacing:3.389333pt;}
.wse1{word-spacing:3.400000pt;}
.ws70{word-spacing:3.444000pt;}
.wsda{word-spacing:3.498667pt;}
.wse0{word-spacing:3.536000pt;}
.ws8f{word-spacing:3.608000pt;}
.ws11d{word-spacing:3.662667pt;}
.wsa2{word-spacing:3.717333pt;}
.ws46{word-spacing:3.826667pt;}
.ws4f{word-spacing:3.881333pt;}
.ws4c{word-spacing:3.936000pt;}
.wsa{word-spacing:4.032000pt;}
.ws91{word-spacing:4.045333pt;}
.wsb6{word-spacing:4.100000pt;}
.ws103{word-spacing:4.209333pt;}
.ws36{word-spacing:4.264000pt;}
.wsc8{word-spacing:4.318667pt;}
.wse6{word-spacing:4.373333pt;}
.ws40{word-spacing:4.428000pt;}
.ws97{word-spacing:4.482667pt;}
.wsc1{word-spacing:4.537333pt;}
.ws109{word-spacing:4.592000pt;}
.wsd6{word-spacing:4.646667pt;}
.wsd2{word-spacing:4.756000pt;}
.wsc9{word-spacing:4.865333pt;}
.wsde{word-spacing:4.896000pt;}
.ws6d{word-spacing:4.920000pt;}
.wsb8{word-spacing:4.974667pt;}
.ws7d{word-spacing:4.986667pt;}
.ws77{word-spacing:5.029333pt;}
.wse2{word-spacing:5.138667pt;}
.ws9d{word-spacing:5.302667pt;}
.ws89{word-spacing:5.304000pt;}
.ws9c{word-spacing:5.412000pt;}
.wsd8{word-spacing:5.466667pt;}
.ws38{word-spacing:5.521333pt;}
.wsbf{word-spacing:5.685333pt;}
.ws120{word-spacing:5.794667pt;}
.ws100{word-spacing:5.849333pt;}
.ws121{word-spacing:5.904000pt;}
.ws82{word-spacing:6.068000pt;}
.ws96{word-spacing:6.177333pt;}
.wsea{word-spacing:6.341333pt;}
.ws42{word-spacing:6.396000pt;}
.wsc2{word-spacing:6.560000pt;}
.ws84{word-spacing:6.614667pt;}
.ws94{word-spacing:6.833333pt;}
.wsac{word-spacing:6.888000pt;}
.wsf3{word-spacing:6.942667pt;}
.wse8{word-spacing:6.997333pt;}
.ws44{word-spacing:7.052000pt;}
.ws66{word-spacing:7.106667pt;}
.ws48{word-spacing:7.161333pt;}
.wsf8{word-spacing:7.216000pt;}
.wsaa{word-spacing:7.270667pt;}
.ws67{word-spacing:7.325333pt;}
.ws72{word-spacing:7.380000pt;}
.ws80{word-spacing:7.434667pt;}
.wscb{word-spacing:7.544000pt;}
.wscf{word-spacing:7.653333pt;}
.wsf0{word-spacing:7.708000pt;}
.ws99{word-spacing:7.872000pt;}
.ws5e{word-spacing:7.926667pt;}
.ws117{word-spacing:7.981333pt;}
.wsd3{word-spacing:8.036000pt;}
.wsec{word-spacing:8.090667pt;}
.ws41{word-spacing:8.200000pt;}
.wsdd{word-spacing:8.296000pt;}
.ws5f{word-spacing:8.473333pt;}
.ws45{word-spacing:8.637333pt;}
.ws7a{word-spacing:8.746667pt;}
.ws47{word-spacing:8.910667pt;}
.ws8d{word-spacing:9.293333pt;}
.ws123{word-spacing:9.348000pt;}
.ws88{word-spacing:9.457333pt;}
.ws118{word-spacing:9.512000pt;}
.wsef{word-spacing:9.566667pt;}
.wse7{word-spacing:9.621333pt;}
.wsb{word-spacing:9.706667pt;}
.ws11e{word-spacing:9.785333pt;}
.wsf5{word-spacing:9.840000pt;}
.wsed{word-spacing:9.894667pt;}
.ws68{word-spacing:9.949333pt;}
.wsf7{word-spacing:10.004000pt;}
.wsfc{word-spacing:10.058667pt;}
.wsa1{word-spacing:10.113333pt;}
.wsfd{word-spacing:10.386667pt;}
.ws5d{word-spacing:10.496000pt;}
.ws9a{word-spacing:10.660000pt;}
.ws11a{word-spacing:10.698667pt;}
.ws51{word-spacing:10.714667pt;}
.ws10e{word-spacing:10.824000pt;}
.wsee{word-spacing:10.933333pt;}
.ws55{word-spacing:10.988000pt;}
.ws1e{word-spacing:11.000000pt;}
.ws10c{word-spacing:11.097333pt;}
.wsca{word-spacing:11.261333pt;}
.ws86{word-spacing:11.698667pt;}
.wse9{word-spacing:11.917333pt;}
.ws9b{word-spacing:12.409333pt;}
.ws6e{word-spacing:12.464000pt;}
.ws2b{word-spacing:12.573333pt;}
.wsfa{word-spacing:12.628000pt;}
.ws126{word-spacing:12.792000pt;}
.ws104{word-spacing:12.846667pt;}
.wsf1{word-spacing:13.174667pt;}
.ws122{word-spacing:13.502667pt;}
.wseb{word-spacing:13.557333pt;}
.ws110{word-spacing:14.049333pt;}
.ws4d{word-spacing:14.322667pt;}
.wsd7{word-spacing:14.377333pt;}
.wsa7{word-spacing:14.432000pt;}
.ws65{word-spacing:14.705333pt;}
.wsc7{word-spacing:14.814667pt;}
.ws11f{word-spacing:14.978667pt;}
.wsf2{word-spacing:15.142667pt;}
.wsbb{word-spacing:15.580000pt;}
.wsc5{word-spacing:15.962667pt;}
.ws90{word-spacing:17.165333pt;}
.ws2e{word-spacing:17.274667pt;}
.ws85{word-spacing:17.329333pt;}
.ws9f{word-spacing:18.149333pt;}
.wsce{word-spacing:18.258667pt;}
.wsc6{word-spacing:18.532000pt;}
.wsf9{word-spacing:18.805333pt;}
.ws105{word-spacing:19.352000pt;}
.ws10f{word-spacing:19.461333pt;}
.ws35{word-spacing:20.390667pt;}
.ws58{word-spacing:20.445333pt;}
.ws43{word-spacing:20.609333pt;}
.wsf6{word-spacing:22.304000pt;}
.ws52{word-spacing:22.741333pt;}
.ws124{word-spacing:23.178667pt;}
.ws14{word-spacing:29.120000pt;}
.ws12{word-spacing:122.560000pt;}
.ws1b{word-spacing:141.040000pt;}
.ws1d{word-spacing:153.040000pt;}
.ws11{word-spacing:169.920000pt;}
.ws16{word-spacing:185.640000pt;}
.ws22{word-spacing:196.200000pt;}
.ws1c{word-spacing:197.640000pt;}
.ws20{word-spacing:204.400000pt;}
.ws1a{word-spacing:209.080000pt;}
._1b{margin-left:-177.505067pt;}
._15{margin-left:-154.998400pt;}
._13{margin-left:-139.516800pt;}
._1a{margin-left:-126.563200pt;}
._37{margin-left:-125.671467pt;}
._18{margin-left:-110.310400pt;}
._6{margin-left:-22.656000pt;}
._4{margin-left:-9.984000pt;}
._26{margin-left:-8.764800pt;}
._10{margin-left:-7.687467pt;}
._2c{margin-left:-6.704933pt;}
._f{margin-left:-5.504000pt;}
._5{margin-left:-3.936000pt;}
._8{margin-left:-3.008000pt;}
._21{margin-left:-2.078933pt;}
._1{margin-left:-1.187200pt;}
._3{width:1.702400pt;}
._b{width:2.971733pt;}
._0{width:4.009600pt;}
._e{width:5.034667pt;}
._2{width:5.936000pt;}
._c{width:7.601067pt;}
._d{width:8.896000pt;}
._27{width:9.832133pt;}
._a{width:10.931200pt;}
._2a{width:11.826533pt;}
._30{width:12.729733pt;}
._2f{width:14.617867pt;}
._2b{width:15.580000pt;}
._17{width:16.533333pt;}
._33{width:17.494000pt;}
._2d{width:18.734267pt;}
._7{width:20.448000pt;}
._31{width:21.913200pt;}
._2e{width:23.555867pt;}
._9{width:28.288000pt;}
._34{width:30.055733pt;}
._12{width:31.171467pt;}
._29{width:35.065867pt;}
._28{width:36.064533pt;}
._19{width:37.520000pt;}
._16{width:42.674133pt;}
._36{width:43.565867pt;}
._32{width:108.000000pt;}
._1e{width:112.094400pt;}
._22{width:119.953333pt;}
._1c{width:124.041067pt;}
._20{width:134.884533pt;}
._11{width:144.497333pt;}
._35{width:145.389067pt;}
._25{width:151.556533pt;}
._14{width:154.081067pt;}
._24{width:210.427200pt;}
._23{width:222.572267pt;}
._1d{width:433.605333pt;}
._1f{width:438.122667pt;}
.fs11{font-size:26.429333pt;}
.fsf{font-size:31.870400pt;}
.fs4{font-size:32.000000pt;}
.fsb{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs10{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fse{font-size:54.666667pt;}
.fs9{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:66.666667pt;}
.fs3{font-size:106.666667pt;}
.fsd{font-size:112.000000pt;}
.fsc{font-size:128.000000pt;}
.fs2{font-size:149.333333pt;}
.fs0{font-size:224.000000pt;}
.fs1{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:40.923067pt;}
.y35{bottom:41.136800pt;}
.y10{bottom:61.723067pt;}
.y209{bottom:71.990000pt;}
.y5c{bottom:71.994000pt;}
.y140{bottom:71.996000pt;}
.yb3{bottom:71.998000pt;}
.y2ec{bottom:73.822933pt;}
.yff{bottom:75.774000pt;}
.y208{bottom:83.992000pt;}
.y5b{bottom:83.996000pt;}
.y13f{bottom:83.998000pt;}
.yb2{bottom:87.774000pt;}
.y2eb{bottom:89.826600pt;}
.yfe{bottom:93.598000pt;}
.y207{bottom:95.994000pt;}
.y5a{bottom:95.998000pt;}
.y2a6{bottom:97.374000pt;}
.y13e{bottom:99.774000pt;}
.yb1{bottom:105.598000pt;}
.y304{bottom:105.830267pt;}
.y206{bottom:107.996000pt;}
.yfd{bottom:109.374000pt;}
.y59{bottom:111.774000pt;}
.y2ea{bottom:111.829933pt;}
.y2b6{bottom:115.196000pt;}
.y2a5{bottom:118.974000pt;}
.y205{bottom:119.998000pt;}
.yb0{bottom:121.374000pt;}
.y303{bottom:121.833933pt;}
.y89{bottom:123.975267pt;}
.yfc{bottom:127.198000pt;}
.y2e9{bottom:127.833600pt;}
.y58{bottom:129.596000pt;}
.y161{bottom:130.974000pt;}
.yf{bottom:134.018933pt;}
.y204{bottom:135.774000pt;}
.y302{bottom:137.837600pt;}
.yaf{bottom:139.198000pt;}
.y88{bottom:139.978933pt;}
.y2a4{bottom:140.574000pt;}
.y57{bottom:141.598000pt;}
.yfb{bottom:142.974000pt;}
.y2e8{bottom:143.837267pt;}
.y232{bottom:143.967933pt;}
.y189{bottom:148.798000pt;}
.y203{bottom:153.598000pt;}
.y301{bottom:153.841267pt;}
.yae{bottom:154.974000pt;}
.y87{bottom:155.982600pt;}
.y56{bottom:157.374000pt;}
.y2a3{bottom:158.396000pt;}
.ye{bottom:159.487867pt;}
.y2e7{bottom:159.840933pt;}
.y231{bottom:159.971600pt;}
.yfa{bottom:160.796000pt;}
.y121{bottom:160.798000pt;}
.y1ea{bottom:161.978600pt;}
.y188{bottom:164.574000pt;}
.yc{bottom:168.960000pt;}
.yd{bottom:169.087867pt;}
.yd7{bottom:169.308733pt;}
.y202{bottom:169.374000pt;}
.y300{bottom:169.844933pt;}
.y2a2{bottom:170.398000pt;}
.y55{bottom:171.598000pt;}
.yad{bottom:172.798000pt;}
.y2e6{bottom:175.844600pt;}
.y230{bottom:175.975267pt;}
.y120{bottom:176.574000pt;}
.y1e9{bottom:177.982267pt;}
.y86{bottom:177.985933pt;}
.y187{bottom:182.398000pt;}
.y54{bottom:183.600000pt;}
.yd6{bottom:185.312400pt;}
.y2ff{bottom:185.848600pt;}
.y283{bottom:186.174000pt;}
.y201{bottom:187.194000pt;}
.yac{bottom:188.574000pt;}
.y2e5{bottom:191.848267pt;}
.y22f{bottom:191.978933pt;}
.y32{bottom:193.444000pt;}
.y1e8{bottom:193.985933pt;}
.y85{bottom:193.989600pt;}
.y268{bottom:194.394000pt;}
.y1d1{bottom:197.924267pt;}
.y186{bottom:198.174000pt;}
.yb{bottom:198.293333pt;}
.y13d{bottom:198.871800pt;}
.y200{bottom:199.196000pt;}
.yd5{bottom:201.316067pt;}
.y2fe{bottom:201.852267pt;}
.yab{bottom:206.396000pt;}
.y2e4{bottom:207.851933pt;}
.y22e{bottom:207.982600pt;}
.y1e7{bottom:209.989600pt;}
.y84{bottom:209.993267pt;}
.yf9{bottom:210.174000pt;}
.y1ff{bottom:211.198000pt;}
.y1d0{bottom:213.927933pt;}
.yd4{bottom:217.319733pt;}
.yaa{bottom:218.398000pt;}
.y31{bottom:219.044000pt;}
.y13c{bottom:220.875133pt;}
.y2fd{bottom:223.855600pt;}
.y2b5{bottom:223.967933pt;}
.y282{bottom:223.978600pt;}
.y1e6{bottom:225.993267pt;}
.y83{bottom:225.996933pt;}
.y1fe{bottom:226.974000pt;}
.ya{bottom:227.626667pt;}
.y2e3{bottom:229.855267pt;}
.y1cf{bottom:229.931600pt;}
.y22d{bottom:229.985933pt;}
.y11f{bottom:230.853467pt;}
.ya9{bottom:234.174000pt;}
.y13b{bottom:236.858533pt;}
.y250{bottom:238.395600pt;}
.y2fc{bottom:239.859267pt;}
.y2b4{bottom:239.971600pt;}
.y281{bottom:239.982267pt;}
.y160{bottom:239.989600pt;}
.y2d7{bottom:241.971267pt;}
.y1e5{bottom:241.996933pt;}
.y1aa{bottom:243.960933pt;}
.y30{bottom:244.644000pt;}
.y2e2{bottom:245.858933pt;}
.y1ce{bottom:245.935267pt;}
.y22c{bottom:245.989600pt;}
.yd3{bottom:246.765600pt;}
.y11e{bottom:246.857133pt;}
.yf8{bottom:251.989600pt;}
.y13a{bottom:252.862200pt;}
.y82{bottom:253.995600pt;}
.y24f{bottom:254.399267pt;}
.y33{bottom:255.028133pt;}
.y2fb{bottom:255.862933pt;}
.y2b3{bottom:255.975267pt;}
.y280{bottom:255.985933pt;}
.y2a1{bottom:255.989600pt;}
.y15f{bottom:255.993267pt;}
.y53{bottom:256.038400pt;}
.y2d6{bottom:257.974933pt;}
.y1a9{bottom:259.964600pt;}
.y2e1{bottom:261.862600pt;}
.y1cd{bottom:261.938933pt;}
.y185{bottom:261.985933pt;}
.y22b{bottom:261.993267pt;}
.y2f{bottom:262.244000pt;}
.y2e{bottom:262.248000pt;}
.yd2{bottom:262.769267pt;}
.y11d{bottom:262.860800pt;}
.y1e4{bottom:263.989600pt;}
.yf7{bottom:267.993267pt;}
.y139{bottom:268.865867pt;}
.y81{bottom:269.996933pt;}
.ya8{bottom:270.399267pt;}
.y24e{bottom:270.402933pt;}
.y2fa{bottom:271.866600pt;}
.y2b2{bottom:271.978933pt;}
.y15e{bottom:271.985933pt;}
.y27f{bottom:271.989600pt;}
.y2a0{bottom:271.993267pt;}
.y52{bottom:272.042067pt;}
.y2d5{bottom:273.978600pt;}
.y1a8{bottom:275.968267pt;}
.y2e0{bottom:277.866267pt;}
.y22a{bottom:277.877267pt;}
.y1cc{bottom:277.942600pt;}
.y184{bottom:277.989600pt;}
.yd1{bottom:278.772933pt;}
.y11c{bottom:278.864467pt;}
.y1e3{bottom:279.993267pt;}
.yf6{bottom:283.982267pt;}
.y138{bottom:284.869533pt;}
.y9{bottom:286.293333pt;}
.ya7{bottom:286.402933pt;}
.y24d{bottom:286.406600pt;}
.y2d{bottom:287.844000pt;}
.y2f9{bottom:287.870267pt;}
.y2b1{bottom:287.982600pt;}
.y29f{bottom:287.985933pt;}
.y15d{bottom:287.989600pt;}
.y27e{bottom:287.993267pt;}
.y51{bottom:288.045733pt;}
.y2d4{bottom:289.982267pt;}
.y2df{bottom:293.869933pt;}
.y229{bottom:293.880933pt;}
.y1cb{bottom:293.946267pt;}
.y1fd{bottom:293.953267pt;}
.y183{bottom:293.993267pt;}
.yd0{bottom:294.776600pt;}
.y11b{bottom:294.868133pt;}
.y1e2{bottom:295.949600pt;}
.y1a7{bottom:297.971600pt;}
.yf5{bottom:299.985933pt;}
.y137{bottom:300.873200pt;}
.y2c{bottom:302.244000pt;}
.y24c{bottom:302.410267pt;}
.y2f8{bottom:303.873933pt;}
.y29e{bottom:303.989600pt;}
.y15c{bottom:303.993267pt;}
.y50{bottom:304.049400pt;}
.y2d3{bottom:305.985933pt;}
.y80{bottom:309.873600pt;}
.y228{bottom:309.884600pt;}
.y182{bottom:309.924267pt;}
.y1ca{bottom:309.949933pt;}
.y1fc{bottom:309.956933pt;}
.ya6{bottom:309.964267pt;}
.y2b0{bottom:309.985933pt;}
.ycf{bottom:310.780267pt;}
.y11a{bottom:310.871800pt;}
.y1e1{bottom:311.953267pt;}
.y1a6{bottom:313.975267pt;}
.y8{bottom:315.626667pt;}
.yf4{bottom:315.989600pt;}
.y136{bottom:316.876867pt;}
.y2f7{bottom:319.877600pt;}
.y27d{bottom:319.975600pt;}
.y15b{bottom:319.989600pt;}
.y29d{bottom:319.993267pt;}
.y4f{bottom:320.053067pt;}
.y2d2{bottom:321.989600pt;}
.y7f{bottom:325.877267pt;}
.y181{bottom:325.927933pt;}
.y1c9{bottom:325.953600pt;}
.y1fb{bottom:325.960600pt;}
.ya5{bottom:325.967933pt;}
.y24b{bottom:325.971600pt;}
.y2af{bottom:325.989600pt;}
.yce{bottom:326.783933pt;}
.y2b{bottom:327.844000pt;}
.y1e0{bottom:327.956933pt;}
.y1a5{bottom:329.978933pt;}
.y227{bottom:331.887933pt;}
.yf3{bottom:331.993267pt;}
.y119{bottom:332.875133pt;}
.y2f6{bottom:335.881267pt;}
.y27c{bottom:335.979267pt;}
.y15a{bottom:335.993267pt;}
.y29c{bottom:335.996933pt;}
.y4e{bottom:336.056733pt;}
.y2d1{bottom:337.993267pt;}
.y7e{bottom:341.880933pt;}
.y180{bottom:341.931600pt;}
.y1fa{bottom:341.964267pt;}
.ya4{bottom:341.971600pt;}
.y24a{bottom:341.975267pt;}
.y2ae{bottom:341.993267pt;}
.ycd{bottom:342.787600pt;}
.y1df{bottom:343.960600pt;}
.y7{bottom:344.960000pt;}
.y1a4{bottom:345.982600pt;}
.y135{bottom:346.369933pt;}
.y226{bottom:347.891600pt;}
.y1c8{bottom:347.956933pt;}
.y267{bottom:347.978600pt;}
.yf2{bottom:347.996933pt;}
.y118{bottom:348.853133pt;}
.y2f5{bottom:351.884933pt;}
.y159{bottom:351.996933pt;}
.y4d{bottom:352.060400pt;}
.y2a{bottom:353.444000pt;}
.y2d0{bottom:353.996933pt;}
.y7d{bottom:357.884600pt;}
.y1f9{bottom:357.967933pt;}
.ya3{bottom:357.975267pt;}
.y29b{bottom:357.978600pt;}
.y249{bottom:357.978933pt;}
.y27b{bottom:357.982600pt;}
.y1de{bottom:359.964267pt;}
.y1a3{bottom:361.986267pt;}
.y134{bottom:362.373600pt;}
.y2de{bottom:363.884267pt;}
.y225{bottom:363.895267pt;}
.y17f{bottom:363.934933pt;}
.y1c7{bottom:363.960600pt;}
.y266{bottom:363.982267pt;}
.y117{bottom:364.856800pt;}
.ycc{bottom:366.348933pt;}
.y2f4{bottom:367.888600pt;}
.y4c{bottom:368.064067pt;}
.yf1{bottom:369.967600pt;}
.y29{bottom:371.044000pt;}
.y158{bottom:373.888267pt;}
.y1f8{bottom:373.971600pt;}
.ya2{bottom:373.978933pt;}
.y29a{bottom:373.982267pt;}
.y248{bottom:373.982600pt;}
.y27a{bottom:373.986267pt;}
.y1dd{bottom:375.967933pt;}
.y1a2{bottom:377.989933pt;}
.y133{bottom:378.377267pt;}
.y7c{bottom:379.887933pt;}
.y224{bottom:379.898933pt;}
.y17e{bottom:379.938600pt;}
.y1c6{bottom:379.964267pt;}
.y265{bottom:379.985933pt;}
.y116{bottom:380.860467pt;}
.y2cf{bottom:381.996933pt;}
.ycb{bottom:382.352600pt;}
.y2f3{bottom:383.892267pt;}
.y4b{bottom:384.038733pt;}
.yf0{bottom:385.971267pt;}
.y157{bottom:389.891933pt;}
.y1f7{bottom:389.975267pt;}
.ya1{bottom:389.982600pt;}
.y299{bottom:389.985933pt;}
.y279{bottom:389.989933pt;}
.y1dc{bottom:391.971600pt;}
.y1a1{bottom:393.993600pt;}
.y132{bottom:394.380933pt;}
.y7b{bottom:395.891600pt;}
.y223{bottom:395.902600pt;}
.y17d{bottom:395.942267pt;}
.y1c5{bottom:395.967933pt;}
.y247{bottom:395.985933pt;}
.y264{bottom:395.989600pt;}
.y28{bottom:396.644000pt;}
.y115{bottom:396.864133pt;}
.yca{bottom:398.356267pt;}
.y4a{bottom:400.042400pt;}
.yef{bottom:401.974933pt;}
.y156{bottom:405.895600pt;}
.y1f6{bottom:405.978933pt;}
.ya0{bottom:405.986267pt;}
.y298{bottom:405.989600pt;}
.y278{bottom:405.993600pt;}
.y1db{bottom:407.975267pt;}
.y131{bottom:410.384600pt;}
.y7a{bottom:411.895267pt;}
.y222{bottom:411.906267pt;}
.y17c{bottom:411.945933pt;}
.y1c4{bottom:411.971600pt;}
.y246{bottom:411.989600pt;}
.y263{bottom:411.993267pt;}
.y114{bottom:412.867800pt;}
.yc9{bottom:414.359933pt;}
.y1a0{bottom:415.978600pt;}
.yee{bottom:417.978600pt;}
.y155{bottom:421.899267pt;}
.y2ce{bottom:421.975267pt;}
.y1f5{bottom:421.982600pt;}
.y297{bottom:421.993267pt;}
.y49{bottom:422.045733pt;}
.y27{bottom:422.244000pt;}
.y1da{bottom:423.978933pt;}
.y130{bottom:426.388267pt;}
.y79{bottom:427.898933pt;}
.y221{bottom:427.909933pt;}
.y17b{bottom:427.949600pt;}
.y277{bottom:427.964267pt;}
.y9f{bottom:427.989600pt;}
.y245{bottom:427.993267pt;}
.y262{bottom:427.996933pt;}
.y113{bottom:428.871467pt;}
.yc8{bottom:430.363600pt;}
.y19f{bottom:431.982267pt;}
.y1c3{bottom:433.974933pt;}
.yed{bottom:433.982267pt;}
.y154{bottom:437.902933pt;}
.y2cd{bottom:437.978933pt;}
.y296{bottom:437.996933pt;}
.y48{bottom:438.049400pt;}
.y26{bottom:439.844000pt;}
.y78{bottom:443.902600pt;}
.y17a{bottom:443.953267pt;}
.y276{bottom:443.967933pt;}
.y2ad{bottom:443.975267pt;}
.y1f4{bottom:443.985933pt;}
.y9e{bottom:443.993267pt;}
.y112{bottom:444.875133pt;}
.y1d9{bottom:445.982267pt;}
.y19e{bottom:447.985933pt;}
.y220{bottom:449.913267pt;}
.y12f{bottom:449.949600pt;}
.y261{bottom:449.967600pt;}
.y1c2{bottom:449.978600pt;}
.yec{bottom:449.985933pt;}
.yc7{bottom:452.366933pt;}
.y153{bottom:453.906600pt;}
.y2cc{bottom:453.982600pt;}
.y47{bottom:454.053067pt;}
.y77{bottom:459.906267pt;}
.y295{bottom:459.931933pt;}
.y9d{bottom:459.942600pt;}
.y275{bottom:459.971600pt;}
.y2ac{bottom:459.978933pt;}
.y1f3{bottom:459.989600pt;}
.y111{bottom:460.878800pt;}
.y1d8{bottom:461.985933pt;}
.y19d{bottom:463.989600pt;}
.y25{bottom:465.444000pt;}
.y2dd{bottom:465.905933pt;}
.y21f{bottom:465.916933pt;}
.y12e{bottom:465.953267pt;}
.y179{bottom:465.956600pt;}
.y260{bottom:465.971267pt;}
.y1c1{bottom:465.982267pt;}
.yeb{bottom:465.989600pt;}
.yc6{bottom:468.370600pt;}
.y152{bottom:469.910267pt;}
.y2cb{bottom:469.986267pt;}
.y46{bottom:470.056733pt;}
.y76{bottom:475.909933pt;}
.y294{bottom:475.935600pt;}
.y9c{bottom:475.946267pt;}
.y274{bottom:475.975267pt;}
.y2ab{bottom:475.982600pt;}
.y1f2{bottom:475.993267pt;}
.y1d7{bottom:477.989600pt;}
.y24{bottom:479.844000pt;}
.y19c{bottom:479.993267pt;}
.y2dc{bottom:481.909600pt;}
.y21e{bottom:481.920600pt;}
.y12d{bottom:481.956933pt;}
.y178{bottom:481.960267pt;}
.y25f{bottom:481.974933pt;}
.y1c0{bottom:481.985933pt;}
.yea{bottom:481.993267pt;}
.yc5{bottom:484.374267pt;}
.y151{bottom:485.913933pt;}
.y45{bottom:486.060400pt;}
.y110{bottom:490.410267pt;}
.y75{bottom:491.913600pt;}
.y293{bottom:491.939267pt;}
.y9b{bottom:491.949933pt;}
.y1f1{bottom:491.971600pt;}
.y273{bottom:491.978933pt;}
.y2ca{bottom:491.989600pt;}
.y244{bottom:491.996933pt;}
.y1d6{bottom:493.993267pt;}
.y19b{bottom:495.960600pt;}
.y2db{bottom:497.913267pt;}
.y21d{bottom:497.924267pt;}
.y12c{bottom:497.960600pt;}
.y177{bottom:497.963933pt;}
.y25e{bottom:497.978600pt;}
.y2aa{bottom:497.985933pt;}
.y1bf{bottom:497.989600pt;}
.ye9{bottom:497.993267pt;}
.yc4{bottom:500.377933pt;}
.y2f2{bottom:501.917600pt;}
.y44{bottom:502.064067pt;}
.y23{bottom:505.444000pt;}
.y10f{bottom:506.413933pt;}
.y74{bottom:507.917267pt;}
.y292{bottom:507.942933pt;}
.y9a{bottom:507.953600pt;}
.y1f0{bottom:507.975267pt;}
.y272{bottom:507.982600pt;}
.y2c9{bottom:507.993267pt;}
.y1d5{bottom:509.996933pt;}
.y19a{bottom:511.964267pt;}
.y2da{bottom:513.916933pt;}
.y21c{bottom:513.927933pt;}
.y12b{bottom:513.964267pt;}
.y176{bottom:513.967600pt;}
.y243{bottom:513.978600pt;}
.y25d{bottom:513.982267pt;}
.y2a9{bottom:513.989600pt;}
.y1be{bottom:513.993267pt;}
.ye8{bottom:513.996933pt;}
.y2f1{bottom:517.921267pt;}
.y43{bottom:518.067733pt;}
.yc3{bottom:522.381267pt;}
.y10e{bottom:522.417600pt;}
.y73{bottom:523.920933pt;}
.y291{bottom:523.946600pt;}
.y1ef{bottom:523.978933pt;}
.y2c8{bottom:523.985933pt;}
.y271{bottom:523.986267pt;}
.y199{bottom:527.967933pt;}
.y2d9{bottom:529.920600pt;}
.y21b{bottom:529.931600pt;}
.y1bd{bottom:529.953600pt;}
.y99{bottom:529.956933pt;}
.y12a{bottom:529.967933pt;}
.y175{bottom:529.971267pt;}
.y242{bottom:529.982267pt;}
.y25c{bottom:529.985933pt;}
.y2a8{bottom:529.993267pt;}
.y22{bottom:531.044000pt;}
.y2f0{bottom:533.924933pt;}
.ye7{bottom:535.956933pt;}
.y1d4{bottom:537.995600pt;}
.yc2{bottom:538.384933pt;}
.y10d{bottom:538.421267pt;}
.y150{bottom:539.924600pt;}
.y1ee{bottom:539.982600pt;}
.y2c7{bottom:539.989600pt;}
.y72{bottom:545.924267pt;}
.y21a{bottom:545.935267pt;}
.y290{bottom:545.949933pt;}
.y1bc{bottom:545.957267pt;}
.y98{bottom:545.960600pt;}
.y129{bottom:545.971600pt;}
.y174{bottom:545.974933pt;}
.y241{bottom:545.985933pt;}
.y25b{bottom:545.989600pt;}
.y42{bottom:547.602533pt;}
.y6{bottom:548.795200pt;}
.y2ef{bottom:549.928600pt;}
.y198{bottom:549.971267pt;}
.ye6{bottom:551.960600pt;}
.y1d3{bottom:553.996933pt;}
.yc1{bottom:554.388600pt;}
.y10c{bottom:554.424933pt;}
.y14f{bottom:555.928267pt;}
.y1ed{bottom:555.986267pt;}
.y2c6{bottom:555.993267pt;}
.y21{bottom:556.644000pt;}
.y71{bottom:561.927933pt;}
.y219{bottom:561.938933pt;}
.y28f{bottom:561.953600pt;}
.y97{bottom:561.964267pt;}
.y128{bottom:561.975267pt;}
.y173{bottom:561.978600pt;}
.y240{bottom:561.989600pt;}
.y25a{bottom:561.993267pt;}
.y41{bottom:563.606200pt;}
.y197{bottom:565.974933pt;}
.y1bb{bottom:567.960600pt;}
.ye5{bottom:567.964267pt;}
.yc0{bottom:570.392267pt;}
.y14e{bottom:571.931933pt;}
.y2c5{bottom:571.996933pt;}
.y70{bottom:577.931600pt;}
.y218{bottom:577.942600pt;}
.y28e{bottom:577.957267pt;}
.y270{bottom:577.967600pt;}
.y96{bottom:577.967933pt;}
.y127{bottom:577.978933pt;}
.y172{bottom:577.982267pt;}
.y10b{bottom:577.986267pt;}
.y1ec{bottom:577.989600pt;}
.y23f{bottom:577.993267pt;}
.y259{bottom:577.996933pt;}
.y40{bottom:579.609867pt;}
.y196{bottom:581.978600pt;}
.y20{bottom:582.244000pt;}
.y1ba{bottom:583.964267pt;}
.ye4{bottom:583.967933pt;}
.y5{bottom:586.128533pt;}
.ybf{bottom:586.395933pt;}
.y14d{bottom:587.935600pt;}
.y6f{bottom:593.935267pt;}
.y2c4{bottom:593.949600pt;}
.y23e{bottom:593.953600pt;}
.y28d{bottom:593.960933pt;}
.y26f{bottom:593.971267pt;}
.y95{bottom:593.971600pt;}
.y126{bottom:593.982600pt;}
.y171{bottom:593.985933pt;}
.y10a{bottom:593.989933pt;}
.y1eb{bottom:593.993267pt;}
.y3f{bottom:595.613533pt;}
.y195{bottom:597.982267pt;}
.y217{bottom:599.945933pt;}
.y258{bottom:599.963933pt;}
.y1b9{bottom:599.967933pt;}
.ye3{bottom:599.971600pt;}
.ybe{bottom:602.399600pt;}
.y14c{bottom:603.939267pt;}
.y1f{bottom:607.844000pt;}
.y6e{bottom:609.938933pt;}
.y2c3{bottom:609.953267pt;}
.y23d{bottom:609.957267pt;}
.y28c{bottom:609.964600pt;}
.y26e{bottom:609.974933pt;}
.y94{bottom:609.975267pt;}
.y170{bottom:609.989600pt;}
.y109{bottom:609.993600pt;}
.y194{bottom:613.985933pt;}
.y2d8{bottom:615.938600pt;}
.y216{bottom:615.949600pt;}
.y257{bottom:615.967600pt;}
.y1b8{bottom:615.971600pt;}
.ye2{bottom:615.975267pt;}
.y125{bottom:615.985933pt;}
.ybd{bottom:618.403267pt;}
.y3e{bottom:619.174867pt;}
.y14b{bottom:619.942933pt;}
.y4{bottom:623.461867pt;}
.y6d{bottom:625.942600pt;}
.y2c2{bottom:625.956933pt;}
.y23c{bottom:625.960933pt;}
.y28b{bottom:625.968267pt;}
.y26d{bottom:625.978600pt;}
.y16f{bottom:625.993267pt;}
.y193{bottom:629.989600pt;}
.y2a7{bottom:631.942267pt;}
.y215{bottom:631.953267pt;}
.y108{bottom:631.963933pt;}
.y256{bottom:631.971267pt;}
.y1b7{bottom:631.975267pt;}
.y93{bottom:631.978600pt;}
.ye1{bottom:631.978933pt;}
.y124{bottom:631.989600pt;}
.y1e{bottom:633.444000pt;}
.y3d{bottom:635.178533pt;}
.y2ee{bottom:635.946600pt;}
.ybc{bottom:640.406600pt;}
.y6c{bottom:641.946267pt;}
.y2c1{bottom:641.960600pt;}
.y16e{bottom:641.964267pt;}
.y26c{bottom:641.982267pt;}
.y192{bottom:645.993267pt;}
.y1d2{bottom:647.945933pt;}
.y214{bottom:647.956933pt;}
.y23b{bottom:647.964267pt;}
.y107{bottom:647.967600pt;}
.y28a{bottom:647.971600pt;}
.y255{bottom:647.974933pt;}
.y1b6{bottom:647.978933pt;}
.y92{bottom:647.982267pt;}
.ye0{bottom:647.982600pt;}
.y123{bottom:647.993267pt;}
.y3c{bottom:651.182200pt;}
.y2ed{bottom:651.950267pt;}
.ybb{bottom:656.410267pt;}
.y6b{bottom:657.949933pt;}
.y2c0{bottom:657.964267pt;}
.y16d{bottom:657.967933pt;}
.y26b{bottom:657.985933pt;}
.y1d{bottom:659.044000pt;}
.y191{bottom:661.989600pt;}
.y122{bottom:663.949600pt;}
.y213{bottom:663.960600pt;}
.y23a{bottom:663.967933pt;}
.y106{bottom:663.971267pt;}
.y289{bottom:663.975267pt;}
.y254{bottom:663.978600pt;}
.y1b5{bottom:663.982600pt;}
.y91{bottom:663.985933pt;}
.ydf{bottom:663.986267pt;}
.y3b{bottom:667.185867pt;}
.yba{bottom:672.413933pt;}
.y1c{bottom:673.444000pt;}
.y14a{bottom:673.953600pt;}
.y2bf{bottom:673.967933pt;}
.y16c{bottom:673.971600pt;}
.y26a{bottom:673.989600pt;}
.y190{bottom:677.993267pt;}
.y6a{bottom:679.953267pt;}
.y212{bottom:679.964267pt;}
.y239{bottom:679.971600pt;}
.y105{bottom:679.974933pt;}
.y288{bottom:679.978933pt;}
.y253{bottom:679.982267pt;}
.y1b4{bottom:679.986267pt;}
.y90{bottom:679.989600pt;}
.yde{bottom:679.989933pt;}
.yb9{bottom:688.417600pt;}
.y149{bottom:689.957267pt;}
.y2be{bottom:689.971600pt;}
.y16b{bottom:689.975267pt;}
.y269{bottom:689.993267pt;}
.y18f{bottom:693.961600pt;}
.y69{bottom:695.956933pt;}
.y211{bottom:695.967933pt;}
.y238{bottom:695.975267pt;}
.y104{bottom:695.978600pt;}
.y287{bottom:695.982600pt;}
.y252{bottom:695.985933pt;}
.y8f{bottom:695.993267pt;}
.ydd{bottom:695.993600pt;}
.y1b{bottom:699.044000pt;}
.y1b3{bottom:701.989600pt;}
.yb8{bottom:704.421267pt;}
.y148{bottom:705.960933pt;}
.y2bd{bottom:705.975267pt;}
.y18e{bottom:709.965267pt;}
.y3a{bottom:711.185867pt;}
.y68{bottom:711.960600pt;}
.y210{bottom:711.971600pt;}
.y16a{bottom:711.978600pt;}
.y237{bottom:711.978933pt;}
.y103{bottom:711.982267pt;}
.y286{bottom:711.986267pt;}
.y8e{bottom:711.989600pt;}
.ydc{bottom:717.960267pt;}
.y1b2{bottom:717.993267pt;}
.y3{bottom:719.130667pt;}
.yb7{bottom:720.424933pt;}
.y147{bottom:721.964600pt;}
.y2bc{bottom:721.978933pt;}
.y1a{bottom:724.644000pt;}
.y18d{bottom:725.968933pt;}
.y67{bottom:727.964267pt;}
.y169{bottom:727.982267pt;}
.y236{bottom:727.982600pt;}
.y102{bottom:727.985933pt;}
.y285{bottom:727.989933pt;}
.y8d{bottom:727.993267pt;}
.ydb{bottom:733.963933pt;}
.y1b1{bottom:733.971267pt;}
.y20f{bottom:733.974933pt;}
.yb6{bottom:736.428600pt;}
.y146{bottom:737.968267pt;}
.y66{bottom:743.967933pt;}
.y2bb{bottom:743.982267pt;}
.y168{bottom:743.985933pt;}
.y235{bottom:743.986267pt;}
.y8c{bottom:743.989600pt;}
.y284{bottom:743.993600pt;}
.y251{bottom:743.996933pt;}
.y18c{bottom:747.972267pt;}
.yda{bottom:749.967600pt;}
.y1b0{bottom:749.974933pt;}
.y20e{bottom:749.978600pt;}
.y19{bottom:750.244000pt;}
.yb5{bottom:752.432267pt;}
.y145{bottom:753.971933pt;}
.y39{bottom:755.185867pt;}
.y65{bottom:759.971600pt;}
.y2ba{bottom:759.985933pt;}
.y167{bottom:759.989600pt;}
.y8b{bottom:759.993267pt;}
.y18b{bottom:763.975933pt;}
.yd9{bottom:765.971267pt;}
.y1af{bottom:765.978600pt;}
.y20d{bottom:765.982267pt;}
.y234{bottom:765.989600pt;}
.yb4{bottom:768.435933pt;}
.y144{bottom:769.975600pt;}
.y18{bottom:775.844000pt;}
.y64{bottom:775.975267pt;}
.y2b9{bottom:775.989600pt;}
.y166{bottom:775.993267pt;}
.y8a{bottom:775.996933pt;}
.yd8{bottom:781.974933pt;}
.y1ae{bottom:781.982267pt;}
.y20c{bottom:781.985933pt;}
.y233{bottom:781.993267pt;}
.y143{bottom:785.979267pt;}
.y38{bottom:788.785867pt;}
.y101{bottom:791.978933pt;}
.y165{bottom:791.982600pt;}
.y2b8{bottom:791.993267pt;}
.y63{bottom:797.978600pt;}
.y1ad{bottom:797.985933pt;}
.y20b{bottom:797.989600pt;}
.y2{bottom:800.490667pt;}
.y17{bottom:801.448000pt;}
.y18a{bottom:801.982933pt;}
.y100{bottom:807.982600pt;}
.y164{bottom:807.986267pt;}
.y2b7{bottom:807.996933pt;}
.y62{bottom:813.982267pt;}
.y1ac{bottom:813.989600pt;}
.y20a{bottom:813.993267pt;}
.y37{bottom:822.385867pt;}
.y142{bottom:823.986267pt;}
.y163{bottom:823.989933pt;}
.y16{bottom:827.044000pt;}
.y61{bottom:829.985933pt;}
.y1ab{bottom:829.993267pt;}
.y141{bottom:839.989933pt;}
.y162{bottom:839.993600pt;}
.y15{bottom:841.444000pt;}
.y60{bottom:845.989600pt;}
.y5f{bottom:861.993267pt;}
.y14{bottom:863.044000pt;}
.y5e{bottom:877.996933pt;}
.y1{bottom:881.824000pt;}
.y13{bottom:883.844000pt;}
.y12{bottom:908.110667pt;}
.y36{bottom:911.342800pt;}
.y5d{bottom:911.376933pt;}
.y34{bottom:919.464000pt;}
.h17{height:26.828479pt;}
.h9{height:29.909333pt;}
.h23{height:30.591500pt;}
.hd{height:32.688000pt;}
.h7{height:33.375000pt;}
.hc{height:35.168000pt;}
.h8{height:37.386667pt;}
.he{height:41.109333pt;}
.hb{height:41.125333pt;}
.h16{height:41.924479pt;}
.h32{height:41.932479pt;}
.h18{height:43.804688pt;}
.h11{height:44.390625pt;}
.ha{height:45.400000pt;}
.h13{height:49.322917pt;}
.h14{height:50.555990pt;}
.h31{height:50.556256pt;}
.h1e{height:50.570656pt;}
.h1a{height:50.585323pt;}
.h27{height:50.599990pt;}
.h28{height:50.613323pt;}
.h1f{height:50.614656pt;}
.h37{height:50.627990pt;}
.h1c{height:50.629323pt;}
.h26{height:50.637056pt;}
.h35{height:50.641323pt;}
.h20{height:50.642656pt;}
.h2f{height:50.657323pt;}
.h22{height:50.658656pt;}
.h15{height:50.671990pt;}
.h34{height:50.673323pt;}
.h29{height:50.686656pt;}
.h21{height:50.687990pt;}
.h2b{height:50.697323pt;}
.h33{height:50.699990pt;}
.h2c{height:50.701323pt;}
.h1d{height:50.702656pt;}
.h2d{height:50.729323pt;}
.h24{height:50.745323pt;}
.h1b{height:50.773323pt;}
.h2e{height:50.787990pt;}
.h36{height:50.817323pt;}
.h25{height:50.827723pt;}
.h2a{height:50.846656pt;}
.h30{height:51.034656pt;}
.h19{height:54.255208pt;}
.h6{height:66.560000pt;}
.h5{height:72.640000pt;}
.hf{height:87.168000pt;}
.h4{height:93.184000pt;}
.h3{height:101.696000pt;}
.h12{height:103.578125pt;}
.h1{height:152.544000pt;}
.h2{height:217.920000pt;}
.h10{height:960.000000pt;}
.h0{height:961.333333pt;}
.h38{height:961.344000pt;}
.w0{width:672.000000pt;}
.xc{left:-720.490533pt;}
.x7{left:-701.201333pt;}
.x6{left:-696.363333pt;}
.x5{left:-693.029333pt;}
.xd{left:-600.492533pt;}
.x8{left:-559.531067pt;}
.x9{left:-545.869733pt;}
.xb{left:-488.963467pt;}
.xa{left:-471.719200pt;}
.xf{left:-55.170800pt;}
.xe{left:-52.589333pt;}
.x0{left:0.000000pt;}
.x1{left:40.973600pt;}
.x22{left:60.132000pt;}
.x21{left:64.970000pt;}
.x20{left:68.304000pt;}
.x16{left:96.000000pt;}
.x17{left:114.901000pt;}
.x18{left:116.050133pt;}
.x13{left:132.594267pt;}
.x19{left:136.612800pt;}
.x12{left:150.486267pt;}
.x27{left:160.840800pt;}
.x1a{left:193.783467pt;}
.x23{left:201.802267pt;}
.x24{left:215.463600pt;}
.x14{left:224.378267pt;}
.x15{left:249.584000pt;}
.x26{left:272.369867pt;}
.x1b{left:273.652400pt;}
.x25{left:289.614133pt;}
.x2{left:311.934533pt;}
.x10{left:448.334000pt;}
.x3{left:462.350533pt;}
.x11{left:466.476533pt;}
.x4{left:554.899867pt;}
.x29{left:706.162533pt;}
.x28{left:708.744000pt;}
.x1c{left:802.306933pt;}
.x1d{left:1073.267867pt;}
.x1e{left:1223.683867pt;}
.x1f{left:1316.233200pt;}
}




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