
    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_c9a0de5aff636073b8c7ee6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_cda755655235198c452a2f1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_3b6c95c5bd233169b29abe89.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9da9611ca86b2669f59274ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_4befb14fec2bac056c873e5b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1cc7e24303783258e3c43604.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c3809d49a7e2801ddb499713.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_994608497049e0f7afca2845.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.376000px;}
.ls44{letter-spacing:-1.647360px;}
.ls22{letter-spacing:-1.457280px;}
.ls7e{letter-spacing:-1.422000px;}
.ls24{letter-spacing:-1.393920px;}
.ls83{letter-spacing:-1.365120px;}
.ls7c{letter-spacing:-1.308240px;}
.ls34{letter-spacing:-1.140480px;}
.ls82{letter-spacing:-1.137600px;}
.ls7a{letter-spacing:-1.080720px;}
.ls35{letter-spacing:-1.073520px;}
.ls25{letter-spacing:-1.013760px;}
.ls1f{letter-spacing:-1.010880px;}
.lsa{letter-spacing:-0.972000px;}
.ls36{letter-spacing:-0.971280px;}
.ls23{letter-spacing:-0.950400px;}
.lsd{letter-spacing:-0.910080px;}
.ls27{letter-spacing:-0.836640px;}
.lsc{letter-spacing:-0.758160px;}
.ls89{letter-spacing:-0.756000px;}
.lsf{letter-spacing:-0.739440px;}
.ls20{letter-spacing:-0.696960px;}
.lse{letter-spacing:-0.682560px;}
.ls11{letter-spacing:-0.670320px;}
.ls8a{letter-spacing:-0.594000px;}
.ls26{letter-spacing:-0.570240px;}
.ls7d{letter-spacing:-0.511920px;}
.ls43{letter-spacing:-0.506880px;}
.ls88{letter-spacing:-0.486000px;}
.lsb{letter-spacing:-0.432000px;}
.ls79{letter-spacing:-0.398160px;}
.ls21{letter-spacing:-0.380160px;}
.ls7b{letter-spacing:-0.341280px;}
.ls37{letter-spacing:-0.336960px;}
.ls28{letter-spacing:-0.119520px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.056880px;}
.ls6c{letter-spacing:0.063360px;}
.ls84{letter-spacing:0.108000px;}
.ls86{letter-spacing:0.124200px;}
.ls3c{letter-spacing:0.149760px;}
.ls87{letter-spacing:0.162000px;}
.ls85{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.219816px;}
.ls32{letter-spacing:0.224928px;}
.ls10{letter-spacing:0.227520px;}
.ls77{letter-spacing:0.244584px;}
.ls52{letter-spacing:0.299520px;}
.ls2d{letter-spacing:0.380160px;}
.ls51{letter-spacing:0.443520px;}
.ls45{letter-spacing:0.614592px;}
.ls50{letter-spacing:0.620928px;}
.ls81{letter-spacing:0.739440px;}
.ls12{letter-spacing:0.796320px;}
.ls75{letter-spacing:0.904392px;}
.ls74{letter-spacing:0.927144px;}
.ls1e{letter-spacing:0.966960px;}
.ls33{letter-spacing:1.077120px;}
.ls6d{letter-spacing:1.184832px;}
.ls15{letter-spacing:1.241856px;}
.ls42{letter-spacing:1.324224px;}
.ls76{letter-spacing:1.387872px;}
.ls73{letter-spacing:1.478880px;}
.ls78{letter-spacing:1.598328px;}
.ls62{letter-spacing:1.951488px;}
.ls80{letter-spacing:2.252448px;}
.ls2b{letter-spacing:2.534400px;}
.ls30{letter-spacing:3.200112px;}
.ls72{letter-spacing:3.850776px;}
.ls2{letter-spacing:4.322880px;}
.ls1b{letter-spacing:4.688640px;}
.ls1a{letter-spacing:4.853376px;}
.ls8{letter-spacing:5.062320px;}
.ls1c{letter-spacing:5.448960px;}
.ls40{letter-spacing:5.480640px;}
.ls55{letter-spacing:5.556672px;}
.ls41{letter-spacing:5.563008px;}
.ls2f{letter-spacing:5.929920px;}
.ls5{letter-spacing:6.541200px;}
.ls5d{letter-spacing:6.842880px;}
.ls66{letter-spacing:6.963264px;}
.ls49{letter-spacing:7.691904px;}
.ls4b{letter-spacing:7.723584px;}
.ls4a{letter-spacing:8.300160px;}
.ls4d{letter-spacing:8.490240px;}
.ls3d{letter-spacing:8.997120px;}
.ls65{letter-spacing:9.098496px;}
.ls6{letter-spacing:9.385200px;}
.ls59{letter-spacing:9.979200px;}
.ls7{letter-spacing:10.124640px;}
.ls64{letter-spacing:10.517760px;}
.ls17{letter-spacing:10.581120px;}
.ls53{letter-spacing:11.214720px;}
.ls48{letter-spacing:11.962368px;}
.ls3e{letter-spacing:12.298176px;}
.ls1d{letter-spacing:12.608640px;}
.ls2e{letter-spacing:13.368960px;}
.ls3b{letter-spacing:13.375296px;}
.ls2c{letter-spacing:13.533696px;}
.ls68{letter-spacing:13.679424px;}
.ls39{letter-spacing:14.065920px;}
.ls6f{letter-spacing:14.141952px;}
.ls61{letter-spacing:14.762880px;}
.ls5e{letter-spacing:15.523200px;}
.ls16{letter-spacing:15.605568px;}
.ls5f{letter-spacing:15.668928px;}
.ls5a{letter-spacing:16.917120px;}
.ls38{letter-spacing:16.955136px;}
.ls3a{letter-spacing:16.986816px;}
.ls4c{letter-spacing:17.056512px;}
.ls69{letter-spacing:17.677440px;}
.ls71{letter-spacing:20.192400px;}
.ls14{letter-spacing:20.528640px;}
.ls63{letter-spacing:20.592000px;}
.ls6e{letter-spacing:20.864448px;}
.ls56{letter-spacing:21.985920px;}
.ls47{letter-spacing:22.834944px;}
.ls46{letter-spacing:22.866624px;}
.ls2a{letter-spacing:23.443200px;}
.ls3{letter-spacing:23.775840px;}
.ls19{letter-spacing:25.660800px;}
.ls18{letter-spacing:25.724160px;}
.ls3f{letter-spacing:29.513088px;}
.ls5b{letter-spacing:29.905920px;}
.ls57{letter-spacing:30.602880px;}
.ls13{letter-spacing:30.710592px;}
.ls4e{letter-spacing:31.432896px;}
.ls4f{letter-spacing:31.508928px;}
.ls67{letter-spacing:33.517440px;}
.ls6b{letter-spacing:36.457344px;}
.ls4{letter-spacing:39.645360px;}
.ls6a{letter-spacing:40.119552px;}
.ls29{letter-spacing:40.797504px;}
.ls58{letter-spacing:44.358336px;}
.ls54{letter-spacing:45.486000px;}
.ls60{letter-spacing:55.820160px;}
.ls5c{letter-spacing:68.526000px;}
.ls70{letter-spacing:846.639360px;}
.ls7f{letter-spacing:1355.791680px;}
.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;}
}
.wsad{word-spacing:-54.000000px;}
.ws1{word-spacing:-30.024000px;}
.ws9{word-spacing:-25.950960px;}
.ws81{word-spacing:-23.418720px;}
.ws2{word-spacing:-22.660560px;}
.ws82{word-spacing:-22.407840px;}
.wsa7{word-spacing:-20.966400px;}
.ws38{word-spacing:-17.614080px;}
.ws37{word-spacing:-17.233920px;}
.ws36{word-spacing:-16.917120px;}
.ws3a{word-spacing:-16.663680px;}
.wsb7{word-spacing:-16.613280px;}
.ws35{word-spacing:-16.608960px;}
.ws3c{word-spacing:-16.600320px;}
.ws7e{word-spacing:-16.473600px;}
.ws83{word-spacing:-16.220160px;}
.ws39{word-spacing:-16.156800px;}
.ws8{word-spacing:-16.040160px;}
.ws3{word-spacing:-15.869520px;}
.ws4{word-spacing:-15.812640px;}
.ws3b{word-spacing:-15.776640px;}
.wsd2{word-spacing:-15.471360px;}
.wsd0{word-spacing:-15.414480px;}
.wsd4{word-spacing:-15.300720px;}
.wse9{word-spacing:-15.228000px;}
.ws5{word-spacing:-15.130080px;}
.ws7{word-spacing:-15.073200px;}
.wse8{word-spacing:-15.012000px;}
.ws6{word-spacing:-14.902560px;}
.wsd1{word-spacing:-14.731920px;}
.wsdf{word-spacing:-14.675040px;}
.wse7{word-spacing:-14.526000px;}
.wsd3{word-spacing:-14.504400px;}
.wseb{word-spacing:-14.418000px;}
.wsea{word-spacing:-14.256000px;}
.ws80{word-spacing:-14.211360px;}
.ws7f{word-spacing:-13.137840px;}
.ws55{word-spacing:-4.688640px;}
.ws9d{word-spacing:-4.118400px;}
.ws96{word-spacing:-3.991680px;}
.ws65{word-spacing:-3.928320px;}
.wsdb{word-spacing:-3.583440px;}
.ws46{word-spacing:-3.231360px;}
.wsf0{word-spacing:-2.970000px;}
.wsd{word-spacing:-2.900880px;}
.ws72{word-spacing:-2.808720px;}
.ws4c{word-spacing:-2.534400px;}
.wsb5{word-spacing:-2.471040px;}
.ws10{word-spacing:-2.161440px;}
.wsd6{word-spacing:-2.104560px;}
.ws73{word-spacing:-2.091600px;}
.ws78{word-spacing:-1.774080px;}
.wsf3{word-spacing:-1.512000px;}
.ws21{word-spacing:-1.478880px;}
.wsc1{word-spacing:-1.374480px;}
.ws58{word-spacing:-1.077120px;}
.ws3d{word-spacing:-0.910080px;}
.wsee{word-spacing:-0.810000px;}
.wse0{word-spacing:-0.796320px;}
.ws91{word-spacing:-0.758160px;}
.ws12{word-spacing:-0.739440px;}
.wsc6{word-spacing:-0.657360px;}
.ws68{word-spacing:-0.443520px;}
.ws97{word-spacing:-0.380160px;}
.ws4e{word-spacing:-0.316800px;}
.wsf1{word-spacing:-0.216000px;}
.wsf2{word-spacing:-0.162000px;}
.wsa0{word-spacing:-0.149760px;}
.wsed{word-spacing:-0.108000px;}
.ws92{word-spacing:-0.084240px;}
.ws9f{word-spacing:-0.074880px;}
.wsae{word-spacing:-0.063360px;}
.ws13{word-spacing:-0.056880px;}
.wsec{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsbc{word-spacing:0.059760px;}
.wsf5{word-spacing:0.108000px;}
.wse5{word-spacing:0.227520px;}
.ws4b{word-spacing:0.380160px;}
.wsdc{word-spacing:0.398160px;}
.wsc{word-spacing:0.421200px;}
.wsef{word-spacing:0.486000px;}
.wsdd{word-spacing:0.511920px;}
.wsb{word-spacing:0.540000px;}
.ws90{word-spacing:0.562320px;}
.wsb8{word-spacing:0.570240px;}
.wsf4{word-spacing:0.594000px;}
.ws5c{word-spacing:0.673920px;}
.ws11{word-spacing:0.682560px;}
.ws49{word-spacing:0.696960px;}
.ws28{word-spacing:0.739440px;}
.ws75{word-spacing:0.776880px;}
.ws56{word-spacing:0.950400px;}
.ws8e{word-spacing:0.971280px;}
.ws3e{word-spacing:1.010880px;}
.ws67{word-spacing:1.013760px;}
.ws60{word-spacing:1.077120px;}
.ws93{word-spacing:1.095120px;}
.wse2{word-spacing:1.365120px;}
.ws7c{word-spacing:1.393920px;}
.ws27{word-spacing:1.422000px;}
.wsab{word-spacing:1.457280px;}
.wsda{word-spacing:1.478880px;}
.wsa5{word-spacing:1.647360px;}
.wscb{word-spacing:1.774080px;}
.ws47{word-spacing:1.837440px;}
.ws16{word-spacing:2.161440px;}
.wsbd{word-spacing:2.211120px;}
.wsa{word-spacing:2.376000px;}
.ws42{word-spacing:2.534400px;}
.ws25{word-spacing:2.900880px;}
.ws64{word-spacing:3.231360px;}
.wsf6{word-spacing:3.510000px;}
.wsf{word-spacing:3.583440px;}
.ws88{word-spacing:3.991680px;}
.ws8f{word-spacing:4.140720px;}
.wsf7{word-spacing:4.212000px;}
.wsd8{word-spacing:4.322880px;}
.ws79{word-spacing:4.688640px;}
.ws2a{word-spacing:5.062320px;}
.ws69{word-spacing:5.139360px;}
.ws51{word-spacing:5.385600px;}
.ws31{word-spacing:5.744880px;}
.wsa6{word-spacing:5.829120px;}
.ws6e{word-spacing:5.856480px;}
.ws77{word-spacing:6.145920px;}
.ws8d{word-spacing:6.287760px;}
.ws2e{word-spacing:6.484320px;}
.ws74{word-spacing:6.573600px;}
.ws87{word-spacing:6.842880px;}
.ws1f{word-spacing:7.166880px;}
.wsd9{word-spacing:7.223760px;}
.ws6f{word-spacing:7.290720px;}
.ws45{word-spacing:7.603200px;}
.wse1{word-spacing:7.906320px;}
.wscd{word-spacing:7.920000px;}
.ws5a{word-spacing:8.300160px;}
.ws29{word-spacing:8.645760px;}
.ws63{word-spacing:8.997120px;}
.ws30{word-spacing:9.328320px;}
.ws26{word-spacing:9.385200px;}
.ws85{word-spacing:9.757440px;}
.ws22{word-spacing:10.067760px;}
.wsc3{word-spacing:10.159200px;}
.wsa4{word-spacing:10.454400px;}
.ws24{word-spacing:10.807200px;}
.ws6c{word-spacing:10.876320px;}
.ws4f{word-spacing:11.151360px;}
.ws40{word-spacing:11.911680px;}
.ws14{word-spacing:12.229200px;}
.wsa2{word-spacing:12.608640px;}
.ws34{word-spacing:12.968640px;}
.wsc5{word-spacing:13.027680px;}
.ws66{word-spacing:13.305600px;}
.ws2b{word-spacing:13.708080px;}
.ws76{word-spacing:14.065920px;}
.ws32{word-spacing:14.390640px;}
.wsc4{word-spacing:14.461920px;}
.ws57{word-spacing:14.762880px;}
.ws95{word-spacing:15.459840px;}
.ws9a{word-spacing:15.523200px;}
.ws6a{word-spacing:15.896160px;}
.ws48{word-spacing:16.220160px;}
.ws19{word-spacing:16.552080px;}
.ws70{word-spacing:16.613280px;}
.ws50{word-spacing:16.917120px;}
.ws20{word-spacing:17.234640px;}
.ws71{word-spacing:17.330400px;}
.ws9c{word-spacing:17.677440px;}
.ws1d{word-spacing:17.974080px;}
.ws6b{word-spacing:18.047520px;}
.ws5e{word-spacing:18.374400px;}
.ws2d{word-spacing:18.713520px;}
.ws5d{word-spacing:19.071360px;}
.ws17{word-spacing:19.396080px;}
.ws2c{word-spacing:19.452960px;}
.wsc2{word-spacing:19.541520px;}
.ws62{word-spacing:19.831680px;}
.wsde{word-spacing:20.135520px;}
.wsaf{word-spacing:20.528640px;}
.wsd7{word-spacing:20.874960px;}
.ws41{word-spacing:21.225600px;}
.wse4{word-spacing:21.614400px;}
.ws5f{word-spacing:21.985920px;}
.ws54{word-spacing:22.682880px;}
.ws1c{word-spacing:23.036400px;}
.ws61{word-spacing:23.443200px;}
.wse{word-spacing:23.718960px;}
.ws6d{word-spacing:23.844240px;}
.ws8a{word-spacing:24.140160px;}
.ws23{word-spacing:24.685920px;}
.ws99{word-spacing:24.837120px;}
.wsb6{word-spacing:25.597440px;}
.ws1a{word-spacing:25.880400px;}
.ws52{word-spacing:26.294400px;}
.ws1b{word-spacing:26.619840px;}
.ws9e{word-spacing:26.991360px;}
.wscf{word-spacing:27.751680px;}
.ws9b{word-spacing:28.448640px;}
.ws86{word-spacing:29.145600px;}
.ws53{word-spacing:29.905920px;}
.ws18{word-spacing:30.203280px;}
.wsac{word-spacing:30.602880px;}
.ws3f{word-spacing:31.363200px;}
.ws98{word-spacing:32.060160px;}
.wsc0{word-spacing:32.449680px;}
.wsbf{word-spacing:32.509440px;}
.wsb3{word-spacing:32.757120px;}
.ws43{word-spacing:33.517440px;}
.ws94{word-spacing:34.214400px;}
.ws8b{word-spacing:34.911360px;}
.ws4a{word-spacing:35.671680px;}
.ws33{word-spacing:36.005040px;}
.ws59{word-spacing:36.368640px;}
.ws2f{word-spacing:36.687600px;}
.wsca{word-spacing:37.065600px;}
.ws7b{word-spacing:37.825920px;}
.ws15{word-spacing:38.166480px;}
.wsbe{word-spacing:38.246400px;}
.wsb4{word-spacing:38.522880px;}
.ws7d{word-spacing:39.283200px;}
.ws1e{word-spacing:39.588480px;}
.ws44{word-spacing:39.980160px;}
.wsa9{word-spacing:40.677120px;}
.ws89{word-spacing:41.437440px;}
.wse6{word-spacing:41.749920px;}
.wsa8{word-spacing:42.134400px;}
.wsaa{word-spacing:42.831360px;}
.wsa1{word-spacing:44.288640px;}
.ws4d{word-spacing:44.985600px;}
.ws8c{word-spacing:45.745920px;}
.ws5b{word-spacing:46.442880px;}
.wsb1{word-spacing:47.900160px;}
.wsc9{word-spacing:48.597120px;}
.wsc7{word-spacing:49.927680px;}
.ws7a{word-spacing:50.054400px;}
.wse3{word-spacing:51.078240px;}
.wsce{word-spacing:51.511680px;}
.ws84{word-spacing:52.208640px;}
.wsa3{word-spacing:52.905600px;}
.wsd5{word-spacing:54.718560px;}
.wsb0{word-spacing:55.820160px;}
.wsb9{word-spacing:56.390400px;}
.wsba{word-spacing:56.517120px;}
.wsb2{word-spacing:59.431680px;}
.wscc{word-spacing:61.585920px;}
.wsc8{word-spacing:68.048640px;}
.wsbb{word-spacing:68.745600px;}
._1b{margin-left:-7.364880px;}
._d{margin-left:-5.132880px;}
._13{margin-left:-3.902400px;}
._8{margin-left:-2.568240px;}
._2{margin-left:-1.058400px;}
._1{width:1.155600px;}
._9{width:2.392560px;}
._b{width:3.991680px;}
._a{width:6.380640px;}
._12{width:8.300160px;}
._5{width:10.319040px;}
._f{width:11.494080px;}
._3{width:12.666240px;}
._c{width:13.685760px;}
._17{width:14.997312px;}
._16{width:16.536960px;}
._6{width:18.144720px;}
._10{width:19.179360px;}
._18{width:20.256480px;}
._19{width:21.587040px;}
._4{width:23.434560px;}
._1d{width:25.009200px;}
._11{width:34.668720px;}
._e{width:37.952640px;}
._21{width:41.806800px;}
._14{width:44.206560px;}
._1a{width:48.660480px;}
._20{width:50.770080px;}
._1c{width:53.410320px;}
._15{width:58.037760px;}
._1e{width:108.982080px;}
._1f{width:188.614080px;}
._0{width:351.014400px;}
._22{width:929.702880px;}
._7{width:1371.604320px;}
.fc3{color:rgb(59,56,56);}
.fc2{color:transparent;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsc{font-size:51.120000px;}
.fse{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fsb{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs8{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y70{bottom:16.560000px;}
.y72{bottom:18.900000px;}
.y23{bottom:49.860000px;}
.y2e6{bottom:50.402880px;}
.y23d{bottom:57.420000px;}
.y5{bottom:66.525004px;}
.yba{bottom:73.800000px;}
.y23c{bottom:78.480000px;}
.y302{bottom:81.175500px;}
.y104{bottom:90.044640px;}
.y6e{bottom:90.198720px;}
.yfa{bottom:91.296000px;}
.y9f{bottom:91.454400px;}
.ycf{bottom:91.838880px;}
.y227{bottom:92.046240px;}
.y24f{bottom:92.743200px;}
.y184{bottom:93.074400px;}
.y1b0{bottom:93.775680px;}
.y1d2{bottom:94.701600px;}
.y4{bottom:97.125005px;}
.y130{bottom:101.698560px;}
.y15b{bottom:102.067200px;}
.y301{bottom:107.460000px;}
.y6d{bottom:108.201240px;}
.y103{bottom:112.188960px;}
.yf9{bottom:113.788800px;}
.y9e{bottom:113.947200px;}
.yce{bottom:114.331680px;}
.y226{bottom:114.539040px;}
.y24e{bottom:115.236000px;}
.y183{bottom:115.567200px;}
.y1af{bottom:116.268480px;}
.y1d1{bottom:117.194400px;}
.y1fb{bottom:117.198720px;}
.y12f{bottom:124.191360px;}
.y15a{bottom:124.560000px;}
.y300{bottom:124.740000px;}
.y2bf{bottom:125.858880px;}
.y6c{bottom:126.018900px;}
.yb6{bottom:132.300000px;}
.y102{bottom:134.143200px;}
.yf8{bottom:136.281600px;}
.y9d{bottom:136.440000px;}
.ycd{bottom:136.824480px;}
.y225{bottom:137.031840px;}
.y24d{bottom:137.728800px;}
.y182{bottom:138.060000px;}
.y1ae{bottom:138.761280px;}
.y21{bottom:139.264499px;}
.y1fa{bottom:139.343040px;}
.y1d0{bottom:139.687200px;}
.y2ff{bottom:142.020000px;}
.y6b{bottom:143.836560px;}
.y12e{bottom:146.684160px;}
.y49{bottom:152.439660px;}
.y2be{bottom:153.218160px;}
.y101{bottom:156.287520px;}
.y159{bottom:156.774240px;}
.yf7{bottom:158.774400px;}
.y2fe{bottom:159.300000px;}
.ycc{bottom:159.317280px;}
.y224{bottom:159.524640px;}
.y24c{bottom:160.221600px;}
.y1ad{bottom:161.254080px;}
.y6a{bottom:161.654220px;}
.y1f9{bottom:161.661600px;}
.y1cf{bottom:162.180000px;}
.y9c{bottom:169.021080px;}
.y12d{bottom:169.176960px;}
.y181{bottom:170.277120px;}
.y48{bottom:170.442180px;}
.yb4{bottom:171.360000px;}
.y2bd{bottom:171.576180px;}
.y100{bottom:178.241760px;}
.y69{bottom:179.471880px;}
.y158{bottom:180.717120px;}
.yf6{bottom:181.267200px;}
.ycb{bottom:181.810080px;}
.y223{bottom:182.017440px;}
.y24b{bottom:182.714400px;}
.y1f8{bottom:183.805920px;}
.y2fd{bottom:185.395500px;}
.y2bc{bottom:189.749340px;}
.y12c{bottom:191.669760px;}
.y1ac{bottom:192.759840px;}
.y1ce{bottom:193.752000px;}
.y180{bottom:194.220000px;}
.y9b{bottom:196.020000px;}
.y18{bottom:196.933500px;}
.y47{bottom:197.261100px;}
.y68{bottom:197.289540px;}
.yff{bottom:200.386080px;}
.yf5{bottom:203.760000px;}
.y2fc{bottom:204.120000px;}
.yca{bottom:204.302880px;}
.y222{bottom:204.510240px;}
.y157{bottom:204.660000px;}
.y24a{bottom:205.207200px;}
.y1f7{bottom:205.950240px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y12b{bottom:214.162560px;}
.y67{bottom:215.107200px;}
.y1ab{bottom:215.442720px;}
.y46{bottom:215.974620px;}
.y1cd{bottom:216.244800px;}
.y2bb{bottom:217.108620px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yfe{bottom:222.340320px;}
.y235{bottom:225.900000px;}
.yc9{bottom:226.795680px;}
.y221{bottom:227.003040px;}
.y249{bottom:227.700000px;}
.y1f6{bottom:228.268800px;}
.y2fb{bottom:230.404500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y45{bottom:234.873000px;}
.y2ba{bottom:235.466640px;}
.y17f{bottom:235.735200px;}
.y12a{bottom:236.655360px;}
.yf4{bottom:237.060540px;}
.y1aa{bottom:238.125600px;}
.y1cc{bottom:238.737600px;}
.y9a{bottom:239.977440px;}
.y66{bottom:240.489900px;}
.y156{bottom:246.166560px;}
.y234{bottom:247.140000px;}
.y2fa{bottom:247.684500px;}
.yc8{bottom:249.288480px;}
.yfd{bottom:251.866080px;}
.y44{bottom:253.586520px;}
.y2b9{bottom:253.639800px;}
.y291{bottom:255.709440px;}
.y65{bottom:258.492420px;}
.y220{bottom:258.508800px;}
.y17e{bottom:258.592320px;}
.y129{bottom:259.148160px;}
.y248{bottom:259.257600px;}
.y1f5{bottom:259.410240px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1a9{bottom:260.982720px;}
.y1cb{bottom:261.230400px;}
.y99{bottom:262.296000px;}
.yf3{bottom:264.965040px;}
.y155{bottom:268.310880px;}
.y2f9{bottom:269.460000px;}
.yc7{bottom:271.781280px;}
.y43{bottom:272.300040px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yfc{bottom:274.358880px;}
.y64{bottom:276.310080px;}
.y26b{bottom:278.503200px;}
.y290{bottom:278.566560px;}
.y2b8{bottom:280.999080px;}
.y21f{bottom:281.001600px;}
.y17d{bottom:281.275200px;}
.y1f4{bottom:281.554560px;}
.y128{bottom:281.640960px;}
.y247{bottom:281.750400px;}
.y1a8{bottom:283.665600px;}
.y1ca{bottom:283.723200px;}
.y98{bottom:284.440320px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y154{bottom:290.455200px;}
.y42{bottom:291.013560px;}
.yf2{bottom:292.680000px;}
.y2f8{bottom:293.935500px;}
.y63{bottom:294.127740px;}
.yc6{bottom:294.274080px;}
.yfb{bottom:296.851680px;}
.y2b7{bottom:299.357100px;}
.y26a{bottom:300.996000px;}
.y28f{bottom:301.423680px;}
.y21e{bottom:303.494400px;}
.y1f3{bottom:303.873120px;}
.y17c{bottom:304.132320px;}
.y246{bottom:304.243200px;}
.y1c9{bottom:306.216000px;}
.y1a7{bottom:306.348480px;}
.y97{bottom:306.584640px;}
.y41{bottom:309.727080px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2f7{bottom:311.931000px;}
.y62{bottom:311.945400px;}
.y153{bottom:312.773760px;}
.y127{bottom:313.146720px;}
.y2b6{bottom:317.530260px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y269{bottom:323.488800px;}
.y28e{bottom:324.280800px;}
.yc5{bottom:325.779840px;}
.y21d{bottom:325.987200px;}
.y245{bottom:326.736000px;}
.y17b{bottom:326.989440px;}
.y40{bottom:328.440600px;}
.y1c8{bottom:328.708800px;}
.y96{bottom:328.903200px;}
.y1a6{bottom:329.031360px;}
.y61{bottom:329.763060px;}
.y2f6{bottom:329.926500px;}
.y152{bottom:334.918080px;}
.y1f2{bottom:335.014560px;}
.y126{bottom:336.003840px;}
.y2b5{bottom:344.889540px;}
.yf1{bottom:345.413160px;}
.y268{bottom:345.981600px;}
.y28d{bottom:346.963680px;}
.y3f{bottom:347.338980px;}
.yc4{bottom:347.924160px;}
.yf{bottom:348.133500px;}
.y21c{bottom:348.480000px;}
.y244{bottom:349.228800px;}
.y17a{bottom:349.672320px;}
.y95{bottom:351.047520px;}
.y1c7{bottom:351.201600px;}
.y1a5{bottom:351.888480px;}
.y2e4{bottom:353.625120px;}
.y60{bottom:355.145760px;}
.y2f5{bottom:356.926500px;}
.y151{bottom:357.062400px;}
.y1f1{bottom:357.158880px;}
.y125{bottom:359.051040px;}
.y2b4{bottom:363.247560px;}
.y3e{bottom:366.052500px;}
.y267{bottom:368.474400px;}
.y28c{bottom:369.820800px;}
.yc3{bottom:370.068480px;}
.yf0{bottom:370.973160px;}
.y2e3{bottom:371.627640px;}
.y243{bottom:371.721600px;}
.y179{bottom:372.529440px;}
.y5f{bottom:372.963420px;}
.y94{bottom:373.191840px;}
.y1c6{bottom:373.694400px;}
.y1a4{bottom:374.571360px;}
.y150{bottom:379.380960px;}
.y1f0{bottom:379.477440px;}
.y21b{bottom:380.008800px;}
.y2b3{bottom:381.420720px;}
.y124{bottom:381.908160px;}
.ye{bottom:386.785499px;}
.y2e2{bottom:389.985660px;}
.y5e{bottom:390.781080px;}
.y266{bottom:390.967200px;}
.yc2{bottom:392.212800px;}
.y28b{bottom:392.677920px;}
.y2f4{bottom:392.931000px;}
.y3d{bottom:393.767280px;}
.y242{bottom:394.214400px;}
.y178{bottom:395.386560px;}
.y1c5{bottom:396.187200px;}
.yef{bottom:396.533160px;}
.y1a3{bottom:397.254240px;}
.y14f{bottom:401.525280px;}
.y1ef{bottom:401.621760px;}
.y21a{bottom:402.501600px;}
.y93{bottom:404.333280px;}
.y123{bottom:404.955360px;}
.yd{bottom:408.044999px;}
.y5d{bottom:408.598740px;}
.y2b2{bottom:408.874860px;}
.y2f3{bottom:410.926500px;}
.y3c{bottom:412.480800px;}
.yee{bottom:413.096040px;}
.y265{bottom:413.460000px;}
.yc1{bottom:414.357120px;}
.y28a{bottom:415.360800px;}
.y241{bottom:416.707200px;}
.y2e1{bottom:417.344940px;}
.y177{bottom:418.069440px;}
.y1c4{bottom:418.680000px;}
.y1a2{bottom:419.937120px;}
.y14e{bottom:423.669600px;}
.y219{bottom:424.994400px;}
.y5c{bottom:426.601260px;}
.y92{bottom:426.826080px;}
.y2b1{bottom:427.232880px;}
.y122{bottom:427.812480px;}
.y2f2{bottom:428.922000px;}
.yed{bottom:429.480000px;}
.y3b{bottom:431.194320px;}
.y1ee{bottom:432.763200px;}
.y2e0{bottom:435.518100px;}
.yc0{bottom:436.501440px;}
.y289{bottom:438.217920px;}
.y240{bottom:439.200000px;}
.y176{bottom:440.926560px;}
.y1a1{bottom:442.794240px;}
.y5b{bottom:444.418920px;}
.y14d{bottom:445.988160px;}
.y264{bottom:446.040000px;}
.y218{bottom:447.487200px;}
.y91{bottom:449.318880px;}
.y3a{bottom:449.907840px;}
.y1c3{bottom:450.203040px;}
.y121{bottom:450.859680px;}
.yec{bottom:452.299680px;}
.y2b0{bottom:454.407300px;}
.y1ed{bottom:455.256000px;}
.ybf{bottom:458.455680px;}
.y288{bottom:461.075040px;}
.y2df{bottom:462.877380px;}
.y175{bottom:463.783680px;}
.y2f1{bottom:465.102000px;}
.y1a0{bottom:465.477120px;}
.y14c{bottom:468.132480px;}
.y39{bottom:468.806220px;}
.y5a{bottom:469.801620px;}
.y217{bottom:469.980000px;}
.y90{bottom:471.811680px;}
.y2af{bottom:472.765320px;}
.y233{bottom:473.040000px;}
.y1c2{bottom:473.060160px;}
.y120{bottom:473.716800px;}
.y1ec{bottom:477.748800px;}
.ybe{bottom:480.600000px;}
.y2de{bottom:481.235400px;}
.y2f0{bottom:482.382000px;}
.y287{bottom:483.757920px;}
.y174{bottom:486.466560px;}
.y38{bottom:487.519740px;}
.y19f{bottom:488.160000px;}
.y23f{bottom:488.340000px;}
.y263{bottom:489.955680px;}
.y14b{bottom:490.276800px;}
.y2ae{bottom:491.123340px;}
.y8f{bottom:494.304480px;}
.y1c1{bottom:496.107360px;}
.y59{bottom:496.620540px;}
.y11f{bottom:496.764000px;}
.y2dd{bottom:499.408560px;}
.y2ef{bottom:499.486500px;}
.y1eb{bottom:500.241600px;}
.y216{bottom:501.516000px;}
.yc{bottom:502.864502px;}
.y37{bottom:506.233260px;}
.y286{bottom:506.615040px;}
.yb3{bottom:508.140000px;}
.y2ad{bottom:509.296500px;}
.y173{bottom:509.323680px;}
.y23e{bottom:509.400000px;}
.y262{bottom:512.638560px;}
.y58{bottom:514.438200px;}
.y8e{bottom:516.797280px;}
.y1c0{bottom:518.964480px;}
.yb{bottom:520.864502px;}
.y19e{bottom:520.921080px;}
.y14a{bottom:521.592480px;}
.y1ea{bottom:522.734400px;}
.ybd{bottom:523.440000px;}
.y215{bottom:524.008800px;}
.y36{bottom:524.946780px;}
.y2dc{bottom:526.767840px;}
.y11e{bottom:528.618240px;}
.y285{bottom:529.472160px;}
.y57{bottom:532.255860px;}
.y261{bottom:535.321440px;}
.y2ac{bottom:536.655780px;}
.ya{bottom:538.864499px;}
.y8d{bottom:539.290080px;}
.y172{bottom:541.177920px;}
.ybc{bottom:543.060000px;}
.y35{bottom:543.660300px;}
.y149{bottom:543.736800px;}
.y2db{bottom:545.125860px;}
.y1e9{bottom:545.227200px;}
.y214{bottom:546.501600px;}
.y19d{bottom:547.920000px;}
.y56{bottom:550.073520px;}
.y1bf{bottom:551.008800px;}
.y11d{bottom:551.665440px;}
.y284{bottom:552.155040px;}
.y2ab{bottom:555.013800px;}
.y9{bottom:556.864499px;}
.y260{bottom:558.004320px;}
.y8c{bottom:561.782880px;}
.y34{bottom:562.373820px;}
.ybb{bottom:562.500000px;}
.y2da{bottom:563.299020px;}
.y171{bottom:563.860800px;}
.y148{bottom:565.881120px;}
.y1e8{bottom:567.720000px;}
.y55{bottom:567.891180px;}
.y213{bottom:568.994400px;}
.y23b{bottom:572.580000px;}
.y1be{bottom:573.501600px;}
.y11c{bottom:574.522560px;}
.y283{bottom:575.012160px;}
.y25f{bottom:580.687200px;}
.yb9{bottom:581.940000px;}
.y2aa{bottom:582.188220px;}
.y8b{bottom:584.275680px;}
.y170{bottom:586.717920px;}
.y147{bottom:588.199680px;}
.y33{bottom:590.273460px;}
.y2d9{bottom:590.658300px;}
.y212{bottom:591.487200px;}
.y19c{bottom:591.955200px;}
.y54{bottom:593.273880px;}
.y23a{bottom:593.640000px;}
.y1bd{bottom:595.994400px;}
.y11b{bottom:597.569760px;}
.y282{bottom:597.869280px;}
.y1e7{bottom:599.237280px;}
.y2a9{bottom:600.546240px;}
.yb8{bottom:601.560000px;}
.y25e{bottom:603.180000px;}
.y8a{bottom:606.768480px;}
.y32{bottom:608.986980px;}
.y2d8{bottom:609.016320px;}
.y16f{bottom:609.575040px;}
.y146{bottom:610.344000px;}
.y53{bottom:611.091540px;}
.y211{bottom:613.980000px;}
.y19b{bottom:614.273760px;}
.y239{bottom:614.700000px;}
.y1bc{bottom:618.487200px;}
.y2a8{bottom:618.904260px;}
.y11a{bottom:620.426880px;}
.y281{bottom:620.552160px;}
.yb7{bottom:621.000000px;}
.y1e6{bottom:621.730080px;}
.y31{bottom:627.700500px;}
.y52{bottom:629.094060px;}
.y89{bottom:629.261280px;}
.y16e{bottom:632.257920px;}
.y145{bottom:632.488320px;}
.y25d{bottom:634.953600px;}
.y238{bottom:635.760000px;}
.y2d7{bottom:636.190740px;}
.y19a{bottom:636.766560px;}
.y1bb{bottom:640.980000px;}
.y280{bottom:643.409280px;}
.y119{bottom:643.474080px;}
.y1e5{bottom:644.222880px;}
.y8{bottom:645.510000px;}
.y210{bottom:645.523050px;}
.y2a7{bottom:646.078680px;}
.y30{bottom:646.414020px;}
.y51{bottom:646.911720px;}
.y88{bottom:651.754080px;}
.y2d6{bottom:654.548760px;}
.y144{bottom:654.806880px;}
.y16d{bottom:655.115040px;}
.y237{bottom:656.820000px;}
.y25c{bottom:657.446400px;}
.y199{bottom:659.085120px;}
.yb5{bottom:660.060000px;}
.y2a6{bottom:664.436700px;}
.y2f{bottom:665.127540px;}
.y27f{bottom:666.266400px;}
.y118{bottom:666.331200px;}
.y1e4{bottom:666.715680px;}
.y7{bottom:666.771000px;}
.y20f{bottom:668.015850px;}
.y50{bottom:672.294420px;}
.y1ba{bottom:672.501600px;}
.y87{bottom:674.246880px;}
.y143{bottom:676.951200px;}
.y236{bottom:677.880000px;}
.y16c{bottom:677.972160px;}
.yb2{bottom:679.500000px;}
.y25b{bottom:679.939200px;}
.y198{bottom:681.403680px;}
.y2d5{bottom:681.908040px;}
.y2a5{bottom:682.794720px;}
.y2e{bottom:683.841060px;}
.y27e{bottom:688.949280px;}
.y1e3{bottom:689.208480px;}
.y117{bottom:689.378400px;}
.y4f{bottom:690.112080px;}
.y20e{bottom:690.508650px;}
.y1b9{bottom:694.994400px;}
.y86{bottom:696.739680px;}
.yb1{bottom:698.940000px;}
.y142{bottom:699.095520px;}
.y2d4{bottom:700.081200px;}
.y16b{bottom:700.655040px;}
.y25a{bottom:702.432000px;}
.y2d{bottom:702.739440px;}
.y197{bottom:703.722240px;}
.y4e{bottom:707.929740px;}
.y2a4{bottom:709.969140px;}
.y116{bottom:712.235520px;}
.y20d{bottom:713.001450px;}
.y1b8{bottom:717.487200px;}
.y2d3{bottom:718.439220px;}
.yb0{bottom:718.560000px;}
.y1e2{bottom:720.714240px;}
.y27d{bottom:720.803520px;}
.y141{bottom:721.414080px;}
.y2c{bottom:721.452960px;}
.y16a{bottom:723.512160px;}
.y259{bottom:724.924800px;}
.y4d{bottom:725.747400px;}
.y196{bottom:726.040800px;}
.y6{bottom:726.298500px;}
.y2a3{bottom:728.327160px;}
.y85{bottom:728.419680px;}
.y115{bottom:735.282720px;}
.y20c{bottom:735.494250px;}
.y1b7{bottom:739.980000px;}
.y2b{bottom:740.166480px;}
.y232{bottom:741.240000px;}
.y2ee{bottom:741.771000px;}
.y1e1{bottom:743.032800px;}
.y140{bottom:743.558400px;}
.y4c{bottom:743.565060px;}
.y27c{bottom:743.660640px;}
.y2d2{bottom:745.798500px;}
.y169{bottom:746.369280px;}
.yaf{bottom:747.180000px;}
.y258{bottom:747.417600px;}
.y195{bottom:748.359360px;}
.y84{bottom:750.564000px;}
.y3{bottom:752.599495px;}
.y2a2{bottom:755.686440px;}
.y2ed{bottom:756.891000px;}
.y20b{bottom:757.987050px;}
.y114{bottom:758.139840px;}
.y2a{bottom:758.880000px;}
.y4b{bottom:761.382720px;}
.y231{bottom:762.300000px;}
.y2d1{bottom:763.971660px;}
.y1e0{bottom:765.177120px;}
.y13f{bottom:765.702720px;}
.y27b{bottom:766.343520px;}
.y168{bottom:769.052160px;}
.y257{bottom:769.910400px;}
.y194{bottom:770.852160px;}
.y1b6{bottom:771.501450px;}
.y83{bottom:772.708320px;}
.y2a1{bottom:773.859600px;}
.yeb{bottom:778.825440px;}
.y20a{bottom:780.479850px;}
.y2d0{bottom:782.329680px;}
.y230{bottom:783.360000px;}
.y4a{bottom:786.765420px;}
.y1df{bottom:787.321440px;}
.y13e{bottom:788.021280px;}
.y29{bottom:788.220000px;}
.y27a{bottom:789.200640px;}
.y113{bottom:790.184160px;}
.y167{bottom:791.909280px;}
.y256{bottom:792.403200px;}
.yae{bottom:792.469440px;}
.y193{bottom:793.170720px;}
.y1b5{bottom:793.994250px;}
.y82{bottom:795.026880px;}
.y2a0{bottom:801.218880px;}
.y1de{bottom:809.640000px;}
.y2cf{bottom:809.688960px;}
.y13d{bottom:810.165600px;}
.y279{bottom:812.057760px;}
.y209{bottom:812.059200px;}
.y112{bottom:813.041280px;}
.y22f{bottom:813.600000px;}
.y166{bottom:814.766400px;}
.y255{bottom:814.896000px;}
.ydd{bottom:814.940640px;}
.yad{bottom:814.962240px;}
.y192{bottom:815.489280px;}
.y1b4{bottom:816.487050px;}
.y81{bottom:817.171200px;}
.y29f{bottom:819.576900px;}
.y2ce{bottom:827.862120px;}
.y1dd{bottom:831.784320px;}
.y13c{bottom:832.309920px;}
.y28{bottom:833.226300px;}
.y208{bottom:834.552000px;}
.y278{bottom:834.740640px;}
.y111{bottom:836.088480px;}
.y254{bottom:837.388800px;}
.ydc{bottom:837.433440px;}
.yac{bottom:837.455040px;}
.yea{bottom:837.512640px;}
.y191{bottom:837.807840px;}
.y1b3{bottom:838.979850px;}
.y80{bottom:839.315520px;}
.y2cd{bottom:846.220140px;}
.y165{bottom:846.446400px;}
.y29e{bottom:846.751320px;}
.y1dc{bottom:853.928640px;}
.y207{bottom:857.044800px;}
.y27{bottom:857.340000px;}
.y277{bottom:857.597760px;}
.y22e{bottom:858.772800px;}
.y110{bottom:858.945600px;}
.y253{bottom:859.881600px;}
.ydb{bottom:859.926240px;}
.yab{bottom:859.947840px;}
.ye9{bottom:860.005440px;}
.y190{bottom:860.126400px;}
.y7f{bottom:861.634080px;}
.y13b{bottom:863.625600px;}
.y2cc{bottom:864.578160px;}
.y29d{bottom:865.109340px;}
.y164{bottom:868.939200px;}
.y1b2{bottom:871.017120px;}
.y2{bottom:879.369000px;}
.y206{bottom:879.537600px;}
.y276{bottom:880.454880px;}
.y22d{bottom:881.455680px;}
.y10f{bottom:881.992800px;}
.y252{bottom:882.374400px;}
.yda{bottom:882.419040px;}
.yaa{bottom:882.440640px;}
.ye8{bottom:882.498240px;}
.y2cb{bottom:882.751320px;}
.y7e{bottom:883.778400px;}
.y1db{bottom:885.244320px;}
.y13a{bottom:885.769920px;}
.y2ec{bottom:886.315500px;}
.y163{bottom:891.432000px;}
.y18f{bottom:891.442080px;}
.y29c{bottom:892.468620px;}
.y1b1{bottom:894.960000px;}
.y205{bottom:902.030400px;}
.y275{bottom:903.137760px;}
.y22c{bottom:904.138560px;}
.y10e{bottom:904.849920px;}
.y251{bottom:904.867200px;}
.yd9{bottom:904.911840px;}
.ya9{bottom:904.933440px;}
.ye7{bottom:904.991040px;}
.y7d{bottom:905.922720px;}
.y1da{bottom:907.388640px;}
.y139{bottom:907.914240px;}
.y2ca{bottom:910.110600px;}
.y29b{bottom:910.641780px;}
.y162{bottom:913.924800px;}
.y18e{bottom:913.934880px;}
.y204{bottom:924.523200px;}
.y274{bottom:925.994880px;}
.y22b{bottom:926.821440px;}
.y250{bottom:927.360000px;}
.yd8{bottom:927.404640px;}
.ye6{bottom:927.483840px;}
.y10d{bottom:927.897120px;}
.y7c{bottom:928.241280px;}
.y2c9{bottom:928.468620px;}
.y1d9{bottom:929.532960px;}
.y138{bottom:930.232800px;}
.y161{bottom:936.417600px;}
.y18d{bottom:936.427680px;}
.ya8{bottom:936.439200px;}
.y29a{bottom:938.001060px;}
.y2c8{bottom:946.641780px;}
.y203{bottom:947.016000px;}
.y273{bottom:948.852000px;}
.y22a{bottom:949.504320px;}
.yd7{bottom:949.897440px;}
.ye5{bottom:949.976640px;}
.y7b{bottom:950.385600px;}
.y10c{bottom:950.754240px;}
.y1d8{bottom:951.851520px;}
.y137{bottom:952.377120px;}
.y299{bottom:956.359080px;}
.y160{bottom:958.910400px;}
.y18c{bottom:958.920480px;}
.ya7{bottom:958.932000px;}
.y26{bottom:964.080000px;}
.y1{bottom:966.726000px;}
.y202{bottom:969.508800px;}
.y272{bottom:971.534880px;}
.y229{bottom:972.187200px;}
.yd6{bottom:972.390240px;}
.ye4{bottom:972.469440px;}
.y7a{bottom:972.529920px;}
.y10b{bottom:973.801440px;}
.y1d7{bottom:973.995840px;}
.y2c7{bottom:974.001060px;}
.y136{bottom:974.521440px;}
.y298{bottom:974.532240px;}
.y15f{bottom:981.403200px;}
.y18b{bottom:981.413280px;}
.ya6{bottom:981.424800px;}
.y201{bottom:992.001600px;}
.y2c6{bottom:992.359080px;}
.y271{bottom:994.392000px;}
.y228{bottom:994.680000px;}
.y79{bottom:994.848480px;}
.yd5{bottom:994.883040px;}
.y25{bottom:995.049000px;}
.y1d6{bottom:996.140160px;}
.y10a{bottom:996.658560px;}
.y135{bottom:996.840000px;}
.y297{bottom:1001.891520px;}
.y2eb{bottom:1003.495500px;}
.y15e{bottom:1003.896000px;}
.y18a{bottom:1003.906080px;}
.ya5{bottom:1003.917600px;}
.ye3{bottom:1003.975200px;}
.y2c5{bottom:1010.532240px;}
.y200{bottom:1014.494400px;}
.y78{bottom:1016.992800px;}
.y270{bottom:1017.249120px;}
.yd4{bottom:1017.375840px;}
.y1d5{bottom:1018.458720px;}
.y296{bottom:1020.249540px;}
.y24{bottom:1026.180000px;}
.y15d{bottom:1026.388800px;}
.y189{bottom:1026.398880px;}
.ya4{bottom:1026.410400px;}
.ye2{bottom:1026.468000px;}
.y134{bottom:1028.517120px;}
.y109{bottom:1028.702880px;}
.y1ff{bottom:1036.987200px;}
.y2c4{bottom:1037.891520px;}
.y77{bottom:1039.137120px;}
.y2ea{bottom:1039.500000px;}
.yd3{bottom:1039.868640px;}
.y1d4{bottom:1040.603040px;}
.y295{bottom:1047.423960px;}
.y15c{bottom:1048.881600px;}
.y188{bottom:1048.891680px;}
.ya3{bottom:1048.903200px;}
.y26f{bottom:1048.929120px;}
.ye1{bottom:1048.960800px;}
.y108{bottom:1050.847200px;}
.y133{bottom:1052.460000px;}
.y2c3{bottom:1056.249540px;}
.y1fe{bottom:1059.480000px;}
.y76{bottom:1061.455680px;}
.y1d3{bottom:1062.747360px;}
.y294{bottom:1065.781980px;}
.yd2{bottom:1071.374400px;}
.y187{bottom:1071.384480px;}
.ya2{bottom:1071.396000px;}
.y26e{bottom:1071.421920px;}
.ye0{bottom:1071.453600px;}
.y107{bottom:1072.801440px;}
.y2e9{bottom:1075.140000px;}
.y71{bottom:1078.920000px;}
.y6f{bottom:1082.880000px;}
.y2c2{bottom:1083.423960px;}
.y75{bottom:1083.600000px;}
.y293{bottom:1084.140000px;}
.y1fd{bottom:1091.517120px;}
.yd1{bottom:1093.867200px;}
.y132{bottom:1093.868640px;}
.y186{bottom:1093.877280px;}
.ya1{bottom:1093.888800px;}
.y26d{bottom:1093.914720px;}
.ydf{bottom:1093.946400px;}
.y106{bottom:1094.945760px;}
.y2c1{bottom:1101.781980px;}
.y2e8{bottom:1102.140000px;}
.y292{bottom:1112.940000px;}
.y1fc{bottom:1115.460000px;}
.y74{bottom:1115.820000px;}
.yd0{bottom:1116.360000px;}
.y131{bottom:1116.361440px;}
.y185{bottom:1116.370080px;}
.ya0{bottom:1116.381600px;}
.y26c{bottom:1116.407520px;}
.yde{bottom:1116.439200px;}
.y105{bottom:1116.900000px;}
.y2c0{bottom:1120.140000px;}
.y2e7{bottom:1120.500000px;}
.y2e5{bottom:1184.040000px;}
.y73{bottom:1185.120000px;}
.y22{bottom:1193.040000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1f{height:35.991211px;}
.h12{height:38.700000px;}
.h10{height:41.410195px;}
.h14{height:41.940000px;}
.h18{height:45.828281px;}
.h7{height:45.960000px;}
.h15{height:46.127812px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1e{height:48.278320px;}
.h1d{height:48.410156px;}
.h11{height:50.853164px;}
.hc{height:50.992031px;}
.h16{height:53.573906px;}
.h2{height:55.152000px;}
.h1a{height:56.646563px;}
.hb{height:56.801250px;}
.h20{height:56.819250px;}
.h1c{height:60.891263px;}
.hf{height:61.329023px;}
.h19{height:67.128750px;}
.h13{height:69.715898px;}
.he{height:75.519844px;}
.h5{height:78.132000px;}
.hd{height:78.626953px;}
.h4{height:119.055004px;}
.h17{height:262.620000px;}
.h1b{height:364.140000px;}
.h0{height:1262.833500px;}
.ha{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:307.080000px;}
.w5{width:337.318500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.xb{left:15.120000px;}
.xa{left:68.040000px;}
.x6{left:84.960000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x15{left:156.420000px;}
.x4{left:203.484001px;}
.xc{left:217.080000px;}
.x16{left:218.542500px;}
.x10{left:223.740000px;}
.xe{left:291.240000px;}
.x7{left:321.300000px;}
.x8{left:448.565400px;}
.x3{left:454.959000px;}
.xd{left:456.660000px;}
.x9{left:465.643620px;}
.x12{left:469.807200px;}
.x14{left:475.544160px;}
.x5{left:480.420000px;}
.x13{left:491.238720px;}
.x11{left:786.972960px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.112000pt;}
.ls44{letter-spacing:-1.464320pt;}
.ls22{letter-spacing:-1.295360pt;}
.ls7e{letter-spacing:-1.264000pt;}
.ls24{letter-spacing:-1.239040pt;}
.ls83{letter-spacing:-1.213440pt;}
.ls7c{letter-spacing:-1.162880pt;}
.ls34{letter-spacing:-1.013760pt;}
.ls82{letter-spacing:-1.011200pt;}
.ls7a{letter-spacing:-0.960640pt;}
.ls35{letter-spacing:-0.954240pt;}
.ls25{letter-spacing:-0.901120pt;}
.ls1f{letter-spacing:-0.898560pt;}
.lsa{letter-spacing:-0.864000pt;}
.ls36{letter-spacing:-0.863360pt;}
.ls23{letter-spacing:-0.844800pt;}
.lsd{letter-spacing:-0.808960pt;}
.ls27{letter-spacing:-0.743680pt;}
.lsc{letter-spacing:-0.673920pt;}
.ls89{letter-spacing:-0.672000pt;}
.lsf{letter-spacing:-0.657280pt;}
.ls20{letter-spacing:-0.619520pt;}
.lse{letter-spacing:-0.606720pt;}
.ls11{letter-spacing:-0.595840pt;}
.ls8a{letter-spacing:-0.528000pt;}
.ls26{letter-spacing:-0.506880pt;}
.ls7d{letter-spacing:-0.455040pt;}
.ls43{letter-spacing:-0.450560pt;}
.ls88{letter-spacing:-0.432000pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls79{letter-spacing:-0.353920pt;}
.ls21{letter-spacing:-0.337920pt;}
.ls7b{letter-spacing:-0.303360pt;}
.ls37{letter-spacing:-0.299520pt;}
.ls28{letter-spacing:-0.106240pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.050560pt;}
.ls6c{letter-spacing:0.056320pt;}
.ls84{letter-spacing:0.096000pt;}
.ls86{letter-spacing:0.110400pt;}
.ls3c{letter-spacing:0.133120pt;}
.ls87{letter-spacing:0.144000pt;}
.ls85{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.195392pt;}
.ls32{letter-spacing:0.199936pt;}
.ls10{letter-spacing:0.202240pt;}
.ls77{letter-spacing:0.217408pt;}
.ls52{letter-spacing:0.266240pt;}
.ls2d{letter-spacing:0.337920pt;}
.ls51{letter-spacing:0.394240pt;}
.ls45{letter-spacing:0.546304pt;}
.ls50{letter-spacing:0.551936pt;}
.ls81{letter-spacing:0.657280pt;}
.ls12{letter-spacing:0.707840pt;}
.ls75{letter-spacing:0.803904pt;}
.ls74{letter-spacing:0.824128pt;}
.ls1e{letter-spacing:0.859520pt;}
.ls33{letter-spacing:0.957440pt;}
.ls6d{letter-spacing:1.053184pt;}
.ls15{letter-spacing:1.103872pt;}
.ls42{letter-spacing:1.177088pt;}
.ls76{letter-spacing:1.233664pt;}
.ls73{letter-spacing:1.314560pt;}
.ls78{letter-spacing:1.420736pt;}
.ls62{letter-spacing:1.734656pt;}
.ls80{letter-spacing:2.002176pt;}
.ls2b{letter-spacing:2.252800pt;}
.ls30{letter-spacing:2.844544pt;}
.ls72{letter-spacing:3.422912pt;}
.ls2{letter-spacing:3.842560pt;}
.ls1b{letter-spacing:4.167680pt;}
.ls1a{letter-spacing:4.314112pt;}
.ls8{letter-spacing:4.499840pt;}
.ls1c{letter-spacing:4.843520pt;}
.ls40{letter-spacing:4.871680pt;}
.ls55{letter-spacing:4.939264pt;}
.ls41{letter-spacing:4.944896pt;}
.ls2f{letter-spacing:5.271040pt;}
.ls5{letter-spacing:5.814400pt;}
.ls5d{letter-spacing:6.082560pt;}
.ls66{letter-spacing:6.189568pt;}
.ls49{letter-spacing:6.837248pt;}
.ls4b{letter-spacing:6.865408pt;}
.ls4a{letter-spacing:7.377920pt;}
.ls4d{letter-spacing:7.546880pt;}
.ls3d{letter-spacing:7.997440pt;}
.ls65{letter-spacing:8.087552pt;}
.ls6{letter-spacing:8.342400pt;}
.ls59{letter-spacing:8.870400pt;}
.ls7{letter-spacing:8.999680pt;}
.ls64{letter-spacing:9.349120pt;}
.ls17{letter-spacing:9.405440pt;}
.ls53{letter-spacing:9.968640pt;}
.ls48{letter-spacing:10.633216pt;}
.ls3e{letter-spacing:10.931712pt;}
.ls1d{letter-spacing:11.207680pt;}
.ls2e{letter-spacing:11.883520pt;}
.ls3b{letter-spacing:11.889152pt;}
.ls2c{letter-spacing:12.029952pt;}
.ls68{letter-spacing:12.159488pt;}
.ls39{letter-spacing:12.503040pt;}
.ls6f{letter-spacing:12.570624pt;}
.ls61{letter-spacing:13.122560pt;}
.ls5e{letter-spacing:13.798400pt;}
.ls16{letter-spacing:13.871616pt;}
.ls5f{letter-spacing:13.927936pt;}
.ls5a{letter-spacing:15.037440pt;}
.ls38{letter-spacing:15.071232pt;}
.ls3a{letter-spacing:15.099392pt;}
.ls4c{letter-spacing:15.161344pt;}
.ls69{letter-spacing:15.713280pt;}
.ls71{letter-spacing:17.948800pt;}
.ls14{letter-spacing:18.247680pt;}
.ls63{letter-spacing:18.304000pt;}
.ls6e{letter-spacing:18.546176pt;}
.ls56{letter-spacing:19.543040pt;}
.ls47{letter-spacing:20.297728pt;}
.ls46{letter-spacing:20.325888pt;}
.ls2a{letter-spacing:20.838400pt;}
.ls3{letter-spacing:21.134080pt;}
.ls19{letter-spacing:22.809600pt;}
.ls18{letter-spacing:22.865920pt;}
.ls3f{letter-spacing:26.233856pt;}
.ls5b{letter-spacing:26.583040pt;}
.ls57{letter-spacing:27.202560pt;}
.ls13{letter-spacing:27.298304pt;}
.ls4e{letter-spacing:27.940352pt;}
.ls4f{letter-spacing:28.007936pt;}
.ls67{letter-spacing:29.793280pt;}
.ls6b{letter-spacing:32.406528pt;}
.ls4{letter-spacing:35.240320pt;}
.ls6a{letter-spacing:35.661824pt;}
.ls29{letter-spacing:36.264448pt;}
.ls58{letter-spacing:39.429632pt;}
.ls54{letter-spacing:40.432000pt;}
.ls60{letter-spacing:49.617920pt;}
.ls5c{letter-spacing:60.912000pt;}
.ls70{letter-spacing:752.568320pt;}
.ls7f{letter-spacing:1205.148160pt;}
.wsad{word-spacing:-48.000000pt;}
.ws1{word-spacing:-26.688000pt;}
.ws9{word-spacing:-23.067520pt;}
.ws81{word-spacing:-20.816640pt;}
.ws2{word-spacing:-20.142720pt;}
.ws82{word-spacing:-19.918080pt;}
.wsa7{word-spacing:-18.636800pt;}
.ws38{word-spacing:-15.656960pt;}
.ws37{word-spacing:-15.319040pt;}
.ws36{word-spacing:-15.037440pt;}
.ws3a{word-spacing:-14.812160pt;}
.wsb7{word-spacing:-14.767360pt;}
.ws35{word-spacing:-14.763520pt;}
.ws3c{word-spacing:-14.755840pt;}
.ws7e{word-spacing:-14.643200pt;}
.ws83{word-spacing:-14.417920pt;}
.ws39{word-spacing:-14.361600pt;}
.ws8{word-spacing:-14.257920pt;}
.ws3{word-spacing:-14.106240pt;}
.ws4{word-spacing:-14.055680pt;}
.ws3b{word-spacing:-14.023680pt;}
.wsd2{word-spacing:-13.752320pt;}
.wsd0{word-spacing:-13.701760pt;}
.wsd4{word-spacing:-13.600640pt;}
.wse9{word-spacing:-13.536000pt;}
.ws5{word-spacing:-13.448960pt;}
.ws7{word-spacing:-13.398400pt;}
.wse8{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.246720pt;}
.wsd1{word-spacing:-13.095040pt;}
.wsdf{word-spacing:-13.044480pt;}
.wse7{word-spacing:-12.912000pt;}
.wsd3{word-spacing:-12.892800pt;}
.wseb{word-spacing:-12.816000pt;}
.wsea{word-spacing:-12.672000pt;}
.ws80{word-spacing:-12.632320pt;}
.ws7f{word-spacing:-11.678080pt;}
.ws55{word-spacing:-4.167680pt;}
.ws9d{word-spacing:-3.660800pt;}
.ws96{word-spacing:-3.548160pt;}
.ws65{word-spacing:-3.491840pt;}
.wsdb{word-spacing:-3.185280pt;}
.ws46{word-spacing:-2.872320pt;}
.wsf0{word-spacing:-2.640000pt;}
.wsd{word-spacing:-2.578560pt;}
.ws72{word-spacing:-2.496640pt;}
.ws4c{word-spacing:-2.252800pt;}
.wsb5{word-spacing:-2.196480pt;}
.ws10{word-spacing:-1.921280pt;}
.wsd6{word-spacing:-1.870720pt;}
.ws73{word-spacing:-1.859200pt;}
.ws78{word-spacing:-1.576960pt;}
.wsf3{word-spacing:-1.344000pt;}
.ws21{word-spacing:-1.314560pt;}
.wsc1{word-spacing:-1.221760pt;}
.ws58{word-spacing:-0.957440pt;}
.ws3d{word-spacing:-0.808960pt;}
.wsee{word-spacing:-0.720000pt;}
.wse0{word-spacing:-0.707840pt;}
.ws91{word-spacing:-0.673920pt;}
.ws12{word-spacing:-0.657280pt;}
.wsc6{word-spacing:-0.584320pt;}
.ws68{word-spacing:-0.394240pt;}
.ws97{word-spacing:-0.337920pt;}
.ws4e{word-spacing:-0.281600pt;}
.wsf1{word-spacing:-0.192000pt;}
.wsf2{word-spacing:-0.144000pt;}
.wsa0{word-spacing:-0.133120pt;}
.wsed{word-spacing:-0.096000pt;}
.ws92{word-spacing:-0.074880pt;}
.ws9f{word-spacing:-0.066560pt;}
.wsae{word-spacing:-0.056320pt;}
.ws13{word-spacing:-0.050560pt;}
.wsec{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsbc{word-spacing:0.053120pt;}
.wsf5{word-spacing:0.096000pt;}
.wse5{word-spacing:0.202240pt;}
.ws4b{word-spacing:0.337920pt;}
.wsdc{word-spacing:0.353920pt;}
.wsc{word-spacing:0.374400pt;}
.wsef{word-spacing:0.432000pt;}
.wsdd{word-spacing:0.455040pt;}
.wsb{word-spacing:0.480000pt;}
.ws90{word-spacing:0.499840pt;}
.wsb8{word-spacing:0.506880pt;}
.wsf4{word-spacing:0.528000pt;}
.ws5c{word-spacing:0.599040pt;}
.ws11{word-spacing:0.606720pt;}
.ws49{word-spacing:0.619520pt;}
.ws28{word-spacing:0.657280pt;}
.ws75{word-spacing:0.690560pt;}
.ws56{word-spacing:0.844800pt;}
.ws8e{word-spacing:0.863360pt;}
.ws3e{word-spacing:0.898560pt;}
.ws67{word-spacing:0.901120pt;}
.ws60{word-spacing:0.957440pt;}
.ws93{word-spacing:0.973440pt;}
.wse2{word-spacing:1.213440pt;}
.ws7c{word-spacing:1.239040pt;}
.ws27{word-spacing:1.264000pt;}
.wsab{word-spacing:1.295360pt;}
.wsda{word-spacing:1.314560pt;}
.wsa5{word-spacing:1.464320pt;}
.wscb{word-spacing:1.576960pt;}
.ws47{word-spacing:1.633280pt;}
.ws16{word-spacing:1.921280pt;}
.wsbd{word-spacing:1.965440pt;}
.wsa{word-spacing:2.112000pt;}
.ws42{word-spacing:2.252800pt;}
.ws25{word-spacing:2.578560pt;}
.ws64{word-spacing:2.872320pt;}
.wsf6{word-spacing:3.120000pt;}
.wsf{word-spacing:3.185280pt;}
.ws88{word-spacing:3.548160pt;}
.ws8f{word-spacing:3.680640pt;}
.wsf7{word-spacing:3.744000pt;}
.wsd8{word-spacing:3.842560pt;}
.ws79{word-spacing:4.167680pt;}
.ws2a{word-spacing:4.499840pt;}
.ws69{word-spacing:4.568320pt;}
.ws51{word-spacing:4.787200pt;}
.ws31{word-spacing:5.106560pt;}
.wsa6{word-spacing:5.181440pt;}
.ws6e{word-spacing:5.205760pt;}
.ws77{word-spacing:5.463040pt;}
.ws8d{word-spacing:5.589120pt;}
.ws2e{word-spacing:5.763840pt;}
.ws74{word-spacing:5.843200pt;}
.ws87{word-spacing:6.082560pt;}
.ws1f{word-spacing:6.370560pt;}
.wsd9{word-spacing:6.421120pt;}
.ws6f{word-spacing:6.480640pt;}
.ws45{word-spacing:6.758400pt;}
.wse1{word-spacing:7.027840pt;}
.wscd{word-spacing:7.040000pt;}
.ws5a{word-spacing:7.377920pt;}
.ws29{word-spacing:7.685120pt;}
.ws63{word-spacing:7.997440pt;}
.ws30{word-spacing:8.291840pt;}
.ws26{word-spacing:8.342400pt;}
.ws85{word-spacing:8.673280pt;}
.ws22{word-spacing:8.949120pt;}
.wsc3{word-spacing:9.030400pt;}
.wsa4{word-spacing:9.292800pt;}
.ws24{word-spacing:9.606400pt;}
.ws6c{word-spacing:9.667840pt;}
.ws4f{word-spacing:9.912320pt;}
.ws40{word-spacing:10.588160pt;}
.ws14{word-spacing:10.870400pt;}
.wsa2{word-spacing:11.207680pt;}
.ws34{word-spacing:11.527680pt;}
.wsc5{word-spacing:11.580160pt;}
.ws66{word-spacing:11.827200pt;}
.ws2b{word-spacing:12.184960pt;}
.ws76{word-spacing:12.503040pt;}
.ws32{word-spacing:12.791680pt;}
.wsc4{word-spacing:12.855040pt;}
.ws57{word-spacing:13.122560pt;}
.ws95{word-spacing:13.742080pt;}
.ws9a{word-spacing:13.798400pt;}
.ws6a{word-spacing:14.129920pt;}
.ws48{word-spacing:14.417920pt;}
.ws19{word-spacing:14.712960pt;}
.ws70{word-spacing:14.767360pt;}
.ws50{word-spacing:15.037440pt;}
.ws20{word-spacing:15.319680pt;}
.ws71{word-spacing:15.404800pt;}
.ws9c{word-spacing:15.713280pt;}
.ws1d{word-spacing:15.976960pt;}
.ws6b{word-spacing:16.042240pt;}
.ws5e{word-spacing:16.332800pt;}
.ws2d{word-spacing:16.634240pt;}
.ws5d{word-spacing:16.952320pt;}
.ws17{word-spacing:17.240960pt;}
.ws2c{word-spacing:17.291520pt;}
.wsc2{word-spacing:17.370240pt;}
.ws62{word-spacing:17.628160pt;}
.wsde{word-spacing:17.898240pt;}
.wsaf{word-spacing:18.247680pt;}
.wsd7{word-spacing:18.555520pt;}
.ws41{word-spacing:18.867200pt;}
.wse4{word-spacing:19.212800pt;}
.ws5f{word-spacing:19.543040pt;}
.ws54{word-spacing:20.162560pt;}
.ws1c{word-spacing:20.476800pt;}
.ws61{word-spacing:20.838400pt;}
.wse{word-spacing:21.083520pt;}
.ws6d{word-spacing:21.194880pt;}
.ws8a{word-spacing:21.457920pt;}
.ws23{word-spacing:21.943040pt;}
.ws99{word-spacing:22.077440pt;}
.wsb6{word-spacing:22.753280pt;}
.ws1a{word-spacing:23.004800pt;}
.ws52{word-spacing:23.372800pt;}
.ws1b{word-spacing:23.662080pt;}
.ws9e{word-spacing:23.992320pt;}
.wscf{word-spacing:24.668160pt;}
.ws9b{word-spacing:25.287680pt;}
.ws86{word-spacing:25.907200pt;}
.ws53{word-spacing:26.583040pt;}
.ws18{word-spacing:26.847360pt;}
.wsac{word-spacing:27.202560pt;}
.ws3f{word-spacing:27.878400pt;}
.ws98{word-spacing:28.497920pt;}
.wsc0{word-spacing:28.844160pt;}
.wsbf{word-spacing:28.897280pt;}
.wsb3{word-spacing:29.117440pt;}
.ws43{word-spacing:29.793280pt;}
.ws94{word-spacing:30.412800pt;}
.ws8b{word-spacing:31.032320pt;}
.ws4a{word-spacing:31.708160pt;}
.ws33{word-spacing:32.004480pt;}
.ws59{word-spacing:32.327680pt;}
.ws2f{word-spacing:32.611200pt;}
.wsca{word-spacing:32.947200pt;}
.ws7b{word-spacing:33.623040pt;}
.ws15{word-spacing:33.925760pt;}
.wsbe{word-spacing:33.996800pt;}
.wsb4{word-spacing:34.242560pt;}
.ws7d{word-spacing:34.918400pt;}
.ws1e{word-spacing:35.189760pt;}
.ws44{word-spacing:35.537920pt;}
.wsa9{word-spacing:36.157440pt;}
.ws89{word-spacing:36.833280pt;}
.wse6{word-spacing:37.111040pt;}
.wsa8{word-spacing:37.452800pt;}
.wsaa{word-spacing:38.072320pt;}
.wsa1{word-spacing:39.367680pt;}
.ws4d{word-spacing:39.987200pt;}
.ws8c{word-spacing:40.663040pt;}
.ws5b{word-spacing:41.282560pt;}
.wsb1{word-spacing:42.577920pt;}
.wsc9{word-spacing:43.197440pt;}
.wsc7{word-spacing:44.380160pt;}
.ws7a{word-spacing:44.492800pt;}
.wse3{word-spacing:45.402880pt;}
.wsce{word-spacing:45.788160pt;}
.ws84{word-spacing:46.407680pt;}
.wsa3{word-spacing:47.027200pt;}
.wsd5{word-spacing:48.638720pt;}
.wsb0{word-spacing:49.617920pt;}
.wsb9{word-spacing:50.124800pt;}
.wsba{word-spacing:50.237440pt;}
.wsb2{word-spacing:52.828160pt;}
.wscc{word-spacing:54.743040pt;}
.wsc8{word-spacing:60.487680pt;}
.wsbb{word-spacing:61.107200pt;}
._1b{margin-left:-6.546560pt;}
._d{margin-left:-4.562560pt;}
._13{margin-left:-3.468800pt;}
._8{margin-left:-2.282880pt;}
._2{margin-left:-0.940800pt;}
._1{width:1.027200pt;}
._9{width:2.126720pt;}
._b{width:3.548160pt;}
._a{width:5.671680pt;}
._12{width:7.377920pt;}
._5{width:9.172480pt;}
._f{width:10.216960pt;}
._3{width:11.258880pt;}
._c{width:12.165120pt;}
._17{width:13.330944pt;}
._16{width:14.699520pt;}
._6{width:16.128640pt;}
._10{width:17.048320pt;}
._18{width:18.005760pt;}
._19{width:19.188480pt;}
._4{width:20.830720pt;}
._1d{width:22.230400pt;}
._11{width:30.816640pt;}
._e{width:33.735680pt;}
._21{width:37.161600pt;}
._14{width:39.294720pt;}
._1a{width:43.253760pt;}
._20{width:45.128960pt;}
._1c{width:47.475840pt;}
._15{width:51.589120pt;}
._1e{width:96.872960pt;}
._1f{width:167.656960pt;}
._0{width:312.012800pt;}
._22{width:826.402560pt;}
._7{width:1219.203840pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:45.440000pt;}
.fse{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fsb{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs8{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:14.720000pt;}
.y72{bottom:16.800000pt;}
.y23{bottom:44.320000pt;}
.y2e6{bottom:44.802560pt;}
.y23d{bottom:51.040000pt;}
.y5{bottom:59.133337pt;}
.yba{bottom:65.600000pt;}
.y23c{bottom:69.760000pt;}
.y302{bottom:72.156000pt;}
.y104{bottom:80.039680pt;}
.y6e{bottom:80.176640pt;}
.yfa{bottom:81.152000pt;}
.y9f{bottom:81.292800pt;}
.ycf{bottom:81.634560pt;}
.y227{bottom:81.818880pt;}
.y24f{bottom:82.438400pt;}
.y184{bottom:82.732800pt;}
.y1b0{bottom:83.356160pt;}
.y1d2{bottom:84.179200pt;}
.y4{bottom:86.333337pt;}
.y130{bottom:90.398720pt;}
.y15b{bottom:90.726400pt;}
.y301{bottom:95.520000pt;}
.y6d{bottom:96.178880pt;}
.y103{bottom:99.723520pt;}
.yf9{bottom:101.145600pt;}
.y9e{bottom:101.286400pt;}
.yce{bottom:101.628160pt;}
.y226{bottom:101.812480pt;}
.y24e{bottom:102.432000pt;}
.y183{bottom:102.726400pt;}
.y1af{bottom:103.349760pt;}
.y1d1{bottom:104.172800pt;}
.y1fb{bottom:104.176640pt;}
.y12f{bottom:110.392320pt;}
.y15a{bottom:110.720000pt;}
.y300{bottom:110.880000pt;}
.y2bf{bottom:111.874560pt;}
.y6c{bottom:112.016800pt;}
.yb6{bottom:117.600000pt;}
.y102{bottom:119.238400pt;}
.yf8{bottom:121.139200pt;}
.y9d{bottom:121.280000pt;}
.ycd{bottom:121.621760pt;}
.y225{bottom:121.806080pt;}
.y24d{bottom:122.425600pt;}
.y182{bottom:122.720000pt;}
.y1ae{bottom:123.343360pt;}
.y21{bottom:123.790666pt;}
.y1fa{bottom:123.860480pt;}
.y1d0{bottom:124.166400pt;}
.y2ff{bottom:126.240000pt;}
.y6b{bottom:127.854720pt;}
.y12e{bottom:130.385920pt;}
.y49{bottom:135.501920pt;}
.y2be{bottom:136.193920pt;}
.y101{bottom:138.922240pt;}
.y159{bottom:139.354880pt;}
.yf7{bottom:141.132800pt;}
.y2fe{bottom:141.600000pt;}
.ycc{bottom:141.615360pt;}
.y224{bottom:141.799680pt;}
.y24c{bottom:142.419200pt;}
.y1ad{bottom:143.336960pt;}
.y6a{bottom:143.692640pt;}
.y1f9{bottom:143.699200pt;}
.y1cf{bottom:144.160000pt;}
.y9c{bottom:150.240960pt;}
.y12d{bottom:150.379520pt;}
.y181{bottom:151.357440pt;}
.y48{bottom:151.504160pt;}
.yb4{bottom:152.320000pt;}
.y2bd{bottom:152.512160pt;}
.y100{bottom:158.437120pt;}
.y69{bottom:159.530560pt;}
.y158{bottom:160.637440pt;}
.yf6{bottom:161.126400pt;}
.ycb{bottom:161.608960pt;}
.y223{bottom:161.793280pt;}
.y24b{bottom:162.412800pt;}
.y1f8{bottom:163.383040pt;}
.y2fd{bottom:164.796000pt;}
.y2bc{bottom:168.666080pt;}
.y12c{bottom:170.373120pt;}
.y1ac{bottom:171.342080pt;}
.y1ce{bottom:172.224000pt;}
.y180{bottom:172.640000pt;}
.y9b{bottom:174.240000pt;}
.y18{bottom:175.052000pt;}
.y47{bottom:175.343200pt;}
.y68{bottom:175.368480pt;}
.yff{bottom:178.120960pt;}
.yf5{bottom:181.120000pt;}
.y2fc{bottom:181.440000pt;}
.yca{bottom:181.602560pt;}
.y222{bottom:181.786880pt;}
.y157{bottom:181.920000pt;}
.y24a{bottom:182.406400pt;}
.y1f7{bottom:183.066880pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y12b{bottom:190.366720pt;}
.y67{bottom:191.206400pt;}
.y1ab{bottom:191.504640pt;}
.y46{bottom:191.977440pt;}
.y1cd{bottom:192.217600pt;}
.y2bb{bottom:192.985440pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yfe{bottom:197.635840pt;}
.y235{bottom:200.800000pt;}
.yc9{bottom:201.596160pt;}
.y221{bottom:201.780480pt;}
.y249{bottom:202.400000pt;}
.y1f6{bottom:202.905600pt;}
.y2fb{bottom:204.804000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y45{bottom:208.776000pt;}
.y2ba{bottom:209.303680pt;}
.y17f{bottom:209.542400pt;}
.y12a{bottom:210.360320pt;}
.yf4{bottom:210.720480pt;}
.y1aa{bottom:211.667200pt;}
.y1cc{bottom:212.211200pt;}
.y9a{bottom:213.313280pt;}
.y66{bottom:213.768800pt;}
.y156{bottom:218.814720pt;}
.y234{bottom:219.680000pt;}
.y2fa{bottom:220.164000pt;}
.yc8{bottom:221.589760pt;}
.yfd{bottom:223.880960pt;}
.y44{bottom:225.410240pt;}
.y2b9{bottom:225.457600pt;}
.y291{bottom:227.297280pt;}
.y65{bottom:229.771040pt;}
.y220{bottom:229.785600pt;}
.y17e{bottom:229.859840pt;}
.y129{bottom:230.353920pt;}
.y248{bottom:230.451200pt;}
.y1f5{bottom:230.586880pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1a9{bottom:231.984640pt;}
.y1cb{bottom:232.204800pt;}
.y99{bottom:233.152000pt;}
.yf3{bottom:235.524480pt;}
.y155{bottom:238.498560pt;}
.y2f9{bottom:239.520000pt;}
.yc7{bottom:241.583360pt;}
.y43{bottom:242.044480pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yfc{bottom:243.874560pt;}
.y64{bottom:245.608960pt;}
.y26b{bottom:247.558400pt;}
.y290{bottom:247.614720pt;}
.y2b8{bottom:249.776960pt;}
.y21f{bottom:249.779200pt;}
.y17d{bottom:250.022400pt;}
.y1f4{bottom:250.270720pt;}
.y128{bottom:250.347520pt;}
.y247{bottom:250.444800pt;}
.y1a8{bottom:252.147200pt;}
.y1ca{bottom:252.198400pt;}
.y98{bottom:252.835840pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y154{bottom:258.182400pt;}
.y42{bottom:258.678720pt;}
.yf2{bottom:260.160000pt;}
.y2f8{bottom:261.276000pt;}
.y63{bottom:261.446880pt;}
.yc6{bottom:261.576960pt;}
.yfb{bottom:263.868160pt;}
.y2b7{bottom:266.095200pt;}
.y26a{bottom:267.552000pt;}
.y28f{bottom:267.932160pt;}
.y21e{bottom:269.772800pt;}
.y1f3{bottom:270.109440pt;}
.y17c{bottom:270.339840pt;}
.y246{bottom:270.438400pt;}
.y1c9{bottom:272.192000pt;}
.y1a7{bottom:272.309760pt;}
.y97{bottom:272.519680pt;}
.y41{bottom:275.312960pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2f7{bottom:277.272000pt;}
.y62{bottom:277.284800pt;}
.y153{bottom:278.021120pt;}
.y127{bottom:278.352640pt;}
.y2b6{bottom:282.249120pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y269{bottom:287.545600pt;}
.y28e{bottom:288.249600pt;}
.yc5{bottom:289.582080pt;}
.y21d{bottom:289.766400pt;}
.y245{bottom:290.432000pt;}
.y17b{bottom:290.657280pt;}
.y40{bottom:291.947200pt;}
.y1c8{bottom:292.185600pt;}
.y96{bottom:292.358400pt;}
.y1a6{bottom:292.472320pt;}
.y61{bottom:293.122720pt;}
.y2f6{bottom:293.268000pt;}
.y152{bottom:297.704960pt;}
.y1f2{bottom:297.790720pt;}
.y126{bottom:298.670080pt;}
.y2b5{bottom:306.568480pt;}
.yf1{bottom:307.033920pt;}
.y268{bottom:307.539200pt;}
.y28d{bottom:308.412160pt;}
.y3f{bottom:308.745760pt;}
.yc4{bottom:309.265920pt;}
.yf{bottom:309.452000pt;}
.y21c{bottom:309.760000pt;}
.y244{bottom:310.425600pt;}
.y17a{bottom:310.819840pt;}
.y95{bottom:312.042240pt;}
.y1c7{bottom:312.179200pt;}
.y1a5{bottom:312.789760pt;}
.y2e4{bottom:314.333440pt;}
.y60{bottom:315.685120pt;}
.y2f5{bottom:317.268000pt;}
.y151{bottom:317.388800pt;}
.y1f1{bottom:317.474560pt;}
.y125{bottom:319.156480pt;}
.y2b4{bottom:322.886720pt;}
.y3e{bottom:325.380000pt;}
.y267{bottom:327.532800pt;}
.y28c{bottom:328.729600pt;}
.yc3{bottom:328.949760pt;}
.yf0{bottom:329.753920pt;}
.y2e3{bottom:330.335680pt;}
.y243{bottom:330.419200pt;}
.y179{bottom:331.137280pt;}
.y5f{bottom:331.523040pt;}
.y94{bottom:331.726080pt;}
.y1c6{bottom:332.172800pt;}
.y1a4{bottom:332.952320pt;}
.y150{bottom:337.227520pt;}
.y1f0{bottom:337.313280pt;}
.y21b{bottom:337.785600pt;}
.y2b3{bottom:339.040640pt;}
.y124{bottom:339.473920pt;}
.ye{bottom:343.809333pt;}
.y2e2{bottom:346.653920pt;}
.y5e{bottom:347.360960pt;}
.y266{bottom:347.526400pt;}
.yc2{bottom:348.633600pt;}
.y28b{bottom:349.047040pt;}
.y2f4{bottom:349.272000pt;}
.y3d{bottom:350.015360pt;}
.y242{bottom:350.412800pt;}
.y178{bottom:351.454720pt;}
.y1c5{bottom:352.166400pt;}
.yef{bottom:352.473920pt;}
.y1a3{bottom:353.114880pt;}
.y14f{bottom:356.911360pt;}
.y1ef{bottom:356.997120pt;}
.y21a{bottom:357.779200pt;}
.y93{bottom:359.407360pt;}
.y123{bottom:359.960320pt;}
.yd{bottom:362.706666pt;}
.y5d{bottom:363.198880pt;}
.y2b2{bottom:363.444320pt;}
.y2f3{bottom:365.268000pt;}
.y3c{bottom:366.649600pt;}
.yee{bottom:367.196480pt;}
.y265{bottom:367.520000pt;}
.yc1{bottom:368.317440pt;}
.y28a{bottom:369.209600pt;}
.y241{bottom:370.406400pt;}
.y2e1{bottom:370.973280pt;}
.y177{bottom:371.617280pt;}
.y1c4{bottom:372.160000pt;}
.y1a2{bottom:373.277440pt;}
.y14e{bottom:376.595200pt;}
.y219{bottom:377.772800pt;}
.y5c{bottom:379.201120pt;}
.y92{bottom:379.400960pt;}
.y2b1{bottom:379.762560pt;}
.y122{bottom:380.277760pt;}
.y2f2{bottom:381.264000pt;}
.yed{bottom:381.760000pt;}
.y3b{bottom:383.283840pt;}
.y1ee{bottom:384.678400pt;}
.y2e0{bottom:387.127200pt;}
.yc0{bottom:388.001280pt;}
.y289{bottom:389.527040pt;}
.y240{bottom:390.400000pt;}
.y176{bottom:391.934720pt;}
.y1a1{bottom:393.594880pt;}
.y5b{bottom:395.039040pt;}
.y14d{bottom:396.433920pt;}
.y264{bottom:396.480000pt;}
.y218{bottom:397.766400pt;}
.y91{bottom:399.394560pt;}
.y3a{bottom:399.918080pt;}
.y1c3{bottom:400.180480pt;}
.y121{bottom:400.764160pt;}
.yec{bottom:402.044160pt;}
.y2b0{bottom:403.917600pt;}
.y1ed{bottom:404.672000pt;}
.ybf{bottom:407.516160pt;}
.y288{bottom:409.844480pt;}
.y2df{bottom:411.446560pt;}
.y175{bottom:412.252160pt;}
.y2f1{bottom:413.424000pt;}
.y1a0{bottom:413.757440pt;}
.y14c{bottom:416.117760pt;}
.y39{bottom:416.716640pt;}
.y5a{bottom:417.601440pt;}
.y217{bottom:417.760000pt;}
.y90{bottom:419.388160pt;}
.y2af{bottom:420.235840pt;}
.y233{bottom:420.480000pt;}
.y1c2{bottom:420.497920pt;}
.y120{bottom:421.081600pt;}
.y1ec{bottom:424.665600pt;}
.ybe{bottom:427.200000pt;}
.y2de{bottom:427.764800pt;}
.y2f0{bottom:428.784000pt;}
.y287{bottom:430.007040pt;}
.y174{bottom:432.414720pt;}
.y38{bottom:433.350880pt;}
.y19f{bottom:433.920000pt;}
.y23f{bottom:434.080000pt;}
.y263{bottom:435.516160pt;}
.y14b{bottom:435.801600pt;}
.y2ae{bottom:436.554080pt;}
.y8f{bottom:439.381760pt;}
.y1c1{bottom:440.984320pt;}
.y59{bottom:441.440480pt;}
.y11f{bottom:441.568000pt;}
.y2dd{bottom:443.918720pt;}
.y2ef{bottom:443.988000pt;}
.y1eb{bottom:444.659200pt;}
.y216{bottom:445.792000pt;}
.yc{bottom:446.990669pt;}
.y37{bottom:449.985120pt;}
.y286{bottom:450.324480pt;}
.yb3{bottom:451.680000pt;}
.y2ad{bottom:452.708000pt;}
.y173{bottom:452.732160pt;}
.y23e{bottom:452.800000pt;}
.y262{bottom:455.678720pt;}
.y58{bottom:457.278400pt;}
.y8e{bottom:459.375360pt;}
.y1c0{bottom:461.301760pt;}
.yb{bottom:462.990669pt;}
.y19e{bottom:463.040960pt;}
.y14a{bottom:463.637760pt;}
.y1ea{bottom:464.652800pt;}
.ybd{bottom:465.280000pt;}
.y215{bottom:465.785600pt;}
.y36{bottom:466.619360pt;}
.y2dc{bottom:468.238080pt;}
.y11e{bottom:469.882880pt;}
.y285{bottom:470.641920pt;}
.y57{bottom:473.116320pt;}
.y261{bottom:475.841280pt;}
.y2ac{bottom:477.027360pt;}
.ya{bottom:478.990666pt;}
.y8d{bottom:479.368960pt;}
.y172{bottom:481.047040pt;}
.ybc{bottom:482.720000pt;}
.y35{bottom:483.253600pt;}
.y149{bottom:483.321600pt;}
.y2db{bottom:484.556320pt;}
.y1e9{bottom:484.646400pt;}
.y214{bottom:485.779200pt;}
.y19d{bottom:487.040000pt;}
.y56{bottom:488.954240pt;}
.y1bf{bottom:489.785600pt;}
.y11d{bottom:490.369280pt;}
.y284{bottom:490.804480pt;}
.y2ab{bottom:493.345600pt;}
.y9{bottom:494.990666pt;}
.y260{bottom:496.003840pt;}
.y8c{bottom:499.362560pt;}
.y34{bottom:499.887840pt;}
.ybb{bottom:500.000000pt;}
.y2da{bottom:500.710240pt;}
.y171{bottom:501.209600pt;}
.y148{bottom:503.005440pt;}
.y1e8{bottom:504.640000pt;}
.y55{bottom:504.792160pt;}
.y213{bottom:505.772800pt;}
.y23b{bottom:508.960000pt;}
.y1be{bottom:509.779200pt;}
.y11c{bottom:510.686720pt;}
.y283{bottom:511.121920pt;}
.y25f{bottom:516.166400pt;}
.yb9{bottom:517.280000pt;}
.y2aa{bottom:517.500640pt;}
.y8b{bottom:519.356160pt;}
.y170{bottom:521.527040pt;}
.y147{bottom:522.844160pt;}
.y33{bottom:524.687520pt;}
.y2d9{bottom:525.029600pt;}
.y212{bottom:525.766400pt;}
.y19c{bottom:526.182400pt;}
.y54{bottom:527.354560pt;}
.y23a{bottom:527.680000pt;}
.y1bd{bottom:529.772800pt;}
.y11b{bottom:531.173120pt;}
.y282{bottom:531.439360pt;}
.y1e7{bottom:532.655360pt;}
.y2a9{bottom:533.818880pt;}
.yb8{bottom:534.720000pt;}
.y25e{bottom:536.160000pt;}
.y8a{bottom:539.349760pt;}
.y32{bottom:541.321760pt;}
.y2d8{bottom:541.347840pt;}
.y16f{bottom:541.844480pt;}
.y146{bottom:542.528000pt;}
.y53{bottom:543.192480pt;}
.y211{bottom:545.760000pt;}
.y19b{bottom:546.021120pt;}
.y239{bottom:546.400000pt;}
.y1bc{bottom:549.766400pt;}
.y2a8{bottom:550.137120pt;}
.y11a{bottom:551.490560pt;}
.y281{bottom:551.601920pt;}
.yb7{bottom:552.000000pt;}
.y1e6{bottom:552.648960pt;}
.y31{bottom:557.956000pt;}
.y52{bottom:559.194720pt;}
.y89{bottom:559.343360pt;}
.y16e{bottom:562.007040pt;}
.y145{bottom:562.211840pt;}
.y25d{bottom:564.403200pt;}
.y238{bottom:565.120000pt;}
.y2d7{bottom:565.502880pt;}
.y19a{bottom:566.014720pt;}
.y1bb{bottom:569.760000pt;}
.y280{bottom:571.919360pt;}
.y119{bottom:571.976960pt;}
.y1e5{bottom:572.642560pt;}
.y8{bottom:573.786667pt;}
.y210{bottom:573.798267pt;}
.y2a7{bottom:574.292160pt;}
.y30{bottom:574.590240pt;}
.y51{bottom:575.032640pt;}
.y88{bottom:579.336960pt;}
.y2d6{bottom:581.821120pt;}
.y144{bottom:582.050560pt;}
.y16d{bottom:582.324480pt;}
.y237{bottom:583.840000pt;}
.y25c{bottom:584.396800pt;}
.y199{bottom:585.853440pt;}
.yb5{bottom:586.720000pt;}
.y2a6{bottom:590.610400pt;}
.y2f{bottom:591.224480pt;}
.y27f{bottom:592.236800pt;}
.y118{bottom:592.294400pt;}
.y1e4{bottom:592.636160pt;}
.y7{bottom:592.685334pt;}
.y20f{bottom:593.791867pt;}
.y50{bottom:597.595040pt;}
.y1ba{bottom:597.779200pt;}
.y87{bottom:599.330560pt;}
.y143{bottom:601.734400pt;}
.y236{bottom:602.560000pt;}
.y16c{bottom:602.641920pt;}
.yb2{bottom:604.000000pt;}
.y25b{bottom:604.390400pt;}
.y198{bottom:605.692160pt;}
.y2d5{bottom:606.140480pt;}
.y2a5{bottom:606.928640pt;}
.y2e{bottom:607.858720pt;}
.y27e{bottom:612.399360pt;}
.y1e3{bottom:612.629760pt;}
.y117{bottom:612.780800pt;}
.y4f{bottom:613.432960pt;}
.y20e{bottom:613.785467pt;}
.y1b9{bottom:617.772800pt;}
.y86{bottom:619.324160pt;}
.yb1{bottom:621.280000pt;}
.y142{bottom:621.418240pt;}
.y2d4{bottom:622.294400pt;}
.y16b{bottom:622.804480pt;}
.y25a{bottom:624.384000pt;}
.y2d{bottom:624.657280pt;}
.y197{bottom:625.530880pt;}
.y4e{bottom:629.270880pt;}
.y2a4{bottom:631.083680pt;}
.y116{bottom:633.098240pt;}
.y20d{bottom:633.779067pt;}
.y1b8{bottom:637.766400pt;}
.y2d3{bottom:638.612640pt;}
.yb0{bottom:638.720000pt;}
.y1e2{bottom:640.634880pt;}
.y27d{bottom:640.714240pt;}
.y141{bottom:641.256960pt;}
.y2c{bottom:641.291520pt;}
.y16a{bottom:643.121920pt;}
.y259{bottom:644.377600pt;}
.y4d{bottom:645.108800pt;}
.y196{bottom:645.369600pt;}
.y6{bottom:645.598667pt;}
.y2a3{bottom:647.401920pt;}
.y85{bottom:647.484160pt;}
.y115{bottom:653.584640pt;}
.y20c{bottom:653.772667pt;}
.y1b7{bottom:657.760000pt;}
.y2b{bottom:657.925760pt;}
.y232{bottom:658.880000pt;}
.y2ee{bottom:659.352000pt;}
.y1e1{bottom:660.473600pt;}
.y140{bottom:660.940800pt;}
.y4c{bottom:660.946720pt;}
.y27c{bottom:661.031680pt;}
.y2d2{bottom:662.932000pt;}
.y169{bottom:663.439360pt;}
.yaf{bottom:664.160000pt;}
.y258{bottom:664.371200pt;}
.y195{bottom:665.208320pt;}
.y84{bottom:667.168000pt;}
.y3{bottom:668.977329pt;}
.y2a2{bottom:671.721280pt;}
.y2ed{bottom:672.792000pt;}
.y20b{bottom:673.766267pt;}
.y114{bottom:673.902080pt;}
.y2a{bottom:674.560000pt;}
.y4b{bottom:676.784640pt;}
.y231{bottom:677.600000pt;}
.y2d1{bottom:679.085920pt;}
.y1e0{bottom:680.157440pt;}
.y13f{bottom:680.624640pt;}
.y27b{bottom:681.194240pt;}
.y168{bottom:683.601920pt;}
.y257{bottom:684.364800pt;}
.y194{bottom:685.201920pt;}
.y1b6{bottom:685.779067pt;}
.y83{bottom:686.851840pt;}
.y2a1{bottom:687.875200pt;}
.yeb{bottom:692.289280pt;}
.y20a{bottom:693.759867pt;}
.y2d0{bottom:695.404160pt;}
.y230{bottom:696.320000pt;}
.y4a{bottom:699.347040pt;}
.y1df{bottom:699.841280pt;}
.y13e{bottom:700.463360pt;}
.y29{bottom:700.640000pt;}
.y27a{bottom:701.511680pt;}
.y113{bottom:702.385920pt;}
.y167{bottom:703.919360pt;}
.y256{bottom:704.358400pt;}
.yae{bottom:704.417280pt;}
.y193{bottom:705.040640pt;}
.y1b5{bottom:705.772667pt;}
.y82{bottom:706.690560pt;}
.y2a0{bottom:712.194560pt;}
.y1de{bottom:719.680000pt;}
.y2cf{bottom:719.723520pt;}
.y13d{bottom:720.147200pt;}
.y279{bottom:721.829120pt;}
.y209{bottom:721.830400pt;}
.y112{bottom:722.703360pt;}
.y22f{bottom:723.200000pt;}
.y166{bottom:724.236800pt;}
.y255{bottom:724.352000pt;}
.ydd{bottom:724.391680pt;}
.yad{bottom:724.410880pt;}
.y192{bottom:724.879360pt;}
.y1b4{bottom:725.766267pt;}
.y81{bottom:726.374400pt;}
.y29f{bottom:728.512800pt;}
.y2ce{bottom:735.877440pt;}
.y1dd{bottom:739.363840pt;}
.y13c{bottom:739.831040pt;}
.y28{bottom:740.645600pt;}
.y208{bottom:741.824000pt;}
.y278{bottom:741.991680pt;}
.y111{bottom:743.189760pt;}
.y254{bottom:744.345600pt;}
.ydc{bottom:744.385280pt;}
.yac{bottom:744.404480pt;}
.yea{bottom:744.455680pt;}
.y191{bottom:744.718080pt;}
.y1b3{bottom:745.759867pt;}
.y80{bottom:746.058240pt;}
.y2cd{bottom:752.195680pt;}
.y165{bottom:752.396800pt;}
.y29e{bottom:752.667840pt;}
.y1dc{bottom:759.047680pt;}
.y207{bottom:761.817600pt;}
.y27{bottom:762.080000pt;}
.y277{bottom:762.309120pt;}
.y22e{bottom:763.353600pt;}
.y110{bottom:763.507200pt;}
.y253{bottom:764.339200pt;}
.ydb{bottom:764.378880pt;}
.yab{bottom:764.398080pt;}
.ye9{bottom:764.449280pt;}
.y190{bottom:764.556800pt;}
.y7f{bottom:765.896960pt;}
.y13b{bottom:767.667200pt;}
.y2cc{bottom:768.513920pt;}
.y29d{bottom:768.986080pt;}
.y164{bottom:772.390400pt;}
.y1b2{bottom:774.237440pt;}
.y2{bottom:781.661334pt;}
.y206{bottom:781.811200pt;}
.y276{bottom:782.626560pt;}
.y22d{bottom:783.516160pt;}
.y10f{bottom:783.993600pt;}
.y252{bottom:784.332800pt;}
.yda{bottom:784.372480pt;}
.yaa{bottom:784.391680pt;}
.ye8{bottom:784.442880pt;}
.y2cb{bottom:784.667840pt;}
.y7e{bottom:785.580800pt;}
.y1db{bottom:786.883840pt;}
.y13a{bottom:787.351040pt;}
.y2ec{bottom:787.836000pt;}
.y163{bottom:792.384000pt;}
.y18f{bottom:792.392960pt;}
.y29c{bottom:793.305440pt;}
.y1b1{bottom:795.520000pt;}
.y205{bottom:801.804800pt;}
.y275{bottom:802.789120pt;}
.y22c{bottom:803.678720pt;}
.y10e{bottom:804.311040pt;}
.y251{bottom:804.326400pt;}
.yd9{bottom:804.366080pt;}
.ya9{bottom:804.385280pt;}
.ye7{bottom:804.436480pt;}
.y7d{bottom:805.264640pt;}
.y1da{bottom:806.567680pt;}
.y139{bottom:807.034880pt;}
.y2ca{bottom:808.987200pt;}
.y29b{bottom:809.459360pt;}
.y162{bottom:812.377600pt;}
.y18e{bottom:812.386560pt;}
.y204{bottom:821.798400pt;}
.y274{bottom:823.106560pt;}
.y22b{bottom:823.841280pt;}
.y250{bottom:824.320000pt;}
.yd8{bottom:824.359680pt;}
.ye6{bottom:824.430080pt;}
.y10d{bottom:824.797440pt;}
.y7c{bottom:825.103360pt;}
.y2c9{bottom:825.305440pt;}
.y1d9{bottom:826.251520pt;}
.y138{bottom:826.873600pt;}
.y161{bottom:832.371200pt;}
.y18d{bottom:832.380160pt;}
.ya8{bottom:832.390400pt;}
.y29a{bottom:833.778720pt;}
.y2c8{bottom:841.459360pt;}
.y203{bottom:841.792000pt;}
.y273{bottom:843.424000pt;}
.y22a{bottom:844.003840pt;}
.yd7{bottom:844.353280pt;}
.ye5{bottom:844.423680pt;}
.y7b{bottom:844.787200pt;}
.y10c{bottom:845.114880pt;}
.y1d8{bottom:846.090240pt;}
.y137{bottom:846.557440pt;}
.y299{bottom:850.096960pt;}
.y160{bottom:852.364800pt;}
.y18c{bottom:852.373760pt;}
.ya7{bottom:852.384000pt;}
.y26{bottom:856.960000pt;}
.y1{bottom:859.312000pt;}
.y202{bottom:861.785600pt;}
.y272{bottom:863.586560pt;}
.y229{bottom:864.166400pt;}
.yd6{bottom:864.346880pt;}
.ye4{bottom:864.417280pt;}
.y7a{bottom:864.471040pt;}
.y10b{bottom:865.601280pt;}
.y1d7{bottom:865.774080pt;}
.y2c7{bottom:865.778720pt;}
.y136{bottom:866.241280pt;}
.y298{bottom:866.250880pt;}
.y15f{bottom:872.358400pt;}
.y18b{bottom:872.367360pt;}
.ya6{bottom:872.377600pt;}
.y201{bottom:881.779200pt;}
.y2c6{bottom:882.096960pt;}
.y271{bottom:883.904000pt;}
.y228{bottom:884.160000pt;}
.y79{bottom:884.309760pt;}
.yd5{bottom:884.340480pt;}
.y25{bottom:884.488000pt;}
.y1d6{bottom:885.457920pt;}
.y10a{bottom:885.918720pt;}
.y135{bottom:886.080000pt;}
.y297{bottom:890.570240pt;}
.y2eb{bottom:891.996000pt;}
.y15e{bottom:892.352000pt;}
.y18a{bottom:892.360960pt;}
.ya5{bottom:892.371200pt;}
.ye3{bottom:892.422400pt;}
.y2c5{bottom:898.250880pt;}
.y200{bottom:901.772800pt;}
.y78{bottom:903.993600pt;}
.y270{bottom:904.221440pt;}
.yd4{bottom:904.334080pt;}
.y1d5{bottom:905.296640pt;}
.y296{bottom:906.888480pt;}
.y24{bottom:912.160000pt;}
.y15d{bottom:912.345600pt;}
.y189{bottom:912.354560pt;}
.ya4{bottom:912.364800pt;}
.ye2{bottom:912.416000pt;}
.y134{bottom:914.237440pt;}
.y109{bottom:914.402560pt;}
.y1ff{bottom:921.766400pt;}
.y2c4{bottom:922.570240pt;}
.y77{bottom:923.677440pt;}
.y2ea{bottom:924.000000pt;}
.yd3{bottom:924.327680pt;}
.y1d4{bottom:924.980480pt;}
.y295{bottom:931.043520pt;}
.y15c{bottom:932.339200pt;}
.y188{bottom:932.348160pt;}
.ya3{bottom:932.358400pt;}
.y26f{bottom:932.381440pt;}
.ye1{bottom:932.409600pt;}
.y108{bottom:934.086400pt;}
.y133{bottom:935.520000pt;}
.y2c3{bottom:938.888480pt;}
.y1fe{bottom:941.760000pt;}
.y76{bottom:943.516160pt;}
.y1d3{bottom:944.664320pt;}
.y294{bottom:947.361760pt;}
.yd2{bottom:952.332800pt;}
.y187{bottom:952.341760pt;}
.ya2{bottom:952.352000pt;}
.y26e{bottom:952.375040pt;}
.ye0{bottom:952.403200pt;}
.y107{bottom:953.601280pt;}
.y2e9{bottom:955.680000pt;}
.y71{bottom:959.040000pt;}
.y6f{bottom:962.560000pt;}
.y2c2{bottom:963.043520pt;}
.y75{bottom:963.200000pt;}
.y293{bottom:963.680000pt;}
.y1fd{bottom:970.237440pt;}
.yd1{bottom:972.326400pt;}
.y132{bottom:972.327680pt;}
.y186{bottom:972.335360pt;}
.ya1{bottom:972.345600pt;}
.y26d{bottom:972.368640pt;}
.ydf{bottom:972.396800pt;}
.y106{bottom:973.285120pt;}
.y2c1{bottom:979.361760pt;}
.y2e8{bottom:979.680000pt;}
.y292{bottom:989.280000pt;}
.y1fc{bottom:991.520000pt;}
.y74{bottom:991.840000pt;}
.yd0{bottom:992.320000pt;}
.y131{bottom:992.321280pt;}
.y185{bottom:992.328960pt;}
.ya0{bottom:992.339200pt;}
.y26c{bottom:992.362240pt;}
.yde{bottom:992.390400pt;}
.y105{bottom:992.800000pt;}
.y2c0{bottom:995.680000pt;}
.y2e7{bottom:996.000000pt;}
.y2e5{bottom:1052.480000pt;}
.y73{bottom:1053.440000pt;}
.y22{bottom:1060.480000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1f{height:31.992188pt;}
.h12{height:34.400000pt;}
.h10{height:36.809062pt;}
.h14{height:37.280000pt;}
.h18{height:40.736250pt;}
.h7{height:40.853333pt;}
.h15{height:41.002500pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1e{height:42.914062pt;}
.h1d{height:43.031250pt;}
.h11{height:45.202813pt;}
.hc{height:45.326250pt;}
.h16{height:47.621250pt;}
.h2{height:49.024000pt;}
.h1a{height:50.352500pt;}
.hb{height:50.490000pt;}
.h20{height:50.506000pt;}
.h1c{height:54.125567pt;}
.hf{height:54.514687pt;}
.h19{height:59.670000pt;}
.h13{height:61.969687pt;}
.he{height:67.128750pt;}
.h5{height:69.450667pt;}
.hd{height:69.890625pt;}
.h4{height:105.826671pt;}
.h17{height:233.440000pt;}
.h1b{height:323.680000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:272.960000pt;}
.w5{width:299.838667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.xb{left:13.440000pt;}
.xa{left:60.480000pt;}
.x6{left:75.520000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x15{left:139.040000pt;}
.x4{left:180.874667pt;}
.xc{left:192.960000pt;}
.x16{left:194.260000pt;}
.x10{left:198.880000pt;}
.xe{left:258.880000pt;}
.x7{left:285.600000pt;}
.x8{left:398.724800pt;}
.x3{left:404.408000pt;}
.xd{left:405.920000pt;}
.x9{left:413.905440pt;}
.x12{left:417.606400pt;}
.x14{left:422.705920pt;}
.x5{left:427.040000pt;}
.x13{left:436.656640pt;}
.x11{left:699.531520pt;}
}




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