
    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_96dd2e13f97cc262dcfe3475.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ee3b33804f7b27eae69d939f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2da08af52877f43bcaa3d352.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e8ee8c28e62d7eac1e908c25.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_d0e72270b2581e08ce3d31ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5bd105e1e170e42227c7bfa7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_474d390a4ec95b1efa3e7fab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.855957;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_1aa08136c692cb2313a68584.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_4d601921cd87c1a07480e57a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_52450db874c5954d5ad3cd1c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.926270;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_8232feb7e3d588b2312a7f63.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.892578;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_ad31eb90b245f68855444342.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919434;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_a1c44bf0438cfb3e1c6d127c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.746094;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_9f47dadb74c72be086b39951.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.857910;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:fff;src:url('chunks/assets/font_f7dcf7a62b96bfca108ae82a.woff2')format("woff");}.fff{font-family:fff;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);}
.v3{vertical-align:-20.880600px;}
.v6{vertical-align:-13.812480px;}
.v1{vertical-align:-9.360000px;}
.v4{vertical-align:-5.927040px;}
.v9{vertical-align:-2.185920px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.880000px;}
.v5{vertical-align:5.760000px;}
.v7{vertical-align:13.680000px;}
.v8{vertical-align:15.840000px;}
.vc{vertical-align:20.879400px;}
.va{vertical-align:23.604480px;}
.v2{vertical-align:27.360000px;}
.ls7e{letter-spacing:-1.589760px;}
.ls77{letter-spacing:-1.391040px;}
.ls7d{letter-spacing:-1.258560px;}
.ls6a{letter-spacing:-0.993600px;}
.ls0{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.927360px;}
.ls20{letter-spacing:-0.861120px;}
.ls1c{letter-spacing:-0.794880px;}
.ls1a{letter-spacing:-0.728640px;}
.ls52{letter-spacing:-0.675360px;}
.ls3d{letter-spacing:-0.662400px;}
.ls36{letter-spacing:-0.596160px;}
.ls51{letter-spacing:-0.530640px;}
.ls21{letter-spacing:-0.529920px;}
.ls12{letter-spacing:-0.480960px;}
.ls1f{letter-spacing:-0.463680px;}
.ls35{letter-spacing:-0.397440px;}
.ls8a{letter-spacing:-0.358560px;}
.ls17{letter-spacing:-0.336960px;}
.ls6b{letter-spacing:-0.334080px;}
.ls1d{letter-spacing:-0.331200px;}
.ls62{letter-spacing:-0.298800px;}
.ls56{letter-spacing:-0.292320px;}
.ls4{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.264960px;}
.ls15{letter-spacing:-0.240480px;}
.ls5f{letter-spacing:-0.239040px;}
.ls3e{letter-spacing:-0.198720px;}
.ls89{letter-spacing:-0.179280px;}
.ls91{letter-spacing:-0.167040px;}
.ls3{letter-spacing:-0.144000px;}
.ls34{letter-spacing:-0.132480px;}
.ls13{letter-spacing:-0.120240px;}
.ls76{letter-spacing:-0.119520px;}
.ls33{letter-spacing:-0.084240px;}
.ls84{letter-spacing:-0.077760px;}
.ls18{letter-spacing:-0.066240px;}
.ls61{letter-spacing:-0.059760px;}
.ls1{letter-spacing:0.000000px;}
.ls82{letter-spacing:0.013248px;}
.ls43{letter-spacing:0.019872px;}
.ls5d{letter-spacing:0.038880px;}
.ls50{letter-spacing:0.048240px;}
.ls7{letter-spacing:0.053280px;}
.ls63{letter-spacing:0.059760px;}
.ls1b{letter-spacing:0.066240px;}
.ls38{letter-spacing:0.069120px;}
.ls9a{letter-spacing:0.072000px;}
.ls6d{letter-spacing:0.072864px;}
.ls9b{letter-spacing:0.084240px;}
.ls9c{letter-spacing:0.092736px;}
.ls99{letter-spacing:0.116640px;}
.ls8b{letter-spacing:0.119520px;}
.ls14{letter-spacing:0.120240px;}
.ls10{letter-spacing:0.132480px;}
.ls66{letter-spacing:0.139104px;}
.ls5{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.144720px;}
.ls5b{letter-spacing:0.149760px;}
.ls53{letter-spacing:0.155520px;}
.ls79{letter-spacing:0.172224px;}
.ls86{letter-spacing:0.174240px;}
.ls78{letter-spacing:0.178848px;}
.lsb{letter-spacing:0.179280px;}
.ls9{letter-spacing:0.192960px;}
.ls30{letter-spacing:0.198720px;}
.ls54{letter-spacing:0.205344px;}
.ls2{letter-spacing:0.216000px;}
.ls80{letter-spacing:0.218592px;}
.lsc{letter-spacing:0.227088px;}
.ls57{letter-spacing:0.233280px;}
.ls8{letter-spacing:0.240480px;}
.ls16{letter-spacing:0.264960px;}
.ls60{letter-spacing:0.298800px;}
.ls4f{letter-spacing:0.331200px;}
.ls32{letter-spacing:0.336960px;}
.lsd{letter-spacing:0.358560px;}
.lsa{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.418320px;}
.ls5c{letter-spacing:0.447840px;}
.ls8d{letter-spacing:0.468000px;}
.ls90{letter-spacing:0.478080px;}
.ls4e{letter-spacing:0.529920px;}
.ls85{letter-spacing:0.537840px;}
.ls4a{letter-spacing:0.596160px;}
.ls87{letter-spacing:0.621360px;}
.ls6{letter-spacing:0.720000px;}
.ls74{letter-spacing:0.758880px;}
.ls2b{letter-spacing:0.861120px;}
.ls7c{letter-spacing:0.887616px;}
.ls5e{letter-spacing:0.896400px;}
.ls72{letter-spacing:0.907488px;}
.ls95{letter-spacing:0.926280px;}
.ls70{letter-spacing:0.927360px;}
.ls8e{letter-spacing:0.933984px;}
.ls88{letter-spacing:0.947232px;}
.ls2a{letter-spacing:1.000224px;}
.ls4c{letter-spacing:1.059840px;}
.ls22{letter-spacing:1.589760px;}
.ls6f{letter-spacing:1.636128px;}
.ls23{letter-spacing:1.662624px;}
.ls81{letter-spacing:1.742112px;}
.ls3a{letter-spacing:1.755360px;}
.ls47{letter-spacing:1.788480px;}
.ls46{letter-spacing:2.309040px;}
.ls26{letter-spacing:2.318400px;}
.ls8c{letter-spacing:2.330640px;}
.ls40{letter-spacing:2.338272px;}
.ls4b{letter-spacing:2.351520px;}
.ls42{letter-spacing:2.391264px;}
.ls4d{letter-spacing:3.029040px;}
.ls2f{letter-spacing:3.047040px;}
.ls98{letter-spacing:3.086784px;}
.ls7a{letter-spacing:3.709440px;}
.ls41{letter-spacing:3.755808px;}
.ls11{letter-spacing:3.775680px;}
.ls29{letter-spacing:4.438080px;}
.ls6e{letter-spacing:4.676544px;}
.ls24{letter-spacing:5.166720px;}
.ls93{letter-spacing:5.199840px;}
.ls25{letter-spacing:5.266080px;}
.ls44{letter-spacing:5.895360px;}
.ls69{letter-spacing:5.968224px;}
.ls59{letter-spacing:6.624000px;}
.ls68{letter-spacing:6.670368px;}
.ls3c{letter-spacing:7.352640px;}
.ls28{letter-spacing:8.081280px;}
.ls71{letter-spacing:8.107776px;}
.ls92{letter-spacing:8.723808px;}
.ls5a{letter-spacing:8.809920px;}
.ls6c{letter-spacing:9.498816px;}
.ls58{letter-spacing:9.538560px;}
.ls37{letter-spacing:10.200960px;}
.ls31{letter-spacing:10.929600px;}
.ls39{letter-spacing:10.995840px;}
.ls7b{letter-spacing:11.658240px;}
.ls97{letter-spacing:11.711232px;}
.ls83{letter-spacing:11.724480px;}
.ls55{letter-spacing:12.386880px;}
.lsf{letter-spacing:13.115520px;}
.ls48{letter-spacing:13.579200px;}
.lse{letter-spacing:13.844160px;}
.ls49{letter-spacing:14.572800px;}
.ls67{letter-spacing:15.301440px;}
.ls3f{letter-spacing:15.963840px;}
.ls3b{letter-spacing:17.421120px;}
.ls7f{letter-spacing:17.460864px;}
.ls94{letter-spacing:18.149760px;}
.ls27{letter-spacing:20.998080px;}
.ls2e{letter-spacing:21.726720px;}
.ls2d{letter-spacing:21.859200px;}
.ls65{letter-spacing:23.985504px;}
.ls8f{letter-spacing:24.641280px;}
.ls2c{letter-spacing:28.218240px;}
.ls64{letter-spacing:28.946880px;}
.ls73{letter-spacing:37.756800px;}
.ls96{letter-spacing:1026.158400px;}
.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;}
}
.ws8e{word-spacing:-66.240000px;}
.ws89{word-spacing:-66.041280px;}
.ws8c{word-spacing:-65.710080px;}
.ws8b{word-spacing:-48.288240px;}
.ws90{word-spacing:-48.024000px;}
.ws8d{word-spacing:-47.709360px;}
.ws91{word-spacing:-47.564640px;}
.wsa{word-spacing:-29.939760px;}
.ws8{word-spacing:-29.579040px;}
.ws43{word-spacing:-21.396960px;}
.ws113{word-spacing:-21.144240px;}
.ws44{word-spacing:-20.975760px;}
.wsd{word-spacing:-20.723040px;}
.ws9{word-spacing:-19.440000px;}
.ws5{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws9e{word-spacing:-17.262720px;}
.ws111{word-spacing:-16.632000px;}
.ws110{word-spacing:-16.344000px;}
.wsfb{word-spacing:-15.552000px;}
.wsc2{word-spacing:-15.301440px;}
.wsc{word-spacing:-15.298560px;}
.ws72{word-spacing:-15.235200px;}
.wsbf{word-spacing:-15.109344px;}
.ws12{word-spacing:-15.102720px;}
.ws45{word-spacing:-15.036480px;}
.wse{word-spacing:-14.970240px;}
.ws10{word-spacing:-14.904000px;}
.ws87{word-spacing:-14.837760px;}
.ws88{word-spacing:-14.771520px;}
.wsf{word-spacing:-14.705280px;}
.ws13{word-spacing:-14.639040px;}
.ws8f{word-spacing:-14.592672px;}
.ws47{word-spacing:-14.572800px;}
.ws9f{word-spacing:-14.506560px;}
.ws86{word-spacing:-14.440320px;}
.wsbe{word-spacing:-14.374080px;}
.ws6f{word-spacing:-14.307840px;}
.ws11{word-spacing:-14.241600px;}
.ws46{word-spacing:-14.175360px;}
.wsed{word-spacing:-14.043600px;}
.ws71{word-spacing:-14.042880px;}
.wsfc{word-spacing:-13.983840px;}
.wsc0{word-spacing:-13.976640px;}
.wsf1{word-spacing:-13.804560px;}
.wsec{word-spacing:-13.685040px;}
.wsfd{word-spacing:-13.625280px;}
.wsf2{word-spacing:-13.565520px;}
.wsa8{word-spacing:-13.505760px;}
.wsb1{word-spacing:-13.446000px;}
.wsfa{word-spacing:-13.386240px;}
.wsb2{word-spacing:-13.266720px;}
.ws8a{word-spacing:-10.612800px;}
.wsb{word-spacing:-9.720000px;}
.ws70{word-spacing:-9.437760px;}
.wsfe{word-spacing:-9.270720px;}
.ws9d{word-spacing:-9.145440px;}
.wsc1{word-spacing:-9.103680px;}
.ws10f{word-spacing:-8.903520px;}
.wsb0{word-spacing:-8.786880px;}
.wseb{word-spacing:-8.709120px;}
.ws77{word-spacing:-4.106880px;}
.wsd4{word-spacing:-3.908160px;}
.ws76{word-spacing:-3.576960px;}
.ws2d{word-spacing:-3.378240px;}
.ws6b{word-spacing:-3.179520px;}
.wsa0{word-spacing:-2.848320px;}
.ws5a{word-spacing:-2.782080px;}
.ws57{word-spacing:-2.649600px;}
.wscf{word-spacing:-2.517120px;}
.ws58{word-spacing:-2.450880px;}
.ws7c{word-spacing:-2.119680px;}
.ws2a{word-spacing:-1.920960px;}
.ws29{word-spacing:-1.722240px;}
.wsca{word-spacing:-1.523520px;}
.ws25{word-spacing:-1.391040px;}
.ws33{word-spacing:-1.192320px;}
.ws9a{word-spacing:-1.126080px;}
.ws32{word-spacing:-0.993600px;}
.ws102{word-spacing:-0.861120px;}
.ws9b{word-spacing:-0.794880px;}
.ws3b{word-spacing:-0.728640px;}
.ws1a{word-spacing:-0.720000px;}
.ws117{word-spacing:-0.662400px;}
.wsf0{word-spacing:-0.596160px;}
.ws1e{word-spacing:-0.529920px;}
.wsd1{word-spacing:-0.505440px;}
.wsd9{word-spacing:-0.463680px;}
.wscb{word-spacing:-0.397440px;}
.ws15{word-spacing:-0.360720px;}
.wsad{word-spacing:-0.358560px;}
.ws116{word-spacing:-0.336960px;}
.wsa1{word-spacing:-0.331200px;}
.ws112{word-spacing:-0.298800px;}
.ws1d{word-spacing:-0.264960px;}
.ws92{word-spacing:-0.198720px;}
.ws1c{word-spacing:-0.179280px;}
.wsd2{word-spacing:-0.155520px;}
.ws19{word-spacing:-0.144000px;}
.ws40{word-spacing:-0.132480px;}
.wsba{word-spacing:-0.119520px;}
.ws10e{word-spacing:-0.083520px;}
.wsa3{word-spacing:-0.077760px;}
.ws59{word-spacing:-0.066240px;}
.wsff{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
.wsdc{word-spacing:0.059760px;}
.ws26{word-spacing:0.066240px;}
.wsbd{word-spacing:0.119520px;}
.ws16{word-spacing:0.120240px;}
.ws4f{word-spacing:0.132480px;}
.ws3c{word-spacing:0.198720px;}
.wsbb{word-spacing:0.239040px;}
.ws34{word-spacing:0.264960px;}
.wsef{word-spacing:0.288000px;}
.wsbc{word-spacing:0.298800px;}
.ws39{word-spacing:0.331200px;}
.wsf4{word-spacing:0.358560px;}
.ws18{word-spacing:0.360720px;}
.ws42{word-spacing:0.397440px;}
.wsb9{word-spacing:0.418320px;}
.ws3a{word-spacing:0.463680px;}
.ws17{word-spacing:0.480960px;}
.ws41{word-spacing:0.529920px;}
.wsf7{word-spacing:0.537840px;}
.ws65{word-spacing:0.596160px;}
.wsee{word-spacing:0.597600px;}
.wsc3{word-spacing:0.622080px;}
.ws80{word-spacing:0.662400px;}
.ws1b{word-spacing:0.720000px;}
.ws2f{word-spacing:0.728640px;}
.ws14{word-spacing:0.794880px;}
.ws85{word-spacing:0.861120px;}
.ws2e{word-spacing:0.927360px;}
.ws6{word-spacing:0.936000px;}
.ws79{word-spacing:1.059840px;}
.ws38{word-spacing:1.126080px;}
.wsf3{word-spacing:1.135440px;}
.ws98{word-spacing:1.258560px;}
.ws7a{word-spacing:1.391040px;}
.ws67{word-spacing:1.457280px;}
.wsf9{word-spacing:1.523520px;}
.ws48{word-spacing:1.656000px;}
.wse4{word-spacing:1.722240px;}
.wse0{word-spacing:1.788480px;}
.ws23{word-spacing:1.854720px;}
.ws101{word-spacing:2.031840px;}
.wsda{word-spacing:2.053440px;}
.ws50{word-spacing:2.185920px;}
.ws61{word-spacing:2.384640px;}
.ws100{word-spacing:2.390400px;}
.wsb3{word-spacing:2.517120px;}
.ws51{word-spacing:2.583360px;}
.wsa4{word-spacing:2.782080px;}
.ws10a{word-spacing:2.848320px;}
.wscd{word-spacing:2.914560px;}
.ws21{word-spacing:3.113280px;}
.wsa9{word-spacing:3.179520px;}
.ws10d{word-spacing:3.245760px;}
.ws20{word-spacing:3.312000px;}
.ws10c{word-spacing:3.510720px;}
.ws1f{word-spacing:3.643200px;}
.ws36{word-spacing:3.709440px;}
.ws22{word-spacing:3.841920px;}
.wse8{word-spacing:3.908160px;}
.ws7b{word-spacing:3.974400px;}
.ws35{word-spacing:4.040640px;}
.wsb5{word-spacing:4.173120px;}
.wse9{word-spacing:4.239360px;}
.wsd6{word-spacing:4.305600px;}
.ws55{word-spacing:4.504320px;}
.ws37{word-spacing:4.570560px;}
.ws4e{word-spacing:4.703040px;}
.wsd8{word-spacing:4.901760px;}
.ws4c{word-spacing:5.034240px;}
.ws4a{word-spacing:5.232960px;}
.wsf5{word-spacing:5.299200px;}
.ws49{word-spacing:5.431680px;}
.wsd3{word-spacing:5.564160px;}
.wsb7{word-spacing:5.762880px;}
.ws4d{word-spacing:5.961600px;}
.ws4b{word-spacing:6.094080px;}
.ws9c{word-spacing:6.160320px;}
.wsc6{word-spacing:6.292800px;}
.wsce{word-spacing:6.425280px;}
.ws7f{word-spacing:6.491520px;}
.ws7d{word-spacing:6.690240px;}
.ws99{word-spacing:6.888960px;}
.wsde{word-spacing:7.087680px;}
.wsa2{word-spacing:7.220160px;}
.ws114{word-spacing:7.352640px;}
.ws7e{word-spacing:7.418880px;}
.wsa5{word-spacing:7.551360px;}
.ws83{word-spacing:7.617600px;}
.wsdd{word-spacing:7.816320px;}
.ws31{word-spacing:7.948800px;}
.ws6e{word-spacing:8.147520px;}
.ws56{word-spacing:8.346240px;}
.ws68{word-spacing:8.544960px;}
.wse2{word-spacing:8.677440px;}
.ws103{word-spacing:8.743680px;}
.ws54{word-spacing:8.876160px;}
.ws30{word-spacing:9.074880px;}
.wsdf{word-spacing:9.339840px;}
.wsac{word-spacing:9.406080px;}
.ws75{word-spacing:9.604800px;}
.wsab{word-spacing:9.803520px;}
.wsdb{word-spacing:9.869760px;}
.wsb8{word-spacing:10.068480px;}
.ws73{word-spacing:10.267200px;}
.wsf8{word-spacing:10.333440px;}
.wse3{word-spacing:10.399680px;}
.ws74{word-spacing:10.465920px;}
.ws78{word-spacing:10.797120px;}
.wsf6{word-spacing:10.863360px;}
.ws6d{word-spacing:10.995840px;}
.wse1{word-spacing:11.128320px;}
.ws6c{word-spacing:11.194560px;}
.ws94{word-spacing:11.525760px;}
.ws66{word-spacing:11.658240px;}
.ws24{word-spacing:11.724480px;}
.ws95{word-spacing:11.856960px;}
.wsb6{word-spacing:11.923200px;}
.ws64{word-spacing:12.254400px;}
.wse6{word-spacing:12.320640px;}
.ws5f{word-spacing:12.453120px;}
.wsaa{word-spacing:12.651840px;}
.wsd0{word-spacing:12.983040px;}
.ws69{word-spacing:13.181760px;}
.ws60{word-spacing:13.380480px;}
.wsea{word-spacing:13.711680px;}
.ws28{word-spacing:13.910400px;}
.ws27{word-spacing:14.109120px;}
.ws2b{word-spacing:14.440320px;}
.ws2c{word-spacing:14.639040px;}
.wscc{word-spacing:15.367680px;}
.wsae{word-spacing:15.566400px;}
.wsd5{word-spacing:15.831360px;}
.ws96{word-spacing:16.030080px;}
.wsa6{word-spacing:16.096320px;}
.ws97{word-spacing:16.228800px;}
.wsa7{word-spacing:16.493760px;}
.wse5{word-spacing:16.560000px;}
.ws93{word-spacing:16.758720px;}
.ws84{word-spacing:17.288640px;}
.ws82{word-spacing:17.487360px;}
.ws81{word-spacing:17.686080px;}
.ws109{word-spacing:18.017280px;}
.ws10b{word-spacing:18.216000px;}
.wse7{word-spacing:18.414720px;}
.wsb4{word-spacing:18.944640px;}
.wsd7{word-spacing:19.143360px;}
.wsaf{word-spacing:19.673280px;}
.ws53{word-spacing:20.865600px;}
.ws52{word-spacing:21.064320px;}
.ws6a{word-spacing:21.263040px;}
.ws62{word-spacing:21.594240px;}
.ws63{word-spacing:21.792960px;}
.ws104{word-spacing:21.991680px;}
.ws115{word-spacing:22.587840px;}
.wsc9{word-spacing:23.250240px;}
.wsc7{word-spacing:23.780160px;}
.wsc8{word-spacing:23.978880px;}
.ws106{word-spacing:24.508800px;}
.ws108{word-spacing:24.773760px;}
.ws107{word-spacing:24.840000px;}
.ws105{word-spacing:24.906240px;}
.ws5c{word-spacing:28.085760px;}
.ws5e{word-spacing:28.152000px;}
.ws5d{word-spacing:28.284480px;}
.ws5b{word-spacing:28.483200px;}
.wsc4{word-spacing:28.814400px;}
.wsc5{word-spacing:29.211840px;}
.ws3e{word-spacing:33.848640px;}
.ws3f{word-spacing:34.047360px;}
.ws3d{word-spacing:34.776000px;}
._88{margin-left:-3637.074240px;}
._1d{margin-left:-3043.264320px;}
._55{margin-left:-2755.981440px;}
._9f{margin-left:-2748.032640px;}
._62{margin-left:-2744.910720px;}
._63{margin-left:-2739.724704px;}
._3f{margin-left:-2737.356480px;}
._57{margin-left:-2735.907840px;}
._37{margin-left:-2734.632000px;}
._3c{margin-left:-2732.849280px;}
._41{margin-left:-2731.446720px;}
._52{margin-left:-2730.378240px;}
._38{margin-left:-2729.188800px;}
._40{margin-left:-2726.933760px;}
._31{margin-left:-2725.162560px;}
._33{margin-left:-2723.722560px;}
._44{margin-left:-2722.420800px;}
._34{margin-left:-2720.759040px;}
._43{margin-left:-2719.465632px;}
._35{margin-left:-2717.680320px;}
._3a{margin-left:-2716.608960px;}
._1b{margin-left:-2715.497280px;}
._59{margin-left:-2714.469120px;}
._3d{margin-left:-2712.941280px;}
._70{margin-left:-2711.130480px;}
._cc{margin-left:-2707.272000px;}
._25{margin-left:-2704.288320px;}
._29{margin-left:-2702.629440px;}
._ad{margin-left:-2701.203840px;}
._13{margin-left:-2697.094080px;}
._11{margin-left:-2694.617280px;}
._28{margin-left:-2693.139840px;}
._20{margin-left:-2691.256320px;}
._21{margin-left:-2687.690880px;}
._e{margin-left:-2686.207680px;}
._30{margin-left:-2685.193920px;}
._f{margin-left:-2683.900800px;}
._d{margin-left:-2681.867520px;}
._1f{margin-left:-2680.799040px;}
._15{margin-left:-2679.117120px;}
._a4{margin-left:-2676.805920px;}
._7e{margin-left:-2672.996400px;}
._96{margin-left:-2671.061760px;}
._b5{margin-left:-2669.978880px;}
._2e{margin-left:-2668.305600px;}
._c9{margin-left:-2666.056320px;}
._c7{margin-left:-2664.201600px;}
._d0{margin-left:-2663.127360px;}
._d4{margin-left:-2662.009920px;}
._67{margin-left:-2658.995280px;}
._cb{margin-left:-2654.881920px;}
._e2{margin-left:-2653.701120px;}
._af{margin-left:-2649.862080px;}
._5e{margin-left:-2648.666160px;}
._71{margin-left:-2646.583920px;}
._8a{margin-left:-2644.880400px;}
._72{margin-left:-2639.966400px;}
._b1{margin-left:-2634.840000px;}
._ba{margin-left:-2630.790720px;}
._7{margin-left:-2628.790560px;}
._db{margin-left:-2625.914880px;}
._7f{margin-left:-2621.214000px;}
._b6{margin-left:-2618.112960px;}
._ce{margin-left:-2615.728320px;}
._4{margin-left:-2612.253600px;}
._b9{margin-left:-2610.933120px;}
._c6{margin-left:-2607.661440px;}
._76{margin-left:-2599.058880px;}
._be{margin-left:-2595.824640px;}
._c1{margin-left:-2589.125760px;}
._e5{margin-left:-2586.044160px;}
._d8{margin-left:-2584.929600px;}
._89{margin-left:-2578.309920px;}
._d6{margin-left:-2575.183680px;}
._9{margin-left:-2570.791968px;}
._b8{margin-left:-2568.625920px;}
._e0{margin-left:-2565.789120px;}
._a3{margin-left:-2563.632000px;}
._5{margin-left:-2560.980240px;}
._c3{margin-left:-2558.260800px;}
._ae{margin-left:-2553.289920px;}
._a5{margin-left:-2540.392560px;}
._ea{margin-left:-2529.463680px;}
._3{margin-left:-2521.032480px;}
._8f{margin-left:-2514.198240px;}
._a8{margin-left:-2505.876480px;}
._de{margin-left:-2502.982080px;}
._bc{margin-left:-2495.468160px;}
._85{margin-left:-2490.701760px;}
._e3{margin-left:-2480.195520px;}
._b2{margin-left:-2472.442560px;}
._d3{margin-left:-2468.629440px;}
._cf{margin-left:-2443.919040px;}
._eb{margin-left:-2401.188480px;}
._d2{margin-left:-2399.601600px;}
._6a{margin-left:-2398.440960px;}
._4e{margin-left:-2395.970784px;}
._6{margin-left:-2389.276800px;}
._c0{margin-left:-2387.096640px;}
._dc{margin-left:-2378.093760px;}
._90{margin-left:-2371.392000px;}
._7a{margin-left:-2367.008640px;}
._8{margin-left:-2362.368240px;}
._9d{margin-left:-2357.784000px;}
._e6{margin-left:-2337.485760px;}
._dd{margin-left:-2311.824960px;}
._5f{margin-left:-2302.927200px;}
._bf{margin-left:-2285.979840px;}
._da{margin-left:-2281.314240px;}
._d5{margin-left:-2270.347200px;}
._ca{margin-left:-2181.340800px;}
._56{margin-left:-2180.041920px;}
._7d{margin-left:-2167.770240px;}
._df{margin-left:-2162.727360px;}
._39{margin-left:-2157.050880px;}
._80{margin-left:-2138.200560px;}
._77{margin-left:-2127.619440px;}
._b{margin-left:-2126.481120px;}
._64{margin-left:-2100.859200px;}
._a6{margin-left:-2077.375680px;}
._99{margin-left:-2038.294080px;}
._e9{margin-left:-2021.544000px;}
._c2{margin-left:-2000.839680px;}
._5b{margin-left:-1991.102400px;}
._e7{margin-left:-1984.098240px;}
._8c{margin-left:-1980.734400px;}
._65{margin-left:-1971.884160px;}
._61{margin-left:-1970.407440px;}
._bd{margin-left:-1966.440960px;}
._82{margin-left:-1930.440960px;}
._9a{margin-left:-1926.457200px;}
._c4{margin-left:-1923.914880px;}
._53{margin-left:-1829.917440px;}
._b7{margin-left:-1816.819200px;}
._45{margin-left:-1784.219040px;}
._d1{margin-left:-1775.548800px;}
._ec{margin-left:-1772.470080px;}
._2a{margin-left:-1764.538560px;}
._a7{margin-left:-1677.064320px;}
._49{margin-left:-1675.679040px;}
._8b{margin-left:-1654.390800px;}
._98{margin-left:-1632.821760px;}
._73{margin-left:-1629.345600px;}
._9e{margin-left:-1598.955840px;}
._8d{margin-left:-1597.104000px;}
._a0{margin-left:-1595.568960px;}
._6e{margin-left:-1570.219200px;}
._60{margin-left:-1550.743920px;}
._18{margin-left:-1531.506240px;}
._d7{margin-left:-1517.535360px;}
._e4{margin-left:-1501.035840px;}
._aa{margin-left:-1489.481280px;}
._6d{margin-left:-1447.994880px;}
._a{margin-left:-1402.380000px;}
._c8{margin-left:-1377.541440px;}
._97{margin-left:-1362.721680px;}
._46{margin-left:-1334.776320px;}
._c5{margin-left:-1318.826880px;}
._2d{margin-left:-1309.599360px;}
._2f{margin-left:-1282.668480px;}
._4c{margin-left:-1281.366720px;}
._d9{margin-left:-1253.030400px;}
._93{margin-left:-1196.596800px;}
._b0{margin-left:-1182.487680px;}
._51{margin-left:-1171.316160px;}
._b4{margin-left:-1164.539520px;}
._68{margin-left:-1117.630080px;}
._79{margin-left:-1103.316480px;}
._8e{margin-left:-1060.801920px;}
._58{margin-left:-1017.489600px;}
._32{margin-left:-997.680960px;}
._54{margin-left:-994.394880px;}
._42{margin-left:-965.839680px;}
._e8{margin-left:-948.680640px;}
._ab{margin-left:-926.740080px;}
._4d{margin-left:-918.653760px;}
._78{margin-left:-842.077440px;}
._4a{margin-left:-805.149360px;}
._bb{margin-left:-753.076800px;}
._a9{margin-left:-749.530080px;}
._1e{margin-left:-739.390320px;}
._92{margin-left:-726.209280px;}
._ac{margin-left:-723.776400px;}
._e1{margin-left:-685.379520px;}
._b3{margin-left:-618.721920px;}
._cd{margin-left:-551.534400px;}
._4f{margin-left:-541.483200px;}
._26{margin-left:-520.488000px;}
._c{margin-left:-512.541360px;}
._6b{margin-left:-465.503040px;}
._94{margin-left:-436.190400px;}
._5a{margin-left:-376.441920px;}
._9c{margin-left:-357.531840px;}
._4b{margin-left:-332.458560px;}
._ed{margin-left:-239.457600px;}
._50{margin-left:-237.960000px;}
._19{margin-left:-233.098560px;}
._91{margin-left:-227.093760px;}
._69{margin-left:-225.792000px;}
._48{margin-left:-224.487360px;}
._47{margin-left:-5.481216px;}
._14{margin-left:-3.709440px;}
._16{margin-left:-2.298240px;}
._2{margin-left:-1.224000px;}
._1{width:1.080000px;}
._0{width:2.304000px;}
._3b{width:3.375360px;}
._17{width:4.636800px;}
._22{width:6.096960px;}
._6c{width:7.266240px;}
._2c{width:8.271360px;}
._2b{width:9.936000px;}
._10{width:11.154240px;}
._27{width:12.620160px;}
._12{width:13.815360px;}
._36{width:17.625600px;}
._3e{width:20.664000px;}
._24{width:21.859200px;}
._9b{width:24.736320px;}
._23{width:28.209600px;}
._1a{width:34.721280px;}
._5d{width:694.195200px;}
._5c{width:781.300800px;}
._84{width:792.959040px;}
._83{width:799.980480px;}
._87{width:802.232640px;}
._86{width:809.320320px;}
._1c{width:848.551680px;}
._75{width:907.355520px;}
._a2{width:988.729920px;}
._a1{width:1034.251200px;}
._95{width:1105.346880px;}
._66{width:1162.180800px;}
._7b{width:1216.961280px;}
._6f{width:1224.181440px;}
._81{width:1232.792640px;}
._7c{width:1235.640960px;}
._74{width:1285.983360px;}
.fc7{color:transparent;}
.fc5{color:rgb(36,63,96);}
.fc4{color:rgb(54,95,145);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y210{bottom:-19.260000px;}
.y212{bottom:-19.080000px;}
.y0{bottom:0.000000px;}
.yf2{bottom:3.960000px;}
.y195{bottom:4.140000px;}
.y1b0{bottom:22.140000px;}
.yf1{bottom:22.320000px;}
.y57{bottom:114.496560px;}
.y190{bottom:118.975680px;}
.y14d{bottom:119.702880px;}
.y1dd{bottom:120.247920px;}
.y116{bottom:123.125040px;}
.y20e{bottom:127.115280px;}
.y1f4{bottom:129.780000px;}
.y82{bottom:129.807360px;}
.y1f5{bottom:131.220000px;}
.yda{bottom:132.708960px;}
.y22b{bottom:133.258320px;}
.y56{bottom:137.713680px;}
.y18f{bottom:140.040000px;}
.yf7{bottom:140.760000px;}
.y14c{bottom:142.919280px;}
.y1bd{bottom:143.114400px;}
.y1dc{bottom:143.465040px;}
.yc8{bottom:143.832240px;}
.ya6{bottom:144.753120px;}
.y115{bottom:146.342160px;}
.y25d{bottom:148.834080px;}
.y20d{bottom:150.150240px;}
.y1f3{bottom:151.369920px;}
.y161{bottom:151.668570px;}
.y81{bottom:152.842320px;}
.yd9{bottom:155.743920px;}
.yf6{bottom:155.880000px;}
.y22a{bottom:156.475440px;}
.y55{bottom:160.748640px;}
.y24a{bottom:163.771200px;}
.y1bc{bottom:166.331520px;}
.y1db{bottom:166.519440px;}
.y114{bottom:166.860000px;}
.y1f2{bottom:167.035680px;}
.yc7{bottom:167.049360px;}
.y25c{bottom:172.051200px;}
.y20c{bottom:173.367360px;}
.yf5{bottom:174.240000px;}
.y160{bottom:174.885690px;}
.y80{bottom:176.059440px;}
.y14b{bottom:177.480000px;}
.yd8{bottom:178.961040px;}
.y18e{bottom:179.820720px;}
.ya5{bottom:182.907360px;}
.y54{bottom:183.965760px;}
.y179{bottom:185.856480px;}
.y249{bottom:186.988320px;}
.y1bb{bottom:189.366480px;}
.y1da{bottom:189.736560px;}
.yc6{bottom:190.266480px;}
.y113{bottom:191.700000px;}
.yf4{bottom:192.420000px;}
.y229{bottom:194.629680px;}
.y14a{bottom:195.840000px;}
.y20b{bottom:196.584480px;}
.y15f{bottom:197.920650px;}
.y7f{bottom:199.276560px;}
.yd7{bottom:202.178160px;}
.y18d{bottom:203.220000px;}
.ya4{bottom:206.124480px;}
.y53{bottom:207.182880px;}
.y25b{bottom:210.205440px;}
.yf3{bottom:210.780000px;}
.y1ba{bottom:212.583600px;}
.y1d9{bottom:212.953680px;}
.y149{bottom:214.200000px;}
.y228{bottom:217.846800px;}
.y112{bottom:218.160000px;}
.y2c{bottom:218.961360px;}
.y20a{bottom:219.801600px;}
.y15e{bottom:221.137770px;}
.y7e{bottom:222.311520px;}
.y248{bottom:225.142560px;}
.yd6{bottom:225.213120px;}
.yc5{bottom:228.420720px;}
.ya3{bottom:229.159440px;}
.y18c{bottom:229.680000px;}
.yf0{bottom:229.860000px;}
.y52{bottom:230.400000px;}
.y25a{bottom:233.240400px;}
.y1b9{bottom:235.800720px;}
.y1d8{bottom:236.170800px;}
.y227{bottom:240.881760px;}
.y2b{bottom:242.178480px;}
.y209{bottom:242.836560px;}
.yef{bottom:243.000000px;}
.y15d{bottom:244.354890px;}
.y7d{bottom:245.528640px;}
.y148{bottom:246.651120px;}
.y247{bottom:248.359680px;}
.yd5{bottom:248.430240px;}
.yc4{bottom:251.820000px;}
.ya2{bottom:252.376560px;}
.y259{bottom:256.457520px;}
.y1b8{bottom:259.017840px;}
.y1d7{bottom:259.205760px;}
.y111{bottom:261.000000px;}
.y226{bottom:264.098880px;}
.y208{bottom:266.053680px;}
.y15c{bottom:267.389850px;}
.y51{bottom:268.687440px;}
.y7c{bottom:268.745760px;}
.y18b{bottom:269.279280px;}
.y246{bottom:271.576800px;}
.yd4{bottom:271.647360px;}
.ya1{bottom:275.593680px;}
.y136{bottom:275.683680px;}
.yc3{bottom:277.560000px;}
.y1b7{bottom:279.900000px;}
.y2a{bottom:280.332720px;}
.y1d6{bottom:282.422880px;}
.y110{bottom:284.580000px;}
.yee{bottom:286.200000px;}
.y207{bottom:289.270800px;}
.y15b{bottom:290.606970px;}
.y50{bottom:291.722400px;}
.y245{bottom:294.611760px;}
.ya0{bottom:298.628640px;}
.y1b6{bottom:299.160000px;}
.y225{bottom:302.253120px;}
.y10f{bottom:303.120000px;}
.y18a{bottom:303.840000px;}
.y1d5{bottom:305.645040px;}
.y17f{bottom:306.547920px;}
.y7b{bottom:306.900000px;}
.y7a{bottom:306.905040px;}
.yd3{bottom:309.801600px;}
.y206{bottom:312.305760px;}
.y15a{bottom:313.824090px;}
.y135{bottom:313.837920px;}
.yc2{bottom:314.285760px;}
.y4f{bottom:314.939520px;}
.y1b5{bottom:317.520000px;}
.y258{bottom:317.828880px;}
.y29{bottom:318.486960px;}
.y10e{bottom:321.660000px;}
.y9f{bottom:321.845760px;}
.yed{bottom:322.200000px;}
.y224{bottom:325.470240px;}
.y1d4{bottom:328.685760px;}
.y79{bottom:329.942880px;}
.y244{bottom:332.766000px;}
.yd2{bottom:332.836560px;}
.y205{bottom:335.522880px;}
.y1b4{bottom:335.700000px;}
.y159{bottom:336.859050px;}
.y134{bottom:336.872880px;}
.yc1{bottom:337.502880px;}
.y4e{bottom:338.156640px;}
.y189{bottom:340.560000px;}
.y257{bottom:341.046000px;}
.yec{bottom:343.260000px;}
.y223{bottom:348.505200px;}
.y1d3{bottom:351.902880px;}
.y78{bottom:353.176560px;}
.y1b3{bottom:354.060000px;}
.y10d{bottom:354.780000px;}
.y243{bottom:355.983120px;}
.yd1{bottom:356.053680px;}
.y28{bottom:356.641200px;}
.y204{bottom:358.740000px;}
.y188{bottom:358.920000px;}
.y9e{bottom:360.002880px;}
.y158{bottom:360.076170px;}
.y133{bottom:360.090000px;}
.yc0{bottom:360.759600px;}
.y4d{bottom:361.191600px;}
.y1b2{bottom:372.420000px;}
.y1d2{bottom:375.130080px;}
.yeb{bottom:375.755760px;}
.y77{bottom:376.393680px;}
.y242{bottom:379.200240px;}
.yd0{bottom:379.270800px;}
.y27{bottom:379.858320px;}
.y9d{bottom:383.293290px;}
.y132{bottom:383.307120px;}
.ybf{bottom:383.794560px;}
.y4c{bottom:384.408720px;}
.y222{bottom:386.659440px;}
.y10c{bottom:387.204480px;}
.y187{bottom:391.140000px;}
.y1af{bottom:391.500000px;}
.y1d1{bottom:398.165040px;}
.y1f1{bottom:399.422160px;}
.y76{bottom:399.610800px;}
.y203{bottom:400.140000px;}
.y1b1{bottom:400.680000px;}
.y256{bottom:402.235200px;}
.ycf{bottom:402.305760px;}
.y26{bottom:402.893280px;}
.y196{bottom:403.020000px;}
.y194{bottom:403.920000px;}
.y1ae{bottom:404.640000px;}
.y197{bottom:404.820000px;}
.y9c{bottom:406.510410px;}
.y131{bottom:406.524240px;}
.y4b{bottom:407.625840px;}
.y221{bottom:409.876560px;}
.y241{bottom:417.354480px;}
.y1f0{bottom:419.940000px;}
.y1d0{bottom:421.382160px;}
.ybe{bottom:421.948800px;}
.y75{bottom:422.645760px;}
.y255{bottom:425.452320px;}
.yce{bottom:425.522880px;}
.y25{bottom:426.110400px;}
.y202{bottom:427.139280px;}
.y9b{bottom:429.545370px;}
.y130{bottom:429.559200px;}
.y4a{bottom:430.660800px;}
.y220{bottom:433.093680px;}
.y240{bottom:440.389440px;}
.y1cf{bottom:441.900000px;}
.y1ef{bottom:444.669840px;}
.y178{bottom:444.689280px;}
.ybd{bottom:445.165920px;}
.y74{bottom:445.862880px;}
.y1ad{bottom:447.660000px;}
.ycd{bottom:448.739280px;}
.y24{bottom:449.327520px;}
.y9a{bottom:452.762490px;}
.y12f{bottom:452.776320px;}
.y49{bottom:453.877920px;}
.y21f{bottom:456.310800px;}
.y1ce{bottom:459.720000px;}
.y201{bottom:461.700000px;}
.y23f{bottom:463.606560px;}
.y1ee{bottom:467.704800px;}
.y177{bottom:467.724240px;}
.ybc{bottom:468.383040px;}
.y73{bottom:469.085040px;}
.y23{bottom:472.544640px;}
.y99{bottom:475.979610px;}
.y12e{bottom:475.993440px;}
.y48{bottom:477.095040px;}
.y1cd{bottom:478.080000px;}
.y21e{bottom:479.345760px;}
.y200{bottom:480.060000px;}
.ycc{bottom:483.300000px;}
.y1ac{bottom:484.584480px;}
.y23e{bottom:486.823680px;}
.y1ed{bottom:490.921920px;}
.y176{bottom:490.941360px;}
.ybb{bottom:491.418000px;}
.y72{bottom:492.136560px;}
.y1ff{bottom:494.272800px;}
.y22{bottom:495.579600px;}
.y1cc{bottom:496.440000px;}
.y98{bottom:499.014570px;}
.y12d{bottom:499.028400px;}
.y47{bottom:500.130000px;}
.y147{bottom:503.331120px;}
.y1ab{bottom:507.801600px;}
.y254{bottom:509.858640px;}
.y1ec{bottom:514.139040px;}
.y175{bottom:514.158480px;}
.y1cb{bottom:514.620000px;}
.y71{bottom:515.353680px;}
.ycb{bottom:515.571840px;}
.y21d{bottom:517.510800px;}
.y21{bottom:518.796720px;}
.y97{bottom:522.231690px;}
.y12c{bottom:522.245520px;}
.y46{bottom:523.347120px;}
.y23d{bottom:524.977920px;}
.yba{bottom:529.572240px;}
.y1aa{bottom:531.018720px;}
.y1ca{bottom:532.980000px;}
.y253{bottom:533.075760px;}
.y1eb{bottom:537.174000px;}
.y174{bottom:537.193440px;}
.y21c{bottom:540.727920px;}
.y146{bottom:541.485360px;}
.y20{bottom:542.013840px;}
.y96{bottom:545.448810px;}
.y12b{bottom:545.462640px;}
.y211{bottom:545.940000px;}
.y45{bottom:546.564240px;}
.y23c{bottom:548.012880px;}
.y1c9{bottom:551.340000px;}
.yb9{bottom:552.789360px;}
.y70{bottom:553.507920px;}
.y1a9{bottom:554.053680px;}
.y1ea{bottom:560.391120px;}
.y173{bottom:560.410560px;}
.y17e{bottom:563.940000px;}
.y21b{bottom:563.945040px;}
.y145{bottom:564.520320px;}
.y1f{bottom:565.048800px;}
.y95{bottom:568.483770px;}
.y12a{bottom:568.497600px;}
.y1c8{bottom:569.700000px;}
.y23b{bottom:571.230000px;}
.yb8{bottom:576.006480px;}
.y6f{bottom:576.725040px;}
.y1a8{bottom:577.270800px;}
.y17d{bottom:582.300000px;}
.y157{bottom:583.603050px;}
.y1e9{bottom:583.608240px;}
.y172{bottom:583.627680px;}
.y44{bottom:584.718480px;}
.y21a{bottom:586.980000px;}
.y144{bottom:587.737440px;}
.y1c7{bottom:587.880000px;}
.y1e{bottom:588.265920px;}
.y186{bottom:589.304880px;}
.y94{bottom:591.700890px;}
.y129{bottom:591.714720px;}
.yea{bottom:591.747840px;}
.y252{bottom:594.447120px;}
.y6e{bottom:599.762880px;}
.y1a7{bottom:600.487920px;}
.y17c{bottom:600.660000px;}
.y156{bottom:606.638010px;}
.y1e8{bottom:606.643200px;}
.y171{bottom:606.662640px;}
.y1c6{bottom:606.960000px;}
.y43{bottom:607.753440px;}
.y23a{bottom:609.384240px;}
.y143{bottom:610.954560px;}
.y1d{bottom:611.483040px;}
.yb7{bottom:614.160720px;}
.y93{bottom:614.918010px;}
.y128{bottom:614.931840px;}
.y251{bottom:617.482080px;}
.y185{bottom:622.971360px;}
.y6d{bottom:622.993680px;}
.y1a6{bottom:623.705040px;}
.y10b{bottom:628.036560px;}
.y219{bottom:628.380000px;}
.y155{bottom:629.855130px;}
.y1e7{bottom:629.860320px;}
.y170{bottom:629.879760px;}
.ye9{bottom:629.902080px;}
.y42{bottom:630.970560px;}
.y239{bottom:632.601360px;}
.y17b{bottom:632.899440px;}
.y192{bottom:633.600000px;}
.y191{bottom:633.780000px;}
.y142{bottom:633.989520px;}
.y1c{bottom:634.518000px;}
.y193{bottom:635.580000px;}
.yb6{bottom:637.560000px;}
.y92{bottom:637.952970px;}
.y127{bottom:637.966800px;}
.y1c5{bottom:644.940000px;}
.y6c{bottom:646.210800px;}
.y1a5{bottom:646.750800px;}
.y154{bottom:653.072250px;}
.y1e6{bottom:653.077440px;}
.y16f{bottom:653.096880px;}
.ye8{bottom:653.119200px;}
.y41{bottom:654.187680px;}
.y238{bottom:655.636320px;}
.y141{bottom:657.206640px;}
.y1b{bottom:657.735120px;}
.y91{bottom:661.170090px;}
.y126{bottom:661.183920px;}
.y10a{bottom:666.190800px;}
.y6b{bottom:669.245760px;}
.y1a4{bottom:669.967920px;}
.y218{bottom:670.334400px;}
.y153{bottom:676.107210px;}
.y1e5{bottom:676.112400px;}
.y16e{bottom:676.131840px;}
.ye7{bottom:676.154160px;}
.y40{bottom:677.222640px;}
.yb5{bottom:678.600000px;}
.y250{bottom:678.853440px;}
.y140{bottom:680.423760px;}
.y1a{bottom:680.952240px;}
.y1c4{bottom:681.838560px;}
.y90{bottom:684.387210px;}
.y125{bottom:684.401040px;}
.y109{bottom:689.407920px;}
.y6a{bottom:692.462880px;}
.y1a3{bottom:693.185040px;}
.y237{bottom:693.790560px;}
.y152{bottom:699.324330px;}
.y1e4{bottom:699.329520px;}
.y16d{bottom:699.348960px;}
.ye6{bottom:699.371280px;}
.y3f{bottom:700.439760px;}
.y13f{bottom:703.640880px;}
.y19{bottom:703.987200px;}
.y1c3{bottom:705.055680px;}
.y124{bottom:707.436000px;}
.y217{bottom:708.670800px;}
.y108{bottom:712.442880px;}
.y69{bottom:715.685040px;}
.y1a2{bottom:716.220720px;}
.y236{bottom:717.007680px;}
.yb4{bottom:720.000000px;}
.y8f{bottom:722.541450px;}
.y1e3{bottom:722.546640px;}
.y16c{bottom:722.566080px;}
.ye5{bottom:722.588400px;}
.y3e{bottom:723.656880px;}
.y1c2{bottom:726.120000px;}
.y13e{bottom:726.675840px;}
.y18{bottom:727.204320px;}
.y123{bottom:730.653120px;}
.y216{bottom:731.705760px;}
.y107{bottom:735.684480px;}
.y68{bottom:738.742320px;}
.y1a1{bottom:739.437840px;}
.y235{bottom:740.224800px;}
.y8e{bottom:745.576410px;}
.y1e2{bottom:745.581600px;}
.y16b{bottom:745.601040px;}
.ye4{bottom:745.623360px;}
.y3d{bottom:746.874000px;}
.y13d{bottom:749.892960px;}
.y17{bottom:750.421440px;}
.y122{bottom:753.870240px;}
.y215{bottom:754.922880px;}
.y106{bottom:758.901600px;}
.y1a0{bottom:760.320000px;}
.y67{bottom:761.959440px;}
.yb3{bottom:761.962320px;}
.y24f{bottom:763.259760px;}
.y1c1{bottom:765.899280px;}
.y8d{bottom:768.793530px;}
.y1e1{bottom:768.798720px;}
.y16a{bottom:768.818160px;}
.ye3{bottom:768.840480px;}
.y3c{bottom:769.908960px;}
.y13c{bottom:773.110080px;}
.y1fe{bottom:773.640000px;}
.y121{bottom:776.905200px;}
.y214{bottom:778.140000px;}
.y234{bottom:778.379040px;}
.y105{bottom:781.936560px;}
.y19f{bottom:784.440000px;}
.y24e{bottom:786.476880px;}
.y9{bottom:791.406300px;}
.y8c{bottom:792.010650px;}
.y1e0{bottom:792.015840px;}
.y169{bottom:792.035280px;}
.ye2{bottom:792.057600px;}
.y3b{bottom:793.126080px;}
.y1fd{bottom:795.600000px;}
.y13b{bottom:796.145040px;}
.y66{bottom:800.113680px;}
.yb2{bottom:800.116560px;}
.y120{bottom:800.122320px;}
.y1c0{bottom:800.460000px;}
.y233{bottom:801.414000px;}
.y104{bottom:805.153680px;}
.y16{bottom:809.640000px;}
.y19e{bottom:812.340000px;}
.y8{bottom:813.006300px;}
.y8b{bottom:815.045610px;}
.y1df{bottom:815.050800px;}
.y168{bottom:815.070240px;}
.ye1{bottom:815.092560px;}
.y3a{bottom:816.343200px;}
.y1bf{bottom:818.820000px;}
.y13a{bottom:819.362160px;}
.y213{bottom:819.540000px;}
.y184{bottom:820.979280px;}
.y65{bottom:823.330800px;}
.yb1{bottom:823.333680px;}
.y232{bottom:824.631120px;}
.y103{bottom:828.370800px;}
.y1fc{bottom:831.780000px;}
.y7{bottom:834.606300px;}
.y8a{bottom:838.262730px;}
.y1de{bottom:838.267920px;}
.y11f{bottom:838.276560px;}
.y167{bottom:838.287360px;}
.ye0{bottom:838.309680px;}
.y39{bottom:839.378160px;}
.y139{bottom:842.579280px;}
.y64{bottom:846.365760px;}
.yb0{bottom:846.368640px;}
.yca{bottom:846.407520px;}
.y24d{bottom:847.848240px;}
.y1fb{bottom:850.140000px;}
.y1be{bottom:851.226480px;}
.y102{bottom:851.405760px;}
.y19d{bottom:853.380000px;}
.y183{bottom:855.540000px;}
.y6{bottom:856.206300px;}
.y15{bottom:859.860000px;}
.y151{bottom:861.485040px;}
.y89{bottom:861.493680px;}
.y166{bottom:861.504480px;}
.ydf{bottom:861.526800px;}
.y38{bottom:862.595280px;}
.y231{bottom:862.785360px;}
.y1fa{bottom:868.320000px;}
.y63{bottom:869.582880px;}
.yaf{bottom:869.585760px;}
.yc9{bottom:869.624640px;}
.y19c{bottom:869.940000px;}
.y182{bottom:873.900000px;}
.y101{bottom:874.622880px;}
.y14{bottom:877.140000px;}
.y5{bottom:877.806300px;}
.y88{bottom:884.528640px;}
.y150{bottom:884.533680px;}
.y165{bottom:884.539440px;}
.yde{bottom:884.561760px;}
.y37{bottom:885.812400px;}
.y230{bottom:886.002480px;}
.y1f9{bottom:886.680000px;}
.y19b{bottom:888.120000px;}
.y181{bottom:892.260000px;}
.yae{bottom:892.802880px;}
.y62{bottom:892.841760px;}
.y138{bottom:895.500000px;}
.y100{bottom:897.868080px;}
.y4{bottom:899.406000px;}
.y13{bottom:899.640000px;}
.y1f8{bottom:905.040000px;}
.y19a{bottom:906.480000px;}
.y87{bottom:907.745760px;}
.y14f{bottom:907.750800px;}
.y164{bottom:907.756560px;}
.ydd{bottom:907.778880px;}
.y36{bottom:908.847360px;}
.y22f{bottom:909.219600px;}
.y17a{bottom:909.732960px;}
.y12{bottom:911.700000px;}
.y61{bottom:916.058880px;}
.yff{bottom:920.903040px;}
.y1f7{bottom:924.120000px;}
.y180{bottom:924.487920px;}
.y199{bottom:925.560000px;}
.y137{bottom:927.733680px;}
.y86{bottom:930.962880px;}
.y14e{bottom:930.967920px;}
.y163{bottom:930.973680px;}
.ydc{bottom:930.996000px;}
.y35{bottom:932.064480px;}
.y24c{bottom:932.254560px;}
.y11{bottom:934.200000px;}
.y60{bottom:939.093840px;}
.y1f6{bottom:941.230080px;}
.yfe{bottom:944.120160px;}
.y22e{bottom:947.373840px;}
.y85{bottom:954.185040px;}
.y162{bottom:954.190800px;}
.y11e{bottom:954.209520px;}
.ydb{bottom:954.213120px;}
.y34{bottom:955.281600px;}
.y20f{bottom:959.400000px;}
.yad{bottom:962.310960px;}
.y198{bottom:963.540000px;}
.y10{bottom:964.800000px;}
.yfd{bottom:967.337280px;}
.y22d{bottom:970.408800px;}
.y84{bottom:977.225760px;}
.y11d{bottom:977.244480px;}
.y5f{bottom:977.248080px;}
.y33{bottom:978.316560px;}
.yac{bottom:985.528080px;}
.yfc{bottom:990.554400px;}
.y22c{bottom:993.625920px;}
.y83{bottom:1000.442880px;}
.y11c{bottom:1000.461600px;}
.y5e{bottom:1000.465200px;}
.y32{bottom:1001.533680px;}
.yf{bottom:1008.000000px;}
.yab{bottom:1008.563040px;}
.yfb{bottom:1013.589360px;}
.y24b{bottom:1016.843040px;}
.y11b{bottom:1023.678720px;}
.y5d{bottom:1023.682320px;}
.y31{bottom:1024.750800px;}
.yaa{bottom:1031.780160px;}
.yfa{bottom:1036.806480px;}
.y11a{bottom:1046.713680px;}
.y5c{bottom:1046.717280px;}
.ye{bottom:1047.780000px;}
.y30{bottom:1047.785760px;}
.ya9{bottom:1054.997280px;}
.y119{bottom:1069.930800px;}
.y5b{bottom:1069.934400px;}
.y2f{bottom:1071.002880px;}
.y3{bottom:1074.600000px;}
.yf9{bottom:1074.960720px;}
.ya8{bottom:1078.032240px;}
.yd{bottom:1087.560000px;}
.y118{bottom:1093.147920px;}
.y5a{bottom:1093.151520px;}
.y2e{bottom:1094.220000px;}
.y2{bottom:1096.920000px;}
.yf8{bottom:1098.360000px;}
.ya7{bottom:1101.249360px;}
.y117{bottom:1116.182880px;}
.y59{bottom:1116.186480px;}
.yc{bottom:1127.160000px;}
.y2d{bottom:1135.620000px;}
.y58{bottom:1139.403600px;}
.y1{bottom:1140.300000px;}
.yb{bottom:1174.146480px;}
.ya{bottom:1194.300000px;}
.h14{height:18.178500px;}
.h1d{height:18.180000px;}
.h13{height:18.360000px;}
.h19{height:19.620000px;}
.h1a{height:19.621500px;}
.h1c{height:19.798500px;}
.h1b{height:19.800000px;}
.h23{height:27.907031px;}
.h25{height:29.974219px;}
.h8{height:34.209844px;}
.h12{height:36.538500px;}
.h22{height:36.540000px;}
.h11{height:42.894141px;}
.h5{height:47.545312px;}
.h10{height:47.548193px;}
.h17{height:48.786431px;}
.h21{height:48.787031px;}
.hc{height:49.894864px;}
.h2{height:50.027344px;}
.h3{height:50.028544px;}
.h18{height:50.484375px;}
.h28{height:51.636488px;}
.h26{height:51.639367px;}
.h15{height:51.679688px;}
.h27{height:51.708487px;}
.h9{height:52.581797px;}
.hf{height:53.575819px;}
.hd{height:53.578699px;}
.h16{height:53.644939px;}
.h24{height:53.656459px;}
.h20{height:53.691019px;}
.h1f{height:53.731339px;}
.he{height:54.523125px;}
.h1e{height:55.814063px;}
.hb{height:57.092344px;}
.h7{height:60.878320px;}
.ha{height:64.899844px;}
.h6{height:81.490781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h4{height:1263.060000px;}
.wc{width:84.961500px;}
.we{width:95.580000px;}
.wd{width:95.760000px;}
.w5{width:104.940000px;}
.w7{width:104.941500px;}
.w6{width:105.118500px;}
.w8{width:105.120000px;}
.wf{width:107.641500px;}
.w9{width:109.438500px;}
.w4{width:116.820000px;}
.w3{width:116.821500px;}
.w2{width:117.180000px;}
.w12{width:123.660000px;}
.w13{width:123.841500px;}
.wb{width:138.240000px;}
.wa{width:170.460000px;}
.w11{width:180.720000px;}
.w10{width:212.578500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4e{left:8.100000px;}
.x33{left:10.800000px;}
.x19{left:12.420000px;}
.x43{left:13.860000px;}
.x3a{left:15.660000px;}
.x39{left:24.840000px;}
.x4a{left:27.000000px;}
.x1c{left:29.880000px;}
.x4b{left:31.500000px;}
.x3c{left:34.020000px;}
.x1a{left:35.280000px;}
.x21{left:37.620000px;}
.x49{left:40.320000px;}
.x1d{left:41.940000px;}
.x23{left:45.180000px;}
.x20{left:46.440000px;}
.x41{left:48.960000px;}
.x22{left:50.940000px;}
.x1f{left:54.720000px;}
.x3d{left:56.160000px;}
.x45{left:65.880000px;}
.x2{left:71.589000px;}
.x10{left:82.620000px;}
.x9{left:99.540000px;}
.x1{left:127.620000px;}
.x3{left:135.000000px;}
.xa{left:140.220000px;}
.x30{left:141.660000px;}
.x28{left:143.460000px;}
.xf{left:145.612080px;}
.x5{left:148.140000px;}
.x26{left:149.220000px;}
.x15{left:151.380000px;}
.xc{left:154.440000px;}
.x2c{left:158.220000px;}
.x6{left:160.560000px;}
.x11{left:161.992080px;}
.x2f{left:169.020000px;}
.x4{left:170.820000px;}
.x3f{left:172.980000px;}
.x51{left:178.380000px;}
.x38{left:184.320000px;}
.x4c{left:187.925040px;}
.x7{left:203.580000px;}
.xb{left:206.640000px;}
.x3e{left:214.020000px;}
.x35{left:225.000000px;}
.x36{left:226.980000px;}
.x16{left:238.140000px;}
.x4d{left:249.840000px;}
.x8{left:256.500000px;}
.x40{left:261.720000px;}
.x13{left:268.560000px;}
.x1e{left:271.080000px;}
.xe{left:277.920000px;}
.x2d{left:279.000000px;}
.x29{left:281.700000px;}
.x17{left:294.660000px;}
.x24{left:331.560000px;}
.x14{left:337.429440px;}
.x42{left:366.840000px;}
.x18{left:387.900000px;}
.x31{left:399.780000px;}
.x34{left:433.620000px;}
.x27{left:444.605760px;}
.xd{left:446.400000px;}
.x2a{left:448.506720px;}
.x2e{left:450.003600px;}
.x25{left:452.137680px;}
.x4f{left:462.420000px;}
.x52{left:492.297840px;}
.x1b{left:505.080000px;}
.x44{left:512.640000px;}
.x46{left:547.560000px;}
.x53{left:577.980000px;}
.x3b{left:586.440000px;}
.x47{left:608.400000px;}
.x54{left:614.700000px;}
.x2b{left:620.804160px;}
.x32{left:636.480000px;}
.x37{left:639.180000px;}
.x48{left:643.140000px;}
.x50{left:754.542000px;}
.x12{left:767.873520px;}
@media print{
.v3{vertical-align:-18.560533pt;}
.v6{vertical-align:-12.277760pt;}
.v1{vertical-align:-8.320000pt;}
.v4{vertical-align:-5.268480pt;}
.v9{vertical-align:-1.943040pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.560000pt;}
.v5{vertical-align:5.120000pt;}
.v7{vertical-align:12.160000pt;}
.v8{vertical-align:14.080000pt;}
.vc{vertical-align:18.559467pt;}
.va{vertical-align:20.981760pt;}
.v2{vertical-align:24.320000pt;}
.ls7e{letter-spacing:-1.413120pt;}
.ls77{letter-spacing:-1.236480pt;}
.ls7d{letter-spacing:-1.118720pt;}
.ls6a{letter-spacing:-0.883200pt;}
.ls0{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.824320pt;}
.ls20{letter-spacing:-0.765440pt;}
.ls1c{letter-spacing:-0.706560pt;}
.ls1a{letter-spacing:-0.647680pt;}
.ls52{letter-spacing:-0.600320pt;}
.ls3d{letter-spacing:-0.588800pt;}
.ls36{letter-spacing:-0.529920pt;}
.ls51{letter-spacing:-0.471680pt;}
.ls21{letter-spacing:-0.471040pt;}
.ls12{letter-spacing:-0.427520pt;}
.ls1f{letter-spacing:-0.412160pt;}
.ls35{letter-spacing:-0.353280pt;}
.ls8a{letter-spacing:-0.318720pt;}
.ls17{letter-spacing:-0.299520pt;}
.ls6b{letter-spacing:-0.296960pt;}
.ls1d{letter-spacing:-0.294400pt;}
.ls62{letter-spacing:-0.265600pt;}
.ls56{letter-spacing:-0.259840pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.235520pt;}
.ls15{letter-spacing:-0.213760pt;}
.ls5f{letter-spacing:-0.212480pt;}
.ls3e{letter-spacing:-0.176640pt;}
.ls89{letter-spacing:-0.159360pt;}
.ls91{letter-spacing:-0.148480pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls34{letter-spacing:-0.117760pt;}
.ls13{letter-spacing:-0.106880pt;}
.ls76{letter-spacing:-0.106240pt;}
.ls33{letter-spacing:-0.074880pt;}
.ls84{letter-spacing:-0.069120pt;}
.ls18{letter-spacing:-0.058880pt;}
.ls61{letter-spacing:-0.053120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls82{letter-spacing:0.011776pt;}
.ls43{letter-spacing:0.017664pt;}
.ls5d{letter-spacing:0.034560pt;}
.ls50{letter-spacing:0.042880pt;}
.ls7{letter-spacing:0.047360pt;}
.ls63{letter-spacing:0.053120pt;}
.ls1b{letter-spacing:0.058880pt;}
.ls38{letter-spacing:0.061440pt;}
.ls9a{letter-spacing:0.064000pt;}
.ls6d{letter-spacing:0.064768pt;}
.ls9b{letter-spacing:0.074880pt;}
.ls9c{letter-spacing:0.082432pt;}
.ls99{letter-spacing:0.103680pt;}
.ls8b{letter-spacing:0.106240pt;}
.ls14{letter-spacing:0.106880pt;}
.ls10{letter-spacing:0.117760pt;}
.ls66{letter-spacing:0.123648pt;}
.ls5{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.128640pt;}
.ls5b{letter-spacing:0.133120pt;}
.ls53{letter-spacing:0.138240pt;}
.ls79{letter-spacing:0.153088pt;}
.ls86{letter-spacing:0.154880pt;}
.ls78{letter-spacing:0.158976pt;}
.lsb{letter-spacing:0.159360pt;}
.ls9{letter-spacing:0.171520pt;}
.ls30{letter-spacing:0.176640pt;}
.ls54{letter-spacing:0.182528pt;}
.ls2{letter-spacing:0.192000pt;}
.ls80{letter-spacing:0.194304pt;}
.lsc{letter-spacing:0.201856pt;}
.ls57{letter-spacing:0.207360pt;}
.ls8{letter-spacing:0.213760pt;}
.ls16{letter-spacing:0.235520pt;}
.ls60{letter-spacing:0.265600pt;}
.ls4f{letter-spacing:0.294400pt;}
.ls32{letter-spacing:0.299520pt;}
.lsd{letter-spacing:0.318720pt;}
.lsa{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.371840pt;}
.ls5c{letter-spacing:0.398080pt;}
.ls8d{letter-spacing:0.416000pt;}
.ls90{letter-spacing:0.424960pt;}
.ls4e{letter-spacing:0.471040pt;}
.ls85{letter-spacing:0.478080pt;}
.ls4a{letter-spacing:0.529920pt;}
.ls87{letter-spacing:0.552320pt;}
.ls6{letter-spacing:0.640000pt;}
.ls74{letter-spacing:0.674560pt;}
.ls2b{letter-spacing:0.765440pt;}
.ls7c{letter-spacing:0.788992pt;}
.ls5e{letter-spacing:0.796800pt;}
.ls72{letter-spacing:0.806656pt;}
.ls95{letter-spacing:0.823360pt;}
.ls70{letter-spacing:0.824320pt;}
.ls8e{letter-spacing:0.830208pt;}
.ls88{letter-spacing:0.841984pt;}
.ls2a{letter-spacing:0.889088pt;}
.ls4c{letter-spacing:0.942080pt;}
.ls22{letter-spacing:1.413120pt;}
.ls6f{letter-spacing:1.454336pt;}
.ls23{letter-spacing:1.477888pt;}
.ls81{letter-spacing:1.548544pt;}
.ls3a{letter-spacing:1.560320pt;}
.ls47{letter-spacing:1.589760pt;}
.ls46{letter-spacing:2.052480pt;}
.ls26{letter-spacing:2.060800pt;}
.ls8c{letter-spacing:2.071680pt;}
.ls40{letter-spacing:2.078464pt;}
.ls4b{letter-spacing:2.090240pt;}
.ls42{letter-spacing:2.125568pt;}
.ls4d{letter-spacing:2.692480pt;}
.ls2f{letter-spacing:2.708480pt;}
.ls98{letter-spacing:2.743808pt;}
.ls7a{letter-spacing:3.297280pt;}
.ls41{letter-spacing:3.338496pt;}
.ls11{letter-spacing:3.356160pt;}
.ls29{letter-spacing:3.944960pt;}
.ls6e{letter-spacing:4.156928pt;}
.ls24{letter-spacing:4.592640pt;}
.ls93{letter-spacing:4.622080pt;}
.ls25{letter-spacing:4.680960pt;}
.ls44{letter-spacing:5.240320pt;}
.ls69{letter-spacing:5.305088pt;}
.ls59{letter-spacing:5.888000pt;}
.ls68{letter-spacing:5.929216pt;}
.ls3c{letter-spacing:6.535680pt;}
.ls28{letter-spacing:7.183360pt;}
.ls71{letter-spacing:7.206912pt;}
.ls92{letter-spacing:7.754496pt;}
.ls5a{letter-spacing:7.831040pt;}
.ls6c{letter-spacing:8.443392pt;}
.ls58{letter-spacing:8.478720pt;}
.ls37{letter-spacing:9.067520pt;}
.ls31{letter-spacing:9.715200pt;}
.ls39{letter-spacing:9.774080pt;}
.ls7b{letter-spacing:10.362880pt;}
.ls97{letter-spacing:10.409984pt;}
.ls83{letter-spacing:10.421760pt;}
.ls55{letter-spacing:11.010560pt;}
.lsf{letter-spacing:11.658240pt;}
.ls48{letter-spacing:12.070400pt;}
.lse{letter-spacing:12.305920pt;}
.ls49{letter-spacing:12.953600pt;}
.ls67{letter-spacing:13.601280pt;}
.ls3f{letter-spacing:14.190080pt;}
.ls3b{letter-spacing:15.485440pt;}
.ls7f{letter-spacing:15.520768pt;}
.ls94{letter-spacing:16.133120pt;}
.ls27{letter-spacing:18.664960pt;}
.ls2e{letter-spacing:19.312640pt;}
.ls2d{letter-spacing:19.430400pt;}
.ls65{letter-spacing:21.320448pt;}
.ls8f{letter-spacing:21.903360pt;}
.ls2c{letter-spacing:25.082880pt;}
.ls64{letter-spacing:25.730560pt;}
.ls73{letter-spacing:33.561600pt;}
.ls96{letter-spacing:912.140800pt;}
.ws8e{word-spacing:-58.880000pt;}
.ws89{word-spacing:-58.703360pt;}
.ws8c{word-spacing:-58.408960pt;}
.ws8b{word-spacing:-42.922880pt;}
.ws90{word-spacing:-42.688000pt;}
.ws8d{word-spacing:-42.408320pt;}
.ws91{word-spacing:-42.279680pt;}
.wsa{word-spacing:-26.613120pt;}
.ws8{word-spacing:-26.292480pt;}
.ws43{word-spacing:-19.019520pt;}
.ws113{word-spacing:-18.794880pt;}
.ws44{word-spacing:-18.645120pt;}
.wsd{word-spacing:-18.420480pt;}
.ws9{word-spacing:-17.280000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws9e{word-spacing:-15.344640pt;}
.ws111{word-spacing:-14.784000pt;}
.ws110{word-spacing:-14.528000pt;}
.wsfb{word-spacing:-13.824000pt;}
.wsc2{word-spacing:-13.601280pt;}
.wsc{word-spacing:-13.598720pt;}
.ws72{word-spacing:-13.542400pt;}
.wsbf{word-spacing:-13.430528pt;}
.ws12{word-spacing:-13.424640pt;}
.ws45{word-spacing:-13.365760pt;}
.wse{word-spacing:-13.306880pt;}
.ws10{word-spacing:-13.248000pt;}
.ws87{word-spacing:-13.189120pt;}
.ws88{word-spacing:-13.130240pt;}
.wsf{word-spacing:-13.071360pt;}
.ws13{word-spacing:-13.012480pt;}
.ws8f{word-spacing:-12.971264pt;}
.ws47{word-spacing:-12.953600pt;}
.ws9f{word-spacing:-12.894720pt;}
.ws86{word-spacing:-12.835840pt;}
.wsbe{word-spacing:-12.776960pt;}
.ws6f{word-spacing:-12.718080pt;}
.ws11{word-spacing:-12.659200pt;}
.ws46{word-spacing:-12.600320pt;}
.wsed{word-spacing:-12.483200pt;}
.ws71{word-spacing:-12.482560pt;}
.wsfc{word-spacing:-12.430080pt;}
.wsc0{word-spacing:-12.423680pt;}
.wsf1{word-spacing:-12.270720pt;}
.wsec{word-spacing:-12.164480pt;}
.wsfd{word-spacing:-12.111360pt;}
.wsf2{word-spacing:-12.058240pt;}
.wsa8{word-spacing:-12.005120pt;}
.wsb1{word-spacing:-11.952000pt;}
.wsfa{word-spacing:-11.898880pt;}
.wsb2{word-spacing:-11.792640pt;}
.ws8a{word-spacing:-9.433600pt;}
.wsb{word-spacing:-8.640000pt;}
.ws70{word-spacing:-8.389120pt;}
.wsfe{word-spacing:-8.240640pt;}
.ws9d{word-spacing:-8.129280pt;}
.wsc1{word-spacing:-8.092160pt;}
.ws10f{word-spacing:-7.914240pt;}
.wsb0{word-spacing:-7.810560pt;}
.wseb{word-spacing:-7.741440pt;}
.ws77{word-spacing:-3.650560pt;}
.wsd4{word-spacing:-3.473920pt;}
.ws76{word-spacing:-3.179520pt;}
.ws2d{word-spacing:-3.002880pt;}
.ws6b{word-spacing:-2.826240pt;}
.wsa0{word-spacing:-2.531840pt;}
.ws5a{word-spacing:-2.472960pt;}
.ws57{word-spacing:-2.355200pt;}
.wscf{word-spacing:-2.237440pt;}
.ws58{word-spacing:-2.178560pt;}
.ws7c{word-spacing:-1.884160pt;}
.ws2a{word-spacing:-1.707520pt;}
.ws29{word-spacing:-1.530880pt;}
.wsca{word-spacing:-1.354240pt;}
.ws25{word-spacing:-1.236480pt;}
.ws33{word-spacing:-1.059840pt;}
.ws9a{word-spacing:-1.000960pt;}
.ws32{word-spacing:-0.883200pt;}
.ws102{word-spacing:-0.765440pt;}
.ws9b{word-spacing:-0.706560pt;}
.ws3b{word-spacing:-0.647680pt;}
.ws1a{word-spacing:-0.640000pt;}
.ws117{word-spacing:-0.588800pt;}
.wsf0{word-spacing:-0.529920pt;}
.ws1e{word-spacing:-0.471040pt;}
.wsd1{word-spacing:-0.449280pt;}
.wsd9{word-spacing:-0.412160pt;}
.wscb{word-spacing:-0.353280pt;}
.ws15{word-spacing:-0.320640pt;}
.wsad{word-spacing:-0.318720pt;}
.ws116{word-spacing:-0.299520pt;}
.wsa1{word-spacing:-0.294400pt;}
.ws112{word-spacing:-0.265600pt;}
.ws1d{word-spacing:-0.235520pt;}
.ws92{word-spacing:-0.176640pt;}
.ws1c{word-spacing:-0.159360pt;}
.wsd2{word-spacing:-0.138240pt;}
.ws19{word-spacing:-0.128000pt;}
.ws40{word-spacing:-0.117760pt;}
.wsba{word-spacing:-0.106240pt;}
.ws10e{word-spacing:-0.074240pt;}
.wsa3{word-spacing:-0.069120pt;}
.ws59{word-spacing:-0.058880pt;}
.wsff{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.053120pt;}
.ws26{word-spacing:0.058880pt;}
.wsbd{word-spacing:0.106240pt;}
.ws16{word-spacing:0.106880pt;}
.ws4f{word-spacing:0.117760pt;}
.ws3c{word-spacing:0.176640pt;}
.wsbb{word-spacing:0.212480pt;}
.ws34{word-spacing:0.235520pt;}
.wsef{word-spacing:0.256000pt;}
.wsbc{word-spacing:0.265600pt;}
.ws39{word-spacing:0.294400pt;}
.wsf4{word-spacing:0.318720pt;}
.ws18{word-spacing:0.320640pt;}
.ws42{word-spacing:0.353280pt;}
.wsb9{word-spacing:0.371840pt;}
.ws3a{word-spacing:0.412160pt;}
.ws17{word-spacing:0.427520pt;}
.ws41{word-spacing:0.471040pt;}
.wsf7{word-spacing:0.478080pt;}
.ws65{word-spacing:0.529920pt;}
.wsee{word-spacing:0.531200pt;}
.wsc3{word-spacing:0.552960pt;}
.ws80{word-spacing:0.588800pt;}
.ws1b{word-spacing:0.640000pt;}
.ws2f{word-spacing:0.647680pt;}
.ws14{word-spacing:0.706560pt;}
.ws85{word-spacing:0.765440pt;}
.ws2e{word-spacing:0.824320pt;}
.ws6{word-spacing:0.832000pt;}
.ws79{word-spacing:0.942080pt;}
.ws38{word-spacing:1.000960pt;}
.wsf3{word-spacing:1.009280pt;}
.ws98{word-spacing:1.118720pt;}
.ws7a{word-spacing:1.236480pt;}
.ws67{word-spacing:1.295360pt;}
.wsf9{word-spacing:1.354240pt;}
.ws48{word-spacing:1.472000pt;}
.wse4{word-spacing:1.530880pt;}
.wse0{word-spacing:1.589760pt;}
.ws23{word-spacing:1.648640pt;}
.ws101{word-spacing:1.806080pt;}
.wsda{word-spacing:1.825280pt;}
.ws50{word-spacing:1.943040pt;}
.ws61{word-spacing:2.119680pt;}
.ws100{word-spacing:2.124800pt;}
.wsb3{word-spacing:2.237440pt;}
.ws51{word-spacing:2.296320pt;}
.wsa4{word-spacing:2.472960pt;}
.ws10a{word-spacing:2.531840pt;}
.wscd{word-spacing:2.590720pt;}
.ws21{word-spacing:2.767360pt;}
.wsa9{word-spacing:2.826240pt;}
.ws10d{word-spacing:2.885120pt;}
.ws20{word-spacing:2.944000pt;}
.ws10c{word-spacing:3.120640pt;}
.ws1f{word-spacing:3.238400pt;}
.ws36{word-spacing:3.297280pt;}
.ws22{word-spacing:3.415040pt;}
.wse8{word-spacing:3.473920pt;}
.ws7b{word-spacing:3.532800pt;}
.ws35{word-spacing:3.591680pt;}
.wsb5{word-spacing:3.709440pt;}
.wse9{word-spacing:3.768320pt;}
.wsd6{word-spacing:3.827200pt;}
.ws55{word-spacing:4.003840pt;}
.ws37{word-spacing:4.062720pt;}
.ws4e{word-spacing:4.180480pt;}
.wsd8{word-spacing:4.357120pt;}
.ws4c{word-spacing:4.474880pt;}
.ws4a{word-spacing:4.651520pt;}
.wsf5{word-spacing:4.710400pt;}
.ws49{word-spacing:4.828160pt;}
.wsd3{word-spacing:4.945920pt;}
.wsb7{word-spacing:5.122560pt;}
.ws4d{word-spacing:5.299200pt;}
.ws4b{word-spacing:5.416960pt;}
.ws9c{word-spacing:5.475840pt;}
.wsc6{word-spacing:5.593600pt;}
.wsce{word-spacing:5.711360pt;}
.ws7f{word-spacing:5.770240pt;}
.ws7d{word-spacing:5.946880pt;}
.ws99{word-spacing:6.123520pt;}
.wsde{word-spacing:6.300160pt;}
.wsa2{word-spacing:6.417920pt;}
.ws114{word-spacing:6.535680pt;}
.ws7e{word-spacing:6.594560pt;}
.wsa5{word-spacing:6.712320pt;}
.ws83{word-spacing:6.771200pt;}
.wsdd{word-spacing:6.947840pt;}
.ws31{word-spacing:7.065600pt;}
.ws6e{word-spacing:7.242240pt;}
.ws56{word-spacing:7.418880pt;}
.ws68{word-spacing:7.595520pt;}
.wse2{word-spacing:7.713280pt;}
.ws103{word-spacing:7.772160pt;}
.ws54{word-spacing:7.889920pt;}
.ws30{word-spacing:8.066560pt;}
.wsdf{word-spacing:8.302080pt;}
.wsac{word-spacing:8.360960pt;}
.ws75{word-spacing:8.537600pt;}
.wsab{word-spacing:8.714240pt;}
.wsdb{word-spacing:8.773120pt;}
.wsb8{word-spacing:8.949760pt;}
.ws73{word-spacing:9.126400pt;}
.wsf8{word-spacing:9.185280pt;}
.wse3{word-spacing:9.244160pt;}
.ws74{word-spacing:9.303040pt;}
.ws78{word-spacing:9.597440pt;}
.wsf6{word-spacing:9.656320pt;}
.ws6d{word-spacing:9.774080pt;}
.wse1{word-spacing:9.891840pt;}
.ws6c{word-spacing:9.950720pt;}
.ws94{word-spacing:10.245120pt;}
.ws66{word-spacing:10.362880pt;}
.ws24{word-spacing:10.421760pt;}
.ws95{word-spacing:10.539520pt;}
.wsb6{word-spacing:10.598400pt;}
.ws64{word-spacing:10.892800pt;}
.wse6{word-spacing:10.951680pt;}
.ws5f{word-spacing:11.069440pt;}
.wsaa{word-spacing:11.246080pt;}
.wsd0{word-spacing:11.540480pt;}
.ws69{word-spacing:11.717120pt;}
.ws60{word-spacing:11.893760pt;}
.wsea{word-spacing:12.188160pt;}
.ws28{word-spacing:12.364800pt;}
.ws27{word-spacing:12.541440pt;}
.ws2b{word-spacing:12.835840pt;}
.ws2c{word-spacing:13.012480pt;}
.wscc{word-spacing:13.660160pt;}
.wsae{word-spacing:13.836800pt;}
.wsd5{word-spacing:14.072320pt;}
.ws96{word-spacing:14.248960pt;}
.wsa6{word-spacing:14.307840pt;}
.ws97{word-spacing:14.425600pt;}
.wsa7{word-spacing:14.661120pt;}
.wse5{word-spacing:14.720000pt;}
.ws93{word-spacing:14.896640pt;}
.ws84{word-spacing:15.367680pt;}
.ws82{word-spacing:15.544320pt;}
.ws81{word-spacing:15.720960pt;}
.ws109{word-spacing:16.015360pt;}
.ws10b{word-spacing:16.192000pt;}
.wse7{word-spacing:16.368640pt;}
.wsb4{word-spacing:16.839680pt;}
.wsd7{word-spacing:17.016320pt;}
.wsaf{word-spacing:17.487360pt;}
.ws53{word-spacing:18.547200pt;}
.ws52{word-spacing:18.723840pt;}
.ws6a{word-spacing:18.900480pt;}
.ws62{word-spacing:19.194880pt;}
.ws63{word-spacing:19.371520pt;}
.ws104{word-spacing:19.548160pt;}
.ws115{word-spacing:20.078080pt;}
.wsc9{word-spacing:20.666880pt;}
.wsc7{word-spacing:21.137920pt;}
.wsc8{word-spacing:21.314560pt;}
.ws106{word-spacing:21.785600pt;}
.ws108{word-spacing:22.021120pt;}
.ws107{word-spacing:22.080000pt;}
.ws105{word-spacing:22.138880pt;}
.ws5c{word-spacing:24.965120pt;}
.ws5e{word-spacing:25.024000pt;}
.ws5d{word-spacing:25.141760pt;}
.ws5b{word-spacing:25.318400pt;}
.wsc4{word-spacing:25.612800pt;}
.wsc5{word-spacing:25.966080pt;}
.ws3e{word-spacing:30.087680pt;}
.ws3f{word-spacing:30.264320pt;}
.ws3d{word-spacing:30.912000pt;}
._88{margin-left:-3232.954880pt;}
._1d{margin-left:-2705.123840pt;}
._55{margin-left:-2449.761280pt;}
._9f{margin-left:-2442.695680pt;}
._62{margin-left:-2439.920640pt;}
._63{margin-left:-2435.310848pt;}
._3f{margin-left:-2433.205760pt;}
._57{margin-left:-2431.918080pt;}
._37{margin-left:-2430.784000pt;}
._3c{margin-left:-2429.199360pt;}
._41{margin-left:-2427.952640pt;}
._52{margin-left:-2427.002880pt;}
._38{margin-left:-2425.945600pt;}
._40{margin-left:-2423.941120pt;}
._31{margin-left:-2422.366720pt;}
._33{margin-left:-2421.086720pt;}
._44{margin-left:-2419.929600pt;}
._34{margin-left:-2418.452480pt;}
._43{margin-left:-2417.302784pt;}
._35{margin-left:-2415.715840pt;}
._3a{margin-left:-2414.763520pt;}
._1b{margin-left:-2413.775360pt;}
._59{margin-left:-2412.861440pt;}
._3d{margin-left:-2411.503360pt;}
._70{margin-left:-2409.893760pt;}
._cc{margin-left:-2406.464000pt;}
._25{margin-left:-2403.811840pt;}
._29{margin-left:-2402.337280pt;}
._ad{margin-left:-2401.070080pt;}
._13{margin-left:-2397.416960pt;}
._11{margin-left:-2395.215360pt;}
._28{margin-left:-2393.902080pt;}
._20{margin-left:-2392.227840pt;}
._21{margin-left:-2389.058560pt;}
._e{margin-left:-2387.740160pt;}
._30{margin-left:-2386.839040pt;}
._f{margin-left:-2385.689600pt;}
._d{margin-left:-2383.882240pt;}
._1f{margin-left:-2382.932480pt;}
._15{margin-left:-2381.437440pt;}
._a4{margin-left:-2379.383040pt;}
._7e{margin-left:-2375.996800pt;}
._96{margin-left:-2374.277120pt;}
._b5{margin-left:-2373.314560pt;}
._2e{margin-left:-2371.827200pt;}
._c9{margin-left:-2369.827840pt;}
._c7{margin-left:-2368.179200pt;}
._d0{margin-left:-2367.224320pt;}
._d4{margin-left:-2366.231040pt;}
._67{margin-left:-2363.551360pt;}
._cb{margin-left:-2359.895040pt;}
._e2{margin-left:-2358.845440pt;}
._af{margin-left:-2355.432960pt;}
._5e{margin-left:-2354.369920pt;}
._71{margin-left:-2352.519040pt;}
._8a{margin-left:-2351.004800pt;}
._72{margin-left:-2346.636800pt;}
._b1{margin-left:-2342.080000pt;}
._ba{margin-left:-2338.480640pt;}
._7{margin-left:-2336.702720pt;}
._db{margin-left:-2334.146560pt;}
._7f{margin-left:-2329.968000pt;}
._b6{margin-left:-2327.211520pt;}
._ce{margin-left:-2325.091840pt;}
._4{margin-left:-2322.003200pt;}
._b9{margin-left:-2320.829440pt;}
._c6{margin-left:-2317.921280pt;}
._76{margin-left:-2310.274560pt;}
._be{margin-left:-2307.399680pt;}
._c1{margin-left:-2301.445120pt;}
._e5{margin-left:-2298.705920pt;}
._d8{margin-left:-2297.715200pt;}
._89{margin-left:-2291.831040pt;}
._d6{margin-left:-2289.052160pt;}
._9{margin-left:-2285.148416pt;}
._b8{margin-left:-2283.223040pt;}
._e0{margin-left:-2280.701440pt;}
._a3{margin-left:-2278.784000pt;}
._5{margin-left:-2276.426880pt;}
._c3{margin-left:-2274.009600pt;}
._ae{margin-left:-2269.591040pt;}
._a5{margin-left:-2258.126720pt;}
._ea{margin-left:-2248.412160pt;}
._3{margin-left:-2240.917760pt;}
._8f{margin-left:-2234.842880pt;}
._a8{margin-left:-2227.445760pt;}
._de{margin-left:-2224.872960pt;}
._bc{margin-left:-2218.193920pt;}
._85{margin-left:-2213.957120pt;}
._e3{margin-left:-2204.618240pt;}
._b2{margin-left:-2197.726720pt;}
._d3{margin-left:-2194.337280pt;}
._cf{margin-left:-2172.372480pt;}
._eb{margin-left:-2134.389760pt;}
._d2{margin-left:-2132.979200pt;}
._6a{margin-left:-2131.947520pt;}
._4e{margin-left:-2129.751808pt;}
._6{margin-left:-2123.801600pt;}
._c0{margin-left:-2121.863680pt;}
._dc{margin-left:-2113.861120pt;}
._90{margin-left:-2107.904000pt;}
._7a{margin-left:-2104.007680pt;}
._8{margin-left:-2099.882880pt;}
._9d{margin-left:-2095.808000pt;}
._e6{margin-left:-2077.765120pt;}
._dd{margin-left:-2054.955520pt;}
._5f{margin-left:-2047.046400pt;}
._bf{margin-left:-2031.982080pt;}
._da{margin-left:-2027.834880pt;}
._d5{margin-left:-2018.086400pt;}
._ca{margin-left:-1938.969600pt;}
._56{margin-left:-1937.815040pt;}
._7d{margin-left:-1926.906880pt;}
._df{margin-left:-1922.424320pt;}
._39{margin-left:-1917.378560pt;}
._80{margin-left:-1900.622720pt;}
._77{margin-left:-1891.217280pt;}
._b{margin-left:-1890.205440pt;}
._64{margin-left:-1867.430400pt;}
._a6{margin-left:-1846.556160pt;}
._99{margin-left:-1811.816960pt;}
._e9{margin-left:-1796.928000pt;}
._c2{margin-left:-1778.524160pt;}
._5b{margin-left:-1769.868800pt;}
._e7{margin-left:-1763.642880pt;}
._8c{margin-left:-1760.652800pt;}
._65{margin-left:-1752.785920pt;}
._61{margin-left:-1751.473280pt;}
._bd{margin-left:-1747.947520pt;}
._82{margin-left:-1715.947520pt;}
._9a{margin-left:-1712.406400pt;}
._c4{margin-left:-1710.146560pt;}
._53{margin-left:-1626.593280pt;}
._b7{margin-left:-1614.950400pt;}
._45{margin-left:-1585.972480pt;}
._d1{margin-left:-1578.265600pt;}
._ec{margin-left:-1575.528960pt;}
._2a{margin-left:-1568.478720pt;}
._a7{margin-left:-1490.723840pt;}
._49{margin-left:-1489.492480pt;}
._8b{margin-left:-1470.569600pt;}
._98{margin-left:-1451.397120pt;}
._73{margin-left:-1448.307200pt;}
._9e{margin-left:-1421.294080pt;}
._8d{margin-left:-1419.648000pt;}
._a0{margin-left:-1418.283520pt;}
._6e{margin-left:-1395.750400pt;}
._60{margin-left:-1378.439040pt;}
._18{margin-left:-1361.338880pt;}
._d7{margin-left:-1348.920320pt;}
._e4{margin-left:-1334.254080pt;}
._aa{margin-left:-1323.983360pt;}
._6d{margin-left:-1287.106560pt;}
._a{margin-left:-1246.560000pt;}
._c8{margin-left:-1224.481280pt;}
._97{margin-left:-1211.308160pt;}
._46{margin-left:-1186.467840pt;}
._c5{margin-left:-1172.290560pt;}
._2d{margin-left:-1164.088320pt;}
._2f{margin-left:-1140.149760pt;}
._4c{margin-left:-1138.992640pt;}
._d9{margin-left:-1113.804800pt;}
._93{margin-left:-1063.641600pt;}
._b0{margin-left:-1051.100160pt;}
._51{margin-left:-1041.169920pt;}
._b4{margin-left:-1035.146240pt;}
._68{margin-left:-993.448960pt;}
._79{margin-left:-980.725760pt;}
._8e{margin-left:-942.935040pt;}
._58{margin-left:-904.435200pt;}
._32{margin-left:-886.827520pt;}
._54{margin-left:-883.906560pt;}
._42{margin-left:-858.524160pt;}
._e8{margin-left:-843.271680pt;}
._ab{margin-left:-823.768960pt;}
._4d{margin-left:-816.581120pt;}
._78{margin-left:-748.513280pt;}
._4a{margin-left:-715.688320pt;}
._bb{margin-left:-669.401600pt;}
._a9{margin-left:-666.248960pt;}
._1e{margin-left:-657.235840pt;}
._92{margin-left:-645.519360pt;}
._ac{margin-left:-643.356800pt;}
._e1{margin-left:-609.226240pt;}
._b3{margin-left:-549.975040pt;}
._cd{margin-left:-490.252800pt;}
._4f{margin-left:-481.318400pt;}
._26{margin-left:-462.656000pt;}
._c{margin-left:-455.592320pt;}
._6b{margin-left:-413.780480pt;}
._94{margin-left:-387.724800pt;}
._5a{margin-left:-334.615040pt;}
._9c{margin-left:-317.806080pt;}
._4b{margin-left:-295.518720pt;}
._ed{margin-left:-212.851200pt;}
._50{margin-left:-211.520000pt;}
._19{margin-left:-207.198720pt;}
._91{margin-left:-201.861120pt;}
._69{margin-left:-200.704000pt;}
._48{margin-left:-199.544320pt;}
._47{margin-left:-4.872192pt;}
._14{margin-left:-3.297280pt;}
._16{margin-left:-2.042880pt;}
._2{margin-left:-1.088000pt;}
._1{width:0.960000pt;}
._0{width:2.048000pt;}
._3b{width:3.000320pt;}
._17{width:4.121600pt;}
._22{width:5.419520pt;}
._6c{width:6.458880pt;}
._2c{width:7.352320pt;}
._2b{width:8.832000pt;}
._10{width:9.914880pt;}
._27{width:11.217920pt;}
._12{width:12.280320pt;}
._36{width:15.667200pt;}
._3e{width:18.368000pt;}
._24{width:19.430400pt;}
._9b{width:21.987840pt;}
._23{width:25.075200pt;}
._1a{width:30.863360pt;}
._5d{width:617.062400pt;}
._5c{width:694.489600pt;}
._84{width:704.852480pt;}
._83{width:711.093760pt;}
._87{width:713.095680pt;}
._86{width:719.395840pt;}
._1c{width:754.268160pt;}
._75{width:806.538240pt;}
._a2{width:878.871040pt;}
._a1{width:919.334400pt;}
._95{width:982.530560pt;}
._66{width:1033.049600pt;}
._7b{width:1081.743360pt;}
._6f{width:1088.161280pt;}
._81{width:1095.815680pt;}
._7c{width:1098.347520pt;}
._74{width:1143.096320pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y210{bottom:-17.120000pt;}
.y212{bottom:-16.960000pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:3.520000pt;}
.y195{bottom:3.680000pt;}
.y1b0{bottom:19.680000pt;}
.yf1{bottom:19.840000pt;}
.y57{bottom:101.774720pt;}
.y190{bottom:105.756160pt;}
.y14d{bottom:106.402560pt;}
.y1dd{bottom:106.887040pt;}
.y116{bottom:109.444480pt;}
.y20e{bottom:112.991360pt;}
.y1f4{bottom:115.360000pt;}
.y82{bottom:115.384320pt;}
.y1f5{bottom:116.640000pt;}
.yda{bottom:117.963520pt;}
.y22b{bottom:118.451840pt;}
.y56{bottom:122.412160pt;}
.y18f{bottom:124.480000pt;}
.yf7{bottom:125.120000pt;}
.y14c{bottom:127.039360pt;}
.y1bd{bottom:127.212800pt;}
.y1dc{bottom:127.524480pt;}
.yc8{bottom:127.850880pt;}
.ya6{bottom:128.669440pt;}
.y115{bottom:130.081920pt;}
.y25d{bottom:132.296960pt;}
.y20d{bottom:133.466880pt;}
.y1f3{bottom:134.551040pt;}
.y161{bottom:134.816507pt;}
.y81{bottom:135.859840pt;}
.yd9{bottom:138.439040pt;}
.yf6{bottom:138.560000pt;}
.y22a{bottom:139.089280pt;}
.y55{bottom:142.887680pt;}
.y24a{bottom:145.574400pt;}
.y1bc{bottom:147.850240pt;}
.y1db{bottom:148.017280pt;}
.y114{bottom:148.320000pt;}
.y1f2{bottom:148.476160pt;}
.yc7{bottom:148.488320pt;}
.y25c{bottom:152.934400pt;}
.y20c{bottom:154.104320pt;}
.yf5{bottom:154.880000pt;}
.y160{bottom:155.453947pt;}
.y80{bottom:156.497280pt;}
.y14b{bottom:157.760000pt;}
.yd8{bottom:159.076480pt;}
.y18e{bottom:159.840640pt;}
.ya5{bottom:162.584320pt;}
.y54{bottom:163.525120pt;}
.y179{bottom:165.205760pt;}
.y249{bottom:166.211840pt;}
.y1bb{bottom:168.325760pt;}
.y1da{bottom:168.654720pt;}
.yc6{bottom:169.125760pt;}
.y113{bottom:170.400000pt;}
.yf4{bottom:171.040000pt;}
.y229{bottom:173.004160pt;}
.y14a{bottom:174.080000pt;}
.y20b{bottom:174.741760pt;}
.y15f{bottom:175.929467pt;}
.y7f{bottom:177.134720pt;}
.yd7{bottom:179.713920pt;}
.y18d{bottom:180.640000pt;}
.ya4{bottom:183.221760pt;}
.y53{bottom:184.162560pt;}
.y25b{bottom:186.849280pt;}
.yf3{bottom:187.360000pt;}
.y1ba{bottom:188.963200pt;}
.y1d9{bottom:189.292160pt;}
.y149{bottom:190.400000pt;}
.y228{bottom:193.641600pt;}
.y112{bottom:193.920000pt;}
.y2c{bottom:194.632320pt;}
.y20a{bottom:195.379200pt;}
.y15e{bottom:196.566907pt;}
.y7e{bottom:197.610240pt;}
.y248{bottom:200.126720pt;}
.yd6{bottom:200.189440pt;}
.yc5{bottom:203.040640pt;}
.ya3{bottom:203.697280pt;}
.y18c{bottom:204.160000pt;}
.yf0{bottom:204.320000pt;}
.y52{bottom:204.800000pt;}
.y25a{bottom:207.324800pt;}
.y1b9{bottom:209.600640pt;}
.y1d8{bottom:209.929600pt;}
.y227{bottom:214.117120pt;}
.y2b{bottom:215.269760pt;}
.y209{bottom:215.854720pt;}
.yef{bottom:216.000000pt;}
.y15d{bottom:217.204347pt;}
.y7d{bottom:218.247680pt;}
.y148{bottom:219.245440pt;}
.y247{bottom:220.764160pt;}
.yd5{bottom:220.826880pt;}
.yc4{bottom:223.840000pt;}
.ya2{bottom:224.334720pt;}
.y259{bottom:227.962240pt;}
.y1b8{bottom:230.238080pt;}
.y1d7{bottom:230.405120pt;}
.y111{bottom:232.000000pt;}
.y226{bottom:234.754560pt;}
.y208{bottom:236.492160pt;}
.y15c{bottom:237.679867pt;}
.y51{bottom:238.833280pt;}
.y7c{bottom:238.885120pt;}
.y18b{bottom:239.359360pt;}
.y246{bottom:241.401600pt;}
.yd4{bottom:241.464320pt;}
.ya1{bottom:244.972160pt;}
.y136{bottom:245.052160pt;}
.yc3{bottom:246.720000pt;}
.y1b7{bottom:248.800000pt;}
.y2a{bottom:249.184640pt;}
.y1d6{bottom:251.042560pt;}
.y110{bottom:252.960000pt;}
.yee{bottom:254.400000pt;}
.y207{bottom:257.129600pt;}
.y15b{bottom:258.317307pt;}
.y50{bottom:259.308800pt;}
.y245{bottom:261.877120pt;}
.ya0{bottom:265.447680pt;}
.y1b6{bottom:265.920000pt;}
.y225{bottom:268.669440pt;}
.y10f{bottom:269.440000pt;}
.y18a{bottom:270.080000pt;}
.y1d5{bottom:271.684480pt;}
.y17f{bottom:272.487040pt;}
.y7b{bottom:272.800000pt;}
.y7a{bottom:272.804480pt;}
.yd3{bottom:275.379200pt;}
.y206{bottom:277.605120pt;}
.y15a{bottom:278.954747pt;}
.y135{bottom:278.967040pt;}
.yc2{bottom:279.365120pt;}
.y4f{bottom:279.946240pt;}
.y1b5{bottom:282.240000pt;}
.y258{bottom:282.514560pt;}
.y29{bottom:283.099520pt;}
.y10e{bottom:285.920000pt;}
.y9f{bottom:286.085120pt;}
.yed{bottom:286.400000pt;}
.y224{bottom:289.306880pt;}
.y1d4{bottom:292.165120pt;}
.y79{bottom:293.282560pt;}
.y244{bottom:295.792000pt;}
.yd2{bottom:295.854720pt;}
.y205{bottom:298.242560pt;}
.y1b4{bottom:298.400000pt;}
.y159{bottom:299.430267pt;}
.y134{bottom:299.442560pt;}
.yc1{bottom:300.002560pt;}
.y4e{bottom:300.583680pt;}
.y189{bottom:302.720000pt;}
.y257{bottom:303.152000pt;}
.yec{bottom:305.120000pt;}
.y223{bottom:309.782400pt;}
.y1d3{bottom:312.802560pt;}
.y78{bottom:313.934720pt;}
.y1b3{bottom:314.720000pt;}
.y10d{bottom:315.360000pt;}
.y243{bottom:316.429440pt;}
.yd1{bottom:316.492160pt;}
.y28{bottom:317.014400pt;}
.y204{bottom:318.880000pt;}
.y188{bottom:319.040000pt;}
.y9e{bottom:320.002560pt;}
.y158{bottom:320.067707pt;}
.y133{bottom:320.080000pt;}
.yc0{bottom:320.675200pt;}
.y4d{bottom:321.059200pt;}
.y1b2{bottom:331.040000pt;}
.y1d2{bottom:333.448960pt;}
.yeb{bottom:334.005120pt;}
.y77{bottom:334.572160pt;}
.y242{bottom:337.066880pt;}
.yd0{bottom:337.129600pt;}
.y27{bottom:337.651840pt;}
.y9d{bottom:340.705147pt;}
.y132{bottom:340.717440pt;}
.ybf{bottom:341.150720pt;}
.y4c{bottom:341.696640pt;}
.y222{bottom:343.697280pt;}
.y10c{bottom:344.181760pt;}
.y187{bottom:347.680000pt;}
.y1af{bottom:348.000000pt;}
.y1d1{bottom:353.924480pt;}
.y1f1{bottom:355.041920pt;}
.y76{bottom:355.209600pt;}
.y203{bottom:355.680000pt;}
.y1b1{bottom:356.160000pt;}
.y256{bottom:357.542400pt;}
.ycf{bottom:357.605120pt;}
.y26{bottom:358.127360pt;}
.y196{bottom:358.240000pt;}
.y194{bottom:359.040000pt;}
.y1ae{bottom:359.680000pt;}
.y197{bottom:359.840000pt;}
.y9c{bottom:361.342587pt;}
.y131{bottom:361.354880pt;}
.y4b{bottom:362.334080pt;}
.y221{bottom:364.334720pt;}
.y241{bottom:370.981760pt;}
.y1f0{bottom:373.280000pt;}
.y1d0{bottom:374.561920pt;}
.ybe{bottom:375.065600pt;}
.y75{bottom:375.685120pt;}
.y255{bottom:378.179840pt;}
.yce{bottom:378.242560pt;}
.y25{bottom:378.764800pt;}
.y202{bottom:379.679360pt;}
.y9b{bottom:381.818107pt;}
.y130{bottom:381.830400pt;}
.y4a{bottom:382.809600pt;}
.y220{bottom:384.972160pt;}
.y240{bottom:391.457280pt;}
.y1cf{bottom:392.800000pt;}
.y1ef{bottom:395.262080pt;}
.y178{bottom:395.279360pt;}
.ybd{bottom:395.703040pt;}
.y74{bottom:396.322560pt;}
.y1ad{bottom:397.920000pt;}
.ycd{bottom:398.879360pt;}
.y24{bottom:399.402240pt;}
.y9a{bottom:402.455547pt;}
.y12f{bottom:402.467840pt;}
.y49{bottom:403.447040pt;}
.y21f{bottom:405.609600pt;}
.y1ce{bottom:408.640000pt;}
.y201{bottom:410.400000pt;}
.y23f{bottom:412.094720pt;}
.y1ee{bottom:415.737600pt;}
.y177{bottom:415.754880pt;}
.ybc{bottom:416.340480pt;}
.y73{bottom:416.964480pt;}
.y23{bottom:420.039680pt;}
.y99{bottom:423.092987pt;}
.y12e{bottom:423.105280pt;}
.y48{bottom:424.084480pt;}
.y1cd{bottom:424.960000pt;}
.y21e{bottom:426.085120pt;}
.y200{bottom:426.720000pt;}
.ycc{bottom:429.600000pt;}
.y1ac{bottom:430.741760pt;}
.y23e{bottom:432.732160pt;}
.y1ed{bottom:436.375040pt;}
.y176{bottom:436.392320pt;}
.ybb{bottom:436.816000pt;}
.y72{bottom:437.454720pt;}
.y1ff{bottom:439.353600pt;}
.y22{bottom:440.515200pt;}
.y1cc{bottom:441.280000pt;}
.y98{bottom:443.568507pt;}
.y12d{bottom:443.580800pt;}
.y47{bottom:444.560000pt;}
.y147{bottom:447.405440pt;}
.y1ab{bottom:451.379200pt;}
.y254{bottom:453.207680pt;}
.y1ec{bottom:457.012480pt;}
.y175{bottom:457.029760pt;}
.y1cb{bottom:457.440000pt;}
.y71{bottom:458.092160pt;}
.ycb{bottom:458.286080pt;}
.y21d{bottom:460.009600pt;}
.y21{bottom:461.152640pt;}
.y97{bottom:464.205947pt;}
.y12c{bottom:464.218240pt;}
.y46{bottom:465.197440pt;}
.y23d{bottom:466.647040pt;}
.yba{bottom:470.730880pt;}
.y1aa{bottom:472.016640pt;}
.y1ca{bottom:473.760000pt;}
.y253{bottom:473.845120pt;}
.y1eb{bottom:477.488000pt;}
.y174{bottom:477.505280pt;}
.y21c{bottom:480.647040pt;}
.y146{bottom:481.320320pt;}
.y20{bottom:481.790080pt;}
.y96{bottom:484.843387pt;}
.y12b{bottom:484.855680pt;}
.y211{bottom:485.280000pt;}
.y45{bottom:485.834880pt;}
.y23c{bottom:487.122560pt;}
.y1c9{bottom:490.080000pt;}
.yb9{bottom:491.368320pt;}
.y70{bottom:492.007040pt;}
.y1a9{bottom:492.492160pt;}
.y1ea{bottom:498.125440pt;}
.y173{bottom:498.142720pt;}
.y17e{bottom:501.280000pt;}
.y21b{bottom:501.284480pt;}
.y145{bottom:501.795840pt;}
.y1f{bottom:502.265600pt;}
.y95{bottom:505.318907pt;}
.y12a{bottom:505.331200pt;}
.y1c8{bottom:506.400000pt;}
.y23b{bottom:507.760000pt;}
.yb8{bottom:512.005760pt;}
.y6f{bottom:512.644480pt;}
.y1a8{bottom:513.129600pt;}
.y17d{bottom:517.600000pt;}
.y157{bottom:518.758267pt;}
.y1e9{bottom:518.762880pt;}
.y172{bottom:518.780160pt;}
.y44{bottom:519.749760pt;}
.y21a{bottom:521.760000pt;}
.y144{bottom:522.433280pt;}
.y1c7{bottom:522.560000pt;}
.y1e{bottom:522.903040pt;}
.y186{bottom:523.826560pt;}
.y94{bottom:525.956347pt;}
.y129{bottom:525.968640pt;}
.yea{bottom:525.998080pt;}
.y252{bottom:528.397440pt;}
.y6e{bottom:533.122560pt;}
.y1a7{bottom:533.767040pt;}
.y17c{bottom:533.920000pt;}
.y156{bottom:539.233787pt;}
.y1e8{bottom:539.238400pt;}
.y171{bottom:539.255680pt;}
.y1c6{bottom:539.520000pt;}
.y43{bottom:540.225280pt;}
.y23a{bottom:541.674880pt;}
.y143{bottom:543.070720pt;}
.y1d{bottom:543.540480pt;}
.yb7{bottom:545.920640pt;}
.y93{bottom:546.593787pt;}
.y128{bottom:546.606080pt;}
.y251{bottom:548.872960pt;}
.y185{bottom:553.752320pt;}
.y6d{bottom:553.772160pt;}
.y1a6{bottom:554.404480pt;}
.y10b{bottom:558.254720pt;}
.y219{bottom:558.560000pt;}
.y155{bottom:559.871227pt;}
.y1e7{bottom:559.875840pt;}
.y170{bottom:559.893120pt;}
.ye9{bottom:559.912960pt;}
.y42{bottom:560.862720pt;}
.y239{bottom:562.312320pt;}
.y17b{bottom:562.577280pt;}
.y192{bottom:563.200000pt;}
.y191{bottom:563.360000pt;}
.y142{bottom:563.546240pt;}
.y1c{bottom:564.016000pt;}
.y193{bottom:564.960000pt;}
.yb6{bottom:566.720000pt;}
.y92{bottom:567.069307pt;}
.y127{bottom:567.081600pt;}
.y1c5{bottom:573.280000pt;}
.y6c{bottom:574.409600pt;}
.y1a5{bottom:574.889600pt;}
.y154{bottom:580.508667pt;}
.y1e6{bottom:580.513280pt;}
.y16f{bottom:580.530560pt;}
.ye8{bottom:580.550400pt;}
.y41{bottom:581.500160pt;}
.y238{bottom:582.787840pt;}
.y141{bottom:584.183680pt;}
.y1b{bottom:584.653440pt;}
.y91{bottom:587.706747pt;}
.y126{bottom:587.719040pt;}
.y10a{bottom:592.169600pt;}
.y6b{bottom:594.885120pt;}
.y1a4{bottom:595.527040pt;}
.y218{bottom:595.852800pt;}
.y153{bottom:600.984187pt;}
.y1e5{bottom:600.988800pt;}
.y16e{bottom:601.006080pt;}
.ye7{bottom:601.025920pt;}
.y40{bottom:601.975680pt;}
.yb5{bottom:603.200000pt;}
.y250{bottom:603.425280pt;}
.y140{bottom:604.821120pt;}
.y1a{bottom:605.290880pt;}
.y1c4{bottom:606.078720pt;}
.y90{bottom:608.344187pt;}
.y125{bottom:608.356480pt;}
.y109{bottom:612.807040pt;}
.y6a{bottom:615.522560pt;}
.y1a3{bottom:616.164480pt;}
.y237{bottom:616.702720pt;}
.y152{bottom:621.621627pt;}
.y1e4{bottom:621.626240pt;}
.y16d{bottom:621.643520pt;}
.ye6{bottom:621.663360pt;}
.y3f{bottom:622.613120pt;}
.y13f{bottom:625.458560pt;}
.y19{bottom:625.766400pt;}
.y1c3{bottom:626.716160pt;}
.y124{bottom:628.832000pt;}
.y217{bottom:629.929600pt;}
.y108{bottom:633.282560pt;}
.y69{bottom:636.164480pt;}
.y1a2{bottom:636.640640pt;}
.y236{bottom:637.340160pt;}
.yb4{bottom:640.000000pt;}
.y8f{bottom:642.259067pt;}
.y1e3{bottom:642.263680pt;}
.y16c{bottom:642.280960pt;}
.ye5{bottom:642.300800pt;}
.y3e{bottom:643.250560pt;}
.y1c2{bottom:645.440000pt;}
.y13e{bottom:645.934080pt;}
.y18{bottom:646.403840pt;}
.y123{bottom:649.469440pt;}
.y216{bottom:650.405120pt;}
.y107{bottom:653.941760pt;}
.y68{bottom:656.659840pt;}
.y1a1{bottom:657.278080pt;}
.y235{bottom:657.977600pt;}
.y8e{bottom:662.734587pt;}
.y1e2{bottom:662.739200pt;}
.y16b{bottom:662.756480pt;}
.ye4{bottom:662.776320pt;}
.y3d{bottom:663.888000pt;}
.y13d{bottom:666.571520pt;}
.y17{bottom:667.041280pt;}
.y122{bottom:670.106880pt;}
.y215{bottom:671.042560pt;}
.y106{bottom:674.579200pt;}
.y1a0{bottom:675.840000pt;}
.y67{bottom:677.297280pt;}
.yb3{bottom:677.299840pt;}
.y24f{bottom:678.453120pt;}
.y1c1{bottom:680.799360pt;}
.y8d{bottom:683.372027pt;}
.y1e1{bottom:683.376640pt;}
.y16a{bottom:683.393920pt;}
.ye3{bottom:683.413760pt;}
.y3c{bottom:684.363520pt;}
.y13c{bottom:687.208960pt;}
.y1fe{bottom:687.680000pt;}
.y121{bottom:690.582400pt;}
.y214{bottom:691.680000pt;}
.y234{bottom:691.892480pt;}
.y105{bottom:695.054720pt;}
.y19f{bottom:697.280000pt;}
.y24e{bottom:699.090560pt;}
.y9{bottom:703.472267pt;}
.y8c{bottom:704.009467pt;}
.y1e0{bottom:704.014080pt;}
.y169{bottom:704.031360pt;}
.ye2{bottom:704.051200pt;}
.y3b{bottom:705.000960pt;}
.y1fd{bottom:707.200000pt;}
.y13b{bottom:707.684480pt;}
.y66{bottom:711.212160pt;}
.yb2{bottom:711.214720pt;}
.y120{bottom:711.219840pt;}
.y1c0{bottom:711.520000pt;}
.y233{bottom:712.368000pt;}
.y104{bottom:715.692160pt;}
.y16{bottom:719.680000pt;}
.y19e{bottom:722.080000pt;}
.y8{bottom:722.672267pt;}
.y8b{bottom:724.484987pt;}
.y1df{bottom:724.489600pt;}
.y168{bottom:724.506880pt;}
.ye1{bottom:724.526720pt;}
.y3a{bottom:725.638400pt;}
.y1bf{bottom:727.840000pt;}
.y13a{bottom:728.321920pt;}
.y213{bottom:728.480000pt;}
.y184{bottom:729.759360pt;}
.y65{bottom:731.849600pt;}
.yb1{bottom:731.852160pt;}
.y232{bottom:733.005440pt;}
.y103{bottom:736.329600pt;}
.y1fc{bottom:739.360000pt;}
.y7{bottom:741.872267pt;}
.y8a{bottom:745.122427pt;}
.y1de{bottom:745.127040pt;}
.y11f{bottom:745.134720pt;}
.y167{bottom:745.144320pt;}
.ye0{bottom:745.164160pt;}
.y39{bottom:746.113920pt;}
.y139{bottom:748.959360pt;}
.y64{bottom:752.325120pt;}
.yb0{bottom:752.327680pt;}
.yca{bottom:752.362240pt;}
.y24d{bottom:753.642880pt;}
.y1fb{bottom:755.680000pt;}
.y1be{bottom:756.645760pt;}
.y102{bottom:756.805120pt;}
.y19d{bottom:758.560000pt;}
.y183{bottom:760.480000pt;}
.y6{bottom:761.072267pt;}
.y15{bottom:764.320000pt;}
.y151{bottom:765.764480pt;}
.y89{bottom:765.772160pt;}
.y166{bottom:765.781760pt;}
.ydf{bottom:765.801600pt;}
.y38{bottom:766.751360pt;}
.y231{bottom:766.920320pt;}
.y1fa{bottom:771.840000pt;}
.y63{bottom:772.962560pt;}
.yaf{bottom:772.965120pt;}
.yc9{bottom:772.999680pt;}
.y19c{bottom:773.280000pt;}
.y182{bottom:776.800000pt;}
.y101{bottom:777.442560pt;}
.y14{bottom:779.680000pt;}
.y5{bottom:780.272267pt;}
.y88{bottom:786.247680pt;}
.y150{bottom:786.252160pt;}
.y165{bottom:786.257280pt;}
.yde{bottom:786.277120pt;}
.y37{bottom:787.388800pt;}
.y230{bottom:787.557760pt;}
.y1f9{bottom:788.160000pt;}
.y19b{bottom:789.440000pt;}
.y181{bottom:793.120000pt;}
.yae{bottom:793.602560pt;}
.y62{bottom:793.637120pt;}
.y138{bottom:796.000000pt;}
.y100{bottom:798.104960pt;}
.y4{bottom:799.472000pt;}
.y13{bottom:799.680000pt;}
.y1f8{bottom:804.480000pt;}
.y19a{bottom:805.760000pt;}
.y87{bottom:806.885120pt;}
.y14f{bottom:806.889600pt;}
.y164{bottom:806.894720pt;}
.ydd{bottom:806.914560pt;}
.y36{bottom:807.864320pt;}
.y22f{bottom:808.195200pt;}
.y17a{bottom:808.651520pt;}
.y12{bottom:810.400000pt;}
.y61{bottom:814.274560pt;}
.yff{bottom:818.580480pt;}
.y1f7{bottom:821.440000pt;}
.y180{bottom:821.767040pt;}
.y199{bottom:822.720000pt;}
.y137{bottom:824.652160pt;}
.y86{bottom:827.522560pt;}
.y14e{bottom:827.527040pt;}
.y163{bottom:827.532160pt;}
.ydc{bottom:827.552000pt;}
.y35{bottom:828.501760pt;}
.y24c{bottom:828.670720pt;}
.y11{bottom:830.400000pt;}
.y60{bottom:834.750080pt;}
.y1f6{bottom:836.648960pt;}
.yfe{bottom:839.217920pt;}
.y22e{bottom:842.110080pt;}
.y85{bottom:848.164480pt;}
.y162{bottom:848.169600pt;}
.y11e{bottom:848.186240pt;}
.ydb{bottom:848.189440pt;}
.y34{bottom:849.139200pt;}
.y20f{bottom:852.800000pt;}
.yad{bottom:855.387520pt;}
.y198{bottom:856.480000pt;}
.y10{bottom:857.600000pt;}
.yfd{bottom:859.855360pt;}
.y22d{bottom:862.585600pt;}
.y84{bottom:868.645120pt;}
.y11d{bottom:868.661760pt;}
.y5f{bottom:868.664960pt;}
.y33{bottom:869.614720pt;}
.yac{bottom:876.024960pt;}
.yfc{bottom:880.492800pt;}
.y22c{bottom:883.223040pt;}
.y83{bottom:889.282560pt;}
.y11c{bottom:889.299200pt;}
.y5e{bottom:889.302400pt;}
.y32{bottom:890.252160pt;}
.yf{bottom:896.000000pt;}
.yab{bottom:896.500480pt;}
.yfb{bottom:900.968320pt;}
.y24b{bottom:903.860480pt;}
.y11b{bottom:909.936640pt;}
.y5d{bottom:909.939840pt;}
.y31{bottom:910.889600pt;}
.yaa{bottom:917.137920pt;}
.yfa{bottom:921.605760pt;}
.y11a{bottom:930.412160pt;}
.y5c{bottom:930.415360pt;}
.ye{bottom:931.360000pt;}
.y30{bottom:931.365120pt;}
.ya9{bottom:937.775360pt;}
.y119{bottom:951.049600pt;}
.y5b{bottom:951.052800pt;}
.y2f{bottom:952.002560pt;}
.y3{bottom:955.200000pt;}
.yf9{bottom:955.520640pt;}
.ya8{bottom:958.250880pt;}
.yd{bottom:966.720000pt;}
.y118{bottom:971.687040pt;}
.y5a{bottom:971.690240pt;}
.y2e{bottom:972.640000pt;}
.y2{bottom:975.040000pt;}
.yf8{bottom:976.320000pt;}
.ya7{bottom:978.888320pt;}
.y117{bottom:992.162560pt;}
.y59{bottom:992.165760pt;}
.yc{bottom:1001.920000pt;}
.y2d{bottom:1009.440000pt;}
.y58{bottom:1012.803200pt;}
.y1{bottom:1013.600000pt;}
.yb{bottom:1043.685760pt;}
.ya{bottom:1061.600000pt;}
.h14{height:16.158667pt;}
.h1d{height:16.160000pt;}
.h13{height:16.320000pt;}
.h19{height:17.440000pt;}
.h1a{height:17.441333pt;}
.h1c{height:17.598667pt;}
.h1b{height:17.600000pt;}
.h23{height:24.806250pt;}
.h25{height:26.643750pt;}
.h8{height:30.408750pt;}
.h12{height:32.478667pt;}
.h22{height:32.480000pt;}
.h11{height:38.128125pt;}
.h5{height:42.262500pt;}
.h10{height:42.265060pt;}
.h17{height:43.365717pt;}
.h21{height:43.366250pt;}
.hc{height:44.350990pt;}
.h2{height:44.468750pt;}
.h3{height:44.469817pt;}
.h18{height:44.875000pt;}
.h28{height:45.899100pt;}
.h26{height:45.901660pt;}
.h15{height:45.937500pt;}
.h27{height:45.963100pt;}
.h9{height:46.739375pt;}
.hf{height:47.622950pt;}
.hd{height:47.625510pt;}
.h16{height:47.684390pt;}
.h24{height:47.694630pt;}
.h20{height:47.725350pt;}
.h1f{height:47.761190pt;}
.he{height:48.465000pt;}
.h1e{height:49.612500pt;}
.hb{height:50.748750pt;}
.h7{height:54.114062pt;}
.ha{height:57.688750pt;}
.h6{height:72.436250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h4{height:1122.720000pt;}
.wc{width:75.521333pt;}
.we{width:84.960000pt;}
.wd{width:85.120000pt;}
.w5{width:93.280000pt;}
.w7{width:93.281333pt;}
.w6{width:93.438667pt;}
.w8{width:93.440000pt;}
.wf{width:95.681333pt;}
.w9{width:97.278667pt;}
.w4{width:103.840000pt;}
.w3{width:103.841333pt;}
.w2{width:104.160000pt;}
.w12{width:109.920000pt;}
.w13{width:110.081333pt;}
.wb{width:122.880000pt;}
.wa{width:151.520000pt;}
.w11{width:160.640000pt;}
.w10{width:188.958667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:7.200000pt;}
.x33{left:9.600000pt;}
.x19{left:11.040000pt;}
.x43{left:12.320000pt;}
.x3a{left:13.920000pt;}
.x39{left:22.080000pt;}
.x4a{left:24.000000pt;}
.x1c{left:26.560000pt;}
.x4b{left:28.000000pt;}
.x3c{left:30.240000pt;}
.x1a{left:31.360000pt;}
.x21{left:33.440000pt;}
.x49{left:35.840000pt;}
.x1d{left:37.280000pt;}
.x23{left:40.160000pt;}
.x20{left:41.280000pt;}
.x41{left:43.520000pt;}
.x22{left:45.280000pt;}
.x1f{left:48.640000pt;}
.x3d{left:49.920000pt;}
.x45{left:58.560000pt;}
.x2{left:63.634667pt;}
.x10{left:73.440000pt;}
.x9{left:88.480000pt;}
.x1{left:113.440000pt;}
.x3{left:120.000000pt;}
.xa{left:124.640000pt;}
.x30{left:125.920000pt;}
.x28{left:127.520000pt;}
.xf{left:129.432960pt;}
.x5{left:131.680000pt;}
.x26{left:132.640000pt;}
.x15{left:134.560000pt;}
.xc{left:137.280000pt;}
.x2c{left:140.640000pt;}
.x6{left:142.720000pt;}
.x11{left:143.992960pt;}
.x2f{left:150.240000pt;}
.x4{left:151.840000pt;}
.x3f{left:153.760000pt;}
.x51{left:158.560000pt;}
.x38{left:163.840000pt;}
.x4c{left:167.044480pt;}
.x7{left:180.960000pt;}
.xb{left:183.680000pt;}
.x3e{left:190.240000pt;}
.x35{left:200.000000pt;}
.x36{left:201.760000pt;}
.x16{left:211.680000pt;}
.x4d{left:222.080000pt;}
.x8{left:228.000000pt;}
.x40{left:232.640000pt;}
.x13{left:238.720000pt;}
.x1e{left:240.960000pt;}
.xe{left:247.040000pt;}
.x2d{left:248.000000pt;}
.x29{left:250.400000pt;}
.x17{left:261.920000pt;}
.x24{left:294.720000pt;}
.x14{left:299.937280pt;}
.x42{left:326.080000pt;}
.x18{left:344.800000pt;}
.x31{left:355.360000pt;}
.x34{left:385.440000pt;}
.x27{left:395.205120pt;}
.xd{left:396.800000pt;}
.x2a{left:398.672640pt;}
.x2e{left:400.003200pt;}
.x25{left:401.900160pt;}
.x4f{left:411.040000pt;}
.x52{left:437.598080pt;}
.x1b{left:448.960000pt;}
.x44{left:455.680000pt;}
.x46{left:486.720000pt;}
.x53{left:513.760000pt;}
.x3b{left:521.280000pt;}
.x47{left:540.800000pt;}
.x54{left:546.400000pt;}
.x2b{left:551.825920pt;}
.x32{left:565.760000pt;}
.x37{left:568.160000pt;}
.x48{left:571.680000pt;}
.x50{left:670.704000pt;}
.x12{left:682.554240pt;}
}




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