
    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_b517652250016bd2443b9373.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951660;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_01ec7593135f5cb632f6f6c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_3d93d2c81499d66b9e87283b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_b7603dd1996a8a51d32033c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111816;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_c26d39291436832413be5464.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_cee58872ff4ba29d6dafb860.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.526000;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_7bd98915e09aaff73bafba1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.995392px;}
.ls1e{letter-spacing:-0.656208px;}
.ls7d{letter-spacing:-0.324648px;}
.ls7f{letter-spacing:-0.216432px;}
.ls77{letter-spacing:-0.204408px;}
.ls73{letter-spacing:-0.186372px;}
.ls74{letter-spacing:-0.180360px;}
.ls7c{letter-spacing:-0.162324px;}
.ls51{letter-spacing:-0.156312px;}
.ls6b{letter-spacing:-0.150300px;}
.ls57{letter-spacing:-0.144288px;}
.ls6a{letter-spacing:-0.138276px;}
.ls60{letter-spacing:-0.132264px;}
.ls52{letter-spacing:-0.126252px;}
.ls58{letter-spacing:-0.120240px;}
.ls5f{letter-spacing:-0.114228px;}
.ls4e{letter-spacing:-0.108216px;}
.ls3a{letter-spacing:-0.103680px;}
.ls54{letter-spacing:-0.102204px;}
.ls5d{letter-spacing:-0.096192px;}
.ls5c{letter-spacing:-0.090180px;}
.ls65{letter-spacing:-0.084168px;}
.ls78{letter-spacing:-0.078156px;}
.ls71{letter-spacing:-0.072144px;}
.ls6c{letter-spacing:-0.066132px;}
.ls64{letter-spacing:-0.060120px;}
.ls56{letter-spacing:-0.054108px;}
.ls53{letter-spacing:-0.048096px;}
.ls75{letter-spacing:-0.042084px;}
.ls66{letter-spacing:-0.036072px;}
.ls70{letter-spacing:-0.030060px;}
.ls5a{letter-spacing:-0.024048px;}
.ls50{letter-spacing:-0.018036px;}
.ls5e{letter-spacing:-0.012024px;}
.ls4f{letter-spacing:-0.006012px;}
.ls1c{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.006012px;}
.ls4a{letter-spacing:0.012024px;}
.ls6f{letter-spacing:0.018036px;}
.ls62{letter-spacing:0.024048px;}
.ls63{letter-spacing:0.030060px;}
.ls4b{letter-spacing:0.036072px;}
.ls7b{letter-spacing:0.042084px;}
.ls29{letter-spacing:0.053784px;}
.ls79{letter-spacing:0.054108px;}
.ls6d{letter-spacing:0.060120px;}
.ls42{letter-spacing:0.062208px;}
.ls48{letter-spacing:0.066132px;}
.ls4c{letter-spacing:0.072144px;}
.ls25{letter-spacing:0.076032px;}
.ls4d{letter-spacing:0.078156px;}
.ls34{letter-spacing:0.082944px;}
.ls55{letter-spacing:0.084168px;}
.ls59{letter-spacing:0.090180px;}
.ls67{letter-spacing:0.096192px;}
.ls61{letter-spacing:0.102204px;}
.ls18{letter-spacing:0.103680px;}
.ls6e{letter-spacing:0.108216px;}
.ls21{letter-spacing:0.110592px;}
.ls5b{letter-spacing:0.114228px;}
.ls3c{letter-spacing:0.117504px;}
.ls68{letter-spacing:0.120240px;}
.ls3e{letter-spacing:0.124416px;}
.ls76{letter-spacing:0.126252px;}
.ls69{letter-spacing:0.132264px;}
.ls39{letter-spacing:0.138240px;}
.ls72{letter-spacing:0.138276px;}
.ls26{letter-spacing:0.179712px;}
.ls24{letter-spacing:0.180000px;}
.ls7a{letter-spacing:0.180360px;}
.ls3b{letter-spacing:0.186624px;}
.ls32{letter-spacing:0.193536px;}
.ls1a{letter-spacing:0.200448px;}
.ls41{letter-spacing:0.207360px;}
.ls12{letter-spacing:0.214272px;}
.ls1{letter-spacing:0.219960px;}
.ls36{letter-spacing:0.221184px;}
.ls33{letter-spacing:0.228096px;}
.ls11{letter-spacing:0.235008px;}
.ls8{letter-spacing:0.240480px;}
.ls23{letter-spacing:0.241920px;}
.ls27{letter-spacing:0.248832px;}
.ls19{letter-spacing:0.255744px;}
.lse{letter-spacing:0.262656px;}
.ls43{letter-spacing:0.266400px;}
.lsc{letter-spacing:0.269568px;}
.ls45{letter-spacing:0.273600px;}
.ls9{letter-spacing:0.276480px;}
.ls7{letter-spacing:0.282492px;}
.ls1b{letter-spacing:0.283392px;}
.lsa{letter-spacing:0.290304px;}
.ls13{letter-spacing:0.297216px;}
.ls6{letter-spacing:0.301644px;}
.ls15{letter-spacing:0.304128px;}
.ls20{letter-spacing:0.309600px;}
.lsb{letter-spacing:0.311040px;}
.ls5{letter-spacing:0.316008px;}
.lsf{letter-spacing:0.317952px;}
.ls2{letter-spacing:0.320796px;}
.ls10{letter-spacing:0.324864px;}
.ls16{letter-spacing:0.331776px;}
.ls17{letter-spacing:0.338688px;}
.lsd{letter-spacing:0.345600px;}
.ls2f{letter-spacing:0.352512px;}
.ls2c{letter-spacing:0.352656px;}
.ls22{letter-spacing:0.359424px;}
.ls2a{letter-spacing:0.364032px;}
.ls0{letter-spacing:0.366336px;}
.ls2b{letter-spacing:0.369720px;}
.ls4{letter-spacing:0.373320px;}
.ls2d{letter-spacing:0.375408px;}
.ls3f{letter-spacing:0.380160px;}
.ls28{letter-spacing:0.387072px;}
.ls40{letter-spacing:0.393984px;}
.ls2e{letter-spacing:0.400896px;}
.ls46{letter-spacing:0.407808px;}
.ls7e{letter-spacing:0.414720px;}
.ls14{letter-spacing:0.456192px;}
.ls38{letter-spacing:0.495360px;}
.ls1f{letter-spacing:0.498996px;}
.ls3{letter-spacing:0.513360px;}
.ls3d{letter-spacing:0.539136px;}
.ls37{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.541080px;}
.ls35{letter-spacing:30.827520px;}
.ls44{letter-spacing:50.623488px;}
.ls30{letter-spacing:151.380000px;}
.ls31{letter-spacing:151.740000px;}
.ls47{letter-spacing:846.720000px;}
.ls80{letter-spacing:848.972556px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws215{word-spacing:-69.534720px;}
.ws1a5{word-spacing:-69.527808px;}
.ws54{word-spacing:-69.520896px;}
.ws1e2{word-spacing:-69.513984px;}
.ws0{word-spacing:-69.486336px;}
.ws20f{word-spacing:-69.479424px;}
.ws80{word-spacing:-69.472512px;}
.ws194{word-spacing:-69.451776px;}
.ws139{word-spacing:-69.437952px;}
.ws14e{word-spacing:-69.431040px;}
.wsc0{word-spacing:-69.424128px;}
.wsf6{word-spacing:-69.417216px;}
.wsdd{word-spacing:-69.403392px;}
.ws122{word-spacing:-69.348096px;}
.wsdf{word-spacing:-17.819136px;}
.ws4{word-spacing:-17.736192px;}
.ws13a{word-spacing:-17.673984px;}
.ws2a{word-spacing:-17.667072px;}
.wsc5{word-spacing:-17.646336px;}
.ws29{word-spacing:-17.639424px;}
.ws57{word-spacing:-17.611776px;}
.ws5{word-spacing:-17.597952px;}
.ws58{word-spacing:-17.577216px;}
.wsde{word-spacing:-17.549568px;}
.ws55{word-spacing:-17.528832px;}
.ws56{word-spacing:-17.515008px;}
.wsc3{word-spacing:-17.501184px;}
.wsc1{word-spacing:-17.473536px;}
.wsc4{word-spacing:-17.418240px;}
.ws123{word-spacing:-17.362944px;}
.wsc2{word-spacing:-17.176320px;}
.ws2{word-spacing:-15.528996px;}
.ws1f9{word-spacing:-15.036012px;}
.ws1fa{word-spacing:-14.987916px;}
.ws1cf{word-spacing:-14.939820px;}
.ws1ef{word-spacing:-14.885712px;}
.ws1ce{word-spacing:-14.873688px;}
.ws1{word-spacing:-12.271644px;}
.ws3{word-spacing:-12.252492px;}
.ws2b{word-spacing:-6.866424px;}
.ws8d{word-spacing:-4.292352px;}
.wsaf{word-spacing:-4.278528px;}
.ws124{word-spacing:-4.271616px;}
.wscd{word-spacing:-4.250880px;}
.ws186{word-spacing:-4.230144px;}
.ws193{word-spacing:-4.216320px;}
.ws8e{word-spacing:-3.960576px;}
.ws20{word-spacing:-3.932928px;}
.wsbe{word-spacing:-3.912192px;}
.wsfa{word-spacing:-3.905280px;}
.ws8c{word-spacing:-3.898368px;}
.ws82{word-spacing:-3.870720px;}
.ws10{word-spacing:-3.863808px;}
.ws35{word-spacing:-3.843072px;}
.ws14d{word-spacing:-3.587328px;}
.wsb5{word-spacing:-3.566592px;}
.wsa4{word-spacing:-3.559680px;}
.ws177{word-spacing:-3.552768px;}
.wsda{word-spacing:-3.538944px;}
.wsd9{word-spacing:-3.511296px;}
.ws179{word-spacing:-3.220992px;}
.ws1aa{word-spacing:-3.200256px;}
.ws4b{word-spacing:-3.193344px;}
.ws156{word-spacing:-3.186432px;}
.ws89{word-spacing:-3.158784px;}
.wse0{word-spacing:-3.151872px;}
.ws17b{word-spacing:-3.124224px;}
.ws95{word-spacing:-2.833920px;}
.ws1e{word-spacing:-2.827008px;}
.ws14f{word-spacing:-2.820096px;}
.ws69{word-spacing:-2.813184px;}
.ws143{word-spacing:-2.806272px;}
.ws77{word-spacing:-2.799360px;}
.wsb3{word-spacing:-2.792448px;}
.ws144{word-spacing:-2.764800px;}
.ws114{word-spacing:-2.750976px;}
.ws15c{word-spacing:-2.744064px;}
.ws31{word-spacing:-2.495232px;}
.wsba{word-spacing:-2.474496px;}
.ws30{word-spacing:-2.467584px;}
.ws5f{word-spacing:-2.446848px;}
.ws163{word-spacing:-2.439936px;}
.wsf{word-spacing:-2.142720px;}
.ws14c{word-spacing:-2.135808px;}
.ws155{word-spacing:-2.121984px;}
.ws3d{word-spacing:-2.115072px;}
.ws45{word-spacing:-2.108160px;}
.ws12d{word-spacing:-2.101248px;}
.wsa7{word-spacing:-2.094336px;}
.ws4d{word-spacing:-2.087424px;}
.ws4e{word-spacing:-2.080512px;}
.ws19b{word-spacing:-2.073600px;}
.ws197{word-spacing:-2.066688px;}
.ws198{word-spacing:-2.052864px;}
.ws199{word-spacing:-2.032128px;}
.wsa8{word-spacing:-1.880064px;}
.ws125{word-spacing:-1.769472px;}
.wsb1{word-spacing:-1.762560px;}
.ws72{word-spacing:-1.755648px;}
.ws157{word-spacing:-1.748736px;}
.ws15b{word-spacing:-1.741824px;}
.ws86{word-spacing:-1.721088px;}
.ws88{word-spacing:-1.707264px;}
.ws129{word-spacing:-1.700352px;}
.ws87{word-spacing:-1.693440px;}
.ws19a{word-spacing:-1.679616px;}
.ws165{word-spacing:-1.672704px;}
.wsd1{word-spacing:-1.416960px;}
.ws137{word-spacing:-1.410048px;}
.ws6d{word-spacing:-1.403136px;}
.ws13e{word-spacing:-1.396224px;}
.ws44{word-spacing:-1.389312px;}
.ws1b{word-spacing:-1.382400px;}
.ws121{word-spacing:-1.375488px;}
.wsa6{word-spacing:-1.368576px;}
.wseb{word-spacing:-1.361664px;}
.ws9f{word-spacing:-1.354752px;}
.ws17a{word-spacing:-1.347840px;}
.ws10f{word-spacing:-1.340928px;}
.ws166{word-spacing:-1.327104px;}
.wsa5{word-spacing:-1.320192px;}
.ws17{word-spacing:-1.313280px;}
.ws18{word-spacing:-1.292544px;}
.ws164{word-spacing:-1.278720px;}
.ws8b{word-spacing:-1.050624px;}
.ws146{word-spacing:-1.043712px;}
.ws6c{word-spacing:-1.036800px;}
.ws4c{word-spacing:-1.029888px;}
.wsbd{word-spacing:-1.022976px;}
.wsfb{word-spacing:-1.016064px;}
.ws1c{word-spacing:-1.009152px;}
.ws12f{word-spacing:-1.002240px;}
.ws154{word-spacing:-0.974592px;}
.ws1a9{word-spacing:-0.953856px;}
.ws18e{word-spacing:-0.698112px;}
.ws18c{word-spacing:-0.691200px;}
.ws32{word-spacing:-0.677376px;}
.ws175{word-spacing:-0.663552px;}
.ws18b{word-spacing:-0.642816px;}
.wsb{word-spacing:-0.635904px;}
.ws18a{word-spacing:-0.628992px;}
.ws131{word-spacing:-0.622080px;}
.ws25{word-spacing:-0.615168px;}
.ws61{word-spacing:-0.608256px;}
.ws26{word-spacing:-0.559872px;}
.ws20a{word-spacing:-0.408816px;}
.ws1ff{word-spacing:-0.402804px;}
.ws1fe{word-spacing:-0.396792px;}
.ws204{word-spacing:-0.390780px;}
.ws53{word-spacing:-0.386784px;}
.ws21b{word-spacing:-0.384768px;}
.ws148{word-spacing:-0.380160px;}
.ws1ea{word-spacing:-0.378756px;}
.ws1d5{word-spacing:-0.372744px;}
.ws1db{word-spacing:-0.366732px;}
.ws8f{word-spacing:-0.366336px;}
.ws1d7{word-spacing:-0.360720px;}
.ws6e{word-spacing:-0.359424px;}
.ws1ec{word-spacing:-0.354708px;}
.ws1ca{word-spacing:-0.348696px;}
.wse9{word-spacing:-0.345600px;}
.ws202{word-spacing:-0.342684px;}
.wsfc{word-spacing:-0.338688px;}
.ws1b5{word-spacing:-0.336672px;}
.wsca{word-spacing:-0.331776px;}
.ws219{word-spacing:-0.330660px;}
.ws73{word-spacing:-0.324864px;}
.ws213{word-spacing:-0.324648px;}
.ws136{word-spacing:-0.317952px;}
.ws211{word-spacing:-0.312624px;}
.ws27{word-spacing:-0.311040px;}
.wsfd{word-spacing:-0.304128px;}
.ws1da{word-spacing:-0.300600px;}
.ws3f{word-spacing:-0.297216px;}
.ws1d8{word-spacing:-0.294588px;}
.ws1a0{word-spacing:-0.290304px;}
.ws1ed{word-spacing:-0.288576px;}
.ws15d{word-spacing:-0.283392px;}
.ws1df{word-spacing:-0.282564px;}
.ws203{word-spacing:-0.276552px;}
.wsb8{word-spacing:-0.276480px;}
.ws1bd{word-spacing:-0.270540px;}
.ws1b9{word-spacing:-0.264528px;}
.ws9e{word-spacing:-0.262656px;}
.ws1f6{word-spacing:-0.258516px;}
.ws3e{word-spacing:-0.255744px;}
.ws1fb{word-spacing:-0.252504px;}
.ws7b{word-spacing:-0.248832px;}
.ws1e6{word-spacing:-0.246492px;}
.ws7{word-spacing:-0.242172px;}
.ws4a{word-spacing:-0.241920px;}
.ws1f1{word-spacing:-0.240480px;}
.ws1d2{word-spacing:-0.234468px;}
.ws1fc{word-spacing:-0.228456px;}
.ws1e7{word-spacing:-0.222444px;}
.ws1c0{word-spacing:-0.216432px;}
.ws20d{word-spacing:-0.210420px;}
.ws1e1{word-spacing:-0.204408px;}
.ws1e4{word-spacing:-0.198396px;}
.ws209{word-spacing:-0.192384px;}
.ws20e{word-spacing:-0.186372px;}
.ws206{word-spacing:-0.180360px;}
.ws20b{word-spacing:-0.174348px;}
.ws1bc{word-spacing:-0.168336px;}
.ws1b3{word-spacing:-0.162324px;}
.ws1d4{word-spacing:-0.156312px;}
.ws8{word-spacing:-0.156240px;}
.ws9{word-spacing:-0.150300px;}
.ws1c5{word-spacing:-0.144288px;}
.ws1f4{word-spacing:-0.138276px;}
.ws1d9{word-spacing:-0.132264px;}
.ws216{word-spacing:-0.126252px;}
.ws21a{word-spacing:-0.120240px;}
.wsd6{word-spacing:-0.117504px;}
.ws1b8{word-spacing:-0.114228px;}
.ws21c{word-spacing:-0.108216px;}
.ws24{word-spacing:-0.103680px;}
.ws1e5{word-spacing:-0.084168px;}
.ws217{word-spacing:-0.054108px;}
.ws207{word-spacing:-0.036072px;}
.ws218{word-spacing:-0.030060px;}
.ws1c8{word-spacing:-0.024048px;}
.ws51{word-spacing:-0.022752px;}
.ws16a{word-spacing:-0.020736px;}
.ws1e8{word-spacing:-0.018036px;}
.ws1d6{word-spacing:-0.012024px;}
.ws11f{word-spacing:-0.006912px;}
.ws1d3{word-spacing:-0.006012px;}
.ws6{word-spacing:0.000000px;}
.ws1be{word-spacing:0.006012px;}
.ws5b{word-spacing:0.006912px;}
.ws1cb{word-spacing:0.012024px;}
.ws1c6{word-spacing:0.018036px;}
.ws23{word-spacing:0.020736px;}
.ws1c3{word-spacing:0.024048px;}
.ws7a{word-spacing:0.027648px;}
.ws1f2{word-spacing:0.030060px;}
.ws14{word-spacing:0.034560px;}
.ws20c{word-spacing:0.036072px;}
.wsb0{word-spacing:0.041472px;}
.ws212{word-spacing:0.048096px;}
.ws9c{word-spacing:0.048384px;}
.wsa{word-spacing:0.050400px;}
.ws1c4{word-spacing:0.054108px;}
.ws36{word-spacing:0.055296px;}
.ws1f5{word-spacing:0.060120px;}
.ws90{word-spacing:0.062208px;}
.ws1de{word-spacing:0.066132px;}
.wsc6{word-spacing:0.069120px;}
.ws1fd{word-spacing:0.072144px;}
.wsbb{word-spacing:0.076032px;}
.ws1f0{word-spacing:0.078156px;}
.wsbc{word-spacing:0.082944px;}
.ws1bf{word-spacing:0.084168px;}
.ws195{word-spacing:0.086400px;}
.wsec{word-spacing:0.089856px;}
.ws1dd{word-spacing:0.090180px;}
.ws173{word-spacing:0.093600px;}
.ws1b6{word-spacing:0.096192px;}
.wsab{word-spacing:0.096768px;}
.ws1cc{word-spacing:0.102204px;}
.ws16e{word-spacing:0.103680px;}
.ws1b7{word-spacing:0.108216px;}
.ws1ad{word-spacing:0.110592px;}
.ws1c7{word-spacing:0.114228px;}
.ws1a2{word-spacing:0.117504px;}
.ws1e3{word-spacing:0.120240px;}
.ws1e9{word-spacing:0.126252px;}
.ws13b{word-spacing:0.131328px;}
.ws208{word-spacing:0.132264px;}
.ws1bb{word-spacing:0.138276px;}
.ws1c1{word-spacing:0.144288px;}
.ws1d0{word-spacing:0.150300px;}
.ws200{word-spacing:0.156312px;}
.ws201{word-spacing:0.162324px;}
.ws205{word-spacing:0.168336px;}
.ws1d1{word-spacing:0.174348px;}
.ws41{word-spacing:0.179712px;}
.ws1c9{word-spacing:0.180360px;}
.ws1dc{word-spacing:0.186372px;}
.ws1b4{word-spacing:0.192384px;}
.ws1ee{word-spacing:0.198396px;}
.ws1cd{word-spacing:0.204408px;}
.ws1f7{word-spacing:0.210420px;}
.ws1ba{word-spacing:0.216432px;}
.ws1eb{word-spacing:0.222444px;}
.ws1f3{word-spacing:0.228456px;}
.ws1c2{word-spacing:0.234468px;}
.ws1e0{word-spacing:0.240480px;}
.ws1f8{word-spacing:0.246492px;}
.ws210{word-spacing:0.252504px;}
.ws50{word-spacing:0.346968px;}
.wsfe{word-spacing:0.380160px;}
.ws71{word-spacing:0.387072px;}
.ws16d{word-spacing:0.393984px;}
.ws105{word-spacing:0.400896px;}
.wsdb{word-spacing:0.407808px;}
.ws97{word-spacing:0.414720px;}
.ws214{word-spacing:0.414828px;}
.ws70{word-spacing:0.421632px;}
.wsdc{word-spacing:0.435456px;}
.ws1ab{word-spacing:0.442368px;}
.ws134{word-spacing:0.449280px;}
.ws1ac{word-spacing:0.463104px;}
.ws98{word-spacing:0.476928px;}
.ws133{word-spacing:0.483840px;}
.ws9d{word-spacing:0.732672px;}
.wse8{word-spacing:0.739584px;}
.wse5{word-spacing:0.746496px;}
.ws108{word-spacing:0.760320px;}
.ws138{word-spacing:0.767232px;}
.wse6{word-spacing:0.774144px;}
.wsee{word-spacing:0.781056px;}
.ws128{word-spacing:0.787968px;}
.ws5a{word-spacing:0.794880px;}
.ws37{word-spacing:0.801792px;}
.ws2e{word-spacing:0.815616px;}
.ws110{word-spacing:0.829440px;}
.ws39{word-spacing:0.836352px;}
.ws111{word-spacing:0.850176px;}
.wscf{word-spacing:0.891648px;}
.ws2f{word-spacing:0.967680px;}
.wsea{word-spacing:1.092096px;}
.wsf0{word-spacing:1.099008px;}
.ws74{word-spacing:1.105920px;}
.ws101{word-spacing:1.112832px;}
.ws184{word-spacing:1.119744px;}
.ws15{word-spacing:1.126656px;}
.ws109{word-spacing:1.133568px;}
.ws1d{word-spacing:1.140480px;}
.ws81{word-spacing:1.154304px;}
.ws126{word-spacing:1.161216px;}
.ws59{word-spacing:1.181952px;}
.ws127{word-spacing:1.216512px;}
.wsaa{word-spacing:1.451520px;}
.ws14b{word-spacing:1.458432px;}
.ws107{word-spacing:1.465344px;}
.wse4{word-spacing:1.479168px;}
.ws47{word-spacing:1.486080px;}
.wsd8{word-spacing:1.492992px;}
.ws46{word-spacing:1.506816px;}
.wsd0{word-spacing:1.513728px;}
.ws196{word-spacing:1.520640px;}
.ws17c{word-spacing:1.527552px;}
.ws19d{word-spacing:1.534464px;}
.wsf4{word-spacing:1.672704px;}
.ws85{word-spacing:1.804032px;}
.ws113{word-spacing:1.838592px;}
.wsa3{word-spacing:1.852416px;}
.wsb9{word-spacing:1.859328px;}
.ws13{word-spacing:1.866240px;}
.ws12{word-spacing:1.880064px;}
.ws67{word-spacing:1.886976px;}
.ws76{word-spacing:1.893888px;}
.ws1a4{word-spacing:1.900800px;}
.ws18d{word-spacing:1.907712px;}
.ws83{word-spacing:2.184192px;}
.ws18f{word-spacing:2.191104px;}
.ws115{word-spacing:2.198016px;}
.wscc{word-spacing:2.204928px;}
.ws84{word-spacing:2.211840px;}
.ws183{word-spacing:2.218752px;}
.ws5d{word-spacing:2.225664px;}
.wsce{word-spacing:2.232576px;}
.wsae{word-spacing:2.246400px;}
.wsd2{word-spacing:2.260224px;}
.ws16f{word-spacing:2.274048px;}
.ws68{word-spacing:2.287872px;}
.ws130{word-spacing:2.301696px;}
.ws150{word-spacing:2.564352px;}
.wscb{word-spacing:2.571264px;}
.wsbf{word-spacing:2.578176px;}
.ws1f{word-spacing:2.585088px;}
.ws7c{word-spacing:2.592000px;}
.ws28{word-spacing:2.598912px;}
.ws176{word-spacing:2.612736px;}
.ws152{word-spacing:2.619648px;}
.ws153{word-spacing:2.674944px;}
.ws52{word-spacing:2.878128px;}
.ws63{word-spacing:2.903040px;}
.ws12a{word-spacing:2.916864px;}
.wsf9{word-spacing:2.923776px;}
.ws9b{word-spacing:2.930688px;}
.ws1a{word-spacing:2.944512px;}
.ws19{word-spacing:2.951424px;}
.ws104{word-spacing:2.958336px;}
.ws6f{word-spacing:2.965248px;}
.wsf7{word-spacing:2.972160px;}
.ws78{word-spacing:2.985984px;}
.ws1a3{word-spacing:3.006720px;}
.ws79{word-spacing:3.013632px;}
.ws149{word-spacing:3.048192px;}
.ws3b{word-spacing:3.255552px;}
.wsff{word-spacing:3.262464px;}
.ws169{word-spacing:3.269376px;}
.ws15a{word-spacing:3.290112px;}
.ws160{word-spacing:3.297024px;}
.ws7d{word-spacing:3.303936px;}
.wsd5{word-spacing:3.310848px;}
.ws8a{word-spacing:3.317760px;}
.ws92{word-spacing:3.331584px;}
.ws192{word-spacing:3.345408px;}
.ws190{word-spacing:3.352320px;}
.ws3c{word-spacing:3.525120px;}
.ws185{word-spacing:3.642624px;}
.ws187{word-spacing:3.649536px;}
.ws132{word-spacing:3.656448px;}
.wsb6{word-spacing:3.663360px;}
.ws91{word-spacing:3.670272px;}
.ws167{word-spacing:3.677184px;}
.wsac{word-spacing:3.684096px;}
.ws60{word-spacing:3.697920px;}
.wsb4{word-spacing:3.711744px;}
.ws174{word-spacing:3.995136px;}
.ws2c{word-spacing:4.002048px;}
.ws38{word-spacing:4.008960px;}
.wsc7{word-spacing:4.015872px;}
.ws141{word-spacing:4.022784px;}
.ws2d{word-spacing:4.029696px;}
.ws12b{word-spacing:4.043520px;}
.ws162{word-spacing:4.050432px;}
.ws12c{word-spacing:4.057344px;}
.ws181{word-spacing:4.098816px;}
.ws93{word-spacing:4.340736px;}
.ws99{word-spacing:4.361472px;}
.wsd{word-spacing:4.368384px;}
.ws10c{word-spacing:4.382208px;}
.ws159{word-spacing:4.402944px;}
.wse{word-spacing:4.409856px;}
.ws1a7{word-spacing:4.416768px;}
.ws94{word-spacing:4.478976px;}
.wsf1{word-spacing:4.693248px;}
.ws65{word-spacing:4.707072px;}
.wse7{word-spacing:4.720896px;}
.ws9a{word-spacing:4.734720px;}
.ws118{word-spacing:4.741632px;}
.wsc{word-spacing:4.748544px;}
.ws6a{word-spacing:4.755456px;}
.wsa9{word-spacing:4.769280px;}
.ws10b{word-spacing:4.776192px;}
.ws13d{word-spacing:4.783104px;}
.ws10a{word-spacing:4.790016px;}
.ws191{word-spacing:4.796928px;}
.ws13c{word-spacing:4.803840px;}
.ws10d{word-spacing:5.066496px;}
.ws62{word-spacing:5.087232px;}
.wsd3{word-spacing:5.094144px;}
.ws15e{word-spacing:5.135616px;}
.ws15f{word-spacing:5.149440px;}
.ws6b{word-spacing:5.184000px;}
.ws64{word-spacing:5.197824px;}
.ws66{word-spacing:5.204736px;}
.ws96{word-spacing:5.425920px;}
.ws182{word-spacing:5.446656px;}
.wsd4{word-spacing:5.453568px;}
.ws135{word-spacing:5.460480px;}
.ws119{word-spacing:5.467392px;}
.ws49{word-spacing:5.474304px;}
.ws11d{word-spacing:5.515776px;}
.ws11e{word-spacing:5.536512px;}
.ws16b{word-spacing:5.695488px;}
.ws10e{word-spacing:5.792256px;}
.ws17e{word-spacing:5.799168px;}
.ws102{word-spacing:6.158592px;}
.ws151{word-spacing:6.165504px;}
.ws106{word-spacing:6.179328px;}
.ws75{word-spacing:6.200064px;}
.ws1af{word-spacing:6.227712px;}
.ws168{word-spacing:6.518016px;}
.ws22{word-spacing:6.524928px;}
.ws3a{word-spacing:6.531840px;}
.wsad{word-spacing:6.538752px;}
.ws21{word-spacing:6.580224px;}
.ws48{word-spacing:6.587136px;}
.ws1b0{word-spacing:6.600960px;}
.ws100{word-spacing:6.877440px;}
.ws161{word-spacing:6.884352px;}
.wsf8{word-spacing:6.891264px;}
.ws5e{word-spacing:6.905088px;}
.ws147{word-spacing:7.229952px;}
.ws116{word-spacing:7.243776px;}
.ws14a{word-spacing:7.250688px;}
.ws120{word-spacing:7.257600px;}
.ws19f{word-spacing:7.292160px;}
.ws117{word-spacing:7.305984px;}
.wsb7{word-spacing:7.340544px;}
.ws145{word-spacing:7.596288px;}
.ws1a8{word-spacing:7.617024px;}
.wsa0{word-spacing:7.623936px;}
.wsa1{word-spacing:7.630848px;}
.ws34{word-spacing:7.644672px;}
.ws33{word-spacing:7.665408px;}
.ws11c{word-spacing:7.955712px;}
.wsd7{word-spacing:7.962624px;}
.ws1a1{word-spacing:7.997184px;}
.ws178{word-spacing:8.011008px;}
.wse3{word-spacing:8.328960px;}
.wsa2{word-spacing:8.335872px;}
.ws1ae{word-spacing:8.349696px;}
.ws17f{word-spacing:8.356608px;}
.ws170{word-spacing:8.370432px;}
.ws171{word-spacing:8.391168px;}
.ws1a6{word-spacing:8.667648px;}
.wsf2{word-spacing:8.709120px;}
.ws180{word-spacing:8.729856px;}
.ws40{word-spacing:9.054720px;}
.ws142{word-spacing:9.082368px;}
.wsf3{word-spacing:9.089280px;}
.ws42{word-spacing:9.103104px;}
.ws43{word-spacing:9.110016px;}
.ws158{word-spacing:9.137664px;}
.wsed{word-spacing:9.386496px;}
.ws112{word-spacing:9.393408px;}
.ws11b{word-spacing:9.476352px;}
.ws11a{word-spacing:9.504000px;}
.ws19e{word-spacing:9.780480px;}
.ws189{word-spacing:9.808128px;}
.ws188{word-spacing:9.821952px;}
.wsc9{word-spacing:9.842688px;}
.wsc8{word-spacing:9.849600px;}
.ws16c{word-spacing:10.084608px;}
.ws11{word-spacing:10.119168px;}
.ws1b2{word-spacing:10.520064px;}
.ws1b1{word-spacing:10.872576px;}
.ws103{word-spacing:11.570688px;}
.ws13f{word-spacing:11.902464px;}
.wse1{word-spacing:11.937024px;}
.ws16{word-spacing:11.950848px;}
.ws4f{word-spacing:11.957760px;}
.wse2{word-spacing:12.013056px;}
.ws140{word-spacing:12.061440px;}
.ws172{word-spacing:12.358656px;}
.ws12e{word-spacing:13.367808px;}
.wsb2{word-spacing:14.812416px;}
.ws7f{word-spacing:16.229376px;}
.ws7e{word-spacing:16.263936px;}
.wsf5{word-spacing:18.116352px;}
.ws19c{word-spacing:18.800640px;}
.wsef{word-spacing:20.210688px;}
.ws17d{word-spacing:24.530688px;}
.ws5c{word-spacing:153.100800px;}
._0{margin-left:-1.306368px;}
._1{width:1.306368px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.880000px;}
.fs5{font-size:45.000000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs0{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:38.490300px;}
.yca{bottom:90.333756px;}
.y13a{bottom:90.335484px;}
.y145{bottom:90.337212px;}
.yb6{bottom:90.965190px;}
.y63{bottom:92.224182px;}
.ye2{bottom:92.226054px;}
.y43{bottom:93.210282px;}
.y2cb{bottom:97.080543px;}
.y2bd{bottom:97.082253px;}
.y2f3{bottom:97.803342px;}
.y15e{bottom:102.032748px;}
.y1c7{bottom:102.033441px;}
.yfa{bottom:104.197500px;}
.y96{bottom:105.996348px;}
.y186{bottom:106.083030px;}
.y1f{bottom:108.425910px;}
.y80{bottom:110.228220px;}
.y42{bottom:112.560300px;}
.yc9{bottom:113.193468px;}
.y139{bottom:113.195196px;}
.y144{bottom:113.196924px;}
.y2fb{bottom:113.553486px;}
.yb5{bottom:113.824902px;}
.y233{bottom:114.360300px;}
.y297{bottom:114.360498px;}
.y2ca{bottom:114.360534px;}
.y2bc{bottom:114.362244px;}
.y24e{bottom:114.363603px;}
.y62{bottom:114.994038px;}
.ye1{bottom:114.995910px;}
.y2f2{bottom:115.083333px;}
.y1c6{bottom:119.313432px;}
.y26f{bottom:121.831254px;}
.y165{bottom:122.196348px;}
.y281{bottom:122.553450px;}
.y15d{bottom:124.802604px;}
.yf9{bottom:126.967356px;}
.y95{bottom:128.766204px;}
.y185{bottom:128.852886px;}
.y41{bottom:130.470282px;}
.y2fa{bottom:130.833477px;}
.y1e{bottom:131.195766px;}
.y296{bottom:131.640489px;}
.y2c9{bottom:131.640525px;}
.y2bb{bottom:131.642235px;}
.y24d{bottom:131.643594px;}
.y2f1{bottom:132.363324px;}
.y20f{bottom:132.363531px;}
.y7f{bottom:132.998076px;}
.yc8{bottom:135.963324px;}
.y138{bottom:135.965052px;}
.y1c5{bottom:136.503243px;}
.yb4{bottom:136.594758px;}
.y12a{bottom:137.762892px;}
.y61{bottom:137.763894px;}
.ye0{bottom:137.765766px;}
.y26e{bottom:139.111245px;}
.y280{bottom:139.833441px;}
.y232{bottom:140.552937px;}
.y143{bottom:144.966204px;}
.y295{bottom:148.830300px;}
.y2ba{bottom:148.832046px;}
.y24c{bottom:148.833405px;}
.y2f0{bottom:149.643315px;}
.y20e{bottom:149.643522px;}
.y40{bottom:149.820300px;}
.yf8{bottom:149.827068px;}
.y94{bottom:151.625916px;}
.y184{bottom:151.712598px;}
.y1c4{bottom:153.783234px;}
.y1d{bottom:154.055478px;}
.y7e{bottom:155.767932px;}
.y26d{bottom:156.391236px;}
.y15c{bottom:156.663468px;}
.y1eb{bottom:157.110300px;}
.y2f9{bottom:157.113432px;}
.y2c8{bottom:157.830300px;}
.y231{bottom:157.832928px;}
.y137{bottom:158.824764px;}
.yb3{bottom:159.454470px;}
.y129{bottom:160.622604px;}
.ydf{bottom:160.625478px;}
.y3f{bottom:163.863900px;}
.y27f{bottom:166.113396px;}
.y2ef{bottom:166.833126px;}
.y20d{bottom:166.833333px;}
.yc7{bottom:167.824188px;}
.y142{bottom:167.825916px;}
.y60{bottom:169.624758px;}
.yf7{bottom:172.596924px;}
.y2f8{bottom:174.393423px;}
.y183{bottom:174.482454px;}
.y2c7{bottom:175.110300px;}
.y294{bottom:175.110498px;}
.y2b9{bottom:175.112001px;}
.y230{bottom:175.112919px;}
.y24b{bottom:175.113360px;}
.y7d{bottom:178.627644px;}
.y15b{bottom:179.433324px;}
.y1c3{bottom:179.973009px;}
.y136{bottom:181.594620px;}
.yb2{bottom:182.224326px;}
.y26c{bottom:182.581011px;}
.y1ea{bottom:183.300786px;}
.y128{bottom:183.392460px;}
.y27e{bottom:183.393387px;}
.yde{bottom:183.395334px;}
.y20c{bottom:184.113324px;}
.y1c{bottom:185.824758px;}
.y93{bottom:186.365628px;}
.yc6{bottom:190.594044px;}
.y141{bottom:190.595772px;}
.y2c6{bottom:192.390300px;}
.y293{bottom:192.390489px;}
.y22f{bottom:192.392910px;}
.y24a{bottom:192.393351px;}
.y5f{bottom:192.394614px;}
.y2ee{bottom:193.113081px;}
.yf6{bottom:195.456636px;}
.y3e{bottom:196.623324px;}
.y182{bottom:197.252310px;}
.y1c2{bottom:197.253000px;}
.y26b{bottom:199.861002px;}
.y1e9{bottom:200.580777px;}
.y27d{bottom:200.583198px;}
.y2b8{bottom:201.301776px;}
.y20b{bottom:201.393315px;}
.y7c{bottom:201.397500px;}
.y15a{bottom:202.203180px;}
.yb1{bottom:205.084038px;}
.y127{bottom:206.252172px;}
.y1b{bottom:208.684470px;}
.y92{bottom:209.225340px;}
.y292{bottom:209.580300px;}
.y22e{bottom:209.582721px;}
.y249{bottom:209.583162px;}
.y2ed{bottom:210.393072px;}
.yc5{bottom:213.453756px;}
.y135{bottom:213.455484px;}
.y1c1{bottom:214.532991px;}
.y5e{bottom:215.254326px;}
.ydd{bottom:215.254470px;}
.y1a0{bottom:216.965052px;}
.y1e8{bottom:217.860768px;}
.y2f7{bottom:217.863189px;}
.yf5{bottom:218.226492px;}
.y2c5{bottom:218.580300px;}
.y20a{bottom:218.583126px;}
.y3d{bottom:219.393180px;}
.y7b{bottom:224.257212px;}
.y159{bottom:225.062892px;}
.y26a{bottom:226.050777px;}
.y22d{bottom:226.862712px;}
.y27c{bottom:226.863153px;}
.y2b7{bottom:227.581731px;}
.yb0{bottom:227.853894px;}
.y126{bottom:229.022028px;}
.y181{bottom:230.372886px;}
.y1a{bottom:231.454326px;}
.y91{bottom:232.085052px;}
.y2c4{bottom:235.860300px;}
.y291{bottom:235.860498px;}
.y248{bottom:235.863117px;}
.yc4{bottom:236.223612px;}
.y134{bottom:236.225340px;}
.y2ec{bottom:236.582847px;}
.y5d{bottom:238.024182px;}
.ydc{bottom:238.024326px;}
.y1c0{bottom:240.722766px;}
.y111{bottom:241.086204px;}
.y3c{bottom:242.252892px;}
.y269{bottom:243.330768px;}
.y1e7{bottom:244.050543px;}
.y2f6{bottom:244.052964px;}
.y27b{bottom:244.143144px;}
.y2b6{bottom:244.861722px;}
.y209{bottom:244.863081px;}
.y158{bottom:247.832748px;}
.y19f{bottom:248.825916px;}
.yf4{bottom:250.085628px;}
.yaf{bottom:250.713606px;}
.y125{bottom:251.881740px;}
.y22c{bottom:253.052487px;}
.y290{bottom:253.140489px;}
.y180{bottom:253.142742px;}
.y247{bottom:253.143108px;}
.y2eb{bottom:253.862838px;}
.y19{bottom:254.224182px;}
.y90{bottom:254.854908px;}
.y7a{bottom:256.026492px;}
.yc3{bottom:259.083324px;}
.y133{bottom:259.085052px;}
.y268{bottom:260.610759px;}
.y5c{bottom:260.883894px;}
.ydb{bottom:260.884038px;}
.y1e6{bottom:261.330534px;}
.y2f5{bottom:261.332955px;}
.y2c3{bottom:262.050300px;}
.y208{bottom:262.143072px;}
.y110{bottom:263.856060px;}
.y3b{bottom:265.022748px;}
.y1bf{bottom:267.002721px;}
.y28f{bottom:270.330300px;}
.y22b{bottom:270.332478px;}
.y246{bottom:270.332919px;}
.y157{bottom:270.692460px;}
.y2b5{bottom:271.051497px;}
.y19e{bottom:271.595772px;}
.yf3{bottom:272.855484px;}
.yae{bottom:273.483462px;}
.y124{bottom:274.651596px;}
.y17f{bottom:276.002454px;}
.y18{bottom:277.083894px;}
.y1e5{bottom:278.610525px;}
.y79{bottom:278.886204px;}
.y2c2{bottom:279.330300px;}
.y2ea{bottom:280.052613px;}
.yc2{bottom:281.853180px;}
.y132{bottom:281.854908px;}
.y5b{bottom:283.653750px;}
.yda{bottom:283.653894px;}
.y1be{bottom:284.282712px;}
.y267{bottom:286.800534px;}
.y2f4{bottom:287.522730px;}
.y27a{bottom:287.612910px;}
.y3a{bottom:287.882460px;}
.y2b4{bottom:288.331488px;}
.y207{bottom:288.332847px;}
.y8f{bottom:289.594620px;}
.y156{bottom:293.462316px;}
.y19d{bottom:294.455484px;}
.yf2{bottom:295.715196px;}
.y10f{bottom:295.716924px;}
.yad{bottom:296.253318px;}
.y28e{bottom:296.520318px;}
.y22a{bottom:296.522253px;}
.y245{bottom:296.522694px;}
.y2c1{bottom:296.610300px;}
.y2e9{bottom:297.332604px;}
.y123{bottom:297.511308px;}
.y17e{bottom:298.772310px;}
.y17{bottom:299.853750px;}
.y78{bottom:301.656060px;}
.y316{bottom:303.272667px;}
.y266{bottom:304.080525px;}
.yc1{bottom:304.712892px;}
.y131{bottom:304.714620px;}
.y1e4{bottom:304.800300px;}
.y279{bottom:304.802721px;}
.y2b3{bottom:305.611479px;}
.y206{bottom:305.612838px;}
.y5a{bottom:306.513462px;}
.yd9{bottom:306.513606px;}
.y1bd{bottom:310.472487px;}
.y39{bottom:310.652316px;}
.y8e{bottom:312.454332px;}
.y28d{bottom:313.800309px;}
.y229{bottom:313.802244px;}
.y244{bottom:313.802685px;}
.y2e8{bottom:314.612595px;}
.y155{bottom:316.322028px;}
.y19c{bottom:317.225340px;}
.yf1{bottom:318.485052px;}
.y10e{bottom:318.486780px;}
.yac{bottom:319.113030px;}
.y122{bottom:320.281164px;}
.y1e3{bottom:322.080300px;}
.y16{bottom:322.713462px;}
.y205{bottom:322.802649px;}
.y77{bottom:324.515772px;}
.yc0{bottom:327.482748px;}
.y130{bottom:327.484476px;}
.y1bc{bottom:327.752478px;}
.y59{bottom:329.283318px;}
.yd8{bottom:329.283462px;}
.y315{bottom:329.552622px;}
.y265{bottom:330.270300px;}
.y28c{bottom:331.080300px;}
.y228{bottom:331.082235px;}
.y278{bottom:331.082676px;}
.y2b2{bottom:331.801254px;}
.y17d{bottom:331.803030px;}
.y38{bottom:333.512028px;}
.y8d{bottom:335.314044px;}
.y154{bottom:339.091884px;}
.y1e2{bottom:339.360300px;}
.y243{bottom:340.082640px;}
.y19b{bottom:340.085052px;}
.y2e7{bottom:340.802370px;}
.yf0{bottom:341.254908px;}
.y10d{bottom:341.256636px;}
.y15{bottom:345.483318px;}
.y314{bottom:346.832613px;}
.y76{bottom:347.285628px;}
.y264{bottom:347.550300px;}
.y227{bottom:348.362226px;}
.y277{bottom:348.362667px;}
.y2b1{bottom:349.081245px;}
.y204{bottom:349.082604px;}
.ybf{bottom:350.252604px;}
.y12f{bottom:350.254332px;}
.yab{bottom:350.882310px;}
.y121{bottom:352.142028px;}
.yd7{bottom:352.143174px;}
.y1bb{bottom:354.032433px;}
.y17c{bottom:354.662742px;}
.y37{bottom:356.281884px;}
.y28b{bottom:357.270318px;}
.y242{bottom:357.362631px;}
.y2e6{bottom:358.082361px;}
.y8c{bottom:358.083900px;}
.y58{bottom:361.144182px;}
.y153{bottom:361.951596px;}
.y19a{bottom:362.854908px;}
.y313{bottom:364.112604px;}
.y10c{bottom:364.116348px;}
.y263{bottom:364.830300px;}
.y226{bottom:365.552037px;}
.y1e1{bottom:365.552478px;}
.y2b0{bottom:366.361236px;}
.y203{bottom:366.362595px;}
.y14{bottom:368.343030px;}
.y75{bottom:370.145340px;}
.y1ba{bottom:371.312424px;}
.ybe{bottom:373.112316px;}
.y12e{bottom:373.114044px;}
.yef{bottom:373.115772px;}
.yaa{bottom:373.742022px;}
.y28a{bottom:374.550309px;}
.y241{bottom:374.552442px;}
.y120{bottom:374.911884px;}
.yd6{bottom:374.913030px;}
.y2e5{bottom:375.362352px;}
.y17b{bottom:377.432598px;}
.y36{bottom:379.141596px;}
.y8b{bottom:380.943612px;}
.y164{bottom:382.115196px;}
.y1e0{bottom:382.832469px;}
.y2af{bottom:383.551047px;}
.y2c0{bottom:383.552406px;}
.y57{bottom:383.914038px;}
.y152{bottom:384.721452px;}
.y199{bottom:385.714620px;}
.y10b{bottom:386.886204px;}
.y312{bottom:390.302379px;}
.y262{bottom:391.022316px;}
.y13{bottom:391.112886px;}
.y289{bottom:391.830300px;}
.y225{bottom:391.831992px;}
.y240{bottom:391.832433px;}
.y202{bottom:392.552370px;}
.y74{bottom:392.915196px;}
.ybd{bottom:395.882172px;}
.y140{bottom:395.883900px;}
.yee{bottom:395.885628px;}
.ya9{bottom:396.511878px;}
.y1b9{bottom:397.502199px;}
.y11f{bottom:397.681740px;}
.yd5{bottom:397.682886px;}
.y17a{bottom:400.202454px;}
.y2bf{bottom:400.832397px;}
.y2e4{bottom:401.552127px;}
.y35{bottom:401.911452px;}
.y8a{bottom:403.713468px;}
.y12d{bottom:404.883324px;}
.y163{bottom:404.885052px;}
.y56{bottom:406.683894px;}
.y151{bottom:407.581164px;}
.y311{bottom:407.582370px;}
.y261{bottom:408.302307px;}
.y198{bottom:408.484476px;}
.y1df{bottom:409.022244px;}
.y224{bottom:409.111983px;}
.y276{bottom:409.112424px;}
.y10a{bottom:409.745916px;}
.y2ae{bottom:409.831002px;}
.y201{bottom:409.832361px;}
.y12{bottom:413.972598px;}
.y1b8{bottom:414.782190px;}
.y288{bottom:418.020327px;}
.y23f{bottom:418.022208px;}
.y2be{bottom:418.112388px;}
.ybc{bottom:418.741884px;}
.y13f{bottom:418.743612px;}
.yed{bottom:418.745340px;}
.y2e3{bottom:418.832118px;}
.ya8{bottom:419.371590px;}
.y11e{bottom:420.541452px;}
.yd4{bottom:420.542598px;}
.y34{bottom:424.681308px;}
.y73{bottom:424.684476px;}
.y223{bottom:426.301794px;}
.y1de{bottom:426.302235px;}
.y89{bottom:426.573180px;}
.y2ad{bottom:427.110993px;}
.y200{bottom:427.112352px;}
.y12c{bottom:427.743036px;}
.y162{bottom:427.744764px;}
.y55{bottom:429.543606px;}
.y150{bottom:430.351020px;}
.y197{bottom:431.344188px;}
.y109{bottom:432.515772px;}
.y179{bottom:433.323030px;}
.y310{bottom:433.772145px;}
.y260{bottom:434.582262px;}
.y287{bottom:435.300318px;}
.y23e{bottom:435.302199px;}
.y2e2{bottom:436.112109px;}
.y11{bottom:436.742454px;}
.y1b7{bottom:440.971965px;}
.ybb{bottom:441.511740px;}
.yec{bottom:441.515196px;}
.ya7{bottom:442.141446px;}
.y11d{bottom:443.311308px;}
.yd3{bottom:443.312454px;}
.y1dd{bottom:443.582226px;}
.y2ac{bottom:444.300804px;}
.y33{bottom:447.541020px;}
.y72{bottom:447.544188px;}
.y12b{bottom:450.512892px;}
.y161{bottom:450.514620px;}
.y30f{bottom:451.052136px;}
.y25f{bottom:451.862253px;}
.y54{bottom:452.313462px;}
.y286{bottom:452.580309px;}
.y222{bottom:452.581749px;}
.y23d{bottom:452.582190px;}
.y2e1{bottom:453.301920px;}
.y1ff{bottom:453.302127px;}
.y196{bottom:454.114044px;}
.y108{bottom:455.375484px;}
.y178{bottom:456.092886px;}
.y1b6{bottom:458.251956px;}
.y10{bottom:459.602166px;}
.y1dc{bottom:460.862217px;}
.y88{bottom:461.223036px;}
.y14f{bottom:462.211884px;}
.yeb{bottom:464.374908px;}
.y11c{bottom:466.171020px;}
.yd2{bottom:466.172166px;}
.y285{bottom:469.860300px;}
.y221{bottom:469.861740px;}
.y275{bottom:469.862181px;}
.y32{bottom:470.310876px;}
.y71{bottom:470.314044px;}
.y2ab{bottom:470.580759px;}
.y1fe{bottom:470.582118px;}
.yba{bottom:473.372604px;}
.y160{bottom:473.374332px;}
.ya6{bottom:474.002310px;}
.y53{bottom:475.173174px;}
.y1b5{bottom:475.531947px;}
.y195{bottom:476.883900px;}
.y30e{bottom:477.332091px;}
.y25e{bottom:478.052028px;}
.y23c{bottom:478.771965px;}
.y177{bottom:478.952598px;}
.y2e0{bottom:479.581875px;}
.y87{bottom:484.172604px;}
.y14e{bottom:484.981740px;}
.y220{bottom:487.051551px;}
.y1db{bottom:487.051992px;}
.y107{bottom:487.144764px;}
.y2aa{bottom:487.860750px;}
.y11b{bottom:488.940876px;}
.yd1{bottom:488.942022px;}
.yf{bottom:491.371446px;}
.y1b4{bottom:492.811938px;}
.y31{bottom:493.080732px;}
.y70{bottom:493.173756px;}
.y30d{bottom:494.612082px;}
.y25d{bottom:495.332019px;}
.y23b{bottom:496.051956px;}
.yb9{bottom:496.142460px;}
.yea{bottom:496.144188px;}
.y1fd{bottom:496.771893px;}
.ya5{bottom:496.772166px;}
.y2df{bottom:496.861866px;}
.y52{bottom:497.943030px;}
.y194{bottom:499.743612px;}
.y176{bottom:501.722454px;}
.y21f{bottom:504.331542px;}
.y1da{bottom:504.331983px;}
.y2a9{bottom:505.050561px;}
.y86{bottom:506.942460px;}
.y14d{bottom:507.751596px;}
.y106{bottom:510.004476px;}
.y11a{bottom:511.800588px;}
.yd0{bottom:511.801734px;}
.y274{bottom:513.331947px;}
.y2de{bottom:514.051677px;}
.y1fc{bottom:514.051884px;}
.ye{bottom:514.231158px;}
.y6f{bottom:515.943612px;}
.y30{bottom:519.000732px;}
.y1b3{bottom:519.001713px;}
.yb8{bottom:519.002172px;}
.ye9{bottom:519.003900px;}
.ya4{bottom:519.631878px;}
.y30c{bottom:520.801857px;}
.y51{bottom:520.802742px;}
.y25c{bottom:521.521794px;}
.y2a8{bottom:522.330552px;}
.y23a{bottom:522.331911px;}
.y21e{bottom:530.521317px;}
.y1d9{bottom:530.521758px;}
.y14c{bottom:530.611308px;}
.y284{bottom:530.611938px;}
.y2dd{bottom:531.331668px;}
.y1fb{bottom:531.331875px;}
.y193{bottom:531.512892px;}
.y105{bottom:532.774332px;}
.y119{bottom:534.570444px;}
.y175{bottom:534.753174px;}
.y1b2{bottom:536.281704px;}
.yd{bottom:537.001014px;}
.y30b{bottom:538.081848px;}
.y25b{bottom:538.801785px;}
.y6e{bottom:538.803324px;}
.y273{bottom:539.521722px;}
.y2a7{bottom:539.610543px;}
.y239{bottom:539.611902px;}
.y85{bottom:541.682172px;}
.y2f{bottom:541.770588px;}
.yb7{bottom:541.772028px;}
.ye8{bottom:541.773756px;}
.ya3{bottom:542.401734px;}
.ycf{bottom:543.571014px;}
.y50{bottom:543.572598px;}
.y21d{bottom:547.801308px;}
.y1d8{bottom:547.801749px;}
.y1fa{bottom:548.611866px;}
.y14b{bottom:553.381164px;}
.y1b1{bottom:553.471515px;}
.y192{bottom:554.372604px;}
.y104{bottom:555.634044px;}
.y25a{bottom:556.081776px;}
.y238{bottom:556.801713px;}
.y2dc{bottom:557.521443px;}
.y174{bottom:557.612886px;}
.yc{bottom:559.770870px;}
.y6d{bottom:561.573180px;}
.y30a{bottom:564.271623px;}
.y2e{bottom:564.630588px;}
.y84{bottom:564.631740px;}
.ye7{bottom:564.633468px;}
.y21c{bottom:565.081299px;}
.ya2{bottom:565.171590px;}
.y2a6{bottom:565.800318px;}
.y1f9{bottom:565.801677px;}
.yce{bottom:566.430726px;}
.y118{bottom:566.431308px;}
.y4f{bottom:566.432310px;}
.y1d7{bottom:574.081704px;}
.y2db{bottom:574.801434px;}
.y14a{bottom:576.240876px;}
.y191{bottom:577.142460px;}
.y103{bottom:578.403900px;}
.y1b0{bottom:579.751470px;}
.y173{bottom:580.382742px;}
.y309{bottom:581.551614px;}
.y259{bottom:582.271551px;}
.yb{bottom:582.630582px;}
.y2a5{bottom:583.080309px;}
.y1f8{bottom:583.081668px;}
.y6c{bottom:584.432892px;}
.y2d{bottom:587.400444px;}
.y83{bottom:587.401596px;}
.y15f{bottom:587.403324px;}
.ya1{bottom:588.031302px;}
.ycd{bottom:589.200582px;}
.y117{bottom:589.201164px;}
.y4e{bottom:589.202166px;}
.y21b{bottom:591.271074px;}
.y1d6{bottom:591.361695px;}
.y2da{bottom:592.081425px;}
.ye6{bottom:596.402748px;}
.y1af{bottom:597.031461px;}
.y149{bottom:599.010732px;}
.y258{bottom:599.551542px;}
.y190{bottom:600.002172px;}
.y2a4{bottom:600.360300px;}
.y1f7{bottom:600.361659px;}
.y172{bottom:603.242454px;}
.ya{bottom:605.400438px;}
.y308{bottom:607.831569px;}
.y21a{bottom:608.551065px;}
.y283{bottom:608.551506px;}
.y2d9{bottom:609.361416px;}
.y2c{bottom:610.171452px;}
.y102{bottom:610.173180px;}
.ya0{bottom:610.801158px;}
.ycc{bottom:612.060294px;}
.y116{bottom:612.060876px;}
.y4d{bottom:612.061878px;}
.y6b{bottom:616.202172px;}
.y257{bottom:616.831533px;}
.y1d5{bottom:617.551470px;}
.ye5{bottom:619.172604px;}
.y148{bottom:621.870444px;}
.y18f{bottom:622.772028px;}
.y1ae{bottom:623.221236px;}
.y307{bottom:625.111560px;}
.y219{bottom:625.831056px;}
.y171{bottom:626.012310px;}
.y2a3{bottom:626.550507px;}
.y1f6{bottom:626.551434px;}
.y9{bottom:628.260150px;}
.y2b{bottom:633.031164px;}
.y101{bottom:633.032892px;}
.y9f{bottom:633.660870px;}
.y115{bottom:634.830732px;}
.y1d4{bottom:634.831461px;}
.y4c{bottom:634.831734px;}
.y2d8{bottom:635.551191px;}
.y6a{bottom:639.061884px;}
.y1ad{bottom:640.501227px;}
.ye4{bottom:642.032316px;}
.y256{bottom:643.021308px;}
.y2a2{bottom:643.830498px;}
.y1f5{bottom:643.831425px;}
.y147{bottom:644.640300px;}
.y18e{bottom:645.631740px;}
.ycb{bottom:646.710150px;}
.y170{bottom:648.872022px;}
.y306{bottom:651.301335px;}
.y218{bottom:652.020831px;}
.y1d3{bottom:652.111452px;}
.y2d7{bottom:652.831182px;}
.y2a{bottom:655.801020px;}
.y100{bottom:655.802748px;}
.y9e{bottom:656.430726px;}
.y114{bottom:657.690444px;}
.y4b{bottom:657.691446px;}
.y1ac{bottom:657.781218px;}
.y255{bottom:660.301299px;}
.y2a1{bottom:661.110489px;}
.y237{bottom:661.111416px;}
.y69{bottom:661.831740px;}
.ye3{bottom:664.802172px;}
.y8{bottom:666.330300px;}
.y18d{bottom:668.401596px;}
.y305{bottom:668.581326px;}
.y217{bottom:669.300822px;}
.y272{bottom:669.301263px;}
.y1f4{bottom:670.021200px;}
.y2d6{bottom:670.111173px;}
.y16f{bottom:671.641878px;}
.y1ab{bottom:674.971029px;}
.y2a0{bottom:678.300300px;}
.y1d2{bottom:678.301227px;}
.y29{bottom:678.660732px;}
.yff{bottom:678.662460px;}
.y9d{bottom:679.290438px;}
.y4a{bottom:680.461302px;}
.y146{bottom:682.710150px;}
.y68{bottom:684.691452px;}
.y254{bottom:686.491074px;}
.y216{bottom:686.580813px;}
.y282{bottom:686.581254px;}
.y2d5{bottom:687.300984px;}
.y1f3{bottom:687.301191px;}
.y82{bottom:687.661884px;}
.y18c{bottom:691.261308px;}
.y113{bottom:692.340300px;}
.y16e{bottom:694.501590px;}
.y304{bottom:694.771101px;}
.y271{bottom:695.491038px;}
.y1d1{bottom:695.581218px;}
.y1aa{bottom:701.250984px;}
.y28{bottom:701.430588px;}
.yfe{bottom:701.432316px;}
.y49{bottom:703.231158px;}
.y29f{bottom:704.490168px;}
.y1f2{bottom:704.581182px;}
.y67{bottom:707.461308px;}
.y81{bottom:710.431740px;}
.y303{bottom:712.051092px;}
.y215{bottom:712.770588px;}
.y1d0{bottom:712.771029px;}
.y7{bottom:713.400390px;}
.y2d4{bottom:713.490759px;}
.y9c{bottom:714.031164px;}
.y112{bottom:715.290300px;}
.y16d{bottom:717.271446px;}
.y1a9{bottom:718.530975px;}
.y29e{bottom:721.770159px;}
.y236{bottom:721.770993px;}
.y13e{bottom:724.290300px;}
.yfd{bottom:724.292028px;}
.y48{bottom:726.090870px;}
.y302{bottom:729.331083px;}
.y214{bottom:730.050579px;}
.y1cf{bottom:730.051020px;}
.y66{bottom:730.231164px;}
.y6{bottom:730.680381px;}
.y2d3{bottom:730.770750px;}
.y1f1{bottom:730.770957px;}
.y27{bottom:733.291452px;}
.y1a8{bottom:735.720786px;}
.y29d{bottom:739.050150px;}
.y235{bottom:739.050984px;}
.y16c{bottom:740.131158px;}
.y18b{bottom:745.800444px;}
.y13d{bottom:747.060156px;}
.yfc{bottom:747.061884px;}
.y213{bottom:747.330570px;}
.y253{bottom:747.331011px;}
.y2d2{bottom:748.050741px;}
.y1f0{bottom:748.050948px;}
.y47{bottom:748.860726px;}
.y5{bottom:750.930300px;}
.y1a7{bottom:753.000777px;}
.y65{bottom:753.090876px;}
.y9b{bottom:754.801596px;}
.y301{bottom:755.520858px;}
.y26{bottom:756.061308px;}
.y1ce{bottom:756.240795px;}
.y29c{bottom:756.330300px;}
.y16b{bottom:762.901014px;}
.y234{bottom:765.240759px;}
.y2d1{bottom:765.330732px;}
.y1ef{bottom:765.330939px;}
.y18a{bottom:768.660156px;}
.y13c{bottom:769.919868px;}
.yfb{bottom:769.921596px;}
.y46{bottom:771.720438px;}
.y300{bottom:772.800849px;}
.y212{bottom:773.520345px;}
.y1cd{bottom:773.520786px;}
.y64{bottom:775.860732px;}
.y9a{bottom:777.661308px;}
.y25{bottom:778.921020px;}
.y1a6{bottom:779.190552px;}
.y29b{bottom:782.520309px;}
.y2d0{bottom:782.520543px;}
.y1ee{bottom:782.520750px;}
.y16a{bottom:785.670870px;}
.y252{bottom:790.800777px;}
.y189{bottom:791.430012px;}
.y13b{bottom:792.689724px;}
.y1a5{bottom:796.470543px;}
.y2ff{bottom:798.990624px;}
.y211{bottom:799.800300px;}
.y2cf{bottom:799.800534px;}
.y1cc{bottom:799.800741px;}
.y24{bottom:801.690876px;}
.y45{bottom:806.460150px;}
.y270{bottom:808.080768px;}
.y169{bottom:808.530582px;}
.y4{bottom:809.249760px;}
.y99{bottom:812.401020px;}
.y188{bottom:814.289724px;}
.y251{bottom:816.990552px;}
.y210{bottom:817.080300px;}
.y2ce{bottom:817.080525px;}
.y1cb{bottom:817.080732px;}
.y1a4{bottom:822.750498px;}
.y23{bottom:824.550588px;}
.y2fe{bottom:825.270579px;}
.y1ed{bottom:825.990516px;}
.y44{bottom:829.319868px;}
.y168{bottom:831.300438px;}
.y1ca{bottom:834.270543px;}
.y3{bottom:834.990300px;}
.y98{bottom:835.350588px;}
.y187{bottom:837.059580px;}
.y1a3{bottom:840.030489px;}
.y2fd{bottom:842.550570px;}
.y2cd{bottom:843.270300px;}
.y29a{bottom:843.270318px;}
.y1ec{bottom:843.270507px;}
.y22{bottom:847.320444px;}
.y250{bottom:851.550534px;}
.y167{bottom:854.160150px;}
.y1a2{bottom:857.220300px;}
.y2cc{bottom:860.550150px;}
.y299{bottom:860.550309px;}
.y1c9{bottom:860.550498px;}
.y2fc{bottom:868.740345px;}
.y97{bottom:870.090300px;}
.y21{bottom:870.180156px;}
.y24f{bottom:877.740309px;}
.y298{bottom:877.830300px;}
.y1c8{bottom:877.830489px;}
.y166{bottom:892.230300px;}
.y20{bottom:892.950012px;}
.y1a1{bottom:892.950300px;}
.y2{bottom:895.020300px;}
.h9{height:39.389766px;}
.ha{height:51.269766px;}
.h2{height:52.751777px;}
.h4{height:52.898555px;}
.hc{height:53.397598px;}
.h1{height:60.648750px;}
.hb{height:60.649878px;}
.h6{height:60.817500px;}
.h5{height:63.175781px;}
.h7{height:66.480255px;}
.h8{height:66.483711px;}
.h3{height:68.545723px;}
.h0{height:994.500000px;}
.w0{width:663.000000px;}
.x0{left:0.000000px;}
.x8{left:85.050000px;}
.xc{left:112.050000px;}
.xa{left:127.620000px;}
.xd{left:139.050000px;}
.xb{left:148.860576px;}
.x3{left:162.180000px;}
.x4{left:233.280918px;}
.x1{left:298.800000px;}
.x9{left:301.049280px;}
.x5{left:362.610000px;}
.x6{left:432.539982px;}
.x2{left:498.150000px;}
.x7{left:578.340000px;}
@media print{
.v2{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.995904pt;}
.ls1e{letter-spacing:-0.583296pt;}
.ls7d{letter-spacing:-0.288576pt;}
.ls7f{letter-spacing:-0.192384pt;}
.ls77{letter-spacing:-0.181696pt;}
.ls73{letter-spacing:-0.165664pt;}
.ls74{letter-spacing:-0.160320pt;}
.ls7c{letter-spacing:-0.144288pt;}
.ls51{letter-spacing:-0.138944pt;}
.ls6b{letter-spacing:-0.133600pt;}
.ls57{letter-spacing:-0.128256pt;}
.ls6a{letter-spacing:-0.122912pt;}
.ls60{letter-spacing:-0.117568pt;}
.ls52{letter-spacing:-0.112224pt;}
.ls58{letter-spacing:-0.106880pt;}
.ls5f{letter-spacing:-0.101536pt;}
.ls4e{letter-spacing:-0.096192pt;}
.ls3a{letter-spacing:-0.092160pt;}
.ls54{letter-spacing:-0.090848pt;}
.ls5d{letter-spacing:-0.085504pt;}
.ls5c{letter-spacing:-0.080160pt;}
.ls65{letter-spacing:-0.074816pt;}
.ls78{letter-spacing:-0.069472pt;}
.ls71{letter-spacing:-0.064128pt;}
.ls6c{letter-spacing:-0.058784pt;}
.ls64{letter-spacing:-0.053440pt;}
.ls56{letter-spacing:-0.048096pt;}
.ls53{letter-spacing:-0.042752pt;}
.ls75{letter-spacing:-0.037408pt;}
.ls66{letter-spacing:-0.032064pt;}
.ls70{letter-spacing:-0.026720pt;}
.ls5a{letter-spacing:-0.021376pt;}
.ls50{letter-spacing:-0.016032pt;}
.ls5e{letter-spacing:-0.010688pt;}
.ls4f{letter-spacing:-0.005344pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.005344pt;}
.ls4a{letter-spacing:0.010688pt;}
.ls6f{letter-spacing:0.016032pt;}
.ls62{letter-spacing:0.021376pt;}
.ls63{letter-spacing:0.026720pt;}
.ls4b{letter-spacing:0.032064pt;}
.ls7b{letter-spacing:0.037408pt;}
.ls29{letter-spacing:0.047808pt;}
.ls79{letter-spacing:0.048096pt;}
.ls6d{letter-spacing:0.053440pt;}
.ls42{letter-spacing:0.055296pt;}
.ls48{letter-spacing:0.058784pt;}
.ls4c{letter-spacing:0.064128pt;}
.ls25{letter-spacing:0.067584pt;}
.ls4d{letter-spacing:0.069472pt;}
.ls34{letter-spacing:0.073728pt;}
.ls55{letter-spacing:0.074816pt;}
.ls59{letter-spacing:0.080160pt;}
.ls67{letter-spacing:0.085504pt;}
.ls61{letter-spacing:0.090848pt;}
.ls18{letter-spacing:0.092160pt;}
.ls6e{letter-spacing:0.096192pt;}
.ls21{letter-spacing:0.098304pt;}
.ls5b{letter-spacing:0.101536pt;}
.ls3c{letter-spacing:0.104448pt;}
.ls68{letter-spacing:0.106880pt;}
.ls3e{letter-spacing:0.110592pt;}
.ls76{letter-spacing:0.112224pt;}
.ls69{letter-spacing:0.117568pt;}
.ls39{letter-spacing:0.122880pt;}
.ls72{letter-spacing:0.122912pt;}
.ls26{letter-spacing:0.159744pt;}
.ls24{letter-spacing:0.160000pt;}
.ls7a{letter-spacing:0.160320pt;}
.ls3b{letter-spacing:0.165888pt;}
.ls32{letter-spacing:0.172032pt;}
.ls1a{letter-spacing:0.178176pt;}
.ls41{letter-spacing:0.184320pt;}
.ls12{letter-spacing:0.190464pt;}
.ls1{letter-spacing:0.195520pt;}
.ls36{letter-spacing:0.196608pt;}
.ls33{letter-spacing:0.202752pt;}
.ls11{letter-spacing:0.208896pt;}
.ls8{letter-spacing:0.213760pt;}
.ls23{letter-spacing:0.215040pt;}
.ls27{letter-spacing:0.221184pt;}
.ls19{letter-spacing:0.227328pt;}
.lse{letter-spacing:0.233472pt;}
.ls43{letter-spacing:0.236800pt;}
.lsc{letter-spacing:0.239616pt;}
.ls45{letter-spacing:0.243200pt;}
.ls9{letter-spacing:0.245760pt;}
.ls7{letter-spacing:0.251104pt;}
.ls1b{letter-spacing:0.251904pt;}
.lsa{letter-spacing:0.258048pt;}
.ls13{letter-spacing:0.264192pt;}
.ls6{letter-spacing:0.268128pt;}
.ls15{letter-spacing:0.270336pt;}
.ls20{letter-spacing:0.275200pt;}
.lsb{letter-spacing:0.276480pt;}
.ls5{letter-spacing:0.280896pt;}
.lsf{letter-spacing:0.282624pt;}
.ls2{letter-spacing:0.285152pt;}
.ls10{letter-spacing:0.288768pt;}
.ls16{letter-spacing:0.294912pt;}
.ls17{letter-spacing:0.301056pt;}
.lsd{letter-spacing:0.307200pt;}
.ls2f{letter-spacing:0.313344pt;}
.ls2c{letter-spacing:0.313472pt;}
.ls22{letter-spacing:0.319488pt;}
.ls2a{letter-spacing:0.323584pt;}
.ls0{letter-spacing:0.325632pt;}
.ls2b{letter-spacing:0.328640pt;}
.ls4{letter-spacing:0.331840pt;}
.ls2d{letter-spacing:0.333696pt;}
.ls3f{letter-spacing:0.337920pt;}
.ls28{letter-spacing:0.344064pt;}
.ls40{letter-spacing:0.350208pt;}
.ls2e{letter-spacing:0.356352pt;}
.ls46{letter-spacing:0.362496pt;}
.ls7e{letter-spacing:0.368640pt;}
.ls14{letter-spacing:0.405504pt;}
.ls38{letter-spacing:0.440320pt;}
.ls1f{letter-spacing:0.443552pt;}
.ls3{letter-spacing:0.456320pt;}
.ls3d{letter-spacing:0.479232pt;}
.ls37{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.480960pt;}
.ls35{letter-spacing:27.402240pt;}
.ls44{letter-spacing:44.998656pt;}
.ls30{letter-spacing:134.560000pt;}
.ls31{letter-spacing:134.880000pt;}
.ls47{letter-spacing:752.640000pt;}
.ls80{letter-spacing:754.642272pt;}
.ws215{word-spacing:-61.808640pt;}
.ws1a5{word-spacing:-61.802496pt;}
.ws54{word-spacing:-61.796352pt;}
.ws1e2{word-spacing:-61.790208pt;}
.ws0{word-spacing:-61.765632pt;}
.ws20f{word-spacing:-61.759488pt;}
.ws80{word-spacing:-61.753344pt;}
.ws194{word-spacing:-61.734912pt;}
.ws139{word-spacing:-61.722624pt;}
.ws14e{word-spacing:-61.716480pt;}
.wsc0{word-spacing:-61.710336pt;}
.wsf6{word-spacing:-61.704192pt;}
.wsdd{word-spacing:-61.691904pt;}
.ws122{word-spacing:-61.642752pt;}
.wsdf{word-spacing:-15.839232pt;}
.ws4{word-spacing:-15.765504pt;}
.ws13a{word-spacing:-15.710208pt;}
.ws2a{word-spacing:-15.704064pt;}
.wsc5{word-spacing:-15.685632pt;}
.ws29{word-spacing:-15.679488pt;}
.ws57{word-spacing:-15.654912pt;}
.ws5{word-spacing:-15.642624pt;}
.ws58{word-spacing:-15.624192pt;}
.wsde{word-spacing:-15.599616pt;}
.ws55{word-spacing:-15.581184pt;}
.ws56{word-spacing:-15.568896pt;}
.wsc3{word-spacing:-15.556608pt;}
.wsc1{word-spacing:-15.532032pt;}
.wsc4{word-spacing:-15.482880pt;}
.ws123{word-spacing:-15.433728pt;}
.wsc2{word-spacing:-15.267840pt;}
.ws2{word-spacing:-13.803552pt;}
.ws1f9{word-spacing:-13.365344pt;}
.ws1fa{word-spacing:-13.322592pt;}
.ws1cf{word-spacing:-13.279840pt;}
.ws1ef{word-spacing:-13.231744pt;}
.ws1ce{word-spacing:-13.221056pt;}
.ws1{word-spacing:-10.908128pt;}
.ws3{word-spacing:-10.891104pt;}
.ws2b{word-spacing:-6.103488pt;}
.ws8d{word-spacing:-3.815424pt;}
.wsaf{word-spacing:-3.803136pt;}
.ws124{word-spacing:-3.796992pt;}
.wscd{word-spacing:-3.778560pt;}
.ws186{word-spacing:-3.760128pt;}
.ws193{word-spacing:-3.747840pt;}
.ws8e{word-spacing:-3.520512pt;}
.ws20{word-spacing:-3.495936pt;}
.wsbe{word-spacing:-3.477504pt;}
.wsfa{word-spacing:-3.471360pt;}
.ws8c{word-spacing:-3.465216pt;}
.ws82{word-spacing:-3.440640pt;}
.ws10{word-spacing:-3.434496pt;}
.ws35{word-spacing:-3.416064pt;}
.ws14d{word-spacing:-3.188736pt;}
.wsb5{word-spacing:-3.170304pt;}
.wsa4{word-spacing:-3.164160pt;}
.ws177{word-spacing:-3.158016pt;}
.wsda{word-spacing:-3.145728pt;}
.wsd9{word-spacing:-3.121152pt;}
.ws179{word-spacing:-2.863104pt;}
.ws1aa{word-spacing:-2.844672pt;}
.ws4b{word-spacing:-2.838528pt;}
.ws156{word-spacing:-2.832384pt;}
.ws89{word-spacing:-2.807808pt;}
.wse0{word-spacing:-2.801664pt;}
.ws17b{word-spacing:-2.777088pt;}
.ws95{word-spacing:-2.519040pt;}
.ws1e{word-spacing:-2.512896pt;}
.ws14f{word-spacing:-2.506752pt;}
.ws69{word-spacing:-2.500608pt;}
.ws143{word-spacing:-2.494464pt;}
.ws77{word-spacing:-2.488320pt;}
.wsb3{word-spacing:-2.482176pt;}
.ws144{word-spacing:-2.457600pt;}
.ws114{word-spacing:-2.445312pt;}
.ws15c{word-spacing:-2.439168pt;}
.ws31{word-spacing:-2.217984pt;}
.wsba{word-spacing:-2.199552pt;}
.ws30{word-spacing:-2.193408pt;}
.ws5f{word-spacing:-2.174976pt;}
.ws163{word-spacing:-2.168832pt;}
.wsf{word-spacing:-1.904640pt;}
.ws14c{word-spacing:-1.898496pt;}
.ws155{word-spacing:-1.886208pt;}
.ws3d{word-spacing:-1.880064pt;}
.ws45{word-spacing:-1.873920pt;}
.ws12d{word-spacing:-1.867776pt;}
.wsa7{word-spacing:-1.861632pt;}
.ws4d{word-spacing:-1.855488pt;}
.ws4e{word-spacing:-1.849344pt;}
.ws19b{word-spacing:-1.843200pt;}
.ws197{word-spacing:-1.837056pt;}
.ws198{word-spacing:-1.824768pt;}
.ws199{word-spacing:-1.806336pt;}
.wsa8{word-spacing:-1.671168pt;}
.ws125{word-spacing:-1.572864pt;}
.wsb1{word-spacing:-1.566720pt;}
.ws72{word-spacing:-1.560576pt;}
.ws157{word-spacing:-1.554432pt;}
.ws15b{word-spacing:-1.548288pt;}
.ws86{word-spacing:-1.529856pt;}
.ws88{word-spacing:-1.517568pt;}
.ws129{word-spacing:-1.511424pt;}
.ws87{word-spacing:-1.505280pt;}
.ws19a{word-spacing:-1.492992pt;}
.ws165{word-spacing:-1.486848pt;}
.wsd1{word-spacing:-1.259520pt;}
.ws137{word-spacing:-1.253376pt;}
.ws6d{word-spacing:-1.247232pt;}
.ws13e{word-spacing:-1.241088pt;}
.ws44{word-spacing:-1.234944pt;}
.ws1b{word-spacing:-1.228800pt;}
.ws121{word-spacing:-1.222656pt;}
.wsa6{word-spacing:-1.216512pt;}
.wseb{word-spacing:-1.210368pt;}
.ws9f{word-spacing:-1.204224pt;}
.ws17a{word-spacing:-1.198080pt;}
.ws10f{word-spacing:-1.191936pt;}
.ws166{word-spacing:-1.179648pt;}
.wsa5{word-spacing:-1.173504pt;}
.ws17{word-spacing:-1.167360pt;}
.ws18{word-spacing:-1.148928pt;}
.ws164{word-spacing:-1.136640pt;}
.ws8b{word-spacing:-0.933888pt;}
.ws146{word-spacing:-0.927744pt;}
.ws6c{word-spacing:-0.921600pt;}
.ws4c{word-spacing:-0.915456pt;}
.wsbd{word-spacing:-0.909312pt;}
.wsfb{word-spacing:-0.903168pt;}
.ws1c{word-spacing:-0.897024pt;}
.ws12f{word-spacing:-0.890880pt;}
.ws154{word-spacing:-0.866304pt;}
.ws1a9{word-spacing:-0.847872pt;}
.ws18e{word-spacing:-0.620544pt;}
.ws18c{word-spacing:-0.614400pt;}
.ws32{word-spacing:-0.602112pt;}
.ws175{word-spacing:-0.589824pt;}
.ws18b{word-spacing:-0.571392pt;}
.wsb{word-spacing:-0.565248pt;}
.ws18a{word-spacing:-0.559104pt;}
.ws131{word-spacing:-0.552960pt;}
.ws25{word-spacing:-0.546816pt;}
.ws61{word-spacing:-0.540672pt;}
.ws26{word-spacing:-0.497664pt;}
.ws20a{word-spacing:-0.363392pt;}
.ws1ff{word-spacing:-0.358048pt;}
.ws1fe{word-spacing:-0.352704pt;}
.ws204{word-spacing:-0.347360pt;}
.ws53{word-spacing:-0.343808pt;}
.ws21b{word-spacing:-0.342016pt;}
.ws148{word-spacing:-0.337920pt;}
.ws1ea{word-spacing:-0.336672pt;}
.ws1d5{word-spacing:-0.331328pt;}
.ws1db{word-spacing:-0.325984pt;}
.ws8f{word-spacing:-0.325632pt;}
.ws1d7{word-spacing:-0.320640pt;}
.ws6e{word-spacing:-0.319488pt;}
.ws1ec{word-spacing:-0.315296pt;}
.ws1ca{word-spacing:-0.309952pt;}
.wse9{word-spacing:-0.307200pt;}
.ws202{word-spacing:-0.304608pt;}
.wsfc{word-spacing:-0.301056pt;}
.ws1b5{word-spacing:-0.299264pt;}
.wsca{word-spacing:-0.294912pt;}
.ws219{word-spacing:-0.293920pt;}
.ws73{word-spacing:-0.288768pt;}
.ws213{word-spacing:-0.288576pt;}
.ws136{word-spacing:-0.282624pt;}
.ws211{word-spacing:-0.277888pt;}
.ws27{word-spacing:-0.276480pt;}
.wsfd{word-spacing:-0.270336pt;}
.ws1da{word-spacing:-0.267200pt;}
.ws3f{word-spacing:-0.264192pt;}
.ws1d8{word-spacing:-0.261856pt;}
.ws1a0{word-spacing:-0.258048pt;}
.ws1ed{word-spacing:-0.256512pt;}
.ws15d{word-spacing:-0.251904pt;}
.ws1df{word-spacing:-0.251168pt;}
.ws203{word-spacing:-0.245824pt;}
.wsb8{word-spacing:-0.245760pt;}
.ws1bd{word-spacing:-0.240480pt;}
.ws1b9{word-spacing:-0.235136pt;}
.ws9e{word-spacing:-0.233472pt;}
.ws1f6{word-spacing:-0.229792pt;}
.ws3e{word-spacing:-0.227328pt;}
.ws1fb{word-spacing:-0.224448pt;}
.ws7b{word-spacing:-0.221184pt;}
.ws1e6{word-spacing:-0.219104pt;}
.ws7{word-spacing:-0.215264pt;}
.ws4a{word-spacing:-0.215040pt;}
.ws1f1{word-spacing:-0.213760pt;}
.ws1d2{word-spacing:-0.208416pt;}
.ws1fc{word-spacing:-0.203072pt;}
.ws1e7{word-spacing:-0.197728pt;}
.ws1c0{word-spacing:-0.192384pt;}
.ws20d{word-spacing:-0.187040pt;}
.ws1e1{word-spacing:-0.181696pt;}
.ws1e4{word-spacing:-0.176352pt;}
.ws209{word-spacing:-0.171008pt;}
.ws20e{word-spacing:-0.165664pt;}
.ws206{word-spacing:-0.160320pt;}
.ws20b{word-spacing:-0.154976pt;}
.ws1bc{word-spacing:-0.149632pt;}
.ws1b3{word-spacing:-0.144288pt;}
.ws1d4{word-spacing:-0.138944pt;}
.ws8{word-spacing:-0.138880pt;}
.ws9{word-spacing:-0.133600pt;}
.ws1c5{word-spacing:-0.128256pt;}
.ws1f4{word-spacing:-0.122912pt;}
.ws1d9{word-spacing:-0.117568pt;}
.ws216{word-spacing:-0.112224pt;}
.ws21a{word-spacing:-0.106880pt;}
.wsd6{word-spacing:-0.104448pt;}
.ws1b8{word-spacing:-0.101536pt;}
.ws21c{word-spacing:-0.096192pt;}
.ws24{word-spacing:-0.092160pt;}
.ws1e5{word-spacing:-0.074816pt;}
.ws217{word-spacing:-0.048096pt;}
.ws207{word-spacing:-0.032064pt;}
.ws218{word-spacing:-0.026720pt;}
.ws1c8{word-spacing:-0.021376pt;}
.ws51{word-spacing:-0.020224pt;}
.ws16a{word-spacing:-0.018432pt;}
.ws1e8{word-spacing:-0.016032pt;}
.ws1d6{word-spacing:-0.010688pt;}
.ws11f{word-spacing:-0.006144pt;}
.ws1d3{word-spacing:-0.005344pt;}
.ws6{word-spacing:0.000000pt;}
.ws1be{word-spacing:0.005344pt;}
.ws5b{word-spacing:0.006144pt;}
.ws1cb{word-spacing:0.010688pt;}
.ws1c6{word-spacing:0.016032pt;}
.ws23{word-spacing:0.018432pt;}
.ws1c3{word-spacing:0.021376pt;}
.ws7a{word-spacing:0.024576pt;}
.ws1f2{word-spacing:0.026720pt;}
.ws14{word-spacing:0.030720pt;}
.ws20c{word-spacing:0.032064pt;}
.wsb0{word-spacing:0.036864pt;}
.ws212{word-spacing:0.042752pt;}
.ws9c{word-spacing:0.043008pt;}
.wsa{word-spacing:0.044800pt;}
.ws1c4{word-spacing:0.048096pt;}
.ws36{word-spacing:0.049152pt;}
.ws1f5{word-spacing:0.053440pt;}
.ws90{word-spacing:0.055296pt;}
.ws1de{word-spacing:0.058784pt;}
.wsc6{word-spacing:0.061440pt;}
.ws1fd{word-spacing:0.064128pt;}
.wsbb{word-spacing:0.067584pt;}
.ws1f0{word-spacing:0.069472pt;}
.wsbc{word-spacing:0.073728pt;}
.ws1bf{word-spacing:0.074816pt;}
.ws195{word-spacing:0.076800pt;}
.wsec{word-spacing:0.079872pt;}
.ws1dd{word-spacing:0.080160pt;}
.ws173{word-spacing:0.083200pt;}
.ws1b6{word-spacing:0.085504pt;}
.wsab{word-spacing:0.086016pt;}
.ws1cc{word-spacing:0.090848pt;}
.ws16e{word-spacing:0.092160pt;}
.ws1b7{word-spacing:0.096192pt;}
.ws1ad{word-spacing:0.098304pt;}
.ws1c7{word-spacing:0.101536pt;}
.ws1a2{word-spacing:0.104448pt;}
.ws1e3{word-spacing:0.106880pt;}
.ws1e9{word-spacing:0.112224pt;}
.ws13b{word-spacing:0.116736pt;}
.ws208{word-spacing:0.117568pt;}
.ws1bb{word-spacing:0.122912pt;}
.ws1c1{word-spacing:0.128256pt;}
.ws1d0{word-spacing:0.133600pt;}
.ws200{word-spacing:0.138944pt;}
.ws201{word-spacing:0.144288pt;}
.ws205{word-spacing:0.149632pt;}
.ws1d1{word-spacing:0.154976pt;}
.ws41{word-spacing:0.159744pt;}
.ws1c9{word-spacing:0.160320pt;}
.ws1dc{word-spacing:0.165664pt;}
.ws1b4{word-spacing:0.171008pt;}
.ws1ee{word-spacing:0.176352pt;}
.ws1cd{word-spacing:0.181696pt;}
.ws1f7{word-spacing:0.187040pt;}
.ws1ba{word-spacing:0.192384pt;}
.ws1eb{word-spacing:0.197728pt;}
.ws1f3{word-spacing:0.203072pt;}
.ws1c2{word-spacing:0.208416pt;}
.ws1e0{word-spacing:0.213760pt;}
.ws1f8{word-spacing:0.219104pt;}
.ws210{word-spacing:0.224448pt;}
.ws50{word-spacing:0.308416pt;}
.wsfe{word-spacing:0.337920pt;}
.ws71{word-spacing:0.344064pt;}
.ws16d{word-spacing:0.350208pt;}
.ws105{word-spacing:0.356352pt;}
.wsdb{word-spacing:0.362496pt;}
.ws97{word-spacing:0.368640pt;}
.ws214{word-spacing:0.368736pt;}
.ws70{word-spacing:0.374784pt;}
.wsdc{word-spacing:0.387072pt;}
.ws1ab{word-spacing:0.393216pt;}
.ws134{word-spacing:0.399360pt;}
.ws1ac{word-spacing:0.411648pt;}
.ws98{word-spacing:0.423936pt;}
.ws133{word-spacing:0.430080pt;}
.ws9d{word-spacing:0.651264pt;}
.wse8{word-spacing:0.657408pt;}
.wse5{word-spacing:0.663552pt;}
.ws108{word-spacing:0.675840pt;}
.ws138{word-spacing:0.681984pt;}
.wse6{word-spacing:0.688128pt;}
.wsee{word-spacing:0.694272pt;}
.ws128{word-spacing:0.700416pt;}
.ws5a{word-spacing:0.706560pt;}
.ws37{word-spacing:0.712704pt;}
.ws2e{word-spacing:0.724992pt;}
.ws110{word-spacing:0.737280pt;}
.ws39{word-spacing:0.743424pt;}
.ws111{word-spacing:0.755712pt;}
.wscf{word-spacing:0.792576pt;}
.ws2f{word-spacing:0.860160pt;}
.wsea{word-spacing:0.970752pt;}
.wsf0{word-spacing:0.976896pt;}
.ws74{word-spacing:0.983040pt;}
.ws101{word-spacing:0.989184pt;}
.ws184{word-spacing:0.995328pt;}
.ws15{word-spacing:1.001472pt;}
.ws109{word-spacing:1.007616pt;}
.ws1d{word-spacing:1.013760pt;}
.ws81{word-spacing:1.026048pt;}
.ws126{word-spacing:1.032192pt;}
.ws59{word-spacing:1.050624pt;}
.ws127{word-spacing:1.081344pt;}
.wsaa{word-spacing:1.290240pt;}
.ws14b{word-spacing:1.296384pt;}
.ws107{word-spacing:1.302528pt;}
.wse4{word-spacing:1.314816pt;}
.ws47{word-spacing:1.320960pt;}
.wsd8{word-spacing:1.327104pt;}
.ws46{word-spacing:1.339392pt;}
.wsd0{word-spacing:1.345536pt;}
.ws196{word-spacing:1.351680pt;}
.ws17c{word-spacing:1.357824pt;}
.ws19d{word-spacing:1.363968pt;}
.wsf4{word-spacing:1.486848pt;}
.ws85{word-spacing:1.603584pt;}
.ws113{word-spacing:1.634304pt;}
.wsa3{word-spacing:1.646592pt;}
.wsb9{word-spacing:1.652736pt;}
.ws13{word-spacing:1.658880pt;}
.ws12{word-spacing:1.671168pt;}
.ws67{word-spacing:1.677312pt;}
.ws76{word-spacing:1.683456pt;}
.ws1a4{word-spacing:1.689600pt;}
.ws18d{word-spacing:1.695744pt;}
.ws83{word-spacing:1.941504pt;}
.ws18f{word-spacing:1.947648pt;}
.ws115{word-spacing:1.953792pt;}
.wscc{word-spacing:1.959936pt;}
.ws84{word-spacing:1.966080pt;}
.ws183{word-spacing:1.972224pt;}
.ws5d{word-spacing:1.978368pt;}
.wsce{word-spacing:1.984512pt;}
.wsae{word-spacing:1.996800pt;}
.wsd2{word-spacing:2.009088pt;}
.ws16f{word-spacing:2.021376pt;}
.ws68{word-spacing:2.033664pt;}
.ws130{word-spacing:2.045952pt;}
.ws150{word-spacing:2.279424pt;}
.wscb{word-spacing:2.285568pt;}
.wsbf{word-spacing:2.291712pt;}
.ws1f{word-spacing:2.297856pt;}
.ws7c{word-spacing:2.304000pt;}
.ws28{word-spacing:2.310144pt;}
.ws176{word-spacing:2.322432pt;}
.ws152{word-spacing:2.328576pt;}
.ws153{word-spacing:2.377728pt;}
.ws52{word-spacing:2.558336pt;}
.ws63{word-spacing:2.580480pt;}
.ws12a{word-spacing:2.592768pt;}
.wsf9{word-spacing:2.598912pt;}
.ws9b{word-spacing:2.605056pt;}
.ws1a{word-spacing:2.617344pt;}
.ws19{word-spacing:2.623488pt;}
.ws104{word-spacing:2.629632pt;}
.ws6f{word-spacing:2.635776pt;}
.wsf7{word-spacing:2.641920pt;}
.ws78{word-spacing:2.654208pt;}
.ws1a3{word-spacing:2.672640pt;}
.ws79{word-spacing:2.678784pt;}
.ws149{word-spacing:2.709504pt;}
.ws3b{word-spacing:2.893824pt;}
.wsff{word-spacing:2.899968pt;}
.ws169{word-spacing:2.906112pt;}
.ws15a{word-spacing:2.924544pt;}
.ws160{word-spacing:2.930688pt;}
.ws7d{word-spacing:2.936832pt;}
.wsd5{word-spacing:2.942976pt;}
.ws8a{word-spacing:2.949120pt;}
.ws92{word-spacing:2.961408pt;}
.ws192{word-spacing:2.973696pt;}
.ws190{word-spacing:2.979840pt;}
.ws3c{word-spacing:3.133440pt;}
.ws185{word-spacing:3.237888pt;}
.ws187{word-spacing:3.244032pt;}
.ws132{word-spacing:3.250176pt;}
.wsb6{word-spacing:3.256320pt;}
.ws91{word-spacing:3.262464pt;}
.ws167{word-spacing:3.268608pt;}
.wsac{word-spacing:3.274752pt;}
.ws60{word-spacing:3.287040pt;}
.wsb4{word-spacing:3.299328pt;}
.ws174{word-spacing:3.551232pt;}
.ws2c{word-spacing:3.557376pt;}
.ws38{word-spacing:3.563520pt;}
.wsc7{word-spacing:3.569664pt;}
.ws141{word-spacing:3.575808pt;}
.ws2d{word-spacing:3.581952pt;}
.ws12b{word-spacing:3.594240pt;}
.ws162{word-spacing:3.600384pt;}
.ws12c{word-spacing:3.606528pt;}
.ws181{word-spacing:3.643392pt;}
.ws93{word-spacing:3.858432pt;}
.ws99{word-spacing:3.876864pt;}
.wsd{word-spacing:3.883008pt;}
.ws10c{word-spacing:3.895296pt;}
.ws159{word-spacing:3.913728pt;}
.wse{word-spacing:3.919872pt;}
.ws1a7{word-spacing:3.926016pt;}
.ws94{word-spacing:3.981312pt;}
.wsf1{word-spacing:4.171776pt;}
.ws65{word-spacing:4.184064pt;}
.wse7{word-spacing:4.196352pt;}
.ws9a{word-spacing:4.208640pt;}
.ws118{word-spacing:4.214784pt;}
.wsc{word-spacing:4.220928pt;}
.ws6a{word-spacing:4.227072pt;}
.wsa9{word-spacing:4.239360pt;}
.ws10b{word-spacing:4.245504pt;}
.ws13d{word-spacing:4.251648pt;}
.ws10a{word-spacing:4.257792pt;}
.ws191{word-spacing:4.263936pt;}
.ws13c{word-spacing:4.270080pt;}
.ws10d{word-spacing:4.503552pt;}
.ws62{word-spacing:4.521984pt;}
.wsd3{word-spacing:4.528128pt;}
.ws15e{word-spacing:4.564992pt;}
.ws15f{word-spacing:4.577280pt;}
.ws6b{word-spacing:4.608000pt;}
.ws64{word-spacing:4.620288pt;}
.ws66{word-spacing:4.626432pt;}
.ws96{word-spacing:4.823040pt;}
.ws182{word-spacing:4.841472pt;}
.wsd4{word-spacing:4.847616pt;}
.ws135{word-spacing:4.853760pt;}
.ws119{word-spacing:4.859904pt;}
.ws49{word-spacing:4.866048pt;}
.ws11d{word-spacing:4.902912pt;}
.ws11e{word-spacing:4.921344pt;}
.ws16b{word-spacing:5.062656pt;}
.ws10e{word-spacing:5.148672pt;}
.ws17e{word-spacing:5.154816pt;}
.ws102{word-spacing:5.474304pt;}
.ws151{word-spacing:5.480448pt;}
.ws106{word-spacing:5.492736pt;}
.ws75{word-spacing:5.511168pt;}
.ws1af{word-spacing:5.535744pt;}
.ws168{word-spacing:5.793792pt;}
.ws22{word-spacing:5.799936pt;}
.ws3a{word-spacing:5.806080pt;}
.wsad{word-spacing:5.812224pt;}
.ws21{word-spacing:5.849088pt;}
.ws48{word-spacing:5.855232pt;}
.ws1b0{word-spacing:5.867520pt;}
.ws100{word-spacing:6.113280pt;}
.ws161{word-spacing:6.119424pt;}
.wsf8{word-spacing:6.125568pt;}
.ws5e{word-spacing:6.137856pt;}
.ws147{word-spacing:6.426624pt;}
.ws116{word-spacing:6.438912pt;}
.ws14a{word-spacing:6.445056pt;}
.ws120{word-spacing:6.451200pt;}
.ws19f{word-spacing:6.481920pt;}
.ws117{word-spacing:6.494208pt;}
.wsb7{word-spacing:6.524928pt;}
.ws145{word-spacing:6.752256pt;}
.ws1a8{word-spacing:6.770688pt;}
.wsa0{word-spacing:6.776832pt;}
.wsa1{word-spacing:6.782976pt;}
.ws34{word-spacing:6.795264pt;}
.ws33{word-spacing:6.813696pt;}
.ws11c{word-spacing:7.071744pt;}
.wsd7{word-spacing:7.077888pt;}
.ws1a1{word-spacing:7.108608pt;}
.ws178{word-spacing:7.120896pt;}
.wse3{word-spacing:7.403520pt;}
.wsa2{word-spacing:7.409664pt;}
.ws1ae{word-spacing:7.421952pt;}
.ws17f{word-spacing:7.428096pt;}
.ws170{word-spacing:7.440384pt;}
.ws171{word-spacing:7.458816pt;}
.ws1a6{word-spacing:7.704576pt;}
.wsf2{word-spacing:7.741440pt;}
.ws180{word-spacing:7.759872pt;}
.ws40{word-spacing:8.048640pt;}
.ws142{word-spacing:8.073216pt;}
.wsf3{word-spacing:8.079360pt;}
.ws42{word-spacing:8.091648pt;}
.ws43{word-spacing:8.097792pt;}
.ws158{word-spacing:8.122368pt;}
.wsed{word-spacing:8.343552pt;}
.ws112{word-spacing:8.349696pt;}
.ws11b{word-spacing:8.423424pt;}
.ws11a{word-spacing:8.448000pt;}
.ws19e{word-spacing:8.693760pt;}
.ws189{word-spacing:8.718336pt;}
.ws188{word-spacing:8.730624pt;}
.wsc9{word-spacing:8.749056pt;}
.wsc8{word-spacing:8.755200pt;}
.ws16c{word-spacing:8.964096pt;}
.ws11{word-spacing:8.994816pt;}
.ws1b2{word-spacing:9.351168pt;}
.ws1b1{word-spacing:9.664512pt;}
.ws103{word-spacing:10.285056pt;}
.ws13f{word-spacing:10.579968pt;}
.wse1{word-spacing:10.610688pt;}
.ws16{word-spacing:10.622976pt;}
.ws4f{word-spacing:10.629120pt;}
.wse2{word-spacing:10.678272pt;}
.ws140{word-spacing:10.721280pt;}
.ws172{word-spacing:10.985472pt;}
.ws12e{word-spacing:11.882496pt;}
.wsb2{word-spacing:13.166592pt;}
.ws7f{word-spacing:14.426112pt;}
.ws7e{word-spacing:14.456832pt;}
.wsf5{word-spacing:16.103424pt;}
.ws19c{word-spacing:16.711680pt;}
.wsef{word-spacing:17.965056pt;}
.ws17d{word-spacing:21.805056pt;}
.ws5c{word-spacing:136.089600pt;}
._0{margin-left:-1.161216pt;}
._1{width:1.161216pt;}
.fs6{font-size:26.560000pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs0{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:34.213600pt;}
.yca{bottom:80.296672pt;}
.y13a{bottom:80.298208pt;}
.y145{bottom:80.299744pt;}
.yb6{bottom:80.857947pt;}
.y63{bottom:81.977051pt;}
.ye2{bottom:81.978715pt;}
.y43{bottom:82.853584pt;}
.y2cb{bottom:86.293816pt;}
.y2bd{bottom:86.295336pt;}
.y2f3{bottom:86.936304pt;}
.y15e{bottom:90.695776pt;}
.y1c7{bottom:90.696392pt;}
.yfa{bottom:92.620000pt;}
.y96{bottom:94.218976pt;}
.y186{bottom:94.296027pt;}
.y1f{bottom:96.378587pt;}
.y80{bottom:97.980640pt;}
.y42{bottom:100.053600pt;}
.yc9{bottom:100.616416pt;}
.y139{bottom:100.617952pt;}
.y144{bottom:100.619488pt;}
.y2fb{bottom:100.936432pt;}
.yb5{bottom:101.177691pt;}
.y233{bottom:101.653600pt;}
.y297{bottom:101.653776pt;}
.y2ca{bottom:101.653808pt;}
.y2bc{bottom:101.655328pt;}
.y24e{bottom:101.656536pt;}
.y62{bottom:102.216923pt;}
.ye1{bottom:102.218587pt;}
.y2f2{bottom:102.296296pt;}
.y1c6{bottom:106.056384pt;}
.y26f{bottom:108.294448pt;}
.y165{bottom:108.618976pt;}
.y281{bottom:108.936400pt;}
.y15d{bottom:110.935648pt;}
.yf9{bottom:112.859872pt;}
.y95{bottom:114.458848pt;}
.y185{bottom:114.535899pt;}
.y41{bottom:115.973584pt;}
.y2fa{bottom:116.296424pt;}
.y1e{bottom:116.618459pt;}
.y296{bottom:117.013768pt;}
.y2c9{bottom:117.013800pt;}
.y2bb{bottom:117.015320pt;}
.y24d{bottom:117.016528pt;}
.y2f1{bottom:117.656288pt;}
.y20f{bottom:117.656472pt;}
.y7f{bottom:118.220512pt;}
.yc8{bottom:120.856288pt;}
.y138{bottom:120.857824pt;}
.y1c5{bottom:121.336216pt;}
.yb4{bottom:121.417563pt;}
.y12a{bottom:122.455904pt;}
.y61{bottom:122.456795pt;}
.ye0{bottom:122.458459pt;}
.y26e{bottom:123.654440pt;}
.y280{bottom:124.296392pt;}
.y232{bottom:124.935944pt;}
.y143{bottom:128.858848pt;}
.y295{bottom:132.293600pt;}
.y2ba{bottom:132.295152pt;}
.y24c{bottom:132.296360pt;}
.y2f0{bottom:133.016280pt;}
.y20e{bottom:133.016464pt;}
.y40{bottom:133.173600pt;}
.yf8{bottom:133.179616pt;}
.y94{bottom:134.778592pt;}
.y184{bottom:134.855643pt;}
.y1c4{bottom:136.696208pt;}
.y1d{bottom:136.938203pt;}
.y7e{bottom:138.460384pt;}
.y26d{bottom:139.014432pt;}
.y15c{bottom:139.256416pt;}
.y1eb{bottom:139.653600pt;}
.y2f9{bottom:139.656384pt;}
.y2c8{bottom:140.293600pt;}
.y231{bottom:140.295936pt;}
.y137{bottom:141.177568pt;}
.yb3{bottom:141.737307pt;}
.y129{bottom:142.775648pt;}
.ydf{bottom:142.778203pt;}
.y3f{bottom:145.656800pt;}
.y27f{bottom:147.656352pt;}
.y2ef{bottom:148.296112pt;}
.y20d{bottom:148.296296pt;}
.yc7{bottom:149.177056pt;}
.y142{bottom:149.178592pt;}
.y60{bottom:150.777563pt;}
.yf7{bottom:153.419488pt;}
.y2f8{bottom:155.016376pt;}
.y183{bottom:155.095515pt;}
.y2c7{bottom:155.653600pt;}
.y294{bottom:155.653776pt;}
.y2b9{bottom:155.655112pt;}
.y230{bottom:155.655928pt;}
.y24b{bottom:155.656320pt;}
.y7d{bottom:158.780128pt;}
.y15b{bottom:159.496288pt;}
.y1c3{bottom:159.976008pt;}
.y136{bottom:161.417440pt;}
.yb2{bottom:161.977179pt;}
.y26c{bottom:162.294232pt;}
.y1ea{bottom:162.934032pt;}
.y128{bottom:163.015520pt;}
.y27e{bottom:163.016344pt;}
.yde{bottom:163.018075pt;}
.y20c{bottom:163.656288pt;}
.y1c{bottom:165.177563pt;}
.y93{bottom:165.658336pt;}
.yc6{bottom:169.416928pt;}
.y141{bottom:169.418464pt;}
.y2c6{bottom:171.013600pt;}
.y293{bottom:171.013768pt;}
.y22f{bottom:171.015920pt;}
.y24a{bottom:171.016312pt;}
.y5f{bottom:171.017435pt;}
.y2ee{bottom:171.656072pt;}
.yf6{bottom:173.739232pt;}
.y3e{bottom:174.776288pt;}
.y182{bottom:175.335387pt;}
.y1c2{bottom:175.336000pt;}
.y26b{bottom:177.654224pt;}
.y1e9{bottom:178.294024pt;}
.y27d{bottom:178.296176pt;}
.y2b8{bottom:178.934912pt;}
.y20b{bottom:179.016280pt;}
.y7c{bottom:179.020000pt;}
.y15a{bottom:179.736160pt;}
.yb1{bottom:182.296923pt;}
.y127{bottom:183.335264pt;}
.y1b{bottom:185.497307pt;}
.y92{bottom:185.978080pt;}
.y292{bottom:186.293600pt;}
.y22e{bottom:186.295752pt;}
.y249{bottom:186.296144pt;}
.y2ed{bottom:187.016064pt;}
.yc5{bottom:189.736672pt;}
.y135{bottom:189.738208pt;}
.y1c1{bottom:190.695992pt;}
.y5e{bottom:191.337179pt;}
.ydd{bottom:191.337307pt;}
.y1a0{bottom:192.857824pt;}
.y1e8{bottom:193.654016pt;}
.y2f7{bottom:193.656168pt;}
.yf5{bottom:193.979104pt;}
.y2c5{bottom:194.293600pt;}
.y20a{bottom:194.296112pt;}
.y3d{bottom:195.016160pt;}
.y7b{bottom:199.339744pt;}
.y159{bottom:200.055904pt;}
.y26a{bottom:200.934024pt;}
.y22d{bottom:201.655744pt;}
.y27c{bottom:201.656136pt;}
.y2b7{bottom:202.294872pt;}
.yb0{bottom:202.536795pt;}
.y126{bottom:203.575136pt;}
.y181{bottom:204.775899pt;}
.y1a{bottom:205.737179pt;}
.y91{bottom:206.297824pt;}
.y2c4{bottom:209.653600pt;}
.y291{bottom:209.653776pt;}
.y248{bottom:209.656104pt;}
.yc4{bottom:209.976544pt;}
.y134{bottom:209.978080pt;}
.y2ec{bottom:210.295864pt;}
.y5d{bottom:211.577051pt;}
.ydc{bottom:211.577179pt;}
.y1c0{bottom:213.975792pt;}
.y111{bottom:214.298848pt;}
.y3c{bottom:215.335904pt;}
.y269{bottom:216.294016pt;}
.y1e7{bottom:216.933816pt;}
.y2f6{bottom:216.935968pt;}
.y27b{bottom:217.016128pt;}
.y2b6{bottom:217.654864pt;}
.y209{bottom:217.656072pt;}
.y158{bottom:220.295776pt;}
.y19f{bottom:221.178592pt;}
.yf4{bottom:222.298336pt;}
.yaf{bottom:222.856539pt;}
.y125{bottom:223.894880pt;}
.y22c{bottom:224.935544pt;}
.y290{bottom:225.013768pt;}
.y180{bottom:225.015771pt;}
.y247{bottom:225.016096pt;}
.y2eb{bottom:225.655856pt;}
.y19{bottom:225.977051pt;}
.y90{bottom:226.537696pt;}
.y7a{bottom:227.579104pt;}
.yc3{bottom:230.296288pt;}
.y133{bottom:230.297824pt;}
.y268{bottom:231.654008pt;}
.y5c{bottom:231.896795pt;}
.ydb{bottom:231.896923pt;}
.y1e6{bottom:232.293808pt;}
.y2f5{bottom:232.295960pt;}
.y2c3{bottom:232.933600pt;}
.y208{bottom:233.016064pt;}
.y110{bottom:234.538720pt;}
.y3b{bottom:235.575776pt;}
.y1bf{bottom:237.335752pt;}
.y28f{bottom:240.293600pt;}
.y22b{bottom:240.295536pt;}
.y246{bottom:240.295928pt;}
.y157{bottom:240.615520pt;}
.y2b5{bottom:240.934664pt;}
.y19e{bottom:241.418464pt;}
.yf3{bottom:242.538208pt;}
.yae{bottom:243.096411pt;}
.y124{bottom:244.134752pt;}
.y17f{bottom:245.335515pt;}
.y18{bottom:246.296795pt;}
.y1e5{bottom:247.653800pt;}
.y79{bottom:247.898848pt;}
.y2c2{bottom:248.293600pt;}
.y2ea{bottom:248.935656pt;}
.yc2{bottom:250.536160pt;}
.y132{bottom:250.537696pt;}
.y5b{bottom:252.136667pt;}
.yda{bottom:252.136795pt;}
.y1be{bottom:252.695744pt;}
.y267{bottom:254.933808pt;}
.y2f4{bottom:255.575760pt;}
.y27a{bottom:255.655920pt;}
.y3a{bottom:255.895520pt;}
.y2b4{bottom:256.294656pt;}
.y207{bottom:256.295864pt;}
.y8f{bottom:257.417440pt;}
.y156{bottom:260.855392pt;}
.y19d{bottom:261.738208pt;}
.yf2{bottom:262.857952pt;}
.y10f{bottom:262.859488pt;}
.yad{bottom:263.336283pt;}
.y28e{bottom:263.573616pt;}
.y22a{bottom:263.575336pt;}
.y245{bottom:263.575728pt;}
.y2c1{bottom:263.653600pt;}
.y2e9{bottom:264.295648pt;}
.y123{bottom:264.454496pt;}
.y17e{bottom:265.575387pt;}
.y17{bottom:266.536667pt;}
.y78{bottom:268.138720pt;}
.y316{bottom:269.575704pt;}
.y266{bottom:270.293800pt;}
.yc1{bottom:270.855904pt;}
.y131{bottom:270.857440pt;}
.y1e4{bottom:270.933600pt;}
.y279{bottom:270.935752pt;}
.y2b3{bottom:271.654648pt;}
.y206{bottom:271.655856pt;}
.y5a{bottom:272.456411pt;}
.yd9{bottom:272.456539pt;}
.y1bd{bottom:275.975544pt;}
.y39{bottom:276.135392pt;}
.y8e{bottom:277.737184pt;}
.y28d{bottom:278.933608pt;}
.y229{bottom:278.935328pt;}
.y244{bottom:278.935720pt;}
.y2e8{bottom:279.655640pt;}
.y155{bottom:281.175136pt;}
.y19c{bottom:281.978080pt;}
.yf1{bottom:283.097824pt;}
.y10e{bottom:283.099360pt;}
.yac{bottom:283.656027pt;}
.y122{bottom:284.694368pt;}
.y1e3{bottom:286.293600pt;}
.y16{bottom:286.856411pt;}
.y205{bottom:286.935688pt;}
.y77{bottom:288.458464pt;}
.yc0{bottom:291.095776pt;}
.y130{bottom:291.097312pt;}
.y1bc{bottom:291.335536pt;}
.y59{bottom:292.696283pt;}
.yd8{bottom:292.696411pt;}
.y315{bottom:292.935664pt;}
.y265{bottom:293.573600pt;}
.y28c{bottom:294.293600pt;}
.y228{bottom:294.295320pt;}
.y278{bottom:294.295712pt;}
.y2b2{bottom:294.934448pt;}
.y17d{bottom:294.936027pt;}
.y38{bottom:296.455136pt;}
.y8d{bottom:298.056928pt;}
.y154{bottom:301.415008pt;}
.y1e2{bottom:301.653600pt;}
.y243{bottom:302.295680pt;}
.y19b{bottom:302.297824pt;}
.y2e7{bottom:302.935440pt;}
.yf0{bottom:303.337696pt;}
.y10d{bottom:303.339232pt;}
.y15{bottom:307.096283pt;}
.y314{bottom:308.295656pt;}
.y76{bottom:308.698336pt;}
.y264{bottom:308.933600pt;}
.y227{bottom:309.655312pt;}
.y277{bottom:309.655704pt;}
.y2b1{bottom:310.294440pt;}
.y204{bottom:310.295648pt;}
.ybf{bottom:311.335648pt;}
.y12f{bottom:311.337184pt;}
.yab{bottom:311.895387pt;}
.y121{bottom:313.015136pt;}
.yd7{bottom:313.016155pt;}
.y1bb{bottom:314.695496pt;}
.y17c{bottom:315.255771pt;}
.y37{bottom:316.695008pt;}
.y28b{bottom:317.573616pt;}
.y242{bottom:317.655672pt;}
.y2e6{bottom:318.295432pt;}
.y8c{bottom:318.296800pt;}
.y58{bottom:321.017051pt;}
.y153{bottom:321.734752pt;}
.y19a{bottom:322.537696pt;}
.y313{bottom:323.655648pt;}
.y10c{bottom:323.658976pt;}
.y263{bottom:324.293600pt;}
.y226{bottom:324.935144pt;}
.y1e1{bottom:324.935536pt;}
.y2b0{bottom:325.654432pt;}
.y203{bottom:325.655640pt;}
.y14{bottom:327.416027pt;}
.y75{bottom:329.018080pt;}
.y1ba{bottom:330.055488pt;}
.ybe{bottom:331.655392pt;}
.y12e{bottom:331.656928pt;}
.yef{bottom:331.658464pt;}
.yaa{bottom:332.215131pt;}
.y28a{bottom:332.933608pt;}
.y241{bottom:332.935504pt;}
.y120{bottom:333.255008pt;}
.yd6{bottom:333.256027pt;}
.y2e5{bottom:333.655424pt;}
.y17b{bottom:335.495643pt;}
.y36{bottom:337.014752pt;}
.y8b{bottom:338.616544pt;}
.y164{bottom:339.657952pt;}
.y1e0{bottom:340.295528pt;}
.y2af{bottom:340.934264pt;}
.y2c0{bottom:340.935472pt;}
.y57{bottom:341.256923pt;}
.y152{bottom:341.974624pt;}
.y199{bottom:342.857440pt;}
.y10b{bottom:343.898848pt;}
.y312{bottom:346.935448pt;}
.y262{bottom:347.575392pt;}
.y13{bottom:347.655899pt;}
.y289{bottom:348.293600pt;}
.y225{bottom:348.295104pt;}
.y240{bottom:348.295496pt;}
.y202{bottom:348.935440pt;}
.y74{bottom:349.257952pt;}
.ybd{bottom:351.895264pt;}
.y140{bottom:351.896800pt;}
.yee{bottom:351.898336pt;}
.ya9{bottom:352.455003pt;}
.y1b9{bottom:353.335288pt;}
.y11f{bottom:353.494880pt;}
.yd5{bottom:353.495899pt;}
.y17a{bottom:355.735515pt;}
.y2bf{bottom:356.295464pt;}
.y2e4{bottom:356.935224pt;}
.y35{bottom:357.254624pt;}
.y8a{bottom:358.856416pt;}
.y12d{bottom:359.896288pt;}
.y163{bottom:359.897824pt;}
.y56{bottom:361.496795pt;}
.y151{bottom:362.294368pt;}
.y311{bottom:362.295440pt;}
.y261{bottom:362.935384pt;}
.y198{bottom:363.097312pt;}
.y1df{bottom:363.575328pt;}
.y224{bottom:363.655096pt;}
.y276{bottom:363.655488pt;}
.y10a{bottom:364.218592pt;}
.y2ae{bottom:364.294224pt;}
.y201{bottom:364.295432pt;}
.y12{bottom:367.975643pt;}
.y1b8{bottom:368.695280pt;}
.y288{bottom:371.573624pt;}
.y23f{bottom:371.575296pt;}
.y2be{bottom:371.655456pt;}
.ybc{bottom:372.215008pt;}
.y13f{bottom:372.216544pt;}
.yed{bottom:372.218080pt;}
.y2e3{bottom:372.295216pt;}
.ya8{bottom:372.774747pt;}
.y11e{bottom:373.814624pt;}
.yd4{bottom:373.815643pt;}
.y34{bottom:377.494496pt;}
.y73{bottom:377.497312pt;}
.y223{bottom:378.934928pt;}
.y1de{bottom:378.935320pt;}
.y89{bottom:379.176160pt;}
.y2ad{bottom:379.654216pt;}
.y200{bottom:379.655424pt;}
.y12c{bottom:380.216032pt;}
.y162{bottom:380.217568pt;}
.y55{bottom:381.816539pt;}
.y150{bottom:382.534240pt;}
.y197{bottom:383.417056pt;}
.y109{bottom:384.458464pt;}
.y179{bottom:385.176027pt;}
.y310{bottom:385.575240pt;}
.y260{bottom:386.295344pt;}
.y287{bottom:386.933616pt;}
.y23e{bottom:386.935288pt;}
.y2e2{bottom:387.655208pt;}
.y11{bottom:388.215515pt;}
.y1b7{bottom:391.975080pt;}
.ybb{bottom:392.454880pt;}
.yec{bottom:392.457952pt;}
.ya7{bottom:393.014619pt;}
.y11d{bottom:394.054496pt;}
.yd3{bottom:394.055515pt;}
.y1dd{bottom:394.295312pt;}
.y2ac{bottom:394.934048pt;}
.y33{bottom:397.814240pt;}
.y72{bottom:397.817056pt;}
.y12b{bottom:400.455904pt;}
.y161{bottom:400.457440pt;}
.y30f{bottom:400.935232pt;}
.y25f{bottom:401.655336pt;}
.y54{bottom:402.056411pt;}
.y286{bottom:402.293608pt;}
.y222{bottom:402.294888pt;}
.y23d{bottom:402.295280pt;}
.y2e1{bottom:402.935040pt;}
.y1ff{bottom:402.935224pt;}
.y196{bottom:403.656928pt;}
.y108{bottom:404.778208pt;}
.y178{bottom:405.415899pt;}
.y1b6{bottom:407.335072pt;}
.y10{bottom:408.535259pt;}
.y1dc{bottom:409.655304pt;}
.y88{bottom:409.976032pt;}
.y14f{bottom:410.855008pt;}
.yeb{bottom:412.777696pt;}
.y11c{bottom:414.374240pt;}
.yd2{bottom:414.375259pt;}
.y285{bottom:417.653600pt;}
.y221{bottom:417.654880pt;}
.y275{bottom:417.655272pt;}
.y32{bottom:418.054112pt;}
.y71{bottom:418.056928pt;}
.y2ab{bottom:418.294008pt;}
.y1fe{bottom:418.295216pt;}
.yba{bottom:420.775648pt;}
.y160{bottom:420.777184pt;}
.ya6{bottom:421.335387pt;}
.y53{bottom:422.376155pt;}
.y1b5{bottom:422.695064pt;}
.y195{bottom:423.896800pt;}
.y30e{bottom:424.295192pt;}
.y25e{bottom:424.935136pt;}
.y23c{bottom:425.575080pt;}
.y177{bottom:425.735643pt;}
.y2e0{bottom:426.295000pt;}
.y87{bottom:430.375648pt;}
.y14e{bottom:431.094880pt;}
.y220{bottom:432.934712pt;}
.y1db{bottom:432.935104pt;}
.y107{bottom:433.017568pt;}
.y2aa{bottom:433.654000pt;}
.y11b{bottom:434.614112pt;}
.yd1{bottom:434.615131pt;}
.yf{bottom:436.774619pt;}
.y1b4{bottom:438.055056pt;}
.y31{bottom:438.293984pt;}
.y70{bottom:438.376672pt;}
.y30d{bottom:439.655184pt;}
.y25d{bottom:440.295128pt;}
.y23b{bottom:440.935072pt;}
.yb9{bottom:441.015520pt;}
.yea{bottom:441.017056pt;}
.y1fd{bottom:441.575016pt;}
.ya5{bottom:441.575259pt;}
.y2df{bottom:441.654992pt;}
.y52{bottom:442.616027pt;}
.y194{bottom:444.216544pt;}
.y176{bottom:445.975515pt;}
.y21f{bottom:448.294704pt;}
.y1da{bottom:448.295096pt;}
.y2a9{bottom:448.933832pt;}
.y86{bottom:450.615520pt;}
.y14d{bottom:451.334752pt;}
.y106{bottom:453.337312pt;}
.y11a{bottom:454.933856pt;}
.yd0{bottom:454.934875pt;}
.y274{bottom:456.295064pt;}
.y2de{bottom:456.934824pt;}
.y1fc{bottom:456.935008pt;}
.ye{bottom:457.094363pt;}
.y6f{bottom:458.616544pt;}
.y30{bottom:461.333984pt;}
.y1b3{bottom:461.334856pt;}
.yb8{bottom:461.335264pt;}
.ye9{bottom:461.336800pt;}
.ya4{bottom:461.895003pt;}
.y30c{bottom:462.934984pt;}
.y51{bottom:462.935771pt;}
.y25c{bottom:463.574928pt;}
.y2a8{bottom:464.293824pt;}
.y23a{bottom:464.295032pt;}
.y21e{bottom:471.574504pt;}
.y1d9{bottom:471.574896pt;}
.y14c{bottom:471.654496pt;}
.y284{bottom:471.655056pt;}
.y2dd{bottom:472.294816pt;}
.y1fb{bottom:472.295000pt;}
.y193{bottom:472.455904pt;}
.y105{bottom:473.577184pt;}
.y119{bottom:475.173728pt;}
.y175{bottom:475.336155pt;}
.y1b2{bottom:476.694848pt;}
.yd{bottom:477.334235pt;}
.y30b{bottom:478.294976pt;}
.y25b{bottom:478.934920pt;}
.y6e{bottom:478.936288pt;}
.y273{bottom:479.574864pt;}
.y2a7{bottom:479.653816pt;}
.y239{bottom:479.655024pt;}
.y85{bottom:481.495264pt;}
.y2f{bottom:481.573856pt;}
.yb7{bottom:481.575136pt;}
.ye8{bottom:481.576672pt;}
.ya3{bottom:482.134875pt;}
.ycf{bottom:483.174235pt;}
.y50{bottom:483.175643pt;}
.y21d{bottom:486.934496pt;}
.y1d8{bottom:486.934888pt;}
.y1fa{bottom:487.654992pt;}
.y14b{bottom:491.894368pt;}
.y1b1{bottom:491.974680pt;}
.y192{bottom:492.775648pt;}
.y104{bottom:493.896928pt;}
.y25a{bottom:494.294912pt;}
.y238{bottom:494.934856pt;}
.y2dc{bottom:495.574616pt;}
.y174{bottom:495.655899pt;}
.yc{bottom:497.574107pt;}
.y6d{bottom:499.176160pt;}
.y30a{bottom:501.574776pt;}
.y2e{bottom:501.893856pt;}
.y84{bottom:501.894880pt;}
.ye7{bottom:501.896416pt;}
.y21c{bottom:502.294488pt;}
.ya2{bottom:502.374747pt;}
.y2a6{bottom:502.933616pt;}
.y1f9{bottom:502.934824pt;}
.yce{bottom:503.493979pt;}
.y118{bottom:503.494496pt;}
.y4f{bottom:503.495387pt;}
.y1d7{bottom:510.294848pt;}
.y2db{bottom:510.934608pt;}
.y14a{bottom:512.214112pt;}
.y191{bottom:513.015520pt;}
.y103{bottom:514.136800pt;}
.y1b0{bottom:515.334640pt;}
.y173{bottom:515.895771pt;}
.y309{bottom:516.934768pt;}
.y259{bottom:517.574712pt;}
.yb{bottom:517.893851pt;}
.y2a5{bottom:518.293608pt;}
.y1f8{bottom:518.294816pt;}
.y6c{bottom:519.495904pt;}
.y2d{bottom:522.133728pt;}
.y83{bottom:522.134752pt;}
.y15f{bottom:522.136288pt;}
.ya1{bottom:522.694491pt;}
.ycd{bottom:523.733851pt;}
.y117{bottom:523.734368pt;}
.y4e{bottom:523.735259pt;}
.y21b{bottom:525.574288pt;}
.y1d6{bottom:525.654840pt;}
.y2da{bottom:526.294600pt;}
.ye6{bottom:530.135776pt;}
.y1af{bottom:530.694632pt;}
.y149{bottom:532.453984pt;}
.y258{bottom:532.934704pt;}
.y190{bottom:533.335264pt;}
.y2a4{bottom:533.653600pt;}
.y1f7{bottom:533.654808pt;}
.y172{bottom:536.215515pt;}
.ya{bottom:538.133723pt;}
.y308{bottom:540.294728pt;}
.y21a{bottom:540.934280pt;}
.y283{bottom:540.934672pt;}
.y2d9{bottom:541.654592pt;}
.y2c{bottom:542.374624pt;}
.y102{bottom:542.376160pt;}
.ya0{bottom:542.934363pt;}
.ycc{bottom:544.053595pt;}
.y116{bottom:544.054112pt;}
.y4d{bottom:544.055003pt;}
.y6b{bottom:547.735264pt;}
.y257{bottom:548.294696pt;}
.y1d5{bottom:548.934640pt;}
.ye5{bottom:550.375648pt;}
.y148{bottom:552.773728pt;}
.y18f{bottom:553.575136pt;}
.y1ae{bottom:553.974432pt;}
.y307{bottom:555.654720pt;}
.y219{bottom:556.294272pt;}
.y171{bottom:556.455387pt;}
.y2a3{bottom:556.933784pt;}
.y1f6{bottom:556.934608pt;}
.y9{bottom:558.453467pt;}
.y2b{bottom:562.694368pt;}
.y101{bottom:562.695904pt;}
.y9f{bottom:563.254107pt;}
.y115{bottom:564.293984pt;}
.y1d4{bottom:564.294632pt;}
.y4c{bottom:564.294875pt;}
.y2d8{bottom:564.934392pt;}
.y6a{bottom:568.055008pt;}
.y1ad{bottom:569.334424pt;}
.ye4{bottom:570.695392pt;}
.y256{bottom:571.574496pt;}
.y2a2{bottom:572.293776pt;}
.y1f5{bottom:572.294600pt;}
.y147{bottom:573.013600pt;}
.y18e{bottom:573.894880pt;}
.ycb{bottom:574.853467pt;}
.y170{bottom:576.775131pt;}
.y306{bottom:578.934520pt;}
.y218{bottom:579.574072pt;}
.y1d3{bottom:579.654624pt;}
.y2d7{bottom:580.294384pt;}
.y2a{bottom:582.934240pt;}
.y100{bottom:582.935776pt;}
.y9e{bottom:583.493979pt;}
.y114{bottom:584.613728pt;}
.y4b{bottom:584.614619pt;}
.y1ac{bottom:584.694416pt;}
.y255{bottom:586.934488pt;}
.y2a1{bottom:587.653768pt;}
.y237{bottom:587.654592pt;}
.y69{bottom:588.294880pt;}
.ye3{bottom:590.935264pt;}
.y8{bottom:592.293600pt;}
.y18d{bottom:594.134752pt;}
.y305{bottom:594.294512pt;}
.y217{bottom:594.934064pt;}
.y272{bottom:594.934456pt;}
.y1f4{bottom:595.574400pt;}
.y2d6{bottom:595.654376pt;}
.y16f{bottom:597.015003pt;}
.y1ab{bottom:599.974248pt;}
.y2a0{bottom:602.933600pt;}
.y1d2{bottom:602.934424pt;}
.y29{bottom:603.253984pt;}
.yff{bottom:603.255520pt;}
.y9d{bottom:603.813723pt;}
.y4a{bottom:604.854491pt;}
.y146{bottom:606.853467pt;}
.y68{bottom:608.614624pt;}
.y254{bottom:610.214288pt;}
.y216{bottom:610.294056pt;}
.y282{bottom:610.294448pt;}
.y2d5{bottom:610.934208pt;}
.y1f3{bottom:610.934392pt;}
.y82{bottom:611.255008pt;}
.y18c{bottom:614.454496pt;}
.y113{bottom:615.413600pt;}
.y16e{bottom:617.334747pt;}
.y304{bottom:617.574312pt;}
.y271{bottom:618.214256pt;}
.y1d1{bottom:618.294416pt;}
.y1aa{bottom:623.334208pt;}
.y28{bottom:623.493856pt;}
.yfe{bottom:623.495392pt;}
.y49{bottom:625.094363pt;}
.y29f{bottom:626.213483pt;}
.y1f2{bottom:626.294384pt;}
.y67{bottom:628.854496pt;}
.y81{bottom:631.494880pt;}
.y303{bottom:632.934304pt;}
.y215{bottom:633.573856pt;}
.y1d0{bottom:633.574248pt;}
.y7{bottom:634.133680pt;}
.y2d4{bottom:634.214008pt;}
.y9c{bottom:634.694368pt;}
.y112{bottom:635.813600pt;}
.y16d{bottom:637.574619pt;}
.y1a9{bottom:638.694200pt;}
.y29e{bottom:641.573475pt;}
.y236{bottom:641.574216pt;}
.y13e{bottom:643.813600pt;}
.yfd{bottom:643.815136pt;}
.y48{bottom:645.414107pt;}
.y302{bottom:648.294296pt;}
.y214{bottom:648.933848pt;}
.y1cf{bottom:648.934240pt;}
.y66{bottom:649.094368pt;}
.y6{bottom:649.493672pt;}
.y2d3{bottom:649.574000pt;}
.y1f1{bottom:649.574184pt;}
.y27{bottom:651.814624pt;}
.y1a8{bottom:653.974032pt;}
.y29d{bottom:656.933467pt;}
.y235{bottom:656.934208pt;}
.y16c{bottom:657.894363pt;}
.y18b{bottom:662.933728pt;}
.y13d{bottom:664.053472pt;}
.yfc{bottom:664.055008pt;}
.y213{bottom:664.293840pt;}
.y253{bottom:664.294232pt;}
.y2d2{bottom:664.933992pt;}
.y1f0{bottom:664.934176pt;}
.y47{bottom:665.653979pt;}
.y5{bottom:667.493600pt;}
.y1a7{bottom:669.334024pt;}
.y65{bottom:669.414112pt;}
.y9b{bottom:670.934752pt;}
.y301{bottom:671.574096pt;}
.y26{bottom:672.054496pt;}
.y1ce{bottom:672.214040pt;}
.y29c{bottom:672.293600pt;}
.y16b{bottom:678.134235pt;}
.y234{bottom:680.214008pt;}
.y2d1{bottom:680.293984pt;}
.y1ef{bottom:680.294168pt;}
.y18a{bottom:683.253472pt;}
.y13c{bottom:684.373216pt;}
.yfb{bottom:684.374752pt;}
.y46{bottom:685.973723pt;}
.y300{bottom:686.934088pt;}
.y212{bottom:687.573640pt;}
.y1cd{bottom:687.574032pt;}
.y64{bottom:689.653984pt;}
.y9a{bottom:691.254496pt;}
.y25{bottom:692.374240pt;}
.y1a6{bottom:692.613824pt;}
.y29b{bottom:695.573608pt;}
.y2d0{bottom:695.573816pt;}
.y1ee{bottom:695.574000pt;}
.y16a{bottom:698.374107pt;}
.y252{bottom:702.934024pt;}
.y189{bottom:703.493344pt;}
.y13b{bottom:704.613088pt;}
.y1a5{bottom:707.973816pt;}
.y2ff{bottom:710.213888pt;}
.y211{bottom:710.933600pt;}
.y2cf{bottom:710.933808pt;}
.y1cc{bottom:710.933992pt;}
.y24{bottom:712.614112pt;}
.y45{bottom:716.853467pt;}
.y270{bottom:718.294016pt;}
.y169{bottom:718.693851pt;}
.y4{bottom:719.333120pt;}
.y99{bottom:722.134240pt;}
.y188{bottom:723.813088pt;}
.y251{bottom:726.213824pt;}
.y210{bottom:726.293600pt;}
.y2ce{bottom:726.293800pt;}
.y1cb{bottom:726.293984pt;}
.y1a4{bottom:731.333776pt;}
.y23{bottom:732.933856pt;}
.y2fe{bottom:733.573848pt;}
.y1ed{bottom:734.213792pt;}
.y44{bottom:737.173216pt;}
.y168{bottom:738.933723pt;}
.y1ca{bottom:741.573816pt;}
.y3{bottom:742.213600pt;}
.y98{bottom:742.533856pt;}
.y187{bottom:744.052960pt;}
.y1a3{bottom:746.693768pt;}
.y2fd{bottom:748.933840pt;}
.y2cd{bottom:749.573600pt;}
.y29a{bottom:749.573616pt;}
.y1ec{bottom:749.573784pt;}
.y22{bottom:753.173728pt;}
.y250{bottom:756.933808pt;}
.y167{bottom:759.253467pt;}
.y1a2{bottom:761.973600pt;}
.y2cc{bottom:764.933467pt;}
.y299{bottom:764.933608pt;}
.y1c9{bottom:764.933776pt;}
.y2fc{bottom:772.213640pt;}
.y97{bottom:773.413600pt;}
.y21{bottom:773.493472pt;}
.y24f{bottom:780.213608pt;}
.y298{bottom:780.293600pt;}
.y1c8{bottom:780.293768pt;}
.y166{bottom:793.093600pt;}
.y20{bottom:793.733344pt;}
.y1a1{bottom:793.733600pt;}
.y2{bottom:795.573600pt;}
.h9{height:35.013125pt;}
.ha{height:45.573125pt;}
.h2{height:46.890469pt;}
.h4{height:47.020937pt;}
.hc{height:47.464531pt;}
.h1{height:53.910000pt;}
.hb{height:53.911003pt;}
.h6{height:54.060000pt;}
.h5{height:56.156250pt;}
.h7{height:59.093560pt;}
.h8{height:59.096632pt;}
.h3{height:60.929531pt;}
.h0{height:884.000000pt;}
.w0{width:589.333333pt;}
.x0{left:0.000000pt;}
.x8{left:75.600000pt;}
.xc{left:99.600000pt;}
.xa{left:113.440000pt;}
.xd{left:123.600000pt;}
.xb{left:132.320512pt;}
.x3{left:144.160000pt;}
.x4{left:207.360816pt;}
.x1{left:265.600000pt;}
.x9{left:267.599360pt;}
.x5{left:322.320000pt;}
.x6{left:384.479984pt;}
.x2{left:442.800000pt;}
.x7{left:514.080000pt;}
}




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