
    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_568a8b3ed1401a18de01531c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_439db666601d0583368a28e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.804000;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_18df64028e549c8a3ee1271a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_4fed843f6c8a5c49bf417e39.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ea9f5539bdb3de3287281d69.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_ce71520f6f298612525eb0e8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9ed8c0bf5c5282c9bfe4e4e1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f9d005f0adc13278b05bbbd7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.896484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e8fe2e9774427decc77c822c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_16be481fc4e65ae6375e686d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f3d675dcc3563e0eec6b4a40.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.698242;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);}
.v4{vertical-align:-51.120600px;}
.v5{vertical-align:-39.242400px;}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:29.158200px;}
.v1{vertical-align:33.113400px;}
.ls43{letter-spacing:-0.568800px;}
.ls42{letter-spacing:-0.547200px;}
.ls57{letter-spacing:-0.366732px;}
.ls52{letter-spacing:-0.330660px;}
.ls56{letter-spacing:-0.324648px;}
.ls53{letter-spacing:-0.270540px;}
.ls55{letter-spacing:-0.222444px;}
.lsb{letter-spacing:-0.198180px;}
.ls58{letter-spacing:-0.192384px;}
.ls51{letter-spacing:-0.180360px;}
.ls54{letter-spacing:-0.132264px;}
.ls4a{letter-spacing:-0.126252px;}
.lsc{letter-spacing:-0.124488px;}
.ls48{letter-spacing:-0.090180px;}
.ls35{letter-spacing:-0.086400px;}
.ls4d{letter-spacing:-0.084168px;}
.ls38{letter-spacing:-0.079200px;}
.ls47{letter-spacing:-0.078156px;}
.ls46{letter-spacing:-0.060120px;}
.ls37{letter-spacing:-0.057600px;}
.ls41{letter-spacing:-0.054108px;}
.ls39{letter-spacing:-0.050400px;}
.lsf{letter-spacing:-0.048096px;}
.ls3c{letter-spacing:-0.043200px;}
.ls3d{letter-spacing:-0.042084px;}
.ls49{letter-spacing:-0.036072px;}
.ls5d{letter-spacing:-0.036000px;}
.ls1e{letter-spacing:-0.030060px;}
.ls26{letter-spacing:-0.028800px;}
.ls1f{letter-spacing:-0.024048px;}
.ls12{letter-spacing:-0.021600px;}
.ls50{letter-spacing:-0.018036px;}
.ls1c{letter-spacing:-0.014400px;}
.ls20{letter-spacing:-0.012024px;}
.ls14{letter-spacing:-0.009600px;}
.ls5b{letter-spacing:-0.008388px;}
.lse{letter-spacing:-0.007200px;}
.ls5c{letter-spacing:-0.006012px;}
.ls13{letter-spacing:-0.004800px;}
.ls1d{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.006012px;}
.ls33{letter-spacing:0.006588px;}
.ls10{letter-spacing:0.007200px;}
.ls15{letter-spacing:0.008388px;}
.ls3b{letter-spacing:0.012024px;}
.ls30{letter-spacing:0.013176px;}
.ls9{letter-spacing:0.014400px;}
.ls5e{letter-spacing:0.016776px;}
.ls4b{letter-spacing:0.018036px;}
.ls7{letter-spacing:0.021600px;}
.ls11{letter-spacing:0.023940px;}
.ls2a{letter-spacing:0.024048px;}
.ls36{letter-spacing:0.026352px;}
.ls3{letter-spacing:0.028800px;}
.ls28{letter-spacing:0.030060px;}
.ls22{letter-spacing:0.033552px;}
.ls4{letter-spacing:0.036000px;}
.ls3a{letter-spacing:0.036072px;}
.ls32{letter-spacing:0.039528px;}
.ls24{letter-spacing:0.041940px;}
.ls29{letter-spacing:0.042084px;}
.ls5{letter-spacing:0.043200px;}
.ls45{letter-spacing:0.048096px;}
.ls6{letter-spacing:0.050400px;}
.ls2b{letter-spacing:0.054108px;}
.ls8{letter-spacing:0.057600px;}
.ls17{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.067104px;}
.ls18{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.072144px;}
.ls34{letter-spacing:0.072468px;}
.ls21{letter-spacing:0.075492px;}
.ls2e{letter-spacing:0.079056px;}
.ls19{letter-spacing:0.079200px;}
.ls0{letter-spacing:0.081000px;}
.lsd{letter-spacing:0.086400px;}
.ls25{letter-spacing:0.093600px;}
.lsa{letter-spacing:0.100800px;}
.ls1a{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.115200px;}
.ls2c{letter-spacing:0.122400px;}
.ls5a{letter-spacing:0.129600px;}
.ls3e{letter-spacing:0.136800px;}
.ls1{letter-spacing:0.144000px;}
.ls59{letter-spacing:0.151200px;}
.ls3f{letter-spacing:0.158400px;}
.ls4f{letter-spacing:0.180360px;}
.ls40{letter-spacing:0.302400px;}
.ls44{letter-spacing:0.374400px;}
.ls16{letter-spacing:3.420000px;}
.ls4e{letter-spacing:25.012800px;}
.ls23{letter-spacing:74.880000px;}
.ls31{letter-spacing:78.984000px;}
.ls2f{letter-spacing:85.967400px;}
.ls2d{letter-spacing:85.968000px;}
.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;}
}
.ws1{word-spacing:-83.947104px;}
.ws226{word-spacing:-83.921940px;}
.ws60{word-spacing:-83.913552px;}
.ws1e{word-spacing:-83.888388px;}
.wsaa{word-spacing:-83.880000px;}
.ws225{word-spacing:-83.871612px;}
.ws4{word-spacing:-72.043200px;}
.ws3{word-spacing:-72.036000px;}
.ws2{word-spacing:-72.028800px;}
.ws13e{word-spacing:-72.014400px;}
.wsc8{word-spacing:-72.007200px;}
.ws1e8{word-spacing:-72.000000px;}
.ws264{word-spacing:-71.956800px;}
.ws221{word-spacing:-60.300360px;}
.ws139{word-spacing:-60.235200px;}
.ws1c5{word-spacing:-60.168096px;}
.wsa9{word-spacing:-60.162084px;}
.wsed{word-spacing:-60.156072px;}
.wsa8{word-spacing:-60.150060px;}
.ws21f{word-spacing:-60.144048px;}
.ws138{word-spacing:-60.134400px;}
.wsee{word-spacing:-60.132024px;}
.ws227{word-spacing:-60.113988px;}
.ws1c4{word-spacing:-60.107976px;}
.ws220{word-spacing:-60.101964px;}
.ws133{word-spacing:-60.089940px;}
.ws1c3{word-spacing:-60.083928px;}
.ws134{word-spacing:-60.077916px;}
.ws5{word-spacing:-60.071904px;}
.ws163{word-spacing:-60.065892px;}
.ws1c0{word-spacing:-60.059880px;}
.ws1c1{word-spacing:-60.041844px;}
.ws1c2{word-spacing:-60.029820px;}
.ws222{word-spacing:-59.987736px;}
.ws224{word-spacing:-59.927616px;}
.ws223{word-spacing:-59.795352px;}
.ws13c{word-spacing:-58.701600px;}
.ws13d{word-spacing:-58.680000px;}
.ws22a{word-spacing:-55.922400px;}
.ws22b{word-spacing:-54.439200px;}
.ws13b{word-spacing:-54.338400px;}
.ws13a{word-spacing:-54.324000px;}
.wsc7{word-spacing:-51.796800px;}
.ws1f6{word-spacing:-51.768000px;}
.ws131{word-spacing:-51.739200px;}
.ws0{word-spacing:-20.016180px;}
.ws16b{word-spacing:-18.374400px;}
.ws228{word-spacing:-18.151200px;}
.ws167{word-spacing:-18.136800px;}
.ws229{word-spacing:-18.129600px;}
.ws168{word-spacing:-18.108000px;}
.ws169{word-spacing:-18.086400px;}
.ws166{word-spacing:-18.079200px;}
.ws136{word-spacing:-18.072000px;}
.wsa6{word-spacing:-18.064800px;}
.wsa4{word-spacing:-18.057600px;}
.ws162{word-spacing:-18.050400px;}
.ws137{word-spacing:-18.043200px;}
.ws16a{word-spacing:-18.036000px;}
.ws164{word-spacing:-18.028800px;}
.ws160{word-spacing:-18.021600px;}
.ws16f{word-spacing:-18.014400px;}
.ws16d{word-spacing:-18.007200px;}
.wsa5{word-spacing:-18.000000px;}
.wsa7{word-spacing:-17.985600px;}
.ws165{word-spacing:-17.452800px;}
.wsc9{word-spacing:-16.549056px;}
.wsca{word-spacing:-16.509528px;}
.wscb{word-spacing:-16.476588px;}
.ws1f{word-spacing:-9.720000px;}
.ws1aa{word-spacing:-0.504000px;}
.ws19c{word-spacing:-0.273600px;}
.ws19a{word-spacing:-0.252000px;}
.ws21e{word-spacing:-0.208800px;}
.ws80{word-spacing:-0.201600px;}
.ws9b{word-spacing:-0.194400px;}
.wsde{word-spacing:-0.180000px;}
.ws235{word-spacing:-0.165600px;}
.ws7e{word-spacing:-0.151200px;}
.ws8{word-spacing:-0.144000px;}
.ws263{word-spacing:-0.136800px;}
.wsf4{word-spacing:-0.129600px;}
.ws82{word-spacing:-0.122400px;}
.ws88{word-spacing:-0.115200px;}
.ws12{word-spacing:-0.108000px;}
.ws1b{word-spacing:-0.100800px;}
.ws38{word-spacing:-0.093600px;}
.ws26{word-spacing:-0.086400px;}
.ws1c{word-spacing:-0.079200px;}
.wscc{word-spacing:-0.075000px;}
.ws113{word-spacing:-0.072000px;}
.ws8d{word-spacing:-0.064800px;}
.ws70{word-spacing:-0.057600px;}
.ws3d{word-spacing:-0.050400px;}
.ws33{word-spacing:-0.043200px;}
.ws10{word-spacing:-0.036000px;}
.ws7c{word-spacing:-0.028800px;}
.ws54{word-spacing:-0.021600px;}
.ws1a{word-spacing:-0.014400px;}
.ws41{word-spacing:-0.012024px;}
.ws11{word-spacing:-0.007200px;}
.ws9{word-spacing:0.000000px;}
.ws27f{word-spacing:0.007200px;}
.wsd1{word-spacing:0.021600px;}
.ws1d{word-spacing:0.024000px;}
.ws86{word-spacing:0.028800px;}
.ws185{word-spacing:0.050400px;}
.wse2{word-spacing:0.057600px;}
.ws275{word-spacing:0.072000px;}
.wse3{word-spacing:0.079200px;}
.wsc6{word-spacing:0.090180px;}
.wse4{word-spacing:0.100800px;}
.ws13f{word-spacing:0.102600px;}
.ws7{word-spacing:0.108000px;}
.ws1e7{word-spacing:0.120240px;}
.ws200{word-spacing:0.144000px;}
.wsd0{word-spacing:0.172800px;}
.wseb{word-spacing:0.187200px;}
.ws93{word-spacing:0.194400px;}
.ws19b{word-spacing:0.201600px;}
.ws115{word-spacing:0.208800px;}
.ws85{word-spacing:0.216000px;}
.ws199{word-spacing:0.223200px;}
.ws7f{word-spacing:0.230400px;}
.ws204{word-spacing:0.237600px;}
.wsc{word-spacing:0.244800px;}
.ws3a{word-spacing:0.252000px;}
.wsef{word-spacing:0.259200px;}
.wse5{word-spacing:0.266400px;}
.ws47{word-spacing:0.273600px;}
.ws36{word-spacing:0.280800px;}
.ws61{word-spacing:0.295200px;}
.ws11e{word-spacing:0.302400px;}
.ws37{word-spacing:0.309600px;}
.ws198{word-spacing:0.316800px;}
.ws11d{word-spacing:0.324000px;}
.ws127{word-spacing:0.338400px;}
.ws197{word-spacing:0.360000px;}
.ws124{word-spacing:0.554400px;}
.wsf{word-spacing:0.568800px;}
.ws22f{word-spacing:0.583200px;}
.ws234{word-spacing:0.590400px;}
.ws5b{word-spacing:0.604800px;}
.ws25{word-spacing:0.612000px;}
.wsd7{word-spacing:0.619200px;}
.ws77{word-spacing:0.626400px;}
.ws52{word-spacing:0.633600px;}
.ws1fe{word-spacing:0.640800px;}
.ws76{word-spacing:0.648000px;}
.wsa0{word-spacing:0.655200px;}
.wsa3{word-spacing:0.662400px;}
.ws121{word-spacing:0.669600px;}
.ws1ea{word-spacing:0.676800px;}
.ws152{word-spacing:0.691200px;}
.wsd3{word-spacing:0.705600px;}
.ws11f{word-spacing:0.712800px;}
.ws4f{word-spacing:0.720000px;}
.ws280{word-spacing:0.784800px;}
.wsf0{word-spacing:0.864000px;}
.ws1fb{word-spacing:0.936000px;}
.ws1d4{word-spacing:0.950400px;}
.ws132{word-spacing:0.964800px;}
.ws7b{word-spacing:0.972000px;}
.ws34{word-spacing:0.979200px;}
.ws1d9{word-spacing:0.986400px;}
.ws1a2{word-spacing:0.993600px;}
.wsd8{word-spacing:1.000800px;}
.ws1ff{word-spacing:1.015200px;}
.ws8f{word-spacing:1.022400px;}
.ws216{word-spacing:1.029600px;}
.ws2a{word-spacing:1.036800px;}
.ws21{word-spacing:1.044000px;}
.ws20{word-spacing:1.051200px;}
.ws1cd{word-spacing:1.058400px;}
.wsbf{word-spacing:1.065600px;}
.ws1fc{word-spacing:1.072800px;}
.ws147{word-spacing:1.080000px;}
.ws1ae{word-spacing:1.094400px;}
.wsd9{word-spacing:1.100196px;}
.ws276{word-spacing:1.245600px;}
.ws24f{word-spacing:1.260000px;}
.ws23b{word-spacing:1.267200px;}
.ws106{word-spacing:1.281600px;}
.ws23d{word-spacing:1.296000px;}
.ws23c{word-spacing:1.303200px;}
.ws1f1{word-spacing:1.310400px;}
.ws27{word-spacing:1.332000px;}
.ws83{word-spacing:1.339200px;}
.ws1a7{word-spacing:1.353600px;}
.ws23a{word-spacing:1.368000px;}
.wsb{word-spacing:1.382400px;}
.ws1a9{word-spacing:1.389600px;}
.wsbe{word-spacing:1.396800px;}
.ws72{word-spacing:1.404000px;}
.ws114{word-spacing:1.411200px;}
.ws187{word-spacing:1.418400px;}
.ws186{word-spacing:1.432800px;}
.ws24d{word-spacing:1.447200px;}
.ws66{word-spacing:1.454400px;}
.ws24e{word-spacing:1.461600px;}
.ws19d{word-spacing:1.468800px;}
.ws62{word-spacing:1.605600px;}
.ws1db{word-spacing:1.656000px;}
.ws20c{word-spacing:1.663200px;}
.wsad{word-spacing:1.677600px;}
.ws49{word-spacing:1.684800px;}
.ws8c{word-spacing:1.692000px;}
.wsea{word-spacing:1.699200px;}
.wsac{word-spacing:1.706400px;}
.ws1de{word-spacing:1.713600px;}
.ws1ca{word-spacing:1.720800px;}
.ws11a{word-spacing:1.728000px;}
.ws53{word-spacing:1.735200px;}
.ws4d{word-spacing:1.742400px;}
.ws14{word-spacing:1.749600px;}
.ws31{word-spacing:1.764000px;}
.ws18f{word-spacing:1.771200px;}
.ws119{word-spacing:1.785600px;}
.ws193{word-spacing:1.792800px;}
.ws1f3{word-spacing:1.800000px;}
.ws190{word-spacing:1.836000px;}
.ws192{word-spacing:1.850400px;}
.ws191{word-spacing:1.893600px;}
.ws25c{word-spacing:1.951200px;}
.ws25d{word-spacing:1.965600px;}
.ws1cf{word-spacing:1.972800px;}
.wse8{word-spacing:1.994400px;}
.ws25b{word-spacing:2.001600px;}
.ws1a8{word-spacing:2.008800px;}
.ws1cc{word-spacing:2.037600px;}
.ws1c6{word-spacing:2.052000px;}
.ws1d8{word-spacing:2.059200px;}
.ws96{word-spacing:2.073600px;}
.ws25a{word-spacing:2.080800px;}
.ws78{word-spacing:2.088000px;}
.ws145{word-spacing:2.095200px;}
.wsb6{word-spacing:2.102400px;}
.ws74{word-spacing:2.109600px;}
.wse6{word-spacing:2.116800px;}
.ws51{word-spacing:2.124000px;}
.ws9c{word-spacing:2.131200px;}
.ws1d7{word-spacing:2.138400px;}
.ws2c{word-spacing:2.145600px;}
.ws1d0{word-spacing:2.160000px;}
.ws214{word-spacing:2.174400px;}
.ws281{word-spacing:2.181600px;}
.wsec{word-spacing:2.196000px;}
.ws282{word-spacing:2.275200px;}
.ws153{word-spacing:2.354400px;}
.ws1f2{word-spacing:2.368800px;}
.ws207{word-spacing:2.404800px;}
.ws59{word-spacing:2.426400px;}
.ws1dc{word-spacing:2.433600px;}
.wsfa{word-spacing:2.440800px;}
.ws69{word-spacing:2.462400px;}
.ws63{word-spacing:2.469600px;}
.ws1ce{word-spacing:2.476800px;}
.ws130{word-spacing:2.484000px;}
.ws5e{word-spacing:2.498400px;}
.ws1da{word-spacing:2.512800px;}
.wsc2{word-spacing:2.520000px;}
.ws144{word-spacing:2.548800px;}
.ws255{word-spacing:2.592000px;}
.ws1e1{word-spacing:2.633256px;}
.ws1df{word-spacing:2.639268px;}
.ws256{word-spacing:2.642400px;}
.ws249{word-spacing:2.664000px;}
.ws1e2{word-spacing:2.669328px;}
.ws1e0{word-spacing:2.675340px;}
.ws237{word-spacing:2.692800px;}
.ws1c7{word-spacing:2.700000px;}
.ws238{word-spacing:2.707200px;}
.ws194{word-spacing:2.714400px;}
.ws195{word-spacing:2.736000px;}
.ws196{word-spacing:2.743200px;}
.ws44{word-spacing:2.764800px;}
.ws1c8{word-spacing:2.779200px;}
.ws56{word-spacing:2.786400px;}
.ws8b{word-spacing:2.793600px;}
.wsb2{word-spacing:2.808000px;}
.ws123{word-spacing:2.815200px;}
.ws236{word-spacing:2.822400px;}
.wsc0{word-spacing:2.829600px;}
.ws157{word-spacing:2.836800px;}
.ws1b9{word-spacing:2.851200px;}
.ws16c{word-spacing:2.858400px;}
.wsc1{word-spacing:2.865600px;}
.wsb7{word-spacing:2.872800px;}
.ws1b8{word-spacing:2.887200px;}
.ws239{word-spacing:2.944800px;}
.ws128{word-spacing:3.103200px;}
.ws155{word-spacing:3.117600px;}
.ws24a{word-spacing:3.132000px;}
.ws12e{word-spacing:3.139200px;}
.ws11b{word-spacing:3.153600px;}
.ws9a{word-spacing:3.160800px;}
.ws1eb{word-spacing:3.168000px;}
.ws3b{word-spacing:3.175200px;}
.ws11c{word-spacing:3.196800px;}
.ws98{word-spacing:3.204000px;}
.ws116{word-spacing:3.211200px;}
.wscf{word-spacing:3.218400px;}
.ws101{word-spacing:3.247200px;}
.ws1fd{word-spacing:3.254400px;}
.ws273{word-spacing:3.434400px;}
.ws1d2{word-spacing:3.477600px;}
.ws17b{word-spacing:3.484800px;}
.ws29{word-spacing:3.492000px;}
.ws4b{word-spacing:3.499200px;}
.ws17a{word-spacing:3.506400px;}
.wse7{word-spacing:3.520800px;}
.ws28{word-spacing:3.528000px;}
.ws4a{word-spacing:3.535200px;}
.ws43{word-spacing:3.542400px;}
.ws212{word-spacing:3.549600px;}
.ws4c{word-spacing:3.556800px;}
.wsf1{word-spacing:3.564000px;}
.ws4e{word-spacing:3.571200px;}
.ws5c{word-spacing:3.578400px;}
.ws19{word-spacing:3.585600px;}
.ws17d{word-spacing:3.600000px;}
.ws17c{word-spacing:3.607200px;}
.ws250{word-spacing:3.614400px;}
.ws274{word-spacing:3.636000px;}
.ws1bb{word-spacing:3.780000px;}
.ws1ba{word-spacing:3.823200px;}
.ws1f8{word-spacing:3.837600px;}
.ws12f{word-spacing:3.844800px;}
.ws1b0{word-spacing:3.852000px;}
.ws64{word-spacing:3.859200px;}
.ws1af{word-spacing:3.866400px;}
.ws1b1{word-spacing:3.873600px;}
.ws79{word-spacing:3.880800px;}
.ws14d{word-spacing:3.888000px;}
.ws247{word-spacing:3.909600px;}
.ws248{word-spacing:3.924000px;}
.wsae{word-spacing:3.931200px;}
.ws1ee{word-spacing:3.938400px;}
.wse9{word-spacing:3.945600px;}
.ws1bc{word-spacing:3.952800px;}
.ws90{word-spacing:3.960000px;}
.ws1bd{word-spacing:3.967200px;}
.wsaf{word-spacing:3.981600px;}
.ws3f{word-spacing:4.016016px;}
.ws3e{word-spacing:4.082148px;}
.ws40{word-spacing:4.094172px;}
.ws1b7{word-spacing:4.154400px;}
.ws5d{word-spacing:4.226400px;}
.ws68{word-spacing:4.233600px;}
.ws208{word-spacing:4.240800px;}
.ws170{word-spacing:4.248000px;}
.ws1dd{word-spacing:4.255200px;}
.ws14b{word-spacing:4.262400px;}
.wsbd{word-spacing:4.276800px;}
.ws97{word-spacing:4.284000px;}
.ws103{word-spacing:4.298400px;}
.wsc5{word-spacing:4.298580px;}
.ws1ec{word-spacing:4.312800px;}
.wsc3{word-spacing:4.316616px;}
.ws1b6{word-spacing:4.320000px;}
.wsb8{word-spacing:4.327200px;}
.wsc4{word-spacing:4.394772px;}
.ws18c{word-spacing:4.399200px;}
.ws16e{word-spacing:4.442400px;}
.ws18b{word-spacing:4.456800px;}
.ws244{word-spacing:4.464000px;}
.ws245{word-spacing:4.485600px;}
.ws27d{word-spacing:4.492800px;}
.ws188{word-spacing:4.521600px;}
.ws189{word-spacing:4.528800px;}
.ws1f4{word-spacing:4.543200px;}
.ws18a{word-spacing:4.550400px;}
.ws65{word-spacing:4.572000px;}
.ws1be{word-spacing:4.579200px;}
.ws1bf{word-spacing:4.586400px;}
.ws1e9{word-spacing:4.593600px;}
.ws8e{word-spacing:4.600800px;}
.ws16{word-spacing:4.608000px;}
.ws92{word-spacing:4.615200px;}
.ws21d{word-spacing:4.622400px;}
.ws104{word-spacing:4.629600px;}
.wsb5{word-spacing:4.636800px;}
.ws15{word-spacing:4.644000px;}
.wse1{word-spacing:4.658400px;}
.ws205{word-spacing:4.680000px;}
.ws246{word-spacing:4.687200px;}
.ws27e{word-spacing:4.752000px;}
.ws7d{word-spacing:4.867200px;}
.wsda{word-spacing:4.874400px;}
.ws20a{word-spacing:4.910400px;}
.ws48{word-spacing:4.924800px;}
.ws230{word-spacing:4.946400px;}
.ws251{word-spacing:4.953600px;}
.ws6f{word-spacing:4.960800px;}
.ws67{word-spacing:4.968000px;}
.ws35{word-spacing:4.975200px;}
.ws95{word-spacing:4.982400px;}
.ws14a{word-spacing:4.989600px;}
.ws9e{word-spacing:5.004000px;}
.ws172{word-spacing:5.011200px;}
.wsdb{word-spacing:5.018400px;}
.wsb4{word-spacing:5.025600px;}
.ws252{word-spacing:5.032800px;}
.ws253{word-spacing:5.076000px;}
.ws254{word-spacing:5.097600px;}
.ws183{word-spacing:5.284800px;}
.ws129{word-spacing:5.292000px;}
.ws184{word-spacing:5.299200px;}
.ws18d{word-spacing:5.306400px;}
.ws1d1{word-spacing:5.313600px;}
.ws143{word-spacing:5.320800px;}
.ws6b{word-spacing:5.328000px;}
.ws24{word-spacing:5.335200px;}
.ws2f{word-spacing:5.342400px;}
.ws181{word-spacing:5.349600px;}
.ws140{word-spacing:5.356800px;}
.ws125{word-spacing:5.371200px;}
.ws182{word-spacing:5.378400px;}
.ws30{word-spacing:5.385600px;}
.wsfe{word-spacing:5.400000px;}
.ws18e{word-spacing:5.407200px;}
.ws1d6{word-spacing:5.472000px;}
.ws23f{word-spacing:5.515200px;}
.ws23e{word-spacing:5.536800px;}
.ws242{word-spacing:5.544000px;}
.ws241{word-spacing:5.558400px;}
.ws243{word-spacing:5.565600px;}
.ws24c{word-spacing:5.594400px;}
.ws84{word-spacing:5.601600px;}
.ws1a3{word-spacing:5.608800px;}
.ws1a4{word-spacing:5.616000px;}
.ws203{word-spacing:5.623200px;}
.ws151{word-spacing:5.630400px;}
.ws1f0{word-spacing:5.644800px;}
.ws1a5{word-spacing:5.652000px;}
.ws1a6{word-spacing:5.666400px;}
.ws81{word-spacing:5.673600px;}
.ws1d5{word-spacing:5.680800px;}
.ws20e{word-spacing:5.688000px;}
.ws10c{word-spacing:5.695200px;}
.ws99{word-spacing:5.702400px;}
.ws14e{word-spacing:5.709600px;}
.ws24b{word-spacing:5.716800px;}
.ws240{word-spacing:5.724000px;}
.ws231{word-spacing:5.731200px;}
.ws8a{word-spacing:5.738400px;}
.ws118{word-spacing:5.745600px;}
.wse0{word-spacing:5.752800px;}
.ws1b3{word-spacing:5.817600px;}
.ws1b5{word-spacing:5.976000px;}
.ws18{word-spacing:6.004800px;}
.ws1b4{word-spacing:6.019200px;}
.ws1ad{word-spacing:6.040800px;}
.ws1ac{word-spacing:6.048000px;}
.ws39{word-spacing:6.055200px;}
.ws32{word-spacing:6.069600px;}
.ws1b2{word-spacing:6.076800px;}
.ws1ab{word-spacing:6.084000px;}
.wsf2{word-spacing:6.091200px;}
.ws279{word-spacing:6.292800px;}
.ws6c{word-spacing:6.300000px;}
.wsba{word-spacing:6.357600px;}
.wsb9{word-spacing:6.379200px;}
.ws87{word-spacing:6.415200px;}
.wsce{word-spacing:6.422400px;}
.ws42{word-spacing:6.429600px;}
.ws50{word-spacing:6.436800px;}
.ws179{word-spacing:6.444000px;}
.ws177{word-spacing:6.451200px;}
.ws178{word-spacing:6.458400px;}
.ws6d{word-spacing:6.465600px;}
.ws107{word-spacing:6.472800px;}
.ws233{word-spacing:6.652800px;}
.ws174{word-spacing:6.703200px;}
.ws1f5{word-spacing:6.717600px;}
.ws206{word-spacing:6.775200px;}
.ws91{word-spacing:6.789600px;}
.ws26b{word-spacing:6.796800px;}
.ws12c{word-spacing:6.804000px;}
.ws21b{word-spacing:6.818400px;}
.ws161{word-spacing:6.825600px;}
.ws9f{word-spacing:6.832800px;}
.ws148{word-spacing:7.041600px;}
.ws25e{word-spacing:7.092000px;}
.ws25f{word-spacing:7.099200px;}
.ws2d{word-spacing:7.113600px;}
.ws73{word-spacing:7.120800px;}
.wsa1{word-spacing:7.128000px;}
.ws211{word-spacing:7.142400px;}
.ws262{word-spacing:7.156800px;}
.ws260{word-spacing:7.164000px;}
.ws261{word-spacing:7.171200px;}
.ws142{word-spacing:7.200000px;}
.ws149{word-spacing:7.243200px;}
.ws15b{word-spacing:7.300800px;}
.ws15c{word-spacing:7.322400px;}
.ws15d{word-spacing:7.380000px;}
.ws15f{word-spacing:7.416000px;}
.ws15e{word-spacing:7.430400px;}
.ws2b{word-spacing:7.444800px;}
.ws6e{word-spacing:7.466400px;}
.ws20b{word-spacing:7.502400px;}
.ws46{word-spacing:7.516800px;}
.ws15a{word-spacing:7.567200px;}
.ws112{word-spacing:7.581600px;}
.ws1e5{word-spacing:7.593156px;}
.ws266{word-spacing:7.617600px;}
.ws1e3{word-spacing:7.629228px;}
.ws1e4{word-spacing:7.731432px;}
.ws1ed{word-spacing:7.804800px;}
.ws209{word-spacing:7.812000px;}
.ws1ef{word-spacing:7.862400px;}
.ws219{word-spacing:7.869600px;}
.ws141{word-spacing:7.876800px;}
.ws75{word-spacing:7.884000px;}
.wsf3{word-spacing:7.891200px;}
.ws94{word-spacing:7.927200px;}
.ws269{word-spacing:8.071200px;}
.ws218{word-spacing:8.085600px;}
.ws45{word-spacing:8.150400px;}
.ws2e{word-spacing:8.157600px;}
.wsbc{word-spacing:8.179200px;}
.ws12d{word-spacing:8.200800px;}
.wsbb{word-spacing:8.222400px;}
.ws210{word-spacing:8.236800px;}
.ws102{word-spacing:8.265600px;}
.ws1e6{word-spacing:8.362692px;}
.ws14c{word-spacing:8.510400px;}
.ws9d{word-spacing:8.553600px;}
.ws6a{word-spacing:8.568000px;}
.ws126{word-spacing:8.582400px;}
.ws1f9{word-spacing:8.589600px;}
.ws5f{word-spacing:8.920800px;}
.ws22{word-spacing:8.949600px;}
.ws258{word-spacing:8.956800px;}
.ws257{word-spacing:8.971200px;}
.ws111{word-spacing:8.985600px;}
.ws259{word-spacing:9.057600px;}
.ws108{word-spacing:9.230400px;}
.ws55{word-spacing:9.266400px;}
.ws57{word-spacing:9.295200px;}
.ws146{word-spacing:9.316800px;}
.wscd{word-spacing:9.324000px;}
.ws120{word-spacing:9.338400px;}
.ws22d{word-spacing:9.453600px;}
.ws122{word-spacing:9.590400px;}
.ws23{word-spacing:9.640800px;}
.wsa2{word-spacing:9.655200px;}
.ws21c{word-spacing:9.669600px;}
.ws12a{word-spacing:9.684000px;}
.ws1cb{word-spacing:10.000800px;}
.ws27c{word-spacing:10.022400px;}
.ws58{word-spacing:10.036800px;}
.ws71{word-spacing:10.051200px;}
.ws202{word-spacing:10.065600px;}
.ws201{word-spacing:10.072800px;}
.ws158{word-spacing:10.209600px;}
.wsd4{word-spacing:10.296000px;}
.ws89{word-spacing:10.303200px;}
.wsfb{word-spacing:10.368000px;}
.ws159{word-spacing:10.375200px;}
.wsb1{word-spacing:10.411200px;}
.wsb0{word-spacing:10.432800px;}
.ws7a{word-spacing:10.728000px;}
.ws1d3{word-spacing:10.778400px;}
.ws6{word-spacing:10.815540px;}
.wsdd{word-spacing:10.994400px;}
.ws19e{word-spacing:11.001600px;}
.ws19f{word-spacing:11.008800px;}
.ws1a1{word-spacing:11.016000px;}
.ws1a0{word-spacing:11.030400px;}
.ws1c9{word-spacing:11.066400px;}
.ws12b{word-spacing:11.102400px;}
.ws20f{word-spacing:11.109600px;}
.ws17e{word-spacing:11.131200px;}
.ws1f7{word-spacing:11.145600px;}
.ws180{word-spacing:11.181600px;}
.ws17f{word-spacing:11.196000px;}
.wsdc{word-spacing:11.239128px;}
.ws26f{word-spacing:11.440800px;}
.ws105{word-spacing:11.469600px;}
.ws10a{word-spacing:11.491200px;}
.ws10d{word-spacing:11.786400px;}
.ws213{word-spacing:11.808000px;}
.ws100{word-spacing:11.815200px;}
.ws10b{word-spacing:11.822400px;}
.ws117{word-spacing:12.117600px;}
.ws17{word-spacing:12.196800px;}
.ws20d{word-spacing:12.477600px;}
.ws3c{word-spacing:13.212000px;}
.ws22e{word-spacing:13.291200px;}
.ws267{word-spacing:13.528800px;}
.ws5a{word-spacing:13.564800px;}
.wsf8{word-spacing:13.600800px;}
.ws26a{word-spacing:13.615200px;}
.ws156{word-spacing:13.658400px;}
.wsd2{word-spacing:13.680000px;}
.ws268{word-spacing:14.184000px;}
.ws1fa{word-spacing:14.284800px;}
.ws232{word-spacing:14.702400px;}
.ws217{word-spacing:14.709600px;}
.ws21a{word-spacing:14.738400px;}
.ws22c{word-spacing:14.760000px;}
.ws26e{word-spacing:14.767200px;}
.ws173{word-spacing:15.012000px;}
.wsdf{word-spacing:15.523200px;}
.wsd{word-spacing:15.768000px;}
.wsf6{word-spacing:15.775200px;}
.wsfc{word-spacing:15.811200px;}
.wse{word-spacing:16.495200px;}
.wsf9{word-spacing:16.524000px;}
.wsf5{word-spacing:16.898400px;}
.ws13{word-spacing:16.905600px;}
.ws265{word-spacing:17.805600px;}
.ws215{word-spacing:18.259200px;}
.ws270{word-spacing:20.239200px;}
.wsff{word-spacing:20.822400px;}
.ws14f{word-spacing:21.902400px;}
.ws171{word-spacing:21.938400px;}
.ws154{word-spacing:22.608000px;}
.ws26d{word-spacing:23.450400px;}
.ws109{word-spacing:24.451200px;}
.ws27b{word-spacing:24.580800px;}
.wsf7{word-spacing:24.724800px;}
.wsa{word-spacing:24.804000px;}
.ws27a{word-spacing:24.832800px;}
.ws10e{word-spacing:26.136000px;}
.ws110{word-spacing:26.625600px;}
.ws175{word-spacing:26.640000px;}
.ws26c{word-spacing:27.230400px;}
.wsb3{word-spacing:27.727200px;}
.wsab{word-spacing:27.734400px;}
.ws150{word-spacing:28.850400px;}
.ws176{word-spacing:30.549600px;}
.ws278{word-spacing:33.588000px;}
.ws277{word-spacing:33.616800px;}
.ws272{word-spacing:54.619200px;}
.ws271{word-spacing:54.741600px;}
.wsfd{word-spacing:56.116800px;}
.wsd5{word-spacing:60.556896px;}
.wsd6{word-spacing:60.753600px;}
.ws135{word-spacing:93.064752px;}
.ws10f{word-spacing:125.488800px;}
._9e{margin-left:-2211.717600px;}
._9{margin-left:-1576.015200px;}
._e{margin-left:-1571.788800px;}
._bc{margin-left:-1484.827200px;}
._30{margin-left:-1477.720800px;}
._39{margin-left:-1463.018400px;}
._c9{margin-left:-1411.034400px;}
._86{margin-left:-1330.250400px;}
._8{margin-left:-1314.231840px;}
._c{margin-left:-1311.991200px;}
._89{margin-left:-1286.712000px;}
._7e{margin-left:-1285.322400px;}
._4d{margin-left:-1274.025600px;}
._7{margin-left:-1266.913800px;}
._27{margin-left:-1255.140000px;}
._9f{margin-left:-1207.784808px;}
._e2{margin-left:-1186.200000px;}
._85{margin-left:-1128.254400px;}
._36{margin-left:-1123.617600px;}
._8b{margin-left:-1110.742200px;}
._40{margin-left:-1106.107200px;}
._a3{margin-left:-1099.202400px;}
._e0{margin-left:-1088.301600px;}
._3f{margin-left:-1048.665600px;}
._61{margin-left:-1043.683200px;}
._8c{margin-left:-1002.175200px;}
._dd{margin-left:-994.039200px;}
._e1{margin-left:-978.091200px;}
._59{margin-left:-973.699200px;}
._71{margin-left:-960.120000px;}
._b2{margin-left:-956.462400px;}
._32{margin-left:-954.417600px;}
._6f{margin-left:-947.037600px;}
._95{margin-left:-941.594400px;}
._dc{margin-left:-938.793600px;}
._88{margin-left:-931.041000px;}
._3a{margin-left:-923.882400px;}
._96{margin-left:-921.420000px;}
._f{margin-left:-896.054400px;}
._53{margin-left:-892.166400px;}
._a4{margin-left:-879.163200px;}
._e3{margin-left:-872.020800px;}
._49{margin-left:-860.450400px;}
._a{margin-left:-840.412800px;}
._90{margin-left:-821.210400px;}
._b6{margin-left:-805.658400px;}
._b{margin-left:-792.381600px;}
._db{margin-left:-790.372800px;}
._c0{margin-left:-783.187200px;}
._d7{margin-left:-779.443200px;}
._b3{margin-left:-760.608000px;}
._79{margin-left:-756.597600px;}
._3d{margin-left:-741.535200px;}
._a8{margin-left:-722.579400px;}
._41{margin-left:-715.838400px;}
._5f{margin-left:-710.416800px;}
._ba{margin-left:-708.957000px;}
._a0{margin-left:-699.601140px;}
._b5{margin-left:-689.587200px;}
._4c{margin-left:-688.564800px;}
._16{margin-left:-684.748800px;}
._2c{margin-left:-683.157600px;}
._92{margin-left:-678.924000px;}
._a2{margin-left:-670.896000px;}
._94{margin-left:-667.373400px;}
._d4{margin-left:-665.877600px;}
._7b{margin-left:-658.224000px;}
._46{margin-left:-655.336800px;}
._3e{margin-left:-650.952000px;}
._58{margin-left:-646.552800px;}
._ac{margin-left:-645.422400px;}
._2f{margin-left:-640.591200px;}
._bb{margin-left:-636.732000px;}
._b9{margin-left:-632.894400px;}
._51{margin-left:-627.609600px;}
._d6{margin-left:-620.344800px;}
._b8{margin-left:-614.916000px;}
._14{margin-left:-612.165600px;}
._84{margin-left:-603.316800px;}
._98{margin-left:-600.444000px;}
._70{margin-left:-598.896000px;}
._7a{margin-left:-594.108000px;}
._93{margin-left:-591.321600px;}
._d8{margin-left:-582.660000px;}
._21{margin-left:-571.888800px;}
._bf{margin-left:-547.941600px;}
._4a{margin-left:-538.257600px;}
._d2{margin-left:-522.849600px;}
._8e{margin-left:-504.232200px;}
._4f{margin-left:-502.531200px;}
._55{margin-left:-497.111400px;}
._48{margin-left:-486.295200px;}
._c7{margin-left:-485.157600px;}
._6b{margin-left:-472.147200px;}
._1a{margin-left:-466.884000px;}
._11{margin-left:-464.421600px;}
._81{margin-left:-458.589600px;}
._a9{margin-left:-451.584000px;}
._b1{margin-left:-443.505600px;}
._64{margin-left:-439.524000px;}
._2e{margin-left:-437.515200px;}
._62{margin-left:-436.406400px;}
._7c{margin-left:-433.353600px;}
._cc{margin-left:-407.453400px;}
._cb{margin-left:-405.963000px;}
._df{margin-left:-390.715200px;}
._af{margin-left:-368.503200px;}
._c8{margin-left:-366.012000px;}
._d0{margin-left:-362.001600px;}
._2b{margin-left:-360.727200px;}
._18{margin-left:-359.006400px;}
._a5{margin-left:-356.616000px;}
._ca{margin-left:-353.986200px;}
._ab{margin-left:-351.684000px;}
._d9{margin-left:-350.085600px;}
._54{margin-left:-330.062400px;}
._8f{margin-left:-328.159800px;}
._cf{margin-left:-326.304000px;}
._bd{margin-left:-322.747200px;}
._31{margin-left:-320.997600px;}
._b7{margin-left:-318.268800px;}
._99{margin-left:-311.680800px;}
._6d{margin-left:-309.420000px;}
._c4{margin-left:-308.097000px;}
._da{margin-left:-304.156800px;}
._d1{margin-left:-301.816800px;}
._74{margin-left:-300.067200px;}
._c2{margin-left:-291.535200px;}
._44{margin-left:-289.245600px;}
._b0{margin-left:-287.562600px;}
._82{margin-left:-285.249600px;}
._80{margin-left:-282.002400px;}
._42{margin-left:-279.518400px;}
._12{margin-left:-276.616800px;}
._c5{margin-left:-275.544000px;}
._ae{margin-left:-271.936800px;}
._35{margin-left:-265.068000px;}
._65{margin-left:-259.428600px;}
._c1{margin-left:-256.521600px;}
._be{margin-left:-253.864800px;}
._29{margin-left:-252.633600px;}
._c6{margin-left:-251.301600px;}
._a6{margin-left:-249.235200px;}
._ce{margin-left:-247.291200px;}
._aa{margin-left:-245.361600px;}
._77{margin-left:-242.764200px;}
._73{margin-left:-240.220800px;}
._97{margin-left:-237.355200px;}
._a1{margin-left:-234.136800px;}
._26{margin-left:-232.092000px;}
._2d{margin-left:-228.736800px;}
._ad{margin-left:-227.491200px;}
._91{margin-left:-225.756000px;}
._c3{margin-left:-223.509600px;}
._66{margin-left:-222.400800px;}
._20{margin-left:-220.111200px;}
._6a{margin-left:-218.903400px;}
._72{margin-left:-217.490400px;}
._1c{margin-left:-215.388000px;}
._87{margin-left:-212.580000px;}
._7d{margin-left:-210.175200px;}
._4e{margin-left:-207.000000px;}
._9b{margin-left:-202.867200px;}
._de{margin-left:-200.169000px;}
._5a{margin-left:-198.115200px;}
._d3{margin-left:-187.812000px;}
._1e{margin-left:-184.154400px;}
._17{margin-left:-177.805800px;}
._57{margin-left:-170.524800px;}
._5b{margin-left:-167.185800px;}
._34{margin-left:-164.786400px;}
._50{margin-left:-160.567200px;}
._7f{margin-left:-154.391400px;}
._10{margin-left:-152.302932px;}
._9a{margin-left:-150.048000px;}
._68{margin-left:-148.887000px;}
._d5{margin-left:-147.506400px;}
._3c{margin-left:-146.138400px;}
._a7{margin-left:-136.459800px;}
._19{margin-left:-135.007200px;}
._8d{margin-left:-131.378400px;}
._75{margin-left:-129.097800px;}
._52{margin-left:-128.088000px;}
._6c{margin-left:-112.989600px;}
._3b{margin-left:-111.074400px;}
._5d{margin-left:-109.346400px;}
._47{margin-left:-108.115200px;}
._37{margin-left:-105.861600px;}
._63{margin-left:-104.279400px;}
._9c{margin-left:-102.765600px;}
._cd{margin-left:-101.188800px;}
._4b{margin-left:-100.103400px;}
._15{margin-left:-99.079200px;}
._69{margin-left:-97.099200px;}
._38{margin-left:-91.461600px;}
._25{margin-left:-87.969600px;}
._2a{margin-left:-83.383200px;}
._6e{margin-left:-82.008000px;}
._5c{margin-left:-77.047200px;}
._67{margin-left:-73.036800px;}
._b4{margin-left:-67.867200px;}
._45{margin-left:-59.970600px;}
._43{margin-left:-56.556000px;}
._60{margin-left:-54.928800px;}
._5e{margin-left:-53.130600px;}
._1f{margin-left:-36.050400px;}
._1b{margin-left:-32.673600px;}
._56{margin-left:-30.866400px;}
._13{margin-left:-24.508800px;}
._83{margin-left:-20.808000px;}
._76{margin-left:-19.792800px;}
._1d{margin-left:-9.568800px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.020600px;}
._5{width:1.036800px;}
._1{width:2.262000px;}
._e6{width:4.716000px;}
._24{width:6.033600px;}
._23{width:7.912800px;}
._4{width:13.940388px;}
._28{width:15.681600px;}
._3{width:18.010512px;}
._8a{width:20.692800px;}
._6{width:21.924000px;}
._e4{width:26.632800px;}
._22{width:29.844000px;}
._9d{width:31.420800px;}
._78{width:39.312000px;}
._e5{width:44.186400px;}
._33{width:144.015000px;}
._d{width:176.143800px;}
.fc4{color:transparent;}
.fc3{color:rgb(59,75,167);}
.fc2{color:rgb(251,201,7);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(145,143,143);}
.fs8{font-size:38.880000px;}
.fs3{font-size:47.880000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs9{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y57{bottom:0.013500px;}
.y28b{bottom:0.089850px;}
.y1c{bottom:43.341300px;}
.y2dc{bottom:108.230400px;}
.y1b2{bottom:110.081100px;}
.y20e{bottom:126.930099px;}
.y3e{bottom:126.938877px;}
.y2db{bottom:128.930400px;}
.y2b6{bottom:130.090350px;}
.y2b7{bottom:130.103850px;}
.y28a{bottom:130.543500px;}
.y28c{bottom:130.633350px;}
.y289{bottom:130.638690px;}
.y18b{bottom:131.712450px;}
.y1b1{bottom:133.871700px;}
.y1d8{bottom:142.848600px;}
.y68{bottom:144.763800px;}
.y20d{bottom:146.434530px;}
.y163{bottom:146.838300px;}
.y231{bottom:148.541550px;}
.y117{bottom:148.626750px;}
.y2da{bottom:149.630400px;}
.y288{bottom:150.433200px;}
.y2b5{bottom:153.900600px;}
.y18a{bottom:155.472450px;}
.y3d{bottom:156.971850px;}
.y1b0{bottom:157.662300px;}
.y140{bottom:161.953500px;}
.y20c{bottom:165.938961px;}
.y1d7{bottom:166.648200px;}
.yaa{bottom:168.255000px;}
.y67{bottom:168.568800px;}
.y162{bottom:170.657700px;}
.y24f{bottom:171.037500px;}
.y8b{bottom:171.222900px;}
.y230{bottom:172.346550px;}
.y116{bottom:172.426350px;}
.y1ea{bottom:176.983650px;}
.y2b4{bottom:177.700200px;}
.y1af{bottom:181.452900px;}
.y2d9{bottom:185.270400px;}
.y13f{bottom:185.749500px;}
.y20b{bottom:186.911850px;}
.y1d6{bottom:190.447800px;}
.y66{bottom:192.373800px;}
.y189{bottom:194.262450px;}
.y161{bottom:194.477100px;}
.y24e{bottom:194.842500px;}
.y8a{bottom:195.027900px;}
.y22f{bottom:196.151550px;}
.y115{bottom:196.225950px;}
.y1dc{bottom:200.833650px;}
.y1ae{bottom:205.243500px;}
.ya9{bottom:205.335000px;}
.y2d8{bottom:205.970400px;}
.y13e{bottom:209.545500px;}
.y1d5{bottom:214.247400px;}
.y65{bottom:216.178800px;}
.y2b3{bottom:216.574800px;}
.y188{bottom:218.081850px;}
.y160{bottom:218.296500px;}
.y24d{bottom:218.647500px;}
.y89{bottom:218.832900px;}
.y114{bottom:220.025550px;}
.ya8{bottom:225.945000px;}
.y2d7{bottom:226.670400px;}
.y1db{bottom:228.913650px;}
.y22e{bottom:231.791550px;}
.y26e{bottom:233.227950px;}
.y13d{bottom:233.341500px;}
.y1d3{bottom:238.033500px;}
.y1d4{bottom:238.047000px;}
.y64{bottom:239.983800px;}
.y2b2{bottom:240.374400px;}
.y187{bottom:241.901250px;}
.y24b{bottom:242.439000px;}
.y24c{bottom:242.452500px;}
.y88{bottom:242.637900px;}
.yeb{bottom:243.480000px;}
.yec{bottom:243.493500px;}
.y113{bottom:243.825150px;}
.y1ad{bottom:244.123500px;}
.ycb{bottom:252.493050px;}
.y26d{bottom:257.032950px;}
.y15f{bottom:257.086500px;}
.y13b{bottom:257.124000px;}
.y13c{bottom:257.137500px;}
.y3c{bottom:260.685000px;}
.y1d2{bottom:261.845250px;}
.y2d6{bottom:262.400400px;}
.ya7{bottom:263.025000px;}
.y63{bottom:263.788800px;}
.y2b0{bottom:264.171600px;}
.y2b1{bottom:264.174000px;}
.y186{bottom:265.720650px;}
.y24a{bottom:266.259300px;}
.y87{bottom:266.442900px;}
.yf0{bottom:267.253500px;}
.yea{bottom:267.253650px;}
.y20a{bottom:267.613650px;}
.y112{bottom:267.624750px;}
.y1ac{bottom:267.883500px;}
.y1e9{bottom:267.973650px;}
.y22d{bottom:270.671550px;}
.yca{bottom:276.289050px;}
.y26c{bottom:280.837950px;}
.y15e{bottom:280.891500px;}
.y13a{bottom:280.934100px;}
.y2d5{bottom:283.100400px;}
.ya6{bottom:283.635000px;}
.y3b{bottom:284.535000px;}
.y1d1{bottom:285.644850px;}
.y62{bottom:287.593800px;}
.y2af{bottom:287.971200px;}
.y249{bottom:290.064300px;}
.yef{bottom:291.103500px;}
.ye9{bottom:291.103650px;}
.y209{bottom:291.373650px;}
.y111{bottom:291.424350px;}
.y1e8{bottom:291.733650px;}
.y1a{bottom:293.353050px;}
.y22c{bottom:294.485550px;}
.y141{bottom:297.493650px;}
.yc9{bottom:300.085050px;}
.y1ab{bottom:304.423650px;}
.y185{bottom:304.510650px;}
.y26b{bottom:304.642950px;}
.y139{bottom:304.694100px;}
.y15d{bottom:304.696500px;}
.y86{bottom:305.232900px;}
.y3a{bottom:308.295000px;}
.y1d0{bottom:309.444450px;}
.y61{bottom:311.398800px;}
.y2ae{bottom:311.770800px;}
.y248{bottom:313.869300px;}
.yee{bottom:314.863500px;}
.ye8{bottom:314.863650px;}
.y110{bottom:315.223950px;}
.y1aa{bottom:315.495150px;}
.y1da{bottom:315.583650px;}
.y22b{bottom:318.299550px;}
.y19{bottom:318.373050px;}
.y2d4{bottom:318.830400px;}
.ya5{bottom:320.715000px;}
.yc8{bottom:323.881050px;}
.y184{bottom:328.315650px;}
.y26a{bottom:328.447950px;}
.y138{bottom:328.544100px;}
.y85{bottom:329.028900px;}
.y207{bottom:330.150150px;}
.y208{bottom:330.163650px;}
.y39{bottom:332.145000px;}
.y60{bottom:335.203800px;}
.y2ad{bottom:335.570400px;}
.yed{bottom:338.713500px;}
.ye7{bottom:338.713650px;}
.y1a9{bottom:339.255150px;}
.y2d3{bottom:339.530400px;}
.ya4{bottom:341.415000px;}
.y22a{bottom:342.113550px;}
.y15c{bottom:343.486500px;}
.yc7{bottom:347.677050px;}
.y1cf{bottom:348.324450px;}
.y1e7{bottom:350.499150px;}
.y183{bottom:352.120650px;}
.y269{bottom:352.252950px;}
.y137{bottom:352.304100px;}
.y247{bottom:352.659300px;}
.y84{bottom:352.824900px;}
.y206{bottom:354.014550px;}
.y38{bottom:355.905000px;}
.y5f{bottom:359.008800px;}
.y2ac{bottom:359.370000px;}
.ya3{bottom:362.025000px;}
.y1a8{bottom:363.105150px;}
.y229{bottom:365.927550px;}
.y15b{bottom:367.291500px;}
.y1d9{bottom:367.783650px;}
.ye6{bottom:368.053650px;}
.yc6{bottom:371.473050px;}
.y1ce{bottom:372.120450px;}
.y2d2{bottom:375.170400px;}
.y182{bottom:375.925650px;}
.y268{bottom:376.057950px;}
.y246{bottom:376.464300px;}
.y83{bottom:376.620900px;}
.y205{bottom:377.774550px;}
.y18{bottom:377.953050px;}
.y5e{bottom:382.813800px;}
.y2ab{bottom:383.169600px;}
.y1a7{bottom:386.865150px;}
.y228{bottom:389.741550px;}
.y15a{bottom:391.096500px;}
.y136{bottom:391.184100px;}
.ya2{bottom:392.805000px;}
.y37{bottom:394.695000px;}
.yf9{bottom:395.593800px;}
.y2d1{bottom:395.870400px;}
.y1cd{bottom:395.916450px;}
.y17{bottom:398.653050px;}
.y181{bottom:399.730650px;}
.y245{bottom:400.269300px;}
.y82{bottom:400.416900px;}
.y204{bottom:401.624550px;}
.y10f{bottom:402.523950px;}
.y5d{bottom:406.618800px;}
.yc5{bottom:410.263050px;}
.y1a6{bottom:410.715150px;}
.y267{bottom:414.937950px;}
.y135{bottom:414.944100px;}
.y2d0{bottom:416.570400px;}
.y36{bottom:418.545000px;}
.y16{bottom:419.353050px;}
.y1cc{bottom:419.712450px;}
.y2aa{bottom:421.959600px;}
.y244{bottom:424.074300px;}
.y81{bottom:424.212900px;}
.y203{bottom:425.384550px;}
.y227{bottom:428.531550px;}
.y159{bottom:429.886500px;}
.y5c{bottom:430.423800px;}
.yde{bottom:430.785000px;}
.ya1{bottom:431.775000px;}
.yc4{bottom:434.068050px;}
.y1a5{bottom:434.475150px;}
.yf8{bottom:437.353950px;}
.y10e{bottom:438.343950px;}
.y180{bottom:438.520650px;}
.y134{bottom:438.704100px;}
.y266{bottom:438.728550px;}
.y15{bottom:440.053050px;}
.y35{bottom:442.305000px;}
.y1cb{bottom:443.508450px;}
.y2a9{bottom:445.761000px;}
.y243{bottom:447.879300px;}
.y202{bottom:449.234550px;}
.y2cf{bottom:452.300400px;}
.y226{bottom:452.327550px;}
.ya0{bottom:452.385000px;}
.y158{bottom:453.705900px;}
.y5a{bottom:454.215300px;}
.y5b{bottom:454.228800px;}
.ydd{bottom:454.545000px;}
.yc3{bottom:457.873050px;}
.y1a4{bottom:458.325150px;}
.y14{bottom:459.977100px;}
.y17f{bottom:462.325650px;}
.y265{bottom:462.519150px;}
.y133{bottom:462.554100px;}
.y80{bottom:463.002900px;}
.y34{bottom:466.155000px;}
.y1ca{bottom:467.304450px;}
.y2a8{bottom:469.560600px;}
.y2ce{bottom:473.000400px;}
.y10d{bottom:474.073950px;}
.y225{bottom:476.123550px;}
.y157{bottom:477.525300px;}
.y58{bottom:478.020450px;}
.y59{bottom:478.033950px;}
.ydc{bottom:478.395000px;}
.yf7{bottom:479.293950px;}
.y13{bottom:481.454700px;}
.yc2{bottom:481.678050px;}
.y1a3{bottom:482.085150px;}
.y242{bottom:483.519300px;}
.y17e{bottom:486.130650px;}
.y264{bottom:486.309750px;}
.y132{bottom:486.314100px;}
.y7f{bottom:486.822300px;}
.y201{bottom:488.024550px;}
.y9f{bottom:489.465000px;}
.y33{bottom:489.915000px;}
.y2a7{bottom:493.362000px;}
.y2cd{bottom:493.700400px;}
.y224{bottom:499.919550px;}
.y156{bottom:501.344700px;}
.y56{bottom:501.830400px;}
.y12{bottom:502.154700px;}
.ydb{bottom:502.155000px;}
.yc1{bottom:505.483050px;}
.y1a2{bottom:505.935150px;}
.y1c8{bottom:506.080950px;}
.y1c9{bottom:506.094450px;}
.y10c{bottom:509.713950px;}
.y9e{bottom:510.075000px;}
.y263{bottom:510.100350px;}
.y131{bottom:510.164100px;}
.y7e{bottom:510.641700px;}
.y200{bottom:511.784550px;}
.y32{bottom:513.765000px;}
.y285{bottom:516.279600px;}
.y2a6{bottom:517.161600px;}
.y241{bottom:522.399300px;}
.y223{bottom:523.715550px;}
.y17d{bottom:524.920650px;}
.y55{bottom:525.635400px;}
.yda{bottom:526.005000px;}
.y11{bottom:527.174700px;}
.y2cc{bottom:529.340400px;}
.y1a1{bottom:529.695150px;}
.y1c7{bottom:529.901100px;}
.y10b{bottom:530.414250px;}
.y262{bottom:533.890950px;}
.y130{bottom:533.924100px;}
.y7d{bottom:534.461100px;}
.y1ff{bottom:535.634550px;}
.y31{bottom:537.525000px;}
.y155{bottom:539.954700px;}
.y284{bottom:540.129600px;}
.y2a5{bottom:540.963000px;}
.yc0{bottom:544.273050px;}
.y240{bottom:546.200700px;}
.y9d{bottom:547.155000px;}
.y222{bottom:547.511550px;}
.y17c{bottom:548.680650px;}
.y54{bottom:549.440400px;}
.yd9{bottom:549.765000px;}
.y2cb{bottom:550.040400px;}
.y1a0{bottom:553.545150px;}
.y1c6{bottom:553.706100px;}
.y261{bottom:557.681550px;}
.y12f{bottom:557.774100px;}
.y1fe{bottom:559.394550px;}
.y30{bottom:561.375000px;}
.y7c{bottom:563.801100px;}
.y2a3{bottom:564.749100px;}
.y2a4{bottom:564.762600px;}
.y10a{bottom:565.964250px;}
.y9c{bottom:567.765000px;}
.ybf{bottom:568.078050px;}
.y23e{bottom:569.988600px;}
.y23f{bottom:570.002100px;}
.y2ca{bottom:570.740400px;}
.y53{bottom:573.245400px;}
.yd8{bottom:573.615000px;}
.y19f{bottom:577.305150px;}
.y1c5{bottom:577.511100px;}
.y283{bottom:578.919600px;}
.y154{bottom:578.924700px;}
.y12e{bottom:581.534100px;}
.y1fd{bottom:583.244550px;}
.y221{bottom:586.301550px;}
.y109{bottom:586.664250px;}
.y17b{bottom:587.380650px;}
.y2a2{bottom:588.561450px;}
.ybe{bottom:591.883050px;}
.y10{bottom:592.694700px;}
.y23d{bottom:593.811150px;}
.y260{bottom:596.561550px;}
.yd7{bottom:597.375000px;}
.y2f{bottom:600.165000px;}
.y19e{bottom:601.155150px;}
.y1c4{bottom:601.316100px;}
.y282{bottom:602.721000px;}
.y153{bottom:602.729700px;}
.y9b{bottom:604.845000px;}
.y2c9{bottom:606.470400px;}
.y1fc{bottom:607.004550px;}
.y108{bottom:607.364250px;}
.y142{bottom:607.994100px;}
.y220{bottom:610.111950px;}
.y52{bottom:612.035400px;}
.y2a1{bottom:612.362850px;}
.ybd{bottom:615.688050px;}
.y23c{bottom:617.612550px;}
.yf{bottom:617.714700px;}
.y12d{bottom:620.324250px;}
.y25f{bottom:620.352150px;}
.yd6{bottom:621.225000px;}
.y2e{bottom:623.925000px;}
.y19d{bottom:624.915150px;}
.y1c3{bottom:625.121100px;}
.y9a{bottom:625.455000px;}
.y17a{bottom:626.350650px;}
.y281{bottom:626.522400px;}
.y7b{bottom:626.527950px;}
.y152{bottom:626.534700px;}
.y21f{bottom:633.922350px;}
.y1fb{bottom:635.174550px;}
.y51{bottom:635.833200px;}
.y2a0{bottom:636.164250px;}
.ybc{bottom:639.493050px;}
.y12c{bottom:641.024250px;}
.y23b{bottom:641.413950px;}
.y2c8{bottom:642.200400px;}
.y107{bottom:643.184250px;}
.y25e{bottom:644.142750px;}
.yd5{bottom:644.985000px;}
.y2d{bottom:647.775000px;}
.y19c{bottom:648.765150px;}
.y1c2{bottom:648.926100px;}
.y178{bottom:650.136750px;}
.y179{bottom:650.150250px;}
.y280{bottom:650.323800px;}
.y7a{bottom:650.332950px;}
.y21e{bottom:657.732750px;}
.y50{bottom:659.631000px;}
.y12b{bottom:661.724250px;}
.y99{bottom:662.535000px;}
.y2c7{bottom:662.900400px;}
.ybb{bottom:663.298050px;}
.y106{bottom:663.884250px;}
.y23a{bottom:665.215350px;}
.y151{bottom:665.324700px;}
.y25d{bottom:667.933350px;}
.yd4{bottom:668.835000px;}
.y2c{bottom:671.535000px;}
.y177{bottom:673.948800px;}
.y27f{bottom:674.125200px;}
.y79{bottom:674.137950px;}
.y1fa{bottom:674.144550px;}
.y29f{bottom:674.954250px;}
.y19b{bottom:676.845150px;}
.y21d{bottom:681.543150px;}
.y12a{bottom:682.424400px;}
.y98{bottom:683.145000px;}
.ye{bottom:683.324700px;}
.y4f{bottom:683.428800px;}
.y2c6{bottom:683.600400px;}
.y105{bottom:684.944400px;}
.yba{bottom:687.103050px;}
.y1c1{bottom:687.716100px;}
.y239{bottom:689.016750px;}
.y150{bottom:689.120700px;}
.y25c{bottom:691.723950px;}
.yd3{bottom:692.595000px;}
.y2b{bottom:695.385000px;}
.y175{bottom:697.734900px;}
.y176{bottom:697.748400px;}
.y1f9{bottom:697.904550px;}
.y27e{bottom:697.926600px;}
.y78{bottom:697.942950px;}
.y29c{bottom:698.804700px;}
.y129{bottom:703.124400px;}
.yd{bottom:704.024700px;}
.y21c{bottom:705.353550px;}
.y104{bottom:705.644400px;}
.y4e{bottom:707.226600px;}
.y29e{bottom:707.539890px;}
.y1c0{bottom:708.646500px;}
.yb9{bottom:710.908050px;}
.y287{bottom:711.590853px;}
.ye5{bottom:712.034400px;}
.y238{bottom:712.818150px;}
.y14f{bottom:712.916700px;}
.y25b{bottom:715.514550px;}
.y19a{bottom:715.815150px;}
.ycc{bottom:716.444400px;}
.yd2{bottom:716.445000px;}
.y2a{bottom:719.145000px;}
.y2c5{bottom:719.240400px;}
.y97{bottom:720.225000px;}
.y174{bottom:721.545750px;}
.y27d{bottom:721.728000px;}
.y77{bottom:721.747950px;}
.y29b{bottom:722.564700px;}
.y128{bottom:723.824400px;}
.yc{bottom:724.724700px;}
.y103{bottom:726.344400px;}
.y29d{bottom:727.334400px;}
.y21b{bottom:729.163950px;}
.y1bf{bottom:729.576900px;}
.y4d{bottom:731.024400px;}
.y286{bottom:731.654400px;}
.yb8{bottom:734.713050px;}
.y237{bottom:736.619550px;}
.y1eb{bottom:736.694400px;}
.y1f8{bottom:736.694550px;}
.y14e{bottom:736.712700px;}
.y25a{bottom:739.305150px;}
.y199{bottom:739.665150px;}
.y2c4{bottom:739.940400px;}
.y96{bottom:740.835000px;}
.y29{bottom:742.995000px;}
.ye4{bottom:744.080040px;}
.y127{bottom:744.524400px;}
.y173{bottom:745.345350px;}
.yb{bottom:745.424700px;}
.y27c{bottom:745.529400px;}
.y76{bottom:745.552950px;}
.y29a{bottom:746.414700px;}
.y102{bottom:747.044400px;}
.y21a{bottom:752.974350px;}
.yb7{bottom:758.518050px;}
.y1bd{bottom:759.195150px;}
.y4c{bottom:760.364550px;}
.y236{bottom:760.420950px;}
.y14d{bottom:760.508700px;}
.y1f7{bottom:760.544550px;}
.ye3{bottom:763.874550px;}
.y126{bottom:765.224550px;}
.ya{bottom:766.124700px;}
.y28{bottom:766.755000px;}
.y101{bottom:767.744700px;}
.y172{bottom:769.144950px;}
.y2c3{bottom:769.190550px;}
.y27b{bottom:769.330800px;}
.y75{bottom:769.357950px;}
.y299{bottom:770.174700px;}
.y219{bottom:776.784750px;}
.y95{bottom:777.825000px;}
.y259{bottom:778.185150px;}
.y198{bottom:778.455150px;}
.yb6{bottom:782.323050px;}
.y235{bottom:784.222350px;}
.y1f6{bottom:784.304550px;}
.y14c{bottom:784.304700px;}
.y1bc{bottom:784.305150px;}
.y125{bottom:785.924550px;}
.y9{bottom:786.824700px;}
.y100{bottom:788.804700px;}
.y27{bottom:790.605000px;}
.y171{bottom:792.944550px;}
.y27a{bottom:793.132200px;}
.y74{bottom:793.162950px;}
.y298{bottom:794.024700px;}
.y218{bottom:800.595150px;}
.y258{bottom:801.975750px;}
.y197{bottom:802.215150px;}
.yb5{bottom:806.128050px;}
.y124{bottom:806.624700px;}
.y8{bottom:807.524700px;}
.y234{bottom:808.023750px;}
.y1f5{bottom:808.154550px;}
.y1bb{bottom:808.155150px;}
.yff{bottom:809.504700px;}
.y26{bottom:814.365000px;}
.y94{bottom:814.905000px;}
.y279{bottom:816.933600px;}
.y73{bottom:816.967950px;}
.y297{bottom:817.784700px;}
.y4b{bottom:823.181550px;}
.y14b{bottom:823.184700px;}
.y257{bottom:825.766350px;}
.y196{bottom:826.065150px;}
.yb4{bottom:829.933050px;}
.yfe{bottom:830.204700px;}
.y16f{bottom:831.721050px;}
.y170{bottom:831.734550px;}
.y233{bottom:831.825150px;}
.y1f3{bottom:831.901050px;}
.y1f4{bottom:831.914550px;}
.y1ba{bottom:831.915150px;}
.y2c2{bottom:831.918750px;}
.y7{bottom:832.544700px;}
.y93{bottom:835.515000px;}
.y25{bottom:838.215000px;}
.y217{bottom:839.385150px;}
.y278{bottom:840.735000px;}
.y296{bottom:841.634700px;}
.y121{bottom:845.324700px;}
.y14a{bottom:846.944700px;}
.y4a{bottom:846.979350px;}
.y256{bottom:849.556950px;}
.y195{bottom:849.825150px;}
.yfd{bottom:850.814850px;}
.y16e{bottom:855.540000px;}
.y2c1{bottom:855.732750px;}
.y72{bottom:855.757950px;}
.y1f2{bottom:855.764850px;}
.y1b9{bottom:855.765150px;}
.y232{bottom:861.435150px;}
.y24{bottom:861.975000px;}
.y216{bottom:863.190150px;}
.y295{bottom:865.394700px;}
.yb3{bottom:868.723050px;}
.y120{bottom:869.174700px;}
.y149{bottom:870.705150px;}
.y49{bottom:870.777150px;}
.y92{bottom:872.505000px;}
.y194{bottom:873.675150px;}
.y16d{bottom:879.345000px;}
.y1e6{bottom:879.523650px;}
.y1f1{bottom:879.524400px;}
.y277{bottom:879.525000px;}
.y1b8{bottom:879.525150px;}
.y2c0{bottom:879.546750px;}
.y71{bottom:879.557550px;}
.yfc{bottom:886.724850px;}
.y215{bottom:886.995150px;}
.y255{bottom:888.346950px;}
.yb2{bottom:892.513650px;}
.y11e{bottom:892.921200px;}
.y11f{bottom:892.934700px;}
.y148{bottom:894.555150px;}
.y48{bottom:894.574950px;}
.y294{bottom:894.734850px;}
.y193{bottom:897.435150px;}
.y23{bottom:900.765000px;}
.y276{bottom:903.330000px;}
.y70{bottom:903.357150px;}
.y2bf{bottom:903.360750px;}
.y1e5{bottom:903.373650px;}
.y1f0{bottom:903.374400px;}
.y91{bottom:903.375000px;}
.y1b7{bottom:903.375150px;}
.y214{bottom:910.800150px;}
.y254{bottom:912.151950px;}
.yb1{bottom:916.304250px;}
.y123{bottom:916.784700px;}
.y11d{bottom:916.785150px;}
.y16c{bottom:917.955000px;}
.y147{bottom:918.315150px;}
.y47{bottom:918.372750px;}
.yfb{bottom:922.454850px;}
.y22{bottom:924.615000px;}
.y1e4{bottom:927.133650px;}
.y275{bottom:927.135000px;}
.y1b6{bottom:927.135150px;}
.y6f{bottom:927.156750px;}
.y2be{bottom:927.174750px;}
.y213{bottom:934.605150px;}
.y253{bottom:935.956950px;}
.y192{bottom:936.225150px;}
.yb0{bottom:940.094850px;}
.y122{bottom:940.544700px;}
.y11c{bottom:940.545150px;}
.y1ef{bottom:942.164400px;}
.y146{bottom:942.165150px;}
.y46{bottom:942.170550px;}
.yfa{bottom:943.154850px;}
.y90{bottom:945.315000px;}
.y16b{bottom:946.305000px;}
.y6{bottom:948.104850px;}
.y21{bottom:948.375000px;}
.y274{bottom:950.940000px;}
.y6e{bottom:950.956350px;}
.y1e3{bottom:950.983650px;}
.y1b5{bottom:950.985150px;}
.y2bd{bottom:950.988750px;}
.y293{bottom:957.465150px;}
.y212{bottom:958.410150px;}
.y191{bottom:960.075150px;}
.y1ee{bottom:965.924400px;}
.y145{bottom:965.925150px;}
.y45{bottom:965.968350px;}
.y5{bottom:966.014850px;}
.y11b{bottom:968.715150px;}
.y8f{bottom:969.075000px;}
.yaf{bottom:969.434850px;}
.y20{bottom:972.225000px;}
.y272{bottom:974.731500px;}
.y1e2{bottom:974.743650px;}
.y273{bottom:974.745000px;}
.y1b4{bottom:974.745150px;}
.y252{bottom:974.746950px;}
.y6d{bottom:974.755950px;}
.y2bc{bottom:974.802750px;}
.yf6{bottom:977.985150px;}
.y292{bottom:981.315150px;}
.y211{bottom:982.215150px;}
.y190{bottom:983.835150px;}
.y169{bottom:985.261500px;}
.y16a{bottom:985.275000px;}
.y4{bottom:986.714850px;}
.y44{bottom:989.766150px;}
.y1ed{bottom:989.774400px;}
.y144{bottom:989.775150px;}
.y8e{bottom:992.925000px;}
.y1f{bottom:995.985000px;}
.y11a{bottom:998.505150px;}
.y271{bottom:998.550150px;}
.y6c{bottom:998.555550px;}
.y251{bottom:998.566350px;}
.y1b3{bottom:998.595150px;}
.yf5{bottom:1001.745150px;}
.y291{bottom:1005.075150px;}
.y18f{bottom:1007.685150px;}
.y168{bottom:1009.080150px;}
.y1e1{bottom:1013.533650px;}
.y1ec{bottom:1013.534400px;}
.yd1{bottom:1013.535000px;}
.y143{bottom:1013.535150px;}
.y43{bottom:1013.563950px;}
.y2bb{bottom:1013.592750px;}
.y210{bottom:1017.765150px;}
.y1e{bottom:1019.835000px;}
.y8d{bottom:1022.265000px;}
.y6b{bottom:1022.355150px;}
.y250{bottom:1022.385750px;}
.y3{bottom:1024.965000px;}
.yf4{bottom:1025.595150px;}
.y290{bottom:1028.925150px;}
.yae{bottom:1029.195150px;}
.y18e{bottom:1031.445150px;}
.y167{bottom:1032.885150px;}
.y42{bottom:1037.361750px;}
.y2ba{bottom:1037.383350px;}
.y1e0{bottom:1037.383650px;}
.yd0{bottom:1037.384400px;}
.ye2{bottom:1037.385000px;}
.y119{bottom:1037.385150px;}
.y20f{bottom:1046.025150px;}
.y270{bottom:1046.160150px;}
.y1be{bottom:1046.205150px;}
.y1d{bottom:1049.085000px;}
.yf3{bottom:1049.355150px;}
.yad{bottom:1049.805150px;}
.y28f{bottom:1052.685150px;}
.y18d{bottom:1055.295150px;}
.y166{bottom:1056.690150px;}
.y118{bottom:1061.131650px;}
.y1df{bottom:1061.143650px;}
.ycf{bottom:1061.144400px;}
.ye1{bottom:1061.145000px;}
.y6a{bottom:1061.145150px;}
.y41{bottom:1061.159550px;}
.y2b9{bottom:1061.173950px;}
.y26f{bottom:1069.965150px;}
.y28e{bottom:1076.535150px;}
.yf2{bottom:1078.965150px;}
.y18c{bottom:1079.055150px;}
.y165{bottom:1080.495150px;}
.y2{bottom:1083.915150px;}
.y69{bottom:1084.950150px;}
.y40{bottom:1084.957350px;}
.y2b8{bottom:1084.964550px;}
.y1de{bottom:1084.993650px;}
.yce{bottom:1084.994400px;}
.ye0{bottom:1084.995000px;}
.y8c{bottom:1084.995150px;}
.yac{bottom:1086.885150px;}
.y28d{bottom:1105.875150px;}
.yab{bottom:1107.495150px;}
.y164{bottom:1108.575150px;}
.yf1{bottom:1108.665150px;}
.y1dd{bottom:1108.753650px;}
.ycd{bottom:1108.754400px;}
.ydf{bottom:1108.755000px;}
.y3f{bottom:1108.755150px;}
.y1{bottom:1199.745900px;}
.y1b{bottom:1225.941300px;}
.h14{height:13.680000px;}
.ha{height:34.114922px;}
.h8{height:34.945312px;}
.hf{height:40.921523px;}
.h12{height:50.027344px;}
.hb{height:52.751777px;}
.h4{height:54.278262px;}
.h10{height:63.175181px;}
.h6{height:63.175781px;}
.hd{height:63.351562px;}
.h5{height:63.949219px;}
.h3{height:65.003906px;}
.h11{height:70.079723px;}
.h7{height:75.125295px;}
.h9{height:75.131895px;}
.h13{height:75.133095px;}
.he{height:75.134295px;}
.h2{height:75.729551px;}
.h1{height:92.484000px;}
.hc{height:1262.956500px;}
.h0{height:1263.000000px;}
.w4{width:12.600000px;}
.w3{width:294.570000px;}
.w2{width:765.271500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x28{left:5.850600px;}
.x3d{left:7.559700px;}
.x2a{left:60.480600px;}
.x7{left:63.825600px;}
.x1b{left:68.328900px;}
.xc{left:72.843750px;}
.x19{left:88.035600px;}
.xd{left:90.825600px;}
.x2c{left:95.850750px;}
.x10{left:97.485600px;}
.x4{left:110.265600px;}
.x2e{left:125.820750px;}
.x9{left:127.605300px;}
.x20{left:132.015300px;}
.x15{left:136.695300px;}
.x30{left:147.960750px;}
.x1e{left:152.907300px;}
.xe{left:154.605300px;}
.x16{left:163.695450px;}
.x32{left:169.200900px;}
.x11{left:171.643620px;}
.x14{left:188.355300px;}
.x13{left:191.145300px;}
.x34{left:199.980900px;}
.x23{left:204.105450px;}
.x21{left:217.520970px;}
.x36{left:226.621050px;}
.x24{left:236.415450px;}
.x18{left:237.435450px;}
.x25{left:241.179960px;}
.x17{left:242.385450px;}
.x2{left:245.083950px;}
.x38{left:247.501050px;}
.x26{left:259.455450px;}
.x22{left:270.879450px;}
.x3a{left:272.071050px;}
.x27{left:278.167800px;}
.x29{left:334.875600px;}
.x2b{left:353.685750px;}
.x3{left:364.425750px;}
.x8{left:375.947550px;}
.xf{left:380.481600px;}
.x2d{left:395.715750px;}
.x2f{left:411.555750px;}
.x1f{left:420.843300px;}
.xb{left:439.727550px;}
.x31{left:443.595900px;}
.x33{left:459.885900px;}
.x12{left:466.755900px;}
.x1{left:482.325900px;}
.x35{left:501.016050px;}
.x6{left:507.795900px;}
.x37{left:519.826050px;}
.x39{left:538.996050px;}
.x5{left:545.413800px;}
.x40{left:546.833550px;}
.x3b{left:557.716050px;}
.xa{left:571.835550px;}
.x1c{left:573.465300px;}
.x3e{left:579.706200px;}
.x3c{left:585.166500px;}
.x1a{left:591.946200px;}
.x1d{left:600.105300px;}
.x3f{left:614.981610px;}
@media print{
.v4{vertical-align:-45.440533pt;}
.v5{vertical-align:-34.882133pt;}
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:25.918400pt;}
.v1{vertical-align:29.434133pt;}
.ls43{letter-spacing:-0.505600pt;}
.ls42{letter-spacing:-0.486400pt;}
.ls57{letter-spacing:-0.325984pt;}
.ls52{letter-spacing:-0.293920pt;}
.ls56{letter-spacing:-0.288576pt;}
.ls53{letter-spacing:-0.240480pt;}
.ls55{letter-spacing:-0.197728pt;}
.lsb{letter-spacing:-0.176160pt;}
.ls58{letter-spacing:-0.171008pt;}
.ls51{letter-spacing:-0.160320pt;}
.ls54{letter-spacing:-0.117568pt;}
.ls4a{letter-spacing:-0.112224pt;}
.lsc{letter-spacing:-0.110656pt;}
.ls48{letter-spacing:-0.080160pt;}
.ls35{letter-spacing:-0.076800pt;}
.ls4d{letter-spacing:-0.074816pt;}
.ls38{letter-spacing:-0.070400pt;}
.ls47{letter-spacing:-0.069472pt;}
.ls46{letter-spacing:-0.053440pt;}
.ls37{letter-spacing:-0.051200pt;}
.ls41{letter-spacing:-0.048096pt;}
.ls39{letter-spacing:-0.044800pt;}
.lsf{letter-spacing:-0.042752pt;}
.ls3c{letter-spacing:-0.038400pt;}
.ls3d{letter-spacing:-0.037408pt;}
.ls49{letter-spacing:-0.032064pt;}
.ls5d{letter-spacing:-0.032000pt;}
.ls1e{letter-spacing:-0.026720pt;}
.ls26{letter-spacing:-0.025600pt;}
.ls1f{letter-spacing:-0.021376pt;}
.ls12{letter-spacing:-0.019200pt;}
.ls50{letter-spacing:-0.016032pt;}
.ls1c{letter-spacing:-0.012800pt;}
.ls20{letter-spacing:-0.010688pt;}
.ls14{letter-spacing:-0.008533pt;}
.ls5b{letter-spacing:-0.007456pt;}
.lse{letter-spacing:-0.006400pt;}
.ls5c{letter-spacing:-0.005344pt;}
.ls13{letter-spacing:-0.004267pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.005344pt;}
.ls33{letter-spacing:0.005856pt;}
.ls10{letter-spacing:0.006400pt;}
.ls15{letter-spacing:0.007456pt;}
.ls3b{letter-spacing:0.010688pt;}
.ls30{letter-spacing:0.011712pt;}
.ls9{letter-spacing:0.012800pt;}
.ls5e{letter-spacing:0.014912pt;}
.ls4b{letter-spacing:0.016032pt;}
.ls7{letter-spacing:0.019200pt;}
.ls11{letter-spacing:0.021280pt;}
.ls2a{letter-spacing:0.021376pt;}
.ls36{letter-spacing:0.023424pt;}
.ls3{letter-spacing:0.025600pt;}
.ls28{letter-spacing:0.026720pt;}
.ls22{letter-spacing:0.029824pt;}
.ls4{letter-spacing:0.032000pt;}
.ls3a{letter-spacing:0.032064pt;}
.ls32{letter-spacing:0.035136pt;}
.ls24{letter-spacing:0.037280pt;}
.ls29{letter-spacing:0.037408pt;}
.ls5{letter-spacing:0.038400pt;}
.ls45{letter-spacing:0.042752pt;}
.ls6{letter-spacing:0.044800pt;}
.ls2b{letter-spacing:0.048096pt;}
.ls8{letter-spacing:0.051200pt;}
.ls17{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.059648pt;}
.ls18{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.064128pt;}
.ls34{letter-spacing:0.064416pt;}
.ls21{letter-spacing:0.067104pt;}
.ls2e{letter-spacing:0.070272pt;}
.ls19{letter-spacing:0.070400pt;}
.ls0{letter-spacing:0.072000pt;}
.lsd{letter-spacing:0.076800pt;}
.ls25{letter-spacing:0.083200pt;}
.lsa{letter-spacing:0.089600pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.102400pt;}
.ls2c{letter-spacing:0.108800pt;}
.ls5a{letter-spacing:0.115200pt;}
.ls3e{letter-spacing:0.121600pt;}
.ls1{letter-spacing:0.128000pt;}
.ls59{letter-spacing:0.134400pt;}
.ls3f{letter-spacing:0.140800pt;}
.ls4f{letter-spacing:0.160320pt;}
.ls40{letter-spacing:0.268800pt;}
.ls44{letter-spacing:0.332800pt;}
.ls16{letter-spacing:3.040000pt;}
.ls4e{letter-spacing:22.233600pt;}
.ls23{letter-spacing:66.560000pt;}
.ls31{letter-spacing:70.208000pt;}
.ls2f{letter-spacing:76.415467pt;}
.ls2d{letter-spacing:76.416000pt;}
.ws1{word-spacing:-74.619648pt;}
.ws226{word-spacing:-74.597280pt;}
.ws60{word-spacing:-74.589824pt;}
.ws1e{word-spacing:-74.567456pt;}
.wsaa{word-spacing:-74.560000pt;}
.ws225{word-spacing:-74.552544pt;}
.ws4{word-spacing:-64.038400pt;}
.ws3{word-spacing:-64.032000pt;}
.ws2{word-spacing:-64.025600pt;}
.ws13e{word-spacing:-64.012800pt;}
.wsc8{word-spacing:-64.006400pt;}
.ws1e8{word-spacing:-64.000000pt;}
.ws264{word-spacing:-63.961600pt;}
.ws221{word-spacing:-53.600320pt;}
.ws139{word-spacing:-53.542400pt;}
.ws1c5{word-spacing:-53.482752pt;}
.wsa9{word-spacing:-53.477408pt;}
.wsed{word-spacing:-53.472064pt;}
.wsa8{word-spacing:-53.466720pt;}
.ws21f{word-spacing:-53.461376pt;}
.ws138{word-spacing:-53.452800pt;}
.wsee{word-spacing:-53.450688pt;}
.ws227{word-spacing:-53.434656pt;}
.ws1c4{word-spacing:-53.429312pt;}
.ws220{word-spacing:-53.423968pt;}
.ws133{word-spacing:-53.413280pt;}
.ws1c3{word-spacing:-53.407936pt;}
.ws134{word-spacing:-53.402592pt;}
.ws5{word-spacing:-53.397248pt;}
.ws163{word-spacing:-53.391904pt;}
.ws1c0{word-spacing:-53.386560pt;}
.ws1c1{word-spacing:-53.370528pt;}
.ws1c2{word-spacing:-53.359840pt;}
.ws222{word-spacing:-53.322432pt;}
.ws224{word-spacing:-53.268992pt;}
.ws223{word-spacing:-53.151424pt;}
.ws13c{word-spacing:-52.179200pt;}
.ws13d{word-spacing:-52.160000pt;}
.ws22a{word-spacing:-49.708800pt;}
.ws22b{word-spacing:-48.390400pt;}
.ws13b{word-spacing:-48.300800pt;}
.ws13a{word-spacing:-48.288000pt;}
.wsc7{word-spacing:-46.041600pt;}
.ws1f6{word-spacing:-46.016000pt;}
.ws131{word-spacing:-45.990400pt;}
.ws0{word-spacing:-17.792160pt;}
.ws16b{word-spacing:-16.332800pt;}
.ws228{word-spacing:-16.134400pt;}
.ws167{word-spacing:-16.121600pt;}
.ws229{word-spacing:-16.115200pt;}
.ws168{word-spacing:-16.096000pt;}
.ws169{word-spacing:-16.076800pt;}
.ws166{word-spacing:-16.070400pt;}
.ws136{word-spacing:-16.064000pt;}
.wsa6{word-spacing:-16.057600pt;}
.wsa4{word-spacing:-16.051200pt;}
.ws162{word-spacing:-16.044800pt;}
.ws137{word-spacing:-16.038400pt;}
.ws16a{word-spacing:-16.032000pt;}
.ws164{word-spacing:-16.025600pt;}
.ws160{word-spacing:-16.019200pt;}
.ws16f{word-spacing:-16.012800pt;}
.ws16d{word-spacing:-16.006400pt;}
.wsa5{word-spacing:-16.000000pt;}
.wsa7{word-spacing:-15.987200pt;}
.ws165{word-spacing:-15.513600pt;}
.wsc9{word-spacing:-14.710272pt;}
.wsca{word-spacing:-14.675136pt;}
.wscb{word-spacing:-14.645856pt;}
.ws1f{word-spacing:-8.640000pt;}
.ws1aa{word-spacing:-0.448000pt;}
.ws19c{word-spacing:-0.243200pt;}
.ws19a{word-spacing:-0.224000pt;}
.ws21e{word-spacing:-0.185600pt;}
.ws80{word-spacing:-0.179200pt;}
.ws9b{word-spacing:-0.172800pt;}
.wsde{word-spacing:-0.160000pt;}
.ws235{word-spacing:-0.147200pt;}
.ws7e{word-spacing:-0.134400pt;}
.ws8{word-spacing:-0.128000pt;}
.ws263{word-spacing:-0.121600pt;}
.wsf4{word-spacing:-0.115200pt;}
.ws82{word-spacing:-0.108800pt;}
.ws88{word-spacing:-0.102400pt;}
.ws12{word-spacing:-0.096000pt;}
.ws1b{word-spacing:-0.089600pt;}
.ws38{word-spacing:-0.083200pt;}
.ws26{word-spacing:-0.076800pt;}
.ws1c{word-spacing:-0.070400pt;}
.wscc{word-spacing:-0.066667pt;}
.ws113{word-spacing:-0.064000pt;}
.ws8d{word-spacing:-0.057600pt;}
.ws70{word-spacing:-0.051200pt;}
.ws3d{word-spacing:-0.044800pt;}
.ws33{word-spacing:-0.038400pt;}
.ws10{word-spacing:-0.032000pt;}
.ws7c{word-spacing:-0.025600pt;}
.ws54{word-spacing:-0.019200pt;}
.ws1a{word-spacing:-0.012800pt;}
.ws41{word-spacing:-0.010688pt;}
.ws11{word-spacing:-0.006400pt;}
.ws9{word-spacing:0.000000pt;}
.ws27f{word-spacing:0.006400pt;}
.wsd1{word-spacing:0.019200pt;}
.ws1d{word-spacing:0.021333pt;}
.ws86{word-spacing:0.025600pt;}
.ws185{word-spacing:0.044800pt;}
.wse2{word-spacing:0.051200pt;}
.ws275{word-spacing:0.064000pt;}
.wse3{word-spacing:0.070400pt;}
.wsc6{word-spacing:0.080160pt;}
.wse4{word-spacing:0.089600pt;}
.ws13f{word-spacing:0.091200pt;}
.ws7{word-spacing:0.096000pt;}
.ws1e7{word-spacing:0.106880pt;}
.ws200{word-spacing:0.128000pt;}
.wsd0{word-spacing:0.153600pt;}
.wseb{word-spacing:0.166400pt;}
.ws93{word-spacing:0.172800pt;}
.ws19b{word-spacing:0.179200pt;}
.ws115{word-spacing:0.185600pt;}
.ws85{word-spacing:0.192000pt;}
.ws199{word-spacing:0.198400pt;}
.ws7f{word-spacing:0.204800pt;}
.ws204{word-spacing:0.211200pt;}
.wsc{word-spacing:0.217600pt;}
.ws3a{word-spacing:0.224000pt;}
.wsef{word-spacing:0.230400pt;}
.wse5{word-spacing:0.236800pt;}
.ws47{word-spacing:0.243200pt;}
.ws36{word-spacing:0.249600pt;}
.ws61{word-spacing:0.262400pt;}
.ws11e{word-spacing:0.268800pt;}
.ws37{word-spacing:0.275200pt;}
.ws198{word-spacing:0.281600pt;}
.ws11d{word-spacing:0.288000pt;}
.ws127{word-spacing:0.300800pt;}
.ws197{word-spacing:0.320000pt;}
.ws124{word-spacing:0.492800pt;}
.wsf{word-spacing:0.505600pt;}
.ws22f{word-spacing:0.518400pt;}
.ws234{word-spacing:0.524800pt;}
.ws5b{word-spacing:0.537600pt;}
.ws25{word-spacing:0.544000pt;}
.wsd7{word-spacing:0.550400pt;}
.ws77{word-spacing:0.556800pt;}
.ws52{word-spacing:0.563200pt;}
.ws1fe{word-spacing:0.569600pt;}
.ws76{word-spacing:0.576000pt;}
.wsa0{word-spacing:0.582400pt;}
.wsa3{word-spacing:0.588800pt;}
.ws121{word-spacing:0.595200pt;}
.ws1ea{word-spacing:0.601600pt;}
.ws152{word-spacing:0.614400pt;}
.wsd3{word-spacing:0.627200pt;}
.ws11f{word-spacing:0.633600pt;}
.ws4f{word-spacing:0.640000pt;}
.ws280{word-spacing:0.697600pt;}
.wsf0{word-spacing:0.768000pt;}
.ws1fb{word-spacing:0.832000pt;}
.ws1d4{word-spacing:0.844800pt;}
.ws132{word-spacing:0.857600pt;}
.ws7b{word-spacing:0.864000pt;}
.ws34{word-spacing:0.870400pt;}
.ws1d9{word-spacing:0.876800pt;}
.ws1a2{word-spacing:0.883200pt;}
.wsd8{word-spacing:0.889600pt;}
.ws1ff{word-spacing:0.902400pt;}
.ws8f{word-spacing:0.908800pt;}
.ws216{word-spacing:0.915200pt;}
.ws2a{word-spacing:0.921600pt;}
.ws21{word-spacing:0.928000pt;}
.ws20{word-spacing:0.934400pt;}
.ws1cd{word-spacing:0.940800pt;}
.wsbf{word-spacing:0.947200pt;}
.ws1fc{word-spacing:0.953600pt;}
.ws147{word-spacing:0.960000pt;}
.ws1ae{word-spacing:0.972800pt;}
.wsd9{word-spacing:0.977952pt;}
.ws276{word-spacing:1.107200pt;}
.ws24f{word-spacing:1.120000pt;}
.ws23b{word-spacing:1.126400pt;}
.ws106{word-spacing:1.139200pt;}
.ws23d{word-spacing:1.152000pt;}
.ws23c{word-spacing:1.158400pt;}
.ws1f1{word-spacing:1.164800pt;}
.ws27{word-spacing:1.184000pt;}
.ws83{word-spacing:1.190400pt;}
.ws1a7{word-spacing:1.203200pt;}
.ws23a{word-spacing:1.216000pt;}
.wsb{word-spacing:1.228800pt;}
.ws1a9{word-spacing:1.235200pt;}
.wsbe{word-spacing:1.241600pt;}
.ws72{word-spacing:1.248000pt;}
.ws114{word-spacing:1.254400pt;}
.ws187{word-spacing:1.260800pt;}
.ws186{word-spacing:1.273600pt;}
.ws24d{word-spacing:1.286400pt;}
.ws66{word-spacing:1.292800pt;}
.ws24e{word-spacing:1.299200pt;}
.ws19d{word-spacing:1.305600pt;}
.ws62{word-spacing:1.427200pt;}
.ws1db{word-spacing:1.472000pt;}
.ws20c{word-spacing:1.478400pt;}
.wsad{word-spacing:1.491200pt;}
.ws49{word-spacing:1.497600pt;}
.ws8c{word-spacing:1.504000pt;}
.wsea{word-spacing:1.510400pt;}
.wsac{word-spacing:1.516800pt;}
.ws1de{word-spacing:1.523200pt;}
.ws1ca{word-spacing:1.529600pt;}
.ws11a{word-spacing:1.536000pt;}
.ws53{word-spacing:1.542400pt;}
.ws4d{word-spacing:1.548800pt;}
.ws14{word-spacing:1.555200pt;}
.ws31{word-spacing:1.568000pt;}
.ws18f{word-spacing:1.574400pt;}
.ws119{word-spacing:1.587200pt;}
.ws193{word-spacing:1.593600pt;}
.ws1f3{word-spacing:1.600000pt;}
.ws190{word-spacing:1.632000pt;}
.ws192{word-spacing:1.644800pt;}
.ws191{word-spacing:1.683200pt;}
.ws25c{word-spacing:1.734400pt;}
.ws25d{word-spacing:1.747200pt;}
.ws1cf{word-spacing:1.753600pt;}
.wse8{word-spacing:1.772800pt;}
.ws25b{word-spacing:1.779200pt;}
.ws1a8{word-spacing:1.785600pt;}
.ws1cc{word-spacing:1.811200pt;}
.ws1c6{word-spacing:1.824000pt;}
.ws1d8{word-spacing:1.830400pt;}
.ws96{word-spacing:1.843200pt;}
.ws25a{word-spacing:1.849600pt;}
.ws78{word-spacing:1.856000pt;}
.ws145{word-spacing:1.862400pt;}
.wsb6{word-spacing:1.868800pt;}
.ws74{word-spacing:1.875200pt;}
.wse6{word-spacing:1.881600pt;}
.ws51{word-spacing:1.888000pt;}
.ws9c{word-spacing:1.894400pt;}
.ws1d7{word-spacing:1.900800pt;}
.ws2c{word-spacing:1.907200pt;}
.ws1d0{word-spacing:1.920000pt;}
.ws214{word-spacing:1.932800pt;}
.ws281{word-spacing:1.939200pt;}
.wsec{word-spacing:1.952000pt;}
.ws282{word-spacing:2.022400pt;}
.ws153{word-spacing:2.092800pt;}
.ws1f2{word-spacing:2.105600pt;}
.ws207{word-spacing:2.137600pt;}
.ws59{word-spacing:2.156800pt;}
.ws1dc{word-spacing:2.163200pt;}
.wsfa{word-spacing:2.169600pt;}
.ws69{word-spacing:2.188800pt;}
.ws63{word-spacing:2.195200pt;}
.ws1ce{word-spacing:2.201600pt;}
.ws130{word-spacing:2.208000pt;}
.ws5e{word-spacing:2.220800pt;}
.ws1da{word-spacing:2.233600pt;}
.wsc2{word-spacing:2.240000pt;}
.ws144{word-spacing:2.265600pt;}
.ws255{word-spacing:2.304000pt;}
.ws1e1{word-spacing:2.340672pt;}
.ws1df{word-spacing:2.346016pt;}
.ws256{word-spacing:2.348800pt;}
.ws249{word-spacing:2.368000pt;}
.ws1e2{word-spacing:2.372736pt;}
.ws1e0{word-spacing:2.378080pt;}
.ws237{word-spacing:2.393600pt;}
.ws1c7{word-spacing:2.400000pt;}
.ws238{word-spacing:2.406400pt;}
.ws194{word-spacing:2.412800pt;}
.ws195{word-spacing:2.432000pt;}
.ws196{word-spacing:2.438400pt;}
.ws44{word-spacing:2.457600pt;}
.ws1c8{word-spacing:2.470400pt;}
.ws56{word-spacing:2.476800pt;}
.ws8b{word-spacing:2.483200pt;}
.wsb2{word-spacing:2.496000pt;}
.ws123{word-spacing:2.502400pt;}
.ws236{word-spacing:2.508800pt;}
.wsc0{word-spacing:2.515200pt;}
.ws157{word-spacing:2.521600pt;}
.ws1b9{word-spacing:2.534400pt;}
.ws16c{word-spacing:2.540800pt;}
.wsc1{word-spacing:2.547200pt;}
.wsb7{word-spacing:2.553600pt;}
.ws1b8{word-spacing:2.566400pt;}
.ws239{word-spacing:2.617600pt;}
.ws128{word-spacing:2.758400pt;}
.ws155{word-spacing:2.771200pt;}
.ws24a{word-spacing:2.784000pt;}
.ws12e{word-spacing:2.790400pt;}
.ws11b{word-spacing:2.803200pt;}
.ws9a{word-spacing:2.809600pt;}
.ws1eb{word-spacing:2.816000pt;}
.ws3b{word-spacing:2.822400pt;}
.ws11c{word-spacing:2.841600pt;}
.ws98{word-spacing:2.848000pt;}
.ws116{word-spacing:2.854400pt;}
.wscf{word-spacing:2.860800pt;}
.ws101{word-spacing:2.886400pt;}
.ws1fd{word-spacing:2.892800pt;}
.ws273{word-spacing:3.052800pt;}
.ws1d2{word-spacing:3.091200pt;}
.ws17b{word-spacing:3.097600pt;}
.ws29{word-spacing:3.104000pt;}
.ws4b{word-spacing:3.110400pt;}
.ws17a{word-spacing:3.116800pt;}
.wse7{word-spacing:3.129600pt;}
.ws28{word-spacing:3.136000pt;}
.ws4a{word-spacing:3.142400pt;}
.ws43{word-spacing:3.148800pt;}
.ws212{word-spacing:3.155200pt;}
.ws4c{word-spacing:3.161600pt;}
.wsf1{word-spacing:3.168000pt;}
.ws4e{word-spacing:3.174400pt;}
.ws5c{word-spacing:3.180800pt;}
.ws19{word-spacing:3.187200pt;}
.ws17d{word-spacing:3.200000pt;}
.ws17c{word-spacing:3.206400pt;}
.ws250{word-spacing:3.212800pt;}
.ws274{word-spacing:3.232000pt;}
.ws1bb{word-spacing:3.360000pt;}
.ws1ba{word-spacing:3.398400pt;}
.ws1f8{word-spacing:3.411200pt;}
.ws12f{word-spacing:3.417600pt;}
.ws1b0{word-spacing:3.424000pt;}
.ws64{word-spacing:3.430400pt;}
.ws1af{word-spacing:3.436800pt;}
.ws1b1{word-spacing:3.443200pt;}
.ws79{word-spacing:3.449600pt;}
.ws14d{word-spacing:3.456000pt;}
.ws247{word-spacing:3.475200pt;}
.ws248{word-spacing:3.488000pt;}
.wsae{word-spacing:3.494400pt;}
.ws1ee{word-spacing:3.500800pt;}
.wse9{word-spacing:3.507200pt;}
.ws1bc{word-spacing:3.513600pt;}
.ws90{word-spacing:3.520000pt;}
.ws1bd{word-spacing:3.526400pt;}
.wsaf{word-spacing:3.539200pt;}
.ws3f{word-spacing:3.569792pt;}
.ws3e{word-spacing:3.628576pt;}
.ws40{word-spacing:3.639264pt;}
.ws1b7{word-spacing:3.692800pt;}
.ws5d{word-spacing:3.756800pt;}
.ws68{word-spacing:3.763200pt;}
.ws208{word-spacing:3.769600pt;}
.ws170{word-spacing:3.776000pt;}
.ws1dd{word-spacing:3.782400pt;}
.ws14b{word-spacing:3.788800pt;}
.wsbd{word-spacing:3.801600pt;}
.ws97{word-spacing:3.808000pt;}
.ws103{word-spacing:3.820800pt;}
.wsc5{word-spacing:3.820960pt;}
.ws1ec{word-spacing:3.833600pt;}
.wsc3{word-spacing:3.836992pt;}
.ws1b6{word-spacing:3.840000pt;}
.wsb8{word-spacing:3.846400pt;}
.wsc4{word-spacing:3.906464pt;}
.ws18c{word-spacing:3.910400pt;}
.ws16e{word-spacing:3.948800pt;}
.ws18b{word-spacing:3.961600pt;}
.ws244{word-spacing:3.968000pt;}
.ws245{word-spacing:3.987200pt;}
.ws27d{word-spacing:3.993600pt;}
.ws188{word-spacing:4.019200pt;}
.ws189{word-spacing:4.025600pt;}
.ws1f4{word-spacing:4.038400pt;}
.ws18a{word-spacing:4.044800pt;}
.ws65{word-spacing:4.064000pt;}
.ws1be{word-spacing:4.070400pt;}
.ws1bf{word-spacing:4.076800pt;}
.ws1e9{word-spacing:4.083200pt;}
.ws8e{word-spacing:4.089600pt;}
.ws16{word-spacing:4.096000pt;}
.ws92{word-spacing:4.102400pt;}
.ws21d{word-spacing:4.108800pt;}
.ws104{word-spacing:4.115200pt;}
.wsb5{word-spacing:4.121600pt;}
.ws15{word-spacing:4.128000pt;}
.wse1{word-spacing:4.140800pt;}
.ws205{word-spacing:4.160000pt;}
.ws246{word-spacing:4.166400pt;}
.ws27e{word-spacing:4.224000pt;}
.ws7d{word-spacing:4.326400pt;}
.wsda{word-spacing:4.332800pt;}
.ws20a{word-spacing:4.364800pt;}
.ws48{word-spacing:4.377600pt;}
.ws230{word-spacing:4.396800pt;}
.ws251{word-spacing:4.403200pt;}
.ws6f{word-spacing:4.409600pt;}
.ws67{word-spacing:4.416000pt;}
.ws35{word-spacing:4.422400pt;}
.ws95{word-spacing:4.428800pt;}
.ws14a{word-spacing:4.435200pt;}
.ws9e{word-spacing:4.448000pt;}
.ws172{word-spacing:4.454400pt;}
.wsdb{word-spacing:4.460800pt;}
.wsb4{word-spacing:4.467200pt;}
.ws252{word-spacing:4.473600pt;}
.ws253{word-spacing:4.512000pt;}
.ws254{word-spacing:4.531200pt;}
.ws183{word-spacing:4.697600pt;}
.ws129{word-spacing:4.704000pt;}
.ws184{word-spacing:4.710400pt;}
.ws18d{word-spacing:4.716800pt;}
.ws1d1{word-spacing:4.723200pt;}
.ws143{word-spacing:4.729600pt;}
.ws6b{word-spacing:4.736000pt;}
.ws24{word-spacing:4.742400pt;}
.ws2f{word-spacing:4.748800pt;}
.ws181{word-spacing:4.755200pt;}
.ws140{word-spacing:4.761600pt;}
.ws125{word-spacing:4.774400pt;}
.ws182{word-spacing:4.780800pt;}
.ws30{word-spacing:4.787200pt;}
.wsfe{word-spacing:4.800000pt;}
.ws18e{word-spacing:4.806400pt;}
.ws1d6{word-spacing:4.864000pt;}
.ws23f{word-spacing:4.902400pt;}
.ws23e{word-spacing:4.921600pt;}
.ws242{word-spacing:4.928000pt;}
.ws241{word-spacing:4.940800pt;}
.ws243{word-spacing:4.947200pt;}
.ws24c{word-spacing:4.972800pt;}
.ws84{word-spacing:4.979200pt;}
.ws1a3{word-spacing:4.985600pt;}
.ws1a4{word-spacing:4.992000pt;}
.ws203{word-spacing:4.998400pt;}
.ws151{word-spacing:5.004800pt;}
.ws1f0{word-spacing:5.017600pt;}
.ws1a5{word-spacing:5.024000pt;}
.ws1a6{word-spacing:5.036800pt;}
.ws81{word-spacing:5.043200pt;}
.ws1d5{word-spacing:5.049600pt;}
.ws20e{word-spacing:5.056000pt;}
.ws10c{word-spacing:5.062400pt;}
.ws99{word-spacing:5.068800pt;}
.ws14e{word-spacing:5.075200pt;}
.ws24b{word-spacing:5.081600pt;}
.ws240{word-spacing:5.088000pt;}
.ws231{word-spacing:5.094400pt;}
.ws8a{word-spacing:5.100800pt;}
.ws118{word-spacing:5.107200pt;}
.wse0{word-spacing:5.113600pt;}
.ws1b3{word-spacing:5.171200pt;}
.ws1b5{word-spacing:5.312000pt;}
.ws18{word-spacing:5.337600pt;}
.ws1b4{word-spacing:5.350400pt;}
.ws1ad{word-spacing:5.369600pt;}
.ws1ac{word-spacing:5.376000pt;}
.ws39{word-spacing:5.382400pt;}
.ws32{word-spacing:5.395200pt;}
.ws1b2{word-spacing:5.401600pt;}
.ws1ab{word-spacing:5.408000pt;}
.wsf2{word-spacing:5.414400pt;}
.ws279{word-spacing:5.593600pt;}
.ws6c{word-spacing:5.600000pt;}
.wsba{word-spacing:5.651200pt;}
.wsb9{word-spacing:5.670400pt;}
.ws87{word-spacing:5.702400pt;}
.wsce{word-spacing:5.708800pt;}
.ws42{word-spacing:5.715200pt;}
.ws50{word-spacing:5.721600pt;}
.ws179{word-spacing:5.728000pt;}
.ws177{word-spacing:5.734400pt;}
.ws178{word-spacing:5.740800pt;}
.ws6d{word-spacing:5.747200pt;}
.ws107{word-spacing:5.753600pt;}
.ws233{word-spacing:5.913600pt;}
.ws174{word-spacing:5.958400pt;}
.ws1f5{word-spacing:5.971200pt;}
.ws206{word-spacing:6.022400pt;}
.ws91{word-spacing:6.035200pt;}
.ws26b{word-spacing:6.041600pt;}
.ws12c{word-spacing:6.048000pt;}
.ws21b{word-spacing:6.060800pt;}
.ws161{word-spacing:6.067200pt;}
.ws9f{word-spacing:6.073600pt;}
.ws148{word-spacing:6.259200pt;}
.ws25e{word-spacing:6.304000pt;}
.ws25f{word-spacing:6.310400pt;}
.ws2d{word-spacing:6.323200pt;}
.ws73{word-spacing:6.329600pt;}
.wsa1{word-spacing:6.336000pt;}
.ws211{word-spacing:6.348800pt;}
.ws262{word-spacing:6.361600pt;}
.ws260{word-spacing:6.368000pt;}
.ws261{word-spacing:6.374400pt;}
.ws142{word-spacing:6.400000pt;}
.ws149{word-spacing:6.438400pt;}
.ws15b{word-spacing:6.489600pt;}
.ws15c{word-spacing:6.508800pt;}
.ws15d{word-spacing:6.560000pt;}
.ws15f{word-spacing:6.592000pt;}
.ws15e{word-spacing:6.604800pt;}
.ws2b{word-spacing:6.617600pt;}
.ws6e{word-spacing:6.636800pt;}
.ws20b{word-spacing:6.668800pt;}
.ws46{word-spacing:6.681600pt;}
.ws15a{word-spacing:6.726400pt;}
.ws112{word-spacing:6.739200pt;}
.ws1e5{word-spacing:6.749472pt;}
.ws266{word-spacing:6.771200pt;}
.ws1e3{word-spacing:6.781536pt;}
.ws1e4{word-spacing:6.872384pt;}
.ws1ed{word-spacing:6.937600pt;}
.ws209{word-spacing:6.944000pt;}
.ws1ef{word-spacing:6.988800pt;}
.ws219{word-spacing:6.995200pt;}
.ws141{word-spacing:7.001600pt;}
.ws75{word-spacing:7.008000pt;}
.wsf3{word-spacing:7.014400pt;}
.ws94{word-spacing:7.046400pt;}
.ws269{word-spacing:7.174400pt;}
.ws218{word-spacing:7.187200pt;}
.ws45{word-spacing:7.244800pt;}
.ws2e{word-spacing:7.251200pt;}
.wsbc{word-spacing:7.270400pt;}
.ws12d{word-spacing:7.289600pt;}
.wsbb{word-spacing:7.308800pt;}
.ws210{word-spacing:7.321600pt;}
.ws102{word-spacing:7.347200pt;}
.ws1e6{word-spacing:7.433504pt;}
.ws14c{word-spacing:7.564800pt;}
.ws9d{word-spacing:7.603200pt;}
.ws6a{word-spacing:7.616000pt;}
.ws126{word-spacing:7.628800pt;}
.ws1f9{word-spacing:7.635200pt;}
.ws5f{word-spacing:7.929600pt;}
.ws22{word-spacing:7.955200pt;}
.ws258{word-spacing:7.961600pt;}
.ws257{word-spacing:7.974400pt;}
.ws111{word-spacing:7.987200pt;}
.ws259{word-spacing:8.051200pt;}
.ws108{word-spacing:8.204800pt;}
.ws55{word-spacing:8.236800pt;}
.ws57{word-spacing:8.262400pt;}
.ws146{word-spacing:8.281600pt;}
.wscd{word-spacing:8.288000pt;}
.ws120{word-spacing:8.300800pt;}
.ws22d{word-spacing:8.403200pt;}
.ws122{word-spacing:8.524800pt;}
.ws23{word-spacing:8.569600pt;}
.wsa2{word-spacing:8.582400pt;}
.ws21c{word-spacing:8.595200pt;}
.ws12a{word-spacing:8.608000pt;}
.ws1cb{word-spacing:8.889600pt;}
.ws27c{word-spacing:8.908800pt;}
.ws58{word-spacing:8.921600pt;}
.ws71{word-spacing:8.934400pt;}
.ws202{word-spacing:8.947200pt;}
.ws201{word-spacing:8.953600pt;}
.ws158{word-spacing:9.075200pt;}
.wsd4{word-spacing:9.152000pt;}
.ws89{word-spacing:9.158400pt;}
.wsfb{word-spacing:9.216000pt;}
.ws159{word-spacing:9.222400pt;}
.wsb1{word-spacing:9.254400pt;}
.wsb0{word-spacing:9.273600pt;}
.ws7a{word-spacing:9.536000pt;}
.ws1d3{word-spacing:9.580800pt;}
.ws6{word-spacing:9.613813pt;}
.wsdd{word-spacing:9.772800pt;}
.ws19e{word-spacing:9.779200pt;}
.ws19f{word-spacing:9.785600pt;}
.ws1a1{word-spacing:9.792000pt;}
.ws1a0{word-spacing:9.804800pt;}
.ws1c9{word-spacing:9.836800pt;}
.ws12b{word-spacing:9.868800pt;}
.ws20f{word-spacing:9.875200pt;}
.ws17e{word-spacing:9.894400pt;}
.ws1f7{word-spacing:9.907200pt;}
.ws180{word-spacing:9.939200pt;}
.ws17f{word-spacing:9.952000pt;}
.wsdc{word-spacing:9.990336pt;}
.ws26f{word-spacing:10.169600pt;}
.ws105{word-spacing:10.195200pt;}
.ws10a{word-spacing:10.214400pt;}
.ws10d{word-spacing:10.476800pt;}
.ws213{word-spacing:10.496000pt;}
.ws100{word-spacing:10.502400pt;}
.ws10b{word-spacing:10.508800pt;}
.ws117{word-spacing:10.771200pt;}
.ws17{word-spacing:10.841600pt;}
.ws20d{word-spacing:11.091200pt;}
.ws3c{word-spacing:11.744000pt;}
.ws22e{word-spacing:11.814400pt;}
.ws267{word-spacing:12.025600pt;}
.ws5a{word-spacing:12.057600pt;}
.wsf8{word-spacing:12.089600pt;}
.ws26a{word-spacing:12.102400pt;}
.ws156{word-spacing:12.140800pt;}
.wsd2{word-spacing:12.160000pt;}
.ws268{word-spacing:12.608000pt;}
.ws1fa{word-spacing:12.697600pt;}
.ws232{word-spacing:13.068800pt;}
.ws217{word-spacing:13.075200pt;}
.ws21a{word-spacing:13.100800pt;}
.ws22c{word-spacing:13.120000pt;}
.ws26e{word-spacing:13.126400pt;}
.ws173{word-spacing:13.344000pt;}
.wsdf{word-spacing:13.798400pt;}
.wsd{word-spacing:14.016000pt;}
.wsf6{word-spacing:14.022400pt;}
.wsfc{word-spacing:14.054400pt;}
.wse{word-spacing:14.662400pt;}
.wsf9{word-spacing:14.688000pt;}
.wsf5{word-spacing:15.020800pt;}
.ws13{word-spacing:15.027200pt;}
.ws265{word-spacing:15.827200pt;}
.ws215{word-spacing:16.230400pt;}
.ws270{word-spacing:17.990400pt;}
.wsff{word-spacing:18.508800pt;}
.ws14f{word-spacing:19.468800pt;}
.ws171{word-spacing:19.500800pt;}
.ws154{word-spacing:20.096000pt;}
.ws26d{word-spacing:20.844800pt;}
.ws109{word-spacing:21.734400pt;}
.ws27b{word-spacing:21.849600pt;}
.wsf7{word-spacing:21.977600pt;}
.wsa{word-spacing:22.048000pt;}
.ws27a{word-spacing:22.073600pt;}
.ws10e{word-spacing:23.232000pt;}
.ws110{word-spacing:23.667200pt;}
.ws175{word-spacing:23.680000pt;}
.ws26c{word-spacing:24.204800pt;}
.wsb3{word-spacing:24.646400pt;}
.wsab{word-spacing:24.652800pt;}
.ws150{word-spacing:25.644800pt;}
.ws176{word-spacing:27.155200pt;}
.ws278{word-spacing:29.856000pt;}
.ws277{word-spacing:29.881600pt;}
.ws272{word-spacing:48.550400pt;}
.ws271{word-spacing:48.659200pt;}
.wsfd{word-spacing:49.881600pt;}
.wsd5{word-spacing:53.828352pt;}
.wsd6{word-spacing:54.003200pt;}
.ws135{word-spacing:82.724224pt;}
.ws10f{word-spacing:111.545600pt;}
._9e{margin-left:-1965.971200pt;}
._9{margin-left:-1400.902400pt;}
._e{margin-left:-1397.145600pt;}
._bc{margin-left:-1319.846400pt;}
._30{margin-left:-1313.529600pt;}
._39{margin-left:-1300.460800pt;}
._c9{margin-left:-1254.252800pt;}
._86{margin-left:-1182.444800pt;}
._8{margin-left:-1168.206080pt;}
._c{margin-left:-1166.214400pt;}
._89{margin-left:-1143.744000pt;}
._7e{margin-left:-1142.508800pt;}
._4d{margin-left:-1132.467200pt;}
._7{margin-left:-1126.145600pt;}
._27{margin-left:-1115.680000pt;}
._9f{margin-left:-1073.586496pt;}
._e2{margin-left:-1054.400000pt;}
._85{margin-left:-1002.892800pt;}
._36{margin-left:-998.771200pt;}
._8b{margin-left:-987.326400pt;}
._40{margin-left:-983.206400pt;}
._a3{margin-left:-977.068800pt;}
._e0{margin-left:-967.379200pt;}
._3f{margin-left:-932.147200pt;}
._61{margin-left:-927.718400pt;}
._8c{margin-left:-890.822400pt;}
._dd{margin-left:-883.590400pt;}
._e1{margin-left:-869.414400pt;}
._59{margin-left:-865.510400pt;}
._71{margin-left:-853.440000pt;}
._b2{margin-left:-850.188800pt;}
._32{margin-left:-848.371200pt;}
._6f{margin-left:-841.811200pt;}
._95{margin-left:-836.972800pt;}
._dc{margin-left:-834.483200pt;}
._88{margin-left:-827.592000pt;}
._3a{margin-left:-821.228800pt;}
._96{margin-left:-819.040000pt;}
._f{margin-left:-796.492800pt;}
._53{margin-left:-793.036800pt;}
._a4{margin-left:-781.478400pt;}
._e3{margin-left:-775.129600pt;}
._49{margin-left:-764.844800pt;}
._a{margin-left:-747.033600pt;}
._90{margin-left:-729.964800pt;}
._b6{margin-left:-716.140800pt;}
._b{margin-left:-704.339200pt;}
._db{margin-left:-702.553600pt;}
._c0{margin-left:-696.166400pt;}
._d7{margin-left:-692.838400pt;}
._b3{margin-left:-676.096000pt;}
._79{margin-left:-672.531200pt;}
._3d{margin-left:-659.142400pt;}
._a8{margin-left:-642.292800pt;}
._41{margin-left:-636.300800pt;}
._5f{margin-left:-631.481600pt;}
._ba{margin-left:-630.184000pt;}
._a0{margin-left:-621.867680pt;}
._b5{margin-left:-612.966400pt;}
._4c{margin-left:-612.057600pt;}
._16{margin-left:-608.665600pt;}
._2c{margin-left:-607.251200pt;}
._92{margin-left:-603.488000pt;}
._a2{margin-left:-596.352000pt;}
._94{margin-left:-593.220800pt;}
._d4{margin-left:-591.891200pt;}
._7b{margin-left:-585.088000pt;}
._46{margin-left:-582.521600pt;}
._3e{margin-left:-578.624000pt;}
._58{margin-left:-574.713600pt;}
._ac{margin-left:-573.708800pt;}
._2f{margin-left:-569.414400pt;}
._bb{margin-left:-565.984000pt;}
._b9{margin-left:-562.572800pt;}
._51{margin-left:-557.875200pt;}
._d6{margin-left:-551.417600pt;}
._b8{margin-left:-546.592000pt;}
._14{margin-left:-544.147200pt;}
._84{margin-left:-536.281600pt;}
._98{margin-left:-533.728000pt;}
._70{margin-left:-532.352000pt;}
._7a{margin-left:-528.096000pt;}
._93{margin-left:-525.619200pt;}
._d8{margin-left:-517.920000pt;}
._21{margin-left:-508.345600pt;}
._bf{margin-left:-487.059200pt;}
._4a{margin-left:-478.451200pt;}
._d2{margin-left:-464.755200pt;}
._8e{margin-left:-448.206400pt;}
._4f{margin-left:-446.694400pt;}
._55{margin-left:-441.876800pt;}
._48{margin-left:-432.262400pt;}
._c7{margin-left:-431.251200pt;}
._6b{margin-left:-419.686400pt;}
._1a{margin-left:-415.008000pt;}
._11{margin-left:-412.819200pt;}
._81{margin-left:-407.635200pt;}
._a9{margin-left:-401.408000pt;}
._b1{margin-left:-394.227200pt;}
._64{margin-left:-390.688000pt;}
._2e{margin-left:-388.902400pt;}
._62{margin-left:-387.916800pt;}
._7c{margin-left:-385.203200pt;}
._cc{margin-left:-362.180800pt;}
._cb{margin-left:-360.856000pt;}
._df{margin-left:-347.302400pt;}
._af{margin-left:-327.558400pt;}
._c8{margin-left:-325.344000pt;}
._d0{margin-left:-321.779200pt;}
._2b{margin-left:-320.646400pt;}
._18{margin-left:-319.116800pt;}
._a5{margin-left:-316.992000pt;}
._ca{margin-left:-314.654400pt;}
._ab{margin-left:-312.608000pt;}
._d9{margin-left:-311.187200pt;}
._54{margin-left:-293.388800pt;}
._8f{margin-left:-291.697600pt;}
._cf{margin-left:-290.048000pt;}
._bd{margin-left:-286.886400pt;}
._31{margin-left:-285.331200pt;}
._b7{margin-left:-282.905600pt;}
._99{margin-left:-277.049600pt;}
._6d{margin-left:-275.040000pt;}
._c4{margin-left:-273.864000pt;}
._da{margin-left:-270.361600pt;}
._d1{margin-left:-268.281600pt;}
._74{margin-left:-266.726400pt;}
._c2{margin-left:-259.142400pt;}
._44{margin-left:-257.107200pt;}
._b0{margin-left:-255.611200pt;}
._82{margin-left:-253.555200pt;}
._80{margin-left:-250.668800pt;}
._42{margin-left:-248.460800pt;}
._12{margin-left:-245.881600pt;}
._c5{margin-left:-244.928000pt;}
._ae{margin-left:-241.721600pt;}
._35{margin-left:-235.616000pt;}
._65{margin-left:-230.603200pt;}
._c1{margin-left:-228.019200pt;}
._be{margin-left:-225.657600pt;}
._29{margin-left:-224.563200pt;}
._c6{margin-left:-223.379200pt;}
._a6{margin-left:-221.542400pt;}
._ce{margin-left:-219.814400pt;}
._aa{margin-left:-218.099200pt;}
._77{margin-left:-215.790400pt;}
._73{margin-left:-213.529600pt;}
._97{margin-left:-210.982400pt;}
._a1{margin-left:-208.121600pt;}
._26{margin-left:-206.304000pt;}
._2d{margin-left:-203.321600pt;}
._ad{margin-left:-202.214400pt;}
._91{margin-left:-200.672000pt;}
._c3{margin-left:-198.675200pt;}
._66{margin-left:-197.689600pt;}
._20{margin-left:-195.654400pt;}
._6a{margin-left:-194.580800pt;}
._72{margin-left:-193.324800pt;}
._1c{margin-left:-191.456000pt;}
._87{margin-left:-188.960000pt;}
._7d{margin-left:-186.822400pt;}
._4e{margin-left:-184.000000pt;}
._9b{margin-left:-180.326400pt;}
._de{margin-left:-177.928000pt;}
._5a{margin-left:-176.102400pt;}
._d3{margin-left:-166.944000pt;}
._1e{margin-left:-163.692800pt;}
._17{margin-left:-158.049600pt;}
._57{margin-left:-151.577600pt;}
._5b{margin-left:-148.609600pt;}
._34{margin-left:-146.476800pt;}
._50{margin-left:-142.726400pt;}
._7f{margin-left:-137.236800pt;}
._10{margin-left:-135.380384pt;}
._9a{margin-left:-133.376000pt;}
._68{margin-left:-132.344000pt;}
._d5{margin-left:-131.116800pt;}
._3c{margin-left:-129.900800pt;}
._a7{margin-left:-121.297600pt;}
._19{margin-left:-120.006400pt;}
._8d{margin-left:-116.780800pt;}
._75{margin-left:-114.753600pt;}
._52{margin-left:-113.856000pt;}
._6c{margin-left:-100.435200pt;}
._3b{margin-left:-98.732800pt;}
._5d{margin-left:-97.196800pt;}
._47{margin-left:-96.102400pt;}
._37{margin-left:-94.099200pt;}
._63{margin-left:-92.692800pt;}
._9c{margin-left:-91.347200pt;}
._cd{margin-left:-89.945600pt;}
._4b{margin-left:-88.980800pt;}
._15{margin-left:-88.070400pt;}
._69{margin-left:-86.310400pt;}
._38{margin-left:-81.299200pt;}
._25{margin-left:-78.195200pt;}
._2a{margin-left:-74.118400pt;}
._6e{margin-left:-72.896000pt;}
._5c{margin-left:-68.486400pt;}
._67{margin-left:-64.921600pt;}
._b4{margin-left:-60.326400pt;}
._45{margin-left:-53.307200pt;}
._43{margin-left:-50.272000pt;}
._60{margin-left:-48.825600pt;}
._5e{margin-left:-47.227200pt;}
._1f{margin-left:-32.044800pt;}
._1b{margin-left:-29.043200pt;}
._56{margin-left:-27.436800pt;}
._13{margin-left:-21.785600pt;}
._83{margin-left:-18.496000pt;}
._76{margin-left:-17.593600pt;}
._1d{margin-left:-8.505600pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-0.907200pt;}
._5{width:0.921600pt;}
._1{width:2.010667pt;}
._e6{width:4.192000pt;}
._24{width:5.363200pt;}
._23{width:7.033600pt;}
._4{width:12.391456pt;}
._28{width:13.939200pt;}
._3{width:16.009344pt;}
._8a{width:18.393600pt;}
._6{width:19.488000pt;}
._e4{width:23.673600pt;}
._22{width:26.528000pt;}
._9d{width:27.929600pt;}
._78{width:34.944000pt;}
._e5{width:39.276800pt;}
._33{width:128.013333pt;}
._d{width:156.572267pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:42.560000pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs9{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:0.012000pt;}
.y28b{bottom:0.079867pt;}
.y1c{bottom:38.525600pt;}
.y2dc{bottom:96.204800pt;}
.y1b2{bottom:97.849867pt;}
.y20e{bottom:112.826755pt;}
.y3e{bottom:112.834557pt;}
.y2db{bottom:114.604800pt;}
.y2b6{bottom:115.635867pt;}
.y2b7{bottom:115.647867pt;}
.y28a{bottom:116.038667pt;}
.y28c{bottom:116.118533pt;}
.y289{bottom:116.123280pt;}
.y18b{bottom:117.077733pt;}
.y1b1{bottom:118.997067pt;}
.y1d8{bottom:126.976533pt;}
.y68{bottom:128.678933pt;}
.y20d{bottom:130.164027pt;}
.y163{bottom:130.522933pt;}
.y231{bottom:132.036933pt;}
.y117{bottom:132.112667pt;}
.y2da{bottom:133.004800pt;}
.y288{bottom:133.718400pt;}
.y2b5{bottom:136.800533pt;}
.y18a{bottom:138.197733pt;}
.y3d{bottom:139.530533pt;}
.y1b0{bottom:140.144267pt;}
.y140{bottom:143.958667pt;}
.y20c{bottom:147.501299pt;}
.y1d7{bottom:148.131733pt;}
.yaa{bottom:149.560000pt;}
.y67{bottom:149.838933pt;}
.y162{bottom:151.695733pt;}
.y24f{bottom:152.033333pt;}
.y8b{bottom:152.198133pt;}
.y230{bottom:153.196933pt;}
.y116{bottom:153.267867pt;}
.y1ea{bottom:157.318800pt;}
.y2b4{bottom:157.955733pt;}
.y1af{bottom:161.291467pt;}
.y2d9{bottom:164.684800pt;}
.y13f{bottom:165.110667pt;}
.y20b{bottom:166.143867pt;}
.y1d6{bottom:169.286933pt;}
.y66{bottom:170.998933pt;}
.y189{bottom:172.677733pt;}
.y161{bottom:172.868533pt;}
.y24e{bottom:173.193333pt;}
.y8a{bottom:173.358133pt;}
.y22f{bottom:174.356933pt;}
.y115{bottom:174.423067pt;}
.y1dc{bottom:178.518800pt;}
.y1ae{bottom:182.438667pt;}
.ya9{bottom:182.520000pt;}
.y2d8{bottom:183.084800pt;}
.y13e{bottom:186.262667pt;}
.y1d5{bottom:190.442133pt;}
.y65{bottom:192.158933pt;}
.y2b3{bottom:192.510933pt;}
.y188{bottom:193.850533pt;}
.y160{bottom:194.041333pt;}
.y24d{bottom:194.353333pt;}
.y89{bottom:194.518133pt;}
.y114{bottom:195.578267pt;}
.ya8{bottom:200.840000pt;}
.y2d7{bottom:201.484800pt;}
.y1db{bottom:203.478800pt;}
.y22e{bottom:206.036933pt;}
.y26e{bottom:207.313733pt;}
.y13d{bottom:207.414667pt;}
.y1d3{bottom:211.585333pt;}
.y1d4{bottom:211.597333pt;}
.y64{bottom:213.318933pt;}
.y2b2{bottom:213.666133pt;}
.y187{bottom:215.023333pt;}
.y24b{bottom:215.501333pt;}
.y24c{bottom:215.513333pt;}
.y88{bottom:215.678133pt;}
.yeb{bottom:216.426667pt;}
.yec{bottom:216.438667pt;}
.y113{bottom:216.733467pt;}
.y1ad{bottom:216.998667pt;}
.ycb{bottom:224.438267pt;}
.y26d{bottom:228.473733pt;}
.y15f{bottom:228.521333pt;}
.y13b{bottom:228.554667pt;}
.y13c{bottom:228.566667pt;}
.y3c{bottom:231.720000pt;}
.y1d2{bottom:232.751333pt;}
.y2d6{bottom:233.244800pt;}
.ya7{bottom:233.800000pt;}
.y63{bottom:234.478933pt;}
.y2b0{bottom:234.819200pt;}
.y2b1{bottom:234.821333pt;}
.y186{bottom:236.196133pt;}
.y24a{bottom:236.674933pt;}
.y87{bottom:236.838133pt;}
.yf0{bottom:237.558667pt;}
.yea{bottom:237.558800pt;}
.y20a{bottom:237.878800pt;}
.y112{bottom:237.888667pt;}
.y1ac{bottom:238.118667pt;}
.y1e9{bottom:238.198800pt;}
.y22d{bottom:240.596933pt;}
.yca{bottom:245.590267pt;}
.y26c{bottom:249.633733pt;}
.y15e{bottom:249.681333pt;}
.y13a{bottom:249.719200pt;}
.y2d5{bottom:251.644800pt;}
.ya6{bottom:252.120000pt;}
.y3b{bottom:252.920000pt;}
.y1d1{bottom:253.906533pt;}
.y62{bottom:255.638933pt;}
.y2af{bottom:255.974400pt;}
.y249{bottom:257.834933pt;}
.yef{bottom:258.758667pt;}
.ye9{bottom:258.758800pt;}
.y209{bottom:258.998800pt;}
.y111{bottom:259.043867pt;}
.y1e8{bottom:259.318800pt;}
.y1a{bottom:260.758267pt;}
.y22c{bottom:261.764933pt;}
.y141{bottom:264.438800pt;}
.yc9{bottom:266.742267pt;}
.y1ab{bottom:270.598800pt;}
.y185{bottom:270.676133pt;}
.y26b{bottom:270.793733pt;}
.y139{bottom:270.839200pt;}
.y15d{bottom:270.841333pt;}
.y86{bottom:271.318133pt;}
.y3a{bottom:274.040000pt;}
.y1d0{bottom:275.061733pt;}
.y61{bottom:276.798933pt;}
.y2ae{bottom:277.129600pt;}
.y248{bottom:278.994933pt;}
.yee{bottom:279.878667pt;}
.ye8{bottom:279.878800pt;}
.y110{bottom:280.199067pt;}
.y1aa{bottom:280.440133pt;}
.y1da{bottom:280.518800pt;}
.y22b{bottom:282.932933pt;}
.y19{bottom:282.998267pt;}
.y2d4{bottom:283.404800pt;}
.ya5{bottom:285.080000pt;}
.yc8{bottom:287.894267pt;}
.y184{bottom:291.836133pt;}
.y26a{bottom:291.953733pt;}
.y138{bottom:292.039200pt;}
.y85{bottom:292.470133pt;}
.y207{bottom:293.466800pt;}
.y208{bottom:293.478800pt;}
.y39{bottom:295.240000pt;}
.y60{bottom:297.958933pt;}
.y2ad{bottom:298.284800pt;}
.yed{bottom:301.078667pt;}
.ye7{bottom:301.078800pt;}
.y1a9{bottom:301.560133pt;}
.y2d3{bottom:301.804800pt;}
.ya4{bottom:303.480000pt;}
.y22a{bottom:304.100933pt;}
.y15c{bottom:305.321333pt;}
.yc7{bottom:309.046267pt;}
.y1cf{bottom:309.621733pt;}
.y1e7{bottom:311.554800pt;}
.y183{bottom:312.996133pt;}
.y269{bottom:313.113733pt;}
.y137{bottom:313.159200pt;}
.y247{bottom:313.474933pt;}
.y84{bottom:313.622133pt;}
.y206{bottom:314.679600pt;}
.y38{bottom:316.360000pt;}
.y5f{bottom:319.118933pt;}
.y2ac{bottom:319.440000pt;}
.ya3{bottom:321.800000pt;}
.y1a8{bottom:322.760133pt;}
.y229{bottom:325.268933pt;}
.y15b{bottom:326.481333pt;}
.y1d9{bottom:326.918800pt;}
.ye6{bottom:327.158800pt;}
.yc6{bottom:330.198267pt;}
.y1ce{bottom:330.773733pt;}
.y2d2{bottom:333.484800pt;}
.y182{bottom:334.156133pt;}
.y268{bottom:334.273733pt;}
.y246{bottom:334.634933pt;}
.y83{bottom:334.774133pt;}
.y205{bottom:335.799600pt;}
.y18{bottom:335.958267pt;}
.y5e{bottom:340.278933pt;}
.y2ab{bottom:340.595200pt;}
.y1a7{bottom:343.880133pt;}
.y228{bottom:346.436933pt;}
.y15a{bottom:347.641333pt;}
.y136{bottom:347.719200pt;}
.ya2{bottom:349.160000pt;}
.y37{bottom:350.840000pt;}
.yf9{bottom:351.638933pt;}
.y2d1{bottom:351.884800pt;}
.y1cd{bottom:351.925733pt;}
.y17{bottom:354.358267pt;}
.y181{bottom:355.316133pt;}
.y245{bottom:355.794933pt;}
.y82{bottom:355.926133pt;}
.y204{bottom:356.999600pt;}
.y10f{bottom:357.799067pt;}
.y5d{bottom:361.438933pt;}
.yc5{bottom:364.678267pt;}
.y1a6{bottom:365.080133pt;}
.y267{bottom:368.833733pt;}
.y135{bottom:368.839200pt;}
.y2d0{bottom:370.284800pt;}
.y36{bottom:372.040000pt;}
.y16{bottom:372.758267pt;}
.y1cc{bottom:373.077733pt;}
.y2aa{bottom:375.075200pt;}
.y244{bottom:376.954933pt;}
.y81{bottom:377.078133pt;}
.y203{bottom:378.119600pt;}
.y227{bottom:380.916933pt;}
.y159{bottom:382.121333pt;}
.y5c{bottom:382.598933pt;}
.yde{bottom:382.920000pt;}
.ya1{bottom:383.800000pt;}
.yc4{bottom:385.838267pt;}
.y1a5{bottom:386.200133pt;}
.yf8{bottom:388.759067pt;}
.y10e{bottom:389.639067pt;}
.y180{bottom:389.796133pt;}
.y134{bottom:389.959200pt;}
.y266{bottom:389.980933pt;}
.y15{bottom:391.158267pt;}
.y35{bottom:393.160000pt;}
.y1cb{bottom:394.229733pt;}
.y2a9{bottom:396.232000pt;}
.y243{bottom:398.114933pt;}
.y202{bottom:399.319600pt;}
.y2cf{bottom:402.044800pt;}
.y226{bottom:402.068933pt;}
.ya0{bottom:402.120000pt;}
.y158{bottom:403.294133pt;}
.y5a{bottom:403.746933pt;}
.y5b{bottom:403.758933pt;}
.ydd{bottom:404.040000pt;}
.yc3{bottom:406.998267pt;}
.y1a4{bottom:407.400133pt;}
.y14{bottom:408.868533pt;}
.y17f{bottom:410.956133pt;}
.y265{bottom:411.128133pt;}
.y133{bottom:411.159200pt;}
.y80{bottom:411.558133pt;}
.y34{bottom:414.360000pt;}
.y1ca{bottom:415.381733pt;}
.y2a8{bottom:417.387200pt;}
.y2ce{bottom:420.444800pt;}
.y10d{bottom:421.399067pt;}
.y225{bottom:423.220933pt;}
.y157{bottom:424.466933pt;}
.y58{bottom:424.907067pt;}
.y59{bottom:424.919067pt;}
.ydc{bottom:425.240000pt;}
.yf7{bottom:426.039067pt;}
.y13{bottom:427.959733pt;}
.yc2{bottom:428.158267pt;}
.y1a3{bottom:428.520133pt;}
.y242{bottom:429.794933pt;}
.y17e{bottom:432.116133pt;}
.y264{bottom:432.275333pt;}
.y132{bottom:432.279200pt;}
.y7f{bottom:432.730933pt;}
.y201{bottom:433.799600pt;}
.y9f{bottom:435.080000pt;}
.y33{bottom:435.480000pt;}
.y2a7{bottom:438.544000pt;}
.y2cd{bottom:438.844800pt;}
.y224{bottom:444.372933pt;}
.y156{bottom:445.639733pt;}
.y56{bottom:446.071467pt;}
.y12{bottom:446.359733pt;}
.ydb{bottom:446.360000pt;}
.yc1{bottom:449.318267pt;}
.y1a2{bottom:449.720133pt;}
.y1c8{bottom:449.849733pt;}
.y1c9{bottom:449.861733pt;}
.y10c{bottom:453.079067pt;}
.y9e{bottom:453.400000pt;}
.y263{bottom:453.422533pt;}
.y131{bottom:453.479200pt;}
.y7e{bottom:453.903733pt;}
.y200{bottom:454.919600pt;}
.y32{bottom:456.680000pt;}
.y285{bottom:458.915200pt;}
.y2a6{bottom:459.699200pt;}
.y241{bottom:464.354933pt;}
.y223{bottom:465.524933pt;}
.y17d{bottom:466.596133pt;}
.y55{bottom:467.231467pt;}
.yda{bottom:467.560000pt;}
.y11{bottom:468.599733pt;}
.y2cc{bottom:470.524800pt;}
.y1a1{bottom:470.840133pt;}
.y1c7{bottom:471.023200pt;}
.y10b{bottom:471.479333pt;}
.y262{bottom:474.569733pt;}
.y130{bottom:474.599200pt;}
.y7d{bottom:475.076533pt;}
.y1ff{bottom:476.119600pt;}
.y31{bottom:477.800000pt;}
.y155{bottom:479.959733pt;}
.y284{bottom:480.115200pt;}
.y2a5{bottom:480.856000pt;}
.yc0{bottom:483.798267pt;}
.y240{bottom:485.511733pt;}
.y9d{bottom:486.360000pt;}
.y222{bottom:486.676933pt;}
.y17c{bottom:487.716133pt;}
.y54{bottom:488.391467pt;}
.yd9{bottom:488.680000pt;}
.y2cb{bottom:488.924800pt;}
.y1a0{bottom:492.040133pt;}
.y1c6{bottom:492.183200pt;}
.y261{bottom:495.716933pt;}
.y12f{bottom:495.799200pt;}
.y1fe{bottom:497.239600pt;}
.y30{bottom:499.000000pt;}
.y7c{bottom:501.156533pt;}
.y2a3{bottom:501.999200pt;}
.y2a4{bottom:502.011200pt;}
.y10a{bottom:503.079333pt;}
.y9c{bottom:504.680000pt;}
.ybf{bottom:504.958267pt;}
.y23e{bottom:506.656533pt;}
.y23f{bottom:506.668533pt;}
.y2ca{bottom:507.324800pt;}
.y53{bottom:509.551467pt;}
.yd8{bottom:509.880000pt;}
.y19f{bottom:513.160133pt;}
.y1c5{bottom:513.343200pt;}
.y283{bottom:514.595200pt;}
.y154{bottom:514.599733pt;}
.y12e{bottom:516.919200pt;}
.y1fd{bottom:518.439600pt;}
.y221{bottom:521.156933pt;}
.y109{bottom:521.479333pt;}
.y17b{bottom:522.116133pt;}
.y2a2{bottom:523.165733pt;}
.ybe{bottom:526.118267pt;}
.y10{bottom:526.839733pt;}
.y23d{bottom:527.832133pt;}
.y260{bottom:530.276933pt;}
.yd7{bottom:531.000000pt;}
.y2f{bottom:533.480000pt;}
.y19e{bottom:534.360133pt;}
.y1c4{bottom:534.503200pt;}
.y282{bottom:535.752000pt;}
.y153{bottom:535.759733pt;}
.y9b{bottom:537.640000pt;}
.y2c9{bottom:539.084800pt;}
.y1fc{bottom:539.559600pt;}
.y108{bottom:539.879333pt;}
.y142{bottom:540.439200pt;}
.y220{bottom:542.321733pt;}
.y52{bottom:544.031467pt;}
.y2a1{bottom:544.322533pt;}
.ybd{bottom:547.278267pt;}
.y23c{bottom:548.988933pt;}
.yf{bottom:549.079733pt;}
.y12d{bottom:551.399333pt;}
.y25f{bottom:551.424133pt;}
.yd6{bottom:552.200000pt;}
.y2e{bottom:554.600000pt;}
.y19d{bottom:555.480133pt;}
.y1c3{bottom:555.663200pt;}
.y9a{bottom:555.960000pt;}
.y17a{bottom:556.756133pt;}
.y281{bottom:556.908800pt;}
.y7b{bottom:556.913733pt;}
.y152{bottom:556.919733pt;}
.y21f{bottom:563.486533pt;}
.y1fb{bottom:564.599600pt;}
.y51{bottom:565.185067pt;}
.y2a0{bottom:565.479333pt;}
.ybc{bottom:568.438267pt;}
.y12c{bottom:569.799333pt;}
.y23b{bottom:570.145733pt;}
.y2c8{bottom:570.844800pt;}
.y107{bottom:571.719333pt;}
.y25e{bottom:572.571333pt;}
.yd5{bottom:573.320000pt;}
.y2d{bottom:575.800000pt;}
.y19c{bottom:576.680133pt;}
.y1c2{bottom:576.823200pt;}
.y178{bottom:577.899333pt;}
.y179{bottom:577.911333pt;}
.y280{bottom:578.065600pt;}
.y7a{bottom:578.073733pt;}
.y21e{bottom:584.651333pt;}
.y50{bottom:586.338667pt;}
.y12b{bottom:588.199333pt;}
.y99{bottom:588.920000pt;}
.y2c7{bottom:589.244800pt;}
.ybb{bottom:589.598267pt;}
.y106{bottom:590.119333pt;}
.y23a{bottom:591.302533pt;}
.y151{bottom:591.399733pt;}
.y25d{bottom:593.718533pt;}
.yd4{bottom:594.520000pt;}
.y2c{bottom:596.920000pt;}
.y177{bottom:599.065600pt;}
.y27f{bottom:599.222400pt;}
.y79{bottom:599.233733pt;}
.y1fa{bottom:599.239600pt;}
.y29f{bottom:599.959333pt;}
.y19b{bottom:601.640133pt;}
.y21d{bottom:605.816133pt;}
.y12a{bottom:606.599467pt;}
.y98{bottom:607.240000pt;}
.ye{bottom:607.399733pt;}
.y4f{bottom:607.492267pt;}
.y2c6{bottom:607.644800pt;}
.y105{bottom:608.839467pt;}
.yba{bottom:610.758267pt;}
.y1c1{bottom:611.303200pt;}
.y239{bottom:612.459333pt;}
.y150{bottom:612.551733pt;}
.y25c{bottom:614.865733pt;}
.yd3{bottom:615.640000pt;}
.y2b{bottom:618.120000pt;}
.y175{bottom:620.208800pt;}
.y176{bottom:620.220800pt;}
.y1f9{bottom:620.359600pt;}
.y27e{bottom:620.379200pt;}
.y78{bottom:620.393733pt;}
.y29c{bottom:621.159733pt;}
.y129{bottom:624.999467pt;}
.yd{bottom:625.799733pt;}
.y21c{bottom:626.980933pt;}
.y104{bottom:627.239467pt;}
.y4e{bottom:628.645867pt;}
.y29e{bottom:628.924347pt;}
.y1c0{bottom:629.908000pt;}
.yb9{bottom:631.918267pt;}
.y287{bottom:632.525203pt;}
.ye5{bottom:632.919467pt;}
.y238{bottom:633.616133pt;}
.y14f{bottom:633.703733pt;}
.y25b{bottom:636.012933pt;}
.y19a{bottom:636.280133pt;}
.ycc{bottom:636.839467pt;}
.yd2{bottom:636.840000pt;}
.y2a{bottom:639.240000pt;}
.y2c5{bottom:639.324800pt;}
.y97{bottom:640.200000pt;}
.y174{bottom:641.374000pt;}
.y27d{bottom:641.536000pt;}
.y77{bottom:641.553733pt;}
.y29b{bottom:642.279733pt;}
.y128{bottom:643.399467pt;}
.yc{bottom:644.199733pt;}
.y103{bottom:645.639467pt;}
.y29d{bottom:646.519467pt;}
.y21b{bottom:648.145733pt;}
.y1bf{bottom:648.512800pt;}
.y4d{bottom:649.799467pt;}
.y286{bottom:650.359467pt;}
.yb8{bottom:653.078267pt;}
.y237{bottom:654.772933pt;}
.y1eb{bottom:654.839467pt;}
.y1f8{bottom:654.839600pt;}
.y14e{bottom:654.855733pt;}
.y25a{bottom:657.160133pt;}
.y199{bottom:657.480133pt;}
.y2c4{bottom:657.724800pt;}
.y96{bottom:658.520000pt;}
.y29{bottom:660.440000pt;}
.ye4{bottom:661.404480pt;}
.y127{bottom:661.799467pt;}
.y173{bottom:662.529200pt;}
.yb{bottom:662.599733pt;}
.y27c{bottom:662.692800pt;}
.y76{bottom:662.713733pt;}
.y29a{bottom:663.479733pt;}
.y102{bottom:664.039467pt;}
.y21a{bottom:669.310533pt;}
.yb7{bottom:674.238267pt;}
.y1bd{bottom:674.840133pt;}
.y4c{bottom:675.879600pt;}
.y236{bottom:675.929733pt;}
.y14d{bottom:676.007733pt;}
.y1f7{bottom:676.039600pt;}
.ye3{bottom:678.999600pt;}
.y126{bottom:680.199600pt;}
.ya{bottom:680.999733pt;}
.y28{bottom:681.560000pt;}
.y101{bottom:682.439733pt;}
.y172{bottom:683.684400pt;}
.y2c3{bottom:683.724933pt;}
.y27b{bottom:683.849600pt;}
.y75{bottom:683.873733pt;}
.y299{bottom:684.599733pt;}
.y219{bottom:690.475333pt;}
.y95{bottom:691.400000pt;}
.y259{bottom:691.720133pt;}
.y198{bottom:691.960133pt;}
.yb6{bottom:695.398267pt;}
.y235{bottom:697.086533pt;}
.y1f6{bottom:697.159600pt;}
.y14c{bottom:697.159733pt;}
.y1bc{bottom:697.160133pt;}
.y125{bottom:698.599600pt;}
.y9{bottom:699.399733pt;}
.y100{bottom:701.159733pt;}
.y27{bottom:702.760000pt;}
.y171{bottom:704.839600pt;}
.y27a{bottom:705.006400pt;}
.y74{bottom:705.033733pt;}
.y298{bottom:705.799733pt;}
.y218{bottom:711.640133pt;}
.y258{bottom:712.867333pt;}
.y197{bottom:713.080133pt;}
.yb5{bottom:716.558267pt;}
.y124{bottom:716.999733pt;}
.y8{bottom:717.799733pt;}
.y234{bottom:718.243333pt;}
.y1f5{bottom:718.359600pt;}
.y1bb{bottom:718.360133pt;}
.yff{bottom:719.559733pt;}
.y26{bottom:723.880000pt;}
.y94{bottom:724.360000pt;}
.y279{bottom:726.163200pt;}
.y73{bottom:726.193733pt;}
.y297{bottom:726.919733pt;}
.y4b{bottom:731.716933pt;}
.y14b{bottom:731.719733pt;}
.y257{bottom:734.014533pt;}
.y196{bottom:734.280133pt;}
.yb4{bottom:737.718267pt;}
.yfe{bottom:737.959733pt;}
.y16f{bottom:739.307600pt;}
.y170{bottom:739.319600pt;}
.y233{bottom:739.400133pt;}
.y1f3{bottom:739.467600pt;}
.y1f4{bottom:739.479600pt;}
.y1ba{bottom:739.480133pt;}
.y2c2{bottom:739.483333pt;}
.y7{bottom:740.039733pt;}
.y93{bottom:742.680000pt;}
.y25{bottom:745.080000pt;}
.y217{bottom:746.120133pt;}
.y278{bottom:747.320000pt;}
.y296{bottom:748.119733pt;}
.y121{bottom:751.399733pt;}
.y14a{bottom:752.839733pt;}
.y4a{bottom:752.870533pt;}
.y256{bottom:755.161733pt;}
.y195{bottom:755.400133pt;}
.yfd{bottom:756.279867pt;}
.y16e{bottom:760.480000pt;}
.y2c1{bottom:760.651333pt;}
.y72{bottom:760.673733pt;}
.y1f2{bottom:760.679867pt;}
.y1b9{bottom:760.680133pt;}
.y232{bottom:765.720133pt;}
.y24{bottom:766.200000pt;}
.y216{bottom:767.280133pt;}
.y295{bottom:769.239733pt;}
.yb3{bottom:772.198267pt;}
.y120{bottom:772.599733pt;}
.y149{bottom:773.960133pt;}
.y49{bottom:774.024133pt;}
.y92{bottom:775.560000pt;}
.y194{bottom:776.600133pt;}
.y16d{bottom:781.640000pt;}
.y1e6{bottom:781.798800pt;}
.y1f1{bottom:781.799467pt;}
.y277{bottom:781.800000pt;}
.y1b8{bottom:781.800133pt;}
.y2c0{bottom:781.819333pt;}
.y71{bottom:781.828933pt;}
.yfc{bottom:788.199867pt;}
.y215{bottom:788.440133pt;}
.y255{bottom:789.641733pt;}
.yb2{bottom:793.345467pt;}
.y11e{bottom:793.707733pt;}
.y11f{bottom:793.719733pt;}
.y148{bottom:795.160133pt;}
.y48{bottom:795.177733pt;}
.y294{bottom:795.319867pt;}
.y193{bottom:797.720133pt;}
.y23{bottom:800.680000pt;}
.y276{bottom:802.960000pt;}
.y70{bottom:802.984133pt;}
.y2bf{bottom:802.987333pt;}
.y1e5{bottom:802.998800pt;}
.y1f0{bottom:802.999467pt;}
.y91{bottom:803.000000pt;}
.y1b7{bottom:803.000133pt;}
.y214{bottom:809.600133pt;}
.y254{bottom:810.801733pt;}
.yb1{bottom:814.492667pt;}
.y123{bottom:814.919733pt;}
.y11d{bottom:814.920133pt;}
.y16c{bottom:815.960000pt;}
.y147{bottom:816.280133pt;}
.y47{bottom:816.331333pt;}
.yfb{bottom:819.959867pt;}
.y22{bottom:821.880000pt;}
.y1e4{bottom:824.118800pt;}
.y275{bottom:824.120000pt;}
.y1b6{bottom:824.120133pt;}
.y6f{bottom:824.139333pt;}
.y2be{bottom:824.155333pt;}
.y213{bottom:830.760133pt;}
.y253{bottom:831.961733pt;}
.y192{bottom:832.200133pt;}
.yb0{bottom:835.639867pt;}
.y122{bottom:836.039733pt;}
.y11c{bottom:836.040133pt;}
.y1ef{bottom:837.479467pt;}
.y146{bottom:837.480133pt;}
.y46{bottom:837.484933pt;}
.yfa{bottom:838.359867pt;}
.y90{bottom:840.280000pt;}
.y16b{bottom:841.160000pt;}
.y6{bottom:842.759867pt;}
.y21{bottom:843.000000pt;}
.y274{bottom:845.280000pt;}
.y6e{bottom:845.294533pt;}
.y1e3{bottom:845.318800pt;}
.y1b5{bottom:845.320133pt;}
.y2bd{bottom:845.323333pt;}
.y293{bottom:851.080133pt;}
.y212{bottom:851.920133pt;}
.y191{bottom:853.400133pt;}
.y1ee{bottom:858.599467pt;}
.y145{bottom:858.600133pt;}
.y45{bottom:858.638533pt;}
.y5{bottom:858.679867pt;}
.y11b{bottom:861.080133pt;}
.y8f{bottom:861.400000pt;}
.yaf{bottom:861.719867pt;}
.y20{bottom:864.200000pt;}
.y272{bottom:866.428000pt;}
.y1e2{bottom:866.438800pt;}
.y273{bottom:866.440000pt;}
.y1b4{bottom:866.440133pt;}
.y252{bottom:866.441733pt;}
.y6d{bottom:866.449733pt;}
.y2bc{bottom:866.491333pt;}
.yf6{bottom:869.320133pt;}
.y292{bottom:872.280133pt;}
.y211{bottom:873.080133pt;}
.y190{bottom:874.520133pt;}
.y169{bottom:875.788000pt;}
.y16a{bottom:875.800000pt;}
.y4{bottom:877.079867pt;}
.y44{bottom:879.792133pt;}
.y1ed{bottom:879.799467pt;}
.y144{bottom:879.800133pt;}
.y8e{bottom:882.600000pt;}
.y1f{bottom:885.320000pt;}
.y11a{bottom:887.560133pt;}
.y271{bottom:887.600133pt;}
.y6c{bottom:887.604933pt;}
.y251{bottom:887.614533pt;}
.y1b3{bottom:887.640133pt;}
.yf5{bottom:890.440133pt;}
.y291{bottom:893.400133pt;}
.y18f{bottom:895.720133pt;}
.y168{bottom:896.960133pt;}
.y1e1{bottom:900.918800pt;}
.y1ec{bottom:900.919467pt;}
.yd1{bottom:900.920000pt;}
.y143{bottom:900.920133pt;}
.y43{bottom:900.945733pt;}
.y2bb{bottom:900.971333pt;}
.y210{bottom:904.680133pt;}
.y1e{bottom:906.520000pt;}
.y8d{bottom:908.680000pt;}
.y6b{bottom:908.760133pt;}
.y250{bottom:908.787333pt;}
.y3{bottom:911.080000pt;}
.yf4{bottom:911.640133pt;}
.y290{bottom:914.600133pt;}
.yae{bottom:914.840133pt;}
.y18e{bottom:916.840133pt;}
.y167{bottom:918.120133pt;}
.y42{bottom:922.099333pt;}
.y2ba{bottom:922.118533pt;}
.y1e0{bottom:922.118800pt;}
.yd0{bottom:922.119467pt;}
.ye2{bottom:922.120000pt;}
.y119{bottom:922.120133pt;}
.y20f{bottom:929.800133pt;}
.y270{bottom:929.920133pt;}
.y1be{bottom:929.960133pt;}
.y1d{bottom:932.520000pt;}
.yf3{bottom:932.760133pt;}
.yad{bottom:933.160133pt;}
.y28f{bottom:935.720133pt;}
.y18d{bottom:938.040133pt;}
.y166{bottom:939.280133pt;}
.y118{bottom:943.228133pt;}
.y1df{bottom:943.238800pt;}
.ycf{bottom:943.239467pt;}
.ye1{bottom:943.240000pt;}
.y6a{bottom:943.240133pt;}
.y41{bottom:943.252933pt;}
.y2b9{bottom:943.265733pt;}
.y26f{bottom:951.080133pt;}
.y28e{bottom:956.920133pt;}
.yf2{bottom:959.080133pt;}
.y18c{bottom:959.160133pt;}
.y165{bottom:960.440133pt;}
.y2{bottom:963.480133pt;}
.y69{bottom:964.400133pt;}
.y40{bottom:964.406533pt;}
.y2b8{bottom:964.412933pt;}
.y1de{bottom:964.438800pt;}
.yce{bottom:964.439467pt;}
.ye0{bottom:964.440000pt;}
.y8c{bottom:964.440133pt;}
.yac{bottom:966.120133pt;}
.y28d{bottom:983.000133pt;}
.yab{bottom:984.440133pt;}
.y164{bottom:985.400133pt;}
.yf1{bottom:985.480133pt;}
.y1dd{bottom:985.558800pt;}
.ycd{bottom:985.559467pt;}
.ydf{bottom:985.560000pt;}
.y3f{bottom:985.560133pt;}
.y1{bottom:1066.440800pt;}
.y1b{bottom:1089.725600pt;}
.h14{height:12.160000pt;}
.ha{height:30.324375pt;}
.h8{height:31.062500pt;}
.hf{height:36.374688pt;}
.h12{height:44.468750pt;}
.hb{height:46.890469pt;}
.h4{height:48.247344pt;}
.h10{height:56.155717pt;}
.h6{height:56.156250pt;}
.hd{height:56.312500pt;}
.h5{height:56.843750pt;}
.h3{height:57.781250pt;}
.h11{height:62.293087pt;}
.h7{height:66.778040pt;}
.h9{height:66.783906pt;}
.h13{height:66.784973pt;}
.he{height:66.786040pt;}
.h2{height:67.315156pt;}
.h1{height:82.208000pt;}
.hc{height:1122.628000pt;}
.h0{height:1122.666667pt;}
.w4{width:11.200000pt;}
.w3{width:261.840000pt;}
.w2{width:680.241333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x28{left:5.200533pt;}
.x3d{left:6.719733pt;}
.x2a{left:53.760533pt;}
.x7{left:56.733867pt;}
.x1b{left:60.736800pt;}
.xc{left:64.750000pt;}
.x19{left:78.253867pt;}
.xd{left:80.733867pt;}
.x2c{left:85.200667pt;}
.x10{left:86.653867pt;}
.x4{left:98.013867pt;}
.x2e{left:111.840667pt;}
.x9{left:113.426933pt;}
.x20{left:117.346933pt;}
.x15{left:121.506933pt;}
.x30{left:131.520667pt;}
.x1e{left:135.917600pt;}
.xe{left:137.426933pt;}
.x16{left:145.507067pt;}
.x32{left:150.400800pt;}
.x11{left:152.572107pt;}
.x14{left:167.426933pt;}
.x13{left:169.906933pt;}
.x34{left:177.760800pt;}
.x23{left:181.427067pt;}
.x21{left:193.351973pt;}
.x36{left:201.440933pt;}
.x24{left:210.147067pt;}
.x18{left:211.053733pt;}
.x25{left:214.382187pt;}
.x17{left:215.453733pt;}
.x2{left:217.852400pt;}
.x38{left:220.000933pt;}
.x26{left:230.627067pt;}
.x22{left:240.781733pt;}
.x3a{left:241.840933pt;}
.x27{left:247.260267pt;}
.x29{left:297.667200pt;}
.x2b{left:314.387333pt;}
.x3{left:323.934000pt;}
.x8{left:334.175600pt;}
.xf{left:338.205867pt;}
.x2d{left:351.747333pt;}
.x2f{left:365.827333pt;}
.x1f{left:374.082933pt;}
.xb{left:390.868933pt;}
.x31{left:394.307467pt;}
.x33{left:408.787467pt;}
.x12{left:414.894133pt;}
.x1{left:428.734133pt;}
.x35{left:445.347600pt;}
.x6{left:451.374133pt;}
.x37{left:462.067600pt;}
.x39{left:479.107600pt;}
.x5{left:484.812267pt;}
.x40{left:486.074267pt;}
.x3b{left:495.747600pt;}
.xa{left:508.298267pt;}
.x1c{left:509.746933pt;}
.x3e{left:515.294400pt;}
.x3c{left:520.148000pt;}
.x1a{left:526.174400pt;}
.x1d{left:533.426933pt;}
.x3f{left:546.650320pt;}
}




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