
    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_3fd15c1fb63a329e874311f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9f9d19b24321fcf8b37dc88b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f5dcd6de6bba6db69ab8aeed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_74a0142595a4260355722582.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_e24cb6fce593607cc5d3679d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_18dd83ef6a1a448ecd68f006.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_409363daec5994a115703731.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.841309;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_7b2268efc2484171acd34c26.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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:-73.470000px;}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-21.600000px;}
.ls5f{letter-spacing:-14.533200px;}
.ls2c{letter-spacing:-7.182000px;}
.ls15{letter-spacing:-3.160080px;}
.ls3c{letter-spacing:-2.700000px;}
.ls2a{letter-spacing:-2.499840px;}
.ls4{letter-spacing:-2.091600px;}
.ls11{letter-spacing:-1.627920px;}
.ls4c{letter-spacing:-1.620000px;}
.ls17{letter-spacing:-1.532160px;}
.ls53{letter-spacing:-1.368000px;}
.ls6b{letter-spacing:-1.224000px;}
.ls38{letter-spacing:-0.758160px;}
.ls6c{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.673920px;}
.ls13{letter-spacing:-0.670320px;}
.ls6a{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.384480px;}
.ls5c{letter-spacing:-0.371520px;}
.ls66{letter-spacing:-0.348480px;}
.ls39{letter-spacing:-0.336960px;}
.ls23{letter-spacing:-0.335520px;}
.ls2e{letter-spacing:-0.324000px;}
.ls67{letter-spacing:-0.312480px;}
.ls1c{letter-spacing:-0.306720px;}
.ls32{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.287280px;}
.ls50{letter-spacing:-0.263520px;}
.ls1f{letter-spacing:-0.240480px;}
.ls2b{letter-spacing:-0.239760px;}
.ls5{letter-spacing:-0.239040px;}
.lsd{letter-spacing:-0.224640px;}
.ls2{letter-spacing:-0.216000px;}
.ls5d{letter-spacing:-0.185760px;}
.ls47{letter-spacing:-0.167760px;}
.lsb{letter-spacing:-0.159840px;}
.ls29{letter-spacing:-0.156240px;}
.ls3f{letter-spacing:-0.149760px;}
.ls3{letter-spacing:-0.144000px;}
.ls4f{letter-spacing:-0.131760px;}
.ls21{letter-spacing:-0.120240px;}
.ls24{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.095760px;}
.ls37{letter-spacing:-0.084240px;}
.ls69{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.050328px;}
.ls51{letter-spacing:0.084240px;}
.ls14{letter-spacing:0.095760px;}
.ls3b{letter-spacing:0.108000px;}
.ls44{letter-spacing:0.113760px;}
.ls7{letter-spacing:0.120240px;}
.ls30{letter-spacing:0.131760px;}
.ls68{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.149760px;}
.ls48{letter-spacing:0.167760px;}
.ls54{letter-spacing:0.168480px;}
.ls63{letter-spacing:0.174240px;}
.ls26{letter-spacing:0.175680px;}
.lsa{letter-spacing:0.191520px;}
.ls1{letter-spacing:0.192240px;}
.ls18{letter-spacing:0.204480px;}
.ls35{letter-spacing:0.216000px;}
.ls59{letter-spacing:0.218088px;}
.ls9{letter-spacing:0.224640px;}
.ls43{letter-spacing:0.238896px;}
.ls20{letter-spacing:0.240480px;}
.ls4b{letter-spacing:0.248400px;}
.ls25{letter-spacing:0.257760px;}
.ls65{letter-spacing:0.264240px;}
.ls61{letter-spacing:0.273600px;}
.ls12{letter-spacing:0.287280px;}
.ls0{letter-spacing:0.288000px;}
.ls3e{letter-spacing:0.299520px;}
.ls5a{letter-spacing:0.301968px;}
.ls27{letter-spacing:0.312480px;}
.lsc{letter-spacing:0.319680px;}
.ls3a{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.335520px;}
.ls36{letter-spacing:0.336960px;}
.ls64{letter-spacing:0.348480px;}
.ls16{letter-spacing:0.383040px;}
.ls42{letter-spacing:0.408456px;}
.ls52{letter-spacing:0.479520px;}
.ls41{letter-spacing:0.500688px;}
.ls1d{letter-spacing:0.577152px;}
.ls1a{letter-spacing:1.124640px;}
.ls34{letter-spacing:33.186240px;}
.ls58{letter-spacing:39.888000px;}
.ls1e{letter-spacing:93.276000px;}
.ls57{letter-spacing:98.640000px;}
.ls49{letter-spacing:103.284000px;}
.ls19{letter-spacing:126.216000px;}
.ls56{letter-spacing:129.600000px;}
.ls4e{letter-spacing:133.868160px;}
.ls60{letter-spacing:133.884000px;}
.ls4d{letter-spacing:133.943040px;}
.ls31{letter-spacing:137.916000px;}
.ls5b{letter-spacing:150.984000px;}
.ls62{letter-spacing:155.016000px;}
.ls45{letter-spacing:157.284000px;}
.ls28{letter-spacing:161.316000px;}
.ls55{letter-spacing:163.537920px;}
.ls3d{letter-spacing:163.584000px;}
.ls5e{letter-spacing:165.600000px;}
.ls2f{letter-spacing:169.884000px;}
.ls33{letter-spacing:173.916000px;}
.ls4a{letter-spacing:178.200000px;}
.ls1b{letter-spacing:180.216000px;}
.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;}
}
.ws5d{word-spacing:-80.064000px;}
.wsee{word-spacing:-73.722960px;}
.wsa0{word-spacing:-66.653280px;}
.wsad{word-spacing:-66.413520px;}
.ws3{word-spacing:-53.634960px;}
.wse9{word-spacing:-53.058240px;}
.wse0{word-spacing:-51.641280px;}
.ws62{word-spacing:-49.014720px;}
.wsf0{word-spacing:-48.612960px;}
.wsef{word-spacing:-48.090240px;}
.wsdc{word-spacing:-46.972800px;}
.ws10{word-spacing:-44.755200px;}
.ws11{word-spacing:-44.435520px;}
.ws44{word-spacing:-44.275680px;}
.ws59{word-spacing:-43.747200px;}
.ws5a{word-spacing:-43.434720px;}
.ws5b{word-spacing:-43.278480px;}
.wsfb{word-spacing:-43.122240px;}
.wsd2{word-spacing:-41.932800px;}
.wsd3{word-spacing:-41.633280px;}
.ws5c{word-spacing:-40.934880px;}
.wsea{word-spacing:-40.320000px;}
.wsd7{word-spacing:-39.888000px;}
.wsd6{word-spacing:-39.744000px;}
.ws4e{word-spacing:-37.578240px;}
.wsbd{word-spacing:-36.761040px;}
.ws46{word-spacing:-33.667200px;}
.ws45{word-spacing:-33.546960px;}
.ws49{word-spacing:-33.426720px;}
.ws47{word-spacing:-33.306480px;}
.ws48{word-spacing:-33.186240px;}
.ws9c{word-spacing:-31.739040px;}
.ws9d{word-spacing:-31.625280px;}
.ws12{word-spacing:-31.449600px;}
.ws16{word-spacing:-31.224960px;}
.wsac{word-spacing:-30.272400px;}
.ws6b{word-spacing:-30.024000px;}
.wsab{word-spacing:-29.700000px;}
.ws3d{word-spacing:-28.627200px;}
.ws3c{word-spacing:-28.422720px;}
.ws3a{word-spacing:-28.116000px;}
.ws81{word-spacing:-24.732000px;}
.wsb7{word-spacing:-24.624000px;}
.ws82{word-spacing:-24.516000px;}
.ws85{word-spacing:-24.408000px;}
.ws83{word-spacing:-24.084000px;}
.ws7e{word-spacing:-23.755680px;}
.ws7d{word-spacing:-23.418720px;}
.ws7b{word-spacing:-23.334480px;}
.ws7f{word-spacing:-23.081760px;}
.wsb8{word-spacing:-22.788000px;}
.ws7c{word-spacing:-22.660560px;}
.ws1e{word-spacing:-21.737520px;}
.ws20{word-spacing:-21.641760px;}
.ws24{word-spacing:-21.546000px;}
.ws26{word-spacing:-21.354480px;}
.ws0{word-spacing:-20.304000px;}
.ws102{word-spacing:-20.160000px;}
.ws101{word-spacing:-20.016000px;}
.ws1b{word-spacing:-20.013840px;}
.ws106{word-spacing:-19.872000px;}
.ws104{word-spacing:-19.800000px;}
.ws100{word-spacing:-19.584000px;}
.ws68{word-spacing:-19.439280px;}
.ws107{word-spacing:-19.296000px;}
.wsc5{word-spacing:-19.122480px;}
.ws105{word-spacing:-18.792000px;}
.wsc6{word-spacing:-16.488000px;}
.ws1{word-spacing:-16.374240px;}
.wsaf{word-spacing:-12.779208px;}
.wsaa{word-spacing:-12.467520px;}
.ws57{word-spacing:-11.341440px;}
.wsdf{word-spacing:-10.944000px;}
.wsbf{word-spacing:-9.326664px;}
.ws89{word-spacing:-8.391600px;}
.wsd5{word-spacing:-8.266320px;}
.ws66{word-spacing:-8.151840px;}
.wsd9{word-spacing:-7.488000px;}
.wsb9{word-spacing:-7.432560px;}
.ws95{word-spacing:-5.760000px;}
.ws10a{word-spacing:-5.184000px;}
.ws10e{word-spacing:-5.040000px;}
.ws10d{word-spacing:-4.320000px;}
.wsf9{word-spacing:-4.124160px;}
.wsb6{word-spacing:-4.104000px;}
.ws2f{word-spacing:-3.369600px;}
.wsf6{word-spacing:-3.310560px;}
.ws76{word-spacing:-3.246480px;}
.ws103{word-spacing:-3.024000px;}
.ws8a{word-spacing:-2.864160px;}
.wsf5{word-spacing:-2.613600px;}
.wsd1{word-spacing:-2.611440px;}
.ws17{word-spacing:-2.583360px;}
.ws14{word-spacing:-2.538432px;}
.wse{word-spacing:-2.525040px;}
.ws8b{word-spacing:-2.442960px;}
.wsf8{word-spacing:-2.439360px;}
.ws79{word-spacing:-2.356704px;}
.ws5{word-spacing:-2.304000px;}
.wsd8{word-spacing:-2.187360px;}
.ws10c{word-spacing:-2.160000px;}
.ws64{word-spacing:-2.108160px;}
.ws10b{word-spacing:-2.016000px;}
.ws109{word-spacing:-1.944000px;}
.wscb{word-spacing:-1.937520px;}
.wsf4{word-spacing:-1.916640px;}
.ws2e{word-spacing:-1.909440px;}
.wsfc{word-spacing:-1.874880px;}
.wscc{word-spacing:-1.853280px;}
.ws73{word-spacing:-1.803600px;}
.wsf2{word-spacing:-1.742400px;}
.ws65{word-spacing:-1.728000px;}
.ws34{word-spacing:-1.723680px;}
.ws3b{word-spacing:-1.707408px;}
.ws75{word-spacing:-1.683360px;}
.ws8c{word-spacing:-1.620000px;}
.wsca{word-spacing:-1.584000px;}
.ws74{word-spacing:-1.442880px;}
.ws93{word-spacing:-1.437696px;}
.ws63{word-spacing:-1.405440px;}
.ws18{word-spacing:-1.347840px;}
.wsb5{word-spacing:-1.296000px;}
.ws56{word-spacing:-1.288800px;}
.ws61{word-spacing:-1.249920px;}
.ws2c{word-spacing:-1.235520px;}
.ws108{word-spacing:-1.224000px;}
.ws13{word-spacing:-1.179360px;}
.ws22{word-spacing:-1.177848px;}
.ws39{word-spacing:-1.165536px;}
.ws6{word-spacing:-1.152000px;}
.wsd{word-spacing:-1.082160px;}
.wsf3{word-spacing:-1.045440px;}
.ws43{word-spacing:-1.022400px;}
.ws6d{word-spacing:-1.008000px;}
.wsfe{word-spacing:-1.006560px;}
.ws77{word-spacing:-0.961920px;}
.ws96{word-spacing:-0.898560px;}
.ws9{word-spacing:-0.864000px;}
.wsa1{word-spacing:-0.838800px;}
.ws9e{word-spacing:-0.796320px;}
.wsa4{word-spacing:-0.792720px;}
.wsc3{word-spacing:-0.791208px;}
.ws72{word-spacing:-0.790560px;}
.wsd4{word-spacing:-0.768960px;}
.ws58{word-spacing:-0.702720px;}
.wsa9{word-spacing:-0.671040px;}
.ws2{word-spacing:-0.615168px;}
.wsfd{word-spacing:-0.515520px;}
.ws3f{word-spacing:-0.511200px;}
.wsff{word-spacing:-0.486504px;}
.ws4f{word-spacing:-0.479520px;}
.ws60{word-spacing:-0.468720px;}
.wsba{word-spacing:-0.432000px;}
.wscd{word-spacing:-0.421200px;}
.wsf{word-spacing:-0.384480px;}
.ws36{word-spacing:-0.383040px;}
.ws4c{word-spacing:-0.360720px;}
.ws10f{word-spacing:-0.360000px;}
.wsf7{word-spacing:-0.348480px;}
.wsd0{word-spacing:-0.336960px;}
.wsa6{word-spacing:-0.335520px;}
.ws5e{word-spacing:-0.312480px;}
.ws3e{word-spacing:-0.306720px;}
.ws99{word-spacing:-0.299520px;}
.ws8{word-spacing:-0.288000px;}
.ws37{word-spacing:-0.287280px;}
.wsda{word-spacing:-0.239760px;}
.ws2b{word-spacing:-0.224640px;}
.ws91{word-spacing:-0.216000px;}
.wsf1{word-spacing:-0.174240px;}
.wsa2{word-spacing:-0.167760px;}
.ws97{word-spacing:-0.149760px;}
.wsbb{word-spacing:-0.144000px;}
.ws71{word-spacing:-0.131760px;}
.ws4b{word-spacing:-0.120240px;}
.ws90{word-spacing:-0.108000px;}
.ws32{word-spacing:-0.095760px;}
.wscf{word-spacing:-0.084240px;}
.wsc{word-spacing:0.000000px;}
.wsc9{word-spacing:0.072000px;}
.ws8e{word-spacing:0.108000px;}
.ws23{word-spacing:0.124488px;}
.wsc0{word-spacing:0.131760px;}
.ws6c{word-spacing:0.144000px;}
.ws9a{word-spacing:0.149760px;}
.ws5f{word-spacing:0.156240px;}
.ws2a{word-spacing:0.159840px;}
.wse2{word-spacing:0.185760px;}
.ws42{word-spacing:0.204480px;}
.ws4{word-spacing:0.216000px;}
.ws2d{word-spacing:0.224640px;}
.wsa3{word-spacing:0.239760px;}
.ws4a{word-spacing:0.240480px;}
.wsfa{word-spacing:0.257760px;}
.ws31{word-spacing:0.287280px;}
.ws78{word-spacing:0.288000px;}
.ws38{word-spacing:0.319680px;}
.ws92{word-spacing:0.324000px;}
.wsa5{word-spacing:0.335520px;}
.wse6{word-spacing:0.371520px;}
.ws40{word-spacing:0.408960px;}
.ws6a{word-spacing:0.417600px;}
.ws50{word-spacing:0.432000px;}
.wsc7{word-spacing:0.479520px;}
.ws53{word-spacing:0.503280px;}
.wsb4{word-spacing:0.540000px;}
.wse8{word-spacing:0.557280px;}
.ws7{word-spacing:0.576000px;}
.ws9b{word-spacing:0.599040px;}
.ws94{word-spacing:0.643968px;}
.ws8d{word-spacing:0.648000px;}
.ws70{word-spacing:0.658800px;}
.ws28{word-spacing:0.670320px;}
.ws67{word-spacing:0.719280px;}
.wsed{word-spacing:0.720000px;}
.wsce{word-spacing:0.758160px;}
.ws30{word-spacing:0.766080px;}
.wsc2{word-spacing:0.790560px;}
.wsec{word-spacing:0.803736px;}
.ws55{word-spacing:0.864000px;}
.ws98{word-spacing:0.898560px;}
.ws35{word-spacing:0.957600px;}
.wsa8{word-spacing:1.006560px;}
.wsae{word-spacing:1.078920px;}
.wse4{word-spacing:1.114560px;}
.ws41{word-spacing:1.124640px;}
.ws51{word-spacing:1.152000px;}
.wsb2{word-spacing:1.188000px;}
.ws88{word-spacing:1.198800px;}
.ws7a{word-spacing:1.202400px;}
.ws86{word-spacing:1.220400px;}
.wse1{word-spacing:1.263168px;}
.ws15{word-spacing:1.269216px;}
.ws6f{word-spacing:1.296000px;}
.wse3{word-spacing:1.300320px;}
.wsa7{word-spacing:1.342080px;}
.wsc8{word-spacing:1.368000px;}
.wsbc{word-spacing:1.370304px;}
.ws8f{word-spacing:1.404000px;}
.wsc4{word-spacing:1.438560px;}
.wsc1{word-spacing:1.449360px;}
.ws54{word-spacing:1.677600px;}
.ws84{word-spacing:1.695600px;}
.ws6e{word-spacing:1.872000px;}
.ws29{word-spacing:2.001384px;}
.wsb3{word-spacing:2.052000px;}
.wsb{word-spacing:2.091600px;}
.wsb0{word-spacing:2.160000px;}
.ws52{word-spacing:2.592000px;}
.wse7{word-spacing:2.786400px;}
.ws9f{word-spacing:2.844000px;}
.ws33{word-spacing:3.160080px;}
.wse5{word-spacing:3.529440px;}
.wsb1{word-spacing:4.212000px;}
.wsa{word-spacing:4.960080px;}
.ws87{word-spacing:5.724000px;}
.wseb{word-spacing:14.533200px;}
.wsde{word-spacing:32.832000px;}
.wsbe{word-spacing:36.168120px;}
.wsdd{word-spacing:40.752000px;}
.ws69{word-spacing:43.056000px;}
.wsdb{word-spacing:55.804320px;}
.ws4d{word-spacing:83.664000px;}
.ws27{word-spacing:175.461048px;}
.ws1d{word-spacing:232.323336px;}
.ws1f{word-spacing:459.523512px;}
.ws1a{word-spacing:500.202360px;}
.ws25{word-spacing:537.079536px;}
.ws21{word-spacing:544.654152px;}
.ws19{word-spacing:555.781464px;}
.ws1c{word-spacing:657.842472px;}
.ws80{word-spacing:4081.872816px;}
._16{margin-left:-21.528000px;}
._d{margin-left:-20.156832px;}
._10{margin-left:-17.319816px;}
._19{margin-left:-14.857200px;}
._b{margin-left:-12.892392px;}
._5{margin-left:-11.684304px;}
._15{margin-left:-10.656000px;}
._c{margin-left:-9.479016px;}
._1b{margin-left:-8.320896px;}
._7{margin-left:-7.106976px;}
._1d{margin-left:-5.868000px;}
._9{margin-left:-4.749696px;}
._a{margin-left:-3.594672px;}
._4{margin-left:-2.294352px;}
._0{margin-left:-1.224000px;}
._1{width:1.008000px;}
._2{width:2.145384px;}
._3{width:3.740976px;}
._1f{width:5.115024px;}
._11{width:7.277760px;}
._f{width:9.356688px;}
._e{width:10.774368px;}
._1c{width:13.884552px;}
._21{width:15.528672px;}
._24{width:18.595584px;}
._12{width:21.888000px;}
._18{width:25.812000px;}
._6{width:27.951264px;}
._1e{width:31.956048px;}
._17{width:32.967360px;}
._20{width:38.605536px;}
._13{width:39.620160px;}
._22{width:44.609760px;}
._23{width:47.358000px;}
._1a{width:68.819256px;}
._14{width:74.592000px;}
._8{width:98.749512px;}
.fc5{color:rgb(0,120,215);}
.fc4{color:rgb(108,24,105);}
.fc3{color:rgb(137,137,137);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,118,175);}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs8{font-size:102.240000px;}
.fsb{font-size:108.000000px;}
.fs7{font-size:112.320000px;}
.fs13{font-size:113.760000px;}
.fs3{font-size:120.240000px;}
.fs15{font-size:129.600000px;}
.fs10{font-size:131.760000px;}
.fs9{font-size:144.000000px;}
.fs12{font-size:149.760000px;}
.fse{font-size:156.240000px;}
.fs6{font-size:159.840000px;}
.fsa{font-size:167.760000px;}
.fs17{font-size:174.240000px;}
.fsd{font-size:175.680000px;}
.fs16{font-size:185.760000px;}
.fs4{font-size:192.240000px;}
.fsf{font-size:239.760000px;}
.fsc{font-size:257.760000px;}
.fs14{font-size:264.240000px;}
.fs2{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:18.457350px;}
.y106{bottom:19.357200px;}
.y90{bottom:23.133750px;}
.yb4{bottom:36.824850px;}
.y77{bottom:45.058050px;}
.yd5{bottom:50.280360px;}
.yf0{bottom:54.940890px;}
.y152{bottom:55.345050px;}
.y8f{bottom:55.533750px;}
.yaf{bottom:57.211920px;}
.y105{bottom:58.945200px;}
.yb3{bottom:62.024850px;}
.y83{bottom:62.545050px;}
.y1b0{bottom:68.305050px;}
.y194{bottom:69.427800px;}
.y15c{bottom:70.993320px;}
.y1a5{bottom:71.191170px;}
.y12a{bottom:76.411410px;}
.y148{bottom:78.205050px;}
.yd4{bottom:81.968640px;}
.yb2{bottom:87.228270px;}
.y9e{bottom:89.545050px;}
.yae{bottom:89.616600px;}
.y1c2{bottom:89.724300px;}
.y151{bottom:94.983750px;}
.y182{bottom:96.205050px;}
.y104{bottom:97.825200px;}
.yef{bottom:100.319970px;}
.y3d{bottom:100.618740px;}
.y129{bottom:101.788710px;}
.y1a4{bottom:110.785050px;}
.y19b{bottom:111.187800px;}
.y1af{bottom:113.499810px;}
.yd3{bottom:113.656920px;}
.y1c1{bottom:114.564300px;}
.yb0{bottom:114.936900px;}
.y179{bottom:115.645050px;}
.y147{bottom:121.405050px;}
.y15b{bottom:121.405200px;}
.y193{bottom:121.627800px;}
.yad{bottom:122.021280px;}
.y2e{bottom:122.949240px;}
.y16d{bottom:123.184170px;}
.y66{bottom:124.800000px;}
.y4b{bottom:125.085000px;}
.y128{bottom:126.997530px;}
.y6b{bottom:128.226000px;}
.y9d{bottom:129.145050px;}
.y3c{bottom:131.214060px;}
.y112{bottom:133.755300px;}
.yf8{bottom:135.639600px;}
.yb1{bottom:137.624850px;}
.y1c0{bottom:139.404300px;}
.y181{bottom:139.405050px;}
.y103{bottom:143.185200px;}
.y164{bottom:144.445050px;}
.yd2{bottom:145.345200px;}
.yee{bottom:145.699050px;}
.y189{bottom:146.515800px;}
.y13b{bottom:152.083200px;}
.y127{bottom:152.206350px;}
.y2d{bottom:153.544560px;}
.yac{bottom:154.425960px;}
.y76{bottom:157.394610px;}
.y120{bottom:158.305050px;}
.y3b{bottom:161.809380px;}
.y4a{bottom:161.809680px;}
.y19a{bottom:163.387800px;}
.y59{bottom:166.725960px;}
.y178{bottom:167.485050px;}
.y29{bottom:168.390840px;}
.y9c{bottom:168.745050px;}
.y1bf{bottom:170.184300px;}
.yde{bottom:171.793170px;}
.y65{bottom:172.320000px;}
.y82{bottom:172.345050px;}
.y146{bottom:173.245050px;}
.y192{bottom:173.827800px;}
.y8e{bottom:174.248850px;}
.y16c{bottom:179.005050px;}
.y15a{bottom:181.885200px;}
.yf7{bottom:186.039600px;}
.yab{bottom:186.830640px;}
.y1d3{bottom:187.584300px;}
.y150{bottom:190.015650px;}
.y2c{bottom:190.274280px;}
.y180{bottom:190.711170px;}
.ye8{bottom:191.020890px;}
.y1f{bottom:191.192640px;}
.y3a{bottom:192.404700px;}
.y49{bottom:192.405000px;}
.yc7{bottom:193.402170px;}
.y1be{bottom:195.024300px;}
.y79{bottom:196.168680px;}
.y13a{bottom:197.080320px;}
.y28{bottom:197.190660px;}
.y11f{bottom:197.905050px;}
.y188{bottom:198.355950px;}
.y58{bottom:199.130640px;}
.y111{bottom:202.626300px;}
.y163{bottom:203.485050px;}
.y75{bottom:204.188490px;}
.ybb{bottom:204.469800px;}
.y1a3{bottom:205.831170px;}
.y9b{bottom:208.340370px;}
.y1d2{bottom:209.184300px;}
.y177{bottom:210.685050px;}
.y64{bottom:211.200000px;}
.y199{bottom:215.587800px;}
.y145{bottom:216.445050px;}
.y1ae{bottom:217.165050px;}
.y8d{bottom:217.448850px;}
.yaa{bottom:219.235320px;}
.y1bd{bottom:219.864300px;}
.yd1{bottom:219.865920px;}
.ydd{bottom:222.205050px;}
.y81{bottom:224.185050px;}
.y1e{bottom:224.664000px;}
.y113{bottom:224.725650px;}
.y191{bottom:225.999720px;}
.y2b{bottom:227.004000px;}
.y39{bottom:229.129380px;}
.y48{bottom:229.129680px;}
.y14f{bottom:229.609530px;}
.y17f{bottom:230.305050px;}
.y1d1{bottom:230.784300px;}
.y57{bottom:231.535320px;}
.y110{bottom:232.326300px;}
.y102{bottom:233.905200px;}
.yb7{bottom:234.538800px;}
.ye7{bottom:236.399970px;}
.yf6{bottom:236.439600px;}
.yba{bottom:236.869800px;}
.ybe{bottom:237.457800px;}
.y11e{bottom:237.505050px;}
.yc6{bottom:238.405050px;}
.y9a{bottom:240.745050px;}
.y126{bottom:241.667700px;}
.y159{bottom:242.365200px;}
.y27{bottom:243.299100px;}
.y1a2{bottom:245.425050px;}
.y16b{bottom:245.860650px;}
.y162{bottom:246.685050px;}
.yd0{bottom:247.225200px;}
.y6e{bottom:248.916600px;}
.y63{bottom:250.080000px;}
.y187{bottom:250.195950px;}
.y1bc{bottom:250.824300px;}
.y139{bottom:251.068800px;}
.ya9{bottom:251.640000px;}
.y1d0{bottom:252.384300px;}
.y7{bottom:252.763800px;}
.y176{bottom:253.885050px;}
.y144{bottom:259.645050px;}
.y38{bottom:259.724700px;}
.y47{bottom:259.725000px;}
.y8c{bottom:260.648850px;}
.y10f{bottom:261.837300px;}
.y125{bottom:263.267700px;}
.y56{bottom:263.940000px;}
.y1d{bottom:264.986880px;}
.y130{bottom:265.822650px;}
.yb6{bottom:266.938800px;}
.y190{bottom:267.773760px;}
.y198{bottom:267.787800px;}
.y14e{bottom:269.203410px;}
.yb9{bottom:269.269800px;}
.ybd{bottom:269.857800px;}
.y132{bottom:270.717750px;}
.y1ad{bottom:272.605050px;}
.y6{bottom:274.363800px;}
.y1bb{bottom:275.664300px;}
.y80{bottom:276.025050px;}
.y11d{bottom:277.111170px;}
.y17e{bottom:277.831170px;}
.y123{bottom:278.398650px;}
.y101{bottom:279.265200px;}
.yf{bottom:280.980150px;}
.y99{bottom:281.065050px;}
.ye6{bottom:281.779050px;}
.ydc{bottom:282.613770px;}
.y1cf{bottom:282.984300px;}
.y6a{bottom:283.464870px;}
.y124{bottom:284.867700px;}
.yf5{bottom:286.839600px;}
.y26{bottom:289.407540px;}
.y12f{bottom:291.199950px;}
.ya8{bottom:291.225960px;}
.y131{bottom:292.317750px;}
.yc5{bottom:292.402170px;}
.y1a1{bottom:292.951170px;}
.y5{bottom:295.963800px;}
.y46{bottom:296.449680px;}
.y37{bottom:296.454060px;}
.y62{bottom:297.600000px;}
.y161{bottom:298.525050px;}
.y1c{bottom:298.654800px;}
.yb5{bottom:299.338800px;}
.y122{bottom:299.998650px;}
.yb8{bottom:301.669800px;}
.y16a{bottom:301.681530px;}
.ybc{bottom:302.257800px;}
.y158{bottom:302.821440px;}
.y143{bottom:302.845050px;}
.y55{bottom:303.530640px;}
.y108{bottom:303.834600px;}
.y8b{bottom:303.848850px;}
.y1ce{bottom:304.584300px;}
.y175{bottom:305.725050px;}
.y1ba{bottom:306.444300px;}
.y14d{bottom:308.797290px;}
.y18f{bottom:309.547800px;}
.y74{bottom:316.525050px;}
.y11c{bottom:316.705050px;}
.ycf{bottom:316.748040px;}
.y17d{bottom:317.425050px;}
.y8{bottom:317.563800px;}
.y100{bottom:318.145200px;}
.y1b1{bottom:318.489750px;}
.y6d{bottom:318.497310px;}
.y1a8{bottom:318.504870px;}
.y197{bottom:319.973760px;}
.y121{bottom:320.109750px;}
.ya7{bottom:323.630640px;}
.y1ac{bottom:324.445050px;}
.y98{bottom:324.625050px;}
.y45{bottom:327.045000px;}
.y36{bottom:327.049380px;}
.yed{bottom:327.100890px;}
.y7f{bottom:327.865050px;}
.y1b9{bottom:331.284300px;}
.y1b{bottom:332.322720px;}
.y1a0{bottom:332.545050px;}
.ydb{bottom:333.025650px;}
.ye{bottom:334.428270px;}
.y1cd{bottom:335.184300px;}
.y25{bottom:335.515980px;}
.y54{bottom:335.935320px;}
.yf4{bottom:337.239600px;}
.yc4{bottom:337.405050px;}
.y160{bottom:341.725050px;}
.y107{bottom:343.434600px;}
.y69{bottom:343.774590px;}
.y61{bottom:345.120000px;}
.y142{bottom:346.045050px;}
.y8a{bottom:347.048850px;}
.y14c{bottom:348.391170px;}
.y174{bottom:348.925050px;}
.y157{bottom:353.233320px;}
.y186{bottom:353.875950px;}
.ya6{bottom:356.035320px;}
.y1b8{bottom:356.124300px;}
.y11b{bottom:356.305050px;}
.yce{bottom:356.341920px;}
.y1cc{bottom:356.784300px;}
.yff{bottom:357.025200px;}
.y169{bottom:357.502410px;}
.y35{bottom:357.644700px;}
.y138{bottom:359.083200px;}
.y18e{bottom:361.733760px;}
.y196{bottom:361.747800px;}
.y44{bottom:363.779040px;}
.y17c{bottom:364.951170px;}
.y1a{bottom:365.794080px;}
.y97{bottom:368.185050px;}
.y53{bottom:368.340000px;}
.yd{bottom:370.440150px;}
.ye5{bottom:372.460890px;}
.yec{bottom:372.479970px;}
.y73{bottom:372.685050px;}
.y1ab{bottom:376.285050px;}
.y1cb{bottom:378.384300px;}
.y7e{bottom:379.705050px;}
.y19f{bottom:380.071170px;}
.y1b7{bottom:380.964300px;}
.y24{bottom:381.624420px;}
.yda{bottom:383.437530px;}
.yb{bottom:387.202050px;}
.yf3{bottom:387.639600px;}
.y14b{bottom:387.985050px;}
.ya5{bottom:388.440000px;}
.y141{bottom:389.245050px;}
.y89{bottom:390.248850px;}
.yc3{bottom:391.402170px;}
.y60{bottom:392.640000px;}
.y15f{bottom:393.565050px;}
.y34{bottom:394.369380px;}
.y43{bottom:394.374360px;}
.y6c{bottom:395.889750px;}
.y1a7{bottom:395.897310px;}
.y11a{bottom:395.905050px;}
.ycd{bottom:395.935800px;}
.y185{bottom:397.075950px;}
.y1ca{bottom:399.984300px;}
.y173{bottom:400.765050px;}
.yfe{bottom:402.385200px;}
.y18d{bottom:403.507800px;}
.y156{bottom:403.645200px;}
.y68{bottom:404.252070px;}
.y17b{bottom:404.545050px;}
.ya{bottom:405.204750px;}
.y19{bottom:406.116960px;}
.y10e{bottom:407.036700px;}
.y52{bottom:407.921280px;}
.y96{bottom:411.742890px;}
.y1b6{bottom:411.744300px;}
.y137{bottom:413.080320px;}
.y168{bottom:413.323290px;}
.y195{bottom:413.933760px;}
.ye4{bottom:417.839970px;}
.yeb{bottom:417.859050px;}
.y12e{bottom:418.326810px;}
.y19e{bottom:419.665050px;}
.y9{bottom:423.207450px;}
.y133{bottom:424.190100px;}
.y33{bottom:424.964700px;}
.y42{bottom:424.969680px;}
.yc{bottom:426.780150px;}
.y23{bottom:427.732860px;}
.ya4{bottom:428.016600px;}
.y72{bottom:428.845050px;}
.y1aa{bottom:428.851170px;}
.y1c9{bottom:430.584300px;}
.y5f{bottom:431.520000px;}
.y7d{bottom:431.545050px;}
.y140{bottom:432.445050px;}
.y88{bottom:433.448850px;}
.yd9{bottom:433.849410px;}
.y114{bottom:434.981100px;}
.y119{bottom:435.511170px;}
.y14a{bottom:435.529530px;}
.ycc{bottom:435.529680px;}
.yc2{bottom:436.405050px;}
.y1b5{bottom:436.584300px;}
.y10d{bottom:436.736700px;}
.y15e{bottom:436.765050px;}
.yf2{bottom:438.039600px;}
.y18{bottom:439.784880px;}
.y51{bottom:440.325960px;}
.yfd{bottom:441.265200px;}
.y12d{bottom:443.704110px;}
.y95{bottom:447.383970px;}
.y184{bottom:448.915950px;}
.y67{bottom:449.631150px;}
.y1c8{bottom:452.184300px;}
.y172{bottom:452.605050px;}
.y41{bottom:455.565000px;}
.y18c{bottom:455.707800px;}
.y136{bottom:458.083200px;}
.ya3{bottom:460.421280px;}
.y1b4{bottom:461.424300px;}
.y32{bottom:461.694060px;}
.ye3{bottom:463.219050px;}
.y155{bottom:464.125200px;}
.y10c{bottom:466.247700px;}
.y19d{bottom:467.191170px;}
.y12c{bottom:468.912930px;}
.y167{bottom:469.144170px;}
.y50{bottom:472.730640px;}
.y1a6{bottom:473.289750px;}
.y17{bottom:473.452800px;}
.y1c7{bottom:473.784300px;}
.y22{bottom:473.841300px;}
.y118{bottom:475.105050px;}
.y149{bottom:475.123410px;}
.ycb{bottom:475.123560px;}
.y1a9{bottom:475.645050px;}
.y87{bottom:476.648850px;}
.y5e{bottom:479.040000px;}
.y4{bottom:479.116200px;}
.yfc{bottom:480.145200px;}
.y94{bottom:483.025050px;}
.y7c{bottom:483.385050px;}
.yd8{bottom:484.261290px;}
.y71{bottom:485.002890px;}
.y13f{bottom:485.011170px;}
.yf1{bottom:488.439600px;}
.y15d{bottom:488.605050px;}
.yc1{bottom:490.402170px;}
.y31{bottom:492.289380px;}
.y40{bottom:492.289680px;}
.ya2{bottom:492.825960px;}
.y12b{bottom:494.121750px;}
.y1c6{bottom:495.384300px;}
.y171{bottom:495.805050px;}
.y10b{bottom:497.377650px;}
.y3{bottom:500.716200px;}
.y183{bottom:500.755800px;}
.y17a{bottom:504.445050px;}
.y4f{bottom:505.135320px;}
.y19c{bottom:506.785050px;}
.y16{bottom:507.120720px;}
.y1b3{bottom:511.104300px;}
.y135{bottom:512.080320px;}
.y117{bottom:514.717290px;}
.yca{bottom:514.717440px;}
.y1c5{bottom:516.984300px;}
.y5d{bottom:517.920000px;}
.yfb{bottom:519.025200px;}
.y86{bottom:519.848850px;}
.y21{bottom:519.949740px;}
.y2{bottom:522.316200px;}
.y30{bottom:522.884700px;}
.y3f{bottom:522.885000px;}
.y154{bottom:524.605200px;}
.y166{bottom:524.944170px;}
.ya1{bottom:525.230640px;}
.y93{bottom:526.582890px;}
.y10a{bottom:527.077650px;}
.y70{bottom:531.796770px;}
.y13e{bottom:531.805050px;}
.yea{bottom:531.993090px;}
.ye2{bottom:532.015620px;}
.yd7{bottom:534.673170px;}
.y18b{bottom:534.745470px;}
.y7b{bottom:535.225050px;}
.yc0{bottom:535.405050px;}
.y4e{bottom:537.540000px;}
.y1c4{bottom:538.584300px;}
.y15{bottom:540.592080px;}
.y1{bottom:543.916200px;}
.y170{bottom:547.645050px;}
.y116{bottom:554.311170px;}
.yc9{bottom:554.311320px;}
.y109{bottom:556.588650px;}
.y5c{bottom:556.800000px;}
.y134{bottom:557.083200px;}
.ya0{bottom:557.635320px;}
.yfa{bottom:557.905200px;}
.y92{bottom:562.223970px;}
.y1b2{bottom:564.024300px;}
.y1c3{bottom:571.524300px;}
.y14{bottom:574.252080px;}
.y4d{bottom:577.135320px;}
.y165{bottom:580.765050px;}
.y2f{bottom:581.366250px;}
.y3e{bottom:581.376780px;}
.ye9{bottom:582.404970px;}
.ye1{bottom:582.427500px;}
.yd6{bottom:585.085050px;}
.y153{bottom:585.085200px;}
.y18a{bottom:585.157350px;}
.y7a{bottom:587.065050px;}
.y6f{bottom:587.965050px;}
.ybf{bottom:589.405050px;}
.y9f{bottom:590.040000px;}
.y16f{bottom:590.845050px;}
.y115{bottom:593.905050px;}
.yc8{bottom:593.905200px;}
.yf9{bottom:596.785200px;}
.y91{bottom:597.865050px;}
.y20{bottom:599.526300px;}
.y5b{bottom:604.320000px;}
.y13{bottom:607.920000px;}
.y4c{bottom:609.540000px;}
.y85{bottom:651.754410px;}
.y12{bottom:654.963120px;}
.y5a{bottom:655.027650px;}
.y13d{bottom:663.466470px;}
.y2a{bottom:682.872750px;}
.y78{bottom:683.242350px;}
.ye0{bottom:685.402350px;}
.y16e{bottom:685.624350px;}
.ydf{bottom:687.742350px;}
.y11{bottom:703.035000px;}
.y13c{bottom:721.042350px;}
.y84{bottom:723.742350px;}
.h3{height:43.506914px;}
.h28{height:49.218750px;}
.h26{height:49.886719px;}
.h1{height:52.417969px;}
.h2{height:52.453125px;}
.h27{height:61.164492px;}
.h1b{height:61.370156px;}
.hc{height:66.349336px;}
.hb{height:69.528867px;}
.h7{height:69.762656px;}
.h24{height:71.982422px;}
.hd{height:74.433516px;}
.he{height:74.483437px;}
.h12{height:74.830078px;}
.h1c{height:78.416016px;}
.h18{height:78.626953px;}
.h23{height:78.679688px;}
.h9{height:81.826875px;}
.ha{height:81.858555px;}
.h1e{height:82.875937px;}
.h1a{height:87.538008px;}
.h5{height:87.596719px;}
.h19{height:95.989219px;}
.h25{height:99.773438px;}
.h10{height:104.835938px;}
.hf{height:104.906250px;}
.h1d{height:109.102500px;}
.h29{height:109.114020px;}
.h15{height:113.746992px;}
.h16{height:113.823281px;}
.h11{height:116.236055px;}
.h8{height:116.367891px;}
.h20{height:122.133867px;}
.h1f{height:122.215781px;}
.h2d{height:126.936563px;}
.h14{height:127.985625px;}
.h2b{height:135.329062px;}
.h2c{height:135.412582px;}
.h2a{height:139.955977px;}
.h6{height:140.049844px;}
.h17{height:174.551836px;}
.h22{height:174.668906px;}
.h13{height:187.656328px;}
.h21{height:192.373945px;}
.h4{height:209.671875px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3f{left:35.982240px;}
.x3e{left:42.637200px;}
.x23{left:44.827350px;}
.x3d{left:51.271800px;}
.x41{left:56.495430px;}
.x28{left:57.797250px;}
.x4f{left:60.300000px;}
.x2d{left:65.037900px;}
.x42{left:71.426970px;}
.x40{left:77.365890px;}
.x50{left:81.540000px;}
.x11{left:82.800300px;}
.x4a{left:109.800000px;}
.x19{left:116.640300px;}
.x2e{left:119.037900px;}
.x20{left:124.550100px;}
.x24{left:136.800000px;}
.x1a{left:143.640300px;}
.x25{left:154.800000px;}
.x1{left:156.439650px;}
.x4b{left:163.800000px;}
.x26{left:199.830060px;}
.x48{left:208.800000px;}
.x46{left:226.800000px;}
.x43{left:250.211400px;}
.xb{left:252.341610px;}
.x47{left:262.800000px;}
.x1f{left:264.160650px;}
.x9{left:282.759450px;}
.xa{left:286.897830px;}
.x44{left:325.100760px;}
.x3{left:343.618350px;}
.x4{left:368.098350px;}
.x6{left:369.178350px;}
.x5{left:371.338350px;}
.x7{left:386.998350px;}
.x8{left:397.978350px;}
.x2{left:433.258350px;}
.x14{left:449.560200px;}
.x39{left:484.417650px;}
.x15{left:490.060200px;}
.x38{left:500.713200px;}
.x45{left:522.982500px;}
.x29{left:526.379250px;}
.x49{left:570.892800px;}
.xd{left:611.950950px;}
.xf{left:613.030950px;}
.x2f{left:615.044550px;}
.x30{left:649.784550px;}
.x12{left:652.568100px;}
.x31{left:653.873400px;}
.x37{left:685.979550px;}
.xc{left:687.299550px;}
.x4c{left:720.000000px;}
.x27{left:730.800000px;}
.x2b{left:742.287780px;}
.x4e{left:754.800150px;}
.x4d{left:774.000000px;}
.x2c{left:796.300350px;}
.xe{left:805.807890px;}
.x34{left:846.420450px;}
.x32{left:847.851450px;}
.x16{left:849.152640px;}
.x17{left:853.507050px;}
.x13{left:866.735340px;}
.x35{left:872.583750px;}
.x33{left:873.960450px;}
.x36{left:896.532750px;}
.x3c{left:899.909400px;}
.x18{left:907.507050px;}
.x2a{left:1003.600500px;}
.x1b{left:1044.879150px;}
.x1c{left:1063.961850px;}
.x1e{left:1101.036810px;}
.x3a{left:1171.430850px;}
.x1d{left:1196.450310px;}
.x3b{left:1207.790850px;}
.x21{left:1390.197750px;}
.x22{left:1391.997750px;}
.x10{left:1403.517750px;}
@media print{
.v1{vertical-align:-65.306667pt;}
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-19.200000pt;}
.ls5f{letter-spacing:-12.918400pt;}
.ls2c{letter-spacing:-6.384000pt;}
.ls15{letter-spacing:-2.808960pt;}
.ls3c{letter-spacing:-2.400000pt;}
.ls2a{letter-spacing:-2.222080pt;}
.ls4{letter-spacing:-1.859200pt;}
.ls11{letter-spacing:-1.447040pt;}
.ls4c{letter-spacing:-1.440000pt;}
.ls17{letter-spacing:-1.361920pt;}
.ls53{letter-spacing:-1.216000pt;}
.ls6b{letter-spacing:-1.088000pt;}
.ls38{letter-spacing:-0.673920pt;}
.ls6c{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.599040pt;}
.ls13{letter-spacing:-0.595840pt;}
.ls6a{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.341760pt;}
.ls5c{letter-spacing:-0.330240pt;}
.ls66{letter-spacing:-0.309760pt;}
.ls39{letter-spacing:-0.299520pt;}
.ls23{letter-spacing:-0.298240pt;}
.ls2e{letter-spacing:-0.288000pt;}
.ls67{letter-spacing:-0.277760pt;}
.ls1c{letter-spacing:-0.272640pt;}
.ls32{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.255360pt;}
.ls50{letter-spacing:-0.234240pt;}
.ls1f{letter-spacing:-0.213760pt;}
.ls2b{letter-spacing:-0.213120pt;}
.ls5{letter-spacing:-0.212480pt;}
.lsd{letter-spacing:-0.199680pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls5d{letter-spacing:-0.165120pt;}
.ls47{letter-spacing:-0.149120pt;}
.lsb{letter-spacing:-0.142080pt;}
.ls29{letter-spacing:-0.138880pt;}
.ls3f{letter-spacing:-0.133120pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls4f{letter-spacing:-0.117120pt;}
.ls21{letter-spacing:-0.106880pt;}
.ls24{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.085120pt;}
.ls37{letter-spacing:-0.074880pt;}
.ls69{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.044736pt;}
.ls51{letter-spacing:0.074880pt;}
.ls14{letter-spacing:0.085120pt;}
.ls3b{letter-spacing:0.096000pt;}
.ls44{letter-spacing:0.101120pt;}
.ls7{letter-spacing:0.106880pt;}
.ls30{letter-spacing:0.117120pt;}
.ls68{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.133120pt;}
.ls48{letter-spacing:0.149120pt;}
.ls54{letter-spacing:0.149760pt;}
.ls63{letter-spacing:0.154880pt;}
.ls26{letter-spacing:0.156160pt;}
.lsa{letter-spacing:0.170240pt;}
.ls1{letter-spacing:0.170880pt;}
.ls18{letter-spacing:0.181760pt;}
.ls35{letter-spacing:0.192000pt;}
.ls59{letter-spacing:0.193856pt;}
.ls9{letter-spacing:0.199680pt;}
.ls43{letter-spacing:0.212352pt;}
.ls20{letter-spacing:0.213760pt;}
.ls4b{letter-spacing:0.220800pt;}
.ls25{letter-spacing:0.229120pt;}
.ls65{letter-spacing:0.234880pt;}
.ls61{letter-spacing:0.243200pt;}
.ls12{letter-spacing:0.255360pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3e{letter-spacing:0.266240pt;}
.ls5a{letter-spacing:0.268416pt;}
.ls27{letter-spacing:0.277760pt;}
.lsc{letter-spacing:0.284160pt;}
.ls3a{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.298240pt;}
.ls36{letter-spacing:0.299520pt;}
.ls64{letter-spacing:0.309760pt;}
.ls16{letter-spacing:0.340480pt;}
.ls42{letter-spacing:0.363072pt;}
.ls52{letter-spacing:0.426240pt;}
.ls41{letter-spacing:0.445056pt;}
.ls1d{letter-spacing:0.513024pt;}
.ls1a{letter-spacing:0.999680pt;}
.ls34{letter-spacing:29.498880pt;}
.ls58{letter-spacing:35.456000pt;}
.ls1e{letter-spacing:82.912000pt;}
.ls57{letter-spacing:87.680000pt;}
.ls49{letter-spacing:91.808000pt;}
.ls19{letter-spacing:112.192000pt;}
.ls56{letter-spacing:115.200000pt;}
.ls4e{letter-spacing:118.993920pt;}
.ls60{letter-spacing:119.008000pt;}
.ls4d{letter-spacing:119.060480pt;}
.ls31{letter-spacing:122.592000pt;}
.ls5b{letter-spacing:134.208000pt;}
.ls62{letter-spacing:137.792000pt;}
.ls45{letter-spacing:139.808000pt;}
.ls28{letter-spacing:143.392000pt;}
.ls55{letter-spacing:145.367040pt;}
.ls3d{letter-spacing:145.408000pt;}
.ls5e{letter-spacing:147.200000pt;}
.ls2f{letter-spacing:151.008000pt;}
.ls33{letter-spacing:154.592000pt;}
.ls4a{letter-spacing:158.400000pt;}
.ls1b{letter-spacing:160.192000pt;}
.ws5d{word-spacing:-71.168000pt;}
.wsee{word-spacing:-65.531520pt;}
.wsa0{word-spacing:-59.247360pt;}
.wsad{word-spacing:-59.034240pt;}
.ws3{word-spacing:-47.675520pt;}
.wse9{word-spacing:-47.162880pt;}
.wse0{word-spacing:-45.903360pt;}
.ws62{word-spacing:-43.568640pt;}
.wsf0{word-spacing:-43.211520pt;}
.wsef{word-spacing:-42.746880pt;}
.wsdc{word-spacing:-41.753600pt;}
.ws10{word-spacing:-39.782400pt;}
.ws11{word-spacing:-39.498240pt;}
.ws44{word-spacing:-39.356160pt;}
.ws59{word-spacing:-38.886400pt;}
.ws5a{word-spacing:-38.608640pt;}
.ws5b{word-spacing:-38.469760pt;}
.wsfb{word-spacing:-38.330880pt;}
.wsd2{word-spacing:-37.273600pt;}
.wsd3{word-spacing:-37.007360pt;}
.ws5c{word-spacing:-36.386560pt;}
.wsea{word-spacing:-35.840000pt;}
.wsd7{word-spacing:-35.456000pt;}
.wsd6{word-spacing:-35.328000pt;}
.ws4e{word-spacing:-33.402880pt;}
.wsbd{word-spacing:-32.676480pt;}
.ws46{word-spacing:-29.926400pt;}
.ws45{word-spacing:-29.819520pt;}
.ws49{word-spacing:-29.712640pt;}
.ws47{word-spacing:-29.605760pt;}
.ws48{word-spacing:-29.498880pt;}
.ws9c{word-spacing:-28.212480pt;}
.ws9d{word-spacing:-28.111360pt;}
.ws12{word-spacing:-27.955200pt;}
.ws16{word-spacing:-27.755520pt;}
.wsac{word-spacing:-26.908800pt;}
.ws6b{word-spacing:-26.688000pt;}
.wsab{word-spacing:-26.400000pt;}
.ws3d{word-spacing:-25.446400pt;}
.ws3c{word-spacing:-25.264640pt;}
.ws3a{word-spacing:-24.992000pt;}
.ws81{word-spacing:-21.984000pt;}
.wsb7{word-spacing:-21.888000pt;}
.ws82{word-spacing:-21.792000pt;}
.ws85{word-spacing:-21.696000pt;}
.ws83{word-spacing:-21.408000pt;}
.ws7e{word-spacing:-21.116160pt;}
.ws7d{word-spacing:-20.816640pt;}
.ws7b{word-spacing:-20.741760pt;}
.ws7f{word-spacing:-20.517120pt;}
.wsb8{word-spacing:-20.256000pt;}
.ws7c{word-spacing:-20.142720pt;}
.ws1e{word-spacing:-19.322240pt;}
.ws20{word-spacing:-19.237120pt;}
.ws24{word-spacing:-19.152000pt;}
.ws26{word-spacing:-18.981760pt;}
.ws0{word-spacing:-18.048000pt;}
.ws102{word-spacing:-17.920000pt;}
.ws101{word-spacing:-17.792000pt;}
.ws1b{word-spacing:-17.790080pt;}
.ws106{word-spacing:-17.664000pt;}
.ws104{word-spacing:-17.600000pt;}
.ws100{word-spacing:-17.408000pt;}
.ws68{word-spacing:-17.279360pt;}
.ws107{word-spacing:-17.152000pt;}
.wsc5{word-spacing:-16.997760pt;}
.ws105{word-spacing:-16.704000pt;}
.wsc6{word-spacing:-14.656000pt;}
.ws1{word-spacing:-14.554880pt;}
.wsaf{word-spacing:-11.359296pt;}
.wsaa{word-spacing:-11.082240pt;}
.ws57{word-spacing:-10.081280pt;}
.wsdf{word-spacing:-9.728000pt;}
.wsbf{word-spacing:-8.290368pt;}
.ws89{word-spacing:-7.459200pt;}
.wsd5{word-spacing:-7.347840pt;}
.ws66{word-spacing:-7.246080pt;}
.wsd9{word-spacing:-6.656000pt;}
.wsb9{word-spacing:-6.606720pt;}
.ws95{word-spacing:-5.120000pt;}
.ws10a{word-spacing:-4.608000pt;}
.ws10e{word-spacing:-4.480000pt;}
.ws10d{word-spacing:-3.840000pt;}
.wsf9{word-spacing:-3.665920pt;}
.wsb6{word-spacing:-3.648000pt;}
.ws2f{word-spacing:-2.995200pt;}
.wsf6{word-spacing:-2.942720pt;}
.ws76{word-spacing:-2.885760pt;}
.ws103{word-spacing:-2.688000pt;}
.ws8a{word-spacing:-2.545920pt;}
.wsf5{word-spacing:-2.323200pt;}
.wsd1{word-spacing:-2.321280pt;}
.ws17{word-spacing:-2.296320pt;}
.ws14{word-spacing:-2.256384pt;}
.wse{word-spacing:-2.244480pt;}
.ws8b{word-spacing:-2.171520pt;}
.wsf8{word-spacing:-2.168320pt;}
.ws79{word-spacing:-2.094848pt;}
.ws5{word-spacing:-2.048000pt;}
.wsd8{word-spacing:-1.944320pt;}
.ws10c{word-spacing:-1.920000pt;}
.ws64{word-spacing:-1.873920pt;}
.ws10b{word-spacing:-1.792000pt;}
.ws109{word-spacing:-1.728000pt;}
.wscb{word-spacing:-1.722240pt;}
.wsf4{word-spacing:-1.703680pt;}
.ws2e{word-spacing:-1.697280pt;}
.wsfc{word-spacing:-1.666560pt;}
.wscc{word-spacing:-1.647360pt;}
.ws73{word-spacing:-1.603200pt;}
.wsf2{word-spacing:-1.548800pt;}
.ws65{word-spacing:-1.536000pt;}
.ws34{word-spacing:-1.532160pt;}
.ws3b{word-spacing:-1.517696pt;}
.ws75{word-spacing:-1.496320pt;}
.ws8c{word-spacing:-1.440000pt;}
.wsca{word-spacing:-1.408000pt;}
.ws74{word-spacing:-1.282560pt;}
.ws93{word-spacing:-1.277952pt;}
.ws63{word-spacing:-1.249280pt;}
.ws18{word-spacing:-1.198080pt;}
.wsb5{word-spacing:-1.152000pt;}
.ws56{word-spacing:-1.145600pt;}
.ws61{word-spacing:-1.111040pt;}
.ws2c{word-spacing:-1.098240pt;}
.ws108{word-spacing:-1.088000pt;}
.ws13{word-spacing:-1.048320pt;}
.ws22{word-spacing:-1.046976pt;}
.ws39{word-spacing:-1.036032pt;}
.ws6{word-spacing:-1.024000pt;}
.wsd{word-spacing:-0.961920pt;}
.wsf3{word-spacing:-0.929280pt;}
.ws43{word-spacing:-0.908800pt;}
.ws6d{word-spacing:-0.896000pt;}
.wsfe{word-spacing:-0.894720pt;}
.ws77{word-spacing:-0.855040pt;}
.ws96{word-spacing:-0.798720pt;}
.ws9{word-spacing:-0.768000pt;}
.wsa1{word-spacing:-0.745600pt;}
.ws9e{word-spacing:-0.707840pt;}
.wsa4{word-spacing:-0.704640pt;}
.wsc3{word-spacing:-0.703296pt;}
.ws72{word-spacing:-0.702720pt;}
.wsd4{word-spacing:-0.683520pt;}
.ws58{word-spacing:-0.624640pt;}
.wsa9{word-spacing:-0.596480pt;}
.ws2{word-spacing:-0.546816pt;}
.wsfd{word-spacing:-0.458240pt;}
.ws3f{word-spacing:-0.454400pt;}
.wsff{word-spacing:-0.432448pt;}
.ws4f{word-spacing:-0.426240pt;}
.ws60{word-spacing:-0.416640pt;}
.wsba{word-spacing:-0.384000pt;}
.wscd{word-spacing:-0.374400pt;}
.wsf{word-spacing:-0.341760pt;}
.ws36{word-spacing:-0.340480pt;}
.ws4c{word-spacing:-0.320640pt;}
.ws10f{word-spacing:-0.320000pt;}
.wsf7{word-spacing:-0.309760pt;}
.wsd0{word-spacing:-0.299520pt;}
.wsa6{word-spacing:-0.298240pt;}
.ws5e{word-spacing:-0.277760pt;}
.ws3e{word-spacing:-0.272640pt;}
.ws99{word-spacing:-0.266240pt;}
.ws8{word-spacing:-0.256000pt;}
.ws37{word-spacing:-0.255360pt;}
.wsda{word-spacing:-0.213120pt;}
.ws2b{word-spacing:-0.199680pt;}
.ws91{word-spacing:-0.192000pt;}
.wsf1{word-spacing:-0.154880pt;}
.wsa2{word-spacing:-0.149120pt;}
.ws97{word-spacing:-0.133120pt;}
.wsbb{word-spacing:-0.128000pt;}
.ws71{word-spacing:-0.117120pt;}
.ws4b{word-spacing:-0.106880pt;}
.ws90{word-spacing:-0.096000pt;}
.ws32{word-spacing:-0.085120pt;}
.wscf{word-spacing:-0.074880pt;}
.wsc{word-spacing:0.000000pt;}
.wsc9{word-spacing:0.064000pt;}
.ws8e{word-spacing:0.096000pt;}
.ws23{word-spacing:0.110656pt;}
.wsc0{word-spacing:0.117120pt;}
.ws6c{word-spacing:0.128000pt;}
.ws9a{word-spacing:0.133120pt;}
.ws5f{word-spacing:0.138880pt;}
.ws2a{word-spacing:0.142080pt;}
.wse2{word-spacing:0.165120pt;}
.ws42{word-spacing:0.181760pt;}
.ws4{word-spacing:0.192000pt;}
.ws2d{word-spacing:0.199680pt;}
.wsa3{word-spacing:0.213120pt;}
.ws4a{word-spacing:0.213760pt;}
.wsfa{word-spacing:0.229120pt;}
.ws31{word-spacing:0.255360pt;}
.ws78{word-spacing:0.256000pt;}
.ws38{word-spacing:0.284160pt;}
.ws92{word-spacing:0.288000pt;}
.wsa5{word-spacing:0.298240pt;}
.wse6{word-spacing:0.330240pt;}
.ws40{word-spacing:0.363520pt;}
.ws6a{word-spacing:0.371200pt;}
.ws50{word-spacing:0.384000pt;}
.wsc7{word-spacing:0.426240pt;}
.ws53{word-spacing:0.447360pt;}
.wsb4{word-spacing:0.480000pt;}
.wse8{word-spacing:0.495360pt;}
.ws7{word-spacing:0.512000pt;}
.ws9b{word-spacing:0.532480pt;}
.ws94{word-spacing:0.572416pt;}
.ws8d{word-spacing:0.576000pt;}
.ws70{word-spacing:0.585600pt;}
.ws28{word-spacing:0.595840pt;}
.ws67{word-spacing:0.639360pt;}
.wsed{word-spacing:0.640000pt;}
.wsce{word-spacing:0.673920pt;}
.ws30{word-spacing:0.680960pt;}
.wsc2{word-spacing:0.702720pt;}
.wsec{word-spacing:0.714432pt;}
.ws55{word-spacing:0.768000pt;}
.ws98{word-spacing:0.798720pt;}
.ws35{word-spacing:0.851200pt;}
.wsa8{word-spacing:0.894720pt;}
.wsae{word-spacing:0.959040pt;}
.wse4{word-spacing:0.990720pt;}
.ws41{word-spacing:0.999680pt;}
.ws51{word-spacing:1.024000pt;}
.wsb2{word-spacing:1.056000pt;}
.ws88{word-spacing:1.065600pt;}
.ws7a{word-spacing:1.068800pt;}
.ws86{word-spacing:1.084800pt;}
.wse1{word-spacing:1.122816pt;}
.ws15{word-spacing:1.128192pt;}
.ws6f{word-spacing:1.152000pt;}
.wse3{word-spacing:1.155840pt;}
.wsa7{word-spacing:1.192960pt;}
.wsc8{word-spacing:1.216000pt;}
.wsbc{word-spacing:1.218048pt;}
.ws8f{word-spacing:1.248000pt;}
.wsc4{word-spacing:1.278720pt;}
.wsc1{word-spacing:1.288320pt;}
.ws54{word-spacing:1.491200pt;}
.ws84{word-spacing:1.507200pt;}
.ws6e{word-spacing:1.664000pt;}
.ws29{word-spacing:1.779008pt;}
.wsb3{word-spacing:1.824000pt;}
.wsb{word-spacing:1.859200pt;}
.wsb0{word-spacing:1.920000pt;}
.ws52{word-spacing:2.304000pt;}
.wse7{word-spacing:2.476800pt;}
.ws9f{word-spacing:2.528000pt;}
.ws33{word-spacing:2.808960pt;}
.wse5{word-spacing:3.137280pt;}
.wsb1{word-spacing:3.744000pt;}
.wsa{word-spacing:4.408960pt;}
.ws87{word-spacing:5.088000pt;}
.wseb{word-spacing:12.918400pt;}
.wsde{word-spacing:29.184000pt;}
.wsbe{word-spacing:32.149440pt;}
.wsdd{word-spacing:36.224000pt;}
.ws69{word-spacing:38.272000pt;}
.wsdb{word-spacing:49.603840pt;}
.ws4d{word-spacing:74.368000pt;}
.ws27{word-spacing:155.965376pt;}
.ws1d{word-spacing:206.509632pt;}
.ws1f{word-spacing:408.465344pt;}
.ws1a{word-spacing:444.624320pt;}
.ws25{word-spacing:477.404032pt;}
.ws21{word-spacing:484.137024pt;}
.ws19{word-spacing:494.027968pt;}
.ws1c{word-spacing:584.748864pt;}
.ws80{word-spacing:3628.331392pt;}
._16{margin-left:-19.136000pt;}
._d{margin-left:-17.917184pt;}
._10{margin-left:-15.395392pt;}
._19{margin-left:-13.206400pt;}
._b{margin-left:-11.459904pt;}
._5{margin-left:-10.386048pt;}
._15{margin-left:-9.472000pt;}
._c{margin-left:-8.425792pt;}
._1b{margin-left:-7.396352pt;}
._7{margin-left:-6.317312pt;}
._1d{margin-left:-5.216000pt;}
._9{margin-left:-4.221952pt;}
._a{margin-left:-3.195264pt;}
._4{margin-left:-2.039424pt;}
._0{margin-left:-1.088000pt;}
._1{width:0.896000pt;}
._2{width:1.907008pt;}
._3{width:3.325312pt;}
._1f{width:4.546688pt;}
._11{width:6.469120pt;}
._f{width:8.317056pt;}
._e{width:9.577216pt;}
._1c{width:12.341824pt;}
._21{width:13.803264pt;}
._24{width:16.529408pt;}
._12{width:19.456000pt;}
._18{width:22.944000pt;}
._6{width:24.845568pt;}
._1e{width:28.405376pt;}
._17{width:29.304320pt;}
._20{width:34.316032pt;}
._13{width:35.217920pt;}
._22{width:39.653120pt;}
._23{width:42.096000pt;}
._1a{width:61.172672pt;}
._14{width:66.304000pt;}
._8{width:87.777344pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs8{font-size:90.880000pt;}
.fsb{font-size:96.000000pt;}
.fs7{font-size:99.840000pt;}
.fs13{font-size:101.120000pt;}
.fs3{font-size:106.880000pt;}
.fs15{font-size:115.200000pt;}
.fs10{font-size:117.120000pt;}
.fs9{font-size:128.000000pt;}
.fs12{font-size:133.120000pt;}
.fse{font-size:138.880000pt;}
.fs6{font-size:142.080000pt;}
.fsa{font-size:149.120000pt;}
.fs17{font-size:154.880000pt;}
.fsd{font-size:156.160000pt;}
.fs16{font-size:165.120000pt;}
.fs4{font-size:170.880000pt;}
.fsf{font-size:213.120000pt;}
.fsc{font-size:229.120000pt;}
.fs14{font-size:234.880000pt;}
.fs2{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:16.406533pt;}
.y106{bottom:17.206400pt;}
.y90{bottom:20.563333pt;}
.yb4{bottom:32.733200pt;}
.y77{bottom:40.051600pt;}
.yd5{bottom:44.693653pt;}
.yf0{bottom:48.836347pt;}
.y152{bottom:49.195600pt;}
.y8f{bottom:49.363333pt;}
.yaf{bottom:50.855040pt;}
.y105{bottom:52.395733pt;}
.yb3{bottom:55.133200pt;}
.y83{bottom:55.595600pt;}
.y1b0{bottom:60.715600pt;}
.y194{bottom:61.713600pt;}
.y15c{bottom:63.105173pt;}
.y1a5{bottom:63.281040pt;}
.y12a{bottom:67.921253pt;}
.y148{bottom:69.515600pt;}
.yd4{bottom:72.861013pt;}
.yb2{bottom:77.536240pt;}
.y9e{bottom:79.595600pt;}
.yae{bottom:79.659200pt;}
.y1c2{bottom:79.754933pt;}
.y151{bottom:84.430000pt;}
.y182{bottom:85.515600pt;}
.y104{bottom:86.955733pt;}
.yef{bottom:89.173307pt;}
.y3d{bottom:89.438880pt;}
.y129{bottom:90.478853pt;}
.y1a4{bottom:98.475600pt;}
.y19b{bottom:98.833600pt;}
.y1af{bottom:100.888720pt;}
.yd3{bottom:101.028373pt;}
.y1c1{bottom:101.834933pt;}
.yb0{bottom:102.166133pt;}
.y179{bottom:102.795600pt;}
.y147{bottom:107.915600pt;}
.y15b{bottom:107.915733pt;}
.y193{bottom:108.113600pt;}
.yad{bottom:108.463360pt;}
.y2e{bottom:109.288213pt;}
.y16d{bottom:109.497040pt;}
.y66{bottom:110.933333pt;}
.y4b{bottom:111.186667pt;}
.y128{bottom:112.886693pt;}
.y6b{bottom:113.978667pt;}
.y9d{bottom:114.795600pt;}
.y3c{bottom:116.634720pt;}
.y112{bottom:118.893600pt;}
.yf8{bottom:120.568533pt;}
.yb1{bottom:122.333200pt;}
.y1c0{bottom:123.914933pt;}
.y181{bottom:123.915600pt;}
.y103{bottom:127.275733pt;}
.y164{bottom:128.395600pt;}
.yd2{bottom:129.195733pt;}
.yee{bottom:129.510267pt;}
.y189{bottom:130.236267pt;}
.y13b{bottom:135.185067pt;}
.y127{bottom:135.294533pt;}
.y2d{bottom:136.484053pt;}
.yac{bottom:137.267520pt;}
.y76{bottom:139.906320pt;}
.y120{bottom:140.715600pt;}
.y3b{bottom:143.830560pt;}
.y4a{bottom:143.830827pt;}
.y19a{bottom:145.233600pt;}
.y59{bottom:148.200853pt;}
.y178{bottom:148.875600pt;}
.y29{bottom:149.680747pt;}
.y9c{bottom:149.995600pt;}
.y1bf{bottom:151.274933pt;}
.yde{bottom:152.705040pt;}
.y65{bottom:153.173333pt;}
.y82{bottom:153.195600pt;}
.y146{bottom:153.995600pt;}
.y192{bottom:154.513600pt;}
.y8e{bottom:154.887867pt;}
.y16c{bottom:159.115600pt;}
.y15a{bottom:161.675733pt;}
.yf7{bottom:165.368533pt;}
.yab{bottom:166.071680pt;}
.y1d3{bottom:166.741600pt;}
.y150{bottom:168.902800pt;}
.y2c{bottom:169.132693pt;}
.y180{bottom:169.521040pt;}
.ye8{bottom:169.796347pt;}
.y1f{bottom:169.949013pt;}
.y3a{bottom:171.026400pt;}
.y49{bottom:171.026667pt;}
.yc7{bottom:171.913040pt;}
.y1be{bottom:173.354933pt;}
.y79{bottom:174.372160pt;}
.y13a{bottom:175.182507pt;}
.y28{bottom:175.280587pt;}
.y11f{bottom:175.915600pt;}
.y188{bottom:176.316400pt;}
.y58{bottom:177.005013pt;}
.y111{bottom:180.112267pt;}
.y163{bottom:180.875600pt;}
.y75{bottom:181.500880pt;}
.ybb{bottom:181.750933pt;}
.y1a3{bottom:182.961040pt;}
.y9b{bottom:185.191440pt;}
.y1d2{bottom:185.941600pt;}
.y177{bottom:187.275600pt;}
.y64{bottom:187.733333pt;}
.y199{bottom:191.633600pt;}
.y145{bottom:192.395600pt;}
.y1ae{bottom:193.035600pt;}
.y8d{bottom:193.287867pt;}
.yaa{bottom:194.875840pt;}
.y1bd{bottom:195.434933pt;}
.yd1{bottom:195.436373pt;}
.ydd{bottom:197.515600pt;}
.y81{bottom:199.275600pt;}
.y1e{bottom:199.701333pt;}
.y113{bottom:199.756133pt;}
.y191{bottom:200.888640pt;}
.y2b{bottom:201.781333pt;}
.y39{bottom:203.670560pt;}
.y48{bottom:203.670827pt;}
.y14f{bottom:204.097360pt;}
.y17f{bottom:204.715600pt;}
.y1d1{bottom:205.141600pt;}
.y57{bottom:205.809173pt;}
.y110{bottom:206.512267pt;}
.y102{bottom:207.915733pt;}
.yb7{bottom:208.478933pt;}
.ye7{bottom:210.133307pt;}
.yf6{bottom:210.168533pt;}
.yba{bottom:210.550933pt;}
.ybe{bottom:211.073600pt;}
.y11e{bottom:211.115600pt;}
.yc6{bottom:211.915600pt;}
.y9a{bottom:213.995600pt;}
.y126{bottom:214.815733pt;}
.y159{bottom:215.435733pt;}
.y27{bottom:216.265867pt;}
.y1a2{bottom:218.155600pt;}
.y16b{bottom:218.542800pt;}
.y162{bottom:219.275600pt;}
.yd0{bottom:219.755733pt;}
.y6e{bottom:221.259200pt;}
.y63{bottom:222.293333pt;}
.y187{bottom:222.396400pt;}
.y1bc{bottom:222.954933pt;}
.y139{bottom:223.172267pt;}
.ya9{bottom:223.680000pt;}
.y1d0{bottom:224.341600pt;}
.y7{bottom:224.678933pt;}
.y176{bottom:225.675600pt;}
.y144{bottom:230.795600pt;}
.y38{bottom:230.866400pt;}
.y47{bottom:230.866667pt;}
.y8c{bottom:231.687867pt;}
.y10f{bottom:232.744267pt;}
.y125{bottom:234.015733pt;}
.y56{bottom:234.613333pt;}
.y1d{bottom:235.543893pt;}
.y130{bottom:236.286800pt;}
.yb6{bottom:237.278933pt;}
.y190{bottom:238.021120pt;}
.y198{bottom:238.033600pt;}
.y14e{bottom:239.291920pt;}
.yb9{bottom:239.350933pt;}
.ybd{bottom:239.873600pt;}
.y132{bottom:240.638000pt;}
.y1ad{bottom:242.315600pt;}
.y6{bottom:243.878933pt;}
.y1bb{bottom:245.034933pt;}
.y80{bottom:245.355600pt;}
.y11d{bottom:246.321040pt;}
.y17e{bottom:246.961040pt;}
.y123{bottom:247.465467pt;}
.y101{bottom:248.235733pt;}
.yf{bottom:249.760133pt;}
.y99{bottom:249.835600pt;}
.ye6{bottom:250.470267pt;}
.ydc{bottom:251.212240pt;}
.y1cf{bottom:251.541600pt;}
.y6a{bottom:251.968773pt;}
.y124{bottom:253.215733pt;}
.yf5{bottom:254.968533pt;}
.y26{bottom:257.251147pt;}
.y12f{bottom:258.844400pt;}
.ya8{bottom:258.867520pt;}
.y131{bottom:259.838000pt;}
.yc5{bottom:259.913040pt;}
.y1a1{bottom:260.401040pt;}
.y5{bottom:263.078933pt;}
.y46{bottom:263.510827pt;}
.y37{bottom:263.514720pt;}
.y62{bottom:264.533333pt;}
.y161{bottom:265.355600pt;}
.y1c{bottom:265.470933pt;}
.yb5{bottom:266.078933pt;}
.y122{bottom:266.665467pt;}
.yb8{bottom:268.150933pt;}
.y16a{bottom:268.161360pt;}
.ybc{bottom:268.673600pt;}
.y158{bottom:269.174613pt;}
.y143{bottom:269.195600pt;}
.y55{bottom:269.805013pt;}
.y108{bottom:270.075200pt;}
.y8b{bottom:270.087867pt;}
.y1ce{bottom:270.741600pt;}
.y175{bottom:271.755600pt;}
.y1ba{bottom:272.394933pt;}
.y14d{bottom:274.486480pt;}
.y18f{bottom:275.153600pt;}
.y74{bottom:281.355600pt;}
.y11c{bottom:281.515600pt;}
.ycf{bottom:281.553813pt;}
.y17d{bottom:282.155600pt;}
.y8{bottom:282.278933pt;}
.y100{bottom:282.795733pt;}
.y1b1{bottom:283.102000pt;}
.y6d{bottom:283.108720pt;}
.y1a8{bottom:283.115440pt;}
.y197{bottom:284.421120pt;}
.y121{bottom:284.542000pt;}
.ya7{bottom:287.671680pt;}
.y1ac{bottom:288.395600pt;}
.y98{bottom:288.555600pt;}
.y45{bottom:290.706667pt;}
.y36{bottom:290.710560pt;}
.yed{bottom:290.756347pt;}
.y7f{bottom:291.435600pt;}
.y1b9{bottom:294.474933pt;}
.y1b{bottom:295.397973pt;}
.y1a0{bottom:295.595600pt;}
.ydb{bottom:296.022800pt;}
.ye{bottom:297.269573pt;}
.y1cd{bottom:297.941600pt;}
.y25{bottom:298.236427pt;}
.y54{bottom:298.609173pt;}
.yf4{bottom:299.768533pt;}
.yc4{bottom:299.915600pt;}
.y160{bottom:303.755600pt;}
.y107{bottom:305.275200pt;}
.y69{bottom:305.577413pt;}
.y61{bottom:306.773333pt;}
.y142{bottom:307.595600pt;}
.y8a{bottom:308.487867pt;}
.y14c{bottom:309.681040pt;}
.y174{bottom:310.155600pt;}
.y157{bottom:313.985173pt;}
.y186{bottom:314.556400pt;}
.ya6{bottom:316.475840pt;}
.y1b8{bottom:316.554933pt;}
.y11b{bottom:316.715600pt;}
.yce{bottom:316.748373pt;}
.y1cc{bottom:317.141600pt;}
.yff{bottom:317.355733pt;}
.y169{bottom:317.779920pt;}
.y35{bottom:317.906400pt;}
.y138{bottom:319.185067pt;}
.y18e{bottom:321.541120pt;}
.y196{bottom:321.553600pt;}
.y44{bottom:323.359147pt;}
.y17c{bottom:324.401040pt;}
.y1a{bottom:325.150293pt;}
.y97{bottom:327.275600pt;}
.y53{bottom:327.413333pt;}
.yd{bottom:329.280133pt;}
.ye5{bottom:331.076347pt;}
.yec{bottom:331.093307pt;}
.y73{bottom:331.275600pt;}
.y1ab{bottom:334.475600pt;}
.y1cb{bottom:336.341600pt;}
.y7e{bottom:337.515600pt;}
.y19f{bottom:337.841040pt;}
.y1b7{bottom:338.634933pt;}
.y24{bottom:339.221707pt;}
.yda{bottom:340.833360pt;}
.yb{bottom:344.179600pt;}
.yf3{bottom:344.568533pt;}
.y14b{bottom:344.875600pt;}
.ya5{bottom:345.280000pt;}
.y141{bottom:345.995600pt;}
.y89{bottom:346.887867pt;}
.yc3{bottom:347.913040pt;}
.y60{bottom:349.013333pt;}
.y15f{bottom:349.835600pt;}
.y34{bottom:350.550560pt;}
.y43{bottom:350.554987pt;}
.y6c{bottom:351.902000pt;}
.y1a7{bottom:351.908720pt;}
.y11a{bottom:351.915600pt;}
.ycd{bottom:351.942933pt;}
.y185{bottom:352.956400pt;}
.y1ca{bottom:355.541600pt;}
.y173{bottom:356.235600pt;}
.yfe{bottom:357.675733pt;}
.y18d{bottom:358.673600pt;}
.y156{bottom:358.795733pt;}
.y68{bottom:359.335173pt;}
.y17b{bottom:359.595600pt;}
.ya{bottom:360.182000pt;}
.y19{bottom:360.992853pt;}
.y10e{bottom:361.810400pt;}
.y52{bottom:362.596693pt;}
.y96{bottom:365.993680pt;}
.y1b6{bottom:365.994933pt;}
.y137{bottom:367.182507pt;}
.y168{bottom:367.398480pt;}
.y195{bottom:367.941120pt;}
.ye4{bottom:371.413307pt;}
.yeb{bottom:371.430267pt;}
.y12e{bottom:371.846053pt;}
.y19e{bottom:373.035600pt;}
.y9{bottom:376.184400pt;}
.y133{bottom:377.057867pt;}
.y33{bottom:377.746400pt;}
.y42{bottom:377.750827pt;}
.yc{bottom:379.360133pt;}
.y23{bottom:380.206987pt;}
.ya4{bottom:380.459200pt;}
.y72{bottom:381.195600pt;}
.y1aa{bottom:381.201040pt;}
.y1c9{bottom:382.741600pt;}
.y5f{bottom:383.573333pt;}
.y7d{bottom:383.595600pt;}
.y140{bottom:384.395600pt;}
.y88{bottom:385.287867pt;}
.yd9{bottom:385.643920pt;}
.y114{bottom:386.649867pt;}
.y119{bottom:387.121040pt;}
.y14a{bottom:387.137360pt;}
.ycc{bottom:387.137493pt;}
.yc2{bottom:387.915600pt;}
.y1b5{bottom:388.074933pt;}
.y10d{bottom:388.210400pt;}
.y15e{bottom:388.235600pt;}
.yf2{bottom:389.368533pt;}
.y18{bottom:390.919893pt;}
.y51{bottom:391.400853pt;}
.yfd{bottom:392.235733pt;}
.y12d{bottom:394.403653pt;}
.y95{bottom:397.674640pt;}
.y184{bottom:399.036400pt;}
.y67{bottom:399.672133pt;}
.y1c8{bottom:401.941600pt;}
.y172{bottom:402.315600pt;}
.y41{bottom:404.946667pt;}
.y18c{bottom:405.073600pt;}
.y136{bottom:407.185067pt;}
.ya3{bottom:409.263360pt;}
.y1b4{bottom:410.154933pt;}
.y32{bottom:410.394720pt;}
.ye3{bottom:411.750267pt;}
.y155{bottom:412.555733pt;}
.y10c{bottom:414.442400pt;}
.y19d{bottom:415.281040pt;}
.y12c{bottom:416.811493pt;}
.y167{bottom:417.017040pt;}
.y50{bottom:420.205013pt;}
.y1a6{bottom:420.702000pt;}
.y17{bottom:420.846933pt;}
.y1c7{bottom:421.141600pt;}
.y22{bottom:421.192267pt;}
.y118{bottom:422.315600pt;}
.y149{bottom:422.331920pt;}
.ycb{bottom:422.332053pt;}
.y1a9{bottom:422.795600pt;}
.y87{bottom:423.687867pt;}
.y5e{bottom:425.813333pt;}
.y4{bottom:425.881067pt;}
.yfc{bottom:426.795733pt;}
.y94{bottom:429.355600pt;}
.y7c{bottom:429.675600pt;}
.yd8{bottom:430.454480pt;}
.y71{bottom:431.113680pt;}
.y13f{bottom:431.121040pt;}
.yf1{bottom:434.168533pt;}
.y15d{bottom:434.315600pt;}
.yc1{bottom:435.913040pt;}
.y31{bottom:437.590560pt;}
.y40{bottom:437.590827pt;}
.ya2{bottom:438.067520pt;}
.y12b{bottom:439.219333pt;}
.y1c6{bottom:440.341600pt;}
.y171{bottom:440.715600pt;}
.y10b{bottom:442.113467pt;}
.y3{bottom:445.081067pt;}
.y183{bottom:445.116267pt;}
.y17a{bottom:448.395600pt;}
.y4f{bottom:449.009173pt;}
.y19c{bottom:450.475600pt;}
.y16{bottom:450.773973pt;}
.y1b3{bottom:454.314933pt;}
.y135{bottom:455.182507pt;}
.y117{bottom:457.526480pt;}
.yca{bottom:457.526613pt;}
.y1c5{bottom:459.541600pt;}
.y5d{bottom:460.373333pt;}
.yfb{bottom:461.355733pt;}
.y86{bottom:462.087867pt;}
.y21{bottom:462.177547pt;}
.y2{bottom:464.281067pt;}
.y30{bottom:464.786400pt;}
.y3f{bottom:464.786667pt;}
.y154{bottom:466.315733pt;}
.y166{bottom:466.617040pt;}
.ya1{bottom:466.871680pt;}
.y93{bottom:468.073680pt;}
.y10a{bottom:468.513467pt;}
.y70{bottom:472.708240pt;}
.y13e{bottom:472.715600pt;}
.yea{bottom:472.882747pt;}
.ye2{bottom:472.902773pt;}
.yd7{bottom:475.265040pt;}
.y18b{bottom:475.329307pt;}
.y7b{bottom:475.755600pt;}
.yc0{bottom:475.915600pt;}
.y4e{bottom:477.813333pt;}
.y1c4{bottom:478.741600pt;}
.y15{bottom:480.526293pt;}
.y1{bottom:483.481067pt;}
.y170{bottom:486.795600pt;}
.y116{bottom:492.721040pt;}
.yc9{bottom:492.721173pt;}
.y109{bottom:494.745467pt;}
.y5c{bottom:494.933333pt;}
.y134{bottom:495.185067pt;}
.ya0{bottom:495.675840pt;}
.yfa{bottom:495.915733pt;}
.y92{bottom:499.754640pt;}
.y1b2{bottom:501.354933pt;}
.y1c3{bottom:508.021600pt;}
.y14{bottom:510.446293pt;}
.y4d{bottom:513.009173pt;}
.y165{bottom:516.235600pt;}
.y2f{bottom:516.770000pt;}
.y3e{bottom:516.779360pt;}
.ye9{bottom:517.693307pt;}
.ye1{bottom:517.713333pt;}
.yd6{bottom:520.075600pt;}
.y153{bottom:520.075733pt;}
.y18a{bottom:520.139867pt;}
.y7a{bottom:521.835600pt;}
.y6f{bottom:522.635600pt;}
.ybf{bottom:523.915600pt;}
.y9f{bottom:524.480000pt;}
.y16f{bottom:525.195600pt;}
.y115{bottom:527.915600pt;}
.yc8{bottom:527.915733pt;}
.yf9{bottom:530.475733pt;}
.y91{bottom:531.435600pt;}
.y20{bottom:532.912267pt;}
.y5b{bottom:537.173333pt;}
.y13{bottom:540.373333pt;}
.y4c{bottom:541.813333pt;}
.y85{bottom:579.337253pt;}
.y12{bottom:582.189440pt;}
.y5a{bottom:582.246800pt;}
.y13d{bottom:589.747973pt;}
.y2a{bottom:606.998000pt;}
.y78{bottom:607.326533pt;}
.ye0{bottom:609.246533pt;}
.y16e{bottom:609.443867pt;}
.ydf{bottom:611.326533pt;}
.y11{bottom:624.920000pt;}
.y13c{bottom:640.926533pt;}
.y84{bottom:643.326533pt;}
.h3{height:38.672812pt;}
.h28{height:43.750000pt;}
.h26{height:44.343750pt;}
.h1{height:46.593750pt;}
.h2{height:46.625000pt;}
.h27{height:54.368437pt;}
.h1b{height:54.551250pt;}
.hc{height:58.977187pt;}
.hb{height:61.803437pt;}
.h7{height:62.011250pt;}
.h24{height:63.984375pt;}
.hd{height:66.163125pt;}
.he{height:66.207500pt;}
.h12{height:66.515625pt;}
.h1c{height:69.703125pt;}
.h18{height:69.890625pt;}
.h23{height:69.937500pt;}
.h9{height:72.735000pt;}
.ha{height:72.763160pt;}
.h1e{height:73.667500pt;}
.h1a{height:77.811562pt;}
.h5{height:77.863750pt;}
.h19{height:85.323750pt;}
.h25{height:88.687500pt;}
.h10{height:93.187500pt;}
.hf{height:93.250000pt;}
.h1d{height:96.980000pt;}
.h29{height:96.990240pt;}
.h15{height:101.108438pt;}
.h16{height:101.176250pt;}
.h11{height:103.320937pt;}
.h8{height:103.438125pt;}
.h20{height:108.563437pt;}
.h1f{height:108.636250pt;}
.h2d{height:112.832500pt;}
.h14{height:113.765000pt;}
.h2b{height:120.292500pt;}
.h2c{height:120.366740pt;}
.h2a{height:124.405313pt;}
.h6{height:124.488750pt;}
.h17{height:155.157187pt;}
.h22{height:155.261250pt;}
.h13{height:166.805625pt;}
.h21{height:170.999063pt;}
.h4{height:186.375000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:31.984213pt;}
.x3e{left:37.899733pt;}
.x23{left:39.846533pt;}
.x3d{left:45.574933pt;}
.x41{left:50.218160pt;}
.x28{left:51.375333pt;}
.x4f{left:53.600000pt;}
.x2d{left:57.811467pt;}
.x42{left:63.490640pt;}
.x40{left:68.769680pt;}
.x50{left:72.480000pt;}
.x11{left:73.600267pt;}
.x4a{left:97.600000pt;}
.x19{left:103.680267pt;}
.x2e{left:105.811467pt;}
.x20{left:110.711200pt;}
.x24{left:121.600000pt;}
.x1a{left:127.680267pt;}
.x25{left:137.600000pt;}
.x1{left:139.057467pt;}
.x4b{left:145.600000pt;}
.x26{left:177.626720pt;}
.x48{left:185.600000pt;}
.x46{left:201.600000pt;}
.x43{left:222.410133pt;}
.xb{left:224.303653pt;}
.x47{left:233.600000pt;}
.x1f{left:234.809467pt;}
.x9{left:251.341733pt;}
.xa{left:255.020293pt;}
.x44{left:288.978453pt;}
.x3{left:305.438533pt;}
.x4{left:327.198533pt;}
.x6{left:328.158533pt;}
.x5{left:330.078533pt;}
.x7{left:343.998533pt;}
.x8{left:353.758533pt;}
.x2{left:385.118533pt;}
.x14{left:399.609067pt;}
.x39{left:430.593467pt;}
.x15{left:435.609067pt;}
.x38{left:445.078400pt;}
.x45{left:464.873333pt;}
.x29{left:467.892667pt;}
.x49{left:507.460267pt;}
.xd{left:543.956400pt;}
.xf{left:544.916400pt;}
.x2f{left:546.706267pt;}
.x30{left:577.586267pt;}
.x12{left:580.060533pt;}
.x31{left:581.220800pt;}
.x37{left:609.759600pt;}
.xc{left:610.932933pt;}
.x4c{left:640.000000pt;}
.x27{left:649.600000pt;}
.x2b{left:659.811360pt;}
.x4e{left:670.933467pt;}
.x4d{left:688.000000pt;}
.x2c{left:707.822533pt;}
.xe{left:716.273680pt;}
.x34{left:752.373733pt;}
.x32{left:753.645733pt;}
.x16{left:754.802347pt;}
.x17{left:758.672933pt;}
.x13{left:770.431413pt;}
.x35{left:775.630000pt;}
.x33{left:776.853733pt;}
.x36{left:796.918000pt;}
.x3c{left:799.919467pt;}
.x18{left:806.672933pt;}
.x2a{left:892.089333pt;}
.x1b{left:928.781467pt;}
.x1c{left:945.743867pt;}
.x1e{left:978.699387pt;}
.x3a{left:1041.271867pt;}
.x1d{left:1063.511387pt;}
.x3b{left:1073.591867pt;}
.x21{left:1235.731333pt;}
.x22{left:1237.331333pt;}
.x10{left:1247.571333pt;}
}




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