
    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_82d38842883375d10bee0df4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_79e250c225f7acfbb06f2fc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d142e91143373b18cf479cc4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_5147cea132a997c0540ade83.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_080bff25596d63afb3c4ade0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_0b6ec32379c8a402618f3ed9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2ace3c35d6f1b91909e98202.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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);}
.v1{vertical-align:-68.425200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.991600px;}
.v3{vertical-align:23.762160px;}
.v2{vertical-align:27.360000px;}
.lsb7{letter-spacing:-2.160000px;}
.ls77{letter-spacing:-1.640160px;}
.lsb2{letter-spacing:-1.512000px;}
.ls8e{letter-spacing:-1.440000px;}
.ls54{letter-spacing:-1.398960px;}
.ls53{letter-spacing:-1.075680px;}
.ls36{letter-spacing:-1.013040px;}
.ls42{letter-spacing:-1.008000px;}
.ls46{letter-spacing:-0.964800px;}
.ls20{letter-spacing:-0.910080px;}
.ls9f{letter-spacing:-0.792000px;}
.lsa1{letter-spacing:-0.776880px;}
.ls33{letter-spacing:-0.720000px;}
.ls43{letter-spacing:-0.675360px;}
.ls66{letter-spacing:-0.657360px;}
.lsbd{letter-spacing:-0.648000px;}
.ls37{letter-spacing:-0.597600px;}
.lsc3{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.537840px;}
.ls6c{letter-spacing:-0.504000px;}
.ls48{letter-spacing:-0.478080px;}
.ls65{letter-spacing:-0.418320px;}
.ls17{letter-spacing:-0.358560px;}
.ls35{letter-spacing:-0.289440px;}
.ls1b{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.252720px;}
.ls25{letter-spacing:-0.239040px;}
.ls1d{letter-spacing:-0.227520px;}
.ls32{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.170640px;}
.ls31{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.119520px;}
.ls23{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.084240px;}
.lsa0{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.059760px;}
.ls1e{letter-spacing:-0.056880px;}
.ls14{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.008424px;}
.ls72{letter-spacing:0.011952px;}
.lsb6{letter-spacing:0.026064px;}
.ls6a{letter-spacing:0.034920px;}
.ls4d{letter-spacing:0.035280px;}
.ls5f{letter-spacing:0.036720px;}
.ls45{letter-spacing:0.048240px;}
.ls2e{letter-spacing:0.053280px;}
.ls39{letter-spacing:0.056880px;}
.ls26{letter-spacing:0.059760px;}
.ls3c{letter-spacing:0.062424px;}
.lsa{letter-spacing:0.072000px;}
.ls9c{letter-spacing:0.072720px;}
.ls60{letter-spacing:0.080640px;}
.lsa7{letter-spacing:0.084240px;}
.lsc0{letter-spacing:0.087840px;}
.ls82{letter-spacing:0.114264px;}
.ls12{letter-spacing:0.119520px;}
.ls7e{letter-spacing:0.123120px;}
.ls22{letter-spacing:0.132480px;}
.ls1f{letter-spacing:0.144000px;}
.ls76{letter-spacing:0.150480px;}
.ls40{letter-spacing:0.153360px;}
.lsbc{letter-spacing:0.167328px;}
.ls69{letter-spacing:0.168480px;}
.lsc{letter-spacing:0.169920px;}
.ls81{letter-spacing:0.178560px;}
.ls1{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.183600px;}
.ls73{letter-spacing:0.187344px;}
.ls4c{letter-spacing:0.193680px;}
.ls3b{letter-spacing:0.213840px;}
.lsb{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.239040px;}
.ls44{letter-spacing:0.241200px;}
.ls3{letter-spacing:0.245016px;}
.ls18{letter-spacing:0.252720px;}
.ls68{letter-spacing:0.268920px;}
.ls8d{letter-spacing:0.274896px;}
.ls3a{letter-spacing:0.280872px;}
.ls28{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.289440px;}
.ls10{letter-spacing:0.292824px;}
.ls8c{letter-spacing:0.298800px;}
.lse{letter-spacing:0.299520px;}
.ls7f{letter-spacing:0.301968px;}
.lsa6{letter-spacing:0.312408px;}
.ls95{letter-spacing:0.318240px;}
.lsa2{letter-spacing:0.322704px;}
.ls24{letter-spacing:0.331200px;}
.ls5{letter-spacing:0.336960px;}
.ls2{letter-spacing:0.358560px;}
.ls9{letter-spacing:0.360000px;}
.lsb0{letter-spacing:0.378072px;}
.ls51{letter-spacing:0.385920px;}
.ls9e{letter-spacing:0.424368px;}
.ls34{letter-spacing:0.432000px;}
.ls52{letter-spacing:0.434160px;}
.lsb1{letter-spacing:0.442800px;}
.ls9a{letter-spacing:0.460080px;}
.ls74{letter-spacing:0.462960px;}
.ls99{letter-spacing:0.478800px;}
.ls2c{letter-spacing:0.484560px;}
.ls30{letter-spacing:0.503280px;}
.ls83{letter-spacing:0.520848px;}
.ls6{letter-spacing:0.576000px;}
.ls9b{letter-spacing:0.583560px;}
.lsd{letter-spacing:0.599040px;}
.ls50{letter-spacing:0.613440px;}
.ls75{letter-spacing:0.650016px;}
.ls2f{letter-spacing:0.656640px;}
.lsc1{letter-spacing:0.712224px;}
.ls21{letter-spacing:0.720000px;}
.ls86{letter-spacing:0.727200px;}
.ls5e{letter-spacing:0.734400px;}
.ls71{letter-spacing:0.739872px;}
.lsa8{letter-spacing:0.773280px;}
.lsa5{letter-spacing:0.796320px;}
.ls9d{letter-spacing:0.810000px;}
.ls64{letter-spacing:0.836640px;}
.ls7d{letter-spacing:0.848592px;}
.lsa9{letter-spacing:0.856080px;}
.lsb8{letter-spacing:0.864000px;}
.ls70{letter-spacing:0.896400px;}
.ls2d{letter-spacing:0.907920px;}
.ls91{letter-spacing:1.103832px;}
.ls84{letter-spacing:1.193400px;}
.ls61{letter-spacing:1.205280px;}
.ls6b{letter-spacing:1.254240px;}
.ls27{letter-spacing:1.440000px;}
.ls56{letter-spacing:1.499976px;}
.ls57{letter-spacing:1.553760px;}
.ls8b{letter-spacing:1.613520px;}
.ls5c{letter-spacing:2.160000px;}
.lsb3{letter-spacing:2.167200px;}
.ls3d{letter-spacing:2.330640px;}
.ls90{letter-spacing:2.333520px;}
.ls8{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.047760px;}
.ls97{letter-spacing:3.312000px;}
.ls59{letter-spacing:3.600000px;}
.ls2a{letter-spacing:3.607200px;}
.ls7c{letter-spacing:3.744000px;}
.lsba{letter-spacing:3.746952px;}
.ls80{letter-spacing:3.764880px;}
.ls7b{letter-spacing:4.320000px;}
.ls5a{letter-spacing:5.040000px;}
.lsad{letter-spacing:5.047200px;}
.lsac{letter-spacing:5.199120px;}
.ls85{letter-spacing:5.760000px;}
.lsbf{letter-spacing:5.767200px;}
.ls92{letter-spacing:5.916240px;}
.ls58{letter-spacing:6.480000px;}
.ls55{letter-spacing:6.633360px;}
.ls8f{letter-spacing:7.200000px;}
.ls6e{letter-spacing:7.207200px;}
.ls3f{letter-spacing:7.350480px;}
.ls98{letter-spacing:7.920000px;}
.ls49{letter-spacing:7.927200px;}
.ls29{letter-spacing:8.640000px;}
.ls4f{letter-spacing:8.844480px;}
.lsaa{letter-spacing:9.360000px;}
.ls4e{letter-spacing:9.561600px;}
.ls4b{letter-spacing:10.080000px;}
.ls78{letter-spacing:10.278720px;}
.lsab{letter-spacing:10.800000px;}
.lsa4{letter-spacing:10.936080px;}
.ls67{letter-spacing:10.995840px;}
.ls38{letter-spacing:11.520000px;}
.ls63{letter-spacing:11.712960px;}
.ls6f{letter-spacing:12.240000px;}
.lsb5{letter-spacing:12.794616px;}
.ls7a{letter-spacing:12.960000px;}
.ls62{letter-spacing:13.147200px;}
.ls5b{letter-spacing:13.680000px;}
.ls79{letter-spacing:14.400000px;}
.ls6d{letter-spacing:15.120000px;}
.ls5d{letter-spacing:15.840000px;}
.ls87{letter-spacing:16.560000px;}
.ls4a{letter-spacing:17.280000px;}
.ls96{letter-spacing:18.000000px;}
.lsbe{letter-spacing:18.720000px;}
.ls93{letter-spacing:18.884160px;}
.ls94{letter-spacing:19.601280px;}
.lsb4{letter-spacing:20.880000px;}
.lsae{letter-spacing:23.040000px;}
.lsa3{letter-spacing:23.049432px;}
.ls8a{letter-spacing:23.760000px;}
.lsaf{letter-spacing:24.480000px;}
.ls89{letter-spacing:26.640000px;}
.ls41{letter-spacing:26.832240px;}
.ls88{letter-spacing:27.360000px;}
.lsbb{letter-spacing:28.983600px;}
.lsc2{letter-spacing:29.527200px;}
.lsb9{letter-spacing:41.760000px;}
.ls11{letter-spacing:138.608424px;}
.ls4{letter-spacing:501.326640px;}
.ls0{letter-spacing:862.755120px;}
.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;}
}
.ws136{word-spacing:-18.864000px;}
.ws4{word-spacing:-18.785520px;}
.ws8{word-spacing:-18.720000px;}
.wse2{word-spacing:-18.432000px;}
.wsd3{word-spacing:-18.288000px;}
.ws37{word-spacing:-18.144000px;}
.ws12f{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws111{word-spacing:-17.928000px;}
.wsc1{word-spacing:-17.856000px;}
.ws38{word-spacing:-17.784000px;}
.ws71{word-spacing:-17.712000px;}
.wsd4{word-spacing:-17.496000px;}
.ws13d{word-spacing:-17.352000px;}
.wsd5{word-spacing:-17.280000px;}
.ws9{word-spacing:-16.560000px;}
.wsc0{word-spacing:-15.776640px;}
.ws2{word-spacing:-15.298560px;}
.ws3b{word-spacing:-15.179040px;}
.wsf4{word-spacing:-15.119280px;}
.ws74{word-spacing:-15.059520px;}
.ws36{word-spacing:-14.999760px;}
.ws1{word-spacing:-14.940000px;}
.ws3a{word-spacing:-14.880240px;}
.ws0{word-spacing:-14.820480px;}
.wsc{word-spacing:-14.700960px;}
.wsd{word-spacing:-14.581440px;}
.wsf2{word-spacing:-14.521680px;}
.ws3{word-spacing:-14.402160px;}
.wsf3{word-spacing:-14.342400px;}
.wsc2{word-spacing:-14.282640px;}
.ws6{word-spacing:-14.163120px;}
.wsa{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.309920px;}
.wsa1{word-spacing:-12.494160px;}
.wsa0{word-spacing:-12.445920px;}
.ws77{word-spacing:-12.349440px;}
.ws73{word-spacing:-12.301200px;}
.ws75{word-spacing:-12.108240px;}
.ws11e{word-spacing:-12.060000px;}
.ws39{word-spacing:-11.770560px;}
.ws72{word-spacing:-11.384640px;}
.ws76{word-spacing:-11.095200px;}
.ws3c{word-spacing:-11.046960px;}
.wsd6{word-spacing:-10.661040px;}
.ws107{word-spacing:-10.440000px;}
.wse3{word-spacing:-10.419840px;}
.ws135{word-spacing:-9.720000px;}
.ws70{word-spacing:-0.896400px;}
.ws15{word-spacing:-0.758160px;}
.ws5e{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.358560px;}
.wsa2{word-spacing:-0.288000px;}
.ws6f{word-spacing:-0.239040px;}
.wsf{word-spacing:-0.179280px;}
.ws19{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.132480px;}
.ws5f{word-spacing:-0.119520px;}
.ws13{word-spacing:-0.084240px;}
.ws113{word-spacing:-0.072000px;}
.wse{word-spacing:0.000000px;}
.ws1a{word-spacing:0.056880px;}
.ws30{word-spacing:0.059760px;}
.ws140{word-spacing:0.072000px;}
.ws3d{word-spacing:0.119520px;}
.ws4e{word-spacing:0.144000px;}
.ws17{word-spacing:0.170640px;}
.ws143{word-spacing:0.216000px;}
.ws18{word-spacing:0.227520px;}
.ws10{word-spacing:0.239040px;}
.ws14{word-spacing:0.252720px;}
.ws23{word-spacing:0.270000px;}
.ws16{word-spacing:0.288000px;}
.wsba{word-spacing:0.289440px;}
.ws67{word-spacing:0.358560px;}
.ws6a{word-spacing:0.418320px;}
.ws13c{word-spacing:0.478080px;}
.ws12{word-spacing:0.537840px;}
.ws14b{word-spacing:0.576000px;}
.ws22{word-spacing:0.596160px;}
.ws89{word-spacing:0.597600px;}
.ws12b{word-spacing:0.675360px;}
.ws43{word-spacing:0.720000px;}
.ws2c{word-spacing:0.728640px;}
.ws2f{word-spacing:0.776880px;}
.ws116{word-spacing:0.792000px;}
.ws130{word-spacing:0.936000px;}
.wsbd{word-spacing:0.956160px;}
.ws134{word-spacing:0.964800px;}
.ws42{word-spacing:1.008000px;}
.wsbb{word-spacing:1.013040px;}
.ws118{word-spacing:1.075680px;}
.ws2a{word-spacing:1.126080px;}
.ws110{word-spacing:1.135440px;}
.wsc5{word-spacing:1.254960px;}
.ws121{word-spacing:1.296000px;}
.ws124{word-spacing:1.374480px;}
.wsbc{word-spacing:1.398960px;}
.ws44{word-spacing:1.440000px;}
.ws2b{word-spacing:1.457280px;}
.ws60{word-spacing:1.494000px;}
.wsef{word-spacing:1.640160px;}
.ws8b{word-spacing:1.673280px;}
.ws40{word-spacing:1.728000px;}
.ws6b{word-spacing:1.929600px;}
.ws31{word-spacing:1.972080px;}
.wsd1{word-spacing:2.016000px;}
.ws1c{word-spacing:2.053440px;}
.wsb9{word-spacing:2.151360px;}
.ws55{word-spacing:2.160000px;}
.ws8e{word-spacing:2.211120px;}
.ws11d{word-spacing:2.315520px;}
.wsb7{word-spacing:2.390400px;}
.ws41{word-spacing:2.448000px;}
.wsb8{word-spacing:2.569680px;}
.ws2d{word-spacing:2.689200px;}
.ws54{word-spacing:2.736000px;}
.ws53{word-spacing:2.880000px;}
.ws1f{word-spacing:2.914560px;}
.wsf0{word-spacing:2.928240px;}
.wsc6{word-spacing:3.107520px;}
.wsae{word-spacing:3.168000px;}
.wsfa{word-spacing:3.406320px;}
.ws78{word-spacing:3.456000px;}
.wsf1{word-spacing:3.525840px;}
.ws26{word-spacing:3.576960px;}
.ws4a{word-spacing:3.600000px;}
.wsb0{word-spacing:3.645360px;}
.ws34{word-spacing:3.705120px;}
.ws35{word-spacing:3.824640px;}
.ws49{word-spacing:3.888000px;}
.ws32{word-spacing:4.123440px;}
.ws20{word-spacing:4.173120px;}
.wscf{word-spacing:4.176000px;}
.wsce{word-spacing:4.320000px;}
.ws33{word-spacing:4.362480px;}
.ws131{word-spacing:4.392000px;}
.wsf9{word-spacing:4.541760px;}
.ws83{word-spacing:4.608000px;}
.ws88{word-spacing:4.840560px;}
.wsa3{word-spacing:4.896000px;}
.ws7a{word-spacing:5.040000px;}
.wsbf{word-spacing:5.079600px;}
.ws132{word-spacing:5.112000px;}
.wsbe{word-spacing:5.258880px;}
.wsd0{word-spacing:5.328000px;}
.ws137{word-spacing:5.438160px;}
.ws8a{word-spacing:5.557680px;}
.ws85{word-spacing:5.760000px;}
.ws10a{word-spacing:5.796720px;}
.ws133{word-spacing:5.832000px;}
.wsfc{word-spacing:5.976000px;}
.ws86{word-spacing:6.048000px;}
.ws90{word-spacing:6.274800px;}
.ws1e{word-spacing:6.359040px;}
.wscc{word-spacing:6.480000px;}
.ws92{word-spacing:6.513840px;}
.ws91{word-spacing:6.693120px;}
.ws108{word-spacing:6.696000px;}
.wseb{word-spacing:6.768000px;}
.ws99{word-spacing:6.872400px;}
.wsb5{word-spacing:6.991920px;}
.ws9b{word-spacing:7.051680px;}
.ws59{word-spacing:7.056000px;}
.ws7b{word-spacing:7.200000px;}
.wsc4{word-spacing:7.290720px;}
.ws93{word-spacing:7.470000px;}
.ws58{word-spacing:7.488000px;}
.ws9c{word-spacing:7.649280px;}
.wse7{word-spacing:7.776000px;}
.ws24{word-spacing:7.816320px;}
.wsc3{word-spacing:7.828560px;}
.ws101{word-spacing:7.848000px;}
.ws4d{word-spacing:7.920000px;}
.wse0{word-spacing:7.948080px;}
.ws8f{word-spacing:8.007840px;}
.wsdb{word-spacing:8.187120px;}
.wsa7{word-spacing:8.208000px;}
.ws97{word-spacing:8.485920px;}
.ws7e{word-spacing:8.496000px;}
.ws9a{word-spacing:8.605440px;}
.ws4f{word-spacing:8.640000px;}
.ws2e{word-spacing:8.724960px;}
.ws96{word-spacing:8.904240px;}
.ws50{word-spacing:8.928000px;}
.ws109{word-spacing:9.083520px;}
.wsee{word-spacing:9.117360px;}
.wsf8{word-spacing:9.203040px;}
.ws123{word-spacing:9.216000px;}
.ws122{word-spacing:9.288000px;}
.ws7c{word-spacing:9.360000px;}
.ws98{word-spacing:9.442080px;}
.wsf7{word-spacing:9.621360px;}
.wsaf{word-spacing:9.648000px;}
.wsd8{word-spacing:9.920160px;}
.ws1b{word-spacing:9.936000px;}
.ws5d{word-spacing:10.080000px;}
.wse9{word-spacing:10.159200px;}
.wsf6{word-spacing:10.338480px;}
.ws82{word-spacing:10.368000px;}
.wsb6{word-spacing:10.637280px;}
.ws12c{word-spacing:10.656000px;}
.ws29{word-spacing:10.797120px;}
.wsaa{word-spacing:10.800000px;}
.wsf5{word-spacing:10.876320px;}
.ws127{word-spacing:11.055600px;}
.wsc8{word-spacing:11.088000px;}
.wsfb{word-spacing:11.234880px;}
.ws61{word-spacing:11.354400px;}
.wse8{word-spacing:11.376000px;}
.ws5b{word-spacing:11.520000px;}
.ws12a{word-spacing:11.533680px;}
.wsd2{word-spacing:11.593440px;}
.ws62{word-spacing:11.772720px;}
.ws5a{word-spacing:11.808000px;}
.ws6e{word-spacing:11.952000px;}
.ws95{word-spacing:12.071520px;}
.ws84{word-spacing:12.096000px;}
.ws5c{word-spacing:12.240000px;}
.ws21{word-spacing:12.254400px;}
.ws94{word-spacing:12.310560px;}
.wsed{word-spacing:12.456000px;}
.ws51{word-spacing:12.528000px;}
.ws63{word-spacing:12.735360px;}
.wsd9{word-spacing:12.788640px;}
.ws141{word-spacing:12.816000px;}
.ws52{word-spacing:12.960000px;}
.ws64{word-spacing:13.027680px;}
.ws142{word-spacing:13.206960px;}
.ws115{word-spacing:13.248000px;}
.ws129{word-spacing:13.505760px;}
.ws48{word-spacing:13.680000px;}
.wsda{word-spacing:13.744800px;}
.wsa9{word-spacing:13.968000px;}
.ws25{word-spacing:14.374080px;}
.ws7f{word-spacing:14.400000px;}
.wsc9{word-spacing:14.688000px;}
.ws66{word-spacing:14.940000px;}
.ws27{word-spacing:15.102720px;}
.ws47{word-spacing:15.120000px;}
.ws65{word-spacing:15.179040px;}
.wsa6{word-spacing:15.408000px;}
.ws8d{word-spacing:15.657120px;}
.ws28{word-spacing:15.831360px;}
.wsac{word-spacing:15.840000px;}
.wse1{word-spacing:15.896160px;}
.wsab{word-spacing:16.128000px;}
.ws100{word-spacing:16.560000px;}
.ws8c{word-spacing:16.613280px;}
.wsff{word-spacing:16.848000px;}
.ws11a{word-spacing:17.091360px;}
.wsa8{word-spacing:17.280000px;}
.ws12e{word-spacing:17.330400px;}
.wsea{word-spacing:17.568000px;}
.ws119{word-spacing:17.808480px;}
.ws87{word-spacing:18.000000px;}
.wse4{word-spacing:18.288000px;}
.ws10c{word-spacing:18.525600px;}
.ws114{word-spacing:18.576000px;}
.wsc7{word-spacing:18.720000px;}
.ws10e{word-spacing:18.764640px;}
.ws11b{word-spacing:18.943920px;}
.wscb{word-spacing:19.008000px;}
.ws10f{word-spacing:19.242720px;}
.ws10d{word-spacing:19.422000px;}
.ws57{word-spacing:19.440000px;}
.ws128{word-spacing:19.481760px;}
.ws56{word-spacing:19.728000px;}
.ws6d{word-spacing:19.959840px;}
.ws79{word-spacing:20.016000px;}
.ws3f{word-spacing:20.160000px;}
.ws138{word-spacing:20.198880px;}
.ws147{word-spacing:20.378160px;}
.ws3e{word-spacing:20.448000px;}
.wse6{word-spacing:20.880000px;}
.wse5{word-spacing:21.168000px;}
.ws6c{word-spacing:21.370320px;}
.ws117{word-spacing:21.600000px;}
.ws126{word-spacing:22.170960px;}
.wsa4{word-spacing:22.176000px;}
.wsa5{word-spacing:22.320000px;}
.ws125{word-spacing:22.410000px;}
.ws112{word-spacing:22.608000px;}
.ws104{word-spacing:23.040000px;}
.ws4c{word-spacing:23.328000px;}
.ws80{word-spacing:23.760000px;}
.wsad{word-spacing:24.048000px;}
.wscd{word-spacing:24.480000px;}
.wsdc{word-spacing:24.740640px;}
.ws13b{word-spacing:24.768000px;}
.wsdf{word-spacing:25.039440px;}
.ws106{word-spacing:25.200000px;}
.wsdd{word-spacing:25.457760px;}
.ws105{word-spacing:25.488000px;}
.wsfe{word-spacing:25.920000px;}
.wsde{word-spacing:25.935840px;}
.ws10b{word-spacing:26.208000px;}
.ws9e{word-spacing:26.473680px;}
.wsca{word-spacing:26.640000px;}
.ws9f{word-spacing:26.712720px;}
.ws13e{word-spacing:26.928000px;}
.ws9d{word-spacing:27.190800px;}
.ws102{word-spacing:27.360000px;}
.ws103{word-spacing:27.648000px;}
.ws11c{word-spacing:28.864080px;}
.ws14a{word-spacing:29.376000px;}
.ws46{word-spacing:29.520000px;}
.ws149{word-spacing:29.808000px;}
.ws45{word-spacing:30.528000px;}
.ws11f{word-spacing:30.960000px;}
.ws120{word-spacing:31.248000px;}
.ws12d{word-spacing:31.680000px;}
.ws81{word-spacing:31.968000px;}
.ws14c{word-spacing:33.120000px;}
.wsec{word-spacing:33.408000px;}
.ws146{word-spacing:34.848000px;}
.ws7d{word-spacing:36.000000px;}
.ws4b{word-spacing:36.288000px;}
.ws139{word-spacing:37.440000px;}
.ws13a{word-spacing:37.728000px;}
.wsd7{word-spacing:39.168000px;}
.wsb4{word-spacing:40.158720px;}
.wsb2{word-spacing:41.114880px;}
.wsb3{word-spacing:41.294160px;}
.wsb1{word-spacing:41.473440px;}
.ws13f{word-spacing:41.760000px;}
.wsfd{word-spacing:42.480000px;}
.ws144{word-spacing:43.056000px;}
.ws148{word-spacing:43.200000px;}
.ws145{word-spacing:43.488000px;}
.ws69{word-spacing:101.352960px;}
.ws68{word-spacing:101.592000px;}
._15{margin-left:-8.710344px;}
._18{margin-left:-5.904000px;}
._14{margin-left:-4.344120px;}
._3{margin-left:-2.360520px;}
._2{margin-left:-1.081656px;}
._0{width:1.225080px;}
._4{width:2.902320px;}
._5{width:4.023360px;}
._e{width:5.835888px;}
._d{width:6.872400px;}
._7{width:8.640000px;}
._11{width:10.528272px;}
._8{width:12.174480px;}
._17{width:13.318920px;}
._10{width:14.397840px;}
._16{width:16.123680px;}
._1a{width:18.041544px;}
._1b{width:19.063440px;}
._9{width:20.373840px;}
._a{width:21.819888px;}
._12{width:23.255496px;}
._19{width:25.049520px;}
._f{width:26.539416px;}
._1c{width:27.574920px;}
._6{width:30.019680px;}
._b{width:32.472000px;}
._13{width:41.162688px;}
._1d{width:43.862832px;}
._1{width:114.231240px;}
._c{width:195.120000px;}
.fc7{color:rgb(148,54,52);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(112,48,160);}
.fc4{color:transparent;}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y8{bottom:-139.680000px;}
.y0{bottom:0.000000px;}
.y5{bottom:56.700000px;}
.y37{bottom:65.700000px;}
.y4{bottom:73.962540px;}
.y38{bottom:77.940000px;}
.y7{bottom:78.480000px;}
.y3{bottom:91.248120px;}
.y15e{bottom:116.088840px;}
.y100{bottom:118.760220px;}
.yb0{bottom:118.760760px;}
.y180{bottom:118.783260px;}
.y1e0{bottom:118.783800px;}
.y11a{bottom:118.789380px;}
.y1d6{bottom:118.789920px;}
.y61{bottom:118.794420px;}
.y234{bottom:118.800000px;}
.y209{bottom:118.800540px;}
.y2{bottom:125.640000px;}
.y15d{bottom:133.374420px;}
.yff{bottom:136.045800px;}
.yaf{bottom:136.046340px;}
.y1fd{bottom:136.053360px;}
.y146{bottom:136.058220px;}
.y17f{bottom:136.068840px;}
.y1df{bottom:136.069380px;}
.y60{bottom:136.074420px;}
.y119{bottom:136.074960px;}
.y191{bottom:136.075500px;}
.yd6{bottom:136.080540px;}
.y233{bottom:145.068840px;}
.y1d5{bottom:145.069380px;}
.y208{bottom:145.080000px;}
.y23d{bottom:145.800000px;}
.y15c{bottom:150.621120px;}
.y36{bottom:151.903260px;}
.yfe{bottom:153.331380px;}
.yae{bottom:153.331920px;}
.y7f{bottom:153.354420px;}
.y1de{bottom:153.354960px;}
.y5f{bottom:153.360540px;}
.y1fc{bottom:162.332820px;}
.y145{bottom:162.337680px;}
.y118{bottom:162.354420px;}
.y190{bottom:162.354960px;}
.yd5{bottom:162.360540px;}
.y35{bottom:169.188840px;}
.yfd{bottom:170.616960px;}
.yad{bottom:170.617500px;}
.y7e{bottom:170.634960px;}
.y17e{bottom:170.640000px;}
.y207{bottom:171.354420px;}
.y15b{bottom:176.900580px;}
.y23c{bottom:177.120000px;}
.y1fb{bottom:179.618400px;}
.y144{bottom:179.623260px;}
.y117{bottom:179.634420px;}
.y5e{bottom:179.640000px;}
.y232{bottom:179.641080px;}
.y34{bottom:186.474420px;}
.yfc{bottom:187.902540px;}
.yac{bottom:187.903080px;}
.yd4{bottom:188.634420px;}
.y206{bottom:188.640000px;}
.y15a{bottom:194.186160px;}
.y1fa{bottom:196.903980px;}
.y143{bottom:196.908840px;}
.y7d{bottom:196.914420px;}
.y23b{bottom:197.820000px;}
.y33{bottom:203.735880px;}
.yfb{bottom:205.188120px;}
.yab{bottom:205.188660px;}
.y5d{bottom:205.908840px;}
.yd3{bottom:205.920000px;}
.y231{bottom:205.920540px;}
.y159{bottom:211.292460px;}
.y116{bottom:214.188120px;}
.y1dd{bottom:214.188660px;}
.y1f9{bottom:214.189560px;}
.y142{bottom:214.194420px;}
.y7c{bottom:214.200000px;}
.y205{bottom:215.640000px;}
.y23a{bottom:218.520000px;}
.yfa{bottom:222.473700px;}
.yaa{bottom:222.474240px;}
.y5c{bottom:223.194420px;}
.y158{bottom:228.578040px;}
.y32{bottom:229.477500px;}
.y115{bottom:231.473700px;}
.y141{bottom:231.474240px;}
.y1f8{bottom:231.475140px;}
.y18f{bottom:232.194420px;}
.y230{bottom:232.200000px;}
.yd2{bottom:232.920000px;}
.y239{bottom:239.220000px;}
.yf9{bottom:239.529420px;}
.y204{bottom:239.736960px;}
.y7b{bottom:240.288840px;}
.y1be{bottom:240.473700px;}
.y5b{bottom:240.480000px;}
.y17d{bottom:248.524380px;}
.ya9{bottom:248.574420px;}
.y18e{bottom:249.480000px;}
.y157{bottom:254.857500px;}
.y31{bottom:255.756960px;}
.yf8{bottom:256.815000px;}
.y203{bottom:257.022540px;}
.y7a{bottom:257.574420px;}
.y1f7{bottom:257.575320px;}
.y1bd{bottom:257.580000px;}
.y22f{bottom:259.200000px;}
.y238{bottom:259.920000px;}
.y114{bottom:265.854960px;}
.ya8{bottom:265.860000px;}
.y5a{bottom:266.574420px;}
.y156{bottom:272.143080px;}
.y30{bottom:273.042540px;}
.y202{bottom:274.128840px;}
.y17c{bottom:274.803840px;}
.y79{bottom:274.854420px;}
.y1dc{bottom:274.854960px;}
.y18d{bottom:275.574420px;}
.y237{bottom:280.620000px;}
.yd1{bottom:281.880000px;}
.yf7{bottom:283.094460px;}
.y1f6{bottom:283.854780px;}
.y59{bottom:283.860000px;}
.y1bc{bottom:284.580000px;}
.y155{bottom:289.428660px;}
.y2f{bottom:290.148840px;}
.y201{bottom:291.414420px;}
.y140{bottom:292.088880px;}
.y17b{bottom:292.089420px;}
.y78{bottom:292.128840px;}
.ya7{bottom:292.134420px;}
.y18c{bottom:292.843260px;}
.y22e{bottom:299.160000px;}
.yf6{bottom:300.380040px;}
.y1db{bottom:301.134420px;}
.y1f5{bottom:301.140360px;}
.y1d4{bottom:301.320000px;}
.yd0{bottom:302.580000px;}
.y1bb{bottom:306.000000px;}
.y2e{bottom:307.434420px;}
.y200{bottom:308.700000px;}
.ya6{bottom:309.414240px;}
.y77{bottom:309.414420px;}
.y18b{bottom:310.128840px;}
.y58{bottom:310.140000px;}
.y154{bottom:315.528840px;}
.yf5{bottom:317.665620px;}
.y13f{bottom:318.368340px;}
.y17a{bottom:318.368880px;}
.y1da{bottom:318.408660px;}
.y22d{bottom:319.860000px;}
.y1d3{bottom:322.020000px;}
.ycf{bottom:323.280000px;}
.y2d{bottom:324.720000px;}
.y113{bottom:326.688120px;}
.y76{bottom:326.693700px;}
.y1ba{bottom:326.700000px;}
.y57{bottom:327.408120px;}
.y18a{bottom:327.414420px;}
.y1f4{bottom:327.419820px;}
.y236{bottom:331.020000px;}
.y153{bottom:332.814420px;}
.yf4{bottom:334.771920px;}
.ya5{bottom:335.514420px;}
.y13e{bottom:335.653920px;}
.y179{bottom:335.654460px;}
.y1ff{bottom:335.700000px;}
.y22c{bottom:340.560000px;}
.y1d2{bottom:342.720000px;}
.y75{bottom:343.788840px;}
.y112{bottom:343.794420px;}
.yce{bottom:343.980000px;}
.y1d9{bottom:344.508840px;}
.y56{bottom:344.693700px;}
.y189{bottom:344.700000px;}
.y1b9{bottom:347.400000px;}
.y152{bottom:350.100000px;}
.y2c{bottom:351.720000px;}
.y13d{bottom:352.760220px;}
.y178{bottom:352.760760px;}
.ya4{bottom:352.794420px;}
.y1f3{bottom:353.520000px;}
.y1fe{bottom:356.400000px;}
.yf3{bottom:361.051380px;}
.y74{bottom:361.074420px;}
.y111{bottom:361.080000px;}
.y22b{bottom:361.260000px;}
.y188{bottom:361.794420px;}
.y55{bottom:361.800000px;}
.ycd{bottom:364.680000px;}
.y1b8{bottom:368.100000px;}
.y13c{bottom:370.045800px;}
.y177{bottom:370.046340px;}
.ya3{bottom:370.080000px;}
.y1d1{bottom:372.420000px;}
.y151{bottom:377.100000px;}
.yf2{bottom:378.336960px;}
.y73{bottom:378.354420px;}
.y187{bottom:379.080000px;}
.y1f2{bottom:380.520000px;}
.ycc{bottom:385.380000px;}
.y13b{bottom:387.331380px;}
.y176{bottom:387.331920px;}
.y110{bottom:388.080000px;}
.y54{bottom:388.800000px;}
.y2b{bottom:390.600000px;}
.y22a{bottom:390.960000px;}
.y1d0{bottom:393.120000px;}
.yf1{bottom:395.622540px;}
.y72{bottom:395.640000px;}
.ya2{bottom:396.348840px;}
.y150{bottom:397.800000px;}
.y13a{bottom:404.616960px;}
.y175{bottom:404.617500px;}
.ycb{bottom:406.080000px;}
.y1b7{bottom:409.500000px;}
.y229{bottom:411.660000px;}
.yf0{bottom:412.908120px;}
.ya1{bottom:413.634420px;}
.y1cf{bottom:413.820000px;}
.y14f{bottom:418.500000px;}
.y2a{bottom:420.112800px;}
.y139{bottom:421.902540px;}
.y174{bottom:421.903080px;}
.y71{bottom:422.640000px;}
.yca{bottom:426.780000px;}
.yef{bottom:430.193700px;}
.y1f1{bottom:430.200000px;}
.ya0{bottom:430.920000px;}
.y228{bottom:432.360000px;}
.y1ce{bottom:434.520000px;}
.y1b6{bottom:438.399720px;}
.y29{bottom:438.676560px;}
.y138{bottom:439.188120px;}
.y173{bottom:439.188660px;}
.y14e{bottom:439.200000px;}
.y186{bottom:439.728840px;}
.y10f{bottom:444.060000px;}
.yee{bottom:447.300000px;}
.yc9{bottom:447.480000px;}
.y1f0{bottom:450.900000px;}
.y227{bottom:453.060000px;}
.y1cd{bottom:455.220000px;}
.y1b5{bottom:455.685300px;}
.y137{bottom:456.294420px;}
.y172{bottom:456.294960px;}
.y185{bottom:457.014420px;}
.y9f{bottom:457.920000px;}
.y70{bottom:459.900000px;}
.y10e{bottom:464.760000px;}
.y28{bottom:466.944480px;}
.yc8{bottom:468.180000px;}
.y1ef{bottom:471.600000px;}
.y1b4{bottom:472.970880px;}
.yed{bottom:473.568840px;}
.y136{bottom:473.580000px;}
.y171{bottom:473.580540px;}
.y226{bottom:473.760000px;}
.y184{bottom:474.300000px;}
.y1cc{bottom:475.920000px;}
.y14d{bottom:480.600000px;}
.y10d{bottom:485.460000px;}
.y27{bottom:486.021600px;}
.y9e{bottom:486.360000px;}
.yc7{bottom:488.880000px;}
.y6f{bottom:489.600000px;}
.y1b3{bottom:490.077180px;}
.yec{bottom:490.854420px;}
.y225{bottom:494.460000px;}
.y1cb{bottom:496.620000px;}
.y170{bottom:499.854420px;}
.y135{bottom:500.580000px;}
.y183{bottom:501.300000px;}
.y26{bottom:504.916560px;}
.y10c{bottom:506.160000px;}
.y9d{bottom:507.060000px;}
.y1b2{bottom:507.362760px;}
.yeb{bottom:508.134420px;}
.yc6{bottom:509.580000px;}
.y6e{bottom:510.300000px;}
.y224{bottom:515.160000px;}
.y16f{bottom:517.140000px;}
.y1ca{bottom:517.320000px;}
.y182{bottom:522.000000px;}
.y25{bottom:523.993680px;}
.y1b1{bottom:524.648340px;}
.yea{bottom:525.420000px;}
.y10b{bottom:526.860000px;}
.y9c{bottom:527.760000px;}
.yc5{bottom:530.280000px;}
.y6d{bottom:531.000000px;}
.y223{bottom:535.860000px;}
.y1c9{bottom:538.020000px;}
.y1b0{bottom:541.933920px;}
.y181{bottom:542.700000px;}
.y24{bottom:542.888640px;}
.y16e{bottom:544.140000px;}
.y10a{bottom:547.560000px;}
.y9b{bottom:548.460000px;}
.yc4{bottom:550.980000px;}
.y6c{bottom:551.700000px;}
.ye9{bottom:552.420000px;}
.y235{bottom:552.600000px;}
.y222{bottom:556.560000px;}
.y1c8{bottom:558.720000px;}
.y1af{bottom:559.219500px;}
.y23{bottom:561.965760px;}
.y53{bottom:563.400000px;}
.y134{bottom:566.820000px;}
.y109{bottom:568.260000px;}
.y9a{bottom:569.160000px;}
.yc3{bottom:571.680000px;}
.y6b{bottom:572.400000px;}
.y1ae{bottom:576.505080px;}
.y221{bottom:577.260000px;}
.ye8{bottom:579.420000px;}
.y22{bottom:580.860720px;}
.y6{bottom:584.100000px;}
.y133{bottom:587.520000px;}
.y108{bottom:588.960000px;}
.y99{bottom:589.860000px;}
.yc2{bottom:592.380000px;}
.y6a{bottom:593.100000px;}
.y1ad{bottom:593.611380px;}
.y220{bottom:597.960000px;}
.y21{bottom:599.755680px;}
.ye7{bottom:600.120000px;}
.y52{bottom:604.800000px;}
.y132{bottom:608.220000px;}
.y107{bottom:609.480000px;}
.y1ac{bottom:610.896960px;}
.y69{bottom:613.800000px;}
.y20{bottom:618.832800px;}
.y98{bottom:619.380000px;}
.y1c7{bottom:620.820000px;}
.yc1{bottom:622.080000px;}
.y1d8{bottom:625.500000px;}
.y21f{bottom:627.480000px;}
.y1ab{bottom:628.182540px;}
.y131{bottom:628.920000px;}
.ye6{bottom:629.820000px;}
.y106{bottom:630.180000px;}
.y51{bottom:634.500000px;}
.y1f{bottom:637.376400px;}
.y97{bottom:640.080000px;}
.y1c6{bottom:641.520000px;}
.yc0{bottom:642.780000px;}
.y1aa{bottom:645.468120px;}
.y16d{bottom:645.840000px;}
.y1d7{bottom:646.200000px;}
.y21e{bottom:648.180000px;}
.y130{bottom:649.620000px;}
.ye5{bottom:650.520000px;}
.y50{bottom:655.200000px;}
.y1e{bottom:656.453520px;}
.y105{bottom:659.143260px;}
.y96{bottom:660.780000px;}
.y1c5{bottom:662.220000px;}
.y1a9{bottom:662.753700px;}
.ybf{bottom:663.480000px;}
.y16c{bottom:666.540000px;}
.y1ee{bottom:666.900000px;}
.y21d{bottom:668.880000px;}
.y12f{bottom:670.320000px;}
.ye4{bottom:671.220000px;}
.y1d{bottom:675.712800px;}
.y4f{bottom:675.900000px;}
.y104{bottom:676.428840px;}
.y1a8{bottom:679.860000px;}
.y95{bottom:681.480000px;}
.y1c4{bottom:682.920000px;}
.ybe{bottom:684.180000px;}
.y16b{bottom:687.240000px;}
.y1ed{bottom:687.600000px;}
.y21c{bottom:689.580000px;}
.y12e{bottom:691.020000px;}
.ye3{bottom:691.920000px;}
.y103{bottom:693.714420px;}
.y1c{bottom:694.312560px;}
.y4e{bottom:696.600000px;}
.y94{bottom:702.180000px;}
.ybd{bottom:704.880000px;}
.y14c{bottom:705.600000px;}
.y1a7{bottom:706.860000px;}
.y16a{bottom:707.940000px;}
.y1ec{bottom:708.300000px;}
.y21b{bottom:710.280000px;}
.y102{bottom:711.000000px;}
.y12d{bottom:711.720000px;}
.ye2{bottom:712.620000px;}
.y4d{bottom:717.300000px;}
.y1b{bottom:722.746080px;}
.y93{bottom:722.880000px;}
.ybc{bottom:725.580000px;}
.y14b{bottom:726.300000px;}
.y1a6{bottom:727.560000px;}
.y169{bottom:728.640000px;}
.y1eb{bottom:729.000000px;}
.y21a{bottom:730.980000px;}
.y12c{bottom:732.420000px;}
.ye1{bottom:733.320000px;}
.y4c{bottom:738.000000px;}
.y1a{bottom:741.641040px;}
.y92{bottom:743.580000px;}
.ybb{bottom:746.280000px;}
.y14a{bottom:747.000000px;}
.y1a5{bottom:748.260000px;}
.y168{bottom:749.340000px;}
.y1ea{bottom:749.700000px;}
.y219{bottom:751.680000px;}
.y12b{bottom:753.120000px;}
.ye0{bottom:754.020000px;}
.y4b{bottom:758.700000px;}
.y19{bottom:760.718160px;}
.y91{bottom:764.280000px;}
.yba{bottom:766.980000px;}
.y149{bottom:767.700000px;}
.y1a4{bottom:768.960000px;}
.y1e9{bottom:770.400000px;}
.y218{bottom:772.380000px;}
.y12a{bottom:773.820000px;}
.ydf{bottom:774.720000px;}
.y167{bottom:778.102380px;}
.y4a{bottom:779.400000px;}
.y18{bottom:779.613120px;}
.y90{bottom:784.980000px;}
.yb9{bottom:787.680000px;}
.y148{bottom:788.400000px;}
.y1a3{bottom:789.660000px;}
.y1e8{bottom:791.100000px;}
.y217{bottom:793.080000px;}
.y129{bottom:794.520000px;}
.y166{bottom:795.387960px;}
.yde{bottom:795.420000px;}
.y17{bottom:798.508080px;}
.y49{bottom:800.100000px;}
.y8f{bottom:805.680000px;}
.yb8{bottom:808.380000px;}
.y147{bottom:809.100000px;}
.y1a2{bottom:810.360000px;}
.y1e7{bottom:811.800000px;}
.y165{bottom:812.673540px;}
.y216{bottom:813.780000px;}
.y128{bottom:815.220000px;}
.ydd{bottom:816.120000px;}
.y16{bottom:817.585200px;}
.y48{bottom:820.800000px;}
.y8e{bottom:826.380000px;}
.yb7{bottom:829.080000px;}
.y68{bottom:829.800000px;}
.y164{bottom:829.959120px;}
.y1a1{bottom:831.060000px;}
.y1e6{bottom:832.500000px;}
.y215{bottom:834.480000px;}
.y127{bottom:835.920000px;}
.y15{bottom:836.480160px;}
.ydc{bottom:836.820000px;}
.y47{bottom:841.500000px;}
.y8d{bottom:847.080000px;}
.y163{bottom:847.244700px;}
.yb6{bottom:849.780000px;}
.y67{bottom:850.500000px;}
.y1a0{bottom:851.760000px;}
.y1e5{bottom:853.200000px;}
.y214{bottom:855.180000px;}
.y14{bottom:855.557280px;}
.y126{bottom:856.620000px;}
.ydb{bottom:857.520000px;}
.y46{bottom:862.200000px;}
.y162{bottom:864.530280px;}
.y8c{bottom:867.780000px;}
.y66{bottom:871.200000px;}
.y19f{bottom:872.460000px;}
.y13{bottom:874.452240px;}
.y213{bottom:875.880000px;}
.y125{bottom:877.320000px;}
.yda{bottom:878.220000px;}
.yb5{bottom:878.557680px;}
.y161{bottom:881.815860px;}
.y45{bottom:882.900000px;}
.y8b{bottom:888.480000px;}
.y65{bottom:891.900000px;}
.y19e{bottom:893.160000px;}
.y12{bottom:893.347200px;}
.yb4{bottom:895.843260px;}
.y212{bottom:896.580000px;}
.y124{bottom:898.020000px;}
.y1c3{bottom:898.920000px;}
.y160{bottom:899.459460px;}
.y44{bottom:903.600000px;}
.y8a{bottom:909.180000px;}
.y11{bottom:912.060000px;}
.y64{bottom:912.600000px;}
.yb3{bottom:913.128840px;}
.yd9{bottom:913.500000px;}
.y19d{bottom:913.860000px;}
.y211{bottom:917.280000px;}
.y15f{bottom:918.000000px;}
.y123{bottom:918.720000px;}
.y1c2{bottom:919.620000px;}
.y43{bottom:924.300000px;}
.yb2{bottom:930.414420px;}
.y63{bottom:933.300000px;}
.yd8{bottom:934.200000px;}
.y19c{bottom:934.560000px;}
.y210{bottom:937.980000px;}
.y89{bottom:938.880000px;}
.y122{bottom:939.420000px;}
.y1c1{bottom:940.320000px;}
.y10{bottom:940.680000px;}
.y42{bottom:945.000000px;}
.yb1{bottom:947.700000px;}
.y62{bottom:954.000000px;}
.y19b{bottom:955.260000px;}
.y20f{bottom:958.680000px;}
.y88{bottom:959.580000px;}
.yf{bottom:961.380000px;}
.yd7{bottom:965.700000px;}
.y121{bottom:968.365800px;}
.y41{bottom:974.700000px;}
.y1c0{bottom:975.600000px;}
.y19a{bottom:975.960000px;}
.y20e{bottom:979.380000px;}
.y87{bottom:980.280000px;}
.y120{bottom:985.651380px;}
.y101{bottom:986.400000px;}
.ye{bottom:991.080000px;}
.y40{bottom:995.400000px;}
.y199{bottom:996.660000px;}
.y20d{bottom:1000.080000px;}
.y86{bottom:1000.980000px;}
.y11f{bottom:1002.757680px;}
.y1bf{bottom:1007.100000px;}
.yd{bottom:1011.780000px;}
.y3f{bottom:1016.100000px;}
.y198{bottom:1017.360000px;}
.y11e{bottom:1020.043260px;}
.y20c{bottom:1020.780000px;}
.y85{bottom:1021.680000px;}
.y1e4{bottom:1027.800000px;}
.y3e{bottom:1036.800000px;}
.y11d{bottom:1037.328840px;}
.y197{bottom:1038.060000px;}
.y20b{bottom:1041.480000px;}
.y84{bottom:1042.380000px;}
.yc{bottom:1047.784680px;}
.y11c{bottom:1054.614420px;}
.y1e3{bottom:1056.572100px;}
.y3d{bottom:1057.500000px;}
.y196{bottom:1058.760000px;}
.y20a{bottom:1062.180000px;}
.y83{bottom:1063.080000px;}
.y11b{bottom:1071.900000px;}
.yb{bottom:1072.445940px;}
.y1e2{bottom:1073.857680px;}
.y3c{bottom:1078.200000px;}
.y195{bottom:1079.460000px;}
.y82{bottom:1083.780000px;}
.y1e1{bottom:1091.143260px;}
.y3b{bottom:1098.900000px;}
.y81{bottom:1104.480000px;}
.y194{bottom:1108.428840px;}
.ya{bottom:1112.038740px;}
.y3a{bottom:1119.600000px;}
.y193{bottom:1125.714420px;}
.y9{bottom:1136.700000px;}
.y80{bottom:1139.940000px;}
.y39{bottom:1140.300000px;}
.y192{bottom:1143.000000px;}
.y1{bottom:1195.740000px;}
.h3{height:58.651172px;}
.h1a{height:58.669172px;}
.h10{height:58.671332px;}
.hd{height:58.673492px;}
.h12{height:58.674212px;}
.hf{height:58.676372px;}
.he{height:58.695812px;}
.h1b{height:58.696532px;}
.hc{height:58.698692px;}
.h19{height:58.718132px;}
.h15{height:58.738292px;}
.hb{height:58.747652px;}
.h1d{height:58.757732px;}
.h16{height:58.806692px;}
.h13{height:58.853492px;}
.h14{height:58.855652px;}
.h18{height:58.873652px;}
.h1e{height:59.105554px;}
.h1c{height:59.150194px;}
.h7{height:59.601445px;}
.h2{height:60.226875px;}
.h6{height:60.670898px;}
.h17{height:64.747316px;}
.ha{height:65.010937px;}
.h9{height:66.757500px;}
.h4{height:70.664062px;}
.h11{height:72.562500px;}
.h8{height:74.704922px;}
.h5{height:94.858500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:89.821500px;}
.w2{width:90.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:2.880000px;}
.xc{left:31.500000px;}
.x4{left:36.000000px;}
.x5{left:79.200000px;}
.xf{left:82.800000px;}
.x1{left:127.620000px;}
.xa{left:180.720000px;}
.x7{left:341.460000px;}
.xe{left:491.580000px;}
.x6{left:564.480000px;}
.x8{left:577.980000px;}
.xd{left:588.600000px;}
.x9{left:622.440000px;}
.x2{left:659.160000px;}
.x3{left:784.080000px;}
@media print{
.v1{vertical-align:-60.822400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.659200pt;}
.v3{vertical-align:21.121920pt;}
.v2{vertical-align:24.320000pt;}
.lsb7{letter-spacing:-1.920000pt;}
.ls77{letter-spacing:-1.457920pt;}
.lsb2{letter-spacing:-1.344000pt;}
.ls8e{letter-spacing:-1.280000pt;}
.ls54{letter-spacing:-1.243520pt;}
.ls53{letter-spacing:-0.956160pt;}
.ls36{letter-spacing:-0.900480pt;}
.ls42{letter-spacing:-0.896000pt;}
.ls46{letter-spacing:-0.857600pt;}
.ls20{letter-spacing:-0.808960pt;}
.ls9f{letter-spacing:-0.704000pt;}
.lsa1{letter-spacing:-0.690560pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls43{letter-spacing:-0.600320pt;}
.ls66{letter-spacing:-0.584320pt;}
.lsbd{letter-spacing:-0.576000pt;}
.ls37{letter-spacing:-0.531200pt;}
.lsc3{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.478080pt;}
.ls6c{letter-spacing:-0.448000pt;}
.ls48{letter-spacing:-0.424960pt;}
.ls65{letter-spacing:-0.371840pt;}
.ls17{letter-spacing:-0.318720pt;}
.ls35{letter-spacing:-0.257280pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.224640pt;}
.ls25{letter-spacing:-0.212480pt;}
.ls1d{letter-spacing:-0.202240pt;}
.ls32{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.151680pt;}
.ls31{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.106240pt;}
.ls23{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.074880pt;}
.lsa0{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.053120pt;}
.ls1e{letter-spacing:-0.050560pt;}
.ls14{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.007488pt;}
.ls72{letter-spacing:0.010624pt;}
.lsb6{letter-spacing:0.023168pt;}
.ls6a{letter-spacing:0.031040pt;}
.ls4d{letter-spacing:0.031360pt;}
.ls5f{letter-spacing:0.032640pt;}
.ls45{letter-spacing:0.042880pt;}
.ls2e{letter-spacing:0.047360pt;}
.ls39{letter-spacing:0.050560pt;}
.ls26{letter-spacing:0.053120pt;}
.ls3c{letter-spacing:0.055488pt;}
.lsa{letter-spacing:0.064000pt;}
.ls9c{letter-spacing:0.064640pt;}
.ls60{letter-spacing:0.071680pt;}
.lsa7{letter-spacing:0.074880pt;}
.lsc0{letter-spacing:0.078080pt;}
.ls82{letter-spacing:0.101568pt;}
.ls12{letter-spacing:0.106240pt;}
.ls7e{letter-spacing:0.109440pt;}
.ls22{letter-spacing:0.117760pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls76{letter-spacing:0.133760pt;}
.ls40{letter-spacing:0.136320pt;}
.lsbc{letter-spacing:0.148736pt;}
.ls69{letter-spacing:0.149760pt;}
.lsc{letter-spacing:0.151040pt;}
.ls81{letter-spacing:0.158720pt;}
.ls1{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.163200pt;}
.ls73{letter-spacing:0.166528pt;}
.ls4c{letter-spacing:0.172160pt;}
.ls3b{letter-spacing:0.190080pt;}
.lsb{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.212480pt;}
.ls44{letter-spacing:0.214400pt;}
.ls3{letter-spacing:0.217792pt;}
.ls18{letter-spacing:0.224640pt;}
.ls68{letter-spacing:0.239040pt;}
.ls8d{letter-spacing:0.244352pt;}
.ls3a{letter-spacing:0.249664pt;}
.ls28{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.257280pt;}
.ls10{letter-spacing:0.260288pt;}
.ls8c{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.266240pt;}
.ls7f{letter-spacing:0.268416pt;}
.lsa6{letter-spacing:0.277696pt;}
.ls95{letter-spacing:0.282880pt;}
.lsa2{letter-spacing:0.286848pt;}
.ls24{letter-spacing:0.294400pt;}
.ls5{letter-spacing:0.299520pt;}
.ls2{letter-spacing:0.318720pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb0{letter-spacing:0.336064pt;}
.ls51{letter-spacing:0.343040pt;}
.ls9e{letter-spacing:0.377216pt;}
.ls34{letter-spacing:0.384000pt;}
.ls52{letter-spacing:0.385920pt;}
.lsb1{letter-spacing:0.393600pt;}
.ls9a{letter-spacing:0.408960pt;}
.ls74{letter-spacing:0.411520pt;}
.ls99{letter-spacing:0.425600pt;}
.ls2c{letter-spacing:0.430720pt;}
.ls30{letter-spacing:0.447360pt;}
.ls83{letter-spacing:0.462976pt;}
.ls6{letter-spacing:0.512000pt;}
.ls9b{letter-spacing:0.518720pt;}
.lsd{letter-spacing:0.532480pt;}
.ls50{letter-spacing:0.545280pt;}
.ls75{letter-spacing:0.577792pt;}
.ls2f{letter-spacing:0.583680pt;}
.lsc1{letter-spacing:0.633088pt;}
.ls21{letter-spacing:0.640000pt;}
.ls86{letter-spacing:0.646400pt;}
.ls5e{letter-spacing:0.652800pt;}
.ls71{letter-spacing:0.657664pt;}
.lsa8{letter-spacing:0.687360pt;}
.lsa5{letter-spacing:0.707840pt;}
.ls9d{letter-spacing:0.720000pt;}
.ls64{letter-spacing:0.743680pt;}
.ls7d{letter-spacing:0.754304pt;}
.lsa9{letter-spacing:0.760960pt;}
.lsb8{letter-spacing:0.768000pt;}
.ls70{letter-spacing:0.796800pt;}
.ls2d{letter-spacing:0.807040pt;}
.ls91{letter-spacing:0.981184pt;}
.ls84{letter-spacing:1.060800pt;}
.ls61{letter-spacing:1.071360pt;}
.ls6b{letter-spacing:1.114880pt;}
.ls27{letter-spacing:1.280000pt;}
.ls56{letter-spacing:1.333312pt;}
.ls57{letter-spacing:1.381120pt;}
.ls8b{letter-spacing:1.434240pt;}
.ls5c{letter-spacing:1.920000pt;}
.lsb3{letter-spacing:1.926400pt;}
.ls3d{letter-spacing:2.071680pt;}
.ls90{letter-spacing:2.074240pt;}
.ls8{letter-spacing:2.560000pt;}
.lsf{letter-spacing:2.709120pt;}
.ls97{letter-spacing:2.944000pt;}
.ls59{letter-spacing:3.200000pt;}
.ls2a{letter-spacing:3.206400pt;}
.ls7c{letter-spacing:3.328000pt;}
.lsba{letter-spacing:3.330624pt;}
.ls80{letter-spacing:3.346560pt;}
.ls7b{letter-spacing:3.840000pt;}
.ls5a{letter-spacing:4.480000pt;}
.lsad{letter-spacing:4.486400pt;}
.lsac{letter-spacing:4.621440pt;}
.ls85{letter-spacing:5.120000pt;}
.lsbf{letter-spacing:5.126400pt;}
.ls92{letter-spacing:5.258880pt;}
.ls58{letter-spacing:5.760000pt;}
.ls55{letter-spacing:5.896320pt;}
.ls8f{letter-spacing:6.400000pt;}
.ls6e{letter-spacing:6.406400pt;}
.ls3f{letter-spacing:6.533760pt;}
.ls98{letter-spacing:7.040000pt;}
.ls49{letter-spacing:7.046400pt;}
.ls29{letter-spacing:7.680000pt;}
.ls4f{letter-spacing:7.861760pt;}
.lsaa{letter-spacing:8.320000pt;}
.ls4e{letter-spacing:8.499200pt;}
.ls4b{letter-spacing:8.960000pt;}
.ls78{letter-spacing:9.136640pt;}
.lsab{letter-spacing:9.600000pt;}
.lsa4{letter-spacing:9.720960pt;}
.ls67{letter-spacing:9.774080pt;}
.ls38{letter-spacing:10.240000pt;}
.ls63{letter-spacing:10.411520pt;}
.ls6f{letter-spacing:10.880000pt;}
.lsb5{letter-spacing:11.372992pt;}
.ls7a{letter-spacing:11.520000pt;}
.ls62{letter-spacing:11.686400pt;}
.ls5b{letter-spacing:12.160000pt;}
.ls79{letter-spacing:12.800000pt;}
.ls6d{letter-spacing:13.440000pt;}
.ls5d{letter-spacing:14.080000pt;}
.ls87{letter-spacing:14.720000pt;}
.ls4a{letter-spacing:15.360000pt;}
.ls96{letter-spacing:16.000000pt;}
.lsbe{letter-spacing:16.640000pt;}
.ls93{letter-spacing:16.785920pt;}
.ls94{letter-spacing:17.423360pt;}
.lsb4{letter-spacing:18.560000pt;}
.lsae{letter-spacing:20.480000pt;}
.lsa3{letter-spacing:20.488384pt;}
.ls8a{letter-spacing:21.120000pt;}
.lsaf{letter-spacing:21.760000pt;}
.ls89{letter-spacing:23.680000pt;}
.ls41{letter-spacing:23.850880pt;}
.ls88{letter-spacing:24.320000pt;}
.lsbb{letter-spacing:25.763200pt;}
.lsc2{letter-spacing:26.246400pt;}
.lsb9{letter-spacing:37.120000pt;}
.ls11{letter-spacing:123.207488pt;}
.ls4{letter-spacing:445.623680pt;}
.ls0{letter-spacing:766.893440pt;}
.ws136{word-spacing:-16.768000pt;}
.ws4{word-spacing:-16.698240pt;}
.ws8{word-spacing:-16.640000pt;}
.wse2{word-spacing:-16.384000pt;}
.wsd3{word-spacing:-16.256000pt;}
.ws37{word-spacing:-16.128000pt;}
.ws12f{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws111{word-spacing:-15.936000pt;}
.wsc1{word-spacing:-15.872000pt;}
.ws38{word-spacing:-15.808000pt;}
.ws71{word-spacing:-15.744000pt;}
.wsd4{word-spacing:-15.552000pt;}
.ws13d{word-spacing:-15.424000pt;}
.wsd5{word-spacing:-15.360000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsc0{word-spacing:-14.023680pt;}
.ws2{word-spacing:-13.598720pt;}
.ws3b{word-spacing:-13.492480pt;}
.wsf4{word-spacing:-13.439360pt;}
.ws74{word-spacing:-13.386240pt;}
.ws36{word-spacing:-13.333120pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3a{word-spacing:-13.226880pt;}
.ws0{word-spacing:-13.173760pt;}
.wsc{word-spacing:-13.067520pt;}
.wsd{word-spacing:-12.961280pt;}
.wsf2{word-spacing:-12.908160pt;}
.ws3{word-spacing:-12.801920pt;}
.wsf3{word-spacing:-12.748800pt;}
.wsc2{word-spacing:-12.695680pt;}
.ws6{word-spacing:-12.589440pt;}
.wsa{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.831040pt;}
.wsa1{word-spacing:-11.105920pt;}
.wsa0{word-spacing:-11.063040pt;}
.ws77{word-spacing:-10.977280pt;}
.ws73{word-spacing:-10.934400pt;}
.ws75{word-spacing:-10.762880pt;}
.ws11e{word-spacing:-10.720000pt;}
.ws39{word-spacing:-10.462720pt;}
.ws72{word-spacing:-10.119680pt;}
.ws76{word-spacing:-9.862400pt;}
.ws3c{word-spacing:-9.819520pt;}
.wsd6{word-spacing:-9.476480pt;}
.ws107{word-spacing:-9.280000pt;}
.wse3{word-spacing:-9.262080pt;}
.ws135{word-spacing:-8.640000pt;}
.ws70{word-spacing:-0.796800pt;}
.ws15{word-spacing:-0.673920pt;}
.ws5e{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.318720pt;}
.wsa2{word-spacing:-0.256000pt;}
.ws6f{word-spacing:-0.212480pt;}
.wsf{word-spacing:-0.159360pt;}
.ws19{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.117760pt;}
.ws5f{word-spacing:-0.106240pt;}
.ws13{word-spacing:-0.074880pt;}
.ws113{word-spacing:-0.064000pt;}
.wse{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.050560pt;}
.ws30{word-spacing:0.053120pt;}
.ws140{word-spacing:0.064000pt;}
.ws3d{word-spacing:0.106240pt;}
.ws4e{word-spacing:0.128000pt;}
.ws17{word-spacing:0.151680pt;}
.ws143{word-spacing:0.192000pt;}
.ws18{word-spacing:0.202240pt;}
.ws10{word-spacing:0.212480pt;}
.ws14{word-spacing:0.224640pt;}
.ws23{word-spacing:0.240000pt;}
.ws16{word-spacing:0.256000pt;}
.wsba{word-spacing:0.257280pt;}
.ws67{word-spacing:0.318720pt;}
.ws6a{word-spacing:0.371840pt;}
.ws13c{word-spacing:0.424960pt;}
.ws12{word-spacing:0.478080pt;}
.ws14b{word-spacing:0.512000pt;}
.ws22{word-spacing:0.529920pt;}
.ws89{word-spacing:0.531200pt;}
.ws12b{word-spacing:0.600320pt;}
.ws43{word-spacing:0.640000pt;}
.ws2c{word-spacing:0.647680pt;}
.ws2f{word-spacing:0.690560pt;}
.ws116{word-spacing:0.704000pt;}
.ws130{word-spacing:0.832000pt;}
.wsbd{word-spacing:0.849920pt;}
.ws134{word-spacing:0.857600pt;}
.ws42{word-spacing:0.896000pt;}
.wsbb{word-spacing:0.900480pt;}
.ws118{word-spacing:0.956160pt;}
.ws2a{word-spacing:1.000960pt;}
.ws110{word-spacing:1.009280pt;}
.wsc5{word-spacing:1.115520pt;}
.ws121{word-spacing:1.152000pt;}
.ws124{word-spacing:1.221760pt;}
.wsbc{word-spacing:1.243520pt;}
.ws44{word-spacing:1.280000pt;}
.ws2b{word-spacing:1.295360pt;}
.ws60{word-spacing:1.328000pt;}
.wsef{word-spacing:1.457920pt;}
.ws8b{word-spacing:1.487360pt;}
.ws40{word-spacing:1.536000pt;}
.ws6b{word-spacing:1.715200pt;}
.ws31{word-spacing:1.752960pt;}
.wsd1{word-spacing:1.792000pt;}
.ws1c{word-spacing:1.825280pt;}
.wsb9{word-spacing:1.912320pt;}
.ws55{word-spacing:1.920000pt;}
.ws8e{word-spacing:1.965440pt;}
.ws11d{word-spacing:2.058240pt;}
.wsb7{word-spacing:2.124800pt;}
.ws41{word-spacing:2.176000pt;}
.wsb8{word-spacing:2.284160pt;}
.ws2d{word-spacing:2.390400pt;}
.ws54{word-spacing:2.432000pt;}
.ws53{word-spacing:2.560000pt;}
.ws1f{word-spacing:2.590720pt;}
.wsf0{word-spacing:2.602880pt;}
.wsc6{word-spacing:2.762240pt;}
.wsae{word-spacing:2.816000pt;}
.wsfa{word-spacing:3.027840pt;}
.ws78{word-spacing:3.072000pt;}
.wsf1{word-spacing:3.134080pt;}
.ws26{word-spacing:3.179520pt;}
.ws4a{word-spacing:3.200000pt;}
.wsb0{word-spacing:3.240320pt;}
.ws34{word-spacing:3.293440pt;}
.ws35{word-spacing:3.399680pt;}
.ws49{word-spacing:3.456000pt;}
.ws32{word-spacing:3.665280pt;}
.ws20{word-spacing:3.709440pt;}
.wscf{word-spacing:3.712000pt;}
.wsce{word-spacing:3.840000pt;}
.ws33{word-spacing:3.877760pt;}
.ws131{word-spacing:3.904000pt;}
.wsf9{word-spacing:4.037120pt;}
.ws83{word-spacing:4.096000pt;}
.ws88{word-spacing:4.302720pt;}
.wsa3{word-spacing:4.352000pt;}
.ws7a{word-spacing:4.480000pt;}
.wsbf{word-spacing:4.515200pt;}
.ws132{word-spacing:4.544000pt;}
.wsbe{word-spacing:4.674560pt;}
.wsd0{word-spacing:4.736000pt;}
.ws137{word-spacing:4.833920pt;}
.ws8a{word-spacing:4.940160pt;}
.ws85{word-spacing:5.120000pt;}
.ws10a{word-spacing:5.152640pt;}
.ws133{word-spacing:5.184000pt;}
.wsfc{word-spacing:5.312000pt;}
.ws86{word-spacing:5.376000pt;}
.ws90{word-spacing:5.577600pt;}
.ws1e{word-spacing:5.652480pt;}
.wscc{word-spacing:5.760000pt;}
.ws92{word-spacing:5.790080pt;}
.ws91{word-spacing:5.949440pt;}
.ws108{word-spacing:5.952000pt;}
.wseb{word-spacing:6.016000pt;}
.ws99{word-spacing:6.108800pt;}
.wsb5{word-spacing:6.215040pt;}
.ws9b{word-spacing:6.268160pt;}
.ws59{word-spacing:6.272000pt;}
.ws7b{word-spacing:6.400000pt;}
.wsc4{word-spacing:6.480640pt;}
.ws93{word-spacing:6.640000pt;}
.ws58{word-spacing:6.656000pt;}
.ws9c{word-spacing:6.799360pt;}
.wse7{word-spacing:6.912000pt;}
.ws24{word-spacing:6.947840pt;}
.wsc3{word-spacing:6.958720pt;}
.ws101{word-spacing:6.976000pt;}
.ws4d{word-spacing:7.040000pt;}
.wse0{word-spacing:7.064960pt;}
.ws8f{word-spacing:7.118080pt;}
.wsdb{word-spacing:7.277440pt;}
.wsa7{word-spacing:7.296000pt;}
.ws97{word-spacing:7.543040pt;}
.ws7e{word-spacing:7.552000pt;}
.ws9a{word-spacing:7.649280pt;}
.ws4f{word-spacing:7.680000pt;}
.ws2e{word-spacing:7.755520pt;}
.ws96{word-spacing:7.914880pt;}
.ws50{word-spacing:7.936000pt;}
.ws109{word-spacing:8.074240pt;}
.wsee{word-spacing:8.104320pt;}
.wsf8{word-spacing:8.180480pt;}
.ws123{word-spacing:8.192000pt;}
.ws122{word-spacing:8.256000pt;}
.ws7c{word-spacing:8.320000pt;}
.ws98{word-spacing:8.392960pt;}
.wsf7{word-spacing:8.552320pt;}
.wsaf{word-spacing:8.576000pt;}
.wsd8{word-spacing:8.817920pt;}
.ws1b{word-spacing:8.832000pt;}
.ws5d{word-spacing:8.960000pt;}
.wse9{word-spacing:9.030400pt;}
.wsf6{word-spacing:9.189760pt;}
.ws82{word-spacing:9.216000pt;}
.wsb6{word-spacing:9.455360pt;}
.ws12c{word-spacing:9.472000pt;}
.ws29{word-spacing:9.597440pt;}
.wsaa{word-spacing:9.600000pt;}
.wsf5{word-spacing:9.667840pt;}
.ws127{word-spacing:9.827200pt;}
.wsc8{word-spacing:9.856000pt;}
.wsfb{word-spacing:9.986560pt;}
.ws61{word-spacing:10.092800pt;}
.wse8{word-spacing:10.112000pt;}
.ws5b{word-spacing:10.240000pt;}
.ws12a{word-spacing:10.252160pt;}
.wsd2{word-spacing:10.305280pt;}
.ws62{word-spacing:10.464640pt;}
.ws5a{word-spacing:10.496000pt;}
.ws6e{word-spacing:10.624000pt;}
.ws95{word-spacing:10.730240pt;}
.ws84{word-spacing:10.752000pt;}
.ws5c{word-spacing:10.880000pt;}
.ws21{word-spacing:10.892800pt;}
.ws94{word-spacing:10.942720pt;}
.wsed{word-spacing:11.072000pt;}
.ws51{word-spacing:11.136000pt;}
.ws63{word-spacing:11.320320pt;}
.wsd9{word-spacing:11.367680pt;}
.ws141{word-spacing:11.392000pt;}
.ws52{word-spacing:11.520000pt;}
.ws64{word-spacing:11.580160pt;}
.ws142{word-spacing:11.739520pt;}
.ws115{word-spacing:11.776000pt;}
.ws129{word-spacing:12.005120pt;}
.ws48{word-spacing:12.160000pt;}
.wsda{word-spacing:12.217600pt;}
.wsa9{word-spacing:12.416000pt;}
.ws25{word-spacing:12.776960pt;}
.ws7f{word-spacing:12.800000pt;}
.wsc9{word-spacing:13.056000pt;}
.ws66{word-spacing:13.280000pt;}
.ws27{word-spacing:13.424640pt;}
.ws47{word-spacing:13.440000pt;}
.ws65{word-spacing:13.492480pt;}
.wsa6{word-spacing:13.696000pt;}
.ws8d{word-spacing:13.917440pt;}
.ws28{word-spacing:14.072320pt;}
.wsac{word-spacing:14.080000pt;}
.wse1{word-spacing:14.129920pt;}
.wsab{word-spacing:14.336000pt;}
.ws100{word-spacing:14.720000pt;}
.ws8c{word-spacing:14.767360pt;}
.wsff{word-spacing:14.976000pt;}
.ws11a{word-spacing:15.192320pt;}
.wsa8{word-spacing:15.360000pt;}
.ws12e{word-spacing:15.404800pt;}
.wsea{word-spacing:15.616000pt;}
.ws119{word-spacing:15.829760pt;}
.ws87{word-spacing:16.000000pt;}
.wse4{word-spacing:16.256000pt;}
.ws10c{word-spacing:16.467200pt;}
.ws114{word-spacing:16.512000pt;}
.wsc7{word-spacing:16.640000pt;}
.ws10e{word-spacing:16.679680pt;}
.ws11b{word-spacing:16.839040pt;}
.wscb{word-spacing:16.896000pt;}
.ws10f{word-spacing:17.104640pt;}
.ws10d{word-spacing:17.264000pt;}
.ws57{word-spacing:17.280000pt;}
.ws128{word-spacing:17.317120pt;}
.ws56{word-spacing:17.536000pt;}
.ws6d{word-spacing:17.742080pt;}
.ws79{word-spacing:17.792000pt;}
.ws3f{word-spacing:17.920000pt;}
.ws138{word-spacing:17.954560pt;}
.ws147{word-spacing:18.113920pt;}
.ws3e{word-spacing:18.176000pt;}
.wse6{word-spacing:18.560000pt;}
.wse5{word-spacing:18.816000pt;}
.ws6c{word-spacing:18.995840pt;}
.ws117{word-spacing:19.200000pt;}
.ws126{word-spacing:19.707520pt;}
.wsa4{word-spacing:19.712000pt;}
.wsa5{word-spacing:19.840000pt;}
.ws125{word-spacing:19.920000pt;}
.ws112{word-spacing:20.096000pt;}
.ws104{word-spacing:20.480000pt;}
.ws4c{word-spacing:20.736000pt;}
.ws80{word-spacing:21.120000pt;}
.wsad{word-spacing:21.376000pt;}
.wscd{word-spacing:21.760000pt;}
.wsdc{word-spacing:21.991680pt;}
.ws13b{word-spacing:22.016000pt;}
.wsdf{word-spacing:22.257280pt;}
.ws106{word-spacing:22.400000pt;}
.wsdd{word-spacing:22.629120pt;}
.ws105{word-spacing:22.656000pt;}
.wsfe{word-spacing:23.040000pt;}
.wsde{word-spacing:23.054080pt;}
.ws10b{word-spacing:23.296000pt;}
.ws9e{word-spacing:23.532160pt;}
.wsca{word-spacing:23.680000pt;}
.ws9f{word-spacing:23.744640pt;}
.ws13e{word-spacing:23.936000pt;}
.ws9d{word-spacing:24.169600pt;}
.ws102{word-spacing:24.320000pt;}
.ws103{word-spacing:24.576000pt;}
.ws11c{word-spacing:25.656960pt;}
.ws14a{word-spacing:26.112000pt;}
.ws46{word-spacing:26.240000pt;}
.ws149{word-spacing:26.496000pt;}
.ws45{word-spacing:27.136000pt;}
.ws11f{word-spacing:27.520000pt;}
.ws120{word-spacing:27.776000pt;}
.ws12d{word-spacing:28.160000pt;}
.ws81{word-spacing:28.416000pt;}
.ws14c{word-spacing:29.440000pt;}
.wsec{word-spacing:29.696000pt;}
.ws146{word-spacing:30.976000pt;}
.ws7d{word-spacing:32.000000pt;}
.ws4b{word-spacing:32.256000pt;}
.ws139{word-spacing:33.280000pt;}
.ws13a{word-spacing:33.536000pt;}
.wsd7{word-spacing:34.816000pt;}
.wsb4{word-spacing:35.696640pt;}
.wsb2{word-spacing:36.546560pt;}
.wsb3{word-spacing:36.705920pt;}
.wsb1{word-spacing:36.865280pt;}
.ws13f{word-spacing:37.120000pt;}
.wsfd{word-spacing:37.760000pt;}
.ws144{word-spacing:38.272000pt;}
.ws148{word-spacing:38.400000pt;}
.ws145{word-spacing:38.656000pt;}
.ws69{word-spacing:90.091520pt;}
.ws68{word-spacing:90.304000pt;}
._15{margin-left:-7.742528pt;}
._18{margin-left:-5.248000pt;}
._14{margin-left:-3.861440pt;}
._3{margin-left:-2.098240pt;}
._2{margin-left:-0.961472pt;}
._0{width:1.088960pt;}
._4{width:2.579840pt;}
._5{width:3.576320pt;}
._e{width:5.187456pt;}
._d{width:6.108800pt;}
._7{width:7.680000pt;}
._11{width:9.358464pt;}
._8{width:10.821760pt;}
._17{width:11.839040pt;}
._10{width:12.798080pt;}
._16{width:14.332160pt;}
._1a{width:16.036928pt;}
._1b{width:16.945280pt;}
._9{width:18.110080pt;}
._a{width:19.395456pt;}
._12{width:20.671552pt;}
._19{width:22.266240pt;}
._f{width:23.590592pt;}
._1c{width:24.511040pt;}
._6{width:26.684160pt;}
._b{width:28.864000pt;}
._13{width:36.589056pt;}
._1d{width:38.989184pt;}
._1{width:101.538880pt;}
._c{width:173.440000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y8{bottom:-124.160000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.400000pt;}
.y37{bottom:58.400000pt;}
.y4{bottom:65.744480pt;}
.y38{bottom:69.280000pt;}
.y7{bottom:69.760000pt;}
.y3{bottom:81.109440pt;}
.y15e{bottom:103.190080pt;}
.y100{bottom:105.564640pt;}
.yb0{bottom:105.565120pt;}
.y180{bottom:105.585120pt;}
.y1e0{bottom:105.585600pt;}
.y11a{bottom:105.590560pt;}
.y1d6{bottom:105.591040pt;}
.y61{bottom:105.595040pt;}
.y234{bottom:105.600000pt;}
.y209{bottom:105.600480pt;}
.y2{bottom:111.680000pt;}
.y15d{bottom:118.555040pt;}
.yff{bottom:120.929600pt;}
.yaf{bottom:120.930080pt;}
.y1fd{bottom:120.936320pt;}
.y146{bottom:120.940640pt;}
.y17f{bottom:120.950080pt;}
.y1df{bottom:120.950560pt;}
.y60{bottom:120.955040pt;}
.y119{bottom:120.955520pt;}
.y191{bottom:120.956000pt;}
.yd6{bottom:120.960480pt;}
.y233{bottom:128.950080pt;}
.y1d5{bottom:128.950560pt;}
.y208{bottom:128.960000pt;}
.y23d{bottom:129.600000pt;}
.y15c{bottom:133.885440pt;}
.y36{bottom:135.025120pt;}
.yfe{bottom:136.294560pt;}
.yae{bottom:136.295040pt;}
.y7f{bottom:136.315040pt;}
.y1de{bottom:136.315520pt;}
.y5f{bottom:136.320480pt;}
.y1fc{bottom:144.295840pt;}
.y145{bottom:144.300160pt;}
.y118{bottom:144.315040pt;}
.y190{bottom:144.315520pt;}
.yd5{bottom:144.320480pt;}
.y35{bottom:150.390080pt;}
.yfd{bottom:151.659520pt;}
.yad{bottom:151.660000pt;}
.y7e{bottom:151.675520pt;}
.y17e{bottom:151.680000pt;}
.y207{bottom:152.315040pt;}
.y15b{bottom:157.244960pt;}
.y23c{bottom:157.440000pt;}
.y1fb{bottom:159.660800pt;}
.y144{bottom:159.665120pt;}
.y117{bottom:159.675040pt;}
.y5e{bottom:159.680000pt;}
.y232{bottom:159.680960pt;}
.y34{bottom:165.755040pt;}
.yfc{bottom:167.024480pt;}
.yac{bottom:167.024960pt;}
.yd4{bottom:167.675040pt;}
.y206{bottom:167.680000pt;}
.y15a{bottom:172.609920pt;}
.y1fa{bottom:175.025760pt;}
.y143{bottom:175.030080pt;}
.y7d{bottom:175.035040pt;}
.y23b{bottom:175.840000pt;}
.y33{bottom:181.098560pt;}
.yfb{bottom:182.389440pt;}
.yab{bottom:182.389920pt;}
.y5d{bottom:183.030080pt;}
.yd3{bottom:183.040000pt;}
.y231{bottom:183.040480pt;}
.y159{bottom:187.815520pt;}
.y116{bottom:190.389440pt;}
.y1dd{bottom:190.389920pt;}
.y1f9{bottom:190.390720pt;}
.y142{bottom:190.395040pt;}
.y7c{bottom:190.400000pt;}
.y205{bottom:191.680000pt;}
.y23a{bottom:194.240000pt;}
.yfa{bottom:197.754400pt;}
.yaa{bottom:197.754880pt;}
.y5c{bottom:198.395040pt;}
.y158{bottom:203.180480pt;}
.y32{bottom:203.980000pt;}
.y115{bottom:205.754400pt;}
.y141{bottom:205.754880pt;}
.y1f8{bottom:205.755680pt;}
.y18f{bottom:206.395040pt;}
.y230{bottom:206.400000pt;}
.yd2{bottom:207.040000pt;}
.y239{bottom:212.640000pt;}
.yf9{bottom:212.915040pt;}
.y204{bottom:213.099520pt;}
.y7b{bottom:213.590080pt;}
.y1be{bottom:213.754400pt;}
.y5b{bottom:213.760000pt;}
.y17d{bottom:220.910560pt;}
.ya9{bottom:220.955040pt;}
.y18e{bottom:221.760000pt;}
.y157{bottom:226.540000pt;}
.y31{bottom:227.339520pt;}
.yf8{bottom:228.280000pt;}
.y203{bottom:228.464480pt;}
.y7a{bottom:228.955040pt;}
.y1f7{bottom:228.955840pt;}
.y1bd{bottom:228.960000pt;}
.y22f{bottom:230.400000pt;}
.y238{bottom:231.040000pt;}
.y114{bottom:236.315520pt;}
.ya8{bottom:236.320000pt;}
.y5a{bottom:236.955040pt;}
.y156{bottom:241.904960pt;}
.y30{bottom:242.704480pt;}
.y202{bottom:243.670080pt;}
.y17c{bottom:244.270080pt;}
.y79{bottom:244.315040pt;}
.y1dc{bottom:244.315520pt;}
.y18d{bottom:244.955040pt;}
.y237{bottom:249.440000pt;}
.yd1{bottom:250.560000pt;}
.yf7{bottom:251.639520pt;}
.y1f6{bottom:252.315360pt;}
.y59{bottom:252.320000pt;}
.y1bc{bottom:252.960000pt;}
.y155{bottom:257.269920pt;}
.y2f{bottom:257.910080pt;}
.y201{bottom:259.035040pt;}
.y140{bottom:259.634560pt;}
.y17b{bottom:259.635040pt;}
.y78{bottom:259.670080pt;}
.ya7{bottom:259.675040pt;}
.y18c{bottom:260.305120pt;}
.y22e{bottom:265.920000pt;}
.yf6{bottom:267.004480pt;}
.y1db{bottom:267.675040pt;}
.y1f5{bottom:267.680320pt;}
.y1d4{bottom:267.840000pt;}
.yd0{bottom:268.960000pt;}
.y1bb{bottom:272.000000pt;}
.y2e{bottom:273.275040pt;}
.y200{bottom:274.400000pt;}
.ya6{bottom:275.034880pt;}
.y77{bottom:275.035040pt;}
.y18b{bottom:275.670080pt;}
.y58{bottom:275.680000pt;}
.y154{bottom:280.470080pt;}
.yf5{bottom:282.369440pt;}
.y13f{bottom:282.994080pt;}
.y17a{bottom:282.994560pt;}
.y1da{bottom:283.029920pt;}
.y22d{bottom:284.320000pt;}
.y1d3{bottom:286.240000pt;}
.ycf{bottom:287.360000pt;}
.y2d{bottom:288.640000pt;}
.y113{bottom:290.389440pt;}
.y76{bottom:290.394400pt;}
.y1ba{bottom:290.400000pt;}
.y57{bottom:291.029440pt;}
.y18a{bottom:291.035040pt;}
.y1f4{bottom:291.039840pt;}
.y236{bottom:294.240000pt;}
.y153{bottom:295.835040pt;}
.yf4{bottom:297.575040pt;}
.ya5{bottom:298.235040pt;}
.y13e{bottom:298.359040pt;}
.y179{bottom:298.359520pt;}
.y1ff{bottom:298.400000pt;}
.y22c{bottom:302.720000pt;}
.y1d2{bottom:304.640000pt;}
.y75{bottom:305.590080pt;}
.y112{bottom:305.595040pt;}
.yce{bottom:305.760000pt;}
.y1d9{bottom:306.230080pt;}
.y56{bottom:306.394400pt;}
.y189{bottom:306.400000pt;}
.y1b9{bottom:308.800000pt;}
.y152{bottom:311.200000pt;}
.y2c{bottom:312.640000pt;}
.y13d{bottom:313.564640pt;}
.y178{bottom:313.565120pt;}
.ya4{bottom:313.595040pt;}
.y1f3{bottom:314.240000pt;}
.y1fe{bottom:316.800000pt;}
.yf3{bottom:320.934560pt;}
.y74{bottom:320.955040pt;}
.y111{bottom:320.960000pt;}
.y22b{bottom:321.120000pt;}
.y188{bottom:321.595040pt;}
.y55{bottom:321.600000pt;}
.ycd{bottom:324.160000pt;}
.y1b8{bottom:327.200000pt;}
.y13c{bottom:328.929600pt;}
.y177{bottom:328.930080pt;}
.ya3{bottom:328.960000pt;}
.y1d1{bottom:331.040000pt;}
.y151{bottom:335.200000pt;}
.yf2{bottom:336.299520pt;}
.y73{bottom:336.315040pt;}
.y187{bottom:336.960000pt;}
.y1f2{bottom:338.240000pt;}
.ycc{bottom:342.560000pt;}
.y13b{bottom:344.294560pt;}
.y176{bottom:344.295040pt;}
.y110{bottom:344.960000pt;}
.y54{bottom:345.600000pt;}
.y2b{bottom:347.200000pt;}
.y22a{bottom:347.520000pt;}
.y1d0{bottom:349.440000pt;}
.yf1{bottom:351.664480pt;}
.y72{bottom:351.680000pt;}
.ya2{bottom:352.310080pt;}
.y150{bottom:353.600000pt;}
.y13a{bottom:359.659520pt;}
.y175{bottom:359.660000pt;}
.ycb{bottom:360.960000pt;}
.y1b7{bottom:364.000000pt;}
.y229{bottom:365.920000pt;}
.yf0{bottom:367.029440pt;}
.ya1{bottom:367.675040pt;}
.y1cf{bottom:367.840000pt;}
.y14f{bottom:372.000000pt;}
.y2a{bottom:373.433600pt;}
.y139{bottom:375.024480pt;}
.y174{bottom:375.024960pt;}
.y71{bottom:375.680000pt;}
.yca{bottom:379.360000pt;}
.yef{bottom:382.394400pt;}
.y1f1{bottom:382.400000pt;}
.ya0{bottom:383.040000pt;}
.y228{bottom:384.320000pt;}
.y1ce{bottom:386.240000pt;}
.y1b6{bottom:389.688640pt;}
.y29{bottom:389.934720pt;}
.y138{bottom:390.389440pt;}
.y173{bottom:390.389920pt;}
.y14e{bottom:390.400000pt;}
.y186{bottom:390.870080pt;}
.y10f{bottom:394.720000pt;}
.yee{bottom:397.600000pt;}
.yc9{bottom:397.760000pt;}
.y1f0{bottom:400.800000pt;}
.y227{bottom:402.720000pt;}
.y1cd{bottom:404.640000pt;}
.y1b5{bottom:405.053600pt;}
.y137{bottom:405.595040pt;}
.y172{bottom:405.595520pt;}
.y185{bottom:406.235040pt;}
.y9f{bottom:407.040000pt;}
.y70{bottom:408.800000pt;}
.y10e{bottom:413.120000pt;}
.y28{bottom:415.061760pt;}
.yc8{bottom:416.160000pt;}
.y1ef{bottom:419.200000pt;}
.y1b4{bottom:420.418560pt;}
.yed{bottom:420.950080pt;}
.y136{bottom:420.960000pt;}
.y171{bottom:420.960480pt;}
.y226{bottom:421.120000pt;}
.y184{bottom:421.600000pt;}
.y1cc{bottom:423.040000pt;}
.y14d{bottom:427.200000pt;}
.y10d{bottom:431.520000pt;}
.y27{bottom:432.019200pt;}
.y9e{bottom:432.320000pt;}
.yc7{bottom:434.560000pt;}
.y6f{bottom:435.200000pt;}
.y1b3{bottom:435.624160pt;}
.yec{bottom:436.315040pt;}
.y225{bottom:439.520000pt;}
.y1cb{bottom:441.440000pt;}
.y170{bottom:444.315040pt;}
.y135{bottom:444.960000pt;}
.y183{bottom:445.600000pt;}
.y26{bottom:448.814720pt;}
.y10c{bottom:449.920000pt;}
.y9d{bottom:450.720000pt;}
.y1b2{bottom:450.989120pt;}
.yeb{bottom:451.675040pt;}
.yc6{bottom:452.960000pt;}
.y6e{bottom:453.600000pt;}
.y224{bottom:457.920000pt;}
.y16f{bottom:459.680000pt;}
.y1ca{bottom:459.840000pt;}
.y182{bottom:464.000000pt;}
.y25{bottom:465.772160pt;}
.y1b1{bottom:466.354080pt;}
.yea{bottom:467.040000pt;}
.y10b{bottom:468.320000pt;}
.y9c{bottom:469.120000pt;}
.yc5{bottom:471.360000pt;}
.y6d{bottom:472.000000pt;}
.y223{bottom:476.320000pt;}
.y1c9{bottom:478.240000pt;}
.y1b0{bottom:481.719040pt;}
.y181{bottom:482.400000pt;}
.y24{bottom:482.567680pt;}
.y16e{bottom:483.680000pt;}
.y10a{bottom:486.720000pt;}
.y9b{bottom:487.520000pt;}
.yc4{bottom:489.760000pt;}
.y6c{bottom:490.400000pt;}
.ye9{bottom:491.040000pt;}
.y235{bottom:491.200000pt;}
.y222{bottom:494.720000pt;}
.y1c8{bottom:496.640000pt;}
.y1af{bottom:497.084000pt;}
.y23{bottom:499.525120pt;}
.y53{bottom:500.800000pt;}
.y134{bottom:503.840000pt;}
.y109{bottom:505.120000pt;}
.y9a{bottom:505.920000pt;}
.yc3{bottom:508.160000pt;}
.y6b{bottom:508.800000pt;}
.y1ae{bottom:512.448960pt;}
.y221{bottom:513.120000pt;}
.ye8{bottom:515.040000pt;}
.y22{bottom:516.320640pt;}
.y6{bottom:519.200000pt;}
.y133{bottom:522.240000pt;}
.y108{bottom:523.520000pt;}
.y99{bottom:524.320000pt;}
.yc2{bottom:526.560000pt;}
.y6a{bottom:527.200000pt;}
.y1ad{bottom:527.654560pt;}
.y220{bottom:531.520000pt;}
.y21{bottom:533.116160pt;}
.ye7{bottom:533.440000pt;}
.y52{bottom:537.600000pt;}
.y132{bottom:540.640000pt;}
.y107{bottom:541.760000pt;}
.y1ac{bottom:543.019520pt;}
.y69{bottom:545.600000pt;}
.y20{bottom:550.073600pt;}
.y98{bottom:550.560000pt;}
.y1c7{bottom:551.840000pt;}
.yc1{bottom:552.960000pt;}
.y1d8{bottom:556.000000pt;}
.y21f{bottom:557.760000pt;}
.y1ab{bottom:558.384480pt;}
.y131{bottom:559.040000pt;}
.ye6{bottom:559.840000pt;}
.y106{bottom:560.160000pt;}
.y51{bottom:564.000000pt;}
.y1f{bottom:566.556800pt;}
.y97{bottom:568.960000pt;}
.y1c6{bottom:570.240000pt;}
.yc0{bottom:571.360000pt;}
.y1aa{bottom:573.749440pt;}
.y16d{bottom:574.080000pt;}
.y1d7{bottom:574.400000pt;}
.y21e{bottom:576.160000pt;}
.y130{bottom:577.440000pt;}
.ye5{bottom:578.240000pt;}
.y50{bottom:582.400000pt;}
.y1e{bottom:583.514240pt;}
.y105{bottom:585.905120pt;}
.y96{bottom:587.360000pt;}
.y1c5{bottom:588.640000pt;}
.y1a9{bottom:589.114400pt;}
.ybf{bottom:589.760000pt;}
.y16c{bottom:592.480000pt;}
.y1ee{bottom:592.800000pt;}
.y21d{bottom:594.560000pt;}
.y12f{bottom:595.840000pt;}
.ye4{bottom:596.640000pt;}
.y1d{bottom:600.633600pt;}
.y4f{bottom:600.800000pt;}
.y104{bottom:601.270080pt;}
.y1a8{bottom:604.320000pt;}
.y95{bottom:605.760000pt;}
.y1c4{bottom:607.040000pt;}
.ybe{bottom:608.160000pt;}
.y16b{bottom:610.880000pt;}
.y1ed{bottom:611.200000pt;}
.y21c{bottom:612.960000pt;}
.y12e{bottom:614.240000pt;}
.ye3{bottom:615.040000pt;}
.y103{bottom:616.635040pt;}
.y1c{bottom:617.166720pt;}
.y4e{bottom:619.200000pt;}
.y94{bottom:624.160000pt;}
.ybd{bottom:626.560000pt;}
.y14c{bottom:627.200000pt;}
.y1a7{bottom:628.320000pt;}
.y16a{bottom:629.280000pt;}
.y1ec{bottom:629.600000pt;}
.y21b{bottom:631.360000pt;}
.y102{bottom:632.000000pt;}
.y12d{bottom:632.640000pt;}
.ye2{bottom:633.440000pt;}
.y4d{bottom:637.600000pt;}
.y1b{bottom:642.440960pt;}
.y93{bottom:642.560000pt;}
.ybc{bottom:644.960000pt;}
.y14b{bottom:645.600000pt;}
.y1a6{bottom:646.720000pt;}
.y169{bottom:647.680000pt;}
.y1eb{bottom:648.000000pt;}
.y21a{bottom:649.760000pt;}
.y12c{bottom:651.040000pt;}
.ye1{bottom:651.840000pt;}
.y4c{bottom:656.000000pt;}
.y1a{bottom:659.236480pt;}
.y92{bottom:660.960000pt;}
.ybb{bottom:663.360000pt;}
.y14a{bottom:664.000000pt;}
.y1a5{bottom:665.120000pt;}
.y168{bottom:666.080000pt;}
.y1ea{bottom:666.400000pt;}
.y219{bottom:668.160000pt;}
.y12b{bottom:669.440000pt;}
.ye0{bottom:670.240000pt;}
.y4b{bottom:674.400000pt;}
.y19{bottom:676.193920pt;}
.y91{bottom:679.360000pt;}
.yba{bottom:681.760000pt;}
.y149{bottom:682.400000pt;}
.y1a4{bottom:683.520000pt;}
.y1e9{bottom:684.800000pt;}
.y218{bottom:686.560000pt;}
.y12a{bottom:687.840000pt;}
.ydf{bottom:688.640000pt;}
.y167{bottom:691.646560pt;}
.y4a{bottom:692.800000pt;}
.y18{bottom:692.989440pt;}
.y90{bottom:697.760000pt;}
.yb9{bottom:700.160000pt;}
.y148{bottom:700.800000pt;}
.y1a3{bottom:701.920000pt;}
.y1e8{bottom:703.200000pt;}
.y217{bottom:704.960000pt;}
.y129{bottom:706.240000pt;}
.y166{bottom:707.011520pt;}
.yde{bottom:707.040000pt;}
.y17{bottom:709.784960pt;}
.y49{bottom:711.200000pt;}
.y8f{bottom:716.160000pt;}
.yb8{bottom:718.560000pt;}
.y147{bottom:719.200000pt;}
.y1a2{bottom:720.320000pt;}
.y1e7{bottom:721.600000pt;}
.y165{bottom:722.376480pt;}
.y216{bottom:723.360000pt;}
.y128{bottom:724.640000pt;}
.ydd{bottom:725.440000pt;}
.y16{bottom:726.742400pt;}
.y48{bottom:729.600000pt;}
.y8e{bottom:734.560000pt;}
.yb7{bottom:736.960000pt;}
.y68{bottom:737.600000pt;}
.y164{bottom:737.741440pt;}
.y1a1{bottom:738.720000pt;}
.y1e6{bottom:740.000000pt;}
.y215{bottom:741.760000pt;}
.y127{bottom:743.040000pt;}
.y15{bottom:743.537920pt;}
.ydc{bottom:743.840000pt;}
.y47{bottom:748.000000pt;}
.y8d{bottom:752.960000pt;}
.y163{bottom:753.106400pt;}
.yb6{bottom:755.360000pt;}
.y67{bottom:756.000000pt;}
.y1a0{bottom:757.120000pt;}
.y1e5{bottom:758.400000pt;}
.y214{bottom:760.160000pt;}
.y14{bottom:760.495360pt;}
.y126{bottom:761.440000pt;}
.ydb{bottom:762.240000pt;}
.y46{bottom:766.400000pt;}
.y162{bottom:768.471360pt;}
.y8c{bottom:771.360000pt;}
.y66{bottom:774.400000pt;}
.y19f{bottom:775.520000pt;}
.y13{bottom:777.290880pt;}
.y213{bottom:778.560000pt;}
.y125{bottom:779.840000pt;}
.yda{bottom:780.640000pt;}
.yb5{bottom:780.940160pt;}
.y161{bottom:783.836320pt;}
.y45{bottom:784.800000pt;}
.y8b{bottom:789.760000pt;}
.y65{bottom:792.800000pt;}
.y19e{bottom:793.920000pt;}
.y12{bottom:794.086400pt;}
.yb4{bottom:796.305120pt;}
.y212{bottom:796.960000pt;}
.y124{bottom:798.240000pt;}
.y1c3{bottom:799.040000pt;}
.y160{bottom:799.519520pt;}
.y44{bottom:803.200000pt;}
.y8a{bottom:808.160000pt;}
.y11{bottom:810.720000pt;}
.y64{bottom:811.200000pt;}
.yb3{bottom:811.670080pt;}
.yd9{bottom:812.000000pt;}
.y19d{bottom:812.320000pt;}
.y211{bottom:815.360000pt;}
.y15f{bottom:816.000000pt;}
.y123{bottom:816.640000pt;}
.y1c2{bottom:817.440000pt;}
.y43{bottom:821.600000pt;}
.yb2{bottom:827.035040pt;}
.y63{bottom:829.600000pt;}
.yd8{bottom:830.400000pt;}
.y19c{bottom:830.720000pt;}
.y210{bottom:833.760000pt;}
.y89{bottom:834.560000pt;}
.y122{bottom:835.040000pt;}
.y1c1{bottom:835.840000pt;}
.y10{bottom:836.160000pt;}
.y42{bottom:840.000000pt;}
.yb1{bottom:842.400000pt;}
.y62{bottom:848.000000pt;}
.y19b{bottom:849.120000pt;}
.y20f{bottom:852.160000pt;}
.y88{bottom:852.960000pt;}
.yf{bottom:854.560000pt;}
.yd7{bottom:858.400000pt;}
.y121{bottom:860.769600pt;}
.y41{bottom:866.400000pt;}
.y1c0{bottom:867.200000pt;}
.y19a{bottom:867.520000pt;}
.y20e{bottom:870.560000pt;}
.y87{bottom:871.360000pt;}
.y120{bottom:876.134560pt;}
.y101{bottom:876.800000pt;}
.ye{bottom:880.960000pt;}
.y40{bottom:884.800000pt;}
.y199{bottom:885.920000pt;}
.y20d{bottom:888.960000pt;}
.y86{bottom:889.760000pt;}
.y11f{bottom:891.340160pt;}
.y1bf{bottom:895.200000pt;}
.yd{bottom:899.360000pt;}
.y3f{bottom:903.200000pt;}
.y198{bottom:904.320000pt;}
.y11e{bottom:906.705120pt;}
.y20c{bottom:907.360000pt;}
.y85{bottom:908.160000pt;}
.y1e4{bottom:913.600000pt;}
.y3e{bottom:921.600000pt;}
.y11d{bottom:922.070080pt;}
.y197{bottom:922.720000pt;}
.y20b{bottom:925.760000pt;}
.y84{bottom:926.560000pt;}
.yc{bottom:931.364160pt;}
.y11c{bottom:937.435040pt;}
.y1e3{bottom:939.175200pt;}
.y3d{bottom:940.000000pt;}
.y196{bottom:941.120000pt;}
.y20a{bottom:944.160000pt;}
.y83{bottom:944.960000pt;}
.y11b{bottom:952.800000pt;}
.yb{bottom:953.285280pt;}
.y1e2{bottom:954.540160pt;}
.y3c{bottom:958.400000pt;}
.y195{bottom:959.520000pt;}
.y82{bottom:963.360000pt;}
.y1e1{bottom:969.905120pt;}
.y3b{bottom:976.800000pt;}
.y81{bottom:981.760000pt;}
.y194{bottom:985.270080pt;}
.ya{bottom:988.478880pt;}
.y3a{bottom:995.200000pt;}
.y193{bottom:1000.635040pt;}
.y9{bottom:1010.400000pt;}
.y80{bottom:1013.280000pt;}
.y39{bottom:1013.600000pt;}
.y192{bottom:1016.000000pt;}
.y1{bottom:1062.880000pt;}
.h3{height:52.134375pt;}
.h1a{height:52.150375pt;}
.h10{height:52.152295pt;}
.hd{height:52.154215pt;}
.h12{height:52.154855pt;}
.hf{height:52.156775pt;}
.he{height:52.174055pt;}
.h1b{height:52.174695pt;}
.hc{height:52.176615pt;}
.h19{height:52.193895pt;}
.h15{height:52.211815pt;}
.hb{height:52.220135pt;}
.h1d{height:52.229095pt;}
.h16{height:52.272615pt;}
.h13{height:52.314215pt;}
.h14{height:52.316135pt;}
.h18{height:52.332135pt;}
.h1e{height:52.538270pt;}
.h1c{height:52.577950pt;}
.h7{height:52.979062pt;}
.h2{height:53.535000pt;}
.h6{height:53.929687pt;}
.h17{height:57.553170pt;}
.ha{height:57.787500pt;}
.h9{height:59.340000pt;}
.h4{height:62.812500pt;}
.h11{height:64.500000pt;}
.h8{height:66.404375pt;}
.h5{height:84.318667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:79.841333pt;}
.w2{width:80.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:2.560000pt;}
.xc{left:28.000000pt;}
.x4{left:32.000000pt;}
.x5{left:70.400000pt;}
.xf{left:73.600000pt;}
.x1{left:113.440000pt;}
.xa{left:160.640000pt;}
.x7{left:303.520000pt;}
.xe{left:436.960000pt;}
.x6{left:501.760000pt;}
.x8{left:513.760000pt;}
.xd{left:523.200000pt;}
.x9{left:553.280000pt;}
.x2{left:585.920000pt;}
.x3{left:696.960000pt;}
}




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