
    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_a260c04f599406ca1e8214dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.296000;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_790e3f51836c218d22fd0eb4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.243000;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_757b1bf329b8231dcac88fb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.814000;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_fde1f793a0d1384cdc79b927.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.287000;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_1866a87e0dd973f555ce3606.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.102000;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_de6b4acccf51edff4666b424.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_b0bc5ba5ba36f175839fe70e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.826172;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_8280255fcb846e710276ef60.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_d0e449c92c3e56cac1046529.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.691895;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.244732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244732,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244733,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m4{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);}
.m5{transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);}
.ma{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,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);}
.mb{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250229,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-144.000000px;}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-2.511707px;}
.ls3f{letter-spacing:-1.753956px;}
.ls44{letter-spacing:-1.578560px;}
.ls2a{letter-spacing:-1.417899px;}
.ls2b{letter-spacing:-1.197342px;}
.ls36{letter-spacing:-0.994847px;}
.ls3e{letter-spacing:-0.993908px;}
.ls33{letter-spacing:-0.993704px;}
.ls35{letter-spacing:-0.877806px;}
.ls2d{letter-spacing:-0.876798px;}
.ls42{letter-spacing:-0.526187px;}
.ls2e{letter-spacing:-0.526079px;}
.ls26{letter-spacing:-0.378109px;}
.ls29{letter-spacing:-0.283580px;}
.ls1d{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.058520px;}
.ls3b{letter-spacing:0.099126px;}
.ls2c{letter-spacing:0.116906px;}
.ls34{letter-spacing:0.117041px;}
.ls40{letter-spacing:0.292326px;}
.ls31{letter-spacing:0.642985px;}
.ls3d{letter-spacing:0.643117px;}
.ls3a{letter-spacing:0.643724px;}
.ls30{letter-spacing:0.759892px;}
.ls41{letter-spacing:0.760048px;}
.ls39{letter-spacing:0.760765px;}
.ls3c{letter-spacing:1.841654px;}
.ls2f{letter-spacing:1.870502px;}
.ls43{letter-spacing:1.870886px;}
.ls37{letter-spacing:1.872653px;}
.lsb{letter-spacing:1.939800px;}
.lsa{letter-spacing:1.940400px;}
.ls27{letter-spacing:1.985059px;}
.ls32{letter-spacing:2.396581px;}
.ls15{letter-spacing:2.400000px;}
.ls23{letter-spacing:2.880000px;}
.ls17{letter-spacing:3.357480px;}
.ls16{letter-spacing:3.360000px;}
.ls1{letter-spacing:3.420000px;}
.ls13{letter-spacing:4.615770px;}
.ls14{letter-spacing:4.616310px;}
.lsd{letter-spacing:4.616370px;}
.ls12{letter-spacing:4.616400px;}
.ls10{letter-spacing:4.616460px;}
.ls9{letter-spacing:4.617000px;}
.ls5{letter-spacing:5.129700px;}
.ls4{letter-spacing:5.130000px;}
.ls21{letter-spacing:5.399400px;}
.ls22{letter-spacing:5.400000px;}
.ls1c{letter-spacing:5.520000px;}
.ls19{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.154800px;}
.ls2{letter-spacing:6.155400px;}
.ls3{letter-spacing:6.156000px;}
.ls7{letter-spacing:6.156120px;}
.ls11{letter-spacing:6.406800px;}
.lsf{letter-spacing:6.407400px;}
.ls18{letter-spacing:8.400000px;}
.ls24{letter-spacing:9.177840px;}
.ls20{letter-spacing:9.178800px;}
.ls1f{letter-spacing:9.179400px;}
.ls1e{letter-spacing:9.180000px;}
.lse{letter-spacing:10.569000px;}
.lsc{letter-spacing:10.569600px;}
.ls0{letter-spacing:12.480000px;}
.ls1a{letter-spacing:13.499400px;}
.ls1b{letter-spacing:13.500000px;}
.ls6{letter-spacing:31.962600px;}
.ls25{letter-spacing:1286.105362px;}
.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;}
}
.wse8{word-spacing:-66.000000px;}
.ws12c{word-spacing:-54.516000px;}
.ws132{word-spacing:-53.988000px;}
.wsbc{word-spacing:-41.401800px;}
.wsf3{word-spacing:-32.172000px;}
.ws48{word-spacing:-24.480000px;}
.ws46{word-spacing:-21.467880px;}
.ws47{word-spacing:-20.880000px;}
.ws88{word-spacing:-20.820240px;}
.ws163{word-spacing:-20.641593px;}
.ws154{word-spacing:-20.328000px;}
.ws49{word-spacing:-18.918900px;}
.ws4a{word-spacing:-18.909450px;}
.ws45{word-spacing:-18.110400px;}
.ws85{word-spacing:-16.632000px;}
.ws10c{word-spacing:-15.098263px;}
.ws122{word-spacing:-15.084022px;}
.ws109{word-spacing:-15.080926px;}
.ws120{word-spacing:-15.054789px;}
.wsa{word-spacing:-14.747040px;}
.ws11f{word-spacing:-13.973183px;}
.ws11e{word-spacing:-13.505461px;}
.ws10a{word-spacing:-13.342651px;}
.ws108{word-spacing:-13.327330px;}
.ws10d{word-spacing:-13.284131px;}
.ws121{word-spacing:-12.686948px;}
.wse{word-spacing:-12.289200px;}
.ws10b{word-spacing:-12.230764px;}
.wsf4{word-spacing:-11.829416px;}
.ws4f{word-spacing:-11.642400px;}
.ws144{word-spacing:-10.560000px;}
.wsd4{word-spacing:-10.362000px;}
.wsf7{word-spacing:-8.871997px;}
.ws7a{word-spacing:-6.240000px;}
.wsf5{word-spacing:-5.286398px;}
.ws7d{word-spacing:-4.800000px;}
.ws101{word-spacing:-4.033152px;}
.wsd1{word-spacing:-4.026000px;}
.ws5b{word-spacing:-3.960000px;}
.wsdf{word-spacing:-3.894000px;}
.wsd0{word-spacing:-3.762000px;}
.ws117{word-spacing:-3.696000px;}
.wsd2{word-spacing:-3.630000px;}
.wsd8{word-spacing:-3.498000px;}
.ws145{word-spacing:-3.432000px;}
.ws7f{word-spacing:-3.300000px;}
.ws148{word-spacing:-3.234000px;}
.ws82{word-spacing:-3.060000px;}
.wsda{word-spacing:-3.036000px;}
.wse6{word-spacing:-2.970000px;}
.wsea{word-spacing:-2.904000px;}
.ws51{word-spacing:-2.880000px;}
.ws139{word-spacing:-2.838000px;}
.ws12d{word-spacing:-2.772000px;}
.wse0{word-spacing:-2.706000px;}
.ws64{word-spacing:-2.640000px;}
.ws171{word-spacing:-2.546690px;}
.wsa1{word-spacing:-2.508000px;}
.ws87{word-spacing:-2.485200px;}
.ws4e{word-spacing:-2.469660px;}
.ws84{word-spacing:-2.464680px;}
.ws86{word-spacing:-2.464620px;}
.ws4c{word-spacing:-2.464560px;}
.ws4d{word-spacing:-2.460780px;}
.ws13c{word-spacing:-2.442000px;}
.ws8f{word-spacing:-2.376000px;}
.wscd{word-spacing:-2.244000px;}
.wsb8{word-spacing:-2.178000px;}
.ws93{word-spacing:-2.112000px;}
.ws114{word-spacing:-2.104315px;}
.ws164{word-spacing:-2.077563px;}
.wse5{word-spacing:-2.046000px;}
.ws133{word-spacing:-1.914000px;}
.wsa9{word-spacing:-1.782000px;}
.ws107{word-spacing:-1.716000px;}
.wsed{word-spacing:-1.650000px;}
.wsc5{word-spacing:-1.584000px;}
.ws137{word-spacing:-1.518000px;}
.ws15d{word-spacing:-1.474400px;}
.ws15c{word-spacing:-1.452000px;}
.wsa6{word-spacing:-1.386000px;}
.wsc6{word-spacing:-1.320000px;}
.ws94{word-spacing:-1.254000px;}
.wsc8{word-spacing:-1.188000px;}
.ws5c{word-spacing:-1.140000px;}
.wse4{word-spacing:-1.122000px;}
.wsde{word-spacing:-1.056000px;}
.wsc4{word-spacing:-0.990000px;}
.ws174{word-spacing:-0.938254px;}
.ws143{word-spacing:-0.924000px;}
.wsb7{word-spacing:-0.858000px;}
.wsba{word-spacing:-0.792000px;}
.wsf9{word-spacing:-0.757563px;}
.wsf6{word-spacing:-0.753512px;}
.ws13b{word-spacing:-0.726000px;}
.wsdd{word-spacing:-0.660000px;}
.ws106{word-spacing:-0.594000px;}
.wsdb{word-spacing:-0.528000px;}
.ws12a{word-spacing:-0.467722px;}
.ws111{word-spacing:-0.467626px;}
.wse9{word-spacing:-0.462000px;}
.wsec{word-spacing:-0.396000px;}
.ws11c{word-spacing:-0.351122px;}
.ws125{word-spacing:-0.350791px;}
.wsd3{word-spacing:-0.330000px;}
.ws124{word-spacing:-0.264000px;}
.ws68{word-spacing:-0.240000px;}
.wsca{word-spacing:-0.198000px;}
.ws173{word-spacing:-0.134036px;}
.ws172{word-spacing:-0.132000px;}
.wsab{word-spacing:-0.066000px;}
.ws4b{word-spacing:0.000000px;}
.wsd5{word-spacing:0.066000px;}
.ws14b{word-spacing:0.067018px;}
.wsfe{word-spacing:0.121534px;}
.wsfa{word-spacing:0.132000px;}
.ws176{word-spacing:0.134036px;}
.ws10e{word-spacing:0.175360px;}
.ws118{word-spacing:0.175561px;}
.ws92{word-spacing:0.198000px;}
.wsc0{word-spacing:0.264000px;}
.wsb3{word-spacing:0.330000px;}
.wseb{word-spacing:0.396000px;}
.ws100{word-spacing:0.441126px;}
.wsa8{word-spacing:0.462000px;}
.ws76{word-spacing:0.540000px;}
.wsd7{word-spacing:0.594000px;}
.ws74{word-spacing:0.600000px;}
.ws15b{word-spacing:0.603163px;}
.wsb9{word-spacing:0.660000px;}
.ws123{word-spacing:0.726000px;}
.ws170{word-spacing:0.737200px;}
.ws77{word-spacing:0.780000px;}
.ws98{word-spacing:0.792000px;}
.ws110{word-spacing:0.818345px;}
.ws7e{word-spacing:0.900000px;}
.wscc{word-spacing:0.924000px;}
.ws156{word-spacing:0.990000px;}
.wsb2{word-spacing:1.056000px;}
.ws58{word-spacing:1.080000px;}
.wsbb{word-spacing:1.122000px;}
.ws6b{word-spacing:1.140000px;}
.ws10f{word-spacing:1.169064px;}
.ws119{word-spacing:1.170408px;}
.wsaa{word-spacing:1.188000px;}
.ws6f{word-spacing:1.200000px;}
.wsc1{word-spacing:1.254000px;}
.wsff{word-spacing:1.255853px;}
.ws15e{word-spacing:1.273345px;}
.ws126{word-spacing:1.286234px;}
.ws5d{word-spacing:1.320000px;}
.wsdc{word-spacing:1.386000px;}
.ws9f{word-spacing:1.452000px;}
.ws104{word-spacing:1.518000px;}
.ws140{word-spacing:1.584000px;}
.ws151{word-spacing:1.608436px;}
.ws13f{word-spacing:1.650000px;}
.wse7{word-spacing:1.716000px;}
.ws90{word-spacing:1.782000px;}
.ws91{word-spacing:1.809490px;}
.wsb6{word-spacing:1.848000px;}
.ws128{word-spacing:1.870886px;}
.ws8e{word-spacing:1.914000px;}
.ws16f{word-spacing:1.943527px;}
.ws14f{word-spacing:1.980000px;}
.ws9a{word-spacing:2.046000px;}
.ws127{word-spacing:2.046282px;}
.ws95{word-spacing:2.112000px;}
.ws97{word-spacing:2.178000px;}
.ws12f{word-spacing:2.244000px;}
.ws5e{word-spacing:2.340000px;}
.ws103{word-spacing:2.376000px;}
.ws8d{word-spacing:2.442000px;}
.wsef{word-spacing:2.508000px;}
.ws141{word-spacing:2.574000px;}
.ws96{word-spacing:2.640000px;}
.wsd9{word-spacing:2.706000px;}
.ws13e{word-spacing:2.772000px;}
.ws130{word-spacing:2.904000px;}
.ws175{word-spacing:2.948799px;}
.wsf1{word-spacing:2.970000px;}
.wsf8{word-spacing:2.996151px;}
.wsc9{word-spacing:3.036000px;}
.ws162{word-spacing:3.082835px;}
.wsaf{word-spacing:3.102000px;}
.wsee{word-spacing:3.168000px;}
.ws99{word-spacing:3.234000px;}
.ws55{word-spacing:3.240000px;}
.wsa7{word-spacing:3.300000px;}
.ws160{word-spacing:3.350908px;}
.ws116{word-spacing:3.366000px;}
.ws155{word-spacing:3.417926px;}
.wsbe{word-spacing:3.432000px;}
.ws9e{word-spacing:3.498000px;}
.ws138{word-spacing:3.564000px;}
.ws16d{word-spacing:3.618981px;}
.wsa0{word-spacing:3.630000px;}
.wsb4{word-spacing:3.696000px;}
.wsf0{word-spacing:3.762000px;}
.ws157{word-spacing:3.820035px;}
.wscb{word-spacing:3.828000px;}
.wsd6{word-spacing:3.894000px;}
.ws150{word-spacing:3.960000px;}
.ws149{word-spacing:4.026000px;}
.ws113{word-spacing:4.033271px;}
.ws11b{word-spacing:4.037908px;}
.ws112{word-spacing:4.150177px;}
.ws131{word-spacing:4.158000px;}
.ws105{word-spacing:4.224000px;}
.ws53{word-spacing:4.260000px;}
.ws152{word-spacing:4.290000px;}
.wsb1{word-spacing:4.356000px;}
.ws136{word-spacing:4.422000px;}
.ws9d{word-spacing:4.488000px;}
.ws12b{word-spacing:4.501820px;}
.ws13a{word-spacing:4.554000px;}
.ws11a{word-spacing:4.740152px;}
.ws147{word-spacing:4.818000px;}
.ws16e{word-spacing:4.884000px;}
.ws8b{word-spacing:5.082000px;}
.wsf2{word-spacing:5.148000px;}
.ws63{word-spacing:5.160000px;}
.wsc2{word-spacing:5.214000px;}
.ws14d{word-spacing:5.280000px;}
.wsbf{word-spacing:5.346000px;}
.ws14e{word-spacing:5.361453px;}
.wsfd{word-spacing:5.412000px;}
.ws8a{word-spacing:5.478000px;}
.wse2{word-spacing:5.544000px;}
.ws161{word-spacing:5.562507px;}
.wse3{word-spacing:5.610000px;}
.wsfc{word-spacing:5.676000px;}
.ws14c{word-spacing:5.696544px;}
.ws13d{word-spacing:5.742000px;}
.ws115{word-spacing:5.786867px;}
.ws129{word-spacing:5.788055px;}
.wsae{word-spacing:5.808000px;}
.wsa5{word-spacing:5.940000px;}
.ws79{word-spacing:6.000000px;}
.wsc3{word-spacing:6.006000px;}
.ws89{word-spacing:6.072000px;}
.ws146{word-spacing:6.204000px;}
.wscf{word-spacing:6.270000px;}
.wsc7{word-spacing:6.402000px;}
.ws54{word-spacing:6.420000px;}
.wsfb{word-spacing:6.534000px;}
.wsb5{word-spacing:6.600000px;}
.wsa2{word-spacing:6.732000px;}
.ws60{word-spacing:6.840000px;}
.ws61{word-spacing:7.020000px;}
.ws2e{word-spacing:7.020804px;}
.ws42{word-spacing:7.021404px;}
.wsb0{word-spacing:7.128000px;}
.ws12e{word-spacing:7.194000px;}
.ws15f{word-spacing:7.260000px;}
.wsa3{word-spacing:7.326000px;}
.wsad{word-spacing:7.392000px;}
.wsa4{word-spacing:7.439016px;}
.ws71{word-spacing:7.560000px;}
.wse1{word-spacing:7.656000px;}
.ws9c{word-spacing:7.854000px;}
.ws14a{word-spacing:8.052000px;}
.ws135{word-spacing:8.118000px;}
.ws169{word-spacing:8.712000px;}
.ws8c{word-spacing:8.778000px;}
.ws102{word-spacing:8.844000px;}
.ws168{word-spacing:8.846397px;}
.wsac{word-spacing:8.976000px;}
.ws15a{word-spacing:9.174000px;}
.ws142{word-spacing:9.306000px;}
.ws166{word-spacing:9.372000px;}
.ws134{word-spacing:9.438000px;}
.ws78{word-spacing:9.480000px;}
.ws167{word-spacing:9.516579px;}
.ws6c{word-spacing:9.540000px;}
.wsbd{word-spacing:10.098000px;}
.ws11d{word-spacing:10.299590px;}
.ws75{word-spacing:10.500000px;}
.ws73{word-spacing:10.560000px;}
.ws5f{word-spacing:10.860000px;}
.ws9b{word-spacing:11.154000px;}
.wsce{word-spacing:11.286000px;}
.ws83{word-spacing:11.460000px;}
.ws158{word-spacing:11.616000px;}
.ws153{word-spacing:11.748000px;}
.ws159{word-spacing:11.795196px;}
.ws165{word-spacing:11.814000px;}
.ws52{word-spacing:12.180000px;}
.ws16a{word-spacing:12.474000px;}
.ws2b{word-spacing:12.730554px;}
.ws2c{word-spacing:12.731244px;}
.ws6a{word-spacing:12.960000px;}
.ws24{word-spacing:13.629354px;}
.ws59{word-spacing:13.680000px;}
.ws72{word-spacing:14.400000px;}
.ws62{word-spacing:14.760000px;}
.ws65{word-spacing:15.000000px;}
.ws16b{word-spacing:15.444000px;}
.ws66{word-spacing:15.480000px;}
.ws16c{word-spacing:15.682249px;}
.ws6d{word-spacing:16.620000px;}
.ws28{word-spacing:17.901954px;}
.ws26{word-spacing:18.655644px;}
.ws81{word-spacing:19.680000px;}
.ws67{word-spacing:19.740000px;}
.wsc{word-spacing:19.890660px;}
.ws80{word-spacing:21.480000px;}
.ws43{word-spacing:23.499504px;}
.ws6{word-spacing:23.869272px;}
.ws3{word-spacing:24.874272px;}
.wsb{word-spacing:26.110560px;}
.ws7b{word-spacing:27.000000px;}
.ws56{word-spacing:27.720000px;}
.ws70{word-spacing:27.840000px;}
.ws7c{word-spacing:30.720000px;}
.ws17{word-spacing:31.338072px;}
.ws40{word-spacing:32.498025px;}
.ws29{word-spacing:32.505465px;}
.ws22{word-spacing:35.126745px;}
.ws3d{word-spacing:37.081635px;}
.ws57{word-spacing:37.440000px;}
.ws19{word-spacing:41.807700px;}
.ws69{word-spacing:42.120000px;}
.ws5a{word-spacing:42.960000px;}
.ws36{word-spacing:47.192265px;}
.ws2f{word-spacing:52.733835px;}
.ws44{word-spacing:53.601204px;}
.ws3b{word-spacing:54.876345px;}
.ws6e{word-spacing:54.960000px;}
.ws7{word-spacing:56.794860px;}
.ws39{word-spacing:58.084425px;}
.ws30{word-spacing:59.089905px;}
.wsd{word-spacing:59.555760px;}
.ws10{word-spacing:63.044460px;}
.ws1e{word-spacing:64.407060px;}
.ws16{word-spacing:65.604060px;}
.ws1b{word-spacing:70.965660px;}
.ws2d{word-spacing:73.084524px;}
.ws12{word-spacing:73.168260px;}
.ws5{word-spacing:74.559072px;}
.ws0{word-spacing:74.579472px;}
.ws2{word-spacing:87.591672px;}
.ws34{word-spacing:88.792404px;}
.ws1a{word-spacing:97.705872px;}
.ws38{word-spacing:104.058204px;}
.ws25{word-spacing:114.349374px;}
.ws1d{word-spacing:119.251872px;}
.ws11{word-spacing:121.390260px;}
.ws4{word-spacing:127.047420px;}
.ws3a{word-spacing:128.369604px;}
.ws23{word-spacing:134.852874px;}
.ws14{word-spacing:135.609900px;}
.ws18{word-spacing:135.802620px;}
.ws15{word-spacing:142.575072px;}
.ws20{word-spacing:149.496060px;}
.ws27{word-spacing:150.151074px;}
.ws37{word-spacing:157.158474px;}
.ws1{word-spacing:164.312472px;}
.ws33{word-spacing:166.658595px;}
.ws1c{word-spacing:175.420632px;}
.ws31{word-spacing:186.335745px;}
.ws1f{word-spacing:193.307232px;}
.ws8{word-spacing:203.935872px;}
.ws9{word-spacing:206.217660px;}
.ws21{word-spacing:206.218260px;}
.ws3c{word-spacing:208.064274px;}
.ws3f{word-spacing:209.191554px;}
.ws35{word-spacing:225.014865px;}
.ws41{word-spacing:237.185874px;}
.ws13{word-spacing:250.432872px;}
.wsf{word-spacing:250.453272px;}
.ws3e{word-spacing:298.441065px;}
.ws32{word-spacing:316.036395px;}
.ws2a{word-spacing:419.497644px;}
.ws50{word-spacing:2972.107200px;}
._8e{margin-left:-1965.516000px;}
._a{margin-left:-1815.906000px;}
._6{margin-left:-1230.276600px;}
._0{margin-left:-1156.116000px;}
._6e{margin-left:-1131.388915px;}
._4{margin-left:-1105.104000px;}
._1{margin-left:-995.436000px;}
._75{margin-left:-961.410000px;}
._67{margin-left:-832.026000px;}
._c{margin-left:-797.088000px;}
._8{margin-left:-734.502000px;}
._80{margin-left:-697.866000px;}
._69{margin-left:-670.230000px;}
._6d{margin-left:-544.752000px;}
._68{margin-left:-489.210000px;}
._88{margin-left:-487.980000px;}
._89{margin-left:-458.790000px;}
._6b{margin-left:-451.560000px;}
._8a{margin-left:-422.640000px;}
._58{margin-left:-417.276000px;}
._87{margin-left:-406.654680px;}
._71{margin-left:-402.060000px;}
._76{margin-left:-382.236000px;}
._86{margin-left:-379.566000px;}
._8f{margin-left:-376.572000px;}
._6a{margin-left:-360.636000px;}
._7d{margin-left:-358.680000px;}
._56{margin-left:-345.756000px;}
._65{margin-left:-335.082600px;}
._5{margin-left:-332.436000px;}
._4c{margin-left:-331.320000px;}
._5c{margin-left:-326.580000px;}
._64{margin-left:-316.026000px;}
._53{margin-left:-298.896000px;}
._3{margin-left:-295.620000px;}
._4e{margin-left:-293.340000px;}
._51{margin-left:-282.096000px;}
._85{margin-left:-277.614000px;}
._2{margin-left:-275.964000px;}
._5d{margin-left:-271.566000px;}
._7e{margin-left:-270.180000px;}
._82{margin-left:-257.226000px;}
._84{margin-left:-256.146000px;}
._7a{margin-left:-250.926000px;}
._70{margin-left:-247.350000px;}
._78{margin-left:-235.956000px;}
._50{margin-left:-232.680000px;}
._6f{margin-left:-230.135026px;}
._74{margin-left:-225.966000px;}
._66{margin-left:-215.160000px;}
._7f{margin-left:-214.020000px;}
._55{margin-left:-211.866000px;}
._83{margin-left:-209.100000px;}
._5f{margin-left:-202.986000px;}
._9{margin-left:-198.930000px;}
._7b{margin-left:-195.630000px;}
._73{margin-left:-185.610000px;}
._8c{margin-left:-165.600000px;}
._5a{margin-left:-164.100000px;}
._4d{margin-left:-162.186000px;}
._8b{margin-left:-156.174000px;}
._54{margin-left:-152.394000px;}
._81{margin-left:-148.770000px;}
._77{margin-left:-147.234000px;}
._63{margin-left:-146.046000px;}
._59{margin-left:-143.490000px;}
._72{margin-left:-135.780000px;}
._61{margin-left:-134.707188px;}
._52{margin-left:-121.674000px;}
._5b{margin-left:-110.190000px;}
._7c{margin-left:-105.180000px;}
._4f{margin-left:-103.318680px;}
._57{margin-left:-98.934000px;}
._60{margin-left:-97.914000px;}
._4b{margin-left:-87.810000px;}
._7{margin-left:-80.837400px;}
._1d{margin-left:-78.928812px;}
._5e{margin-left:-76.914000px;}
._2c{margin-left:-64.795320px;}
._6c{margin-left:-55.800000px;}
._48{margin-left:-52.875600px;}
._79{margin-left:-51.564000px;}
._62{margin-left:-49.134000px;}
._18{margin-left:-41.267772px;}
._13{margin-left:-39.266388px;}
._3d{margin-left:-38.075172px;}
._17{margin-left:-35.115192px;}
._12{margin-left:-33.774552px;}
._15{margin-left:-32.457852px;}
._32{margin-left:-31.367445px;}
._30{margin-left:-30.295986px;}
._35{margin-left:-29.259351px;}
._d{margin-left:-27.310752px;}
._e{margin-left:-25.955748px;}
._1f{margin-left:-24.950268px;}
._36{margin-left:-23.933136px;}
._1c{margin-left:-22.508388px;}
._24{margin-left:-21.421512px;}
._1b{margin-left:-19.506792px;}
._14{margin-left:-17.567172px;}
._23{margin-left:-16.175460px;}
._21{margin-left:-14.140452px;}
._28{margin-left:-12.794676px;}
._f{margin-left:-11.438532px;}
._25{margin-left:-9.536100px;}
._2e{margin-left:-8.398152px;}
._92{margin-left:-7.207296px;}
._49{margin-left:-6.195900px;}
._47{margin-left:-5.145324px;}
._27{margin-left:-4.047144px;}
._33{margin-left:-2.922399px;}
._44{margin-left:-1.689564px;}
._20{width:1.388520px;}
._31{width:2.780061px;}
._22{width:4.312392px;}
._16{width:6.176520px;}
._40{width:7.199931px;}
._45{width:8.396640px;}
._4a{width:9.969600px;}
._2b{width:10.989600px;}
._46{width:12.748797px;}
._34{width:14.899572px;}
._8d{width:18.418020px;}
._3f{width:20.238498px;}
._29{width:22.686000px;}
._10{width:25.417440px;}
._11{width:27.223560px;}
._2a{width:31.583700px;}
._3b{width:33.167136px;}
._91{width:45.474000px;}
._1a{width:46.512000px;}
._39{width:48.067188px;}
._38{width:51.595134px;}
._90{width:52.800000px;}
._2f{width:72.460932px;}
._42{width:89.809362px;}
._41{width:109.142598px;}
._3c{width:111.995565px;}
._37{width:120.021885px;}
._2d{width:123.979800px;}
._19{width:126.951912px;}
._43{width:145.133148px;}
._1e{width:153.024600px;}
._26{width:160.157964px;}
._3e{width:168.169854px;}
._3a{width:341.844633px;}
._b{width:531.123600px;}
.fc2{color:rgb(77,74,74);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(127,127,127);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:transparent;}
.fs7{font-size:35.910000px;}
.fs11{font-size:37.800000px;}
.fs5{font-size:39.900000px;}
.fs19{font-size:40.511400px;}
.fs9{font-size:43.320000px;}
.fs3{font-size:47.880000px;}
.fs6{font-size:51.300000px;}
.fs10{font-size:54.000000px;}
.fs18{font-size:54.015600px;}
.fs16{font-size:54.832992px;}
.fs4{font-size:57.000000px;}
.fs1b{font-size:58.453200px;}
.fs1f{font-size:58.465200px;}
.fs1d{font-size:58.520400px;}
.fsb{font-size:58.800000px;}
.fsa{font-size:60.000000px;}
.fs13{font-size:60.925628px;}
.fs1a{font-size:63.018000px;}
.fs14{font-size:66.000000px;}
.fs15{font-size:67.018160px;}
.fs1c{font-size:67.446600px;}
.fs20{font-size:67.459800px;}
.fs17{font-size:67.519200px;}
.fs1e{font-size:67.523400px;}
.fs2{font-size:68.400000px;}
.fs12{font-size:72.000000px;}
.fsc{font-size:84.000000px;}
.fs8{font-size:89.265600px;}
.fse{font-size:94.500000px;}
.fs1{font-size:114.000000px;}
.fsd{font-size:135.000000px;}
.fsf{font-size:138.000000px;}
.fs0{font-size:156.000000px;}
.y1b2{bottom:-13.089900px;}
.y190{bottom:-9.829800px;}
.y1e2{bottom:-8.978700px;}
.y0{bottom:0.000000px;}
.y17a{bottom:0.000150px;}
.y19c{bottom:0.000450px;}
.y137{bottom:9.002550px;}
.y154{bottom:11.921700px;}
.y141{bottom:12.146850px;}
.y17c{bottom:13.489650px;}
.y17e{bottom:13.489950px;}
.y180{bottom:13.490100px;}
.y17f{bottom:13.490250px;}
.y188{bottom:13.490550px;}
.y1df{bottom:13.490850px;}
.y1d7{bottom:13.491000px;}
.y1c1{bottom:13.491600px;}
.y1cf{bottom:13.491750px;}
.y1d5{bottom:13.492200px;}
.y1c9{bottom:13.492500px;}
.y1aa{bottom:13.503450px;}
.y1a3{bottom:13.503750px;}
.y1b0{bottom:13.504500px;}
.y1af{bottom:13.504650px;}
.y19e{bottom:13.505400px;}
.y185{bottom:14.613150px;}
.y186{bottom:14.613300px;}
.y18c{bottom:14.613450px;}
.y183{bottom:14.614350px;}
.y182{bottom:14.614500px;}
.y1cd{bottom:14.614950px;}
.y1dd{bottom:14.615100px;}
.y1e0{bottom:14.615850px;}
.y1ca{bottom:14.616150px;}
.y1c2{bottom:14.616300px;}
.y1bf{bottom:14.616450px;}
.y1a8{bottom:14.629650px;}
.y1a1{bottom:14.629950px;}
.y1a0{bottom:14.630100px;}
.y1ac{bottom:14.630550px;}
.y1ad{bottom:14.630850px;}
.y1a5{bottom:14.631000px;}
.y1a6{bottom:14.631150px;}
.y19{bottom:30.059250px;}
.y1bd{bottom:30.357000px;}
.y1d3{bottom:32.605650px;}
.y17b{bottom:33.723600px;}
.y19d{bottom:33.762150px;}
.y23{bottom:34.075050px;}
.y22{bottom:34.468200px;}
.y14c{bottom:39.517050px;}
.y139{bottom:39.859200px;}
.y155{bottom:40.516500px;}
.y18{bottom:40.564350px;}
.y142{bottom:40.858950px;}
.y1bc{bottom:50.594850px;}
.y17{bottom:51.069450px;}
.y1c6{bottom:51.719250px;}
.y1db{bottom:57.340500px;}
.y157{bottom:63.981600px;}
.y16{bottom:65.314939px;}
.y14d{bottom:69.392700px;}
.y1bb{bottom:69.708600px;}
.y143{bottom:70.968900px;}
.y13a{bottom:71.350800px;}
.y1c5{bottom:71.957100px;}
.y1d2{bottom:71.957250px;}
.y1da{bottom:76.454250px;}
.y156{bottom:76.802850px;}
.y1b3{bottom:84.559050px;}
.y15{bottom:85.332750px;}
.y1ba{bottom:89.946600px;}
.y1d1{bottom:91.070850px;}
.y1c4{bottom:92.195100px;}
.y1d9{bottom:96.692100px;}
.y14e{bottom:99.268350px;}
.y13b{bottom:100.079400px;}
.y158{bottom:100.268100px;}
.y144{bottom:101.079000px;}
.y1b1{bottom:110.302500px;}
.y1fd{bottom:112.515600px;}
.y8c{bottom:115.326300px;}
.yd0{bottom:115.551000px;}
.y1ae{bottom:116.344500px;}
.y12f{bottom:116.355900px;}
.y14f{bottom:129.144000px;}
.y159{bottom:130.143450px;}
.y13c{bottom:130.189350px;}
.y145{bottom:131.189100px;}
.yf6{bottom:131.887650px;}
.y291{bottom:132.039150px;}
.y1fc{bottom:136.515600px;}
.y8b{bottom:139.326300px;}
.ycf{bottom:139.551000px;}
.y12e{bottom:140.355900px;}
.yb1{bottom:143.107950px;}
.y2d6{bottom:144.371850px;}
.y275{bottom:146.531400px;}
.y239{bottom:147.289650px;}
.y2b8{bottom:151.798800px;}
.y1ab{bottom:153.481500px;}
.y166{bottom:153.619800px;}
.yf5{bottom:155.887650px;}
.y290{bottom:156.039150px;}
.y150{bottom:159.019650px;}
.y15a{bottom:160.019400px;}
.y13d{bottom:160.299300px;}
.y146{bottom:161.299200px;}
.y8a{bottom:163.326300px;}
.yce{bottom:163.551000px;}
.y12d{bottom:164.355900px;}
.yb0{bottom:167.107950px;}
.y2d5{bottom:168.371850px;}
.y1fb{bottom:169.019550px;}
.y274{bottom:170.531400px;}
.y238{bottom:171.289650px;}
.y10c{bottom:172.364100px;}
.y2b7{bottom:175.798800px;}
.y165{bottom:177.619800px;}
.y14{bottom:179.113200px;}
.yf4{bottom:179.887650px;}
.y28f{bottom:180.039150px;}
.y148{bottom:184.998750px;}
.ycd{bottom:187.551000px;}
.y12c{bottom:188.355900px;}
.y151{bottom:188.895150px;}
.y15b{bottom:189.894750px;}
.y13e{bottom:190.409700px;}
.yaf{bottom:191.107950px;}
.y1a9{bottom:191.746500px;}
.y1fa{bottom:193.019550px;}
.y273{bottom:194.531400px;}
.y13{bottom:194.788200px;}
.y257{bottom:195.383550px;}
.y89{bottom:195.830250px;}
.y10b{bottom:196.364100px;}
.y46{bottom:197.311350px;}
.y147{bottom:197.819850px;}
.y2d4{bottom:200.875800px;}
.y164{bottom:201.619800px;}
.y237{bottom:203.793450px;}
.yf3{bottom:203.887650px;}
.y28e{bottom:204.039150px;}
.y2b6{bottom:208.302600px;}
.y12{bottom:210.463200px;}
.ycc{bottom:211.551000px;}
.y12b{bottom:212.355900px;}
.yae{bottom:215.107950px;}
.y1f9{bottom:217.019550px;}
.y152{bottom:218.770800px;}
.y256{bottom:219.383550px;}
.y15c{bottom:219.770700px;}
.y88{bottom:219.830250px;}
.y10a{bottom:220.364100px;}
.y13f{bottom:220.519800px;}
.y45{bottom:221.311350px;}
.y149{bottom:221.519400px;}
.y2d3{bottom:224.875800px;}
.y163{bottom:225.619800px;}
.y11{bottom:226.138200px;}
.y236{bottom:227.793450px;}
.yf2{bottom:227.887650px;}
.y28d{bottom:228.039150px;}
.y1a7{bottom:228.883500px;}
.ycb{bottom:235.551000px;}
.y12a{bottom:236.355900px;}
.yad{bottom:239.107950px;}
.y272{bottom:239.791200px;}
.y2b5{bottom:240.806550px;}
.y1f8{bottom:241.019550px;}
.y87{bottom:243.830250px;}
.y109{bottom:244.364100px;}
.y153{bottom:248.646450px;}
.y162{bottom:249.619800px;}
.y15d{bottom:249.646200px;}
.y140{bottom:250.629900px;}
.y14a{bottom:251.629650px;}
.y235{bottom:251.793450px;}
.y255{bottom:251.887500px;}
.y28c{bottom:252.039150px;}
.y2d2{bottom:257.379750px;}
.y44{bottom:258.067200px;}
.y213{bottom:258.891600px;}
.yca{bottom:259.551000px;}
.y129{bottom:260.355900px;}
.yf1{bottom:260.391600px;}
.y10{bottom:262.010100px;}
.yac{bottom:263.107950px;}
.y2b4{bottom:264.806550px;}
.y176{bottom:266.543100px;}
.y1a4{bottom:267.145500px;}
.y86{bottom:267.830250px;}
.y108{bottom:268.364100px;}
.y1f7{bottom:273.523350px;}
.y161{bottom:273.619800px;}
.y254{bottom:275.887500px;}
.y28b{bottom:276.039150px;}
.y2d1{bottom:281.379750px;}
.y212{bottom:282.891600px;}
.y234{bottom:284.297400px;}
.y128{bottom:284.355900px;}
.yf0{bottom:284.391600px;}
.yf{bottom:284.574450px;}
.yab{bottom:287.107950px;}
.y175{bottom:290.543100px;}
.y15e{bottom:291.083700px;}
.y85{bottom:291.830250px;}
.yc9{bottom:292.054950px;}
.y107{bottom:292.364100px;}
.y14b{bottom:293.183700px;}
.y2b3{bottom:297.310500px;}
.y1f6{bottom:297.523350px;}
.y160{bottom:297.619800px;}
.y253{bottom:299.887500px;}
.y269{bottom:303.874050px;}
.y1e3{bottom:304.151400px;}
.y2d0{bottom:305.379750px;}
.y1a2{bottom:305.410500px;}
.y211{bottom:306.891600px;}
.y233{bottom:308.297400px;}
.yef{bottom:308.391600px;}
.y28a{bottom:308.543100px;}
.yaa{bottom:311.107950px;}
.y1ec{bottom:313.787250px;}
.y174{bottom:314.543100px;}
.ye{bottom:315.217500px;}
.y84{bottom:315.830250px;}
.yc8{bottom:316.054950px;}
.y106{bottom:316.364100px;}
.y127{bottom:316.859850px;}
.y2b2{bottom:321.310500px;}
.y1f5{bottom:321.523350px;}
.y252{bottom:323.887500px;}
.y1e1{bottom:325.012500px;}
.y210{bottom:330.891600px;}
.yee{bottom:332.391600px;}
.y289{bottom:332.543100px;}
.ya9{bottom:335.107950px;}
.y1d8{bottom:335.148000px;}
.yd{bottom:337.781850px;}
.y43{bottom:337.797600px;}
.y2cf{bottom:337.883700px;}
.yc7{bottom:340.054950px;}
.y105{bottom:340.364100px;}
.y232{bottom:340.801350px;}
.y126{bottom:340.859850px;}
.y19f{bottom:342.547500px;}
.y15f{bottom:342.879600px;}
.y2b1{bottom:345.310500px;}
.y83{bottom:348.334200px;}
.y1f4{bottom:354.027300px;}
.y20f{bottom:354.891600px;}
.y251{bottom:356.391300px;}
.yed{bottom:356.391600px;}
.y288{bottom:356.543100px;}
.y173{bottom:359.803050px;}
.y42{bottom:361.797600px;}
.y2ce{bottom:361.883700px;}
.yc6{bottom:364.054950px;}
.y104{bottom:364.364100px;}
.y125{bottom:364.859850px;}
.y136{bottom:365.403000px;}
.ya8{bottom:367.611900px;}
.yc{bottom:368.425050px;}
.y82{bottom:372.334200px;}
.y138{bottom:374.404500px;}
.y1de{bottom:376.749000px;}
.y2b0{bottom:377.814450px;}
.y1f3{bottom:378.027300px;}
.y250{bottom:380.391300px;}
.yec{bottom:380.391600px;}
.y287{bottom:380.543100px;}
.y63{bottom:381.545700px;}
.y19b{bottom:383.061000px;}
.y41{bottom:385.797600px;}
.y2cd{bottom:385.883700px;}
.y20e{bottom:387.395550px;}
.yc5{bottom:388.054950px;}
.y103{bottom:388.364100px;}
.y231{bottom:388.813200px;}
.y124{bottom:388.859850px;}
.yb{bottom:390.989400px;}
.y81{bottom:396.334200px;}
.ya7{bottom:400.115850px;}
.y2af{bottom:401.814450px;}
.y1f2{bottom:402.027300px;}
.y24f{bottom:404.391450px;}
.yeb{bottom:404.391600px;}
.y286{bottom:404.543100px;}
.y62{bottom:405.545700px;}
.ya{bottom:409.514400px;}
.y40{bottom:409.797600px;}
.y20d{bottom:411.395550px;}
.yc4{bottom:412.054950px;}
.y102{bottom:412.363950px;}
.y230{bottom:412.813200px;}
.y123{bottom:412.859850px;}
.y1dc{bottom:417.225000px;}
.y2cc{bottom:418.387650px;}
.y80{bottom:420.334200px;}
.y2ae{bottom:425.814450px;}
.y24e{bottom:428.391450px;}
.y285{bottom:428.543100px;}
.y61{bottom:429.545700px;}
.y1f1{bottom:434.531250px;}
.y20c{bottom:435.395550px;}
.yc3{bottom:436.054950px;}
.y101{bottom:436.363950px;}
.y22f{bottom:436.813200px;}
.y122{bottom:436.859850px;}
.yea{bottom:436.895550px;}
.y9{bottom:440.157450px;}
.y3f{bottom:442.301550px;}
.y2cb{bottom:442.387650px;}
.ya6{bottom:448.127700px;}
.y284{bottom:452.543100px;}
.y7f{bottom:452.838150px;}
.y19a{bottom:453.063000px;}
.y60{bottom:453.545700px;}
.y1d0{bottom:455.451000px;}
.y2ad{bottom:458.318400px;}
.y1f0{bottom:458.531250px;}
.y100{bottom:460.363950px;}
.y22e{bottom:460.813200px;}
.y24d{bottom:460.895250px;}
.ye9{bottom:460.895550px;}
.y8{bottom:462.721800px;}
.y3e{bottom:466.301550px;}
.y20b{bottom:467.899500px;}
.yc2{bottom:468.558900px;}
.y121{bottom:469.363800px;}
.y199{bottom:471.063000px;}
.ya5{bottom:472.127700px;}
.y2ca{bottom:474.891600px;}
.y7e{bottom:476.838150px;}
.y7{bottom:481.246800px;}
.y2ac{bottom:482.318400px;}
.y22d{bottom:484.813200px;}
.y24c{bottom:484.895250px;}
.ye8{bottom:484.895550px;}
.y283{bottom:485.047050px;}
.y5f{bottom:486.049650px;}
.y3d{bottom:490.301550px;}
.y1ef{bottom:491.035200px;}
.y20a{bottom:491.899500px;}
.yc1{bottom:492.558900px;}
.yff{bottom:492.867900px;}
.y1d6{bottom:494.803500px;}
.ya4{bottom:496.127700px;}
.y2c9{bottom:498.891600px;}
.y7d{bottom:500.838150px;}
.y22c{bottom:508.813200px;}
.y24b{bottom:508.895250px;}
.ye7{bottom:508.895550px;}
.y282{bottom:509.047050px;}
.y5e{bottom:510.049650px;}
.y198{bottom:510.322800px;}
.y1eb{bottom:511.787250px;}
.y3c{bottom:514.301550px;}
.y2ab{bottom:514.822350px;}
.y1ee{bottom:515.035200px;}
.y209{bottom:515.899500px;}
.yc0{bottom:516.558900px;}
.y120{bottom:517.375650px;}
.y2c8{bottom:522.891600px;}
.y7c{bottom:524.838150px;}
.yfe{bottom:528.123900px;}
.ya3{bottom:528.631650px;}
.y22b{bottom:532.813200px;}
.y24a{bottom:532.895250px;}
.y1d4{bottom:533.029500px;}
.y281{bottom:533.047050px;}
.y5d{bottom:534.049650px;}
.y197{bottom:534.322800px;}
.y1ea{bottom:538.291200px;}
.y3b{bottom:538.301550px;}
.y2aa{bottom:538.822350px;}
.y208{bottom:539.899500px;}
.ybf{bottom:540.558900px;}
.y11f{bottom:541.375650px;}
.ye6{bottom:541.399500px;}
.y2c7{bottom:546.891600px;}
.y1ed{bottom:547.539150px;}
.y7b{bottom:548.838150px;}
.y1e9{bottom:556.291200px;}
.y22a{bottom:556.813200px;}
.y249{bottom:556.895250px;}
.y280{bottom:557.047050px;}
.y5c{bottom:558.049650px;}
.y196{bottom:558.322800px;}
.y3a{bottom:562.301550px;}
.ybe{bottom:564.558900px;}
.y11e{bottom:565.375650px;}
.yfd{bottom:567.631650px;}
.y1cb{bottom:571.257000px;}
.y2a9{bottom:571.326300px;}
.y207{bottom:572.403450px;}
.y7a{bottom:572.838150px;}
.ye5{bottom:573.903450px;}
.ya2{bottom:576.643500px;}
.y2c6{bottom:579.395550px;}
.y248{bottom:580.895250px;}
.y27f{bottom:581.047050px;}
.y5b{bottom:582.049650px;}
.y195{bottom:582.322800px;}
.y39{bottom:586.301550px;}
.y229{bottom:589.317150px;}
.y2a8{bottom:595.326300px;}
.y206{bottom:596.403450px;}
.y79{bottom:596.838150px;}
.ybd{bottom:597.062850px;}
.y265{bottom:597.287250px;}
.y11d{bottom:597.879600px;}
.y6{bottom:599.449350px;}
.ya1{bottom:600.643500px;}
.y2c5{bottom:603.395550px;}
.y27e{bottom:605.047050px;}
.y5a{bottom:606.049650px;}
.y194{bottom:606.322800px;}
.y1e8{bottom:608.306850px;}
.y1ce{bottom:609.484500px;}
.y172{bottom:611.803050px;}
.y228{bottom:613.317150px;}
.y247{bottom:613.399200px;}
.y38{bottom:618.805500px;}
.y205{bottom:620.403450px;}
.ybc{bottom:621.062850px;}
.y11c{bottom:621.879600px;}
.ye4{bottom:621.915150px;}
.y264{bottom:623.791200px;}
.ya0{bottom:624.643500px;}
.y2c4{bottom:627.395550px;}
.y2a7{bottom:627.830250px;}
.y27d{bottom:629.047050px;}
.y78{bottom:629.341950px;}
.y193{bottom:630.322800px;}
.yfc{bottom:634.151400px;}
.y5{bottom:635.449350px;}
.y227{bottom:637.317150px;}
.y246{bottom:637.399200px;}
.y171{bottom:638.306850px;}
.y59{bottom:638.553600px;}
.y37{bottom:642.805500px;}
.ybb{bottom:645.062850px;}
.y11b{bottom:645.879600px;}
.ye3{bottom:645.915150px;}
.y1cc{bottom:646.588500px;}
.y9f{bottom:648.643500px;}
.y2a6{bottom:651.830250px;}
.y204{bottom:652.907250px;}
.y77{bottom:653.341950px;}
.y192{bottom:654.322800px;}
.y170{bottom:656.306850px;}
.y2c3{bottom:659.899500px;}
.y226{bottom:661.317150px;}
.y245{bottom:661.399200px;}
.y27c{bottom:661.551000px;}
.y58{bottom:662.553600px;}
.y263{bottom:663.051000px;}
.y36{bottom:666.805500px;}
.yba{bottom:669.062850px;}
.y11a{bottom:669.879600px;}
.ye2{bottom:669.915150px;}
.y9e{bottom:672.643500px;}
.y203{bottom:676.907250px;}
.y76{bottom:677.341950px;}
.y2c2{bottom:683.899500px;}
.y2a5{bottom:684.334200px;}
.y1c3{bottom:684.814500px;}
.y135{bottom:684.879750px;}
.y244{bottom:685.399200px;}
.y27b{bottom:685.551000px;}
.y57{bottom:686.553600px;}
.y262{bottom:687.051000px;}
.y35{bottom:690.805500px;}
.y4{bottom:692.094750px;}
.yb9{bottom:693.062850px;}
.y225{bottom:693.821100px;}
.ye1{bottom:693.915150px;}
.y16f{bottom:695.566800px;}
.y9d{bottom:696.643500px;}
.y191{bottom:699.582600px;}
.y202{bottom:700.907250px;}
.y75{bottom:701.341950px;}
.y119{bottom:702.383550px;}
.y271{bottom:707.791200px;}
.y2c1{bottom:707.899500px;}
.y2a4{bottom:708.334200px;}
.y243{bottom:709.399200px;}
.y27a{bottom:709.551000px;}
.y56{bottom:710.553600px;}
.y261{bottom:711.051000px;}
.y134{bottom:711.383550px;}
.y34{bottom:714.805500px;}
.yb8{bottom:717.062850px;}
.y224{bottom:717.821100px;}
.ye0{bottom:717.915150px;}
.y16e{bottom:719.566800px;}
.y9c{bottom:720.643500px;}
.y18f{bottom:722.167500px;}
.y1c8{bottom:724.165500px;}
.y201{bottom:724.907250px;}
.y74{bottom:725.341950px;}
.y18e{bottom:729.199500px;}
.y133{bottom:729.383550px;}
.y2a3{bottom:732.334200px;}
.y118{bottom:733.387500px;}
.y242{bottom:733.399200px;}
.y279{bottom:733.551000px;}
.y270{bottom:734.295150px;}
.y55{bottom:734.553600px;}
.y260{bottom:735.051000px;}
.y33{bottom:738.805500px;}
.y3{bottom:740.094750px;}
.y2c0{bottom:740.403450px;}
.y223{bottom:741.821100px;}
.ydf{bottom:741.915150px;}
.y16d{bottom:743.566800px;}
.y9b{bottom:744.643500px;}
.y200{bottom:748.907250px;}
.y73{bottom:749.341950px;}
.yb7{bottom:749.566800px;}
.y268{bottom:753.874050px;}
.y241{bottom:757.399200px;}
.y278{bottom:757.551000px;}
.y54{bottom:758.553600px;}
.y25f{bottom:759.051000px;}
.y1c7{bottom:762.393000px;}
.y32{bottom:762.805500px;}
.y2bf{bottom:764.403450px;}
.y2a2{bottom:764.838150px;}
.yde{bottom:765.915150px;}
.y18d{bottom:767.418000px;}
.y16c{bottom:767.566800px;}
.y9a{bottom:768.643500px;}
.y72{bottom:773.341950px;}
.y26f{bottom:773.554950px;}
.y222{bottom:774.325050px;}
.y267{bottom:780.378000px;}
.y117{bottom:781.399350px;}
.y1ff{bottom:781.411350px;}
.y277{bottom:781.551000px;}
.y53{bottom:782.553450px;}
.y25e{bottom:783.051000px;}
.y31{bottom:786.805500px;}
.y2{bottom:788.094750px;}
.y2a1{bottom:788.838150px;}
.ydd{bottom:789.915150px;}
.y16b{bottom:791.566800px;}
.y99{bottom:792.643500px;}
.yb6{bottom:794.826600px;}
.y2be{bottom:796.907250px;}
.y71{bottom:797.341950px;}
.y26e{bottom:797.554950px;}
.y221{bottom:798.325050px;}
.y1b9{bottom:800.620500px;}
.y18b{bottom:804.514500px;}
.y240{bottom:805.399350px;}
.y1fe{bottom:805.411350px;}
.y1e7{bottom:806.307000px;}
.y52{bottom:806.553450px;}
.y25d{bottom:807.051000px;}
.y30{bottom:810.805500px;}
.y2a0{bottom:812.838150px;}
.y116{bottom:813.903300px;}
.ydc{bottom:813.915150px;}
.y16a{bottom:815.566800px;}
.y98{bottom:816.643500px;}
.y276{bottom:818.307000px;}
.yfb{bottom:820.151400px;}
.y2bd{bottom:820.907250px;}
.y26d{bottom:821.554950px;}
.y220{bottom:822.325050px;}
.y23f{bottom:829.399350px;}
.y70{bottom:829.846050px;}
.y51{bottom:830.553450px;}
.y266{bottom:832.393650px;}
.y1e6{bottom:832.810800px;}
.y1{bottom:836.094750px;}
.y115{bottom:837.903300px;}
.ydb{bottom:837.915150px;}
.y1c0{bottom:838.848000px;}
.y25c{bottom:839.554950px;}
.y169{bottom:839.566800px;}
.y97{bottom:840.643500px;}
.y18a{bottom:842.733000px;}
.y2f{bottom:843.309450px;}
.y29f{bottom:845.341950px;}
.y26c{bottom:845.554950px;}
.y298{bottom:846.419100px;}
.yfa{bottom:846.655350px;}
.y1e5{bottom:850.810800px;}
.y23e{bottom:853.399350px;}
.y2bc{bottom:853.411350px;}
.y6f{bottom:853.846050px;}
.y21f{bottom:854.829000px;}
.y114{bottom:861.903300px;}
.yda{bottom:861.915150px;}
.y50{bottom:863.057400px;}
.y25b{bottom:863.554950px;}
.y2e{bottom:867.309450px;}
.y29e{bottom:869.341950px;}
.y297{bottom:870.419100px;}
.y96{bottom:873.147450px;}
.y1be{bottom:875.950500px;}
.y23d{bottom:877.399350px;}
.y2bb{bottom:877.411350px;}
.y6e{bottom:877.846050px;}
.y26b{bottom:878.058900px;}
.y21e{bottom:878.829000px;}
.y189{bottom:879.829500px;}
.y168{bottom:884.826600px;}
.yd9{bottom:885.915150px;}
.y4f{bottom:887.057400px;}
.y2d{bottom:891.309450px;}
.y29d{bottom:893.341950px;}
.y113{bottom:894.407250px;}
.y296{bottom:894.419100px;}
.y25a{bottom:896.058900px;}
.y95{bottom:897.147450px;}
.y2ba{bottom:901.411350px;}
.y6d{bottom:901.846050px;}
.y1e4{bottom:902.826600px;}
.y21d{bottom:902.829000px;}
.y23c{bottom:909.903300px;}
.yf9{bottom:909.915150px;}
.y4e{bottom:911.057400px;}
.y2c{bottom:915.309450px;}
.y29c{bottom:917.341950px;}
.y187{bottom:918.048000px;}
.y112{bottom:918.407250px;}
.yd8{bottom:918.419100px;}
.y94{bottom:921.147450px;}
.y1b8{bottom:924.655200px;}
.y6c{bottom:925.846050px;}
.y21c{bottom:926.829000px;}
.y23b{bottom:933.903300px;}
.yf8{bottom:933.915150px;}
.y4d{bottom:935.057400px;}
.y26a{bottom:938.826600px;}
.y1b{bottom:938.932200px;}
.y2b{bottom:939.309450px;}
.y111{bottom:942.407250px;}
.yd7{bottom:942.419100px;}
.y1b7{bottom:942.655200px;}
.y93{bottom:945.147450px;}
.y6b{bottom:949.846050px;}
.y21b{bottom:950.829000px;}
.y184{bottom:955.144500px;}
.y259{bottom:956.826600px;}
.y23a{bottom:957.903300px;}
.y2b9{bottom:957.915150px;}
.y4c{bottom:959.057400px;}
.y2a{bottom:963.309450px;}
.y110{bottom:966.407250px;}
.yd6{bottom:966.419100px;}
.y92{bottom:969.147450px;}
.y1a{bottom:969.982200px;}
.y29b{bottom:973.846050px;}
.y21a{bottom:974.829000px;}
.y295{bottom:974.923050px;}
.y132{bottom:977.651400px;}
.y1b6{bottom:981.915000px;}
.y6a{bottom:982.349850px;}
.y4b{bottom:983.057400px;}
.y29{bottom:987.309450px;}
.y10f{bottom:990.407250px;}
.yd5{bottom:990.419100px;}
.y181{bottom:993.363000px;}
.y29a{bottom:997.846050px;}
.y219{bottom:998.829000px;}
.y294{bottom:998.923050px;}
.y91{bottom:1001.651400px;}
.y1b5{bottom:1005.915000px;}
.y69{bottom:1006.349850px;}
.y10e{bottom:1014.407250px;}
.yd4{bottom:1014.419100px;}
.y1f{bottom:1014.866250px;}
.y4a{bottom:1015.561500px;}
.y131{bottom:1017.159150px;}
.y28{bottom:1019.813400px;}
.y299{bottom:1021.846050px;}
.y293{bottom:1022.923050px;}
.y1b4{bottom:1029.915000px;}
.y68{bottom:1030.349850px;}
.y218{bottom:1031.332800px;}
.y17d{bottom:1031.583000px;}
.yd3{bottom:1038.419100px;}
.y49{bottom:1039.561500px;}
.y90{bottom:1041.159150px;}
.y27{bottom:1043.813400px;}
.y10d{bottom:1046.911200px;}
.y292{bottom:1046.923050px;}
.y67{bottom:1054.349850px;}
.y217{bottom:1055.332800px;}
.y1e{bottom:1056.866250px;}
.yd2{bottom:1062.419100px;}
.y48{bottom:1063.561500px;}
.y26{bottom:1067.813400px;}
.y179{bottom:1069.803000px;}
.y130{bottom:1070.923050px;}
.y66{bottom:1078.349850px;}
.y216{bottom:1079.332800px;}
.yb5{bottom:1082.826600px;}
.yd1{bottom:1086.419100px;}
.y47{bottom:1087.561500px;}
.y25{bottom:1091.813400px;}
.y8f{bottom:1094.923050px;}
.y1d{bottom:1098.866250px;}
.y167{bottom:1100.826600px;}
.y65{bottom:1102.349850px;}
.yb4{bottom:1109.330550px;}
.yf7{bottom:1110.419100px;}
.y215{bottom:1111.836750px;}
.y258{bottom:1118.826600px;}
.y8e{bottom:1118.923050px;}
.yb3{bottom:1127.330550px;}
.y24{bottom:1128.569250px;}
.y64{bottom:1139.105700px;}
.y178{bottom:1140.086550px;}
.y214{bottom:1142.840700px;}
.y8d{bottom:1142.923050px;}
.yb2{bottom:1145.330550px;}
.y1c{bottom:1152.283500px;}
.y177{bottom:1158.086550px;}
.y21{bottom:1207.115700px;}
.y20{bottom:1223.315700px;}
.h1b{height:29.078007px;}
.h1a{height:36.924727px;}
.h20{height:37.095000px;}
.h25{height:37.096500px;}
.h35{height:37.102500px;}
.h38{height:37.104000px;}
.h2d{height:37.137000px;}
.h24{height:38.218500px;}
.h22{height:38.220000px;}
.h37{height:38.226000px;}
.h34{height:38.227500px;}
.h2b{height:38.263500px;}
.h2f{height:38.265000px;}
.h1f{height:39.958242px;}
.h2a{height:40.004180px;}
.h21{height:41.956154px;}
.h23{height:41.956754px;}
.h26{height:41.957354px;}
.h33{height:41.964768px;}
.h2c{height:42.004389px;}
.h2e{height:42.005589px;}
.h1c{height:43.078711px;}
.h8{height:43.449960px;}
.h28{height:48.411378px;}
.h3c{height:48.420853px;}
.h31{height:48.466503px;}
.h18{height:50.639400px;}
.h6{height:51.453900px;}
.hc{height:54.162000px;}
.h15{height:55.308000px;}
.h14{height:55.674000px;}
.h16{height:56.532815px;}
.h5{height:57.171000px;}
.h1e{height:57.328500px;}
.h29{height:57.396000px;}
.he{height:60.180000px;}
.hf{height:61.108405px;}
.h11{height:66.198000px;}
.h12{height:67.219214px;}
.h13{height:68.046000px;}
.h4{height:68.605200px;}
.hd{height:74.232000px;}
.h9{height:84.252000px;}
.h10{height:86.604000px;}
.h7{height:89.533397px;}
.ha{height:105.840000px;}
.h32{height:113.557500px;}
.h3{height:114.342000px;}
.h39{height:114.682500px;}
.h36{height:115.806000px;}
.h3a{height:120.303000px;}
.hb{height:142.278000px;}
.h2{height:156.468000px;}
.h1d{height:317.340000px;}
.h19{height:319.591500px;}
.h30{height:331.279500px;}
.h17{height:337.596000px;}
.h27{height:406.089000px;}
.h3b{height:590.290500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:108.013500px;}
.w9{width:111.388500px;}
.wa{width:126.015000px;}
.wc{width:128.266500px;}
.w7{width:136.140000px;}
.wd{width:138.393000px;}
.w3{width:292.536000px;}
.w4{width:302.662500px;}
.wb{width:318.414000px;}
.w5{width:329.665500px;}
.w2{width:625.530000px;}
.w8{width:637.954500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5b{left:4.499550px;}
.x60{left:5.625000px;}
.x5d{left:9.000450px;}
.x4e{left:10.201350px;}
.x65{left:11.251200px;}
.x4f{left:15.189750px;}
.x68{left:18.002400px;}
.x5c{left:23.627400px;}
.x64{left:27.003150px;}
.x67{left:30.378900px;}
.x4b{left:31.436700px;}
.x5f{left:36.003750px;}
.x6b{left:41.630550px;}
.x50{left:47.166300px;}
.x10{left:48.286050px;}
.x4d{left:50.144100px;}
.x51{left:68.379150px;}
.x55{left:71.427150px;}
.x4c{left:74.867250px;}
.x12{left:87.962550px;}
.x15{left:90.077100px;}
.x59{left:93.543300px;}
.x14{left:94.824000px;}
.x6e{left:102.388050px;}
.x1d{left:106.299150px;}
.x6d{left:110.263950px;}
.x4a{left:123.112500px;}
.x61{left:127.068000px;}
.x41{left:133.755000px;}
.x39{left:139.299150px;}
.x43{left:142.547400px;}
.x53{left:145.344450px;}
.x44{left:149.652300px;}
.xd{left:152.644200px;}
.x69{left:154.071000px;}
.x5a{left:159.697500px;}
.x56{left:160.784100px;}
.x45{left:161.792850px;}
.x62{left:163.072500px;}
.x83{left:166.557000px;}
.x13{left:167.613750px;}
.x1b{left:170.219850px;}
.x76{left:178.097250px;}
.x3e{left:179.812800px;}
.x71{left:183.136200px;}
.x74{left:184.220550px;}
.xf{left:186.180750px;}
.x46{left:189.856350px;}
.x47{left:192.698400px;}
.x84{left:197.824950px;}
.x6f{left:200.390700px;}
.x35{left:203.137800px;}
.x11{left:204.693300px;}
.x48{left:206.552400px;}
.x99{left:209.089800px;}
.x49{left:212.236200px;}
.x7b{left:217.198050px;}
.x54{left:223.187550px;}
.x8f{left:232.687950px;}
.x33{left:235.707450px;}
.x5{left:238.322850px;}
.xe{left:239.576850px;}
.x1{left:245.298600px;}
.xb{left:247.750200px;}
.x2{left:250.017150px;}
.x40{left:252.661800px;}
.x7a{left:257.237850px;}
.x7d{left:258.634650px;}
.x70{left:263.306400px;}
.x34{left:266.578500px;}
.x37{left:268.096950px;}
.x85{left:270.722850px;}
.x8c{left:275.241600px;}
.x79{left:278.668950px;}
.x89{left:281.368650px;}
.x3a{left:283.663650px;}
.x9c{left:285.272700px;}
.x42{left:292.536300px;}
.xc{left:294.912300px;}
.x30{left:296.194950px;}
.x86{left:301.990650px;}
.x80{left:308.303100px;}
.x9{left:310.459200px;}
.x7c{left:312.573150px;}
.x32{left:319.891350px;}
.x73{left:323.731050px;}
.x24{left:326.010900px;}
.x31{left:327.066000px;}
.x3c{left:330.858450px;}
.x3{left:334.353300px;}
.x4{left:337.487850px;}
.x58{left:338.547900px;}
.x1c{left:340.459200px;}
.x95{left:341.804550px;}
.x38{left:351.303750px;}
.x7{left:352.761150px;}
.x75{left:353.902800px;}
.x87{left:355.045050px;}
.x25{left:356.881950px;}
.x1e{left:360.776850px;}
.x3f{left:362.016450px;}
.x78{left:363.574800px;}
.x93{left:364.769550px;}
.x36{left:367.746300px;}
.x57{left:375.125400px;}
.x72{left:381.489450px;}
.xa{left:382.678650px;}
.x9f{left:385.410150px;}
.x1f{left:392.085300px;}
.x96{left:399.418350px;}
.xa5{left:403.057950px;}
.x2c{left:407.453700px;}
.x92{left:417.932100px;}
.xa6{left:419.366250px;}
.xa2{left:421.033200px;}
.x8{left:423.911700px;}
.xa0{left:436.392600px;}
.x2d{left:438.324750px;}
.x3b{left:444.141450px;}
.x52{left:452.169000px;}
.x6{left:463.018650px;}
.x26{left:469.014450px;}
.x6a{left:472.485000px;}
.x3d{left:475.238400px;}
.x1a{left:476.486250px;}
.xa4{left:478.205400px;}
.x94{left:480.168900px;}
.x17{left:490.172700px;}
.x63{left:492.738000px;}
.x27{left:499.885500px;}
.x18{left:505.412850px;}
.x7e{left:510.890700px;}
.xa3{left:537.328650px;}
.x7f{left:541.780350px;}
.x81{left:543.781800px;}
.x20{left:548.199150px;}
.x8e{left:568.770900px;}
.x9d{left:573.220050px;}
.x82{left:575.973750px;}
.x21{left:579.507600px;}
.x16{left:583.533000px;}
.x9a{left:589.701750px;}
.x19{left:590.850150px;}
.x5e{left:597.376500px;}
.x6c{left:600.751500px;}
.x66{left:604.126500px;}
.x28{left:618.816450px;}
.x90{left:628.590450px;}
.x91{left:646.951800px;}
.x29{left:649.687350px;}
.x2e{left:653.746950px;}
.x88{left:662.588850px;}
.xa7{left:673.308150px;}
.x2f{left:684.618000px;}
.x2a{left:691.101900px;}
.xa1{left:698.294550px;}
.x8b{left:704.049150px;}
.x77{left:705.846150px;}
.x9e{left:717.513150px;}
.x2b{left:723.801750px;}
.x8a{left:726.343350px;}
.x8d{left:728.432400px;}
.x22{left:745.141800px;}
.x97{left:761.897700px;}
.x9b{left:765.676050px;}
.x98{left:770.906250px;}
.x23{left:776.450250px;}
@media print{
.v1{vertical-align:-128.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-2.232628pt;}
.ls3f{letter-spacing:-1.559072pt;}
.ls44{letter-spacing:-1.403165pt;}
.ls2a{letter-spacing:-1.260355pt;}
.ls2b{letter-spacing:-1.064304pt;}
.ls36{letter-spacing:-0.884308pt;}
.ls3e{letter-spacing:-0.883474pt;}
.ls33{letter-spacing:-0.883293pt;}
.ls35{letter-spacing:-0.780272pt;}
.ls2d{letter-spacing:-0.779376pt;}
.ls42{letter-spacing:-0.467722pt;}
.ls2e{letter-spacing:-0.467626pt;}
.ls26{letter-spacing:-0.336097pt;}
.ls29{letter-spacing:-0.252071pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.052018pt;}
.ls3b{letter-spacing:0.088112pt;}
.ls2c{letter-spacing:0.103917pt;}
.ls34{letter-spacing:0.104036pt;}
.ls40{letter-spacing:0.259845pt;}
.ls31{letter-spacing:0.571542pt;}
.ls3d{letter-spacing:0.571660pt;}
.ls3a{letter-spacing:0.572199pt;}
.ls30{letter-spacing:0.675459pt;}
.ls41{letter-spacing:0.675598pt;}
.ls39{letter-spacing:0.676236pt;}
.ls3c{letter-spacing:1.637026pt;}
.ls2f{letter-spacing:1.662669pt;}
.ls43{letter-spacing:1.663010pt;}
.ls37{letter-spacing:1.664580pt;}
.lsb{letter-spacing:1.724267pt;}
.lsa{letter-spacing:1.724800pt;}
.ls27{letter-spacing:1.764497pt;}
.ls32{letter-spacing:2.130294pt;}
.ls15{letter-spacing:2.133333pt;}
.ls23{letter-spacing:2.560000pt;}
.ls17{letter-spacing:2.984427pt;}
.ls16{letter-spacing:2.986667pt;}
.ls1{letter-spacing:3.040000pt;}
.ls13{letter-spacing:4.102907pt;}
.ls14{letter-spacing:4.103387pt;}
.lsd{letter-spacing:4.103440pt;}
.ls12{letter-spacing:4.103467pt;}
.ls10{letter-spacing:4.103520pt;}
.ls9{letter-spacing:4.104000pt;}
.ls5{letter-spacing:4.559733pt;}
.ls4{letter-spacing:4.560000pt;}
.ls21{letter-spacing:4.799467pt;}
.ls22{letter-spacing:4.800000pt;}
.ls1c{letter-spacing:4.906667pt;}
.ls19{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.470933pt;}
.ls2{letter-spacing:5.471467pt;}
.ls3{letter-spacing:5.472000pt;}
.ls7{letter-spacing:5.472107pt;}
.ls11{letter-spacing:5.694933pt;}
.lsf{letter-spacing:5.695467pt;}
.ls18{letter-spacing:7.466667pt;}
.ls24{letter-spacing:8.158080pt;}
.ls20{letter-spacing:8.158933pt;}
.ls1f{letter-spacing:8.159467pt;}
.ls1e{letter-spacing:8.160000pt;}
.lse{letter-spacing:9.394667pt;}
.lsc{letter-spacing:9.395200pt;}
.ls0{letter-spacing:11.093333pt;}
.ls1a{letter-spacing:11.999467pt;}
.ls1b{letter-spacing:12.000000pt;}
.ls6{letter-spacing:28.411200pt;}
.ls25{letter-spacing:1143.204766pt;}
.wse8{word-spacing:-58.666667pt;}
.ws12c{word-spacing:-48.458667pt;}
.ws132{word-spacing:-47.989333pt;}
.wsbc{word-spacing:-36.801600pt;}
.wsf3{word-spacing:-28.597333pt;}
.ws48{word-spacing:-21.760000pt;}
.ws46{word-spacing:-19.082560pt;}
.ws47{word-spacing:-18.560000pt;}
.ws88{word-spacing:-18.506880pt;}
.ws163{word-spacing:-18.348083pt;}
.ws154{word-spacing:-18.069333pt;}
.ws49{word-spacing:-16.816800pt;}
.ws4a{word-spacing:-16.808400pt;}
.ws45{word-spacing:-16.098133pt;}
.ws85{word-spacing:-14.784000pt;}
.ws10c{word-spacing:-13.420678pt;}
.ws122{word-spacing:-13.408019pt;}
.ws109{word-spacing:-13.405267pt;}
.ws120{word-spacing:-13.382035pt;}
.wsa{word-spacing:-13.108480pt;}
.ws11f{word-spacing:-12.420607pt;}
.ws11e{word-spacing:-12.004854pt;}
.ws10a{word-spacing:-11.860134pt;}
.ws108{word-spacing:-11.846515pt;}
.ws10d{word-spacing:-11.808116pt;}
.ws121{word-spacing:-11.277287pt;}
.wse{word-spacing:-10.923733pt;}
.ws10b{word-spacing:-10.871790pt;}
.wsf4{word-spacing:-10.515037pt;}
.ws4f{word-spacing:-10.348800pt;}
.ws144{word-spacing:-9.386667pt;}
.wsd4{word-spacing:-9.210667pt;}
.wsf7{word-spacing:-7.886219pt;}
.ws7a{word-spacing:-5.546667pt;}
.wsf5{word-spacing:-4.699021pt;}
.ws7d{word-spacing:-4.266667pt;}
.ws101{word-spacing:-3.585024pt;}
.wsd1{word-spacing:-3.578667pt;}
.ws5b{word-spacing:-3.520000pt;}
.wsdf{word-spacing:-3.461333pt;}
.wsd0{word-spacing:-3.344000pt;}
.ws117{word-spacing:-3.285333pt;}
.wsd2{word-spacing:-3.226667pt;}
.wsd8{word-spacing:-3.109333pt;}
.ws145{word-spacing:-3.050667pt;}
.ws7f{word-spacing:-2.933333pt;}
.ws148{word-spacing:-2.874667pt;}
.ws82{word-spacing:-2.720000pt;}
.wsda{word-spacing:-2.698667pt;}
.wse6{word-spacing:-2.640000pt;}
.wsea{word-spacing:-2.581333pt;}
.ws51{word-spacing:-2.560000pt;}
.ws139{word-spacing:-2.522667pt;}
.ws12d{word-spacing:-2.464000pt;}
.wse0{word-spacing:-2.405333pt;}
.ws64{word-spacing:-2.346667pt;}
.ws171{word-spacing:-2.263725pt;}
.wsa1{word-spacing:-2.229333pt;}
.ws87{word-spacing:-2.209067pt;}
.ws4e{word-spacing:-2.195253pt;}
.ws84{word-spacing:-2.190827pt;}
.ws86{word-spacing:-2.190773pt;}
.ws4c{word-spacing:-2.190720pt;}
.ws4d{word-spacing:-2.187360pt;}
.ws13c{word-spacing:-2.170667pt;}
.ws8f{word-spacing:-2.112000pt;}
.wscd{word-spacing:-1.994667pt;}
.wsb8{word-spacing:-1.936000pt;}
.ws93{word-spacing:-1.877333pt;}
.ws114{word-spacing:-1.870502pt;}
.ws164{word-spacing:-1.846723pt;}
.wse5{word-spacing:-1.818667pt;}
.ws133{word-spacing:-1.701333pt;}
.wsa9{word-spacing:-1.584000pt;}
.ws107{word-spacing:-1.525333pt;}
.wsed{word-spacing:-1.466667pt;}
.wsc5{word-spacing:-1.408000pt;}
.ws137{word-spacing:-1.349333pt;}
.ws15d{word-spacing:-1.310577pt;}
.ws15c{word-spacing:-1.290667pt;}
.wsa6{word-spacing:-1.232000pt;}
.wsc6{word-spacing:-1.173333pt;}
.ws94{word-spacing:-1.114667pt;}
.wsc8{word-spacing:-1.056000pt;}
.ws5c{word-spacing:-1.013333pt;}
.wse4{word-spacing:-0.997333pt;}
.wsde{word-spacing:-0.938667pt;}
.wsc4{word-spacing:-0.880000pt;}
.ws174{word-spacing:-0.834004pt;}
.ws143{word-spacing:-0.821333pt;}
.wsb7{word-spacing:-0.762667pt;}
.wsba{word-spacing:-0.704000pt;}
.wsf9{word-spacing:-0.673389pt;}
.wsf6{word-spacing:-0.669788pt;}
.ws13b{word-spacing:-0.645333pt;}
.wsdd{word-spacing:-0.586667pt;}
.ws106{word-spacing:-0.528000pt;}
.wsdb{word-spacing:-0.469333pt;}
.ws12a{word-spacing:-0.415753pt;}
.ws111{word-spacing:-0.415667pt;}
.wse9{word-spacing:-0.410667pt;}
.wsec{word-spacing:-0.352000pt;}
.ws11c{word-spacing:-0.312109pt;}
.ws125{word-spacing:-0.311814pt;}
.wsd3{word-spacing:-0.293333pt;}
.ws124{word-spacing:-0.234667pt;}
.ws68{word-spacing:-0.213333pt;}
.wsca{word-spacing:-0.176000pt;}
.ws173{word-spacing:-0.119143pt;}
.ws172{word-spacing:-0.117333pt;}
.wsab{word-spacing:-0.058667pt;}
.ws4b{word-spacing:0.000000pt;}
.wsd5{word-spacing:0.058667pt;}
.ws14b{word-spacing:0.059572pt;}
.wsfe{word-spacing:0.108030pt;}
.wsfa{word-spacing:0.117333pt;}
.ws176{word-spacing:0.119143pt;}
.ws10e{word-spacing:0.155875pt;}
.ws118{word-spacing:0.156054pt;}
.ws92{word-spacing:0.176000pt;}
.wsc0{word-spacing:0.234667pt;}
.wsb3{word-spacing:0.293333pt;}
.wseb{word-spacing:0.352000pt;}
.ws100{word-spacing:0.392112pt;}
.wsa8{word-spacing:0.410667pt;}
.ws76{word-spacing:0.480000pt;}
.wsd7{word-spacing:0.528000pt;}
.ws74{word-spacing:0.533333pt;}
.ws15b{word-spacing:0.536145pt;}
.wsb9{word-spacing:0.586667pt;}
.ws123{word-spacing:0.645333pt;}
.ws170{word-spacing:0.655289pt;}
.ws77{word-spacing:0.693333pt;}
.ws98{word-spacing:0.704000pt;}
.ws110{word-spacing:0.727418pt;}
.ws7e{word-spacing:0.800000pt;}
.wscc{word-spacing:0.821333pt;}
.ws156{word-spacing:0.880000pt;}
.wsb2{word-spacing:0.938667pt;}
.ws58{word-spacing:0.960000pt;}
.wsbb{word-spacing:0.997333pt;}
.ws6b{word-spacing:1.013333pt;}
.ws10f{word-spacing:1.039168pt;}
.ws119{word-spacing:1.040363pt;}
.wsaa{word-spacing:1.056000pt;}
.ws6f{word-spacing:1.066667pt;}
.wsc1{word-spacing:1.114667pt;}
.wsff{word-spacing:1.116314pt;}
.ws15e{word-spacing:1.131862pt;}
.ws126{word-spacing:1.143319pt;}
.ws5d{word-spacing:1.173333pt;}
.wsdc{word-spacing:1.232000pt;}
.ws9f{word-spacing:1.290667pt;}
.ws104{word-spacing:1.349333pt;}
.ws140{word-spacing:1.408000pt;}
.ws151{word-spacing:1.429721pt;}
.ws13f{word-spacing:1.466667pt;}
.wse7{word-spacing:1.525333pt;}
.ws90{word-spacing:1.584000pt;}
.ws91{word-spacing:1.608436pt;}
.wsb6{word-spacing:1.642667pt;}
.ws128{word-spacing:1.663010pt;}
.ws8e{word-spacing:1.701333pt;}
.ws16f{word-spacing:1.727579pt;}
.ws14f{word-spacing:1.760000pt;}
.ws9a{word-spacing:1.818667pt;}
.ws127{word-spacing:1.818917pt;}
.ws95{word-spacing:1.877333pt;}
.ws97{word-spacing:1.936000pt;}
.ws12f{word-spacing:1.994667pt;}
.ws5e{word-spacing:2.080000pt;}
.ws103{word-spacing:2.112000pt;}
.ws8d{word-spacing:2.170667pt;}
.wsef{word-spacing:2.229333pt;}
.ws141{word-spacing:2.288000pt;}
.ws96{word-spacing:2.346667pt;}
.wsd9{word-spacing:2.405333pt;}
.ws13e{word-spacing:2.464000pt;}
.ws130{word-spacing:2.581333pt;}
.ws175{word-spacing:2.621155pt;}
.wsf1{word-spacing:2.640000pt;}
.wsf8{word-spacing:2.663245pt;}
.wsc9{word-spacing:2.698667pt;}
.ws162{word-spacing:2.740298pt;}
.wsaf{word-spacing:2.757333pt;}
.wsee{word-spacing:2.816000pt;}
.ws99{word-spacing:2.874667pt;}
.ws55{word-spacing:2.880000pt;}
.wsa7{word-spacing:2.933333pt;}
.ws160{word-spacing:2.978585pt;}
.ws116{word-spacing:2.992000pt;}
.ws155{word-spacing:3.038157pt;}
.wsbe{word-spacing:3.050667pt;}
.ws9e{word-spacing:3.109333pt;}
.ws138{word-spacing:3.168000pt;}
.ws16d{word-spacing:3.216872pt;}
.wsa0{word-spacing:3.226667pt;}
.wsb4{word-spacing:3.285333pt;}
.wsf0{word-spacing:3.344000pt;}
.ws157{word-spacing:3.395587pt;}
.wscb{word-spacing:3.402667pt;}
.wsd6{word-spacing:3.461333pt;}
.ws150{word-spacing:3.520000pt;}
.ws149{word-spacing:3.578667pt;}
.ws113{word-spacing:3.585130pt;}
.ws11b{word-spacing:3.589251pt;}
.ws112{word-spacing:3.689046pt;}
.ws131{word-spacing:3.696000pt;}
.ws105{word-spacing:3.754667pt;}
.ws53{word-spacing:3.786667pt;}
.ws152{word-spacing:3.813333pt;}
.wsb1{word-spacing:3.872000pt;}
.ws136{word-spacing:3.930667pt;}
.ws9d{word-spacing:3.989333pt;}
.ws12b{word-spacing:4.001618pt;}
.ws13a{word-spacing:4.048000pt;}
.ws11a{word-spacing:4.213469pt;}
.ws147{word-spacing:4.282667pt;}
.ws16e{word-spacing:4.341333pt;}
.ws8b{word-spacing:4.517333pt;}
.wsf2{word-spacing:4.576000pt;}
.ws63{word-spacing:4.586667pt;}
.wsc2{word-spacing:4.634667pt;}
.ws14d{word-spacing:4.693333pt;}
.wsbf{word-spacing:4.752000pt;}
.ws14e{word-spacing:4.765736pt;}
.wsfd{word-spacing:4.810667pt;}
.ws8a{word-spacing:4.869333pt;}
.wse2{word-spacing:4.928000pt;}
.ws161{word-spacing:4.944451pt;}
.wse3{word-spacing:4.986667pt;}
.wsfc{word-spacing:5.045333pt;}
.ws14c{word-spacing:5.063594pt;}
.ws13d{word-spacing:5.104000pt;}
.ws115{word-spacing:5.143882pt;}
.ws129{word-spacing:5.144938pt;}
.wsae{word-spacing:5.162667pt;}
.wsa5{word-spacing:5.280000pt;}
.ws79{word-spacing:5.333333pt;}
.wsc3{word-spacing:5.338667pt;}
.ws89{word-spacing:5.397333pt;}
.ws146{word-spacing:5.514667pt;}
.wscf{word-spacing:5.573333pt;}
.wsc7{word-spacing:5.690667pt;}
.ws54{word-spacing:5.706667pt;}
.wsfb{word-spacing:5.808000pt;}
.wsb5{word-spacing:5.866667pt;}
.wsa2{word-spacing:5.984000pt;}
.ws60{word-spacing:6.080000pt;}
.ws61{word-spacing:6.240000pt;}
.ws2e{word-spacing:6.240715pt;}
.ws42{word-spacing:6.241248pt;}
.wsb0{word-spacing:6.336000pt;}
.ws12e{word-spacing:6.394667pt;}
.ws15f{word-spacing:6.453333pt;}
.wsa3{word-spacing:6.512000pt;}
.wsad{word-spacing:6.570667pt;}
.wsa4{word-spacing:6.612458pt;}
.ws71{word-spacing:6.720000pt;}
.wse1{word-spacing:6.805333pt;}
.ws9c{word-spacing:6.981333pt;}
.ws14a{word-spacing:7.157333pt;}
.ws135{word-spacing:7.216000pt;}
.ws169{word-spacing:7.744000pt;}
.ws8c{word-spacing:7.802667pt;}
.ws102{word-spacing:7.861333pt;}
.ws168{word-spacing:7.863464pt;}
.wsac{word-spacing:7.978667pt;}
.ws15a{word-spacing:8.154667pt;}
.ws142{word-spacing:8.272000pt;}
.ws166{word-spacing:8.330667pt;}
.ws134{word-spacing:8.389333pt;}
.ws78{word-spacing:8.426667pt;}
.ws167{word-spacing:8.459181pt;}
.ws6c{word-spacing:8.480000pt;}
.wsbd{word-spacing:8.976000pt;}
.ws11d{word-spacing:9.155191pt;}
.ws75{word-spacing:9.333333pt;}
.ws73{word-spacing:9.386667pt;}
.ws5f{word-spacing:9.653333pt;}
.ws9b{word-spacing:9.914667pt;}
.wsce{word-spacing:10.032000pt;}
.ws83{word-spacing:10.186667pt;}
.ws158{word-spacing:10.325333pt;}
.ws153{word-spacing:10.442667pt;}
.ws159{word-spacing:10.484619pt;}
.ws165{word-spacing:10.501333pt;}
.ws52{word-spacing:10.826667pt;}
.ws16a{word-spacing:11.088000pt;}
.ws2b{word-spacing:11.316048pt;}
.ws2c{word-spacing:11.316661pt;}
.ws6a{word-spacing:11.520000pt;}
.ws24{word-spacing:12.114981pt;}
.ws59{word-spacing:12.160000pt;}
.ws72{word-spacing:12.800000pt;}
.ws62{word-spacing:13.120000pt;}
.ws65{word-spacing:13.333333pt;}
.ws16b{word-spacing:13.728000pt;}
.ws66{word-spacing:13.760000pt;}
.ws16c{word-spacing:13.939777pt;}
.ws6d{word-spacing:14.773333pt;}
.ws28{word-spacing:15.912848pt;}
.ws26{word-spacing:16.582795pt;}
.ws81{word-spacing:17.493333pt;}
.ws67{word-spacing:17.546667pt;}
.wsc{word-spacing:17.680587pt;}
.ws80{word-spacing:19.093333pt;}
.ws43{word-spacing:20.888448pt;}
.ws6{word-spacing:21.217131pt;}
.ws3{word-spacing:22.110464pt;}
.wsb{word-spacing:23.209387pt;}
.ws7b{word-spacing:24.000000pt;}
.ws56{word-spacing:24.640000pt;}
.ws70{word-spacing:24.746667pt;}
.ws7c{word-spacing:27.306667pt;}
.ws17{word-spacing:27.856064pt;}
.ws40{word-spacing:28.887133pt;}
.ws29{word-spacing:28.893747pt;}
.ws22{word-spacing:31.223773pt;}
.ws3d{word-spacing:32.961453pt;}
.ws57{word-spacing:33.280000pt;}
.ws19{word-spacing:37.162400pt;}
.ws69{word-spacing:37.440000pt;}
.ws5a{word-spacing:38.186667pt;}
.ws36{word-spacing:41.948680pt;}
.ws2f{word-spacing:46.874520pt;}
.ws44{word-spacing:47.645515pt;}
.ws3b{word-spacing:48.778973pt;}
.ws6e{word-spacing:48.853333pt;}
.ws7{word-spacing:50.484320pt;}
.ws39{word-spacing:51.630600pt;}
.ws30{word-spacing:52.524360pt;}
.wsd{word-spacing:52.938453pt;}
.ws10{word-spacing:56.039520pt;}
.ws1e{word-spacing:57.250720pt;}
.ws16{word-spacing:58.314720pt;}
.ws1b{word-spacing:63.080587pt;}
.ws2d{word-spacing:64.964021pt;}
.ws12{word-spacing:65.038453pt;}
.ws5{word-spacing:66.274731pt;}
.ws0{word-spacing:66.292864pt;}
.ws2{word-spacing:77.859264pt;}
.ws34{word-spacing:78.926581pt;}
.ws1a{word-spacing:86.849664pt;}
.ws38{word-spacing:92.496181pt;}
.ws25{word-spacing:101.643888pt;}
.ws1d{word-spacing:106.001664pt;}
.ws11{word-spacing:107.902453pt;}
.ws4{word-spacing:112.931040pt;}
.ws3a{word-spacing:114.106315pt;}
.ws23{word-spacing:119.869221pt;}
.ws14{word-spacing:120.542133pt;}
.ws18{word-spacing:120.713440pt;}
.ws15{word-spacing:126.733397pt;}
.ws20{word-spacing:132.885387pt;}
.ws27{word-spacing:133.467621pt;}
.ws37{word-spacing:139.696421pt;}
.ws1{word-spacing:146.055531pt;}
.ws33{word-spacing:148.140973pt;}
.ws1c{word-spacing:155.929451pt;}
.ws31{word-spacing:165.631773pt;}
.ws1f{word-spacing:171.828651pt;}
.ws8{word-spacing:181.276331pt;}
.ws9{word-spacing:183.304587pt;}
.ws21{word-spacing:183.305120pt;}
.ws3c{word-spacing:184.946021pt;}
.ws3f{word-spacing:185.948048pt;}
.ws35{word-spacing:200.013213pt;}
.ws41{word-spacing:210.831888pt;}
.ws13{word-spacing:222.606997pt;}
.wsf{word-spacing:222.625131pt;}
.ws3e{word-spacing:265.280947pt;}
.ws32{word-spacing:280.921240pt;}
.ws2a{word-spacing:372.886795pt;}
.ws50{word-spacing:2641.873067pt;}
._8e{margin-left:-1747.125333pt;}
._a{margin-left:-1614.138667pt;}
._6{margin-left:-1093.579200pt;}
._0{margin-left:-1027.658667pt;}
._6e{margin-left:-1005.679036pt;}
._4{margin-left:-982.314667pt;}
._1{margin-left:-884.832000pt;}
._75{margin-left:-854.586667pt;}
._67{margin-left:-739.578667pt;}
._c{margin-left:-708.522667pt;}
._8{margin-left:-652.890667pt;}
._80{margin-left:-620.325333pt;}
._69{margin-left:-595.760000pt;}
._6d{margin-left:-484.224000pt;}
._68{margin-left:-434.853333pt;}
._88{margin-left:-433.760000pt;}
._89{margin-left:-407.813333pt;}
._6b{margin-left:-401.386667pt;}
._8a{margin-left:-375.680000pt;}
._58{margin-left:-370.912000pt;}
._87{margin-left:-361.470827pt;}
._71{margin-left:-357.386667pt;}
._76{margin-left:-339.765333pt;}
._86{margin-left:-337.392000pt;}
._8f{margin-left:-334.730667pt;}
._6a{margin-left:-320.565333pt;}
._7d{margin-left:-318.826667pt;}
._56{margin-left:-307.338667pt;}
._65{margin-left:-297.851200pt;}
._5{margin-left:-295.498667pt;}
._4c{margin-left:-294.506667pt;}
._5c{margin-left:-290.293333pt;}
._64{margin-left:-280.912000pt;}
._53{margin-left:-265.685333pt;}
._3{margin-left:-262.773333pt;}
._4e{margin-left:-260.746667pt;}
._51{margin-left:-250.752000pt;}
._85{margin-left:-246.768000pt;}
._2{margin-left:-245.301333pt;}
._5d{margin-left:-241.392000pt;}
._7e{margin-left:-240.160000pt;}
._82{margin-left:-228.645333pt;}
._84{margin-left:-227.685333pt;}
._7a{margin-left:-223.045333pt;}
._70{margin-left:-219.866667pt;}
._78{margin-left:-209.738667pt;}
._50{margin-left:-206.826667pt;}
._6f{margin-left:-204.564467pt;}
._74{margin-left:-200.858667pt;}
._66{margin-left:-191.253333pt;}
._7f{margin-left:-190.240000pt;}
._55{margin-left:-188.325333pt;}
._83{margin-left:-185.866667pt;}
._5f{margin-left:-180.432000pt;}
._9{margin-left:-176.826667pt;}
._7b{margin-left:-173.893333pt;}
._73{margin-left:-164.986667pt;}
._8c{margin-left:-147.200000pt;}
._5a{margin-left:-145.866667pt;}
._4d{margin-left:-144.165333pt;}
._8b{margin-left:-138.821333pt;}
._54{margin-left:-135.461333pt;}
._81{margin-left:-132.240000pt;}
._77{margin-left:-130.874667pt;}
._63{margin-left:-129.818667pt;}
._59{margin-left:-127.546667pt;}
._72{margin-left:-120.693333pt;}
._61{margin-left:-119.739723pt;}
._52{margin-left:-108.154667pt;}
._5b{margin-left:-97.946667pt;}
._7c{margin-left:-93.493333pt;}
._4f{margin-left:-91.838827pt;}
._57{margin-left:-87.941333pt;}
._60{margin-left:-87.034667pt;}
._4b{margin-left:-78.053333pt;}
._7{margin-left:-71.855467pt;}
._1d{margin-left:-70.158944pt;}
._5e{margin-left:-68.368000pt;}
._2c{margin-left:-57.595840pt;}
._6c{margin-left:-49.600000pt;}
._48{margin-left:-47.000533pt;}
._79{margin-left:-45.834667pt;}
._62{margin-left:-43.674667pt;}
._18{margin-left:-36.682464pt;}
._13{margin-left:-34.903456pt;}
._3d{margin-left:-33.844597pt;}
._17{margin-left:-31.213504pt;}
._12{margin-left:-30.021824pt;}
._15{margin-left:-28.851424pt;}
._32{margin-left:-27.882173pt;}
._30{margin-left:-26.929765pt;}
._35{margin-left:-26.008312pt;}
._d{margin-left:-24.276224pt;}
._e{margin-left:-23.071776pt;}
._1f{margin-left:-22.178016pt;}
._36{margin-left:-21.273899pt;}
._1c{margin-left:-20.007456pt;}
._24{margin-left:-19.041344pt;}
._1b{margin-left:-17.339371pt;}
._14{margin-left:-15.615264pt;}
._23{margin-left:-14.378187pt;}
._21{margin-left:-12.569291pt;}
._28{margin-left:-11.373045pt;}
._f{margin-left:-10.167584pt;}
._25{margin-left:-8.476533pt;}
._2e{margin-left:-7.465024pt;}
._92{margin-left:-6.406485pt;}
._49{margin-left:-5.507467pt;}
._47{margin-left:-4.573621pt;}
._27{margin-left:-3.597461pt;}
._33{margin-left:-2.597688pt;}
._44{margin-left:-1.501835pt;}
._20{width:1.234240pt;}
._31{width:2.471165pt;}
._22{width:3.833237pt;}
._16{width:5.490240pt;}
._40{width:6.399939pt;}
._45{width:7.463680pt;}
._4a{width:8.861867pt;}
._2b{width:9.768533pt;}
._46{width:11.332264pt;}
._34{width:13.244064pt;}
._8d{width:16.371573pt;}
._3f{width:17.989776pt;}
._29{width:20.165333pt;}
._10{width:22.593280pt;}
._11{width:24.198720pt;}
._2a{width:28.074400pt;}
._3b{width:29.481899pt;}
._91{width:40.421333pt;}
._1a{width:41.344000pt;}
._39{width:42.726389pt;}
._38{width:45.862341pt;}
._90{width:46.933333pt;}
._2f{width:64.409717pt;}
._42{width:79.830544pt;}
._41{width:97.015643pt;}
._3c{width:99.551613pt;}
._37{width:106.686120pt;}
._2d{width:110.204267pt;}
._19{width:112.846144pt;}
._43{width:129.007243pt;}
._1e{width:136.021867pt;}
._26{width:142.362635pt;}
._3e{width:149.484315pt;}
._3a{width:303.861896pt;}
._b{width:472.109867pt;}
.fs7{font-size:31.920000pt;}
.fs11{font-size:33.600000pt;}
.fs5{font-size:35.466667pt;}
.fs19{font-size:36.010133pt;}
.fs9{font-size:38.506667pt;}
.fs3{font-size:42.560000pt;}
.fs6{font-size:45.600000pt;}
.fs10{font-size:48.000000pt;}
.fs18{font-size:48.013867pt;}
.fs16{font-size:48.740438pt;}
.fs4{font-size:50.666667pt;}
.fs1b{font-size:51.958400pt;}
.fs1f{font-size:51.969067pt;}
.fs1d{font-size:52.018133pt;}
.fsb{font-size:52.266667pt;}
.fsa{font-size:53.333333pt;}
.fs13{font-size:54.156114pt;}
.fs1a{font-size:56.016000pt;}
.fs14{font-size:58.666667pt;}
.fs15{font-size:59.571698pt;}
.fs1c{font-size:59.952533pt;}
.fs20{font-size:59.964267pt;}
.fs17{font-size:60.017067pt;}
.fs1e{font-size:60.020800pt;}
.fs2{font-size:60.800000pt;}
.fs12{font-size:64.000000pt;}
.fsc{font-size:74.666667pt;}
.fs8{font-size:79.347200pt;}
.fse{font-size:84.000000pt;}
.fs1{font-size:101.333333pt;}
.fsd{font-size:120.000000pt;}
.fsf{font-size:122.666667pt;}
.fs0{font-size:138.666667pt;}
.y1b2{bottom:-11.635467pt;}
.y190{bottom:-8.737600pt;}
.y1e2{bottom:-7.981067pt;}
.y0{bottom:0.000000pt;}
.y17a{bottom:0.000133pt;}
.y19c{bottom:0.000400pt;}
.y137{bottom:8.002267pt;}
.y154{bottom:10.597067pt;}
.y141{bottom:10.797200pt;}
.y17c{bottom:11.990800pt;}
.y17e{bottom:11.991067pt;}
.y180{bottom:11.991200pt;}
.y17f{bottom:11.991333pt;}
.y188{bottom:11.991600pt;}
.y1df{bottom:11.991867pt;}
.y1d7{bottom:11.992000pt;}
.y1c1{bottom:11.992533pt;}
.y1cf{bottom:11.992667pt;}
.y1d5{bottom:11.993067pt;}
.y1c9{bottom:11.993333pt;}
.y1aa{bottom:12.003067pt;}
.y1a3{bottom:12.003333pt;}
.y1b0{bottom:12.004000pt;}
.y1af{bottom:12.004133pt;}
.y19e{bottom:12.004800pt;}
.y185{bottom:12.989467pt;}
.y186{bottom:12.989600pt;}
.y18c{bottom:12.989733pt;}
.y183{bottom:12.990533pt;}
.y182{bottom:12.990667pt;}
.y1cd{bottom:12.991067pt;}
.y1dd{bottom:12.991200pt;}
.y1e0{bottom:12.991867pt;}
.y1ca{bottom:12.992133pt;}
.y1c2{bottom:12.992267pt;}
.y1bf{bottom:12.992400pt;}
.y1a8{bottom:13.004133pt;}
.y1a1{bottom:13.004400pt;}
.y1a0{bottom:13.004533pt;}
.y1ac{bottom:13.004933pt;}
.y1ad{bottom:13.005200pt;}
.y1a5{bottom:13.005333pt;}
.y1a6{bottom:13.005467pt;}
.y19{bottom:26.719333pt;}
.y1bd{bottom:26.984000pt;}
.y1d3{bottom:28.982800pt;}
.y17b{bottom:29.976533pt;}
.y19d{bottom:30.010800pt;}
.y23{bottom:30.288933pt;}
.y22{bottom:30.638400pt;}
.y14c{bottom:35.126267pt;}
.y139{bottom:35.430400pt;}
.y155{bottom:36.014667pt;}
.y18{bottom:36.057200pt;}
.y142{bottom:36.319067pt;}
.y1bc{bottom:44.973200pt;}
.y17{bottom:45.395067pt;}
.y1c6{bottom:45.972667pt;}
.y1db{bottom:50.969333pt;}
.y157{bottom:56.872533pt;}
.y16{bottom:58.057724pt;}
.y14d{bottom:61.682400pt;}
.y1bb{bottom:61.963200pt;}
.y143{bottom:63.083467pt;}
.y13a{bottom:63.422933pt;}
.y1c5{bottom:63.961867pt;}
.y1d2{bottom:63.962000pt;}
.y1da{bottom:67.959333pt;}
.y156{bottom:68.269200pt;}
.y1b3{bottom:75.163600pt;}
.y15{bottom:75.851333pt;}
.y1ba{bottom:79.952533pt;}
.y1d1{bottom:80.951867pt;}
.y1c4{bottom:81.951200pt;}
.y1d9{bottom:85.948533pt;}
.y14e{bottom:88.238533pt;}
.y13b{bottom:88.959467pt;}
.y158{bottom:89.127200pt;}
.y144{bottom:89.848000pt;}
.y1b1{bottom:98.046667pt;}
.y1fd{bottom:100.013867pt;}
.y8c{bottom:102.512267pt;}
.yd0{bottom:102.712000pt;}
.y1ae{bottom:103.417333pt;}
.y12f{bottom:103.427467pt;}
.y14f{bottom:114.794667pt;}
.y159{bottom:115.683067pt;}
.y13c{bottom:115.723867pt;}
.y145{bottom:116.612533pt;}
.yf6{bottom:117.233467pt;}
.y291{bottom:117.368133pt;}
.y1fc{bottom:121.347200pt;}
.y8b{bottom:123.845600pt;}
.ycf{bottom:124.045333pt;}
.y12e{bottom:124.760800pt;}
.yb1{bottom:127.207067pt;}
.y2d6{bottom:128.330533pt;}
.y275{bottom:130.250133pt;}
.y239{bottom:130.924133pt;}
.y2b8{bottom:134.932267pt;}
.y1ab{bottom:136.428000pt;}
.y166{bottom:136.550933pt;}
.yf5{bottom:138.566800pt;}
.y290{bottom:138.701467pt;}
.y150{bottom:141.350800pt;}
.y15a{bottom:142.239467pt;}
.y13d{bottom:142.488267pt;}
.y146{bottom:143.377067pt;}
.y8a{bottom:145.178933pt;}
.yce{bottom:145.378667pt;}
.y12d{bottom:146.094133pt;}
.yb0{bottom:148.540400pt;}
.y2d5{bottom:149.663867pt;}
.y1fb{bottom:150.239600pt;}
.y274{bottom:151.583467pt;}
.y238{bottom:152.257467pt;}
.y10c{bottom:153.212533pt;}
.y2b7{bottom:156.265600pt;}
.y165{bottom:157.884267pt;}
.y14{bottom:159.211733pt;}
.yf4{bottom:159.900133pt;}
.y28f{bottom:160.034800pt;}
.y148{bottom:164.443333pt;}
.ycd{bottom:166.712000pt;}
.y12c{bottom:167.427467pt;}
.y151{bottom:167.906800pt;}
.y15b{bottom:168.795333pt;}
.y13e{bottom:169.253067pt;}
.yaf{bottom:169.873733pt;}
.y1a9{bottom:170.441333pt;}
.y1fa{bottom:171.572933pt;}
.y273{bottom:172.916800pt;}
.y13{bottom:173.145067pt;}
.y257{bottom:173.674267pt;}
.y89{bottom:174.071333pt;}
.y10b{bottom:174.545867pt;}
.y46{bottom:175.387867pt;}
.y147{bottom:175.839867pt;}
.y2d4{bottom:178.556267pt;}
.y164{bottom:179.217600pt;}
.y237{bottom:181.149733pt;}
.yf3{bottom:181.233467pt;}
.y28e{bottom:181.368133pt;}
.y2b6{bottom:185.157867pt;}
.y12{bottom:187.078400pt;}
.ycc{bottom:188.045333pt;}
.y12b{bottom:188.760800pt;}
.yae{bottom:191.207067pt;}
.y1f9{bottom:192.906267pt;}
.y152{bottom:194.462933pt;}
.y256{bottom:195.007600pt;}
.y15c{bottom:195.351733pt;}
.y88{bottom:195.404667pt;}
.y10a{bottom:195.879200pt;}
.y13f{bottom:196.017600pt;}
.y45{bottom:196.721200pt;}
.y149{bottom:196.906133pt;}
.y2d3{bottom:199.889600pt;}
.y163{bottom:200.550933pt;}
.y11{bottom:201.011733pt;}
.y236{bottom:202.483067pt;}
.yf2{bottom:202.566800pt;}
.y28d{bottom:202.701467pt;}
.y1a7{bottom:203.452000pt;}
.ycb{bottom:209.378667pt;}
.y12a{bottom:210.094133pt;}
.yad{bottom:212.540400pt;}
.y272{bottom:213.147733pt;}
.y2b5{bottom:214.050267pt;}
.y1f8{bottom:214.239600pt;}
.y87{bottom:216.738000pt;}
.y109{bottom:217.212533pt;}
.y153{bottom:221.019067pt;}
.y162{bottom:221.884267pt;}
.y15d{bottom:221.907733pt;}
.y140{bottom:222.782133pt;}
.y14a{bottom:223.670800pt;}
.y235{bottom:223.816400pt;}
.y255{bottom:223.900000pt;}
.y28c{bottom:224.034800pt;}
.y2d2{bottom:228.782000pt;}
.y44{bottom:229.393067pt;}
.y213{bottom:230.125867pt;}
.yca{bottom:230.712000pt;}
.y129{bottom:231.427467pt;}
.yf1{bottom:231.459200pt;}
.y10{bottom:232.897867pt;}
.yac{bottom:233.873733pt;}
.y2b4{bottom:235.383600pt;}
.y176{bottom:236.927200pt;}
.y1a4{bottom:237.462667pt;}
.y86{bottom:238.071333pt;}
.y108{bottom:238.545867pt;}
.y1f7{bottom:243.131867pt;}
.y161{bottom:243.217600pt;}
.y254{bottom:245.233333pt;}
.y28b{bottom:245.368133pt;}
.y2d1{bottom:250.115333pt;}
.y212{bottom:251.459200pt;}
.y234{bottom:252.708800pt;}
.y128{bottom:252.760800pt;}
.yf0{bottom:252.792533pt;}
.yf{bottom:252.955067pt;}
.yab{bottom:255.207067pt;}
.y175{bottom:258.260533pt;}
.y15e{bottom:258.741067pt;}
.y85{bottom:259.404667pt;}
.yc9{bottom:259.604400pt;}
.y107{bottom:259.879200pt;}
.y14b{bottom:260.607733pt;}
.y2b3{bottom:264.276000pt;}
.y1f6{bottom:264.465200pt;}
.y160{bottom:264.550933pt;}
.y253{bottom:266.566667pt;}
.y269{bottom:270.110267pt;}
.y1e3{bottom:270.356800pt;}
.y2d0{bottom:271.448667pt;}
.y1a2{bottom:271.476000pt;}
.y211{bottom:272.792533pt;}
.y233{bottom:274.042133pt;}
.yef{bottom:274.125867pt;}
.y28a{bottom:274.260533pt;}
.yaa{bottom:276.540400pt;}
.y1ec{bottom:278.922000pt;}
.y174{bottom:279.593867pt;}
.ye{bottom:280.193333pt;}
.y84{bottom:280.738000pt;}
.yc8{bottom:280.937733pt;}
.y106{bottom:281.212533pt;}
.y127{bottom:281.653200pt;}
.y2b2{bottom:285.609333pt;}
.y1f5{bottom:285.798533pt;}
.y252{bottom:287.900000pt;}
.y1e1{bottom:288.900000pt;}
.y210{bottom:294.125867pt;}
.yee{bottom:295.459200pt;}
.y289{bottom:295.593867pt;}
.ya9{bottom:297.873733pt;}
.y1d8{bottom:297.909333pt;}
.yd{bottom:300.250533pt;}
.y43{bottom:300.264533pt;}
.y2cf{bottom:300.341067pt;}
.yc7{bottom:302.271067pt;}
.y105{bottom:302.545867pt;}
.y232{bottom:302.934533pt;}
.y126{bottom:302.986533pt;}
.y19f{bottom:304.486667pt;}
.y15f{bottom:304.781867pt;}
.y2b1{bottom:306.942667pt;}
.y83{bottom:309.630400pt;}
.y1f4{bottom:314.690933pt;}
.y20f{bottom:315.459200pt;}
.y251{bottom:316.792267pt;}
.yed{bottom:316.792533pt;}
.y288{bottom:316.927200pt;}
.y173{bottom:319.824933pt;}
.y42{bottom:321.597867pt;}
.y2ce{bottom:321.674400pt;}
.yc6{bottom:323.604400pt;}
.y104{bottom:323.879200pt;}
.y125{bottom:324.319867pt;}
.y136{bottom:324.802667pt;}
.ya8{bottom:326.766133pt;}
.yc{bottom:327.488933pt;}
.y82{bottom:330.963733pt;}
.y138{bottom:332.804000pt;}
.y1de{bottom:334.888000pt;}
.y2b0{bottom:335.835067pt;}
.y1f3{bottom:336.024267pt;}
.y250{bottom:338.125600pt;}
.yec{bottom:338.125867pt;}
.y287{bottom:338.260533pt;}
.y63{bottom:339.151733pt;}
.y19b{bottom:340.498667pt;}
.y41{bottom:342.931200pt;}
.y2cd{bottom:343.007733pt;}
.y20e{bottom:344.351600pt;}
.yc5{bottom:344.937733pt;}
.y103{bottom:345.212533pt;}
.y231{bottom:345.611733pt;}
.y124{bottom:345.653200pt;}
.yb{bottom:347.546133pt;}
.y81{bottom:352.297067pt;}
.ya7{bottom:355.658533pt;}
.y2af{bottom:357.168400pt;}
.y1f2{bottom:357.357600pt;}
.y24f{bottom:359.459067pt;}
.yeb{bottom:359.459200pt;}
.y286{bottom:359.593867pt;}
.y62{bottom:360.485067pt;}
.ya{bottom:364.012800pt;}
.y40{bottom:364.264533pt;}
.y20d{bottom:365.684933pt;}
.yc4{bottom:366.271067pt;}
.y102{bottom:366.545733pt;}
.y230{bottom:366.945067pt;}
.y123{bottom:366.986533pt;}
.y1dc{bottom:370.866667pt;}
.y2cc{bottom:371.900133pt;}
.y80{bottom:373.630400pt;}
.y2ae{bottom:378.501733pt;}
.y24e{bottom:380.792400pt;}
.y285{bottom:380.927200pt;}
.y61{bottom:381.818400pt;}
.y1f1{bottom:386.250000pt;}
.y20c{bottom:387.018267pt;}
.yc3{bottom:387.604400pt;}
.y101{bottom:387.879067pt;}
.y22f{bottom:388.278400pt;}
.y122{bottom:388.319867pt;}
.yea{bottom:388.351600pt;}
.y9{bottom:391.251067pt;}
.y3f{bottom:393.156933pt;}
.y2cb{bottom:393.233467pt;}
.ya6{bottom:398.335733pt;}
.y284{bottom:402.260533pt;}
.y7f{bottom:402.522800pt;}
.y19a{bottom:402.722667pt;}
.y60{bottom:403.151733pt;}
.y1d0{bottom:404.845333pt;}
.y2ad{bottom:407.394133pt;}
.y1f0{bottom:407.583333pt;}
.y100{bottom:409.212400pt;}
.y22e{bottom:409.611733pt;}
.y24d{bottom:409.684667pt;}
.ye9{bottom:409.684933pt;}
.y8{bottom:411.308267pt;}
.y3e{bottom:414.490267pt;}
.y20b{bottom:415.910667pt;}
.yc2{bottom:416.496800pt;}
.y121{bottom:417.212267pt;}
.y199{bottom:418.722667pt;}
.ya5{bottom:419.669067pt;}
.y2ca{bottom:422.125867pt;}
.y7e{bottom:423.856133pt;}
.y7{bottom:427.774933pt;}
.y2ac{bottom:428.727467pt;}
.y22d{bottom:430.945067pt;}
.y24c{bottom:431.018000pt;}
.ye8{bottom:431.018267pt;}
.y283{bottom:431.152933pt;}
.y5f{bottom:432.044133pt;}
.y3d{bottom:435.823600pt;}
.y1ef{bottom:436.475733pt;}
.y20a{bottom:437.244000pt;}
.yc1{bottom:437.830133pt;}
.yff{bottom:438.104800pt;}
.y1d6{bottom:439.825333pt;}
.ya4{bottom:441.002400pt;}
.y2c9{bottom:443.459200pt;}
.y7d{bottom:445.189467pt;}
.y22c{bottom:452.278400pt;}
.y24b{bottom:452.351333pt;}
.ye7{bottom:452.351600pt;}
.y282{bottom:452.486267pt;}
.y5e{bottom:453.377467pt;}
.y198{bottom:453.620267pt;}
.y1eb{bottom:454.922000pt;}
.y3c{bottom:457.156933pt;}
.y2ab{bottom:457.619867pt;}
.y1ee{bottom:457.809067pt;}
.y209{bottom:458.577333pt;}
.yc0{bottom:459.163467pt;}
.y120{bottom:459.889467pt;}
.y2c8{bottom:464.792533pt;}
.y7c{bottom:466.522800pt;}
.yfe{bottom:469.443467pt;}
.ya3{bottom:469.894800pt;}
.y22b{bottom:473.611733pt;}
.y24a{bottom:473.684667pt;}
.y1d4{bottom:473.804000pt;}
.y281{bottom:473.819600pt;}
.y5d{bottom:474.710800pt;}
.y197{bottom:474.953600pt;}
.y1ea{bottom:478.481067pt;}
.y3b{bottom:478.490267pt;}
.y2aa{bottom:478.953200pt;}
.y208{bottom:479.910667pt;}
.ybf{bottom:480.496800pt;}
.y11f{bottom:481.222800pt;}
.ye6{bottom:481.244000pt;}
.y2c7{bottom:486.125867pt;}
.y1ed{bottom:486.701467pt;}
.y7b{bottom:487.856133pt;}
.y1e9{bottom:494.481067pt;}
.y22a{bottom:494.945067pt;}
.y249{bottom:495.018000pt;}
.y280{bottom:495.152933pt;}
.y5c{bottom:496.044133pt;}
.y196{bottom:496.286933pt;}
.y3a{bottom:499.823600pt;}
.ybe{bottom:501.830133pt;}
.y11e{bottom:502.556133pt;}
.yfd{bottom:504.561467pt;}
.y1cb{bottom:507.784000pt;}
.y2a9{bottom:507.845600pt;}
.y207{bottom:508.803067pt;}
.y7a{bottom:509.189467pt;}
.ye5{bottom:510.136400pt;}
.ya2{bottom:512.572000pt;}
.y2c6{bottom:515.018267pt;}
.y248{bottom:516.351333pt;}
.y27f{bottom:516.486267pt;}
.y5b{bottom:517.377467pt;}
.y195{bottom:517.620267pt;}
.y39{bottom:521.156933pt;}
.y229{bottom:523.837467pt;}
.y2a8{bottom:529.178933pt;}
.y206{bottom:530.136400pt;}
.y79{bottom:530.522800pt;}
.ybd{bottom:530.722533pt;}
.y265{bottom:530.922000pt;}
.y11d{bottom:531.448533pt;}
.y6{bottom:532.843867pt;}
.ya1{bottom:533.905333pt;}
.y2c5{bottom:536.351600pt;}
.y27e{bottom:537.819600pt;}
.y5a{bottom:538.710800pt;}
.y194{bottom:538.953600pt;}
.y1e8{bottom:540.717200pt;}
.y1ce{bottom:541.764000pt;}
.y172{bottom:543.824933pt;}
.y228{bottom:545.170800pt;}
.y247{bottom:545.243733pt;}
.y38{bottom:550.049333pt;}
.y205{bottom:551.469733pt;}
.ybc{bottom:552.055867pt;}
.y11c{bottom:552.781867pt;}
.ye4{bottom:552.813467pt;}
.y264{bottom:554.481067pt;}
.ya0{bottom:555.238667pt;}
.y2c4{bottom:557.684933pt;}
.y2a7{bottom:558.071333pt;}
.y27d{bottom:559.152933pt;}
.y78{bottom:559.415067pt;}
.y193{bottom:560.286933pt;}
.yfc{bottom:563.690133pt;}
.y5{bottom:564.843867pt;}
.y227{bottom:566.504133pt;}
.y246{bottom:566.577067pt;}
.y171{bottom:567.383867pt;}
.y59{bottom:567.603200pt;}
.y37{bottom:571.382667pt;}
.ybb{bottom:573.389200pt;}
.y11b{bottom:574.115200pt;}
.ye3{bottom:574.146800pt;}
.y1cc{bottom:574.745333pt;}
.y9f{bottom:576.572000pt;}
.y2a6{bottom:579.404667pt;}
.y204{bottom:580.362000pt;}
.y77{bottom:580.748400pt;}
.y192{bottom:581.620267pt;}
.y170{bottom:583.383867pt;}
.y2c3{bottom:586.577333pt;}
.y226{bottom:587.837467pt;}
.y245{bottom:587.910400pt;}
.y27c{bottom:588.045333pt;}
.y58{bottom:588.936533pt;}
.y263{bottom:589.378667pt;}
.y36{bottom:592.716000pt;}
.yba{bottom:594.722533pt;}
.y11a{bottom:595.448533pt;}
.ye2{bottom:595.480133pt;}
.y9e{bottom:597.905333pt;}
.y203{bottom:601.695333pt;}
.y76{bottom:602.081733pt;}
.y2c2{bottom:607.910667pt;}
.y2a5{bottom:608.297067pt;}
.y1c3{bottom:608.724000pt;}
.y135{bottom:608.782000pt;}
.y244{bottom:609.243733pt;}
.y27b{bottom:609.378667pt;}
.y57{bottom:610.269867pt;}
.y262{bottom:610.712000pt;}
.y35{bottom:614.049333pt;}
.y4{bottom:615.195333pt;}
.yb9{bottom:616.055867pt;}
.y225{bottom:616.729867pt;}
.ye1{bottom:616.813467pt;}
.y16f{bottom:618.281600pt;}
.y9d{bottom:619.238667pt;}
.y191{bottom:621.851200pt;}
.y202{bottom:623.028667pt;}
.y75{bottom:623.415067pt;}
.y119{bottom:624.340933pt;}
.y271{bottom:629.147733pt;}
.y2c1{bottom:629.244000pt;}
.y2a4{bottom:629.630400pt;}
.y243{bottom:630.577067pt;}
.y27a{bottom:630.712000pt;}
.y56{bottom:631.603200pt;}
.y261{bottom:632.045333pt;}
.y134{bottom:632.340933pt;}
.y34{bottom:635.382667pt;}
.yb8{bottom:637.389200pt;}
.y224{bottom:638.063200pt;}
.ye0{bottom:638.146800pt;}
.y16e{bottom:639.614933pt;}
.y9c{bottom:640.572000pt;}
.y18f{bottom:641.926667pt;}
.y1c8{bottom:643.702667pt;}
.y201{bottom:644.362000pt;}
.y74{bottom:644.748400pt;}
.y18e{bottom:648.177333pt;}
.y133{bottom:648.340933pt;}
.y2a3{bottom:650.963733pt;}
.y118{bottom:651.900000pt;}
.y242{bottom:651.910400pt;}
.y279{bottom:652.045333pt;}
.y270{bottom:652.706800pt;}
.y55{bottom:652.936533pt;}
.y260{bottom:653.378667pt;}
.y33{bottom:656.716000pt;}
.y3{bottom:657.862000pt;}
.y2c0{bottom:658.136400pt;}
.y223{bottom:659.396533pt;}
.ydf{bottom:659.480133pt;}
.y16d{bottom:660.948267pt;}
.y9b{bottom:661.905333pt;}
.y200{bottom:665.695333pt;}
.y73{bottom:666.081733pt;}
.yb7{bottom:666.281600pt;}
.y268{bottom:670.110267pt;}
.y241{bottom:673.243733pt;}
.y278{bottom:673.378667pt;}
.y54{bottom:674.269867pt;}
.y25f{bottom:674.712000pt;}
.y1c7{bottom:677.682667pt;}
.y32{bottom:678.049333pt;}
.y2bf{bottom:679.469733pt;}
.y2a2{bottom:679.856133pt;}
.yde{bottom:680.813467pt;}
.y18d{bottom:682.149333pt;}
.y16c{bottom:682.281600pt;}
.y9a{bottom:683.238667pt;}
.y72{bottom:687.415067pt;}
.y26f{bottom:687.604400pt;}
.y222{bottom:688.288933pt;}
.y267{bottom:693.669333pt;}
.y117{bottom:694.577200pt;}
.y1ff{bottom:694.587867pt;}
.y277{bottom:694.712000pt;}
.y53{bottom:695.603067pt;}
.y25e{bottom:696.045333pt;}
.y31{bottom:699.382667pt;}
.y2{bottom:700.528667pt;}
.y2a1{bottom:701.189467pt;}
.ydd{bottom:702.146800pt;}
.y16b{bottom:703.614933pt;}
.y99{bottom:704.572000pt;}
.yb6{bottom:706.512533pt;}
.y2be{bottom:708.362000pt;}
.y71{bottom:708.748400pt;}
.y26e{bottom:708.937733pt;}
.y221{bottom:709.622267pt;}
.y1b9{bottom:711.662667pt;}
.y18b{bottom:715.124000pt;}
.y240{bottom:715.910533pt;}
.y1fe{bottom:715.921200pt;}
.y1e7{bottom:716.717333pt;}
.y52{bottom:716.936400pt;}
.y25d{bottom:717.378667pt;}
.y30{bottom:720.716000pt;}
.y2a0{bottom:722.522800pt;}
.y116{bottom:723.469600pt;}
.ydc{bottom:723.480133pt;}
.y16a{bottom:724.948267pt;}
.y98{bottom:725.905333pt;}
.y276{bottom:727.384000pt;}
.yfb{bottom:729.023467pt;}
.y2bd{bottom:729.695333pt;}
.y26d{bottom:730.271067pt;}
.y220{bottom:730.955600pt;}
.y23f{bottom:737.243867pt;}
.y70{bottom:737.640933pt;}
.y51{bottom:738.269733pt;}
.y266{bottom:739.905467pt;}
.y1e6{bottom:740.276267pt;}
.y1{bottom:743.195333pt;}
.y115{bottom:744.802933pt;}
.ydb{bottom:744.813467pt;}
.y1c0{bottom:745.642667pt;}
.y25c{bottom:746.271067pt;}
.y169{bottom:746.281600pt;}
.y97{bottom:747.238667pt;}
.y18a{bottom:749.096000pt;}
.y2f{bottom:749.608400pt;}
.y29f{bottom:751.415067pt;}
.y26c{bottom:751.604400pt;}
.y298{bottom:752.372533pt;}
.yfa{bottom:752.582533pt;}
.y1e5{bottom:756.276267pt;}
.y23e{bottom:758.577200pt;}
.y2bc{bottom:758.587867pt;}
.y6f{bottom:758.974267pt;}
.y21f{bottom:759.848000pt;}
.y114{bottom:766.136267pt;}
.yda{bottom:766.146800pt;}
.y50{bottom:767.162133pt;}
.y25b{bottom:767.604400pt;}
.y2e{bottom:770.941733pt;}
.y29e{bottom:772.748400pt;}
.y297{bottom:773.705867pt;}
.y96{bottom:776.131067pt;}
.y1be{bottom:778.622667pt;}
.y23d{bottom:779.910533pt;}
.y2bb{bottom:779.921200pt;}
.y6e{bottom:780.307600pt;}
.y26b{bottom:780.496800pt;}
.y21e{bottom:781.181333pt;}
.y189{bottom:782.070667pt;}
.y168{bottom:786.512533pt;}
.yd9{bottom:787.480133pt;}
.y4f{bottom:788.495467pt;}
.y2d{bottom:792.275067pt;}
.y29d{bottom:794.081733pt;}
.y113{bottom:795.028667pt;}
.y296{bottom:795.039200pt;}
.y25a{bottom:796.496800pt;}
.y95{bottom:797.464400pt;}
.y2ba{bottom:801.254533pt;}
.y6d{bottom:801.640933pt;}
.y1e4{bottom:802.512533pt;}
.y21d{bottom:802.514667pt;}
.y23c{bottom:808.802933pt;}
.yf9{bottom:808.813467pt;}
.y4e{bottom:809.828800pt;}
.y2c{bottom:813.608400pt;}
.y29c{bottom:815.415067pt;}
.y187{bottom:816.042667pt;}
.y112{bottom:816.362000pt;}
.yd8{bottom:816.372533pt;}
.y94{bottom:818.797733pt;}
.y1b8{bottom:821.915733pt;}
.y6c{bottom:822.974267pt;}
.y21c{bottom:823.848000pt;}
.y23b{bottom:830.136267pt;}
.yf8{bottom:830.146800pt;}
.y4d{bottom:831.162133pt;}
.y26a{bottom:834.512533pt;}
.y1b{bottom:834.606400pt;}
.y2b{bottom:834.941733pt;}
.y111{bottom:837.695333pt;}
.yd7{bottom:837.705867pt;}
.y1b7{bottom:837.915733pt;}
.y93{bottom:840.131067pt;}
.y6b{bottom:844.307600pt;}
.y21b{bottom:845.181333pt;}
.y184{bottom:849.017333pt;}
.y259{bottom:850.512533pt;}
.y23a{bottom:851.469600pt;}
.y2b9{bottom:851.480133pt;}
.y4c{bottom:852.495467pt;}
.y2a{bottom:856.275067pt;}
.y110{bottom:859.028667pt;}
.yd6{bottom:859.039200pt;}
.y92{bottom:861.464400pt;}
.y1a{bottom:862.206400pt;}
.y29b{bottom:865.640933pt;}
.y21a{bottom:866.514667pt;}
.y295{bottom:866.598267pt;}
.y132{bottom:869.023467pt;}
.y1b6{bottom:872.813333pt;}
.y6a{bottom:873.199867pt;}
.y4b{bottom:873.828800pt;}
.y29{bottom:877.608400pt;}
.y10f{bottom:880.362000pt;}
.yd5{bottom:880.372533pt;}
.y181{bottom:882.989333pt;}
.y29a{bottom:886.974267pt;}
.y219{bottom:887.848000pt;}
.y294{bottom:887.931600pt;}
.y91{bottom:890.356800pt;}
.y1b5{bottom:894.146667pt;}
.y69{bottom:894.533200pt;}
.y10e{bottom:901.695333pt;}
.yd4{bottom:901.705867pt;}
.y1f{bottom:902.103333pt;}
.y4a{bottom:902.721333pt;}
.y131{bottom:904.141467pt;}
.y28{bottom:906.500800pt;}
.y299{bottom:908.307600pt;}
.y293{bottom:909.264933pt;}
.y1b4{bottom:915.480000pt;}
.y68{bottom:915.866533pt;}
.y218{bottom:916.740267pt;}
.y17d{bottom:916.962667pt;}
.yd3{bottom:923.039200pt;}
.y49{bottom:924.054667pt;}
.y90{bottom:925.474800pt;}
.y27{bottom:927.834133pt;}
.y10d{bottom:930.587733pt;}
.y292{bottom:930.598267pt;}
.y67{bottom:937.199867pt;}
.y217{bottom:938.073600pt;}
.y1e{bottom:939.436667pt;}
.yd2{bottom:944.372533pt;}
.y48{bottom:945.388000pt;}
.y26{bottom:949.167467pt;}
.y179{bottom:950.936000pt;}
.y130{bottom:951.931600pt;}
.y66{bottom:958.533200pt;}
.y216{bottom:959.406933pt;}
.yb5{bottom:962.512533pt;}
.yd1{bottom:965.705867pt;}
.y47{bottom:966.721333pt;}
.y25{bottom:970.500800pt;}
.y8f{bottom:973.264933pt;}
.y1d{bottom:976.770000pt;}
.y167{bottom:978.512533pt;}
.y65{bottom:979.866533pt;}
.yb4{bottom:986.071600pt;}
.yf7{bottom:987.039200pt;}
.y215{bottom:988.299333pt;}
.y258{bottom:994.512533pt;}
.y8e{bottom:994.598267pt;}
.yb3{bottom:1002.071600pt;}
.y24{bottom:1003.172667pt;}
.y64{bottom:1012.538400pt;}
.y178{bottom:1013.410267pt;}
.y214{bottom:1015.858400pt;}
.y8d{bottom:1015.931600pt;}
.yb2{bottom:1018.071600pt;}
.y1c{bottom:1024.252000pt;}
.y177{bottom:1029.410267pt;}
.y21{bottom:1072.991733pt;}
.y20{bottom:1087.391733pt;}
.h1b{height:25.847117pt;}
.h1a{height:32.821979pt;}
.h20{height:32.973333pt;}
.h25{height:32.974667pt;}
.h35{height:32.980000pt;}
.h38{height:32.981333pt;}
.h2d{height:33.010667pt;}
.h24{height:33.972000pt;}
.h22{height:33.973333pt;}
.h37{height:33.978667pt;}
.h34{height:33.980000pt;}
.h2b{height:34.012000pt;}
.h2f{height:34.013333pt;}
.h1f{height:35.518437pt;}
.h2a{height:35.559271pt;}
.h21{height:37.294359pt;}
.h23{height:37.294893pt;}
.h26{height:37.295426pt;}
.h33{height:37.302016pt;}
.h2c{height:37.337234pt;}
.h2e{height:37.338301pt;}
.h1c{height:38.292187pt;}
.h8{height:38.622187pt;}
.h28{height:43.032336pt;}
.h3c{height:43.040758pt;}
.h31{height:43.081336pt;}
.h18{height:45.012800pt;}
.h6{height:45.736800pt;}
.hc{height:48.144000pt;}
.h15{height:49.162667pt;}
.h14{height:49.488000pt;}
.h16{height:50.251391pt;}
.h5{height:50.818667pt;}
.h1e{height:50.958667pt;}
.h29{height:51.018667pt;}
.he{height:53.493333pt;}
.hf{height:54.318582pt;}
.h11{height:58.842667pt;}
.h12{height:59.750413pt;}
.h13{height:60.485333pt;}
.h4{height:60.982400pt;}
.hd{height:65.984000pt;}
.h9{height:74.890667pt;}
.h10{height:76.981333pt;}
.h7{height:79.585242pt;}
.ha{height:94.080000pt;}
.h32{height:100.940000pt;}
.h3{height:101.637333pt;}
.h39{height:101.940000pt;}
.h36{height:102.938667pt;}
.h3a{height:106.936000pt;}
.hb{height:126.469333pt;}
.h2{height:139.082667pt;}
.h1d{height:282.080000pt;}
.h19{height:284.081333pt;}
.h30{height:294.470667pt;}
.h17{height:300.085333pt;}
.h27{height:360.968000pt;}
.h3b{height:524.702667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:96.012000pt;}
.w9{width:99.012000pt;}
.wa{width:112.013333pt;}
.wc{width:114.014667pt;}
.w7{width:121.013333pt;}
.wd{width:123.016000pt;}
.w3{width:260.032000pt;}
.w4{width:269.033333pt;}
.wb{width:283.034667pt;}
.w5{width:293.036000pt;}
.w2{width:556.026667pt;}
.w8{width:567.070667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5b{left:3.999600pt;}
.x60{left:5.000000pt;}
.x5d{left:8.000400pt;}
.x4e{left:9.067867pt;}
.x65{left:10.001067pt;}
.x4f{left:13.502000pt;}
.x68{left:16.002133pt;}
.x5c{left:21.002133pt;}
.x64{left:24.002800pt;}
.x67{left:27.003467pt;}
.x4b{left:27.943733pt;}
.x5f{left:32.003333pt;}
.x6b{left:37.004933pt;}
.x50{left:41.925600pt;}
.x10{left:42.920933pt;}
.x4d{left:44.572533pt;}
.x51{left:60.781467pt;}
.x55{left:63.490800pt;}
.x4c{left:66.548667pt;}
.x12{left:78.188933pt;}
.x15{left:80.068533pt;}
.x59{left:83.149600pt;}
.x14{left:84.288000pt;}
.x6e{left:91.011600pt;}
.x1d{left:94.488133pt;}
.x6d{left:98.012400pt;}
.x4a{left:109.433333pt;}
.x61{left:112.949333pt;}
.x41{left:118.893333pt;}
.x39{left:123.821467pt;}
.x43{left:126.708800pt;}
.x53{left:129.195067pt;}
.x44{left:133.024267pt;}
.xd{left:135.683733pt;}
.x69{left:136.952000pt;}
.x5a{left:141.953333pt;}
.x56{left:142.919200pt;}
.x45{left:143.815867pt;}
.x62{left:144.953333pt;}
.x83{left:148.050667pt;}
.x13{left:148.990000pt;}
.x1b{left:151.306533pt;}
.x76{left:158.308667pt;}
.x3e{left:159.833600pt;}
.x71{left:162.787733pt;}
.x74{left:163.751600pt;}
.xf{left:165.494000pt;}
.x46{left:168.761200pt;}
.x47{left:171.287467pt;}
.x84{left:175.844400pt;}
.x6f{left:178.125067pt;}
.x35{left:180.566933pt;}
.x11{left:181.949600pt;}
.x48{left:183.602133pt;}
.x99{left:185.857600pt;}
.x49{left:188.654400pt;}
.x7b{left:193.064933pt;}
.x54{left:198.388933pt;}
.x8f{left:206.833733pt;}
.x33{left:209.517733pt;}
.x5{left:211.842533pt;}
.xe{left:212.957200pt;}
.x1{left:218.043200pt;}
.xb{left:220.222400pt;}
.x2{left:222.237467pt;}
.x40{left:224.588267pt;}
.x7a{left:228.655867pt;}
.x7d{left:229.897467pt;}
.x70{left:234.050133pt;}
.x34{left:236.958667pt;}
.x37{left:238.308400pt;}
.x85{left:240.642533pt;}
.x8c{left:244.659200pt;}
.x79{left:247.705733pt;}
.x89{left:250.105467pt;}
.x3a{left:252.145467pt;}
.x9c{left:253.575733pt;}
.x42{left:260.032267pt;}
.xc{left:262.144267pt;}
.x30{left:263.284400pt;}
.x86{left:268.436133pt;}
.x80{left:274.047200pt;}
.x9{left:275.963733pt;}
.x7c{left:277.842800pt;}
.x32{left:284.347867pt;}
.x73{left:287.760933pt;}
.x24{left:289.787467pt;}
.x31{left:290.725333pt;}
.x3c{left:294.096400pt;}
.x3{left:297.202933pt;}
.x4{left:299.989200pt;}
.x58{left:300.931467pt;}
.x1c{left:302.630400pt;}
.x95{left:303.826267pt;}
.x38{left:312.270000pt;}
.x7{left:313.565467pt;}
.x75{left:314.580267pt;}
.x87{left:315.595600pt;}
.x25{left:317.228400pt;}
.x1e{left:320.690533pt;}
.x3f{left:321.792400pt;}
.x78{left:323.177600pt;}
.x93{left:324.239600pt;}
.x36{left:326.885600pt;}
.x57{left:333.444800pt;}
.x72{left:339.101733pt;}
.xa{left:340.158800pt;}
.x9f{left:342.586800pt;}
.x1f{left:348.520267pt;}
.x96{left:355.038533pt;}
.xa5{left:358.273733pt;}
.x2c{left:362.181067pt;}
.x92{left:371.495200pt;}
.xa6{left:372.770000pt;}
.xa2{left:374.251733pt;}
.x8{left:376.810400pt;}
.xa0{left:387.904533pt;}
.x2d{left:389.622000pt;}
.x3b{left:394.792400pt;}
.x52{left:401.928000pt;}
.x6{left:411.572133pt;}
.x26{left:416.901733pt;}
.x6a{left:419.986667pt;}
.x3d{left:422.434133pt;}
.x1a{left:423.543333pt;}
.xa4{left:425.071467pt;}
.x94{left:426.816800pt;}
.x17{left:435.709067pt;}
.x63{left:437.989333pt;}
.x27{left:444.342667pt;}
.x18{left:449.255867pt;}
.x7e{left:454.125067pt;}
.xa3{left:477.625467pt;}
.x7f{left:481.582533pt;}
.x81{left:483.361600pt;}
.x20{left:487.288133pt;}
.x8e{left:505.574133pt;}
.x9d{left:509.528933pt;}
.x82{left:511.976667pt;}
.x21{left:515.117867pt;}
.x16{left:518.696000pt;}
.x9a{left:524.179333pt;}
.x19{left:525.200133pt;}
.x5e{left:531.001333pt;}
.x6c{left:534.001333pt;}
.x66{left:537.001333pt;}
.x28{left:550.059067pt;}
.x90{left:558.747067pt;}
.x91{left:575.068267pt;}
.x29{left:577.499867pt;}
.x2e{left:581.108400pt;}
.x88{left:588.967867pt;}
.xa7{left:598.496133pt;}
.x2f{left:608.549333pt;}
.x2a{left:614.312800pt;}
.xa1{left:620.706267pt;}
.x8b{left:625.821467pt;}
.x77{left:627.418800pt;}
.x9e{left:637.789467pt;}
.x2b{left:643.379333pt;}
.x8a{left:645.638533pt;}
.x8d{left:647.495467pt;}
.x22{left:662.348267pt;}
.x97{left:677.242400pt;}
.x9b{left:680.600933pt;}
.x98{left:685.250000pt;}
.x23{left:690.178000pt;}
}




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