
    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_19e25c76da92b29d6a658437.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_35e0db9ce931de689fe9ced7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_ccf588fd0c9739997f218de1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d357b71689f0209c59a85dd1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.102051;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_1ba83640738a4ee44aad183c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_b257f3c03b6c39e6e7044607.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_a614fb567ea56bb47becd326.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.249289,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249289,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249289,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.237084,0.000000,-0.079027,0.237181,0,0);-ms-transform:matrix(0.237084,0.000000,-0.079027,0.237181,0,0);-webkit-transform:matrix(0.237084,0.000000,-0.079027,0.237181,0,0);}
.mf{transform:matrix(0.237204,0.000000,-0.079069,0.237167,0,0);-ms-transform:matrix(0.237204,0.000000,-0.079069,0.237167,0,0);-webkit-transform:matrix(0.237204,0.000000,-0.079069,0.237167,0,0);}
.md{transform:matrix(0.237273,0.000000,-0.079092,0.237159,0,0);-ms-transform:matrix(0.237273,0.000000,-0.079092,0.237159,0,0);-webkit-transform:matrix(0.237273,0.000000,-0.079092,0.237159,0,0);}
.mb{transform:matrix(0.237468,0.000000,-0.079155,0.237138,0,0);-ms-transform:matrix(0.237468,0.000000,-0.079155,0.237138,0,0);-webkit-transform:matrix(0.237468,0.000000,-0.079155,0.237138,0,0);}
.m3{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m10{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls53{letter-spacing:-0.993600px;}
.ls14{letter-spacing:-0.927360px;}
.ls54{letter-spacing:-0.861120px;}
.ls52{letter-spacing:-0.794880px;}
.ls76{letter-spacing:-0.728640px;}
.ls15{letter-spacing:-0.662400px;}
.ls7a{letter-spacing:-0.596160px;}
.ls49{letter-spacing:-0.586380px;}
.ls41{letter-spacing:-0.584712px;}
.ls75{letter-spacing:-0.463680px;}
.ls47{letter-spacing:-0.409298px;}
.ls36{letter-spacing:-0.397440px;}
.ls1c{letter-spacing:-0.298800px;}
.ls46{letter-spacing:-0.292356px;}
.ls10{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.264960px;}
.ls6e{letter-spacing:-0.264751px;}
.ls2d{letter-spacing:-0.264379px;}
.ls35{letter-spacing:-0.259423px;}
.ls59{letter-spacing:-0.259193px;}
.ls65{letter-spacing:-0.258965px;}
.ls5f{letter-spacing:-0.258806px;}
.ls9{letter-spacing:-0.239040px;}
.ls43{letter-spacing:-0.233885px;}
.ls4c{letter-spacing:-0.211006px;}
.ls11{letter-spacing:-0.198720px;}
.ls6c{letter-spacing:-0.198563px;}
.ls33{letter-spacing:-0.194567px;}
.ls58{letter-spacing:-0.194395px;}
.ls61{letter-spacing:-0.194224px;}
.ls5e{letter-spacing:-0.194105px;}
.ls44{letter-spacing:-0.175914px;}
.ls48{letter-spacing:-0.175414px;}
.ls4b{letter-spacing:-0.158254px;}
.lsd{letter-spacing:-0.144000px;}
.ls74{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.066240px;}
.ls6a{letter-spacing:-0.066188px;}
.ls2e{letter-spacing:-0.066095px;}
.ls34{letter-spacing:-0.064856px;}
.ls57{letter-spacing:-0.064798px;}
.ls62{letter-spacing:-0.064741px;}
.ls5c{letter-spacing:-0.064702px;}
.ls45{letter-spacing:-0.058471px;}
.lsa{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.058471px;}
.ls16{letter-spacing:0.059760px;}
.ls5d{letter-spacing:0.064702px;}
.ls63{letter-spacing:0.064741px;}
.ls56{letter-spacing:0.064798px;}
.ls6f{letter-spacing:0.066188px;}
.ls2{letter-spacing:0.066240px;}
.lse{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.132480px;}
.lsc{letter-spacing:0.144000px;}
.ls4d{letter-spacing:0.158254px;}
.ls3d{letter-spacing:0.158400px;}
.ls3f{letter-spacing:0.158998px;}
.ls6d{letter-spacing:0.179140px;}
.ls40{letter-spacing:0.179280px;}
.ls1d{letter-spacing:0.198720px;}
.ls4e{letter-spacing:0.263757px;}
.ls1a{letter-spacing:0.264960px;}
.lsb{letter-spacing:0.288000px;}
.ls42{letter-spacing:0.292356px;}
.ls4a{letter-spacing:0.293190px;}
.ls4f{letter-spacing:0.298800px;}
.ls2f{letter-spacing:0.304886px;}
.ls64{letter-spacing:0.323706px;}
.ls32{letter-spacing:0.324279px;}
.ls5{letter-spacing:0.331200px;}
.ls6b{letter-spacing:0.358279px;}
.ls1e{letter-spacing:0.728640px;}
.ls20{letter-spacing:1.457280px;}
.ls8{letter-spacing:2.185920px;}
.ls22{letter-spacing:2.848320px;}
.ls73{letter-spacing:2.914560px;}
.ls69{letter-spacing:3.069845px;}
.ls60{letter-spacing:3.480575px;}
.ls66{letter-spacing:3.576960px;}
.ls1f{letter-spacing:3.643200px;}
.ls5b{letter-spacing:3.683389px;}
.ls55{letter-spacing:3.688225px;}
.ls67{letter-spacing:3.974400px;}
.ls7c{letter-spacing:4.305600px;}
.ls51{letter-spacing:5.762880px;}
.ls71{letter-spacing:6.491520px;}
.ls38{letter-spacing:7.220160px;}
.ls3e{letter-spacing:7.785512px;}
.ls30{letter-spacing:7.948800px;}
.ls68{letter-spacing:9.339840px;}
.ls1{letter-spacing:10.068480px;}
.ls0{letter-spacing:10.797120px;}
.ls3{letter-spacing:11.525760px;}
.ls7b{letter-spacing:12.254400px;}
.ls4{letter-spacing:13.711680px;}
.ls78{letter-spacing:14.374080px;}
.ls50{letter-spacing:15.102720px;}
.ls17{letter-spacing:15.831360px;}
.ls39{letter-spacing:16.162560px;}
.ls79{letter-spacing:16.560000px;}
.ls77{letter-spacing:17.288640px;}
.ls21{letter-spacing:18.017280px;}
.ls7{letter-spacing:19.408320px;}
.ls5a{letter-spacing:23.051520px;}
.ls72{letter-spacing:26.628480px;}
.ls19{letter-spacing:31.662720px;}
.ls18{letter-spacing:32.391360px;}
.ls7d{letter-spacing:50.011200px;}
.ls37{letter-spacing:52.130880px;}
.ls23{letter-spacing:52.859520px;}
.ls24{letter-spacing:53.588160px;}
.ls70{letter-spacing:55.774080px;}
.ls3a{letter-spacing:98.962560px;}
.ls3b{letter-spacing:104.725440px;}
.ls31{letter-spacing:105.454080px;}
.ls1b{letter-spacing:195.871680px;}
.ls2c{letter-spacing:229.906947px;}
.ls27{letter-spacing:260.810081px;}
.ls2a{letter-spacing:467.686805px;}
.ls29{letter-spacing:510.780614px;}
.ls25{letter-spacing:622.282542px;}
.ls26{letter-spacing:653.743667px;}
.ls28{letter-spacing:667.425290px;}
.ls2b{letter-spacing:693.310363px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5f{word-spacing:-66.240000px;}
.ws5{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.wse6{word-spacing:-16.891200px;}
.wse7{word-spacing:-16.824960px;}
.ws35{word-spacing:-16.758720px;}
.wsa0{word-spacing:-16.692480px;}
.ws7{word-spacing:-16.626240px;}
.wsc2{word-spacing:-16.613138px;}
.ws34{word-spacing:-16.560000px;}
.wsbf{word-spacing:-16.546950px;}
.ws6d{word-spacing:-16.538229px;}
.ws9{word-spacing:-16.493760px;}
.wsc3{word-spacing:-16.480762px;}
.ws61{word-spacing:-16.457605px;}
.ws8{word-spacing:-16.361280px;}
.wsc0{word-spacing:-16.348387px;}
.ws6{word-spacing:-16.295040px;}
.wsc4{word-spacing:-16.282199px;}
.ws9e{word-spacing:-16.264348px;}
.ws60{word-spacing:-16.259321px;}
.wsb2{word-spacing:-16.250041px;}
.ws71{word-spacing:-16.162560px;}
.ws6e{word-spacing:-16.149094px;}
.ws9d{word-spacing:-16.134752px;}
.wsb0{word-spacing:-16.120559px;}
.wsad{word-spacing:-16.110698px;}
.ws6f{word-spacing:-16.019383px;}
.wsb1{word-spacing:-15.991076px;}
.wsae{word-spacing:-15.981295px;}
.wsf6{word-spacing:-15.963840px;}
.ws70{word-spacing:-15.954527px;}
.ws9f{word-spacing:-15.940357px;}
.wsb3{word-spacing:-15.926335px;}
.wsaf{word-spacing:-15.916594px;}
.ws9c{word-spacing:-15.897600px;}
.wsd5{word-spacing:-15.831360px;}
.wsd4{word-spacing:-15.765120px;}
.wsbe{word-spacing:-15.286579px;}
.wsc1{word-spacing:-15.107440px;}
.ws5e{word-spacing:-14.999760px;}
.ws89{word-spacing:-14.952690px;}
.ws86{word-spacing:-14.676271px;}
.ws33{word-spacing:-14.641200px;}
.ws87{word-spacing:-14.617800px;}
.ws82{word-spacing:-14.559329px;}
.ws80{word-spacing:-14.483586px;}
.ws85{word-spacing:-14.442386px;}
.ws81{word-spacing:-14.383915px;}
.ws83{word-spacing:-14.325444px;}
.ws84{word-spacing:-14.208502px;}
.ws88{word-spacing:-14.073120px;}
.ws7f{word-spacing:-14.033088px;}
.ws8a{word-spacing:-13.029596px;}
.ws8b{word-spacing:-9.720000px;}
.wsa6{word-spacing:-4.439530px;}
.wsb4{word-spacing:-3.683389px;}
.wsb8{word-spacing:-3.480575px;}
.wscd{word-spacing:-3.069845px;}
.wsbc{word-spacing:-1.035859px;}
.wsf7{word-spacing:-0.861120px;}
.ws3a{word-spacing:-0.794880px;}
.ws91{word-spacing:-0.701654px;}
.wsc9{word-spacing:-0.662400px;}
.wsce{word-spacing:-0.661878px;}
.wsa9{word-spacing:-0.647982px;}
.wsa5{word-spacing:-0.529920px;}
.wsd0{word-spacing:-0.529502px;}
.ws74{word-spacing:-0.518846px;}
.wsbd{word-spacing:-0.517930px;}
.ws92{word-spacing:-0.469104px;}
.ws7d{word-spacing:-0.463680px;}
.wsef{word-spacing:-0.331200px;}
.ws8c{word-spacing:-0.292356px;}
.ws12{word-spacing:-0.288000px;}
.wse9{word-spacing:-0.264960px;}
.wsf{word-spacing:-0.144000px;}
.wsda{word-spacing:-0.132480px;}
.ws9b{word-spacing:-0.119520px;}
.ws9a{word-spacing:-0.105503px;}
.ws11{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.066240px;}
.wsd3{word-spacing:-0.066188px;}
.wsa7{word-spacing:-0.064798px;}
.wsbb{word-spacing:-0.064741px;}
.wsb5{word-spacing:-0.064702px;}
.wsc5{word-spacing:-0.059760px;}
.ws8e{word-spacing:-0.058471px;}
.wsc{word-spacing:0.000000px;}
.ws90{word-spacing:0.058471px;}
.wsba{word-spacing:0.064741px;}
.wsab{word-spacing:0.064798px;}
.ws75{word-spacing:0.064856px;}
.ws6c{word-spacing:0.066095px;}
.wsd2{word-spacing:0.066188px;}
.ws15{word-spacing:0.066240px;}
.ws36{word-spacing:0.119520px;}
.wsdb{word-spacing:0.132480px;}
.ws10{word-spacing:0.144000px;}
.ws93{word-spacing:0.158254px;}
.ws8f{word-spacing:0.175414px;}
.wsb{word-spacing:0.179280px;}
.wsb9{word-spacing:0.194224px;}
.wsa8{word-spacing:0.194395px;}
.ws76{word-spacing:0.194567px;}
.wscf{word-spacing:0.198563px;}
.ws14{word-spacing:0.198720px;}
.ws96{word-spacing:0.211006px;}
.ws8d{word-spacing:0.233885px;}
.wsaa{word-spacing:0.259193px;}
.wsd1{word-spacing:0.264751px;}
.ws1a{word-spacing:0.264960px;}
.ws94{word-spacing:0.316508px;}
.ws98{word-spacing:0.369260px;}
.ws7e{word-spacing:0.397440px;}
.wsa{word-spacing:0.418320px;}
.wse1{word-spacing:0.463680px;}
.ws28{word-spacing:0.662400px;}
.ws50{word-spacing:0.794880px;}
.wsa4{word-spacing:0.861120px;}
.ws1d{word-spacing:0.927360px;}
.wsa3{word-spacing:0.993600px;}
.ws26{word-spacing:1.391040px;}
.ws25{word-spacing:1.523520px;}
.ws5d{word-spacing:1.656000px;}
.ws24{word-spacing:2.119680px;}
.ws4b{word-spacing:2.252160px;}
.ws2f{word-spacing:2.384640px;}
.wseb{word-spacing:2.450880px;}
.wsf4{word-spacing:2.782080px;}
.ws66{word-spacing:2.848320px;}
.ws29{word-spacing:2.980800px;}
.ws2a{word-spacing:3.113280px;}
.wse5{word-spacing:3.179520px;}
.ws5b{word-spacing:3.510720px;}
.ws67{word-spacing:3.643200px;}
.ws2e{word-spacing:3.775680px;}
.ws5c{word-spacing:3.841920px;}
.wsd8{word-spacing:4.173120px;}
.ws73{word-spacing:4.239360px;}
.ws45{word-spacing:4.371840px;}
.ws54{word-spacing:4.504320px;}
.wsfb{word-spacing:4.570560px;}
.wsf5{word-spacing:4.901760px;}
.ws65{word-spacing:4.968000px;}
.ws4a{word-spacing:5.100480px;}
.ws77{word-spacing:5.232960px;}
.ws3e{word-spacing:5.696640px;}
.wse{word-spacing:5.760000px;}
.ws42{word-spacing:5.829120px;}
.ws63{word-spacing:5.961600px;}
.ws3f{word-spacing:6.027840px;}
.wsd{word-spacing:6.192000px;}
.wsdd{word-spacing:6.226560px;}
.ws21{word-spacing:6.425280px;}
.ws59{word-spacing:6.557760px;}
.ws57{word-spacing:6.690240px;}
.wsdf{word-spacing:6.756480px;}
.ws4d{word-spacing:7.153920px;}
.ws7a{word-spacing:7.286400px;}
.wsac{word-spacing:7.418880px;}
.wsde{word-spacing:7.485120px;}
.ws97{word-spacing:7.648953px;}
.ws4e{word-spacing:7.882560px;}
.ws7b{word-spacing:7.948800px;}
.ws48{word-spacing:8.015040px;}
.ws95{word-spacing:8.018213px;}
.ws49{word-spacing:8.147520px;}
.ws53{word-spacing:8.213760px;}
.ws7c{word-spacing:8.544960px;}
.ws64{word-spacing:8.677440px;}
.ws79{word-spacing:8.809920px;}
.ws100{word-spacing:9.207360px;}
.ws27{word-spacing:9.273600px;}
.ws44{word-spacing:9.406080px;}
.ws43{word-spacing:9.538560px;}
.ws1c{word-spacing:10.002240px;}
.ws99{word-spacing:10.075517px;}
.ws1b{word-spacing:10.134720px;}
.ws1f{word-spacing:10.267200px;}
.ws1e{word-spacing:10.730880px;}
.ws16{word-spacing:10.863360px;}
.ws40{word-spacing:10.995840px;}
.ws17{word-spacing:11.062080px;}
.ws18{word-spacing:11.459520px;}
.wsfc{word-spacing:11.592000px;}
.wsd9{word-spacing:12.121920px;}
.ws58{word-spacing:12.188160px;}
.ws5a{word-spacing:12.320640px;}
.ws51{word-spacing:12.453120px;}
.wsfa{word-spacing:12.519360px;}
.ws6b{word-spacing:12.916800px;}
.ws46{word-spacing:13.049280px;}
.ws47{word-spacing:13.181760px;}
.wsd6{word-spacing:13.645440px;}
.ws20{word-spacing:13.777920px;}
.ws22{word-spacing:13.910400px;}
.wsd7{word-spacing:13.976640px;}
.wsea{word-spacing:14.241600px;}
.ws19{word-spacing:14.307840px;}
.ws23{word-spacing:14.374080px;}
.ws52{word-spacing:14.440320px;}
.ws62{word-spacing:14.572800px;}
.wsa1{word-spacing:15.036480px;}
.wsa2{word-spacing:15.168960px;}
.ws2d{word-spacing:15.301440px;}
.ws37{word-spacing:15.765120px;}
.ws39{word-spacing:15.897600px;}
.ws38{word-spacing:16.030080px;}
.wsf3{word-spacing:16.427520px;}
.ws32{word-spacing:16.493760px;}
.ws41{word-spacing:16.626240px;}
.ws30{word-spacing:17.222400px;}
.ws31{word-spacing:17.354880px;}
.wse8{word-spacing:17.487360px;}
.wsca{word-spacing:17.951040px;}
.ws4f{word-spacing:18.216000px;}
.ws101{word-spacing:18.613440px;}
.ws69{word-spacing:18.679680px;}
.wsee{word-spacing:18.812160px;}
.wsc6{word-spacing:19.408320px;}
.ws6a{word-spacing:19.540800px;}
.ws72{word-spacing:19.673280px;}
.ws2b{word-spacing:19.805760px;}
.ws2c{word-spacing:20.070720px;}
.wsf9{word-spacing:20.931840px;}
.wsf8{word-spacing:21.329280px;}
.wscb{word-spacing:21.528000px;}
.wscc{word-spacing:21.660480px;}
.ws68{word-spacing:21.792960px;}
.wsdc{word-spacing:23.250240px;}
.wsb7{word-spacing:23.713920px;}
.wsb6{word-spacing:23.846400px;}
.wsf0{word-spacing:24.442560px;}
.wsec{word-spacing:24.575040px;}
.wsed{word-spacing:24.773760px;}
.ws4c{word-spacing:25.104960px;}
.wse3{word-spacing:26.297280px;}
.wse4{word-spacing:26.694720px;}
.wse2{word-spacing:26.827200px;}
.ws78{word-spacing:27.290880px;}
.ws55{word-spacing:27.423360px;}
.ws56{word-spacing:28.152000px;}
.wsc8{word-spacing:29.609280px;}
.ws3d{word-spacing:31.861440px;}
.ws3c{word-spacing:32.457600px;}
.ws3b{word-spacing:32.590080px;}
.wse0{word-spacing:35.372160px;}
.wsc7{word-spacing:35.504640px;}
.wsfe{word-spacing:105.719040px;}
.wsfd{word-spacing:105.785280px;}
.wsff{word-spacing:106.050240px;}
.wsf1{word-spacing:158.247360px;}
.wsf2{word-spacing:158.578560px;}
._16{margin-left:-122.873412px;}
._12{margin-left:-120.292836px;}
._f{margin-left:-12.918240px;}
._d{margin-left:-11.400526px;}
._15{margin-left:-6.591733px;}
._13{margin-left:-5.388661px;}
._14{margin-left:-4.063086px;}
._11{margin-left:-2.894426px;}
._1{margin-left:-1.733040px;}
._0{width:1.553760px;}
._7{width:2.895120px;}
._8{width:4.459680px;}
._e{width:7.233523px;}
._19{width:8.544960px;}
._2{width:10.418400px;}
._c{width:11.923200px;}
._4{width:12.983040px;}
._3{width:14.384880px;}
._10{width:15.455520px;}
._5{width:20.090880px;}
._1a{width:21.148560px;}
._6{width:31.897440px;}
._1b{width:105.099840px;}
._18{width:157.386240px;}
._17{width:158.555520px;}
._b{width:276.805022px;}
._a{width:290.136369px;}
._9{width:572.510611px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:34.320000px;}
.fsb{font-size:36.862200px;}
.fse{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsc{font-size:52.751400px;}
.fs9{font-size:58.471200px;}
.fs7{font-size:58.511400px;}
.fsa{font-size:58.638000px;}
.fs4{font-size:59.628600px;}
.fs17{font-size:59.713200px;}
.fs0{font-size:59.760000px;}
.fs12{font-size:64.701600px;}
.fs14{font-size:64.741200px;}
.fs10{font-size:64.798200px;}
.fs6{font-size:64.855800px;}
.fs5{font-size:66.094800px;}
.fs16{font-size:66.187800px;}
.fs3{font-size:66.240000px;}
.fs11{font-size:68.210904px;}
.fs13{font-size:68.246570px;}
.fsf{font-size:68.300455px;}
.fs15{font-size:69.769206px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y1ec{bottom:-10.519800px;}
.y223{bottom:-10.062300px;}
.y1a1{bottom:-6.071250px;}
.y1cd{bottom:-4.871550px;}
.y0{bottom:0.000000px;}
.y142{bottom:3.336150px;}
.y180{bottom:3.495300px;}
.y118{bottom:3.812550px;}
.y12b{bottom:3.813150px;}
.y106{bottom:3.813300px;}
.y11c{bottom:3.813600px;}
.y128{bottom:3.813750px;}
.y12f{bottom:3.971100px;}
.y133{bottom:3.971700px;}
.ye6{bottom:4.607250px;}
.y17f{bottom:6.831900px;}
.yeb{bottom:7.308600px;}
.yea{bottom:7.309050px;}
.ye9{bottom:7.309500px;}
.ye8{bottom:7.309800px;}
.yb6{bottom:8.811000px;}
.y16b{bottom:9.214950px;}
.y16e{bottom:9.216150px;}
.yb1{bottom:9.516300px;}
.ya4{bottom:9.516600px;}
.yac{bottom:9.517050px;}
.ya9{bottom:9.517500px;}
.ya6{bottom:9.517800px;}
.yfa{bottom:9.850950px;}
.yb4{bottom:9.869250px;}
.y15e{bottom:10.010100px;}
.y15c{bottom:10.010250px;}
.yfc{bottom:10.168500px;}
.y13a{bottom:10.327050px;}
.y139{bottom:10.327500px;}
.y138{bottom:10.327950px;}
.y137{bottom:10.328250px;}
.y136{bottom:10.328550px;}
.yf5{bottom:10.962450px;}
.yf7{bottom:10.962600px;}
.y169{bottom:10.964100px;}
.y167{bottom:10.964400px;}
.y102{bottom:11.122050px;}
.y101{bottom:11.122350px;}
.y100{bottom:11.122650px;}
.yff{bottom:11.122950px;}
.yfe{bottom:11.123400px;}
.y148{bottom:11.280900px;}
.yf8{bottom:11.438850px;}
.y115{bottom:11.916300px;}
.y13d{bottom:11.916450px;}
.y11d{bottom:11.916750px;}
.y13c{bottom:11.916900px;}
.y140{bottom:11.917200px;}
.y13f{bottom:11.917650px;}
.y130{bottom:12.074250px;}
.y119{bottom:12.074550px;}
.y134{bottom:12.074700px;}
.y12c{bottom:12.075000px;}
.y108{bottom:12.075300px;}
.y129{bottom:12.075600px;}
.y10c{bottom:12.076050px;}
.yb2{bottom:12.159900px;}
.yaf{bottom:12.160200px;}
.yad{bottom:12.160650px;}
.yaa{bottom:12.160950px;}
.ya7{bottom:12.161400px;}
.y16c{bottom:12.551550px;}
.y1c4{bottom:13.185600px;}
.y1c5{bottom:13.185750px;}
.y1c8{bottom:13.186200px;}
.y1bc{bottom:13.186500px;}
.y1c2{bottom:13.186650px;}
.y1bf{bottom:13.187100px;}
.y1ba{bottom:13.187550px;}
.y15d{bottom:13.346850px;}
.y1c1{bottom:13.362300px;}
.y1b9{bottom:13.363350px;}
.y1e1{bottom:13.369800px;}
.y1ea{bottom:13.370100px;}
.y1e9{bottom:13.370250px;}
.y1e7{bottom:13.371150px;}
.y1db{bottom:13.371450px;}
.y18a{bottom:13.382250px;}
.y19a{bottom:13.382400px;}
.y1cb{bottom:13.536750px;}
.y1ca{bottom:13.537050px;}
.y1b6{bottom:13.537200px;}
.y1b7{bottom:13.537350px;}
.y1c7{bottom:13.537950px;}
.y1b4{bottom:13.538250px;}
.y1b2{bottom:13.538400px;}
.y1b3{bottom:13.538550px;}
.y1be{bottom:13.538700px;}
.y1e5{bottom:13.545750px;}
.y1d9{bottom:13.546200px;}
.y1e3{bottom:13.546500px;}
.y1dd{bottom:13.546650px;}
.y1d7{bottom:13.547100px;}
.y1df{bottom:13.547550px;}
.y18d{bottom:13.557600px;}
.y194{bottom:13.557750px;}
.y19d{bottom:13.557900px;}
.y187{bottom:13.558350px;}
.y190{bottom:13.558500px;}
.y197{bottom:13.558650px;}
.y210{bottom:13.668900px;}
.y205{bottom:13.669200px;}
.y21a{bottom:13.670100px;}
.y217{bottom:13.848150px;}
.y202{bottom:13.848600px;}
.y1ff{bottom:13.848750px;}
.y200{bottom:13.848900px;}
.y221{bottom:13.849050px;}
.y213{bottom:13.849200px;}
.y21f{bottom:13.849350px;}
.y208{bottom:13.849650px;}
.y20c{bottom:13.849950px;}
.y168{bottom:14.301000px;}
.y145{bottom:16.207200px;}
.yfb{bottom:16.524300px;}
.ye4{bottom:16.524600px;}
.y162{bottom:16.683900px;}
.y159{bottom:17.476800px;}
.yf6{bottom:17.635800px;}
.y15f{bottom:18.113550px;}
.yf0{bottom:18.272250px;}
.y17e{bottom:18.430950px;}
.y10a{bottom:19.703250px;}
.y117{bottom:20.178300px;}
.y12a{bottom:20.178750px;}
.y105{bottom:20.179050px;}
.y11b{bottom:20.179350px;}
.y127{bottom:20.179500px;}
.y12e{bottom:20.336850px;}
.y120{bottom:20.337150px;}
.y132{bottom:20.337450px;}
.y123{bottom:20.338050px;}
.y122{bottom:20.338350px;}
.y125{bottom:20.338800px;}
.y158{bottom:20.654700px;}
.y17d{bottom:21.767550px;}
.y18b{bottom:22.010250px;}
.y19b{bottom:22.010400px;}
.y18e{bottom:22.185600px;}
.y195{bottom:22.185750px;}
.y19e{bottom:22.185900px;}
.y191{bottom:22.186500px;}
.y198{bottom:22.186650px;}
.y150{bottom:22.402800px;}
.y153{bottom:22.403850px;}
.y211{bottom:23.201400px;}
.y206{bottom:23.201700px;}
.y21b{bottom:23.202600px;}
.y218{bottom:23.380650px;}
.y203{bottom:23.381100px;}
.y21d{bottom:23.381400px;}
.y215{bottom:23.381700px;}
.y214{bottom:23.381850px;}
.y209{bottom:23.382000px;}
.y20a{bottom:23.382150px;}
.y20e{bottom:23.382450px;}
.y20d{bottom:23.382600px;}
.y146{bottom:24.310800px;}
.y165{bottom:24.786600px;}
.y163{bottom:24.786900px;}
.y151{bottom:25.739400px;}
.yf1{bottom:26.375400px;}
.y15b{bottom:26.375850px;}
.yf3{bottom:26.376450px;}
.y156{bottom:27.965100px;}
.y155{bottom:27.965400px;}
.y164{bottom:28.123500px;}
.y107{bottom:28.441050px;}
.y10b{bottom:28.441800px;}
.y110{bottom:29.076000px;}
.y144{bottom:32.572950px;}
.y161{bottom:33.049500px;}
.y17c{bottom:33.366600px;}
.yef{bottom:34.638000px;}
.y104{bottom:36.544650px;}
.y11f{bottom:36.702750px;}
.y17b{bottom:36.703050px;}
.y113{bottom:44.965950px;}
.y10f{bottom:45.441750px;}
.y112{bottom:45.442950px;}
.y14a{bottom:46.871700px;}
.y14d{bottom:46.872900px;}
.y17a{bottom:48.302100px;}
.y14e{bottom:54.975900px;}
.y10e{bottom:61.807500px;}
.y179{bottom:63.078900px;}
.y149{bottom:63.237450px;}
.y14c{bottom:63.238500px;}
.y178{bottom:66.415500px;}
.y177{bottom:78.014400px;}
.y176{bottom:81.351150px;}
.y175{bottom:92.950050px;}
.y174{bottom:107.885700px;}
.y173{bottom:111.222300px;}
.ya0{bottom:112.500000px;}
.y183{bottom:114.120000px;}
.y265{bottom:114.766560px;}
.y172{bottom:122.662350px;}
.y225{bottom:123.300000px;}
.y285{bottom:124.225920px;}
.y171{bottom:125.998950px;}
.y182{bottom:127.260000px;}
.y249{bottom:130.958640px;}
.y55{bottom:131.638320px;}
.y170{bottom:137.598000px;}
.y2e{bottom:142.024320px;}
.y7b{bottom:145.058400px;}
.y264{bottom:148.068720px;}
.y284{bottom:148.353840px;}
.y1eb{bottom:148.440000px;}
.y1ed{bottom:148.500000px;}
.y9f{bottom:149.040000px;}
.y96{bottom:149.433000px;}
.y222{bottom:151.440000px;}
.y224{bottom:151.560000px;}
.y181{bottom:153.720000px;}
.y1e8{bottom:153.930000px;}
.y16f{bottom:154.878000px;}
.y248{bottom:155.086560px;}
.y54{bottom:155.766240px;}
.y220{bottom:157.744500px;}
.y1b0{bottom:157.844160px;}
.y9e{bottom:162.903600px;}
.yc6{bottom:165.371760px;}
.y7a{bottom:169.186320px;}
.yed{bottom:170.647500px;}
.y263{bottom:172.196640px;}
.y2d{bottom:172.980000px;}
.y53{bottom:179.894160px;}
.y283{bottom:181.473840px;}
.y1e6{bottom:190.698000px;}
.y9d{bottom:193.275996px;}
.y79{bottom:193.314240px;}
.y21e{bottom:195.334500px;}
.y247{bottom:197.380800px;}
.y1af{bottom:199.956240px;}
.y97{bottom:200.080200px;}
.y2c{bottom:204.587280px;}
.y262{bottom:205.316640px;}
.y282{bottom:205.601760px;}
.yc5{bottom:207.666000px;}
.y78{bottom:217.442160px;}
.y246{bottom:221.508720px;}
.y52{bottom:222.006240px;}
.y9c{bottom:223.084751px;}
.y1ae{bottom:224.084160px;}
.y1e4{bottom:226.588500px;}
.y2b{bottom:228.715200px;}
.y261{bottom:229.444560px;}
.yc4{bottom:231.793920px;}
.y21c{bottom:232.206000px;}
.y281{bottom:238.721760px;}
.y77{bottom:241.570080px;}
.y245{bottom:245.636640px;}
.y51{bottom:246.134160px;}
.y1ad{bottom:248.212080px;}
.y9b{bottom:252.711745px;}
.y2a{bottom:252.843120px;}
.yc3{bottom:255.921840px;}
.y260{bottom:262.564560px;}
.y1e2{bottom:262.653000px;}
.y280{bottom:262.849680px;}
.y76{bottom:265.698000px;}
.y219{bottom:269.076000px;}
.y244{bottom:269.764560px;}
.y50{bottom:270.262080px;}
.y1ac{bottom:272.340000px;}
.y29{bottom:276.971040px;}
.y9a{bottom:282.520500px;}
.y25f{bottom:286.692480px;}
.y27f{bottom:286.977600px;}
.y75{bottom:289.825920px;}
.y243{bottom:293.892480px;}
.y4f{bottom:294.390000px;}
.y1ab{bottom:296.467920px;}
.yc2{bottom:298.033920px;}
.y1e0{bottom:298.719000px;}
.y28{bottom:301.098960px;}
.y216{bottom:305.769000px;}
.y25e{bottom:310.820400px;}
.y99{bottom:312.155400px;}
.y242{bottom:318.020400px;}
.y4e{bottom:318.517920px;}
.y27e{bottom:320.097600px;}
.yc1{bottom:322.161840px;}
.y27{bottom:325.226880px;}
.y74{bottom:331.938000px;}
.y16d{bottom:333.946500px;}
.y16a{bottom:333.948000px;}
.y160{bottom:333.949500px;}
.y157{bottom:333.952500px;}
.y1de{bottom:334.606500px;}
.y1aa{bottom:338.580000px;}
.y98{bottom:340.712550px;}
.y241{bottom:342.148320px;}
.y212{bottom:342.639000px;}
.y4d{bottom:342.645840px;}
.y25d{bottom:343.940400px;}
.y27d{bottom:344.225520px;}
.y26{bottom:349.354800px;}
.y73{bottom:356.065920px;}
.y166{bottom:361.753500px;}
.yc0{bottom:364.273920px;}
.y240{bottom:366.276240px;}
.y4c{bottom:366.773760px;}
.y27c{bottom:368.353440px;}
.y1dc{bottom:370.672500px;}
.y25{bottom:373.482720px;}
.y25c{bottom:377.060400px;}
.y20f{bottom:379.510500px;}
.y72{bottom:380.193840px;}
.y1a9{bottom:380.700000px;}
.y95{bottom:381.067920px;}
.ye1{bottom:383.210640px;}
.ybf{bottom:388.401840px;}
.y23f{bottom:390.404160px;}
.y4b{bottom:391.067280px;}
.y15a{bottom:392.899500px;}
.y24{bottom:397.776240px;}
.y25b{bottom:401.188320px;}
.y27b{bottom:401.473440px;}
.y71{bottom:404.321760px;}
.y1a8{bottom:404.984160px;}
.y1da{bottom:406.737000px;}
.ye0{bottom:407.504160px;}
.ybe{bottom:412.529760px;}
.y94{bottom:414.187920px;}
.y23e{bottom:414.532080px;}
.y20b{bottom:416.200500px;}
.y23{bottom:421.904160px;}
.y25a{bottom:425.316240px;}
.y27a{bottom:425.601360px;}
.y70{bottom:428.449680px;}
.y1a7{bottom:429.112080px;}
.ydf{bottom:431.632080px;}
.y4a{bottom:433.179360px;}
.ybd{bottom:436.657680px;}
.y154{bottom:438.501000px;}
.y14b{bottom:438.504000px;}
.y147{bottom:438.505500px;}
.y23d{bottom:438.660000px;}
.y1d8{bottom:442.627500px;}
.y22{bottom:446.032080px;}
.y6f{bottom:452.577600px;}
.y207{bottom:453.072000px;}
.y1a6{bottom:453.240000px;}
.yde{bottom:455.760000px;}
.y93{bottom:456.300000px;}
.y49{bottom:457.307280px;}
.y259{bottom:458.436240px;}
.y279{bottom:458.903520px;}
.ybc{bottom:460.785600px;}
.y21{bottom:470.160000px;}
.y23c{bottom:475.740000px;}
.y6e{bottom:476.871120px;}
.y1d6{bottom:479.395500px;}
.y48{bottom:481.435200px;}
.y258{bottom:482.564160px;}
.y278{bottom:483.031440px;}
.ybb{bottom:484.913520px;}
.y204{bottom:489.943500px;}
.ydd{bottom:492.660000px;}
.y20{bottom:493.560000px;}
.y1a5{bottom:495.337680px;}
.y92{bottom:499.320000px;}
.y6d{bottom:500.999040px;}
.y152{bottom:503.806500px;}
.y14f{bottom:503.808000px;}
.y47{bottom:505.563120px;}
.y277{bottom:507.159360px;}
.yba{bottom:509.041440px;}
.y1f{bottom:511.020000px;}
.y257{bottom:515.684160px;}
.y23b{bottom:518.999760px;}
.y1a4{bottom:519.465600px;}
.y6c{bottom:525.126960px;}
.y201{bottom:526.635000px;}
.y46{bottom:529.691040px;}
.y1e{bottom:535.680000px;}
.ydc{bottom:536.027760px;}
.y256{bottom:539.812080px;}
.y276{bottom:540.279360px;}
.yb9{bottom:542.161440px;}
.y91{bottom:542.851200px;}
.y23a{bottom:543.127680px;}
.y1a3{bottom:543.593520px;}
.y1d5{bottom:544.303440px;}
.y6b{bottom:549.254880px;}
.y45{bottom:553.818960px;}
.y143{bottom:557.832000px;}
.y141{bottom:557.833500px;}
.y1d{bottom:558.279360px;}
.ydb{bottom:560.155680px;}
.y255{bottom:563.940000px;}
.y1fe{bottom:564.225000px;}
.y275{bottom:564.407280px;}
.y239{bottom:567.255600px;}
.y90{bottom:569.844000px;}
.y44{bottom:577.946880px;}
.y1a0{bottom:581.340000px;}
.y1a2{bottom:581.400000px;}
.y1c{bottom:582.407280px;}
.yb8{bottom:584.273520px;}
.yda{bottom:584.449200px;}
.y1d4{bottom:586.415520px;}
.y19f{bottom:591.292500px;}
.y6a{bottom:591.366960px;}
.y238{bottom:591.383520px;}
.y254{bottom:592.020000px;}
.y8f{bottom:593.971920px;}
.y274{bottom:597.527280px;}
.y1b{bottom:606.535200px;}
.y1d3{bottom:610.543440px;}
.y1fd{bottom:611.761680px;}
.y253{bottom:612.180000px;}
.y69{bottom:615.494880px;}
.y237{bottom:615.511440px;}
.y13e{bottom:615.987000px;}
.y13b{bottom:615.988500px;}
.yec{bottom:616.014000px;}
.y43{bottom:620.058960px;}
.y8e{bottom:620.616960px;}
.y273{bottom:621.655200px;}
.yb7{bottom:622.080000px;}
.yb5{bottom:622.489500px;}
.yd9{bottom:626.395680px;}
.y19c{bottom:628.093500px;}
.y1a{bottom:630.663120px;}
.y252{bottom:632.520000px;}
.y1d2{bottom:634.671360px;}
.y1fc{bottom:635.889600px;}
.y68{bottom:639.622800px;}
.y236{bottom:639.639360px;}
.yb3{bottom:643.813500px;}
.y42{bottom:644.186880px;}
.y272{bottom:645.783120px;}
.y8d{bottom:647.079840px;}
.y135{bottom:649.357500px;}
.yd8{bottom:650.689200px;}
.y251{bottom:652.680000px;}
.y19{bottom:654.791040px;}
.y1d1{bottom:658.799280px;}
.y1fb{bottom:660.183120px;}
.y67{bottom:663.750720px;}
.y199{bottom:664.189500px;}
.y235{bottom:666.102240px;}
.y41{bottom:668.314800px;}
.y8c{bottom:671.207760px;}
.y292{bottom:673.380000px;}
.yb0{bottom:673.774500px;}
.y250{bottom:678.167280px;}
.y271{bottom:678.903120px;}
.y18{bottom:678.918960px;}
.y131{bottom:679.231500px;}
.y12d{bottom:679.233000px;}
.y1d0{bottom:682.927200px;}
.y66{bottom:687.878640px;}
.y234{bottom:690.230160px;}
.y291{bottom:690.660000px;}
.y40{bottom:692.442720px;}
.yd7{bottom:692.801280px;}
.y8b{bottom:695.335680px;}
.y196{bottom:700.110000px;}
.y1fa{bottom:702.295200px;}
.yae{bottom:702.501000px;}
.y270{bottom:703.031040px;}
.y17{bottom:703.046880px;}
.y65{bottom:712.006560px;}
.y126{bottom:712.759500px;}
.y233{bottom:714.358080px;}
.y3f{bottom:716.570640px;}
.yd6{bottom:716.929200px;}
.y8a{bottom:721.798560px;}
.y1cf{bottom:725.039280px;}
.y1f9{bottom:726.423120px;}
.y26f{bottom:727.158960px;}
.y16{bottom:727.174800px;}
.yab{bottom:731.227500px;}
.y290{bottom:731.877120px;}
.y64{bottom:736.134480px;}
.y193{bottom:736.207500px;}
.y232{bottom:738.486000px;}
.yd5{bottom:743.922000px;}
.y124{bottom:746.127000px;}
.y121{bottom:746.128500px;}
.y11e{bottom:746.130000px;}
.y1f8{bottom:750.551040px;}
.y15{bottom:751.468320px;}
.y28f{bottom:755.822880px;}
.y3e{bottom:758.682720px;}
.ya8{bottom:759.954000px;}
.y26e{bottom:760.278960px;}
.y1cc{bottom:762.765000px;}
.y231{bottom:762.779520px;}
.y1ce{bottom:762.845760px;}
.y89{bottom:763.910640px;}
.yd4{bottom:768.215520px;}
.y192{bottom:772.303500px;}
.y1c9{bottom:773.895000px;}
.y1f7{bottom:774.678960px;}
.y14{bottom:775.596240px;}
.y63{bottom:778.246560px;}
.y28e{bottom:779.404320px;}
.y3d{bottom:782.810640px;}
.y26d{bottom:784.406880px;}
.y88{bottom:788.038560px;}
.ya5{bottom:788.680500px;}
.y230{bottom:789.242400px;}
.yd3{bottom:792.873360px;}
.y11a{bottom:796.021500px;}
.y111{bottom:796.024500px;}
.y10d{bottom:796.026000px;}
.y1f6{bottom:798.806880px;}
.y13{bottom:799.724160px;}
.y62{bottom:802.374480px;}
.y28d{bottom:803.167920px;}
.y3c{bottom:806.938560px;}
.y18f{bottom:808.224000px;}
.y1c6{bottom:810.640500px;}
.y22f{bottom:813.370320px;}
.y26c{bottom:817.526880px;}
.yd2{bottom:817.713360px;}
.ya3{bottom:818.113500px;}
.y1f5{bottom:822.934800px;}
.y12{bottom:823.852080px;}
.y28c{bottom:824.580000px;}
.y61{bottom:826.502400px;}
.y116{bottom:829.390500px;}
.y87{bottom:830.150640px;}
.y3b{bottom:831.232080px;}
.y22e{bottom:837.498240px;}
.y24f{bottom:840.918960px;}
.y26b{bottom:841.654800px;}
.yd1{bottom:842.371200px;}
.y18c{bottom:844.321500px;}
.y1c3{bottom:846.684000px;}
.y11{bottom:847.980000px;}
.y60{bottom:850.630320px;}
.y3a{bottom:855.360000px;}
.y114{bottom:862.917000px;}
.y22d{bottom:863.961120px;}
.y1f4{bottom:865.046880px;}
.ya2{bottom:865.766160px;}
.y28b{bottom:869.940000px;}
.y10{bottom:871.380000px;}
.y86{bottom:872.262720px;}
.y5f{bottom:874.758240px;}
.y26a{bottom:874.774800px;}
.y189{bottom:880.417500px;}
.yd0{bottom:882.148320px;}
.y1c0{bottom:882.726000px;}
.y22c{bottom:888.089040px;}
.yf{bottom:888.840000px;}
.y24e{bottom:889.174800px;}
.y109{bottom:896.286000px;}
.y103{bottom:896.287500px;}
.y85{bottom:896.390640px;}
.y39{bottom:898.380000px;}
.ya1{bottom:899.068320px;}
.ycf{bottom:906.276240px;}
.y1f3{bottom:907.158960px;}
.y24d{bottom:913.302720px;}
.ye{bottom:913.498200px;}
.y22b{bottom:914.551920px;}
.y188{bottom:916.338000px;}
.y5e{bottom:917.052480px;}
.y1bd{bottom:918.592500px;}
.y84{bottom:920.518560px;}
.yce{bottom:930.404160px;}
.y1f2{bottom:931.286880px;}
.y269{bottom:932.188320px;}
.yd{bottom:935.460000px;}
.y24c{bottom:937.430640px;}
.y22a{bottom:938.845440px;}
.y38{bottom:941.040000px;}
.y5d{bottom:941.180400px;}
.y83{bottom:944.646480px;}
.yfd{bottom:946.180500px;}
.y186{bottom:953.139000px;}
.y1bb{bottom:954.636000px;}
.y1f1{bottom:955.414800px;}
.y268{bottom:956.316240px;}
.yc{bottom:959.040000px;}
.y24b{bottom:961.558560px;}
.y37{bottom:963.712080px;}
.y5c{bottom:965.308320px;}
.y82{bottom:968.940000px;}
.y28a{bottom:970.550640px;}
.y229{bottom:974.300400px;}
.ycd{bottom:974.867760px;}
.yf9{bottom:977.961000px;}
.yf2{bottom:977.962500px;}
.yee{bottom:977.964000px;}
.y1f0{bottom:979.542720px;}
.yb{bottom:985.320000px;}
.y36{bottom:987.840000px;}
.y5b{bottom:989.436240px;}
.y1b8{bottom:990.678000px;}
.y289{bottom:994.678560px;}
.y228{bottom:998.428320px;}
.ycc{bottom:998.995680px;}
.y185{bottom:999.000000px;}
.y1ef{bottom:1003.670640px;}
.y81{bottom:1005.120000px;}
.yf4{bottom:1007.835000px;}
.y35{bottom:1011.240000px;}
.ya{bottom:1011.780000px;}
.y5a{bottom:1013.564160px;}
.y288{bottom:1018.806480px;}
.y184{bottom:1021.654800px;}
.y227{bottom:1022.556240px;}
.ycb{bottom:1023.123600px;}
.y1b5{bottom:1026.547500px;}
.y1ee{bottom:1027.798560px;}
.y34{bottom:1028.700000px;}
.y59{bottom:1037.692080px;}
.y9{bottom:1038.060000px;}
.ye7{bottom:1040.091000px;}
.ye3{bottom:1040.092500px;}
.y80{bottom:1045.782720px;}
.y267{bottom:1046.684160px;}
.yca{bottom:1047.417120px;}
.y24a{bottom:1051.926480px;}
.y33{bottom:1053.360000px;}
.y226{bottom:1055.676240px;}
.y1b1{bottom:1063.293000px;}
.ye5{bottom:1064.085000px;}
.y8{bottom:1064.340000px;}
.y7f{bottom:1069.910640px;}
.y266{bottom:1070.812080px;}
.y32{bottom:1076.032080px;}
.y58{bottom:1079.804160px;}
.y287{bottom:1085.046480px;}
.y7{bottom:1089.000000px;}
.yc9{bottom:1091.698560px;}
.y7e{bottom:1094.038560px;}
.y31{bottom:1100.160000px;}
.y57{bottom:1103.932080px;}
.y6{bottom:1106.640000px;}
.y286{bottom:1109.340000px;}
.ye2{bottom:1110.060000px;}
.yc8{bottom:1115.826480px;}
.y7d{bottom:1118.332080px;}
.y30{bottom:1123.560000px;}
.y5{bottom:1126.800000px;}
.y56{bottom:1128.060000px;}
.yc7{bottom:1140.120000px;}
.y2f{bottom:1141.200000px;}
.y7c{bottom:1142.460000px;}
.y4{bottom:1146.413160px;}
.y3{bottom:1163.340180px;}
.y2{bottom:1180.072980px;}
.y1{bottom:1197.000000px;}
.h17{height:17.953500px;}
.h19{height:23.356500px;}
.h18{height:23.358000px;}
.h3b{height:27.169500px;}
.h10{height:28.551000px;}
.h3e{height:28.722891px;}
.he{height:28.726500px;}
.h22{height:29.076000px;}
.h23{height:29.077500px;}
.h2f{height:29.235000px;}
.h12{height:29.256000px;}
.h3a{height:30.507000px;}
.h35{height:30.850494px;}
.h25{height:31.141500px;}
.h24{height:31.143000px;}
.h1f{height:31.618500px;}
.h2a{height:32.730000px;}
.h2d{height:32.731500px;}
.h2e{height:32.890500px;}
.h40{height:34.893984px;}
.h4d{height:35.866500px;}
.h4b{height:35.868000px;}
.h55{height:35.889000px;}
.h56{height:35.890500px;}
.h45{height:35.920500px;}
.h48{height:36.042000px;}
.h4c{height:36.043500px;}
.h51{height:36.064500px;}
.h54{height:36.066000px;}
.h42{height:36.096000px;}
.h21{height:36.178233px;}
.h61{height:36.690000px;}
.h5f{height:36.691500px;}
.h5d{height:36.870000px;}
.h5a{height:36.871500px;}
.h15{height:41.947500px;}
.h50{height:43.123869px;}
.h59{height:43.150263px;}
.h47{height:43.188253px;}
.h63{height:44.114427px;}
.h3d{height:44.148388px;}
.h3f{height:44.148988px;}
.h38{height:44.965500px;}
.h1d{height:48.935370px;}
.h29{height:48.935970px;}
.h14{height:48.969013px;}
.h27{height:49.095000px;}
.h26{height:49.096500px;}
.h2b{height:49.254000px;}
.h2c{height:49.255500px;}
.h16{height:49.449277px;}
.h1b{height:49.590340px;}
.hb{height:49.904014px;}
.h2{height:50.013984px;}
.h7{height:50.072344px;}
.h34{height:53.386500px;}
.h4a{height:54.149679px;}
.h4e{height:54.150279px;}
.h53{height:54.182821px;}
.h57{height:54.183421px;}
.h44{height:54.230525px;}
.h11{height:54.278731px;}
.hf{height:54.848753px;}
.hd{height:55.315668px;}
.h5c{height:55.393501px;}
.h60{height:55.394101px;}
.h6{height:55.437187px;}
.h9{height:55.501875px;}
.hc{height:55.896579px;}
.h41{height:56.019375px;}
.h49{height:57.086665px;}
.h52{height:57.116514px;}
.h43{height:57.161611px;}
.h30{height:57.358500px;}
.h31{height:57.360000px;}
.h20{height:57.386285px;}
.h39{height:58.312500px;}
.h5b{height:58.390829px;}
.h5e{height:58.605240px;}
.h5{height:60.257812px;}
.h3{height:60.328125px;}
.h1c{height:61.489500px;}
.h1e{height:61.491000px;}
.h36{height:64.668000px;}
.h8{height:69.086250px;}
.h4{height:70.501641px;}
.h64{height:70.664062px;}
.h28{height:99.624000px;}
.h37{height:103.914000px;}
.h33{height:118.689000px;}
.h32{height:118.690500px;}
.ha{height:212.833500px;}
.h13{height:224.350500px;}
.h4f{height:337.273500px;}
.h58{height:367.725000px;}
.h46{height:408.600000px;}
.h1a{height:423.439500px;}
.h62{height:450.375000px;}
.h3c{height:927.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:25.654500px;}
.w12{width:47.005500px;}
.wd{width:47.007000px;}
.wb{width:47.164500px;}
.w13{width:47.166000px;}
.w25{width:63.321000px;}
.w4{width:77.976000px;}
.w5{width:83.257500px;}
.w6{width:83.259000px;}
.w1a{width:88.003500px;}
.w18{width:88.005000px;}
.w1e{width:88.030500px;}
.w19{width:105.604500px;}
.w1b{width:105.606000px;}
.w22{width:105.607500px;}
.w1f{width:105.639000px;}
.w26{width:107.931000px;}
.wf{width:133.369500px;}
.w15{width:133.371000px;}
.wc{width:150.418500px;}
.w11{width:150.420000px;}
.w10{width:159.660000px;}
.w14{width:159.661500px;}
.w8{width:159.979500px;}
.wa{width:159.981000px;}
.w3{width:198.726000px;}
.w17{width:328.434000px;}
.w21{width:328.440000px;}
.w1d{width:328.534500px;}
.w24{width:362.292000px;}
.w9{width:404.728500px;}
.w23{width:536.700000px;}
.w1c{width:540.000000px;}
.w20{width:541.275000px;}
.w27{width:560.100000px;}
.w16{width:580.962000px;}
.w7{width:636.136500px;}
.w2{width:636.331500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:5.104800px;}
.x12{left:6.336000px;}
.x2f{left:8.285700px;}
.x31{left:9.559950px;}
.x2c{left:11.632350px;}
.x32{left:12.906150px;}
.x27{left:14.978250px;}
.x20{left:16.890000px;}
.x1c{left:18.005250px;}
.x23{left:19.598100px;}
.x34{left:22.626300px;}
.x2e{left:24.060600px;}
.x30{left:25.972800px;}
.x22{left:27.407700px;}
.x10{left:28.515450px;}
.x11{left:30.276150px;}
.xf{left:31.330950px;}
.x33{left:32.983800px;}
.x1e{left:34.258950px;}
.xe{left:35.556300px;}
.xc{left:37.139550px;}
.x48{left:39.601800px;}
.x2d{left:41.110500px;}
.x58{left:42.272250px;}
.x1a{left:43.979550px;}
.x3c{left:45.094350px;}
.x2b{left:46.208850px;}
.x50{left:48.932850px;}
.x57{left:50.187300px;}
.x35{left:53.698050px;}
.x24{left:56.407800px;}
.x36{left:59.434500px;}
.x28{left:64.215900px;}
.x39{left:65.808450px;}
.x38{left:74.412900px;}
.x29{left:83.655600px;}
.x37{left:86.522550px;}
.x2a{left:88.276500px;}
.x25{left:91.303650px;}
.x26{left:95.924550px;}
.x3d{left:100.704750px;}
.x3e{left:105.007050px;}
.x3a{left:117.116850px;}
.x3b{left:121.419150px;}
.x3{left:127.610820px;}
.x19{left:144.843000px;}
.x3f{left:155.419500px;}
.x17{left:163.542000px;}
.x55{left:164.596950px;}
.x59{left:166.440000px;}
.x13{left:170.096400px;}
.x54{left:171.835500px;}
.x5{left:176.016960px;}
.x51{left:178.140000px;}
.x4{left:180.720000px;}
.x44{left:181.770000px;}
.x45{left:184.282200px;}
.x21{left:189.832500px;}
.x4b{left:192.437700px;}
.x6{left:202.827600px;}
.x14{left:217.599840px;}
.x15{left:223.428960px;}
.x43{left:235.815120px;}
.x4d{left:240.294240px;}
.x53{left:241.925760px;}
.x8{left:262.460160px;}
.x9{left:265.915500px;}
.x7{left:273.397650px;}
.x4a{left:277.200000px;}
.x18{left:323.520000px;}
.x16{left:344.880000px;}
.x42{left:446.408640px;}
.xb{left:464.643000px;}
.x1b{left:483.501000px;}
.x46{left:510.204000px;}
.x4e{left:511.860000px;}
.x5b{left:525.420000px;}
.x1d{left:530.665500px;}
.x1{left:532.440000px;}
.x56{left:534.127500px;}
.xd{left:542.619000px;}
.x40{left:548.100000px;}
.x47{left:598.209000px;}
.x4f{left:599.865000px;}
.x4c{left:612.000000px;}
.x1f{left:681.244500px;}
.x52{left:714.780000px;}
.x49{left:716.400000px;}
.x5a{left:726.480000px;}
.x41{left:737.463600px;}
.x2{left:765.354600px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls53{letter-spacing:-0.883200pt;}
.ls14{letter-spacing:-0.824320pt;}
.ls54{letter-spacing:-0.765440pt;}
.ls52{letter-spacing:-0.706560pt;}
.ls76{letter-spacing:-0.647680pt;}
.ls15{letter-spacing:-0.588800pt;}
.ls7a{letter-spacing:-0.529920pt;}
.ls49{letter-spacing:-0.521227pt;}
.ls41{letter-spacing:-0.519744pt;}
.ls75{letter-spacing:-0.412160pt;}
.ls47{letter-spacing:-0.363821pt;}
.ls36{letter-spacing:-0.353280pt;}
.ls1c{letter-spacing:-0.265600pt;}
.ls46{letter-spacing:-0.259872pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.235520pt;}
.ls6e{letter-spacing:-0.235334pt;}
.ls2d{letter-spacing:-0.235004pt;}
.ls35{letter-spacing:-0.230598pt;}
.ls59{letter-spacing:-0.230394pt;}
.ls65{letter-spacing:-0.230191pt;}
.ls5f{letter-spacing:-0.230050pt;}
.ls9{letter-spacing:-0.212480pt;}
.ls43{letter-spacing:-0.207898pt;}
.ls4c{letter-spacing:-0.187561pt;}
.ls11{letter-spacing:-0.176640pt;}
.ls6c{letter-spacing:-0.176501pt;}
.ls33{letter-spacing:-0.172949pt;}
.ls58{letter-spacing:-0.172795pt;}
.ls61{letter-spacing:-0.172643pt;}
.ls5e{letter-spacing:-0.172538pt;}
.ls44{letter-spacing:-0.156368pt;}
.ls48{letter-spacing:-0.155923pt;}
.ls4b{letter-spacing:-0.140670pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls74{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.058880pt;}
.ls6a{letter-spacing:-0.058834pt;}
.ls2e{letter-spacing:-0.058751pt;}
.ls34{letter-spacing:-0.057650pt;}
.ls57{letter-spacing:-0.057598pt;}
.ls62{letter-spacing:-0.057548pt;}
.ls5c{letter-spacing:-0.057513pt;}
.ls45{letter-spacing:-0.051974pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.051974pt;}
.ls16{letter-spacing:0.053120pt;}
.ls5d{letter-spacing:0.057513pt;}
.ls63{letter-spacing:0.057548pt;}
.ls56{letter-spacing:0.057598pt;}
.ls6f{letter-spacing:0.058834pt;}
.ls2{letter-spacing:0.058880pt;}
.lse{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.117760pt;}
.lsc{letter-spacing:0.128000pt;}
.ls4d{letter-spacing:0.140670pt;}
.ls3d{letter-spacing:0.140800pt;}
.ls3f{letter-spacing:0.141331pt;}
.ls6d{letter-spacing:0.159235pt;}
.ls40{letter-spacing:0.159360pt;}
.ls1d{letter-spacing:0.176640pt;}
.ls4e{letter-spacing:0.234451pt;}
.ls1a{letter-spacing:0.235520pt;}
.lsb{letter-spacing:0.256000pt;}
.ls42{letter-spacing:0.259872pt;}
.ls4a{letter-spacing:0.260613pt;}
.ls4f{letter-spacing:0.265600pt;}
.ls2f{letter-spacing:0.271010pt;}
.ls64{letter-spacing:0.287739pt;}
.ls32{letter-spacing:0.288248pt;}
.ls5{letter-spacing:0.294400pt;}
.ls6b{letter-spacing:0.318470pt;}
.ls1e{letter-spacing:0.647680pt;}
.ls20{letter-spacing:1.295360pt;}
.ls8{letter-spacing:1.943040pt;}
.ls22{letter-spacing:2.531840pt;}
.ls73{letter-spacing:2.590720pt;}
.ls69{letter-spacing:2.728751pt;}
.ls60{letter-spacing:3.093844pt;}
.ls66{letter-spacing:3.179520pt;}
.ls1f{letter-spacing:3.238400pt;}
.ls5b{letter-spacing:3.274123pt;}
.ls55{letter-spacing:3.278422pt;}
.ls67{letter-spacing:3.532800pt;}
.ls7c{letter-spacing:3.827200pt;}
.ls51{letter-spacing:5.122560pt;}
.ls71{letter-spacing:5.770240pt;}
.ls38{letter-spacing:6.417920pt;}
.ls3e{letter-spacing:6.920455pt;}
.ls30{letter-spacing:7.065600pt;}
.ls68{letter-spacing:8.302080pt;}
.ls1{letter-spacing:8.949760pt;}
.ls0{letter-spacing:9.597440pt;}
.ls3{letter-spacing:10.245120pt;}
.ls7b{letter-spacing:10.892800pt;}
.ls4{letter-spacing:12.188160pt;}
.ls78{letter-spacing:12.776960pt;}
.ls50{letter-spacing:13.424640pt;}
.ls17{letter-spacing:14.072320pt;}
.ls39{letter-spacing:14.366720pt;}
.ls79{letter-spacing:14.720000pt;}
.ls77{letter-spacing:15.367680pt;}
.ls21{letter-spacing:16.015360pt;}
.ls7{letter-spacing:17.251840pt;}
.ls5a{letter-spacing:20.490240pt;}
.ls72{letter-spacing:23.669760pt;}
.ls19{letter-spacing:28.144640pt;}
.ls18{letter-spacing:28.792320pt;}
.ls7d{letter-spacing:44.454400pt;}
.ls37{letter-spacing:46.338560pt;}
.ls23{letter-spacing:46.986240pt;}
.ls24{letter-spacing:47.633920pt;}
.ls70{letter-spacing:49.576960pt;}
.ls3a{letter-spacing:87.966720pt;}
.ls3b{letter-spacing:93.089280pt;}
.ls31{letter-spacing:93.736960pt;}
.ls1b{letter-spacing:174.108160pt;}
.ls2c{letter-spacing:204.361731pt;}
.ls27{letter-spacing:231.831183pt;}
.ls2a{letter-spacing:415.721604pt;}
.ls29{letter-spacing:454.027213pt;}
.ls25{letter-spacing:553.140037pt;}
.ls26{letter-spacing:581.105482pt;}
.ls28{letter-spacing:593.266925pt;}
.ls2b{letter-spacing:616.275878pt;}
.ws5f{word-spacing:-58.880000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.wse6{word-spacing:-15.014400pt;}
.wse7{word-spacing:-14.955520pt;}
.ws35{word-spacing:-14.896640pt;}
.wsa0{word-spacing:-14.837760pt;}
.ws7{word-spacing:-14.778880pt;}
.wsc2{word-spacing:-14.767234pt;}
.ws34{word-spacing:-14.720000pt;}
.wsbf{word-spacing:-14.708400pt;}
.ws6d{word-spacing:-14.700648pt;}
.ws9{word-spacing:-14.661120pt;}
.wsc3{word-spacing:-14.649566pt;}
.ws61{word-spacing:-14.628982pt;}
.ws8{word-spacing:-14.543360pt;}
.wsc0{word-spacing:-14.531899pt;}
.ws6{word-spacing:-14.484480pt;}
.wsc4{word-spacing:-14.473066pt;}
.ws9e{word-spacing:-14.457198pt;}
.ws60{word-spacing:-14.452730pt;}
.wsb2{word-spacing:-14.444481pt;}
.ws71{word-spacing:-14.366720pt;}
.ws6e{word-spacing:-14.354750pt;}
.ws9d{word-spacing:-14.342002pt;}
.wsb0{word-spacing:-14.329386pt;}
.wsad{word-spacing:-14.320621pt;}
.ws6f{word-spacing:-14.239451pt;}
.wsb1{word-spacing:-14.214290pt;}
.wsae{word-spacing:-14.205596pt;}
.wsf6{word-spacing:-14.190080pt;}
.ws70{word-spacing:-14.181802pt;}
.ws9f{word-spacing:-14.169206pt;}
.wsb3{word-spacing:-14.156742pt;}
.wsaf{word-spacing:-14.148083pt;}
.ws9c{word-spacing:-14.131200pt;}
.wsd5{word-spacing:-14.072320pt;}
.wsd4{word-spacing:-14.013440pt;}
.wsbe{word-spacing:-13.588070pt;}
.wsc1{word-spacing:-13.428835pt;}
.ws5e{word-spacing:-13.333120pt;}
.ws89{word-spacing:-13.291280pt;}
.ws86{word-spacing:-13.045574pt;}
.ws33{word-spacing:-13.014400pt;}
.ws87{word-spacing:-12.993600pt;}
.ws82{word-spacing:-12.941626pt;}
.ws80{word-spacing:-12.874299pt;}
.ws85{word-spacing:-12.837677pt;}
.ws81{word-spacing:-12.785702pt;}
.ws83{word-spacing:-12.733728pt;}
.ws84{word-spacing:-12.629779pt;}
.ws88{word-spacing:-12.509440pt;}
.ws7f{word-spacing:-12.473856pt;}
.ws8a{word-spacing:-11.581863pt;}
.ws8b{word-spacing:-8.640000pt;}
.wsa6{word-spacing:-3.946248pt;}
.wsb4{word-spacing:-3.274123pt;}
.wsb8{word-spacing:-3.093844pt;}
.wscd{word-spacing:-2.728751pt;}
.wsbc{word-spacing:-0.920764pt;}
.wsf7{word-spacing:-0.765440pt;}
.ws3a{word-spacing:-0.706560pt;}
.ws91{word-spacing:-0.623693pt;}
.wsc9{word-spacing:-0.588800pt;}
.wsce{word-spacing:-0.588336pt;}
.wsa9{word-spacing:-0.575984pt;}
.wsa5{word-spacing:-0.471040pt;}
.wsd0{word-spacing:-0.470669pt;}
.ws74{word-spacing:-0.461197pt;}
.wsbd{word-spacing:-0.460382pt;}
.ws92{word-spacing:-0.416981pt;}
.ws7d{word-spacing:-0.412160pt;}
.wsef{word-spacing:-0.294400pt;}
.ws8c{word-spacing:-0.259872pt;}
.ws12{word-spacing:-0.256000pt;}
.wse9{word-spacing:-0.235520pt;}
.wsf{word-spacing:-0.128000pt;}
.wsda{word-spacing:-0.117760pt;}
.ws9b{word-spacing:-0.106240pt;}
.ws9a{word-spacing:-0.093780pt;}
.ws11{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.058880pt;}
.wsd3{word-spacing:-0.058834pt;}
.wsa7{word-spacing:-0.057598pt;}
.wsbb{word-spacing:-0.057548pt;}
.wsb5{word-spacing:-0.057513pt;}
.wsc5{word-spacing:-0.053120pt;}
.ws8e{word-spacing:-0.051974pt;}
.wsc{word-spacing:0.000000pt;}
.ws90{word-spacing:0.051974pt;}
.wsba{word-spacing:0.057548pt;}
.wsab{word-spacing:0.057598pt;}
.ws75{word-spacing:0.057650pt;}
.ws6c{word-spacing:0.058751pt;}
.wsd2{word-spacing:0.058834pt;}
.ws15{word-spacing:0.058880pt;}
.ws36{word-spacing:0.106240pt;}
.wsdb{word-spacing:0.117760pt;}
.ws10{word-spacing:0.128000pt;}
.ws93{word-spacing:0.140670pt;}
.ws8f{word-spacing:0.155923pt;}
.wsb{word-spacing:0.159360pt;}
.wsb9{word-spacing:0.172643pt;}
.wsa8{word-spacing:0.172795pt;}
.ws76{word-spacing:0.172949pt;}
.wscf{word-spacing:0.176501pt;}
.ws14{word-spacing:0.176640pt;}
.ws96{word-spacing:0.187561pt;}
.ws8d{word-spacing:0.207898pt;}
.wsaa{word-spacing:0.230394pt;}
.wsd1{word-spacing:0.235334pt;}
.ws1a{word-spacing:0.235520pt;}
.ws94{word-spacing:0.281341pt;}
.ws98{word-spacing:0.328231pt;}
.ws7e{word-spacing:0.353280pt;}
.wsa{word-spacing:0.371840pt;}
.wse1{word-spacing:0.412160pt;}
.ws28{word-spacing:0.588800pt;}
.ws50{word-spacing:0.706560pt;}
.wsa4{word-spacing:0.765440pt;}
.ws1d{word-spacing:0.824320pt;}
.wsa3{word-spacing:0.883200pt;}
.ws26{word-spacing:1.236480pt;}
.ws25{word-spacing:1.354240pt;}
.ws5d{word-spacing:1.472000pt;}
.ws24{word-spacing:1.884160pt;}
.ws4b{word-spacing:2.001920pt;}
.ws2f{word-spacing:2.119680pt;}
.wseb{word-spacing:2.178560pt;}
.wsf4{word-spacing:2.472960pt;}
.ws66{word-spacing:2.531840pt;}
.ws29{word-spacing:2.649600pt;}
.ws2a{word-spacing:2.767360pt;}
.wse5{word-spacing:2.826240pt;}
.ws5b{word-spacing:3.120640pt;}
.ws67{word-spacing:3.238400pt;}
.ws2e{word-spacing:3.356160pt;}
.ws5c{word-spacing:3.415040pt;}
.wsd8{word-spacing:3.709440pt;}
.ws73{word-spacing:3.768320pt;}
.ws45{word-spacing:3.886080pt;}
.ws54{word-spacing:4.003840pt;}
.wsfb{word-spacing:4.062720pt;}
.wsf5{word-spacing:4.357120pt;}
.ws65{word-spacing:4.416000pt;}
.ws4a{word-spacing:4.533760pt;}
.ws77{word-spacing:4.651520pt;}
.ws3e{word-spacing:5.063680pt;}
.wse{word-spacing:5.120000pt;}
.ws42{word-spacing:5.181440pt;}
.ws63{word-spacing:5.299200pt;}
.ws3f{word-spacing:5.358080pt;}
.wsd{word-spacing:5.504000pt;}
.wsdd{word-spacing:5.534720pt;}
.ws21{word-spacing:5.711360pt;}
.ws59{word-spacing:5.829120pt;}
.ws57{word-spacing:5.946880pt;}
.wsdf{word-spacing:6.005760pt;}
.ws4d{word-spacing:6.359040pt;}
.ws7a{word-spacing:6.476800pt;}
.wsac{word-spacing:6.594560pt;}
.wsde{word-spacing:6.653440pt;}
.ws97{word-spacing:6.799069pt;}
.ws4e{word-spacing:7.006720pt;}
.ws7b{word-spacing:7.065600pt;}
.ws48{word-spacing:7.124480pt;}
.ws95{word-spacing:7.127300pt;}
.ws49{word-spacing:7.242240pt;}
.ws53{word-spacing:7.301120pt;}
.ws7c{word-spacing:7.595520pt;}
.ws64{word-spacing:7.713280pt;}
.ws79{word-spacing:7.831040pt;}
.ws100{word-spacing:8.184320pt;}
.ws27{word-spacing:8.243200pt;}
.ws44{word-spacing:8.360960pt;}
.ws43{word-spacing:8.478720pt;}
.ws1c{word-spacing:8.890880pt;}
.ws99{word-spacing:8.956015pt;}
.ws1b{word-spacing:9.008640pt;}
.ws1f{word-spacing:9.126400pt;}
.ws1e{word-spacing:9.538560pt;}
.ws16{word-spacing:9.656320pt;}
.ws40{word-spacing:9.774080pt;}
.ws17{word-spacing:9.832960pt;}
.ws18{word-spacing:10.186240pt;}
.wsfc{word-spacing:10.304000pt;}
.wsd9{word-spacing:10.775040pt;}
.ws58{word-spacing:10.833920pt;}
.ws5a{word-spacing:10.951680pt;}
.ws51{word-spacing:11.069440pt;}
.wsfa{word-spacing:11.128320pt;}
.ws6b{word-spacing:11.481600pt;}
.ws46{word-spacing:11.599360pt;}
.ws47{word-spacing:11.717120pt;}
.wsd6{word-spacing:12.129280pt;}
.ws20{word-spacing:12.247040pt;}
.ws22{word-spacing:12.364800pt;}
.wsd7{word-spacing:12.423680pt;}
.wsea{word-spacing:12.659200pt;}
.ws19{word-spacing:12.718080pt;}
.ws23{word-spacing:12.776960pt;}
.ws52{word-spacing:12.835840pt;}
.ws62{word-spacing:12.953600pt;}
.wsa1{word-spacing:13.365760pt;}
.wsa2{word-spacing:13.483520pt;}
.ws2d{word-spacing:13.601280pt;}
.ws37{word-spacing:14.013440pt;}
.ws39{word-spacing:14.131200pt;}
.ws38{word-spacing:14.248960pt;}
.wsf3{word-spacing:14.602240pt;}
.ws32{word-spacing:14.661120pt;}
.ws41{word-spacing:14.778880pt;}
.ws30{word-spacing:15.308800pt;}
.ws31{word-spacing:15.426560pt;}
.wse8{word-spacing:15.544320pt;}
.wsca{word-spacing:15.956480pt;}
.ws4f{word-spacing:16.192000pt;}
.ws101{word-spacing:16.545280pt;}
.ws69{word-spacing:16.604160pt;}
.wsee{word-spacing:16.721920pt;}
.wsc6{word-spacing:17.251840pt;}
.ws6a{word-spacing:17.369600pt;}
.ws72{word-spacing:17.487360pt;}
.ws2b{word-spacing:17.605120pt;}
.ws2c{word-spacing:17.840640pt;}
.wsf9{word-spacing:18.606080pt;}
.wsf8{word-spacing:18.959360pt;}
.wscb{word-spacing:19.136000pt;}
.wscc{word-spacing:19.253760pt;}
.ws68{word-spacing:19.371520pt;}
.wsdc{word-spacing:20.666880pt;}
.wsb7{word-spacing:21.079040pt;}
.wsb6{word-spacing:21.196800pt;}
.wsf0{word-spacing:21.726720pt;}
.wsec{word-spacing:21.844480pt;}
.wsed{word-spacing:22.021120pt;}
.ws4c{word-spacing:22.315520pt;}
.wse3{word-spacing:23.375360pt;}
.wse4{word-spacing:23.728640pt;}
.wse2{word-spacing:23.846400pt;}
.ws78{word-spacing:24.258560pt;}
.ws55{word-spacing:24.376320pt;}
.ws56{word-spacing:25.024000pt;}
.wsc8{word-spacing:26.319360pt;}
.ws3d{word-spacing:28.321280pt;}
.ws3c{word-spacing:28.851200pt;}
.ws3b{word-spacing:28.968960pt;}
.wse0{word-spacing:31.441920pt;}
.wsc7{word-spacing:31.559680pt;}
.wsfe{word-spacing:93.972480pt;}
.wsfd{word-spacing:94.031360pt;}
.wsff{word-spacing:94.266880pt;}
.wsf1{word-spacing:140.664320pt;}
.wsf2{word-spacing:140.958720pt;}
._16{margin-left:-109.220811pt;}
._12{margin-left:-106.926966pt;}
._f{margin-left:-11.482880pt;}
._d{margin-left:-10.133801pt;}
._15{margin-left:-5.859318pt;}
._13{margin-left:-4.789921pt;}
._14{margin-left:-3.611632pt;}
._11{margin-left:-2.572823pt;}
._1{margin-left:-1.540480pt;}
._0{width:1.381120pt;}
._7{width:2.573440pt;}
._8{width:3.964160pt;}
._e{width:6.429799pt;}
._19{width:7.595520pt;}
._2{width:9.260800pt;}
._c{width:10.598400pt;}
._4{width:11.540480pt;}
._3{width:12.786560pt;}
._10{width:13.738240pt;}
._5{width:17.858560pt;}
._1a{width:18.798720pt;}
._6{width:28.353280pt;}
._1b{width:93.422080pt;}
._18{width:139.898880pt;}
._17{width:140.938240pt;}
._b{width:246.048909pt;}
._a{width:257.898995pt;}
._9{width:508.898321pt;}
.fsd{font-size:30.506667pt;}
.fsb{font-size:32.766400pt;}
.fse{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsc{font-size:46.890133pt;}
.fs9{font-size:51.974400pt;}
.fs7{font-size:52.010133pt;}
.fsa{font-size:52.122667pt;}
.fs4{font-size:53.003200pt;}
.fs17{font-size:53.078400pt;}
.fs0{font-size:53.120000pt;}
.fs12{font-size:57.512533pt;}
.fs14{font-size:57.547733pt;}
.fs10{font-size:57.598400pt;}
.fs6{font-size:57.649600pt;}
.fs5{font-size:58.750933pt;}
.fs16{font-size:58.833600pt;}
.fs3{font-size:58.880000pt;}
.fs11{font-size:60.631915pt;}
.fs13{font-size:60.663617pt;}
.fsf{font-size:60.711515pt;}
.fs15{font-size:62.017072pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y1ec{bottom:-9.350933pt;}
.y223{bottom:-8.944267pt;}
.y1a1{bottom:-5.396667pt;}
.y1cd{bottom:-4.330267pt;}
.y0{bottom:0.000000pt;}
.y142{bottom:2.965467pt;}
.y180{bottom:3.106933pt;}
.y118{bottom:3.388933pt;}
.y12b{bottom:3.389467pt;}
.y106{bottom:3.389600pt;}
.y11c{bottom:3.389867pt;}
.y128{bottom:3.390000pt;}
.y12f{bottom:3.529867pt;}
.y133{bottom:3.530400pt;}
.ye6{bottom:4.095333pt;}
.y17f{bottom:6.072800pt;}
.yeb{bottom:6.496533pt;}
.yea{bottom:6.496933pt;}
.ye9{bottom:6.497333pt;}
.ye8{bottom:6.497600pt;}
.yb6{bottom:7.832000pt;}
.y16b{bottom:8.191067pt;}
.y16e{bottom:8.192133pt;}
.yb1{bottom:8.458933pt;}
.ya4{bottom:8.459200pt;}
.yac{bottom:8.459600pt;}
.ya9{bottom:8.460000pt;}
.ya6{bottom:8.460267pt;}
.yfa{bottom:8.756400pt;}
.yb4{bottom:8.772667pt;}
.y15e{bottom:8.897867pt;}
.y15c{bottom:8.898000pt;}
.yfc{bottom:9.038667pt;}
.y13a{bottom:9.179600pt;}
.y139{bottom:9.180000pt;}
.y138{bottom:9.180400pt;}
.y137{bottom:9.180667pt;}
.y136{bottom:9.180933pt;}
.yf5{bottom:9.744400pt;}
.yf7{bottom:9.744533pt;}
.y169{bottom:9.745867pt;}
.y167{bottom:9.746133pt;}
.y102{bottom:9.886267pt;}
.y101{bottom:9.886533pt;}
.y100{bottom:9.886800pt;}
.yff{bottom:9.887067pt;}
.yfe{bottom:9.887467pt;}
.y148{bottom:10.027467pt;}
.yf8{bottom:10.167867pt;}
.y115{bottom:10.592267pt;}
.y13d{bottom:10.592400pt;}
.y11d{bottom:10.592667pt;}
.y13c{bottom:10.592800pt;}
.y140{bottom:10.593067pt;}
.y13f{bottom:10.593467pt;}
.y130{bottom:10.732667pt;}
.y119{bottom:10.732933pt;}
.y134{bottom:10.733067pt;}
.y12c{bottom:10.733333pt;}
.y108{bottom:10.733600pt;}
.y129{bottom:10.733867pt;}
.y10c{bottom:10.734267pt;}
.yb2{bottom:10.808800pt;}
.yaf{bottom:10.809067pt;}
.yad{bottom:10.809467pt;}
.yaa{bottom:10.809733pt;}
.ya7{bottom:10.810133pt;}
.y16c{bottom:11.156933pt;}
.y1c4{bottom:11.720533pt;}
.y1c5{bottom:11.720667pt;}
.y1c8{bottom:11.721067pt;}
.y1bc{bottom:11.721333pt;}
.y1c2{bottom:11.721467pt;}
.y1bf{bottom:11.721867pt;}
.y1ba{bottom:11.722267pt;}
.y15d{bottom:11.863867pt;}
.y1c1{bottom:11.877600pt;}
.y1b9{bottom:11.878533pt;}
.y1e1{bottom:11.884267pt;}
.y1ea{bottom:11.884533pt;}
.y1e9{bottom:11.884667pt;}
.y1e7{bottom:11.885467pt;}
.y1db{bottom:11.885733pt;}
.y18a{bottom:11.895333pt;}
.y19a{bottom:11.895467pt;}
.y1cb{bottom:12.032667pt;}
.y1ca{bottom:12.032933pt;}
.y1b6{bottom:12.033067pt;}
.y1b7{bottom:12.033200pt;}
.y1c7{bottom:12.033733pt;}
.y1b4{bottom:12.034000pt;}
.y1b2{bottom:12.034133pt;}
.y1b3{bottom:12.034267pt;}
.y1be{bottom:12.034400pt;}
.y1e5{bottom:12.040667pt;}
.y1d9{bottom:12.041067pt;}
.y1e3{bottom:12.041333pt;}
.y1dd{bottom:12.041467pt;}
.y1d7{bottom:12.041867pt;}
.y1df{bottom:12.042267pt;}
.y18d{bottom:12.051200pt;}
.y194{bottom:12.051333pt;}
.y19d{bottom:12.051467pt;}
.y187{bottom:12.051867pt;}
.y190{bottom:12.052000pt;}
.y197{bottom:12.052133pt;}
.y210{bottom:12.150133pt;}
.y205{bottom:12.150400pt;}
.y21a{bottom:12.151200pt;}
.y217{bottom:12.309467pt;}
.y202{bottom:12.309867pt;}
.y1ff{bottom:12.310000pt;}
.y200{bottom:12.310133pt;}
.y221{bottom:12.310267pt;}
.y213{bottom:12.310400pt;}
.y21f{bottom:12.310533pt;}
.y208{bottom:12.310800pt;}
.y20c{bottom:12.311067pt;}
.y168{bottom:12.712000pt;}
.y145{bottom:14.406400pt;}
.yfb{bottom:14.688267pt;}
.ye4{bottom:14.688533pt;}
.y162{bottom:14.830133pt;}
.y159{bottom:15.534933pt;}
.yf6{bottom:15.676267pt;}
.y15f{bottom:16.100933pt;}
.yf0{bottom:16.242000pt;}
.y17e{bottom:16.383067pt;}
.y10a{bottom:17.514000pt;}
.y117{bottom:17.936267pt;}
.y12a{bottom:17.936667pt;}
.y105{bottom:17.936933pt;}
.y11b{bottom:17.937200pt;}
.y127{bottom:17.937333pt;}
.y12e{bottom:18.077200pt;}
.y120{bottom:18.077467pt;}
.y132{bottom:18.077733pt;}
.y123{bottom:18.078267pt;}
.y122{bottom:18.078533pt;}
.y125{bottom:18.078933pt;}
.y158{bottom:18.359733pt;}
.y17d{bottom:19.348933pt;}
.y18b{bottom:19.564667pt;}
.y19b{bottom:19.564800pt;}
.y18e{bottom:19.720533pt;}
.y195{bottom:19.720667pt;}
.y19e{bottom:19.720800pt;}
.y191{bottom:19.721333pt;}
.y198{bottom:19.721467pt;}
.y150{bottom:19.913600pt;}
.y153{bottom:19.914533pt;}
.y211{bottom:20.623467pt;}
.y206{bottom:20.623733pt;}
.y21b{bottom:20.624533pt;}
.y218{bottom:20.782800pt;}
.y203{bottom:20.783200pt;}
.y21d{bottom:20.783467pt;}
.y215{bottom:20.783733pt;}
.y214{bottom:20.783867pt;}
.y209{bottom:20.784000pt;}
.y20a{bottom:20.784133pt;}
.y20e{bottom:20.784400pt;}
.y20d{bottom:20.784533pt;}
.y146{bottom:21.609600pt;}
.y165{bottom:22.032533pt;}
.y163{bottom:22.032800pt;}
.y151{bottom:22.879467pt;}
.yf1{bottom:23.444800pt;}
.y15b{bottom:23.445200pt;}
.yf3{bottom:23.445733pt;}
.y156{bottom:24.857867pt;}
.y155{bottom:24.858133pt;}
.y164{bottom:24.998667pt;}
.y107{bottom:25.280933pt;}
.y10b{bottom:25.281600pt;}
.y110{bottom:25.845333pt;}
.y144{bottom:28.953733pt;}
.y161{bottom:29.377333pt;}
.y17c{bottom:29.659200pt;}
.yef{bottom:30.789333pt;}
.y104{bottom:32.484133pt;}
.y11f{bottom:32.624667pt;}
.y17b{bottom:32.624933pt;}
.y113{bottom:39.969733pt;}
.y10f{bottom:40.392667pt;}
.y112{bottom:40.393733pt;}
.y14a{bottom:41.663733pt;}
.y14d{bottom:41.664800pt;}
.y17a{bottom:42.935200pt;}
.y14e{bottom:48.867467pt;}
.y10e{bottom:54.940000pt;}
.y179{bottom:56.070133pt;}
.y149{bottom:56.211067pt;}
.y14c{bottom:56.212000pt;}
.y178{bottom:59.036000pt;}
.y177{bottom:69.346133pt;}
.y176{bottom:72.312133pt;}
.y175{bottom:82.622267pt;}
.y174{bottom:95.898400pt;}
.y173{bottom:98.864267pt;}
.ya0{bottom:100.000000pt;}
.y183{bottom:101.440000pt;}
.y265{bottom:102.014720pt;}
.y172{bottom:109.033200pt;}
.y225{bottom:109.600000pt;}
.y285{bottom:110.423040pt;}
.y171{bottom:111.999067pt;}
.y182{bottom:113.120000pt;}
.y249{bottom:116.407680pt;}
.y55{bottom:117.011840pt;}
.y170{bottom:122.309333pt;}
.y2e{bottom:126.243840pt;}
.y7b{bottom:128.940800pt;}
.y264{bottom:131.616640pt;}
.y284{bottom:131.870080pt;}
.y1eb{bottom:131.946667pt;}
.y1ed{bottom:132.000000pt;}
.y9f{bottom:132.480000pt;}
.y96{bottom:132.829333pt;}
.y222{bottom:134.613333pt;}
.y224{bottom:134.720000pt;}
.y181{bottom:136.640000pt;}
.y1e8{bottom:136.826667pt;}
.y16f{bottom:137.669333pt;}
.y248{bottom:137.854720pt;}
.y54{bottom:138.458880pt;}
.y220{bottom:140.217333pt;}
.y1b0{bottom:140.305920pt;}
.y9e{bottom:144.803200pt;}
.yc6{bottom:146.997120pt;}
.y7a{bottom:150.387840pt;}
.yed{bottom:151.686667pt;}
.y263{bottom:153.063680pt;}
.y2d{bottom:153.760000pt;}
.y53{bottom:159.905920pt;}
.y283{bottom:161.310080pt;}
.y1e6{bottom:169.509333pt;}
.y9d{bottom:171.800886pt;}
.y79{bottom:171.834880pt;}
.y21e{bottom:173.630667pt;}
.y247{bottom:175.449600pt;}
.y1af{bottom:177.738880pt;}
.y97{bottom:177.849067pt;}
.y2c{bottom:181.855360pt;}
.y262{bottom:182.503680pt;}
.y282{bottom:182.757120pt;}
.yc5{bottom:184.592000pt;}
.y78{bottom:193.281920pt;}
.y246{bottom:196.896640pt;}
.y52{bottom:197.338880pt;}
.y9c{bottom:198.297557pt;}
.y1ae{bottom:199.185920pt;}
.y1e4{bottom:201.412000pt;}
.y2b{bottom:203.302400pt;}
.y261{bottom:203.950720pt;}
.yc4{bottom:206.039040pt;}
.y21c{bottom:206.405333pt;}
.y281{bottom:212.197120pt;}
.y77{bottom:214.728960pt;}
.y245{bottom:218.343680pt;}
.y51{bottom:218.785920pt;}
.y1ad{bottom:220.632960pt;}
.y9b{bottom:224.632662pt;}
.y2a{bottom:224.749440pt;}
.yc3{bottom:227.486080pt;}
.y260{bottom:233.390720pt;}
.y1e2{bottom:233.469333pt;}
.y280{bottom:233.644160pt;}
.y76{bottom:236.176000pt;}
.y219{bottom:239.178667pt;}
.y244{bottom:239.790720pt;}
.y50{bottom:240.232960pt;}
.y1ac{bottom:242.080000pt;}
.y29{bottom:246.196480pt;}
.y9a{bottom:251.129333pt;}
.y25f{bottom:254.837760pt;}
.y27f{bottom:255.091200pt;}
.y75{bottom:257.623040pt;}
.y243{bottom:261.237760pt;}
.y4f{bottom:261.680000pt;}
.y1ab{bottom:263.527040pt;}
.yc2{bottom:264.919040pt;}
.y1e0{bottom:265.528000pt;}
.y28{bottom:267.643520pt;}
.y216{bottom:271.794667pt;}
.y25e{bottom:276.284800pt;}
.y99{bottom:277.471467pt;}
.y242{bottom:282.684800pt;}
.y4e{bottom:283.127040pt;}
.y27e{bottom:284.531200pt;}
.yc1{bottom:286.366080pt;}
.y27{bottom:289.090560pt;}
.y74{bottom:295.056000pt;}
.y16d{bottom:296.841333pt;}
.y16a{bottom:296.842667pt;}
.y160{bottom:296.844000pt;}
.y157{bottom:296.846667pt;}
.y1de{bottom:297.428000pt;}
.y1aa{bottom:300.960000pt;}
.y98{bottom:302.855600pt;}
.y241{bottom:304.131840pt;}
.y212{bottom:304.568000pt;}
.y4d{bottom:304.574080pt;}
.y25d{bottom:305.724800pt;}
.y27d{bottom:305.978240pt;}
.y26{bottom:310.537600pt;}
.y73{bottom:316.503040pt;}
.y166{bottom:321.558667pt;}
.yc0{bottom:323.799040pt;}
.y240{bottom:325.578880pt;}
.y4c{bottom:326.021120pt;}
.y27c{bottom:327.425280pt;}
.y1dc{bottom:329.486667pt;}
.y25{bottom:331.984640pt;}
.y25c{bottom:335.164800pt;}
.y20f{bottom:337.342667pt;}
.y72{bottom:337.950080pt;}
.y1a9{bottom:338.400000pt;}
.y95{bottom:338.727040pt;}
.ye1{bottom:340.631680pt;}
.ybf{bottom:345.246080pt;}
.y23f{bottom:347.025920pt;}
.y4b{bottom:347.615360pt;}
.y15a{bottom:349.244000pt;}
.y24{bottom:353.578880pt;}
.y25b{bottom:356.611840pt;}
.y27b{bottom:356.865280pt;}
.y71{bottom:359.397120pt;}
.y1a8{bottom:359.985920pt;}
.y1da{bottom:361.544000pt;}
.ye0{bottom:362.225920pt;}
.ybe{bottom:366.693120pt;}
.y94{bottom:368.167040pt;}
.y23e{bottom:368.472960pt;}
.y20b{bottom:369.956000pt;}
.y23{bottom:375.025920pt;}
.y25a{bottom:378.058880pt;}
.y27a{bottom:378.312320pt;}
.y70{bottom:380.844160pt;}
.y1a7{bottom:381.432960pt;}
.ydf{bottom:383.672960pt;}
.y4a{bottom:385.048320pt;}
.ybd{bottom:388.140160pt;}
.y154{bottom:389.778667pt;}
.y14b{bottom:389.781333pt;}
.y147{bottom:389.782667pt;}
.y23d{bottom:389.920000pt;}
.y1d8{bottom:393.446667pt;}
.y22{bottom:396.472960pt;}
.y6f{bottom:402.291200pt;}
.y207{bottom:402.730667pt;}
.y1a6{bottom:402.880000pt;}
.yde{bottom:405.120000pt;}
.y93{bottom:405.600000pt;}
.y49{bottom:406.495360pt;}
.y259{bottom:407.498880pt;}
.y279{bottom:407.914240pt;}
.ybc{bottom:409.587200pt;}
.y21{bottom:417.920000pt;}
.y23c{bottom:422.880000pt;}
.y6e{bottom:423.885440pt;}
.y1d6{bottom:426.129333pt;}
.y48{bottom:427.942400pt;}
.y258{bottom:428.945920pt;}
.y278{bottom:429.361280pt;}
.ybb{bottom:431.034240pt;}
.y204{bottom:435.505333pt;}
.ydd{bottom:437.920000pt;}
.y20{bottom:438.720000pt;}
.y1a5{bottom:440.300160pt;}
.y92{bottom:443.840000pt;}
.y6d{bottom:445.332480pt;}
.y152{bottom:447.828000pt;}
.y14f{bottom:447.829333pt;}
.y47{bottom:449.389440pt;}
.y277{bottom:450.808320pt;}
.yba{bottom:452.481280pt;}
.y1f{bottom:454.240000pt;}
.y257{bottom:458.385920pt;}
.y23b{bottom:461.333120pt;}
.y1a4{bottom:461.747200pt;}
.y6c{bottom:466.779520pt;}
.y201{bottom:468.120000pt;}
.y46{bottom:470.836480pt;}
.y1e{bottom:476.160000pt;}
.ydc{bottom:476.469120pt;}
.y256{bottom:479.832960pt;}
.y276{bottom:480.248320pt;}
.yb9{bottom:481.921280pt;}
.y91{bottom:482.534400pt;}
.y23a{bottom:482.780160pt;}
.y1a3{bottom:483.194240pt;}
.y1d5{bottom:483.825280pt;}
.y6b{bottom:488.226560pt;}
.y45{bottom:492.283520pt;}
.y143{bottom:495.850667pt;}
.y141{bottom:495.852000pt;}
.y1d{bottom:496.248320pt;}
.ydb{bottom:497.916160pt;}
.y255{bottom:501.280000pt;}
.y1fe{bottom:501.533333pt;}
.y275{bottom:501.695360pt;}
.y239{bottom:504.227200pt;}
.y90{bottom:506.528000pt;}
.y44{bottom:513.730560pt;}
.y1a0{bottom:516.746667pt;}
.y1a2{bottom:516.800000pt;}
.y1c{bottom:517.695360pt;}
.yb8{bottom:519.354240pt;}
.yda{bottom:519.510400pt;}
.y1d4{bottom:521.258240pt;}
.y19f{bottom:525.593333pt;}
.y6a{bottom:525.659520pt;}
.y238{bottom:525.674240pt;}
.y254{bottom:526.240000pt;}
.y8f{bottom:527.975040pt;}
.y274{bottom:531.135360pt;}
.y1b{bottom:539.142400pt;}
.y1d3{bottom:542.705280pt;}
.y1fd{bottom:543.788160pt;}
.y253{bottom:544.160000pt;}
.y69{bottom:547.106560pt;}
.y237{bottom:547.121280pt;}
.y13e{bottom:547.544000pt;}
.y13b{bottom:547.545333pt;}
.yec{bottom:547.568000pt;}
.y43{bottom:551.163520pt;}
.y8e{bottom:551.659520pt;}
.y273{bottom:552.582400pt;}
.yb7{bottom:552.960000pt;}
.yb5{bottom:553.324000pt;}
.yd9{bottom:556.796160pt;}
.y19c{bottom:558.305333pt;}
.y1a{bottom:560.589440pt;}
.y252{bottom:562.240000pt;}
.y1d2{bottom:564.152320pt;}
.y1fc{bottom:565.235200pt;}
.y68{bottom:568.553600pt;}
.y236{bottom:568.568320pt;}
.yb3{bottom:572.278667pt;}
.y42{bottom:572.610560pt;}
.y272{bottom:574.029440pt;}
.y8d{bottom:575.182080pt;}
.y135{bottom:577.206667pt;}
.yd8{bottom:578.390400pt;}
.y251{bottom:580.160000pt;}
.y19{bottom:582.036480pt;}
.y1d1{bottom:585.599360pt;}
.y1fb{bottom:586.829440pt;}
.y67{bottom:590.000640pt;}
.y199{bottom:590.390667pt;}
.y235{bottom:592.090880pt;}
.y41{bottom:594.057600pt;}
.y8c{bottom:596.629120pt;}
.y292{bottom:598.560000pt;}
.yb0{bottom:598.910667pt;}
.y250{bottom:602.815360pt;}
.y271{bottom:603.469440pt;}
.y18{bottom:603.483520pt;}
.y131{bottom:603.761333pt;}
.y12d{bottom:603.762667pt;}
.y1d0{bottom:607.046400pt;}
.y66{bottom:611.447680pt;}
.y234{bottom:613.537920pt;}
.y291{bottom:613.920000pt;}
.y40{bottom:615.504640pt;}
.yd7{bottom:615.823360pt;}
.y8b{bottom:618.076160pt;}
.y196{bottom:622.320000pt;}
.y1fa{bottom:624.262400pt;}
.yae{bottom:624.445333pt;}
.y270{bottom:624.916480pt;}
.y17{bottom:624.930560pt;}
.y65{bottom:632.894720pt;}
.y126{bottom:633.564000pt;}
.y233{bottom:634.984960pt;}
.y3f{bottom:636.951680pt;}
.yd6{bottom:637.270400pt;}
.y8a{bottom:641.598720pt;}
.y1cf{bottom:644.479360pt;}
.y1f9{bottom:645.709440pt;}
.y26f{bottom:646.363520pt;}
.y16{bottom:646.377600pt;}
.yab{bottom:649.980000pt;}
.y290{bottom:650.557440pt;}
.y64{bottom:654.341760pt;}
.y193{bottom:654.406667pt;}
.y232{bottom:656.432000pt;}
.yd5{bottom:661.264000pt;}
.y124{bottom:663.224000pt;}
.y121{bottom:663.225333pt;}
.y11e{bottom:663.226667pt;}
.y1f8{bottom:667.156480pt;}
.y15{bottom:667.971840pt;}
.y28f{bottom:671.842560pt;}
.y3e{bottom:674.384640pt;}
.ya8{bottom:675.514667pt;}
.y26e{bottom:675.803520pt;}
.y1cc{bottom:678.013333pt;}
.y231{bottom:678.026240pt;}
.y1ce{bottom:678.085120pt;}
.y89{bottom:679.031680pt;}
.yd4{bottom:682.858240pt;}
.y192{bottom:686.492000pt;}
.y1c9{bottom:687.906667pt;}
.y1f7{bottom:688.603520pt;}
.y14{bottom:689.418880pt;}
.y63{bottom:691.774720pt;}
.y28e{bottom:692.803840pt;}
.y3d{bottom:695.831680pt;}
.y26d{bottom:697.250560pt;}
.y88{bottom:700.478720pt;}
.ya5{bottom:701.049333pt;}
.y230{bottom:701.548800pt;}
.yd3{bottom:704.776320pt;}
.y11a{bottom:707.574667pt;}
.y111{bottom:707.577333pt;}
.y10d{bottom:707.578667pt;}
.y1f6{bottom:710.050560pt;}
.y13{bottom:710.865920pt;}
.y62{bottom:713.221760pt;}
.y28d{bottom:713.927040pt;}
.y3c{bottom:717.278720pt;}
.y18f{bottom:718.421333pt;}
.y1c6{bottom:720.569333pt;}
.y22f{bottom:722.995840pt;}
.y26c{bottom:726.690560pt;}
.yd2{bottom:726.856320pt;}
.ya3{bottom:727.212000pt;}
.y1f5{bottom:731.497600pt;}
.y12{bottom:732.312960pt;}
.y28c{bottom:732.960000pt;}
.y61{bottom:734.668800pt;}
.y116{bottom:737.236000pt;}
.y87{bottom:737.911680pt;}
.y3b{bottom:738.872960pt;}
.y22e{bottom:744.442880pt;}
.y24f{bottom:747.483520pt;}
.y26b{bottom:748.137600pt;}
.yd1{bottom:748.774400pt;}
.y18c{bottom:750.508000pt;}
.y1c3{bottom:752.608000pt;}
.y11{bottom:753.760000pt;}
.y60{bottom:756.115840pt;}
.y3a{bottom:760.320000pt;}
.y114{bottom:767.037333pt;}
.y22d{bottom:767.965440pt;}
.y1f4{bottom:768.930560pt;}
.ya2{bottom:769.569920pt;}
.y28b{bottom:773.280000pt;}
.y10{bottom:774.560000pt;}
.y86{bottom:775.344640pt;}
.y5f{bottom:777.562880pt;}
.y26a{bottom:777.577600pt;}
.y189{bottom:782.593333pt;}
.yd0{bottom:784.131840pt;}
.y1c0{bottom:784.645333pt;}
.y22c{bottom:789.412480pt;}
.yf{bottom:790.080000pt;}
.y24e{bottom:790.377600pt;}
.y109{bottom:796.698667pt;}
.y103{bottom:796.700000pt;}
.y85{bottom:796.791680pt;}
.y39{bottom:798.560000pt;}
.ya1{bottom:799.171840pt;}
.ycf{bottom:805.578880pt;}
.y1f3{bottom:806.363520pt;}
.y24d{bottom:811.824640pt;}
.ye{bottom:811.998400pt;}
.y22b{bottom:812.935040pt;}
.y188{bottom:814.522667pt;}
.y5e{bottom:815.157760pt;}
.y1bd{bottom:816.526667pt;}
.y84{bottom:818.238720pt;}
.yce{bottom:827.025920pt;}
.y1f2{bottom:827.810560pt;}
.y269{bottom:828.611840pt;}
.yd{bottom:831.520000pt;}
.y24c{bottom:833.271680pt;}
.y22a{bottom:834.529280pt;}
.y38{bottom:836.480000pt;}
.y5d{bottom:836.604800pt;}
.y83{bottom:839.685760pt;}
.yfd{bottom:841.049333pt;}
.y186{bottom:847.234667pt;}
.y1bb{bottom:848.565333pt;}
.y1f1{bottom:849.257600pt;}
.y268{bottom:850.058880pt;}
.yc{bottom:852.480000pt;}
.y24b{bottom:854.718720pt;}
.y37{bottom:856.632960pt;}
.y5c{bottom:858.051840pt;}
.y82{bottom:861.280000pt;}
.y28a{bottom:862.711680pt;}
.y229{bottom:866.044800pt;}
.ycd{bottom:866.549120pt;}
.yf9{bottom:869.298667pt;}
.yf2{bottom:869.300000pt;}
.yee{bottom:869.301333pt;}
.y1f0{bottom:870.704640pt;}
.yb{bottom:875.840000pt;}
.y36{bottom:878.080000pt;}
.y5b{bottom:879.498880pt;}
.y1b8{bottom:880.602667pt;}
.y289{bottom:884.158720pt;}
.y228{bottom:887.491840pt;}
.ycc{bottom:887.996160pt;}
.y185{bottom:888.000000pt;}
.y1ef{bottom:892.151680pt;}
.y81{bottom:893.440000pt;}
.yf4{bottom:895.853333pt;}
.y35{bottom:898.880000pt;}
.ya{bottom:899.360000pt;}
.y5a{bottom:900.945920pt;}
.y288{bottom:905.605760pt;}
.y184{bottom:908.137600pt;}
.y227{bottom:908.938880pt;}
.ycb{bottom:909.443200pt;}
.y1b5{bottom:912.486667pt;}
.y1ee{bottom:913.598720pt;}
.y34{bottom:914.400000pt;}
.y59{bottom:922.392960pt;}
.y9{bottom:922.720000pt;}
.ye7{bottom:924.525333pt;}
.ye3{bottom:924.526667pt;}
.y80{bottom:929.584640pt;}
.y267{bottom:930.385920pt;}
.yca{bottom:931.037440pt;}
.y24a{bottom:935.045760pt;}
.y33{bottom:936.320000pt;}
.y226{bottom:938.378880pt;}
.y1b1{bottom:945.149333pt;}
.ye5{bottom:945.853333pt;}
.y8{bottom:946.080000pt;}
.y7f{bottom:951.031680pt;}
.y266{bottom:951.832960pt;}
.y32{bottom:956.472960pt;}
.y58{bottom:959.825920pt;}
.y287{bottom:964.485760pt;}
.y7{bottom:968.000000pt;}
.yc9{bottom:970.398720pt;}
.y7e{bottom:972.478720pt;}
.y31{bottom:977.920000pt;}
.y57{bottom:981.272960pt;}
.y6{bottom:983.680000pt;}
.y286{bottom:986.080000pt;}
.ye2{bottom:986.720000pt;}
.yc8{bottom:991.845760pt;}
.y7d{bottom:994.072960pt;}
.y30{bottom:998.720000pt;}
.y5{bottom:1001.600000pt;}
.y56{bottom:1002.720000pt;}
.yc7{bottom:1013.440000pt;}
.y2f{bottom:1014.400000pt;}
.y7c{bottom:1015.520000pt;}
.y4{bottom:1019.033920pt;}
.y3{bottom:1034.080160pt;}
.y2{bottom:1048.953760pt;}
.y1{bottom:1064.000000pt;}
.h17{height:15.958667pt;}
.h19{height:20.761333pt;}
.h18{height:20.762667pt;}
.h3b{height:24.150667pt;}
.h10{height:25.378667pt;}
.h3e{height:25.531458pt;}
.he{height:25.534667pt;}
.h22{height:25.845333pt;}
.h23{height:25.846667pt;}
.h2f{height:25.986667pt;}
.h12{height:26.005333pt;}
.h3a{height:27.117333pt;}
.h35{height:27.422661pt;}
.h25{height:27.681333pt;}
.h24{height:27.682667pt;}
.h1f{height:28.105333pt;}
.h2a{height:29.093333pt;}
.h2d{height:29.094667pt;}
.h2e{height:29.236000pt;}
.h40{height:31.016875pt;}
.h4d{height:31.881333pt;}
.h4b{height:31.882667pt;}
.h55{height:31.901333pt;}
.h56{height:31.902667pt;}
.h45{height:31.929333pt;}
.h48{height:32.037333pt;}
.h4c{height:32.038667pt;}
.h51{height:32.057333pt;}
.h54{height:32.058667pt;}
.h42{height:32.085333pt;}
.h21{height:32.158430pt;}
.h61{height:32.613333pt;}
.h5f{height:32.614667pt;}
.h5d{height:32.773333pt;}
.h5a{height:32.774667pt;}
.h15{height:37.286667pt;}
.h50{height:38.332328pt;}
.h59{height:38.355789pt;}
.h47{height:38.389559pt;}
.h63{height:39.212824pt;}
.h3d{height:39.243012pt;}
.h3f{height:39.243545pt;}
.h38{height:39.969333pt;}
.h1d{height:43.498106pt;}
.h29{height:43.498640pt;}
.h14{height:43.528012pt;}
.h27{height:43.640000pt;}
.h26{height:43.641333pt;}
.h2b{height:43.781333pt;}
.h2c{height:43.782667pt;}
.h16{height:43.954912pt;}
.h1b{height:44.080302pt;}
.hb{height:44.359123pt;}
.h2{height:44.456875pt;}
.h7{height:44.508750pt;}
.h34{height:47.454667pt;}
.h4a{height:48.133048pt;}
.h4e{height:48.133581pt;}
.h53{height:48.162507pt;}
.h57{height:48.163041pt;}
.h44{height:48.204911pt;}
.h11{height:48.247761pt;}
.hf{height:48.754447pt;}
.hd{height:49.169482pt;}
.h5c{height:49.238667pt;}
.h60{height:49.239201pt;}
.h6{height:49.277500pt;}
.h9{height:49.335000pt;}
.hc{height:49.685848pt;}
.h41{height:49.795000pt;}
.h49{height:50.743702pt;}
.h52{height:50.770234pt;}
.h43{height:50.810321pt;}
.h30{height:50.985333pt;}
.h31{height:50.986667pt;}
.h20{height:51.010031pt;}
.h39{height:51.833333pt;}
.h5b{height:51.902959pt;}
.h5e{height:52.093547pt;}
.h5{height:53.562500pt;}
.h3{height:53.625000pt;}
.h1c{height:54.657333pt;}
.h1e{height:54.658667pt;}
.h36{height:57.482667pt;}
.h8{height:61.410000pt;}
.h4{height:62.668125pt;}
.h64{height:62.812500pt;}
.h28{height:88.554667pt;}
.h37{height:92.368000pt;}
.h33{height:105.501333pt;}
.h32{height:105.502667pt;}
.ha{height:189.185333pt;}
.h13{height:199.422667pt;}
.h4f{height:299.798667pt;}
.h58{height:326.866667pt;}
.h46{height:363.200000pt;}
.h1a{height:376.390667pt;}
.h62{height:400.333333pt;}
.h3c{height:824.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:22.804000pt;}
.w12{width:41.782667pt;}
.wd{width:41.784000pt;}
.wb{width:41.924000pt;}
.w13{width:41.925333pt;}
.w25{width:56.285333pt;}
.w4{width:69.312000pt;}
.w5{width:74.006667pt;}
.w6{width:74.008000pt;}
.w1a{width:78.225333pt;}
.w18{width:78.226667pt;}
.w1e{width:78.249333pt;}
.w19{width:93.870667pt;}
.w1b{width:93.872000pt;}
.w22{width:93.873333pt;}
.w1f{width:93.901333pt;}
.w26{width:95.938667pt;}
.wf{width:118.550667pt;}
.w15{width:118.552000pt;}
.wc{width:133.705333pt;}
.w11{width:133.706667pt;}
.w10{width:141.920000pt;}
.w14{width:141.921333pt;}
.w8{width:142.204000pt;}
.wa{width:142.205333pt;}
.w3{width:176.645333pt;}
.w17{width:291.941333pt;}
.w21{width:291.946667pt;}
.w1d{width:292.030667pt;}
.w24{width:322.037333pt;}
.w9{width:359.758667pt;}
.w23{width:477.066667pt;}
.w1c{width:480.000000pt;}
.w20{width:481.133333pt;}
.w27{width:497.866667pt;}
.w16{width:516.410667pt;}
.w7{width:565.454667pt;}
.w2{width:565.628000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:4.537600pt;}
.x12{left:5.632000pt;}
.x2f{left:7.365067pt;}
.x31{left:8.497733pt;}
.x2c{left:10.339867pt;}
.x32{left:11.472133pt;}
.x27{left:13.314000pt;}
.x20{left:15.013333pt;}
.x1c{left:16.004667pt;}
.x23{left:17.420533pt;}
.x34{left:20.112267pt;}
.x2e{left:21.387200pt;}
.x30{left:23.086933pt;}
.x22{left:24.362400pt;}
.x10{left:25.347067pt;}
.x11{left:26.912133pt;}
.xf{left:27.849733pt;}
.x33{left:29.318933pt;}
.x1e{left:30.452400pt;}
.xe{left:31.605600pt;}
.xc{left:33.012933pt;}
.x48{left:35.201600pt;}
.x2d{left:36.542667pt;}
.x58{left:37.575333pt;}
.x1a{left:39.092933pt;}
.x3c{left:40.083867pt;}
.x2b{left:41.074533pt;}
.x50{left:43.495867pt;}
.x57{left:44.610933pt;}
.x35{left:47.731600pt;}
.x24{left:50.140267pt;}
.x36{left:52.830667pt;}
.x28{left:57.080800pt;}
.x39{left:58.496400pt;}
.x38{left:66.144800pt;}
.x29{left:74.360533pt;}
.x37{left:76.908933pt;}
.x2a{left:78.468000pt;}
.x25{left:81.158800pt;}
.x26{left:85.266267pt;}
.x3d{left:89.515333pt;}
.x3e{left:93.339600pt;}
.x3a{left:104.103867pt;}
.x3b{left:107.928133pt;}
.x3{left:113.431840pt;}
.x19{left:128.749333pt;}
.x3f{left:138.150667pt;}
.x17{left:145.370667pt;}
.x55{left:146.308400pt;}
.x59{left:147.946667pt;}
.x13{left:151.196800pt;}
.x54{left:152.742667pt;}
.x5{left:156.459520pt;}
.x51{left:158.346667pt;}
.x4{left:160.640000pt;}
.x44{left:161.573333pt;}
.x45{left:163.806400pt;}
.x21{left:168.740000pt;}
.x4b{left:171.055733pt;}
.x6{left:180.291200pt;}
.x14{left:193.422080pt;}
.x15{left:198.603520pt;}
.x43{left:209.613440pt;}
.x4d{left:213.594880pt;}
.x53{left:215.045120pt;}
.x8{left:233.297920pt;}
.x9{left:236.369333pt;}
.x7{left:243.020133pt;}
.x4a{left:246.400000pt;}
.x18{left:287.573333pt;}
.x16{left:306.560000pt;}
.x42{left:396.807680pt;}
.xb{left:413.016000pt;}
.x1b{left:429.778667pt;}
.x46{left:453.514667pt;}
.x4e{left:454.986667pt;}
.x5b{left:467.040000pt;}
.x1d{left:471.702667pt;}
.x1{left:473.280000pt;}
.x56{left:474.780000pt;}
.xd{left:482.328000pt;}
.x40{left:487.200000pt;}
.x47{left:531.741333pt;}
.x4f{left:533.213333pt;}
.x4c{left:544.000000pt;}
.x1f{left:605.550667pt;}
.x52{left:635.360000pt;}
.x49{left:636.800000pt;}
.x5a{left:645.760000pt;}
.x41{left:655.523200pt;}
.x2{left:680.315200pt;}
}




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