
    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_53625692a5545beee026d602.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_a7686c9e0d9c22643071799f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921000;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_8fb107b1fd0a8d7bff488494.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.071000;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_6ac3835a6c136377df040d11.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_2b3061397e34c5314508bf54.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.745000;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_0befc5b8546d90d176d63d9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740000;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_325142f31046df269edc2c4d.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_8931eaf4d768b3b9141341e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_940fa1e1103f3cf8edf6ef4f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_ee2909affafcf515c2f99706.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.875488;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_01e125e2ba0ec75a52abd076.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_068d519c78a28cd9ae87b7e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_09cc685c3cb1a78f9ee9412d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.699219;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_55c274f85bfd778a875a49e4.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3b{letter-spacing:-1.258200px;}
.ls1e{letter-spacing:-1.251360px;}
.ls1c{letter-spacing:-1.194480px;}
.ls1d{letter-spacing:-1.137600px;}
.ls56{letter-spacing:-1.090440px;}
.ls6d{letter-spacing:-1.080720px;}
.ls6c{letter-spacing:-1.006560px;}
.ls51{letter-spacing:-0.398160px;}
.ls42{letter-spacing:-0.284400px;}
.ls19{letter-spacing:-0.227520px;}
.ls1a{letter-spacing:-0.170640px;}
.ls26{letter-spacing:-0.167760px;}
.ls8{letter-spacing:-0.156240px;}
.ls5d{letter-spacing:-0.153360px;}
.ls4c{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.135000px;}
.ls2{letter-spacing:-0.132120px;}
.ls1f{letter-spacing:-0.113760px;}
.ls5c{letter-spacing:-0.102240px;}
.ls25{letter-spacing:-0.083880px;}
.ls6{letter-spacing:-0.078120px;}
.ls0{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.060000px;}
.ls1b{letter-spacing:-0.056880px;}
.ls1{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.005688px;}
.ls46{letter-spacing:0.017064px;}
.ls36{letter-spacing:0.022752px;}
.ls35{letter-spacing:0.034128px;}
.ls16{letter-spacing:0.045000px;}
.ls58{letter-spacing:0.051120px;}
.ls6e{letter-spacing:0.051192px;}
.ls9{letter-spacing:0.056880px;}
.ls57{letter-spacing:0.058320px;}
.lsd{letter-spacing:0.060000px;}
.ls59{letter-spacing:0.060480px;}
.ls4a{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.073944px;}
.ls4{letter-spacing:0.078120px;}
.ls62{letter-spacing:0.085320px;}
.ls2d{letter-spacing:0.090000px;}
.ls5a{letter-spacing:0.102240px;}
.ls4e{letter-spacing:0.108072px;}
.lsb{letter-spacing:0.113760px;}
.lsa{letter-spacing:0.114000px;}
.ls3{letter-spacing:0.132120px;}
.ls34{letter-spacing:0.142200px;}
.ls4d{letter-spacing:0.144000px;}
.ls5e{letter-spacing:0.153360px;}
.ls61{letter-spacing:0.153576px;}
.ls7{letter-spacing:0.156240px;}
.ls10{letter-spacing:0.169920px;}
.ls18{letter-spacing:0.170640px;}
.lsc{letter-spacing:0.174000px;}
.ls5f{letter-spacing:0.176328px;}
.ls2e{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.199080px;}
.ls5{letter-spacing:0.234360px;}
.ls27{letter-spacing:0.278712px;}
.ls41{letter-spacing:0.341280px;}
.ls12{letter-spacing:0.398160px;}
.ls3c{letter-spacing:0.437976px;}
.ls40{letter-spacing:0.477792px;}
.ls69{letter-spacing:0.511920px;}
.ls49{letter-spacing:0.739440px;}
.ls5b{letter-spacing:1.069344px;}
.ls52{letter-spacing:1.712088px;}
.ls54{letter-spacing:1.820160px;}
.ls4f{letter-spacing:2.161440px;}
.ls28{letter-spacing:2.383272px;}
.ls14{letter-spacing:2.559600px;}
.ls31{letter-spacing:2.900880px;}
.ls64{letter-spacing:3.242160px;}
.ls2a{letter-spacing:3.583440px;}
.ls3d{letter-spacing:3.981600px;}
.ls2c{letter-spacing:4.322880px;}
.ls2b{letter-spacing:5.062320px;}
.ls47{letter-spacing:5.261400px;}
.ls68{letter-spacing:5.403600px;}
.ls24{letter-spacing:5.744880px;}
.ls63{letter-spacing:6.484320px;}
.ls6f{letter-spacing:6.825600px;}
.ls70{letter-spacing:6.905232px;}
.ls44{letter-spacing:7.223760px;}
.ls29{letter-spacing:7.565040px;}
.ls43{letter-spacing:8.645760px;}
.ls39{letter-spacing:9.282816px;}
.ls48{letter-spacing:9.584280px;}
.ls3f{letter-spacing:9.635472px;}
.ls3a{letter-spacing:9.726480px;}
.ls65{letter-spacing:10.465920px;}
.ls4b{letter-spacing:11.148480px;}
.ls66{letter-spacing:12.229200px;}
.ls33{letter-spacing:12.399840px;}
.ls32{letter-spacing:12.627360px;}
.ls55{letter-spacing:12.968640px;}
.ls22{letter-spacing:13.309920px;}
.ls21{letter-spacing:13.366800px;}
.ls60{letter-spacing:13.708080px;}
.ls53{letter-spacing:15.130080px;}
.ls45{letter-spacing:16.335936px;}
.ls6b{letter-spacing:17.632800px;}
.ls67{letter-spacing:24.583536px;}
.ls30{letter-spacing:25.163712px;}
.ls6a{letter-spacing:50.054400px;}
.ls3e{letter-spacing:53.694720px;}
.ls15{letter-spacing:60.351120px;}
.ls23{letter-spacing:65.923920px;}
.ls11{letter-spacing:69.711120px;}
.ls13{letter-spacing:71.151120px;}
.ls20{letter-spacing:171.786240px;}
.ls38{letter-spacing:172.876680px;}
.lsf{letter-spacing:392.580000px;}
.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;}
}
.ws51{word-spacing:-56.880000px;}
.ws4f{word-spacing:-16.692120px;}
.ws50{word-spacing:-16.608240px;}
.ws4b{word-spacing:-16.021080px;}
.ws4e{word-spacing:-15.937200px;}
.ws4a{word-spacing:-15.853320px;}
.ws4{word-spacing:-15.624000px;}
.ws5{word-spacing:-15.467760px;}
.ws11b{word-spacing:-15.098400px;}
.wsbe{word-spacing:-14.846760px;}
.wsd8{word-spacing:-14.472000px;}
.ws104{word-spacing:-14.256000px;}
.wsc{word-spacing:-11.322480px;}
.ws3a{word-spacing:-11.319120px;}
.wsad{word-spacing:-11.290680px;}
.wse{word-spacing:-11.262480px;}
.ws4c{word-spacing:-11.262240px;}
.wsa{word-spacing:-11.205360px;}
.wsb{word-spacing:-11.148480px;}
.ws8f{word-spacing:-11.091600px;}
.wse8{word-spacing:-11.034720px;}
.wsae{word-spacing:-10.977840px;}
.ws47{word-spacing:-10.920960px;}
.ws3b{word-spacing:-10.750320px;}
.ws38{word-spacing:-10.693440px;}
.wsd{word-spacing:-10.690320px;}
.ws49{word-spacing:-10.636560px;}
.ws37{word-spacing:-10.579680px;}
.wsf4{word-spacing:-9.917280px;}
.wsf3{word-spacing:-9.866160px;}
.ws120{word-spacing:-9.783360px;}
.ws4d{word-spacing:-9.726480px;}
.wsf0{word-spacing:-9.661680px;}
.ws90{word-spacing:-9.612720px;}
.wsef{word-spacing:-9.559440px;}
.ws3c{word-spacing:-9.555840px;}
.ws48{word-spacing:-9.498960px;}
.wsc8{word-spacing:-9.442080px;}
.ws7a{word-spacing:-8.910000px;}
.ws79{word-spacing:-8.865000px;}
.ws7b{word-spacing:-8.820000px;}
.wsbd{word-spacing:-8.685000px;}
.wsf2{word-spacing:-8.639280px;}
.wsf1{word-spacing:-8.588160px;}
.ws22{word-spacing:-0.594000px;}
.wsbb{word-spacing:-0.511920px;}
.wsf6{word-spacing:-0.504000px;}
.ws1b{word-spacing:-0.486000px;}
.ws1c{word-spacing:-0.456000px;}
.wsbc{word-spacing:-0.455040px;}
.wsfb{word-spacing:-0.408960px;}
.ws11a{word-spacing:-0.398160px;}
.wscc{word-spacing:-0.341280px;}
.ws8{word-spacing:-0.312480px;}
.ws1d{word-spacing:-0.312000px;}
.ws29{word-spacing:-0.300000px;}
.wsdb{word-spacing:-0.288000px;}
.ws3{word-spacing:-0.264240px;}
.ws2a{word-spacing:-0.258000px;}
.ws23{word-spacing:-0.246000px;}
.ws46{word-spacing:-0.227520px;}
.ws109{word-spacing:-0.216000px;}
.wsf9{word-spacing:-0.204480px;}
.ws18{word-spacing:-0.180000px;}
.ws16{word-spacing:-0.174000px;}
.ws45{word-spacing:-0.170640px;}
.ws35{word-spacing:-0.168000px;}
.ws6{word-spacing:-0.156240px;}
.wsfd{word-spacing:-0.153360px;}
.ws34{word-spacing:-0.144000px;}
.ws36{word-spacing:-0.138000px;}
.ws17{word-spacing:-0.114000px;}
.ws10{word-spacing:-0.113760px;}
.wsff{word-spacing:-0.102240px;}
.ws7{word-spacing:-0.078120px;}
.ws19{word-spacing:-0.078000px;}
.ws105{word-spacing:-0.072000px;}
.ws2b{word-spacing:-0.066000px;}
.ws27{word-spacing:-0.060000px;}
.wsf{word-spacing:-0.056880px;}
.ws28{word-spacing:-0.054000px;}
.wsfc{word-spacing:-0.051120px;}
.ws24{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:0.018000px;}
.wsfe{word-spacing:0.051120px;}
.wsa9{word-spacing:0.056880px;}
.ws25{word-spacing:0.060000px;}
.ws0{word-spacing:0.072000px;}
.wsed{word-spacing:0.083880px;}
.wsc0{word-spacing:0.090000px;}
.wsfa{word-spacing:0.102240px;}
.wscd{word-spacing:0.113760px;}
.ws1e{word-spacing:0.114000px;}
.ws3d{word-spacing:0.135000px;}
.wsdc{word-spacing:0.144000px;}
.wsf7{word-spacing:0.153360px;}
.ws1{word-spacing:0.167760px;}
.ws6f{word-spacing:0.170640px;}
.ws1a{word-spacing:0.198000px;}
.wsf8{word-spacing:0.204480px;}
.ws44{word-spacing:0.227520px;}
.ws119{word-spacing:0.251640px;}
.wsaa{word-spacing:0.284400px;}
.ws3e{word-spacing:0.315000px;}
.ws1f{word-spacing:0.330000px;}
.ws7f{word-spacing:0.335520px;}
.wsba{word-spacing:0.341280px;}
.ws21{word-spacing:0.372000px;}
.ws9{word-spacing:0.390600px;}
.wse0{word-spacing:0.398160px;}
.wsb8{word-spacing:0.568800px;}
.ws14{word-spacing:0.570000px;}
.ws15{word-spacing:0.624000px;}
.ws58{word-spacing:0.625680px;}
.ws26{word-spacing:0.648000px;}
.wse9{word-spacing:0.682560px;}
.ws13{word-spacing:0.684000px;}
.wscb{word-spacing:0.739440px;}
.ws69{word-spacing:0.910080px;}
.ws5e{word-spacing:0.966960px;}
.ws74{word-spacing:1.080720px;}
.ws9f{word-spacing:1.308240px;}
.ws9e{word-spacing:1.365120px;}
.ws117{word-spacing:1.422000px;}
.wsb5{word-spacing:1.478880px;}
.ws8d{word-spacing:1.649520px;}
.ws5d{word-spacing:1.706400px;}
.wsac{word-spacing:1.763280px;}
.wsd2{word-spacing:1.990800px;}
.ws43{word-spacing:2.047680px;}
.wsee{word-spacing:2.104560px;}
.wse4{word-spacing:2.161440px;}
.wsdd{word-spacing:2.218320px;}
.wse3{word-spacing:2.388960px;}
.ws6e{word-spacing:2.445840px;}
.wse2{word-spacing:2.502720px;}
.ws9a{word-spacing:2.730240px;}
.ws72{word-spacing:2.787120px;}
.ws97{word-spacing:2.844000px;}
.ws99{word-spacing:2.900880px;}
.ws98{word-spacing:2.957760px;}
.wsd1{word-spacing:3.071520px;}
.ws5a{word-spacing:3.128400px;}
.ws59{word-spacing:3.242160px;}
.ws122{word-spacing:3.299040px;}
.ws88{word-spacing:3.469680px;}
.ws73{word-spacing:3.526560px;}
.wsa2{word-spacing:3.583440px;}
.ws87{word-spacing:3.810960px;}
.ws86{word-spacing:3.867840px;}
.wsaf{word-spacing:3.924720px;}
.ws80{word-spacing:4.152240px;}
.ws81{word-spacing:4.209120px;}
.wsb1{word-spacing:4.266000px;}
.wsb0{word-spacing:4.322880px;}
.ws8e{word-spacing:4.379760px;}
.ws70{word-spacing:4.550400px;}
.ws71{word-spacing:4.607280px;}
.ws7e{word-spacing:4.664160px;}
.ws68{word-spacing:4.891680px;}
.ws54{word-spacing:4.948560px;}
.ws53{word-spacing:5.005440px;}
.ws89{word-spacing:5.232960px;}
.ws8a{word-spacing:5.289840px;}
.wsd6{word-spacing:5.403600px;}
.wsa6{word-spacing:5.631120px;}
.ws6d{word-spacing:5.688000px;}
.ws41{word-spacing:5.972400px;}
.ws42{word-spacing:6.029280px;}
.wsec{word-spacing:6.143040px;}
.ws52{word-spacing:6.313680px;}
.ws5b{word-spacing:6.370560px;}
.wsf5{word-spacing:6.427440px;}
.ws5c{word-spacing:6.484320px;}
.ws7d{word-spacing:6.711840px;}
.ws8c{word-spacing:6.768720px;}
.ws121{word-spacing:6.825600px;}
.wsd3{word-spacing:6.996240px;}
.wsd4{word-spacing:7.053120px;}
.ws96{word-spacing:7.110000px;}
.ws95{word-spacing:7.166880px;}
.ws12{word-spacing:7.170000px;}
.ws84{word-spacing:7.394400px;}
.ws83{word-spacing:7.451280px;}
.wsc4{word-spacing:7.508160px;}
.wsd7{word-spacing:7.565040px;}
.wse7{word-spacing:7.735680px;}
.ws55{word-spacing:7.792560px;}
.wsc3{word-spacing:8.190720px;}
.ws40{word-spacing:8.475120px;}
.ws3f{word-spacing:8.532000px;}
.ws75{word-spacing:8.645760px;}
.ws76{word-spacing:8.702640px;}
.wsc1{word-spacing:8.816400px;}
.wsbf{word-spacing:8.873280px;}
.wsa8{word-spacing:9.214560px;}
.wsd5{word-spacing:9.271440px;}
.wsc7{word-spacing:9.555840px;}
.ws9d{word-spacing:9.612720px;}
.wsd0{word-spacing:9.726480px;}
.ws92{word-spacing:9.897120px;}
.ws33{word-spacing:9.912000px;}
.ws5f{word-spacing:9.954000px;}
.ws91{word-spacing:10.010880px;}
.ws30{word-spacing:10.098000px;}
.ws32{word-spacing:10.164000px;}
.ws2f{word-spacing:10.170000px;}
.ws2d{word-spacing:10.236000px;}
.ws31{word-spacing:10.242000px;}
.ws2e{word-spacing:10.248000px;}
.ws6b{word-spacing:10.295280px;}
.ws2c{word-spacing:10.296000px;}
.ws6c{word-spacing:10.352160px;}
.ws77{word-spacing:10.636560px;}
.ws66{word-spacing:10.693440px;}
.ws67{word-spacing:10.750320px;}
.wsa3{word-spacing:10.977840px;}
.wsa4{word-spacing:11.034720px;}
.ws112{word-spacing:11.376000px;}
.wse6{word-spacing:11.432880px;}
.ws9c{word-spacing:11.717280px;}
.ws85{word-spacing:11.774160px;}
.ws7c{word-spacing:12.058560px;}
.wsa7{word-spacing:12.115440px;}
.ws113{word-spacing:12.172320px;}
.wsce{word-spacing:12.229200px;}
.wsab{word-spacing:12.456720px;}
.wsb2{word-spacing:12.513600px;}
.ws65{word-spacing:12.798000px;}
.ws64{word-spacing:12.854880px;}
.ws62{word-spacing:13.139280px;}
.ws11{word-spacing:13.140000px;}
.ws61{word-spacing:13.196160px;}
.wsca{word-spacing:13.537440px;}
.wsda{word-spacing:13.594320px;}
.wsc9{word-spacing:13.708080px;}
.ws10f{word-spacing:13.878720px;}
.wse5{word-spacing:13.935600px;}
.wsdf{word-spacing:14.220000px;}
.wsc2{word-spacing:14.276880px;}
.ws111{word-spacing:14.618160px;}
.ws107{word-spacing:14.675040px;}
.ws8b{word-spacing:14.959440px;}
.ws82{word-spacing:15.016320px;}
.wseb{word-spacing:15.073200px;}
.wsa1{word-spacing:15.300720px;}
.wsa0{word-spacing:15.357600px;}
.wsea{word-spacing:15.698880px;}
.wsb7{word-spacing:15.755760px;}
.ws6a{word-spacing:16.040160px;}
.ws63{word-spacing:16.097040px;}
.ws10e{word-spacing:16.438320px;}
.ws106{word-spacing:16.836480px;}
.wsd9{word-spacing:17.120880px;}
.wsc6{word-spacing:17.177760px;}
.ws115{word-spacing:17.462160px;}
.ws9b{word-spacing:17.519040px;}
.wsb9{word-spacing:17.917200px;}
.ws60{word-spacing:18.258480px;}
.ws10a{word-spacing:18.599760px;}
.ws10c{word-spacing:18.997920px;}
.wsa5{word-spacing:19.282320px;}
.ws78{word-spacing:19.339200px;}
.wse1{word-spacing:20.078640px;}
.wsc5{word-spacing:20.363040px;}
.ws11f{word-spacing:20.419920px;}
.ws102{word-spacing:20.704320px;}
.ws103{word-spacing:20.761200px;}
.ws118{word-spacing:21.443760px;}
.ws116{word-spacing:21.500640px;}
.wsde{word-spacing:21.557520px;}
.ws108{word-spacing:21.841920px;}
.wsb3{word-spacing:22.524480px;}
.wsb4{word-spacing:22.581360px;}
.wsb6{word-spacing:22.922640px;}
.ws10b{word-spacing:23.662080px;}
.ws57{word-spacing:24.003360px;}
.ws56{word-spacing:24.060240px;}
.ws101{word-spacing:24.401520px;}
.ws114{word-spacing:24.742800px;}
.ws94{word-spacing:25.084080px;}
.ws93{word-spacing:25.140960px;}
.ws110{word-spacing:25.766640px;}
.wscf{word-spacing:25.823520px;}
.ws11d{word-spacing:29.008800px;}
.ws11e{word-spacing:29.406960px;}
.ws11c{word-spacing:29.463840px;}
.ws100{word-spacing:36.232560px;}
.ws10d{word-spacing:37.654560px;}
.ws39{word-spacing:64.416600px;}
._5{margin-left:-11.454480px;}
._6{margin-left:-10.049544px;}
._4{margin-left:-8.259120px;}
._2{margin-left:-6.243120px;}
._3{margin-left:-3.139776px;}
._1{margin-left:-1.189080px;}
._0{width:1.159200px;}
._d{width:2.264400px;}
._7{width:3.469680px;}
._8{width:4.870080px;}
._a{width:7.223760px;}
._e{width:9.756360px;}
._b{width:12.900960px;}
._f{width:18.640440px;}
._c{width:21.564648px;}
._9{width:25.368480px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:45.000000px;}
.fs8{font-size:51.120000px;}
.fs4{font-size:56.880000px;}
.fs7{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:78.120000px;}
.fs1{font-size:83.880000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y1ea{bottom:4.590000px;}
.y2{bottom:9.180000px;}
.y45{bottom:41.850000px;}
.y1e{bottom:61.560000px;}
.y1{bottom:73.440000px;}
.y44{bottom:78.660000px;}
.y42{bottom:92.790000px;}
.ya4{bottom:96.523020px;}
.y7d{bottom:97.482960px;}
.y18e{bottom:102.154320px;}
.y33f{bottom:102.406680px;}
.yd6{bottom:106.314480px;}
.y1b8{bottom:110.433780px;}
.y2e2{bottom:110.860740px;}
.y249{bottom:111.175380px;}
.y28e{bottom:114.593940px;}
.ya3{bottom:116.231940px;}
.y2b9{bottom:117.094320px;}
.y7c{bottom:117.191880px;}
.y267{bottom:119.709900px;}
.y41{bottom:121.500000px;}
.y18d{bottom:121.863240px;}
.y33e{bottom:122.115600px;}
.yd5{bottom:126.023400px;}
.y248{bottom:130.884300px;}
.y1b7{bottom:131.948640px;}
.y2e1{bottom:132.460920px;}
.y310{bottom:132.616980px;}
.y28d{bottom:134.302860px;}
.ya2{bottom:136.026180px;}
.y2b8{bottom:136.803240px;}
.y7b{bottom:136.900800px;}
.y266{bottom:139.418820px;}
.y18c{bottom:141.572160px;}
.y33d{bottom:141.909840px;}
.yd4{bottom:145.732320px;}
.y219{bottom:148.590000px;}
.y118{bottom:149.142240px;}
.y40{bottom:150.210000px;}
.y247{bottom:150.593220px;}
.y30f{bottom:152.411220px;}
.y2e0{bottom:153.975780px;}
.y28c{bottom:154.011780px;}
.y1e4{bottom:154.981080px;}
.ya1{bottom:155.735100px;}
.y2b7{bottom:156.512160px;}
.y7a{bottom:156.879900px;}
.y16d{bottom:158.678640px;}
.y265{bottom:159.127740px;}
.y18b{bottom:161.281080px;}
.y33c{bottom:161.618760px;}
.y1b6{bottom:162.635400px;}
.yd3{bottom:165.441240px;}
.y1c{bottom:167.110500px;}
.y117{bottom:168.851160px;}
.y246{bottom:170.302140px;}
.y30e{bottom:172.120140px;}
.y1e3{bottom:174.690000px;}
.ya0{bottom:175.444020px;}
.y2df{bottom:175.575960px;}
.y2b6{bottom:176.221080px;}
.y79{bottom:178.480080px;}
.y264{bottom:178.836660px;}
.y3f{bottom:178.920000px;}
.y16c{bottom:180.278820px;}
.y218{bottom:180.540000px;}
.y18a{bottom:180.990000px;}
.y33b{bottom:182.323080px;}
.y1b5{bottom:182.344320px;}
.y28b{bottom:182.721960px;}
.yd2{bottom:185.150160px;}
.y1b{bottom:186.819000px;}
.y116{bottom:188.560080px;}
.y245{bottom:190.011060px;}
.y13f{bottom:191.156220px;}
.y30d{bottom:191.829060px;}
.y9f{bottom:195.152940px;}
.y2b5{bottom:195.930000px;}
.y2de{bottom:197.090820px;}
.y78{bottom:198.189000px;}
.y16b{bottom:201.793680px;}
.y33a{bottom:202.032000px;}
.y1b4{bottom:202.053240px;}
.y28a{bottom:202.430880px;}
.yd1{bottom:204.859080px;}
.y1e2{bottom:206.730000px;}
.y263{bottom:207.546840px;}
.y3e{bottom:207.630000px;}
.y115{bottom:208.269000px;}
.y13e{bottom:210.779820px;}
.y30c{bottom:211.537980px;}
.y189{bottom:211.680000px;}
.y9e{bottom:214.861860px;}
.y1a{bottom:215.614500px;}
.y77{bottom:217.897920px;}
.y2dd{bottom:218.691000px;}
.y244{bottom:218.721240px;}
.y339{bottom:221.740920px;}
.y1b3{bottom:221.762160px;}
.y289{bottom:222.225120px;}
.y16a{bottom:223.393860px;}
.yd0{bottom:224.653320px;}
.y2b4{bottom:226.620000px;}
.y262{bottom:227.341080px;}
.y217{bottom:227.355480px;}
.y114{bottom:228.063240px;}
.y30b{bottom:231.246900px;}
.y13d{bottom:232.380000px;}
.y9d{bottom:234.570780px;}
.y3d{bottom:236.340000px;}
.y76{bottom:237.692160px;}
.y243{bottom:238.430160px;}
.y2dc{bottom:240.291180px;}
.y338{bottom:241.449840px;}
.y1b2{bottom:241.471080px;}
.y19{bottom:241.765500px;}
.ycf{bottom:244.362240px;}
.y169{bottom:244.908720px;}
.y261{bottom:247.050000px;}
.y216{bottom:247.064400px;}
.y113{bottom:247.772160px;}
.y288{bottom:250.935300px;}
.y1e1{bottom:250.935480px;}
.y30a{bottom:250.955820px;}
.y9c{bottom:254.279700px;}
.y75{bottom:257.401080px;}
.y242{bottom:258.224400px;}
.y337{bottom:261.158760px;}
.y1b1{bottom:261.180000px;}
.y188{bottom:261.646560px;}
.y2db{bottom:261.806040px;}
.y13c{bottom:262.980000px;}
.yce{bottom:264.071160px;}
.y3c{bottom:265.140000px;}
.y215{bottom:266.773320px;}
.y112{bottom:267.481080px;}
.y287{bottom:270.644220px;}
.y1e0{bottom:270.644400px;}
.y18{bottom:270.745500px;}
.y168{bottom:275.595480px;}
.y2b3{bottom:276.582240px;}
.y74{bottom:277.110000px;}
.y260{bottom:277.650000px;}
.y241{bottom:277.933320px;}
.y309{bottom:279.666000px;}
.y336{bottom:280.867680px;}
.y187{bottom:281.355480px;}
.y9b{bottom:283.075200px;}
.y2da{bottom:283.406220px;}
.ycd{bottom:283.780080px;}
.y214{bottom:286.482240px;}
.y111{bottom:287.190000px;}
.y286{bottom:290.353140px;}
.y1df{bottom:290.353320px;}
.y13b{bottom:291.738060px;}
.y1b0{bottom:291.870000px;}
.y3b{bottom:293.850000px;}
.y167{bottom:295.304400px;}
.y2b2{bottom:296.291160px;}
.y240{bottom:297.642240px;}
.y17{bottom:299.455500px;}
.y308{bottom:299.460240px;}
.y335{bottom:300.576600px;}
.y186{bottom:301.064400px;}
.y9a{bottom:302.784120px;}
.ycc{bottom:303.489000px;}
.y2d9{bottom:305.006400px;}
.y213{bottom:306.191160px;}
.y73{bottom:309.159450px;}
.y285{bottom:310.062060px;}
.y1de{bottom:310.062240px;}
.y166{bottom:315.013320px;}
.y2b1{bottom:316.000080px;}
.y1af{bottom:316.710000px;}
.y23f{bottom:317.351160px;}
.y307{bottom:319.169160px;}
.y110{bottom:319.230000px;}
.y334{bottom:320.370840px;}
.y13a{bottom:320.448240px;}
.y185{bottom:320.773320px;}
.y99{bottom:322.493040px;}
.y3a{bottom:322.560000px;}
.ycb{bottom:323.197920px;}
.y212{bottom:325.900080px;}
.y2d8{bottom:326.521260px;}
.y25f{bottom:327.657780px;}
.y16{bottom:328.165500px;}
.y284{bottom:329.770980px;}
.y1dd{bottom:329.771160px;}
.y165{bottom:334.722240px;}
.y2b0{bottom:335.709000px;}
.y23e{bottom:337.060080px;}
.y333{bottom:340.079760px;}
.y184{bottom:340.482240px;}
.y98{bottom:342.201960px;}
.yca{bottom:342.906840px;}
.y211{bottom:345.609000px;}
.y72{bottom:347.220000px;}
.y25e{bottom:347.366700px;}
.y306{bottom:347.879340px;}
.y2d7{bottom:348.121440px;}
.y139{bottom:349.243740px;}
.y1dc{bottom:349.480080px;}
.yf9{bottom:350.004060px;}
.y39{bottom:351.270000px;}
.y1ec{bottom:352.080000px;}
.y164{bottom:354.431160px;}
.y2af{bottom:355.417920px;}
.y23d{bottom:356.769000px;}
.y15{bottom:356.961000px;}
.y283{bottom:358.481160px;}
.y332{bottom:359.788680px;}
.y183{bottom:360.191160px;}
.y97{bottom:361.910880px;}
.yc9{bottom:362.701080px;}
.y210{bottom:365.403240px;}
.y10f{bottom:365.954400px;}
.y1ae{bottom:366.700320px;}
.y25d{bottom:367.075620px;}
.y305{bottom:367.588260px;}
.y138{bottom:368.952660px;}
.y1db{bottom:369.189000px;}
.y2d6{bottom:369.636300px;}
.yf8{bottom:371.604240px;}
.y163{bottom:374.140080px;}
.y2ae{bottom:375.126840px;}
.y23c{bottom:376.477920px;}
.y282{bottom:378.275400px;}
.y331{bottom:379.497600px;}
.y182{bottom:379.900080px;}
.y38{bottom:379.980000px;}
.y96{bottom:381.619800px;}
.y71{bottom:382.370040px;}
.yc8{bottom:382.410000px;}
.y20f{bottom:385.112160px;}
.y10e{bottom:385.663320px;}
.y14{bottom:385.941000px;}
.y1ad{bottom:386.409240px;}
.y25c{bottom:386.869860px;}
.y304{bottom:387.297180px;}
.y137{bottom:388.661580px;}
.y1da{bottom:388.897920px;}
.yf7{bottom:393.204420px;}
.y162{bottom:393.849000px;}
.y2ad{bottom:394.921080px;}
.y23b{bottom:396.272160px;}
.y281{bottom:397.984320px;}
.y330{bottom:399.206520px;}
.y181{bottom:399.694320px;}
.y2d5{bottom:400.323060px;}
.y95{bottom:401.328720px;}
.y70{bottom:402.078960px;}
.y20e{bottom:404.821080px;}
.y10d{bottom:405.372240px;}
.y1ac{bottom:406.118160px;}
.y25b{bottom:406.578780px;}
.y303{bottom:407.006100px;}
.y136{bottom:408.370500px;}
.y37{bottom:408.690000px;}
.y1d9{bottom:408.692160px;}
.y161{bottom:413.643240px;}
.yc7{bottom:414.360000px;}
.y2ac{bottom:414.630000px;}
.y13{bottom:414.651000px;}
.yf6{bottom:414.719280px;}
.y23a{bottom:415.981080px;}
.y280{bottom:417.693240px;}
.y32f{bottom:418.915440px;}
.y180{bottom:419.403240px;}
.y2d4{bottom:420.031980px;}
.y94{bottom:421.122960px;}
.y6f{bottom:421.787880px;}
.y20d{bottom:424.530000px;}
.y10c{bottom:425.081160px;}
.y1ab{bottom:425.827080px;}
.y135{bottom:428.079420px;}
.y1d8{bottom:428.401080px;}
.y160{bottom:433.352160px;}
.y12{bottom:434.388000px;}
.y25a{bottom:435.288960px;}
.y239{bottom:435.690000px;}
.y302{bottom:435.716280px;}
.yf5{bottom:436.319460px;}
.y27f{bottom:437.402160px;}
.y36{bottom:437.490000px;}
.y32e{bottom:438.624360px;}
.y17f{bottom:439.112160px;}
.y93{bottom:440.831880px;}
.y6e{bottom:441.496800px;}
.y10b{bottom:444.790080px;}
.y2ab{bottom:445.230000px;}
.y1aa{bottom:445.621320px;}
.y1d7{bottom:448.110000px;}
.y2d3{bottom:448.742160px;}
.y15f{bottom:453.061080px;}
.y11{bottom:454.125000px;}
.y259{bottom:454.997880px;}
.y20c{bottom:455.130000px;}
.y301{bottom:455.425200px;}
.yf4{bottom:456.028380px;}
.y134{bottom:456.789600px;}
.y27e{bottom:457.111080px;}
.y32d{bottom:458.518140px;}
.y17e{bottom:458.821080px;}
.y92{bottom:460.540800px;}
.yc6{bottom:461.173140px;}
.y10a{bottom:464.499000px;}
.y1a9{bottom:465.330240px;}
.y238{bottom:466.290000px;}
.y35{bottom:466.470000px;}
.y2d2{bottom:468.451080px;}
.y6d{bottom:470.292300px;}
.y15e{bottom:472.770000px;}
.y10{bottom:473.862000px;}
.y258{bottom:474.706800px;}
.y133{bottom:476.498520px;}
.y27d{bottom:476.820000px;}
.yf3{bottom:477.628560px;}
.y17d{bottom:478.530000px;}
.y1d6{bottom:478.710000px;}
.y32c{bottom:479.307780px;}
.yc5{bottom:480.882060px;}
.y300{bottom:484.220700px;}
.y109{bottom:484.293240px;}
.y1a8{bottom:485.039160px;}
.y2d1{bottom:488.160000px;}
.y91{bottom:489.250980px;}
.y6c{bottom:489.915900px;}
.y257{bottom:494.415720px;}
.y34{bottom:495.180000px;}
.y2aa{bottom:495.217800px;}
.y132{bottom:496.292760px;}
.y32b{bottom:499.016700px;}
.yc4{bottom:500.590980px;}
.y2ff{bottom:503.929620px;}
.y108{bottom:504.002160px;}
.y15d{bottom:504.810000px;}
.y20b{bottom:505.090980px;}
.y27c{bottom:507.510000px;}
.yf2{bottom:508.230000px;}
.y90{bottom:508.959900px;}
.y17c{bottom:509.220000px;}
.y6b{bottom:511.516080px;}
.y1a7{bottom:513.749340px;}
.y2a9{bottom:514.926720px;}
.y131{bottom:516.001680px;}
.y237{bottom:516.262140px;}
.y32a{bottom:518.725620px;}
.y2d0{bottom:520.290000px;}
.yc3{bottom:520.299900px;}
.y256{bottom:523.125900px;}
.y2fe{bottom:523.638540px;}
.y107{bottom:523.711080px;}
.y33{bottom:523.890000px;}
.y20a{bottom:524.885220px;}
.y8f{bottom:528.668820px;}
.y1d5{bottom:528.706620px;}
.y1a6{bottom:533.458260px;}
.y130{bottom:535.710600px;}
.y236{bottom:535.971060px;}
.y329{bottom:538.519860px;}
.yc2{bottom:540.008820px;}
.yf1{bottom:540.270000px;}
.y6a{bottom:542.117520px;}
.y255{bottom:542.920140px;}
.y2fd{bottom:543.347460px;}
.y106{bottom:543.420000px;}
.y2a8{bottom:543.636900px;}
.y209{bottom:544.594140px;}
.y1d4{bottom:548.500860px;}
.y15c{bottom:551.549340px;}
.y32{bottom:552.600000px;}
.y1a5{bottom:553.167180px;}
.y12f{bottom:555.419520px;}
.y235{bottom:555.765300px;}
.y8e{bottom:557.379000px;}
.y27b{bottom:557.472240px;}
.y328{bottom:558.228780px;}
.y17b{bottom:559.182060px;}
.yc1{bottom:559.717740px;}
.y69{bottom:561.826440px;}
.y254{bottom:562.629060px;}
.y2fc{bottom:563.056380px;}
.y2a7{bottom:563.701320px;}
.y208{bottom:564.303060px;}
.y2cf{bottom:564.413040px;}
.y1d3{bottom:568.209780px;}
.y15b{bottom:571.258260px;}
.y12e{bottom:575.128440px;}
.y234{bottom:575.474220px;}
.y105{bottom:575.550000px;}
.y8d{bottom:577.087920px;}
.y27a{bottom:577.181160px;}
.y327{bottom:577.937700px;}
.y17a{bottom:578.890980px;}
.yc0{bottom:579.426660px;}
.y31{bottom:581.400000px;}
.y68{bottom:581.535360px;}
.y1a4{bottom:581.877360px;}
.y253{bottom:582.337980px;}
.y207{bottom:584.011980px;}
.y2ce{bottom:584.121960px;}
.y2a6{bottom:585.571680px;}
.yf0{bottom:587.016360px;}
.y1d2{bottom:587.918700px;}
.y15a{bottom:590.967180px;}
.y2fb{bottom:591.766560px;}
.y12d{bottom:594.837360px;}
.y233{bottom:595.183140px;}
.y8c{bottom:596.882160px;}
.y279{bottom:596.890080px;}
.y326{bottom:597.646620px;}
.y179{bottom:598.599900px;}
.y67{bottom:601.244280px;}
.y1a3{bottom:601.671600px;}
.y252{bottom:602.046900px;}
.y206{bottom:603.720900px;}
.y2cd{bottom:603.830880px;}
.yef{bottom:606.725280px;}
.y1d1{bottom:607.627620px;}
.ybf{bottom:608.222160px;}
.y30{bottom:610.110000px;}
.y159{bottom:610.676100px;}
.y2fa{bottom:611.475480px;}
.y12c{bottom:614.546280px;}
.y2a5{bottom:616.173120px;}
.y8b{bottom:616.591080px;}
.y278{bottom:616.599000px;}
.y325{bottom:617.355540px;}
.y178{bottom:618.308820px;}
.y104{bottom:619.660800px;}
.y66{bottom:621.038520px;}
.y1a2{bottom:621.380520px;}
.y251{bottom:621.755820px;}
.y205{bottom:623.429820px;}
.y2cc{bottom:623.539800px;}
.y232{bottom:623.893320px;}
.yee{bottom:626.434200px;}
.y1d0{bottom:627.336540px;}
.ybe{bottom:627.931080px;}
.y158{bottom:630.385020px;}
.y2f9{bottom:631.269720px;}
.y2a4{bottom:635.882040px;}
.y8a{bottom:636.300000px;}
.y277{bottom:636.307920px;}
.y324{bottom:637.064460px;}
.y2f{bottom:638.820000px;}
.y103{bottom:639.369720px;}
.y65{bottom:640.747440px;}
.y1a1{bottom:641.089440px;}
.y250{bottom:641.464740px;}
.y2cb{bottom:643.334040px;}
.y12b{bottom:643.341780px;}
.y231{bottom:643.602240px;}
.yed{bottom:646.143120px;}
.y177{bottom:647.019000px;}
.y1cf{bottom:647.045460px;}
.ybd{bottom:647.640000px;}
.y157{bottom:650.179260px;}
.y2f8{bottom:650.978640px;}
.y204{bottom:652.140000px;}
.y2a3{bottom:655.590960px;}
.y276{bottom:656.016840px;}
.y323{bottom:656.773380px;}
.y102{bottom:659.078640px;}
.y64{bottom:660.456360px;}
.y2ca{bottom:663.042960px;}
.y12a{bottom:663.050700px;}
.y230{bottom:663.311160px;}
.y1eb{bottom:664.560000px;}
.yec{bottom:665.852040px;}
.y176{bottom:666.727920px;}
.y1ce{bottom:666.754380px;}
.ybc{bottom:667.359360px;}
.y2e{bottom:667.530000px;}
.y89{bottom:668.340000px;}
.y203{bottom:669.351240px;}
.y1a0{bottom:669.799620px;}
.y156{bottom:669.888180px;}
.y24f{bottom:670.174920px;}
.y2f7{bottom:670.687560px;}
.y2a2{bottom:675.299880px;}
.y275{bottom:675.811080px;}
.y322{bottom:676.482300px;}
.y63{bottom:680.165280px;}
.yc{bottom:681.555150px;}
.y101{bottom:682.570080px;}
.y2c9{bottom:682.751880px;}
.y129{bottom:682.759620px;}
.y22f{bottom:683.020080px;}
.y202{bottom:685.096200px;}
.yeb{bottom:685.560960px;}
.y175{bottom:686.522160px;}
.y1cd{bottom:686.548620px;}
.ybb{bottom:687.068280px;}
.y19f{bottom:689.508540px;}
.y155{bottom:689.597100px;}
.y24e{bottom:689.969160px;}
.y2f6{bottom:690.396480px;}
.y2a1{bottom:695.094120px;}
.y274{bottom:695.520000px;}
.y2d{bottom:696.240000px;}
.y321{bottom:696.276540px;}
.y62{bottom:699.874200px;}
.y201{bottom:700.930620px;}
.y100{bottom:702.279000px;}
.y2c8{bottom:702.460800px;}
.y128{bottom:702.468540px;}
.y22e{bottom:702.814320px;}
.yea{bottom:705.355200px;}
.y174{bottom:706.231080px;}
.y1cc{bottom:706.257540px;}
.yba{bottom:706.777200px;}
.y19e{bottom:709.217460px;}
.y24d{bottom:709.678080px;}
.y2a0{bottom:714.803040px;}
.y88{bottom:715.054320px;}
.y320{bottom:715.985460px;}
.y200{bottom:716.675580px;}
.y154{bottom:718.307280px;}
.y2f5{bottom:719.106660px;}
.yff{bottom:721.987920px;}
.y127{bottom:722.177460px;}
.y22d{bottom:722.523240px;}
.y2c{bottom:725.040000px;}
.y173{bottom:725.940000px;}
.y1cb{bottom:725.966460px;}
.y273{bottom:726.120000px;}
.yb9{bottom:726.486120px;}
.y61{bottom:728.584380px;}
.y19d{bottom:729.196560px;}
.y24c{bottom:729.387000px;}
.y2c7{bottom:731.170980px;}
.y1fe{bottom:732.150000px;}
.y1ff{bottom:732.510000px;}
.ye9{bottom:734.065380px;}
.y29f{bottom:734.511960px;}
.y87{bottom:734.763240px;}
.y31f{bottom:735.694380px;}
.y153{bottom:738.016200px;}
.y2f4{bottom:740.621520px;}
.yfe{bottom:741.696840px;}
.y126{bottom:741.886380px;}
.y22c{bottom:742.232160px;}
.y1ca{bottom:745.675380px;}
.yb8{bottom:746.280360px;}
.y1fd{bottom:748.254960px;}
.y60{bottom:748.293300px;}
.y24b{bottom:749.095920px;}
.y2b{bottom:754.020000px;}
.ye8{bottom:754.044480px;}
.y29e{bottom:754.220880px;}
.y86{bottom:754.472160px;}
.y31e{bottom:755.403300px;}
.y172{bottom:756.540000px;}
.y152{bottom:757.725120px;}
.y2c6{bottom:759.881160px;}
.y19c{bottom:759.883320px;}
.yfd{bottom:761.491080px;}
.y125{bottom:761.595300px;}
.y22b{bottom:761.941080px;}
.y2f3{bottom:762.221700px;}
.y1fc{bottom:764.089380px;}
.y1c9{bottom:765.384300px;}
.yb7{bottom:765.989280px;}
.y5f{bottom:768.087540px;}
.y24a{bottom:768.804840px;}
.y29d{bottom:773.929800px;}
.y85{bottom:774.181080px;}
.y31d{bottom:775.112220px;}
.ye7{bottom:775.914840px;}
.y272{bottom:776.080080px;}
.y34a{bottom:776.099700px;}
.y151{bottom:777.434040px;}
.y2c5{bottom:779.590080px;}
.y19b{bottom:779.592240px;}
.y1fb{bottom:779.834340px;}
.yfc{bottom:781.200000px;}
.y124{bottom:781.389540px;}
.y22a{bottom:781.650000px;}
.y2a{bottom:782.729850px;}
.y1c8{bottom:785.093220px;}
.y5e{bottom:787.796460px;}
.y2f2{bottom:792.823140px;}
.y84{bottom:793.890000px;}
.yb6{bottom:794.699460px;}
.y31c{bottom:794.821140px;}
.y1fa{bottom:795.668760px;}
.y271{bottom:795.789000px;}
.y349{bottom:795.808620px;}
.y150{bottom:797.142960px;}
.ye6{bottom:797.515020px;}
.y2c4{bottom:799.299000px;}
.y19a{bottom:799.301160px;}
.y29c{bottom:802.639980px;}
.yfb{bottom:802.980000px;}
.y1c7{bottom:804.802140px;}
.y171{bottom:806.516280px;}
.y5d{bottom:807.505380px;}
.y123{bottom:810.099720px;}
.y1f9{bottom:811.413720px;}
.y29{bottom:811.440000px;}
.y229{bottom:812.250000px;}
.y2f1{bottom:812.532060px;}
.yb5{bottom:814.408380px;}
.y31b{bottom:814.530060px;}
.y270{bottom:815.497920px;}
.y348{bottom:815.517540px;}
.y14f{bottom:816.937200px;}
.ye5{bottom:817.223940px;}
.yfa{bottom:818.550000px;}
.y2c3{bottom:819.007920px;}
.y199{bottom:819.010080px;}
.y83{bottom:820.980000px;}
.y29b{bottom:822.348900px;}
.y1c6{bottom:824.511060px;}
.y170{bottom:826.225200px;}
.y5c{bottom:827.214300px;}
.y1f8{bottom:827.248140px;}
.y122{bottom:829.808640px;}
.y2f0{bottom:832.240980px;}
.yb4{bottom:834.117300px;}
.y31a{bottom:834.324300px;}
.y347{bottom:835.226460px;}
.y26f{bottom:835.292160px;}
.y82{bottom:836.550000px;}
.y14e{bottom:836.646120px;}
.ye4{bottom:837.018180px;}
.y358{bottom:838.284300px;}
.y5{bottom:838.519290px;}
.y198{bottom:838.719000px;}
.y2c2{bottom:838.802160px;}
.y28{bottom:840.150000px;}
.y29a{bottom:842.143140px;}
.y1f7{bottom:842.993100px;}
.y1c5{bottom:844.305300px;}
.y16f{bottom:846.019440px;}
.y5b{bottom:846.923220px;}
.y2ef{bottom:851.949900px;}
.yb3{bottom:853.826220px;}
.y319{bottom:854.033220px;}
.y26e{bottom:855.001080px;}
.y346{bottom:855.020700px;}
.y14d{bottom:856.355040px;}
.ye3{bottom:856.727100px;}
.y357{bottom:857.993220px;}
.y197{bottom:858.427920px;}
.y121{bottom:858.518820px;}
.y1f6{bottom:858.827520px;}
.y299{bottom:861.852060px;}
.y228{bottom:862.306200px;}
.y1c4{bottom:864.014220px;}
.y16e{bottom:865.728360px;}
.y2c1{bottom:867.427020px;}
.y27{bottom:868.950000px;}
.y2ee{bottom:871.744140px;}
.y318{bottom:873.742140px;}
.y1f5{bottom:874.572480px;}
.y26d{bottom:874.710000px;}
.y345{bottom:874.729620px;}
.y5a{bottom:875.633400px;}
.y14c{bottom:876.063960px;}
.y356{bottom:877.702140px;}
.y196{bottom:878.136840px;}
.y298{bottom:881.560980px;}
.y227{bottom:882.015120px;}
.yb2{bottom:882.536400px;}
.y1c3{bottom:883.723140px;}
.ye2{bottom:885.437280px;}
.y120{bottom:887.229000px;}
.y1f4{bottom:890.317440px;}
.y4{bottom:893.250000px;}
.y317{bottom:893.451060px;}
.y344{bottom:894.438540px;}
.y59{bottom:895.342320px;}
.y14b{bottom:895.772880px;}
.y2c0{bottom:896.222520px;}
.yb{bottom:897.283530px;}
.y195{bottom:897.931080px;}
.y26{bottom:898.020000px;}
.y2ed{bottom:900.454320px;}
.y297{bottom:901.269900px;}
.y226{bottom:901.724040px;}
.yb1{bottom:902.245320px;}
.y1c2{bottom:903.432060px;}
.ye1{bottom:905.146200px;}
.y26c{bottom:905.310000px;}
.y1f3{bottom:906.151860px;}
.y355{bottom:906.412320px;}
.y11f{bottom:906.937920px;}
.y316{bottom:913.159980px;}
.y343{bottom:914.147460px;}
.y58{bottom:915.136560px;}
.y14a{bottom:915.481800px;}
.y2bf{bottom:915.931440px;}
.y194{bottom:917.640000px;}
.y2ec{bottom:920.163240px;}
.y225{bottom:921.432960px;}
.y1f2{bottom:921.896820px;}
.y1c1{bottom:923.140980px;}
.yb0{bottom:923.845500px;}
.ye0{bottom:924.855120px;}
.y354{bottom:926.206560px;}
.y296{bottom:929.980080px;}
.y315{bottom:932.868900px;}
.ya{bottom:933.199200px;}
.y342{bottom:933.856380px;}
.y57{bottom:934.845480px;}
.y149{bottom:935.190720px;}
.y2be{bottom:935.640360px;}
.y11e{bottom:935.648100px;}
.y1f1{bottom:937.731240px;}
.y2eb{bottom:939.872160px;}
.y224{bottom:941.141880px;}
.y3{bottom:942.210000px;}
.y25{bottom:943.020000px;}
.yaf{bottom:943.554420px;}
.ydf{bottom:944.564040px;}
.y353{bottom:945.915480px;}
.y193{bottom:948.240000px;}
.y295{bottom:949.689000px;}
.y1c0{bottom:951.851160px;}
.y314{bottom:952.577820px;}
.y1f0{bottom:953.476200px;}
.y341{bottom:953.565300px;}
.y56{bottom:954.554400px;}
.y148{bottom:954.984960px;}
.y26b{bottom:955.271700px;}
.y2ea{bottom:959.581080px;}
.y223{bottom:960.850800px;}
.yde{bottom:964.272960px;}
.y2bd{bottom:964.350540px;}
.yae{bottom:965.154600px;}
.y352{bottom:965.624400px;}
.y9{bottom:969.114870px;}
.y1ef{bottom:969.310620px;}
.y294{bottom:969.397920px;}
.y1bf{bottom:971.560080px;}
.y313{bottom:972.372060px;}
.y340{bottom:973.274220px;}
.y55{bottom:974.263320px;}
.y26a{bottom:975.065940px;}
.y2e9{bottom:979.290000px;}
.y147{bottom:983.609820px;}
.y11d{bottom:984.067200px;}
.yad{bottom:984.863520px;}
.y1ee{bottom:985.055580px;}
.y351{bottom:985.603500px;}
.y293{bottom:989.192160px;}
.y222{bottom:989.560980px;}
.y1be{bottom:991.354320px;}
.y312{bottom:992.080980px;}
.y2bc{bottom:993.060720px;}
.ydd{bottom:993.068460px;}
.y54{bottom:993.972240px;}
.y269{bottom:994.774860px;}
.y192{bottom:998.187660px;}
.y1ed{bottom:1000.890000px;}
.y11c{bottom:1003.776120px;}
.y8{bottom:1005.108600px;}
.y146{bottom:1005.210000px;}
.y350{bottom:1005.397740px;}
.yac{bottom:1006.463700px;}
.y292{bottom:1008.901080px;}
.y221{bottom:1009.355220px;}
.y1bd{bottom:1011.063240px;}
.y2e8{bottom:1011.420000px;}
.y2bb{bottom:1012.769640px;}
.ydc{bottom:1012.777380px;}
.y311{bottom:1012.785300px;}
.y53{bottom:1013.681160px;}
.y191{bottom:1017.896580px;}
.y11b{bottom:1023.485040px;}
.y24{bottom:1023.669000px;}
.y4b{bottom:1026.000000px;}
.yab{bottom:1026.087300px;}
.y1e9{bottom:1028.610000px;}
.y220{bottom:1029.064140px;}
.y1bc{bottom:1030.772160px;}
.ydb{bottom:1032.486300px;}
.y52{bottom:1033.390080px;}
.y34f{bottom:1034.107920px;}
.y145{bottom:1035.805680px;}
.y190{bottom:1039.411440px;}
.y2ba{bottom:1041.479820px;}
.y11a{bottom:1043.193960px;}
.y23{bottom:1043.377920px;}
.yaa{bottom:1047.687480px;}
.y21f{bottom:1048.773060px;}
.y1bb{bottom:1050.481080px;}
.yda{bottom:1052.195220px;}
.y51{bottom:1053.184320px;}
.y34e{bottom:1053.816840px;}
.y4a{bottom:1055.070000px;}
.y2e7{bottom:1055.508480px;}
.y291{bottom:1059.210000px;}
.y18f{bottom:1061.011620px;}
.y1e8{bottom:1062.810000px;}
.y119{bottom:1062.902880px;}
.y22{bottom:1063.086840px;}
.y144{bottom:1064.515860px;}
.y21e{bottom:1068.481980px;}
.y1ba{bottom:1070.190000px;}
.yd9{bottom:1071.904140px;}
.y50{bottom:1072.893240px;}
.y34d{bottom:1073.525760px;}
.y2e6{bottom:1075.217400px;}
.y7{bottom:1076.940000px;}
.ya9{bottom:1078.288920px;}
.y81{bottom:1082.611800px;}
.y21{bottom:1082.795760px;}
.y49{bottom:1084.050000px;}
.y143{bottom:1086.030720px;}
.yd8{bottom:1091.613060px;}
.y4f{bottom:1092.602160px;}
.y34c{bottom:1093.320000px;}
.y21d{bottom:1097.192160px;}
.ya8{bottom:1097.997840px;}
.y1b9{bottom:1100.790000px;}
.y80{bottom:1102.320720px;}
.y20{bottom:1102.590000px;}
.y2e5{bottom:1103.927580px;}
.y142{bottom:1107.630900px;}
.y290{bottom:1109.160540px;}
.yd7{bottom:1111.321980px;}
.y4e{bottom:1112.311080px;}
.y1e7{bottom:1112.761080px;}
.y48{bottom:1113.030000px;}
.y21c{bottom:1116.901080px;}
.ya7{bottom:1117.706760px;}
.y268{bottom:1122.029640px;}
.y2e4{bottom:1125.527760px;}
.y141{bottom:1127.339820px;}
.y28f{bottom:1129.139640px;}
.y7f{bottom:1131.030900px;}
.y4d{bottom:1132.020000px;}
.y1e6{bottom:1132.470000px;}
.yf{bottom:1134.452160px;}
.y21b{bottom:1136.610000px;}
.y34b{bottom:1138.320000px;}
.y47{bottom:1141.830000px;}
.ya6{bottom:1146.772440px;}
.y2e3{bottom:1147.042620px;}
.y1f{bottom:1147.320000px;}
.y140{bottom:1148.940000px;}
.y7e{bottom:1150.825140px;}
.ye{bottom:1154.161080px;}
.y6{bottom:1157.400000px;}
.y4c{bottom:1164.150000px;}
.y1e5{bottom:1164.510000px;}
.y21a{bottom:1167.300000px;}
.ya5{bottom:1168.642800px;}
.y46{bottom:1170.534060px;}
.yd{bottom:1173.870000px;}
.y43{bottom:1199.250000px;}
.y1d{bottom:1218.960000px;}
.hf{height:16.020000px;}
.h2{height:24.840000px;}
.hc{height:36.945000px;}
.h10{height:38.340000px;}
.hb{height:40.100400px;}
.h12{height:41.969520px;}
.ha{height:42.660000px;}
.he{height:43.909277px;}
.h9{height:46.698480px;}
.h3{height:54.000000px;}
.h7{height:58.590000px;}
.h8{height:58.590240px;}
.h4{height:62.910000px;}
.hd{height:88.668000px;}
.h5{height:94.465800px;}
.h6{height:99.090000px;}
.h11{height:363.238500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:177.840000px;}
.w4{width:177.841500px;}
.w6{width:178.200000px;}
.w3{width:178.290000px;}
.w2{width:522.720000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x2{left:10.800000px;}
.x1{left:131.490000px;}
.x3{left:139.500000px;}
.x5{left:153.720000px;}
.x9{left:160.830000px;}
.x8{left:166.461120px;}
.x6{left:168.030000px;}
.xc{left:193.521780px;}
.xe{left:310.410000px;}
.x10{left:318.150000px;}
.xa{left:325.530000px;}
.xb{left:483.210000px;}
.x4{left:485.910000px;}
.x7{left:488.520000px;}
.x11{left:496.710000px;}
.xf{left:667.620000px;}
.x12{left:675.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3b{letter-spacing:-1.118400pt;}
.ls1e{letter-spacing:-1.112320pt;}
.ls1c{letter-spacing:-1.061760pt;}
.ls1d{letter-spacing:-1.011200pt;}
.ls56{letter-spacing:-0.969280pt;}
.ls6d{letter-spacing:-0.960640pt;}
.ls6c{letter-spacing:-0.894720pt;}
.ls51{letter-spacing:-0.353920pt;}
.ls42{letter-spacing:-0.252800pt;}
.ls19{letter-spacing:-0.202240pt;}
.ls1a{letter-spacing:-0.151680pt;}
.ls26{letter-spacing:-0.149120pt;}
.ls8{letter-spacing:-0.138880pt;}
.ls5d{letter-spacing:-0.136320pt;}
.ls4c{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.120000pt;}
.ls2{letter-spacing:-0.117440pt;}
.ls1f{letter-spacing:-0.101120pt;}
.ls5c{letter-spacing:-0.090880pt;}
.ls25{letter-spacing:-0.074560pt;}
.ls6{letter-spacing:-0.069440pt;}
.ls0{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.053333pt;}
.ls1b{letter-spacing:-0.050560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.005056pt;}
.ls46{letter-spacing:0.015168pt;}
.ls36{letter-spacing:0.020224pt;}
.ls35{letter-spacing:0.030336pt;}
.ls16{letter-spacing:0.040000pt;}
.ls58{letter-spacing:0.045440pt;}
.ls6e{letter-spacing:0.045504pt;}
.ls9{letter-spacing:0.050560pt;}
.ls57{letter-spacing:0.051840pt;}
.lsd{letter-spacing:0.053333pt;}
.ls59{letter-spacing:0.053760pt;}
.ls4a{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.065728pt;}
.ls4{letter-spacing:0.069440pt;}
.ls62{letter-spacing:0.075840pt;}
.ls2d{letter-spacing:0.080000pt;}
.ls5a{letter-spacing:0.090880pt;}
.ls4e{letter-spacing:0.096064pt;}
.lsb{letter-spacing:0.101120pt;}
.lsa{letter-spacing:0.101333pt;}
.ls3{letter-spacing:0.117440pt;}
.ls34{letter-spacing:0.126400pt;}
.ls4d{letter-spacing:0.128000pt;}
.ls5e{letter-spacing:0.136320pt;}
.ls61{letter-spacing:0.136512pt;}
.ls7{letter-spacing:0.138880pt;}
.ls10{letter-spacing:0.151040pt;}
.ls18{letter-spacing:0.151680pt;}
.lsc{letter-spacing:0.154667pt;}
.ls5f{letter-spacing:0.156736pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.176960pt;}
.ls5{letter-spacing:0.208320pt;}
.ls27{letter-spacing:0.247744pt;}
.ls41{letter-spacing:0.303360pt;}
.ls12{letter-spacing:0.353920pt;}
.ls3c{letter-spacing:0.389312pt;}
.ls40{letter-spacing:0.424704pt;}
.ls69{letter-spacing:0.455040pt;}
.ls49{letter-spacing:0.657280pt;}
.ls5b{letter-spacing:0.950528pt;}
.ls52{letter-spacing:1.521856pt;}
.ls54{letter-spacing:1.617920pt;}
.ls4f{letter-spacing:1.921280pt;}
.ls28{letter-spacing:2.118464pt;}
.ls14{letter-spacing:2.275200pt;}
.ls31{letter-spacing:2.578560pt;}
.ls64{letter-spacing:2.881920pt;}
.ls2a{letter-spacing:3.185280pt;}
.ls3d{letter-spacing:3.539200pt;}
.ls2c{letter-spacing:3.842560pt;}
.ls2b{letter-spacing:4.499840pt;}
.ls47{letter-spacing:4.676800pt;}
.ls68{letter-spacing:4.803200pt;}
.ls24{letter-spacing:5.106560pt;}
.ls63{letter-spacing:5.763840pt;}
.ls6f{letter-spacing:6.067200pt;}
.ls70{letter-spacing:6.137984pt;}
.ls44{letter-spacing:6.421120pt;}
.ls29{letter-spacing:6.724480pt;}
.ls43{letter-spacing:7.685120pt;}
.ls39{letter-spacing:8.251392pt;}
.ls48{letter-spacing:8.519360pt;}
.ls3f{letter-spacing:8.564864pt;}
.ls3a{letter-spacing:8.645760pt;}
.ls65{letter-spacing:9.303040pt;}
.ls4b{letter-spacing:9.909760pt;}
.ls66{letter-spacing:10.870400pt;}
.ls33{letter-spacing:11.022080pt;}
.ls32{letter-spacing:11.224320pt;}
.ls55{letter-spacing:11.527680pt;}
.ls22{letter-spacing:11.831040pt;}
.ls21{letter-spacing:11.881600pt;}
.ls60{letter-spacing:12.184960pt;}
.ls53{letter-spacing:13.448960pt;}
.ls45{letter-spacing:14.520832pt;}
.ls6b{letter-spacing:15.673600pt;}
.ls67{letter-spacing:21.852032pt;}
.ls30{letter-spacing:22.367744pt;}
.ls6a{letter-spacing:44.492800pt;}
.ls3e{letter-spacing:47.728640pt;}
.ls15{letter-spacing:53.645440pt;}
.ls23{letter-spacing:58.599040pt;}
.ls11{letter-spacing:61.965440pt;}
.ls13{letter-spacing:63.245440pt;}
.ls20{letter-spacing:152.698880pt;}
.ls38{letter-spacing:153.668160pt;}
.lsf{letter-spacing:348.960000pt;}
.ws51{word-spacing:-50.560000pt;}
.ws4f{word-spacing:-14.837440pt;}
.ws50{word-spacing:-14.762880pt;}
.ws4b{word-spacing:-14.240960pt;}
.ws4e{word-spacing:-14.166400pt;}
.ws4a{word-spacing:-14.091840pt;}
.ws4{word-spacing:-13.888000pt;}
.ws5{word-spacing:-13.749120pt;}
.ws11b{word-spacing:-13.420800pt;}
.wsbe{word-spacing:-13.197120pt;}
.wsd8{word-spacing:-12.864000pt;}
.ws104{word-spacing:-12.672000pt;}
.wsc{word-spacing:-10.064427pt;}
.ws3a{word-spacing:-10.061440pt;}
.wsad{word-spacing:-10.036160pt;}
.wse{word-spacing:-10.011093pt;}
.ws4c{word-spacing:-10.010880pt;}
.wsa{word-spacing:-9.960320pt;}
.wsb{word-spacing:-9.909760pt;}
.ws8f{word-spacing:-9.859200pt;}
.wse8{word-spacing:-9.808640pt;}
.wsae{word-spacing:-9.758080pt;}
.ws47{word-spacing:-9.707520pt;}
.ws3b{word-spacing:-9.555840pt;}
.ws38{word-spacing:-9.505280pt;}
.wsd{word-spacing:-9.502507pt;}
.ws49{word-spacing:-9.454720pt;}
.ws37{word-spacing:-9.404160pt;}
.wsf4{word-spacing:-8.815360pt;}
.wsf3{word-spacing:-8.769920pt;}
.ws120{word-spacing:-8.696320pt;}
.ws4d{word-spacing:-8.645760pt;}
.wsf0{word-spacing:-8.588160pt;}
.ws90{word-spacing:-8.544640pt;}
.wsef{word-spacing:-8.497280pt;}
.ws3c{word-spacing:-8.494080pt;}
.ws48{word-spacing:-8.443520pt;}
.wsc8{word-spacing:-8.392960pt;}
.ws7a{word-spacing:-7.920000pt;}
.ws79{word-spacing:-7.880000pt;}
.ws7b{word-spacing:-7.840000pt;}
.wsbd{word-spacing:-7.720000pt;}
.wsf2{word-spacing:-7.679360pt;}
.wsf1{word-spacing:-7.633920pt;}
.ws22{word-spacing:-0.528000pt;}
.wsbb{word-spacing:-0.455040pt;}
.wsf6{word-spacing:-0.448000pt;}
.ws1b{word-spacing:-0.432000pt;}
.ws1c{word-spacing:-0.405333pt;}
.wsbc{word-spacing:-0.404480pt;}
.wsfb{word-spacing:-0.363520pt;}
.ws11a{word-spacing:-0.353920pt;}
.wscc{word-spacing:-0.303360pt;}
.ws8{word-spacing:-0.277760pt;}
.ws1d{word-spacing:-0.277333pt;}
.ws29{word-spacing:-0.266667pt;}
.wsdb{word-spacing:-0.256000pt;}
.ws3{word-spacing:-0.234880pt;}
.ws2a{word-spacing:-0.229333pt;}
.ws23{word-spacing:-0.218667pt;}
.ws46{word-spacing:-0.202240pt;}
.ws109{word-spacing:-0.192000pt;}
.wsf9{word-spacing:-0.181760pt;}
.ws18{word-spacing:-0.160000pt;}
.ws16{word-spacing:-0.154667pt;}
.ws45{word-spacing:-0.151680pt;}
.ws35{word-spacing:-0.149333pt;}
.ws6{word-spacing:-0.138880pt;}
.wsfd{word-spacing:-0.136320pt;}
.ws34{word-spacing:-0.128000pt;}
.ws36{word-spacing:-0.122667pt;}
.ws17{word-spacing:-0.101333pt;}
.ws10{word-spacing:-0.101120pt;}
.wsff{word-spacing:-0.090880pt;}
.ws7{word-spacing:-0.069440pt;}
.ws19{word-spacing:-0.069333pt;}
.ws105{word-spacing:-0.064000pt;}
.ws2b{word-spacing:-0.058667pt;}
.ws27{word-spacing:-0.053333pt;}
.wsf{word-spacing:-0.050560pt;}
.ws28{word-spacing:-0.048000pt;}
.wsfc{word-spacing:-0.045440pt;}
.ws24{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:0.016000pt;}
.wsfe{word-spacing:0.045440pt;}
.wsa9{word-spacing:0.050560pt;}
.ws25{word-spacing:0.053333pt;}
.ws0{word-spacing:0.064000pt;}
.wsed{word-spacing:0.074560pt;}
.wsc0{word-spacing:0.080000pt;}
.wsfa{word-spacing:0.090880pt;}
.wscd{word-spacing:0.101120pt;}
.ws1e{word-spacing:0.101333pt;}
.ws3d{word-spacing:0.120000pt;}
.wsdc{word-spacing:0.128000pt;}
.wsf7{word-spacing:0.136320pt;}
.ws1{word-spacing:0.149120pt;}
.ws6f{word-spacing:0.151680pt;}
.ws1a{word-spacing:0.176000pt;}
.wsf8{word-spacing:0.181760pt;}
.ws44{word-spacing:0.202240pt;}
.ws119{word-spacing:0.223680pt;}
.wsaa{word-spacing:0.252800pt;}
.ws3e{word-spacing:0.280000pt;}
.ws1f{word-spacing:0.293333pt;}
.ws7f{word-spacing:0.298240pt;}
.wsba{word-spacing:0.303360pt;}
.ws21{word-spacing:0.330667pt;}
.ws9{word-spacing:0.347200pt;}
.wse0{word-spacing:0.353920pt;}
.wsb8{word-spacing:0.505600pt;}
.ws14{word-spacing:0.506667pt;}
.ws15{word-spacing:0.554667pt;}
.ws58{word-spacing:0.556160pt;}
.ws26{word-spacing:0.576000pt;}
.wse9{word-spacing:0.606720pt;}
.ws13{word-spacing:0.608000pt;}
.wscb{word-spacing:0.657280pt;}
.ws69{word-spacing:0.808960pt;}
.ws5e{word-spacing:0.859520pt;}
.ws74{word-spacing:0.960640pt;}
.ws9f{word-spacing:1.162880pt;}
.ws9e{word-spacing:1.213440pt;}
.ws117{word-spacing:1.264000pt;}
.wsb5{word-spacing:1.314560pt;}
.ws8d{word-spacing:1.466240pt;}
.ws5d{word-spacing:1.516800pt;}
.wsac{word-spacing:1.567360pt;}
.wsd2{word-spacing:1.769600pt;}
.ws43{word-spacing:1.820160pt;}
.wsee{word-spacing:1.870720pt;}
.wse4{word-spacing:1.921280pt;}
.wsdd{word-spacing:1.971840pt;}
.wse3{word-spacing:2.123520pt;}
.ws6e{word-spacing:2.174080pt;}
.wse2{word-spacing:2.224640pt;}
.ws9a{word-spacing:2.426880pt;}
.ws72{word-spacing:2.477440pt;}
.ws97{word-spacing:2.528000pt;}
.ws99{word-spacing:2.578560pt;}
.ws98{word-spacing:2.629120pt;}
.wsd1{word-spacing:2.730240pt;}
.ws5a{word-spacing:2.780800pt;}
.ws59{word-spacing:2.881920pt;}
.ws122{word-spacing:2.932480pt;}
.ws88{word-spacing:3.084160pt;}
.ws73{word-spacing:3.134720pt;}
.wsa2{word-spacing:3.185280pt;}
.ws87{word-spacing:3.387520pt;}
.ws86{word-spacing:3.438080pt;}
.wsaf{word-spacing:3.488640pt;}
.ws80{word-spacing:3.690880pt;}
.ws81{word-spacing:3.741440pt;}
.wsb1{word-spacing:3.792000pt;}
.wsb0{word-spacing:3.842560pt;}
.ws8e{word-spacing:3.893120pt;}
.ws70{word-spacing:4.044800pt;}
.ws71{word-spacing:4.095360pt;}
.ws7e{word-spacing:4.145920pt;}
.ws68{word-spacing:4.348160pt;}
.ws54{word-spacing:4.398720pt;}
.ws53{word-spacing:4.449280pt;}
.ws89{word-spacing:4.651520pt;}
.ws8a{word-spacing:4.702080pt;}
.wsd6{word-spacing:4.803200pt;}
.wsa6{word-spacing:5.005440pt;}
.ws6d{word-spacing:5.056000pt;}
.ws41{word-spacing:5.308800pt;}
.ws42{word-spacing:5.359360pt;}
.wsec{word-spacing:5.460480pt;}
.ws52{word-spacing:5.612160pt;}
.ws5b{word-spacing:5.662720pt;}
.wsf5{word-spacing:5.713280pt;}
.ws5c{word-spacing:5.763840pt;}
.ws7d{word-spacing:5.966080pt;}
.ws8c{word-spacing:6.016640pt;}
.ws121{word-spacing:6.067200pt;}
.wsd3{word-spacing:6.218880pt;}
.wsd4{word-spacing:6.269440pt;}
.ws96{word-spacing:6.320000pt;}
.ws95{word-spacing:6.370560pt;}
.ws12{word-spacing:6.373333pt;}
.ws84{word-spacing:6.572800pt;}
.ws83{word-spacing:6.623360pt;}
.wsc4{word-spacing:6.673920pt;}
.wsd7{word-spacing:6.724480pt;}
.wse7{word-spacing:6.876160pt;}
.ws55{word-spacing:6.926720pt;}
.wsc3{word-spacing:7.280640pt;}
.ws40{word-spacing:7.533440pt;}
.ws3f{word-spacing:7.584000pt;}
.ws75{word-spacing:7.685120pt;}
.ws76{word-spacing:7.735680pt;}
.wsc1{word-spacing:7.836800pt;}
.wsbf{word-spacing:7.887360pt;}
.wsa8{word-spacing:8.190720pt;}
.wsd5{word-spacing:8.241280pt;}
.wsc7{word-spacing:8.494080pt;}
.ws9d{word-spacing:8.544640pt;}
.wsd0{word-spacing:8.645760pt;}
.ws92{word-spacing:8.797440pt;}
.ws33{word-spacing:8.810667pt;}
.ws5f{word-spacing:8.848000pt;}
.ws91{word-spacing:8.898560pt;}
.ws30{word-spacing:8.976000pt;}
.ws32{word-spacing:9.034667pt;}
.ws2f{word-spacing:9.040000pt;}
.ws2d{word-spacing:9.098667pt;}
.ws31{word-spacing:9.104000pt;}
.ws2e{word-spacing:9.109333pt;}
.ws6b{word-spacing:9.151360pt;}
.ws2c{word-spacing:9.152000pt;}
.ws6c{word-spacing:9.201920pt;}
.ws77{word-spacing:9.454720pt;}
.ws66{word-spacing:9.505280pt;}
.ws67{word-spacing:9.555840pt;}
.wsa3{word-spacing:9.758080pt;}
.wsa4{word-spacing:9.808640pt;}
.ws112{word-spacing:10.112000pt;}
.wse6{word-spacing:10.162560pt;}
.ws9c{word-spacing:10.415360pt;}
.ws85{word-spacing:10.465920pt;}
.ws7c{word-spacing:10.718720pt;}
.wsa7{word-spacing:10.769280pt;}
.ws113{word-spacing:10.819840pt;}
.wsce{word-spacing:10.870400pt;}
.wsab{word-spacing:11.072640pt;}
.wsb2{word-spacing:11.123200pt;}
.ws65{word-spacing:11.376000pt;}
.ws64{word-spacing:11.426560pt;}
.ws62{word-spacing:11.679360pt;}
.ws11{word-spacing:11.680000pt;}
.ws61{word-spacing:11.729920pt;}
.wsca{word-spacing:12.033280pt;}
.wsda{word-spacing:12.083840pt;}
.wsc9{word-spacing:12.184960pt;}
.ws10f{word-spacing:12.336640pt;}
.wse5{word-spacing:12.387200pt;}
.wsdf{word-spacing:12.640000pt;}
.wsc2{word-spacing:12.690560pt;}
.ws111{word-spacing:12.993920pt;}
.ws107{word-spacing:13.044480pt;}
.ws8b{word-spacing:13.297280pt;}
.ws82{word-spacing:13.347840pt;}
.wseb{word-spacing:13.398400pt;}
.wsa1{word-spacing:13.600640pt;}
.wsa0{word-spacing:13.651200pt;}
.wsea{word-spacing:13.954560pt;}
.wsb7{word-spacing:14.005120pt;}
.ws6a{word-spacing:14.257920pt;}
.ws63{word-spacing:14.308480pt;}
.ws10e{word-spacing:14.611840pt;}
.ws106{word-spacing:14.965760pt;}
.wsd9{word-spacing:15.218560pt;}
.wsc6{word-spacing:15.269120pt;}
.ws115{word-spacing:15.521920pt;}
.ws9b{word-spacing:15.572480pt;}
.wsb9{word-spacing:15.926400pt;}
.ws60{word-spacing:16.229760pt;}
.ws10a{word-spacing:16.533120pt;}
.ws10c{word-spacing:16.887040pt;}
.wsa5{word-spacing:17.139840pt;}
.ws78{word-spacing:17.190400pt;}
.wse1{word-spacing:17.847680pt;}
.wsc5{word-spacing:18.100480pt;}
.ws11f{word-spacing:18.151040pt;}
.ws102{word-spacing:18.403840pt;}
.ws103{word-spacing:18.454400pt;}
.ws118{word-spacing:19.061120pt;}
.ws116{word-spacing:19.111680pt;}
.wsde{word-spacing:19.162240pt;}
.ws108{word-spacing:19.415040pt;}
.wsb3{word-spacing:20.021760pt;}
.wsb4{word-spacing:20.072320pt;}
.wsb6{word-spacing:20.375680pt;}
.ws10b{word-spacing:21.032960pt;}
.ws57{word-spacing:21.336320pt;}
.ws56{word-spacing:21.386880pt;}
.ws101{word-spacing:21.690240pt;}
.ws114{word-spacing:21.993600pt;}
.ws94{word-spacing:22.296960pt;}
.ws93{word-spacing:22.347520pt;}
.ws110{word-spacing:22.903680pt;}
.wscf{word-spacing:22.954240pt;}
.ws11d{word-spacing:25.785600pt;}
.ws11e{word-spacing:26.139520pt;}
.ws11c{word-spacing:26.190080pt;}
.ws100{word-spacing:32.206720pt;}
.ws10d{word-spacing:33.470720pt;}
.ws39{word-spacing:57.259200pt;}
._5{margin-left:-10.181760pt;}
._6{margin-left:-8.932928pt;}
._4{margin-left:-7.341440pt;}
._2{margin-left:-5.549440pt;}
._3{margin-left:-2.790912pt;}
._1{margin-left:-1.056960pt;}
._0{width:1.030400pt;}
._d{width:2.012800pt;}
._7{width:3.084160pt;}
._8{width:4.328960pt;}
._a{width:6.421120pt;}
._e{width:8.672320pt;}
._b{width:11.467520pt;}
._f{width:16.569280pt;}
._c{width:19.168576pt;}
._9{width:22.549760pt;}
.fs5{font-size:40.000000pt;}
.fs8{font-size:45.440000pt;}
.fs4{font-size:50.560000pt;}
.fs7{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.440000pt;}
.fs1{font-size:74.560000pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y1ea{bottom:4.080000pt;}
.y2{bottom:8.160000pt;}
.y45{bottom:37.200000pt;}
.y1e{bottom:54.720000pt;}
.y1{bottom:65.280000pt;}
.y44{bottom:69.920000pt;}
.y42{bottom:82.480000pt;}
.ya4{bottom:85.798240pt;}
.y7d{bottom:86.651520pt;}
.y18e{bottom:90.803840pt;}
.y33f{bottom:91.028160pt;}
.yd6{bottom:94.501760pt;}
.y1b8{bottom:98.163360pt;}
.y2e2{bottom:98.542880pt;}
.y249{bottom:98.822560pt;}
.y28e{bottom:101.861280pt;}
.ya3{bottom:103.317280pt;}
.y2b9{bottom:104.083840pt;}
.y7c{bottom:104.170560pt;}
.y267{bottom:106.408800pt;}
.y41{bottom:108.000000pt;}
.y18d{bottom:108.322880pt;}
.y33e{bottom:108.547200pt;}
.yd5{bottom:112.020800pt;}
.y248{bottom:116.341600pt;}
.y1b7{bottom:117.287680pt;}
.y2e1{bottom:117.743040pt;}
.y310{bottom:117.881760pt;}
.y28d{bottom:119.380320pt;}
.ya2{bottom:120.912160pt;}
.y2b8{bottom:121.602880pt;}
.y7b{bottom:121.689600pt;}
.y266{bottom:123.927840pt;}
.y18c{bottom:125.841920pt;}
.y33d{bottom:126.142080pt;}
.yd4{bottom:129.539840pt;}
.y219{bottom:132.080000pt;}
.y118{bottom:132.570880pt;}
.y40{bottom:133.520000pt;}
.y247{bottom:133.860640pt;}
.y30f{bottom:135.476640pt;}
.y2e0{bottom:136.867360pt;}
.y28c{bottom:136.899360pt;}
.y1e4{bottom:137.760960pt;}
.ya1{bottom:138.431200pt;}
.y2b7{bottom:139.121920pt;}
.y7a{bottom:139.448800pt;}
.y16d{bottom:141.047680pt;}
.y265{bottom:141.446880pt;}
.y18b{bottom:143.360960pt;}
.y33c{bottom:143.661120pt;}
.y1b6{bottom:144.564800pt;}
.yd3{bottom:147.058880pt;}
.y1c{bottom:148.542667pt;}
.y117{bottom:150.089920pt;}
.y246{bottom:151.379680pt;}
.y30e{bottom:152.995680pt;}
.y1e3{bottom:155.280000pt;}
.ya0{bottom:155.950240pt;}
.y2df{bottom:156.067520pt;}
.y2b6{bottom:156.640960pt;}
.y79{bottom:158.648960pt;}
.y264{bottom:158.965920pt;}
.y3f{bottom:159.040000pt;}
.y16c{bottom:160.247840pt;}
.y218{bottom:160.480000pt;}
.y18a{bottom:160.880000pt;}
.y33b{bottom:162.064960pt;}
.y1b5{bottom:162.083840pt;}
.y28b{bottom:162.419520pt;}
.yd2{bottom:164.577920pt;}
.y1b{bottom:166.061333pt;}
.y116{bottom:167.608960pt;}
.y245{bottom:168.898720pt;}
.y13f{bottom:169.916640pt;}
.y30d{bottom:170.514720pt;}
.y9f{bottom:173.469280pt;}
.y2b5{bottom:174.160000pt;}
.y2de{bottom:175.191840pt;}
.y78{bottom:176.168000pt;}
.y16b{bottom:179.372160pt;}
.y33a{bottom:179.584000pt;}
.y1b4{bottom:179.602880pt;}
.y28a{bottom:179.938560pt;}
.yd1{bottom:182.096960pt;}
.y1e2{bottom:183.760000pt;}
.y263{bottom:184.486080pt;}
.y3e{bottom:184.560000pt;}
.y115{bottom:185.128000pt;}
.y13e{bottom:187.359840pt;}
.y30c{bottom:188.033760pt;}
.y189{bottom:188.160000pt;}
.y9e{bottom:190.988320pt;}
.y1a{bottom:191.657333pt;}
.y77{bottom:193.687040pt;}
.y2dd{bottom:194.392000pt;}
.y244{bottom:194.418880pt;}
.y339{bottom:197.103040pt;}
.y1b3{bottom:197.121920pt;}
.y289{bottom:197.533440pt;}
.y16a{bottom:198.572320pt;}
.yd0{bottom:199.691840pt;}
.y2b4{bottom:201.440000pt;}
.y262{bottom:202.080960pt;}
.y217{bottom:202.093760pt;}
.y114{bottom:202.722880pt;}
.y30b{bottom:205.552800pt;}
.y13d{bottom:206.560000pt;}
.y9d{bottom:208.507360pt;}
.y3d{bottom:210.080000pt;}
.y76{bottom:211.281920pt;}
.y243{bottom:211.937920pt;}
.y2dc{bottom:213.592160pt;}
.y338{bottom:214.622080pt;}
.y1b2{bottom:214.640960pt;}
.y19{bottom:214.902667pt;}
.ycf{bottom:217.210880pt;}
.y169{bottom:217.696640pt;}
.y261{bottom:219.600000pt;}
.y216{bottom:219.612800pt;}
.y113{bottom:220.241920pt;}
.y288{bottom:223.053600pt;}
.y1e1{bottom:223.053760pt;}
.y30a{bottom:223.071840pt;}
.y9c{bottom:226.026400pt;}
.y75{bottom:228.800960pt;}
.y242{bottom:229.532800pt;}
.y337{bottom:232.141120pt;}
.y1b1{bottom:232.160000pt;}
.y188{bottom:232.574720pt;}
.y2db{bottom:232.716480pt;}
.y13c{bottom:233.760000pt;}
.yce{bottom:234.729920pt;}
.y3c{bottom:235.680000pt;}
.y215{bottom:237.131840pt;}
.y112{bottom:237.760960pt;}
.y287{bottom:240.572640pt;}
.y1e0{bottom:240.572800pt;}
.y18{bottom:240.662667pt;}
.y168{bottom:244.973760pt;}
.y2b3{bottom:245.850880pt;}
.y74{bottom:246.320000pt;}
.y260{bottom:246.800000pt;}
.y241{bottom:247.051840pt;}
.y309{bottom:248.592000pt;}
.y336{bottom:249.660160pt;}
.y187{bottom:250.093760pt;}
.y9b{bottom:251.622400pt;}
.y2da{bottom:251.916640pt;}
.ycd{bottom:252.248960pt;}
.y214{bottom:254.650880pt;}
.y111{bottom:255.280000pt;}
.y286{bottom:258.091680pt;}
.y1df{bottom:258.091840pt;}
.y13b{bottom:259.322720pt;}
.y1b0{bottom:259.440000pt;}
.y3b{bottom:261.200000pt;}
.y167{bottom:262.492800pt;}
.y2b2{bottom:263.369920pt;}
.y240{bottom:264.570880pt;}
.y17{bottom:266.182667pt;}
.y308{bottom:266.186880pt;}
.y335{bottom:267.179200pt;}
.y186{bottom:267.612800pt;}
.y9a{bottom:269.141440pt;}
.ycc{bottom:269.768000pt;}
.y2d9{bottom:271.116800pt;}
.y213{bottom:272.169920pt;}
.y73{bottom:274.808400pt;}
.y285{bottom:275.610720pt;}
.y1de{bottom:275.610880pt;}
.y166{bottom:280.011840pt;}
.y2b1{bottom:280.888960pt;}
.y1af{bottom:281.520000pt;}
.y23f{bottom:282.089920pt;}
.y307{bottom:283.705920pt;}
.y110{bottom:283.760000pt;}
.y334{bottom:284.774080pt;}
.y13a{bottom:284.842880pt;}
.y185{bottom:285.131840pt;}
.y99{bottom:286.660480pt;}
.y3a{bottom:286.720000pt;}
.ycb{bottom:287.287040pt;}
.y212{bottom:289.688960pt;}
.y2d8{bottom:290.241120pt;}
.y25f{bottom:291.251360pt;}
.y16{bottom:291.702667pt;}
.y284{bottom:293.129760pt;}
.y1dd{bottom:293.129920pt;}
.y165{bottom:297.530880pt;}
.y2b0{bottom:298.408000pt;}
.y23e{bottom:299.608960pt;}
.y333{bottom:302.293120pt;}
.y184{bottom:302.650880pt;}
.y98{bottom:304.179520pt;}
.yca{bottom:304.806080pt;}
.y211{bottom:307.208000pt;}
.y72{bottom:308.640000pt;}
.y25e{bottom:308.770400pt;}
.y306{bottom:309.226080pt;}
.y2d7{bottom:309.441280pt;}
.y139{bottom:310.438880pt;}
.y1dc{bottom:310.648960pt;}
.yf9{bottom:311.114720pt;}
.y39{bottom:312.240000pt;}
.y1ec{bottom:312.960000pt;}
.y164{bottom:315.049920pt;}
.y2af{bottom:315.927040pt;}
.y23d{bottom:317.128000pt;}
.y15{bottom:317.298667pt;}
.y283{bottom:318.649920pt;}
.y332{bottom:319.812160pt;}
.y183{bottom:320.169920pt;}
.y97{bottom:321.698560pt;}
.yc9{bottom:322.400960pt;}
.y210{bottom:324.802880pt;}
.y10f{bottom:325.292800pt;}
.y1ae{bottom:325.955840pt;}
.y25d{bottom:326.289440pt;}
.y305{bottom:326.745120pt;}
.y138{bottom:327.957920pt;}
.y1db{bottom:328.168000pt;}
.y2d6{bottom:328.565600pt;}
.yf8{bottom:330.314880pt;}
.y163{bottom:332.568960pt;}
.y2ae{bottom:333.446080pt;}
.y23c{bottom:334.647040pt;}
.y282{bottom:336.244800pt;}
.y331{bottom:337.331200pt;}
.y182{bottom:337.688960pt;}
.y38{bottom:337.760000pt;}
.y96{bottom:339.217600pt;}
.y71{bottom:339.884480pt;}
.yc8{bottom:339.920000pt;}
.y20f{bottom:342.321920pt;}
.y10e{bottom:342.811840pt;}
.y14{bottom:343.058667pt;}
.y1ad{bottom:343.474880pt;}
.y25c{bottom:343.884320pt;}
.y304{bottom:344.264160pt;}
.y137{bottom:345.476960pt;}
.y1da{bottom:345.687040pt;}
.yf7{bottom:349.515040pt;}
.y162{bottom:350.088000pt;}
.y2ad{bottom:351.040960pt;}
.y23b{bottom:352.241920pt;}
.y281{bottom:353.763840pt;}
.y330{bottom:354.850240pt;}
.y181{bottom:355.283840pt;}
.y2d5{bottom:355.842720pt;}
.y95{bottom:356.736640pt;}
.y70{bottom:357.403520pt;}
.y20e{bottom:359.840960pt;}
.y10d{bottom:360.330880pt;}
.y1ac{bottom:360.993920pt;}
.y25b{bottom:361.403360pt;}
.y303{bottom:361.783200pt;}
.y136{bottom:362.996000pt;}
.y37{bottom:363.280000pt;}
.y1d9{bottom:363.281920pt;}
.y161{bottom:367.682880pt;}
.yc7{bottom:368.320000pt;}
.y2ac{bottom:368.560000pt;}
.y13{bottom:368.578667pt;}
.yf6{bottom:368.639360pt;}
.y23a{bottom:369.760960pt;}
.y280{bottom:371.282880pt;}
.y32f{bottom:372.369280pt;}
.y180{bottom:372.802880pt;}
.y2d4{bottom:373.361760pt;}
.y94{bottom:374.331520pt;}
.y6f{bottom:374.922560pt;}
.y20d{bottom:377.360000pt;}
.y10c{bottom:377.849920pt;}
.y1ab{bottom:378.512960pt;}
.y135{bottom:380.515040pt;}
.y1d8{bottom:380.800960pt;}
.y160{bottom:385.201920pt;}
.y12{bottom:386.122667pt;}
.y25a{bottom:386.923520pt;}
.y239{bottom:387.280000pt;}
.y302{bottom:387.303360pt;}
.yf5{bottom:387.839520pt;}
.y27f{bottom:388.801920pt;}
.y36{bottom:388.880000pt;}
.y32e{bottom:389.888320pt;}
.y17f{bottom:390.321920pt;}
.y93{bottom:391.850560pt;}
.y6e{bottom:392.441600pt;}
.y10b{bottom:395.368960pt;}
.y2ab{bottom:395.760000pt;}
.y1aa{bottom:396.107840pt;}
.y1d7{bottom:398.320000pt;}
.y2d3{bottom:398.881920pt;}
.y15f{bottom:402.720960pt;}
.y11{bottom:403.666667pt;}
.y259{bottom:404.442560pt;}
.y20c{bottom:404.560000pt;}
.y301{bottom:404.822400pt;}
.yf4{bottom:405.358560pt;}
.y134{bottom:406.035200pt;}
.y27e{bottom:406.320960pt;}
.y32d{bottom:407.571680pt;}
.y17e{bottom:407.840960pt;}
.y92{bottom:409.369600pt;}
.yc6{bottom:409.931680pt;}
.y10a{bottom:412.888000pt;}
.y1a9{bottom:413.626880pt;}
.y238{bottom:414.480000pt;}
.y35{bottom:414.640000pt;}
.y2d2{bottom:416.400960pt;}
.y6d{bottom:418.037600pt;}
.y15e{bottom:420.240000pt;}
.y10{bottom:421.210667pt;}
.y258{bottom:421.961600pt;}
.y133{bottom:423.554240pt;}
.y27d{bottom:423.840000pt;}
.yf3{bottom:424.558720pt;}
.y17d{bottom:425.360000pt;}
.y1d6{bottom:425.520000pt;}
.y32c{bottom:426.051360pt;}
.yc5{bottom:427.450720pt;}
.y300{bottom:430.418400pt;}
.y109{bottom:430.482880pt;}
.y1a8{bottom:431.145920pt;}
.y2d1{bottom:433.920000pt;}
.y91{bottom:434.889760pt;}
.y6c{bottom:435.480800pt;}
.y257{bottom:439.480640pt;}
.y34{bottom:440.160000pt;}
.y2aa{bottom:440.193600pt;}
.y132{bottom:441.149120pt;}
.y32b{bottom:443.570400pt;}
.yc4{bottom:444.969760pt;}
.y2ff{bottom:447.937440pt;}
.y108{bottom:448.001920pt;}
.y15d{bottom:448.720000pt;}
.y20b{bottom:448.969760pt;}
.y27c{bottom:451.120000pt;}
.yf2{bottom:451.760000pt;}
.y90{bottom:452.408800pt;}
.y17c{bottom:452.640000pt;}
.y6b{bottom:454.680960pt;}
.y1a7{bottom:456.666080pt;}
.y2a9{bottom:457.712640pt;}
.y131{bottom:458.668160pt;}
.y237{bottom:458.899680pt;}
.y32a{bottom:461.089440pt;}
.y2d0{bottom:462.480000pt;}
.yc3{bottom:462.488800pt;}
.y256{bottom:465.000800pt;}
.y2fe{bottom:465.456480pt;}
.y107{bottom:465.520960pt;}
.y33{bottom:465.680000pt;}
.y20a{bottom:466.564640pt;}
.y8f{bottom:469.927840pt;}
.y1d5{bottom:469.961440pt;}
.y1a6{bottom:474.185120pt;}
.y130{bottom:476.187200pt;}
.y236{bottom:476.418720pt;}
.y329{bottom:478.684320pt;}
.yc2{bottom:480.007840pt;}
.yf1{bottom:480.240000pt;}
.y6a{bottom:481.882240pt;}
.y255{bottom:482.595680pt;}
.y2fd{bottom:482.975520pt;}
.y106{bottom:483.040000pt;}
.y2a8{bottom:483.232800pt;}
.y209{bottom:484.083680pt;}
.y1d4{bottom:487.556320pt;}
.y15c{bottom:490.266080pt;}
.y32{bottom:491.200000pt;}
.y1a5{bottom:491.704160pt;}
.y12f{bottom:493.706240pt;}
.y235{bottom:494.013600pt;}
.y8e{bottom:495.448000pt;}
.y27b{bottom:495.530880pt;}
.y328{bottom:496.203360pt;}
.y17b{bottom:497.050720pt;}
.yc1{bottom:497.526880pt;}
.y69{bottom:499.401280pt;}
.y254{bottom:500.114720pt;}
.y2fc{bottom:500.494560pt;}
.y2a7{bottom:501.067840pt;}
.y208{bottom:501.602720pt;}
.y2cf{bottom:501.700480pt;}
.y1d3{bottom:505.075360pt;}
.y15b{bottom:507.785120pt;}
.y12e{bottom:511.225280pt;}
.y234{bottom:511.532640pt;}
.y105{bottom:511.600000pt;}
.y8d{bottom:512.967040pt;}
.y27a{bottom:513.049920pt;}
.y327{bottom:513.722400pt;}
.y17a{bottom:514.569760pt;}
.yc0{bottom:515.045920pt;}
.y31{bottom:516.800000pt;}
.y68{bottom:516.920320pt;}
.y1a4{bottom:517.224320pt;}
.y253{bottom:517.633760pt;}
.y207{bottom:519.121760pt;}
.y2ce{bottom:519.219520pt;}
.y2a6{bottom:520.508160pt;}
.yf0{bottom:521.792320pt;}
.y1d2{bottom:522.594400pt;}
.y15a{bottom:525.304160pt;}
.y2fb{bottom:526.014720pt;}
.y12d{bottom:528.744320pt;}
.y233{bottom:529.051680pt;}
.y8c{bottom:530.561920pt;}
.y279{bottom:530.568960pt;}
.y326{bottom:531.241440pt;}
.y179{bottom:532.088800pt;}
.y67{bottom:534.439360pt;}
.y1a3{bottom:534.819200pt;}
.y252{bottom:535.152800pt;}
.y206{bottom:536.640800pt;}
.y2cd{bottom:536.738560pt;}
.yef{bottom:539.311360pt;}
.y1d1{bottom:540.113440pt;}
.ybf{bottom:540.641920pt;}
.y30{bottom:542.320000pt;}
.y159{bottom:542.823200pt;}
.y2fa{bottom:543.533760pt;}
.y12c{bottom:546.263360pt;}
.y2a5{bottom:547.709440pt;}
.y8b{bottom:548.080960pt;}
.y278{bottom:548.088000pt;}
.y325{bottom:548.760480pt;}
.y178{bottom:549.607840pt;}
.y104{bottom:550.809600pt;}
.y66{bottom:552.034240pt;}
.y1a2{bottom:552.338240pt;}
.y251{bottom:552.671840pt;}
.y205{bottom:554.159840pt;}
.y2cc{bottom:554.257600pt;}
.y232{bottom:554.571840pt;}
.yee{bottom:556.830400pt;}
.y1d0{bottom:557.632480pt;}
.ybe{bottom:558.160960pt;}
.y158{bottom:560.342240pt;}
.y2f9{bottom:561.128640pt;}
.y2a4{bottom:565.228480pt;}
.y8a{bottom:565.600000pt;}
.y277{bottom:565.607040pt;}
.y324{bottom:566.279520pt;}
.y2f{bottom:567.840000pt;}
.y103{bottom:568.328640pt;}
.y65{bottom:569.553280pt;}
.y1a1{bottom:569.857280pt;}
.y250{bottom:570.190880pt;}
.y2cb{bottom:571.852480pt;}
.y12b{bottom:571.859360pt;}
.y231{bottom:572.090880pt;}
.yed{bottom:574.349440pt;}
.y177{bottom:575.128000pt;}
.y1cf{bottom:575.151520pt;}
.ybd{bottom:575.680000pt;}
.y157{bottom:577.937120pt;}
.y2f8{bottom:578.647680pt;}
.y204{bottom:579.680000pt;}
.y2a3{bottom:582.747520pt;}
.y276{bottom:583.126080pt;}
.y323{bottom:583.798560pt;}
.y102{bottom:585.847680pt;}
.y64{bottom:587.072320pt;}
.y2ca{bottom:589.371520pt;}
.y12a{bottom:589.378400pt;}
.y230{bottom:589.609920pt;}
.y1eb{bottom:590.720000pt;}
.yec{bottom:591.868480pt;}
.y176{bottom:592.647040pt;}
.y1ce{bottom:592.670560pt;}
.ybc{bottom:593.208320pt;}
.y2e{bottom:593.360000pt;}
.y89{bottom:594.080000pt;}
.y203{bottom:594.978880pt;}
.y1a0{bottom:595.377440pt;}
.y156{bottom:595.456160pt;}
.y24f{bottom:595.711040pt;}
.y2f7{bottom:596.166720pt;}
.y2a2{bottom:600.266560pt;}
.y275{bottom:600.720960pt;}
.y322{bottom:601.317600pt;}
.y63{bottom:604.591360pt;}
.yc{bottom:605.826800pt;}
.y101{bottom:606.728960pt;}
.y2c9{bottom:606.890560pt;}
.y129{bottom:606.897440pt;}
.y22f{bottom:607.128960pt;}
.y202{bottom:608.974400pt;}
.yeb{bottom:609.387520pt;}
.y175{bottom:610.241920pt;}
.y1cd{bottom:610.265440pt;}
.ybb{bottom:610.727360pt;}
.y19f{bottom:612.896480pt;}
.y155{bottom:612.975200pt;}
.y24e{bottom:613.305920pt;}
.y2f6{bottom:613.685760pt;}
.y2a1{bottom:617.861440pt;}
.y274{bottom:618.240000pt;}
.y2d{bottom:618.880000pt;}
.y321{bottom:618.912480pt;}
.y62{bottom:622.110400pt;}
.y201{bottom:623.049440pt;}
.y100{bottom:624.248000pt;}
.y2c8{bottom:624.409600pt;}
.y128{bottom:624.416480pt;}
.y22e{bottom:624.723840pt;}
.yea{bottom:626.982400pt;}
.y174{bottom:627.760960pt;}
.y1cc{bottom:627.784480pt;}
.yba{bottom:628.246400pt;}
.y19e{bottom:630.415520pt;}
.y24d{bottom:630.824960pt;}
.y2a0{bottom:635.380480pt;}
.y88{bottom:635.603840pt;}
.y320{bottom:636.431520pt;}
.y200{bottom:637.044960pt;}
.y154{bottom:638.495360pt;}
.y2f5{bottom:639.205920pt;}
.yff{bottom:641.767040pt;}
.y127{bottom:641.935520pt;}
.y22d{bottom:642.242880pt;}
.y2c{bottom:644.480000pt;}
.y173{bottom:645.280000pt;}
.y1cb{bottom:645.303520pt;}
.y273{bottom:645.440000pt;}
.yb9{bottom:645.765440pt;}
.y61{bottom:647.630560pt;}
.y19d{bottom:648.174720pt;}
.y24c{bottom:648.344000pt;}
.y2c7{bottom:649.929760pt;}
.y1fe{bottom:650.800000pt;}
.y1ff{bottom:651.120000pt;}
.ye9{bottom:652.502560pt;}
.y29f{bottom:652.899520pt;}
.y87{bottom:653.122880pt;}
.y31f{bottom:653.950560pt;}
.y153{bottom:656.014400pt;}
.y2f4{bottom:658.330240pt;}
.yfe{bottom:659.286080pt;}
.y126{bottom:659.454560pt;}
.y22c{bottom:659.761920pt;}
.y1ca{bottom:662.822560pt;}
.yb8{bottom:663.360320pt;}
.y1fd{bottom:665.115520pt;}
.y60{bottom:665.149600pt;}
.y24b{bottom:665.863040pt;}
.y2b{bottom:670.240000pt;}
.ye8{bottom:670.261760pt;}
.y29e{bottom:670.418560pt;}
.y86{bottom:670.641920pt;}
.y31e{bottom:671.469600pt;}
.y172{bottom:672.480000pt;}
.y152{bottom:673.533440pt;}
.y2c6{bottom:675.449920pt;}
.y19c{bottom:675.451840pt;}
.yfd{bottom:676.880960pt;}
.y125{bottom:676.973600pt;}
.y22b{bottom:677.280960pt;}
.y2f3{bottom:677.530400pt;}
.y1fc{bottom:679.190560pt;}
.y1c9{bottom:680.341600pt;}
.yb7{bottom:680.879360pt;}
.y5f{bottom:682.744480pt;}
.y24a{bottom:683.382080pt;}
.y29d{bottom:687.937600pt;}
.y85{bottom:688.160960pt;}
.y31d{bottom:688.988640pt;}
.ye7{bottom:689.702080pt;}
.y272{bottom:689.848960pt;}
.y34a{bottom:689.866400pt;}
.y151{bottom:691.052480pt;}
.y2c5{bottom:692.968960pt;}
.y19b{bottom:692.970880pt;}
.y1fb{bottom:693.186080pt;}
.yfc{bottom:694.400000pt;}
.y124{bottom:694.568480pt;}
.y22a{bottom:694.800000pt;}
.y2a{bottom:695.759867pt;}
.y1c8{bottom:697.860640pt;}
.y5e{bottom:700.263520pt;}
.y2f2{bottom:704.731680pt;}
.y84{bottom:705.680000pt;}
.yb6{bottom:706.399520pt;}
.y31c{bottom:706.507680pt;}
.y1fa{bottom:707.261120pt;}
.y271{bottom:707.368000pt;}
.y349{bottom:707.385440pt;}
.y150{bottom:708.571520pt;}
.ye6{bottom:708.902240pt;}
.y2c4{bottom:710.488000pt;}
.y19a{bottom:710.489920pt;}
.y29c{bottom:713.457760pt;}
.yfb{bottom:713.760000pt;}
.y1c7{bottom:715.379680pt;}
.y171{bottom:716.903360pt;}
.y5d{bottom:717.782560pt;}
.y123{bottom:720.088640pt;}
.y1f9{bottom:721.256640pt;}
.y29{bottom:721.280000pt;}
.y229{bottom:722.000000pt;}
.y2f1{bottom:722.250720pt;}
.yb5{bottom:723.918560pt;}
.y31b{bottom:724.026720pt;}
.y270{bottom:724.887040pt;}
.y348{bottom:724.904480pt;}
.y14f{bottom:726.166400pt;}
.ye5{bottom:726.421280pt;}
.yfa{bottom:727.600000pt;}
.y2c3{bottom:728.007040pt;}
.y199{bottom:728.008960pt;}
.y83{bottom:729.760000pt;}
.y29b{bottom:730.976800pt;}
.y1c6{bottom:732.898720pt;}
.y170{bottom:734.422400pt;}
.y5c{bottom:735.301600pt;}
.y1f8{bottom:735.331680pt;}
.y122{bottom:737.607680pt;}
.y2f0{bottom:739.769760pt;}
.yb4{bottom:741.437600pt;}
.y31a{bottom:741.621600pt;}
.y347{bottom:742.423520pt;}
.y26f{bottom:742.481920pt;}
.y82{bottom:743.600000pt;}
.y14e{bottom:743.685440pt;}
.ye4{bottom:744.016160pt;}
.y358{bottom:745.141600pt;}
.y5{bottom:745.350480pt;}
.y198{bottom:745.528000pt;}
.y2c2{bottom:745.601920pt;}
.y28{bottom:746.800000pt;}
.y29a{bottom:748.571680pt;}
.y1f7{bottom:749.327200pt;}
.y1c5{bottom:750.493600pt;}
.y16f{bottom:752.017280pt;}
.y5b{bottom:752.820640pt;}
.y2ef{bottom:757.288800pt;}
.yb3{bottom:758.956640pt;}
.y319{bottom:759.140640pt;}
.y26e{bottom:760.000960pt;}
.y346{bottom:760.018400pt;}
.y14d{bottom:761.204480pt;}
.ye3{bottom:761.535200pt;}
.y357{bottom:762.660640pt;}
.y197{bottom:763.047040pt;}
.y121{bottom:763.127840pt;}
.y1f6{bottom:763.402240pt;}
.y299{bottom:766.090720pt;}
.y228{bottom:766.494400pt;}
.y1c4{bottom:768.012640pt;}
.y16e{bottom:769.536320pt;}
.y2c1{bottom:771.046240pt;}
.y27{bottom:772.400000pt;}
.y2ee{bottom:774.883680pt;}
.y318{bottom:776.659680pt;}
.y1f5{bottom:777.397760pt;}
.y26d{bottom:777.520000pt;}
.y345{bottom:777.537440pt;}
.y5a{bottom:778.340800pt;}
.y14c{bottom:778.723520pt;}
.y356{bottom:780.179680pt;}
.y196{bottom:780.566080pt;}
.y298{bottom:783.609760pt;}
.y227{bottom:784.013440pt;}
.yb2{bottom:784.476800pt;}
.y1c3{bottom:785.531680pt;}
.ye2{bottom:787.055360pt;}
.y120{bottom:788.648000pt;}
.y1f4{bottom:791.393280pt;}
.y4{bottom:794.000000pt;}
.y317{bottom:794.178720pt;}
.y344{bottom:795.056480pt;}
.y59{bottom:795.859840pt;}
.y14b{bottom:796.242560pt;}
.y2c0{bottom:796.642240pt;}
.yb{bottom:797.585360pt;}
.y195{bottom:798.160960pt;}
.y26{bottom:798.240000pt;}
.y2ed{bottom:800.403840pt;}
.y297{bottom:801.128800pt;}
.y226{bottom:801.532480pt;}
.yb1{bottom:801.995840pt;}
.y1c2{bottom:803.050720pt;}
.ye1{bottom:804.574400pt;}
.y26c{bottom:804.720000pt;}
.y1f3{bottom:805.468320pt;}
.y355{bottom:805.699840pt;}
.y11f{bottom:806.167040pt;}
.y316{bottom:811.697760pt;}
.y343{bottom:812.575520pt;}
.y58{bottom:813.454720pt;}
.y14a{bottom:813.761600pt;}
.y2bf{bottom:814.161280pt;}
.y194{bottom:815.680000pt;}
.y2ec{bottom:817.922880pt;}
.y225{bottom:819.051520pt;}
.y1f2{bottom:819.463840pt;}
.y1c1{bottom:820.569760pt;}
.yb0{bottom:821.196000pt;}
.ye0{bottom:822.093440pt;}
.y354{bottom:823.294720pt;}
.y296{bottom:826.648960pt;}
.y315{bottom:829.216800pt;}
.ya{bottom:829.510400pt;}
.y342{bottom:830.094560pt;}
.y57{bottom:830.973760pt;}
.y149{bottom:831.280640pt;}
.y2be{bottom:831.680320pt;}
.y11e{bottom:831.687200pt;}
.y1f1{bottom:833.538880pt;}
.y2eb{bottom:835.441920pt;}
.y224{bottom:836.570560pt;}
.y3{bottom:837.520000pt;}
.y25{bottom:838.240000pt;}
.yaf{bottom:838.715040pt;}
.ydf{bottom:839.612480pt;}
.y353{bottom:840.813760pt;}
.y193{bottom:842.880000pt;}
.y295{bottom:844.168000pt;}
.y1c0{bottom:846.089920pt;}
.y314{bottom:846.735840pt;}
.y1f0{bottom:847.534400pt;}
.y341{bottom:847.613600pt;}
.y56{bottom:848.492800pt;}
.y148{bottom:848.875520pt;}
.y26b{bottom:849.130400pt;}
.y2ea{bottom:852.960960pt;}
.y223{bottom:854.089600pt;}
.yde{bottom:857.131520pt;}
.y2bd{bottom:857.200480pt;}
.yae{bottom:857.915200pt;}
.y352{bottom:858.332800pt;}
.y9{bottom:861.435440pt;}
.y1ef{bottom:861.609440pt;}
.y294{bottom:861.687040pt;}
.y1bf{bottom:863.608960pt;}
.y313{bottom:864.330720pt;}
.y340{bottom:865.132640pt;}
.y55{bottom:866.011840pt;}
.y26a{bottom:866.725280pt;}
.y2e9{bottom:870.480000pt;}
.y147{bottom:874.319840pt;}
.y11d{bottom:874.726400pt;}
.yad{bottom:875.434240pt;}
.y1ee{bottom:875.604960pt;}
.y351{bottom:876.092000pt;}
.y293{bottom:879.281920pt;}
.y222{bottom:879.609760pt;}
.y1be{bottom:881.203840pt;}
.y312{bottom:881.849760pt;}
.y2bc{bottom:882.720640pt;}
.ydd{bottom:882.727520pt;}
.y54{bottom:883.530880pt;}
.y269{bottom:884.244320pt;}
.y192{bottom:887.277920pt;}
.y1ed{bottom:889.680000pt;}
.y11c{bottom:892.245440pt;}
.y8{bottom:893.429867pt;}
.y146{bottom:893.520000pt;}
.y350{bottom:893.686880pt;}
.yac{bottom:894.634400pt;}
.y292{bottom:896.800960pt;}
.y221{bottom:897.204640pt;}
.y1bd{bottom:898.722880pt;}
.y2e8{bottom:899.040000pt;}
.y2bb{bottom:900.239680pt;}
.ydc{bottom:900.246560pt;}
.y311{bottom:900.253600pt;}
.y53{bottom:901.049920pt;}
.y191{bottom:904.796960pt;}
.y11b{bottom:909.764480pt;}
.y24{bottom:909.928000pt;}
.y4b{bottom:912.000000pt;}
.yab{bottom:912.077600pt;}
.y1e9{bottom:914.320000pt;}
.y220{bottom:914.723680pt;}
.y1bc{bottom:916.241920pt;}
.ydb{bottom:917.765600pt;}
.y52{bottom:918.568960pt;}
.y34f{bottom:919.207040pt;}
.y145{bottom:920.716160pt;}
.y190{bottom:923.921280pt;}
.y2ba{bottom:925.759840pt;}
.y11a{bottom:927.283520pt;}
.y23{bottom:927.447040pt;}
.yaa{bottom:931.277760pt;}
.y21f{bottom:932.242720pt;}
.y1bb{bottom:933.760960pt;}
.yda{bottom:935.284640pt;}
.y51{bottom:936.163840pt;}
.y34e{bottom:936.726080pt;}
.y4a{bottom:937.840000pt;}
.y2e7{bottom:938.229760pt;}
.y291{bottom:941.520000pt;}
.y18f{bottom:943.121440pt;}
.y1e8{bottom:944.720000pt;}
.y119{bottom:944.802560pt;}
.y22{bottom:944.966080pt;}
.y144{bottom:946.236320pt;}
.y21e{bottom:949.761760pt;}
.y1ba{bottom:951.280000pt;}
.yd9{bottom:952.803680pt;}
.y50{bottom:953.682880pt;}
.y34d{bottom:954.245120pt;}
.y2e6{bottom:955.748800pt;}
.y7{bottom:957.280000pt;}
.ya9{bottom:958.479040pt;}
.y81{bottom:962.321600pt;}
.y21{bottom:962.485120pt;}
.y49{bottom:963.600000pt;}
.y143{bottom:965.360640pt;}
.yd8{bottom:970.322720pt;}
.y4f{bottom:971.201920pt;}
.y34c{bottom:971.840000pt;}
.y21d{bottom:975.281920pt;}
.ya8{bottom:975.998080pt;}
.y1b9{bottom:978.480000pt;}
.y80{bottom:979.840640pt;}
.y20{bottom:980.080000pt;}
.y2e5{bottom:981.268960pt;}
.y142{bottom:984.560800pt;}
.y290{bottom:985.920480pt;}
.yd7{bottom:987.841760pt;}
.y4e{bottom:988.720960pt;}
.y1e7{bottom:989.120960pt;}
.y48{bottom:989.360000pt;}
.y21c{bottom:992.800960pt;}
.ya7{bottom:993.517120pt;}
.y268{bottom:997.359680pt;}
.y2e4{bottom:1000.469120pt;}
.y141{bottom:1002.079840pt;}
.y28f{bottom:1003.679680pt;}
.y7f{bottom:1005.360800pt;}
.y4d{bottom:1006.240000pt;}
.y1e6{bottom:1006.640000pt;}
.yf{bottom:1008.401920pt;}
.y21b{bottom:1010.320000pt;}
.y34b{bottom:1011.840000pt;}
.y47{bottom:1014.960000pt;}
.ya6{bottom:1019.353280pt;}
.y2e3{bottom:1019.593440pt;}
.y1f{bottom:1019.840000pt;}
.y140{bottom:1021.280000pt;}
.y7e{bottom:1022.955680pt;}
.ye{bottom:1025.920960pt;}
.y6{bottom:1028.800000pt;}
.y4c{bottom:1034.800000pt;}
.y1e5{bottom:1035.120000pt;}
.y21a{bottom:1037.600000pt;}
.ya5{bottom:1038.793600pt;}
.y46{bottom:1040.474720pt;}
.yd{bottom:1043.440000pt;}
.y43{bottom:1066.000000pt;}
.y1d{bottom:1083.520000pt;}
.hf{height:14.240000pt;}
.h2{height:22.080000pt;}
.hc{height:32.840000pt;}
.h10{height:34.080000pt;}
.hb{height:35.644800pt;}
.h12{height:37.306240pt;}
.ha{height:37.920000pt;}
.he{height:39.030469pt;}
.h9{height:41.509760pt;}
.h3{height:48.000000pt;}
.h7{height:52.080000pt;}
.h8{height:52.080213pt;}
.h4{height:55.920000pt;}
.hd{height:78.816000pt;}
.h5{height:83.969600pt;}
.h6{height:88.080000pt;}
.h11{height:322.878667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:158.080000pt;}
.w4{width:158.081333pt;}
.w6{width:158.400000pt;}
.w3{width:158.480000pt;}
.w2{width:464.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x2{left:9.600000pt;}
.x1{left:116.880000pt;}
.x3{left:124.000000pt;}
.x5{left:136.640000pt;}
.x9{left:142.960000pt;}
.x8{left:147.965440pt;}
.x6{left:149.360000pt;}
.xc{left:172.019360pt;}
.xe{left:275.920000pt;}
.x10{left:282.800000pt;}
.xa{left:289.360000pt;}
.xb{left:429.520000pt;}
.x4{left:431.920000pt;}
.x7{left:434.240000pt;}
.x11{left:441.520000pt;}
.xf{left:593.440000pt;}
.x12{left:600.240000pt;}
}




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