
    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_c80a2b1bc99021ee8477b3b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_1450adff9a4cc154fa7025d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_b76ffb4573e1912309029807.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_65b8e6c67b68bb8981bfc138.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_fb0b49510f6eb303ff40c441.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2ba30228a51ba27dc307edaf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7614159027e84d7e38d55963.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.200000;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);}
.v2{vertical-align:-28.932000px;}
.v5{vertical-align:-17.838000px;}
.va{vertical-align:-16.746000px;}
.v3{vertical-align:-14.346000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:33.000000px;}
.v1{vertical-align:34.716000px;}
.v8{vertical-align:37.680000px;}
.v6{vertical-align:39.504000px;}
.v4{vertical-align:64.752000px;}
.v7{vertical-align:77.514000px;}
.ls1{letter-spacing:0.000000px;}
.ls7d{letter-spacing:0.005400px;}
.ls6b{letter-spacing:0.195085px;}
.ls87{letter-spacing:0.231002px;}
.ls70{letter-spacing:0.235493px;}
.ls83{letter-spacing:0.237002px;}
.ls68{letter-spacing:0.239209px;}
.ls46{letter-spacing:0.239572px;}
.ls66{letter-spacing:0.241009px;}
.ls18{letter-spacing:0.241493px;}
.ls4e{letter-spacing:0.246110px;}
.ls7f{letter-spacing:0.249385px;}
.ls49{letter-spacing:0.266345px;}
.ls4a{letter-spacing:0.266425px;}
.ls43{letter-spacing:0.267558px;}
.ls51{letter-spacing:0.269194px;}
.ls56{letter-spacing:0.272402px;}
.ls3e{letter-spacing:0.278123px;}
.ls42{letter-spacing:0.278423px;}
.ls61{letter-spacing:0.282379px;}
.ls40{letter-spacing:0.284123px;}
.ls6e{letter-spacing:0.284726px;}
.ls88{letter-spacing:0.285698px;}
.ls19{letter-spacing:0.873584px;}
.ls62{letter-spacing:0.904500px;}
.ls6f{letter-spacing:0.910500px;}
.lse{letter-spacing:1.076926px;}
.ls6{letter-spacing:1.147493px;}
.ls7e{letter-spacing:1.147694px;}
.ls32{letter-spacing:1.176225px;}
.ls27{letter-spacing:1.193400px;}
.ls2a{letter-spacing:1.194900px;}
.ls4{letter-spacing:1.195493px;}
.ls28{letter-spacing:1.197227px;}
.ls64{letter-spacing:1.243336px;}
.ls53{letter-spacing:1.630500px;}
.ls4f{letter-spacing:1.636500px;}
.ls8{letter-spacing:1.785584px;}
.ls7{letter-spacing:1.814028px;}
.ls58{letter-spacing:2.140500px;}
.ls52{letter-spacing:2.146500px;}
.ls2e{letter-spacing:2.387700px;}
.ls35{letter-spacing:2.391030px;}
.ls8e{letter-spacing:2.392124px;}
.lsa{letter-spacing:2.393700px;}
.ls31{letter-spacing:2.986500px;}
.ls0{letter-spacing:2.989500px;}
.ls2b{letter-spacing:2.992500px;}
.ls90{letter-spacing:3.704926px;}
.ls8b{letter-spacing:3.710926px;}
.ls1c{letter-spacing:4.180500px;}
.ls10{letter-spacing:4.186500px;}
.ls25{letter-spacing:7.058926px;}
.ls2d{letter-spacing:7.221227px;}
.ls63{letter-spacing:17.135400px;}
.ls12{letter-spacing:17.135700px;}
.ls60{letter-spacing:17.783852px;}
.ls5f{letter-spacing:17.831400px;}
.ls5d{letter-spacing:18.845852px;}
.ls5c{letter-spacing:18.887400px;}
.ls1b{letter-spacing:19.745852px;}
.lsf{letter-spacing:19.793400px;}
.ls74{letter-spacing:20.573852px;}
.ls20{letter-spacing:20.597852px;}
.ls73{letter-spacing:20.621400px;}
.ls1f{letter-spacing:20.645400px;}
.ls7c{letter-spacing:20.729852px;}
.ls7a{letter-spacing:20.735852px;}
.ls79{letter-spacing:20.777400px;}
.ls8d{letter-spacing:20.903852px;}
.lsd{letter-spacing:20.939852px;}
.ls34{letter-spacing:20.945852px;}
.ls8c{letter-spacing:20.949307px;}
.ls95{letter-spacing:20.985307px;}
.ls26{letter-spacing:20.989054px;}
.lsc{letter-spacing:20.989493px;}
.ls91{letter-spacing:20.991307px;}
.ls72{letter-spacing:21.065852px;}
.ls71{letter-spacing:21.107400px;}
.ls22{letter-spacing:21.905852px;}
.ls21{letter-spacing:21.947400px;}
.ls5b{letter-spacing:22.121852px;}
.ls5a{letter-spacing:22.169400px;}
.ls15{letter-spacing:22.295700px;}
.ls55{letter-spacing:22.475852px;}
.ls4d{letter-spacing:22.583852px;}
.ls76{letter-spacing:22.715852px;}
.ls75{letter-spacing:22.757400px;}
.ls77{letter-spacing:22.763400px;}
.ls5e{letter-spacing:22.931400px;}
.ls93{letter-spacing:23.153852px;}
.ls92{letter-spacing:23.205307px;}
.ls33{letter-spacing:23.686500px;}
.ls8f{letter-spacing:23.879700px;}
.ls69{letter-spacing:23.908880px;}
.ls1e{letter-spacing:23.909400px;}
.ls17{letter-spacing:23.909700px;}
.ls16{letter-spacing:23.915700px;}
.ls3a{letter-spacing:24.896028px;}
.ls65{letter-spacing:25.057994px;}
.ls3{letter-spacing:25.105493px;}
.ls67{letter-spacing:25.153636px;}
.ls7b{letter-spacing:26.567400px;}
.ls3d{letter-spacing:26.891700px;}
.ls5{letter-spacing:26.896500px;}
.ls14{letter-spacing:27.713852px;}
.ls2f{letter-spacing:27.719852px;}
.ls39{letter-spacing:27.762900px;}
.ls38{letter-spacing:27.808500px;}
.ls54{letter-spacing:28.498500px;}
.ls3b{letter-spacing:28.536972px;}
.ls4c{letter-spacing:28.600500px;}
.ls85{letter-spacing:28.788001px;}
.ls3f{letter-spacing:28.838926px;}
.ls41{letter-spacing:28.844926px;}
.ls82{letter-spacing:28.883642px;}
.ls37{letter-spacing:28.913852px;}
.ls13{letter-spacing:28.957493px;}
.ls6c{letter-spacing:29.003352px;}
.ls23{letter-spacing:29.735400px;}
.ls89{letter-spacing:29.887433px;}
.ls59{letter-spacing:30.748500px;}
.ls30{letter-spacing:30.754500px;}
.ls6d{letter-spacing:30.796466px;}
.ls6a{letter-spacing:30.892108px;}
.ls94{letter-spacing:31.385700px;}
.ls36{letter-spacing:31.654500px;}
.ls9{letter-spacing:31.658028px;}
.ls78{letter-spacing:31.925400px;}
.ls84{letter-spacing:33.233852px;}
.ls81{letter-spacing:33.239852px;}
.ls8a{letter-spacing:33.301200px;}
.ls29{letter-spacing:33.695700px;}
.ls1a{letter-spacing:34.889852px;}
.lsb{letter-spacing:36.083852px;}
.ls86{letter-spacing:36.268500px;}
.ls80{letter-spacing:36.274500px;}
.ls50{letter-spacing:37.943852px;}
.ls48{letter-spacing:38.081852px;}
.ls47{letter-spacing:39.206926px;}
.ls57{letter-spacing:39.935852px;}
.ls45{letter-spacing:42.701852px;}
.ls44{letter-spacing:43.826926px;}
.ls2{letter-spacing:47.820600px;}
.ls3c{letter-spacing:51.666900px;}
.ls4b{letter-spacing:61.999200px;}
.ls2c{letter-spacing:114.017700px;}
.ls24{letter-spacing:161.395200px;}
.ls11{letter-spacing:240.491400px;}
.ls1d{letter-spacing:308.327400px;}
.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;}
}
.ws4b{word-spacing:-183.213600px;}
.ws11{word-spacing:-56.715232px;}
.ws10{word-spacing:-46.194700px;}
.ws13{word-spacing:-45.620852px;}
.wsf{word-spacing:-38.352121px;}
.ws83{word-spacing:-26.301330px;}
.ws1d{word-spacing:-23.910300px;}
.ws2{word-spacing:-21.818400px;}
.wsc{word-spacing:-19.925550px;}
.wse{word-spacing:-19.128240px;}
.ws2d{word-spacing:-18.171750px;}
.wsa7{word-spacing:-8.033861px;}
.ws76{word-spacing:-7.938220px;}
.wsd4{word-spacing:-6.776400px;}
.wsd7{word-spacing:-6.770400px;}
.ws111{word-spacing:-5.355907px;}
.ws112{word-spacing:-5.260266px;}
.ws19{word-spacing:-4.399495px;}
.ws1a{word-spacing:-4.396259px;}
.ws1b{word-spacing:-4.393018px;}
.ws113{word-spacing:-4.208213px;}
.ws4f{word-spacing:-4.130828px;}
.ws2f{word-spacing:-4.117500px;}
.ws114{word-spacing:-4.016930px;}
.ws11c{word-spacing:-3.825648px;}
.ws110{word-spacing:-3.730007px;}
.wsb7{word-spacing:-3.634366px;}
.wsb8{word-spacing:-3.589997px;}
.ws23{word-spacing:-3.060518px;}
.wsa8{word-spacing:-2.869236px;}
.ws123{word-spacing:-2.677954px;}
.ws9f{word-spacing:-2.492719px;}
.ws9c{word-spacing:-2.486671px;}
.ws9d{word-spacing:-2.484125px;}
.ws9e{word-spacing:-2.482852px;}
.wsd1{word-spacing:-2.104106px;}
.ws1f{word-spacing:-2.020939px;}
.ws1e{word-spacing:-2.008465px;}
.ws8b{word-spacing:-1.742153px;}
.ws8a{word-spacing:-1.737168px;}
.ws89{word-spacing:-1.721542px;}
.wseb{word-spacing:-1.625900px;}
.wsec{word-spacing:-1.243336px;}
.ws104{word-spacing:-1.052053px;}
.wsd0{word-spacing:-0.956412px;}
.ws22{word-spacing:-0.860771px;}
.ws115{word-spacing:-0.765130px;}
.ws30{word-spacing:-0.669488px;}
.ws17{word-spacing:-0.478206px;}
.wsf3{word-spacing:-0.286924px;}
.wsb3{word-spacing:-0.191282px;}
.ws95{word-spacing:-0.120571px;}
.ws46{word-spacing:-0.095641px;}
.wse0{word-spacing:-0.048374px;}
.ws44{word-spacing:-0.008627px;}
.ws35{word-spacing:-0.008570px;}
.wscd{word-spacing:-0.008164px;}
.ws28{word-spacing:-0.006966px;}
.ws39{word-spacing:-0.006676px;}
.ws8f{word-spacing:-0.006673px;}
.ws2a{word-spacing:-0.006505px;}
.ws73{word-spacing:-0.006132px;}
.ws90{word-spacing:-0.006125px;}
.ws74{word-spacing:-0.005773px;}
.wse2{word-spacing:-0.004852px;}
.wse4{word-spacing:-0.004824px;}
.ws98{word-spacing:-0.004493px;}
.ws92{word-spacing:-0.004412px;}
.wsa6{word-spacing:-0.004153px;}
.ws43{word-spacing:-0.003844px;}
.wse7{word-spacing:-0.003520px;}
.ws8e{word-spacing:-0.003366px;}
.ws96{word-spacing:-0.003278px;}
.ws36{word-spacing:-0.003191px;}
.ws94{word-spacing:-0.003052px;}
.ws107{word-spacing:-0.003000px;}
.ws101{word-spacing:-0.002920px;}
.wsa4{word-spacing:-0.002795px;}
.ws93{word-spacing:-0.002719px;}
.ws45{word-spacing:-0.002320px;}
.wsa5{word-spacing:-0.002100px;}
.wsb6{word-spacing:-0.002090px;}
.wsca{word-spacing:-0.002020px;}
.wsc2{word-spacing:-0.001997px;}
.wsb1{word-spacing:-0.001712px;}
.ws3a{word-spacing:-0.001212px;}
.ws72{word-spacing:-0.000959px;}
.wse1{word-spacing:-0.000505px;}
.wsce{word-spacing:-0.000359px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.001148px;}
.ws8c{word-spacing:0.001231px;}
.ws97{word-spacing:0.001331px;}
.wscb{word-spacing:0.001807px;}
.wscc{word-spacing:0.002246px;}
.wsd5{word-spacing:0.003900px;}
.ws10f{word-spacing:0.095641px;}
.ws102{word-spacing:0.382565px;}
.ws103{word-spacing:0.478206px;}
.wse6{word-spacing:0.956412px;}
.wsd2{word-spacing:1.147694px;}
.ws116{word-spacing:1.149811px;}
.wsf5{word-spacing:1.243336px;}
.ws8d{word-spacing:1.338977px;}
.ws15{word-spacing:1.530259px;}
.ws16{word-spacing:1.576982px;}
.wsba{word-spacing:1.684003px;}
.wsb9{word-spacing:1.721542px;}
.ws3e{word-spacing:2.104106px;}
.wsd9{word-spacing:2.199748px;}
.wsda{word-spacing:2.236500px;}
.ws3d{word-spacing:2.283409px;}
.ws3c{word-spacing:2.295389px;}
.ws1{word-spacing:2.356387px;}
.ws99{word-spacing:2.391030px;}
.wsc9{word-spacing:2.398003px;}
.wsf0{word-spacing:2.486671px;}
.wsbe{word-spacing:2.582312px;}
.wsbd{word-spacing:2.677954px;}
.wsdd{word-spacing:2.862511px;}
.wsdc{word-spacing:2.869236px;}
.wsde{word-spacing:2.964877px;}
.wsf2{word-spacing:3.156160px;}
.ws91{word-spacing:3.251801px;}
.ws42{word-spacing:3.443083px;}
.ws40{word-spacing:3.503927px;}
.ws41{word-spacing:3.509927px;}
.ws21{word-spacing:3.534820px;}
.ws20{word-spacing:3.538724px;}
.wsd8{word-spacing:3.550500px;}
.wsbf{word-spacing:3.634366px;}
.wsc3{word-spacing:3.811676px;}
.wsa3{word-spacing:3.825648px;}
.ws87{word-spacing:3.848700px;}
.ws80{word-spacing:3.849300px;}
.ws7e{word-spacing:3.854700px;}
.ws7c{word-spacing:3.855300px;}
.ws85{word-spacing:3.921289px;}
.ws84{word-spacing:3.927296px;}
.ws1c{word-spacing:4.016930px;}
.wsc4{word-spacing:4.112572px;}
.wsc5{word-spacing:4.134022px;}
.wsed{word-spacing:4.208213px;}
.wsee{word-spacing:4.303854px;}
.wsbb{word-spacing:4.399495px;}
.wsbc{word-spacing:4.422022px;}
.ws34{word-spacing:4.450188px;}
.ws33{word-spacing:4.495136px;}
.wsb2{word-spacing:4.590778px;}
.wsb{word-spacing:4.776956px;}
.ws8{word-spacing:4.778679px;}
.ws9{word-spacing:4.779988px;}
.ws9b{word-spacing:4.782060px;}
.ws9a{word-spacing:4.801148px;}
.wsa0{word-spacing:5.164625px;}
.wsa1{word-spacing:5.199241px;}
.ws88{word-spacing:5.236416px;}
.wsa2{word-spacing:5.260266px;}
.wsef{word-spacing:5.355907px;}
.wsc1{word-spacing:5.512003px;}
.wsaf{word-spacing:5.547190px;}
.wsae{word-spacing:5.595205px;}
.wsad{word-spacing:5.642831px;}
.ws7{word-spacing:5.738472px;}
.ws3f{word-spacing:5.834113px;}
.ws3{word-spacing:5.929754px;}
.ws2b{word-spacing:5.971072px;}
.ws2c{word-spacing:5.973482px;}
.ws26{word-spacing:5.974200px;}
.ws24{word-spacing:5.974800px;}
.wsd6{word-spacing:5.976154px;}
.wsd3{word-spacing:5.978407px;}
.wse5{word-spacing:5.979461px;}
.wse3{word-spacing:5.980061px;}
.ws25{word-spacing:5.980200px;}
.ws119{word-spacing:6.025396px;}
.ws3b{word-spacing:6.216678px;}
.wscf{word-spacing:6.407960px;}
.wsc7{word-spacing:6.599243px;}
.wsff{word-spacing:6.694884px;}
.wse9{word-spacing:6.790525px;}
.ws38{word-spacing:6.853158px;}
.ws37{word-spacing:6.886166px;}
.wsea{word-spacing:7.077449px;}
.ws100{word-spacing:7.173090px;}
.ws79{word-spacing:7.268731px;}
.ws78{word-spacing:7.287854px;}
.ws77{word-spacing:7.364372px;}
.ws118{word-spacing:7.460014px;}
.wsb0{word-spacing:7.555655px;}
.wsf1{word-spacing:7.651296px;}
.wse8{word-spacing:7.746937px;}
.ws70{word-spacing:7.818182px;}
.ws71{word-spacing:7.825148px;}
.ws6f{word-spacing:7.842578px;}
.wsdb{word-spacing:8.014500px;}
.ws81{word-spacing:8.033861px;}
.wsac{word-spacing:8.054345px;}
.wsaa{word-spacing:8.091205px;}
.wsab{word-spacing:8.091900px;}
.wsa9{word-spacing:8.129502px;}
.ws117{word-spacing:8.320784px;}
.wsf8{word-spacing:8.990273px;}
.wsf9{word-spacing:9.085914px;}
.ws27{word-spacing:9.372838px;}
.ws31{word-spacing:9.461035px;}
.ws32{word-spacing:9.468479px;}
.ws82{word-spacing:10.042326px;}
.ws4{word-spacing:10.378580px;}
.ws6{word-spacing:10.424891px;}
.wsfc{word-spacing:10.616173px;}
.wsfd{word-spacing:10.711814px;}
.wsb5{word-spacing:12.005930px;}
.wsb4{word-spacing:12.050791px;}
.ws2e{word-spacing:12.575250px;}
.ws7d{word-spacing:12.579750px;}
.ws7b{word-spacing:12.581250px;}
.ws126{word-spacing:12.720280px;}
.ws5{word-spacing:13.007203px;}
.wsf4{word-spacing:13.389768px;}
.wsfe{word-spacing:13.485409px;}
.wsc6{word-spacing:15.589516px;}
.ws11d{word-spacing:16.259004px;}
.ws11e{word-spacing:16.354645px;}
.ws75{word-spacing:17.134712px;}
.wsf6{word-spacing:17.597981px;}
.wsdf{word-spacing:18.101250px;}
.ws108{word-spacing:19.128240px;}
.ws11a{word-spacing:19.223881px;}
.ws11b{word-spacing:19.319522px;}
.ws124{word-spacing:20.084652px;}
.ws50{word-spacing:20.728906px;}
.ws86{word-spacing:21.106712px;}
.wsf7{word-spacing:21.997476px;}
.wsa{word-spacing:22.157212px;}
.wsc0{word-spacing:22.805250px;}
.ws12{word-spacing:23.910300px;}
.ws7a{word-spacing:24.460712px;}
.wsc8{word-spacing:24.797250px;}
.ws125{word-spacing:25.153636px;}
.ws121{word-spacing:27.257742px;}
.ws122{word-spacing:34.143908px;}
.ws11f{word-spacing:42.082128px;}
.ws4c{word-spacing:52.303200px;}
.ws120{word-spacing:52.602660px;}
.wsfa{word-spacing:55.854461px;}
.ws10b{word-spacing:56.523949px;}
.ws105{word-spacing:59.488826px;}
.ws106{word-spacing:59.584468px;}
.ws109{word-spacing:59.680109px;}
.ws52{word-spacing:61.986739px;}
.ws5f{word-spacing:61.993478px;}
.ws56{word-spacing:64.386691px;}
.ws66{word-spacing:64.392691px;}
.ws5b{word-spacing:64.393478px;}
.ws62{word-spacing:64.428739px;}
.ws59{word-spacing:64.434691px;}
.ws5d{word-spacing:64.438800px;}
.ws54{word-spacing:66.048739px;}
.ws6b{word-spacing:66.053923px;}
.ws60{word-spacing:66.876739px;}
.ws51{word-spacing:66.878122px;}
.ws65{word-spacing:68.487245px;}
.ws6e{word-spacing:68.490739px;}
.wsfb{word-spacing:69.818076px;}
.ws10c{word-spacing:70.678847px;}
.ws53{word-spacing:71.676739px;}
.wsd{word-spacing:71.730900px;}
.ws5e{word-spacing:74.118691px;}
.ws6c{word-spacing:74.118739px;}
.ws10a{word-spacing:74.695777px;}
.ws67{word-spacing:76.522800px;}
.ws68{word-spacing:76.564800px;}
.ws64{word-spacing:78.173923px;}
.ws5c{word-spacing:78.178800px;}
.ws58{word-spacing:78.962122px;}
.ws69{word-spacing:79.004122px;}
.ws55{word-spacing:79.006800px;}
.ws5a{word-spacing:80.577245px;}
.ws10d{word-spacing:85.790156px;}
.ws57{word-spacing:86.248800px;}
.ws63{word-spacing:86.249539px;}
.ws6d{word-spacing:88.694122px;}
.ws7f{word-spacing:90.111000px;}
.ws6a{word-spacing:91.049539px;}
.ws61{word-spacing:95.939539px;}
.ws4a{word-spacing:95.940000px;}
.ws14{word-spacing:103.293000px;}
.ws10e{word-spacing:107.213785px;}
.ws4e{word-spacing:117.756000px;}
.ws49{word-spacing:117.760800px;}
.ws48{word-spacing:139.576800px;}
.ws18{word-spacing:1820.243318px;}
.ws47{word-spacing:2766.016061px;}
.ws4d{word-spacing:2770.855430px;}
._1f{margin-left:-56.428308px;}
._14{margin-left:-49.542142px;}
._12{margin-left:-47.820600px;}
._d{margin-left:-31.068031px;}
._34{margin-left:-29.301600px;}
._13{margin-left:-23.910300px;}
._35{margin-left:-21.816000px;}
._4{margin-left:-17.852454px;}
._25{margin-left:-15.780798px;}
._16{margin-left:-13.485409px;}
._2c{margin-left:-10.766790px;}
._0{margin-left:-8.798990px;}
._e{margin-left:-7.747222px;}
._7{margin-left:-5.260266px;}
._3{margin-left:-3.570491px;}
._1{margin-left:-1.570925px;}
._1b{width:1.912824px;}
._6{width:3.634366px;}
._5{width:4.800048px;}
._18{width:6.407960px;}
._19{width:8.320784px;}
._1e{width:12.911562px;}
._48{width:18.039450px;}
._55{width:19.223428px;}
._56{width:20.471251px;}
._2b{width:21.928190px;}
._21{width:23.910300px;}
._28{width:25.475466px;}
._2{width:27.054816px;}
._27{width:28.964974px;}
._c{width:30.784723px;}
._24{width:31.889185px;}
._49{width:32.904635px;}
._9{width:34.239550px;}
._4e{width:35.295985px;}
._a{width:36.377201px;}
._51{width:37.428770px;}
._4a{width:38.844637px;}
._2a{width:39.977510px;}
._29{width:41.548946px;}
._4d{width:43.062280px;}
._4b{width:44.104340px;}
._1c{width:45.620852px;}
._8{width:47.519366px;}
._52{width:48.606620px;}
._2e{width:49.661335px;}
._5a{width:50.883780px;}
._17{width:52.602660px;}
._4c{width:54.812268px;}
._59{width:58.301414px;}
._b{width:60.732162px;}
._58{width:65.558172px;}
._1d{width:66.948840px;}
._57{width:76.667394px;}
._50{width:79.560637px;}
._15{width:81.773226px;}
._53{width:83.612608px;}
._3a{width:85.826263px;}
._22{width:87.743646px;}
._47{width:89.541727px;}
._46{width:90.837817px;}
._41{width:92.431066px;}
._4f{width:93.932144px;}
._10{width:95.641200px;}
._42{width:96.661428px;}
._3f{width:97.912942px;}
._44{width:98.968366px;}
._23{width:100.423260px;}
._39{width:102.442522px;}
._3d{width:103.775021px;}
._43{width:105.252317px;}
._3e{width:106.602835px;}
._3b{width:108.027878px;}
._36{width:109.069140px;}
._31{width:110.282400px;}
._38{width:112.046909px;}
._3c{width:113.694230px;}
._20{width:114.769440px;}
._40{width:115.870922px;}
._30{width:117.753600px;}
._37{width:120.157939px;}
._45{width:122.428795px;}
._54{width:130.161857px;}
._32{width:132.088800px;}
._2d{width:137.724000px;}
._2f{width:139.579200px;}
._33{width:161.395200px;}
._26{width:1877.896974px;}
._1a{width:2790.181393px;}
._11{width:2921.018555px;}
._f{width:4358.562988px;}
.fc2{color:rgb(141,134,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:60.573000px;}
.fs4{font-size:72.687000px;}
.fs9{font-size:75.739800px;}
.fs7{font-size:79.702200px;}
.fs1{font-size:87.273600px;}
.fs0{font-size:95.641200px;}
.fsa{font-size:99.658200px;}
.fs5{font-size:114.769200px;}
.fsb{font-size:119.589600px;}
.fs8{font-size:137.724000px;}
.fs3{font-size:165.268200px;}
.fs2{font-size:198.360600px;}
.y0{bottom:0.000000px;}
.y12{bottom:32.314500px;}
.y47{bottom:83.338500px;}
.y11{bottom:83.377500px;}
.yf8{bottom:97.377000px;}
.y10{bottom:103.303500px;}
.y19e{bottom:108.028500px;}
.y187{bottom:111.333000px;}
.y143{bottom:112.030500px;}
.y46{bottom:119.604000px;}
.yf{bottom:124.902000px;}
.yf7{bottom:126.069000px;}
.y105{bottom:131.283000px;}
.ya9{bottom:132.018000px;}
.y19d{bottom:136.720500px;}
.y186{bottom:140.026500px;}
.y10f{bottom:148.404000px;}
.ye{bottom:153.733500px;}
.y170{bottom:154.615500px;}
.yf6{bottom:154.762500px;}
.y45{bottom:155.869500px;}
.y142{bottom:159.354000px;}
.y157{bottom:160.171500px;}
.yf5{bottom:175.204500px;}
.y104{bottom:180.699000px;}
.y16f{bottom:183.309000px;}
.yf4{bottom:183.454500px;}
.ya8{bottom:183.691500px;}
.y19c{bottom:185.338500px;}
.y121{bottom:185.887500px;}
.yd0{bottom:188.634000px;}
.y185{bottom:188.643000px;}
.y156{bottom:188.863500px;}
.y44{bottom:192.135000px;}
.y10e{bottom:193.771500px;}
.y115{bottom:198.153000px;}
.y1b2{bottom:203.232000px;}
.y141{bottom:206.677500px;}
.y103{bottom:209.391000px;}
.yf3{bottom:212.146500px;}
.y19b{bottom:214.030500px;}
.ya7{bottom:214.059000px;}
.ycf{bottom:217.326000px;}
.y184{bottom:217.335000px;}
.y43{bottom:228.400500px;}
.y1b1{bottom:231.925500px;}
.y120{bottom:235.303500px;}
.y102{bottom:238.083000px;}
.ya6{bottom:240.838500px;}
.y12b{bottom:243.292500px;}
.yce{bottom:246.018000px;}
.y114{bottom:247.569000px;}
.y16e{bottom:248.599500px;}
.y155{bottom:253.678500px;}
.y140{bottom:254.001000px;}
.y101{bottom:258.526500px;}
.y10d{bottom:258.592500px;}
.y19a{bottom:262.647000px;}
.y11f{bottom:263.995500px;}
.y42{bottom:264.664500px;}
.y183{bottom:265.951500px;}
.y100{bottom:266.776500px;}
.ya5{bottom:267.618000px;}
.y113{bottom:276.261000px;}
.y1b0{bottom:280.542000px;}
.y13f{bottom:282.693000px;}
.yf2{bottom:286.206000px;}
.y199{bottom:291.339000px;}
.ycd{bottom:292.644000px;}
.y11e{bottom:292.687500px;}
.y12a{bottom:292.707000px;}
.ya4{bottom:294.397500px;}
.yff{bottom:295.468500px;}
.y41{bottom:300.930000px;}
.y10c{bottom:303.960000px;}
.y112{bottom:304.953000px;}
.y2b{bottom:305.206500px;}
.y1af{bottom:309.234000px;}
.y182{bottom:314.568000px;}
.y198{bottom:320.031000px;}
.ya3{bottom:321.177000px;}
.ycc{bottom:321.336000px;}
.y11d{bottom:321.379500px;}
.y129{bottom:321.400500px;}
.yfe{bottom:324.160500px;}
.y16d{bottom:327.129000px;}
.ybc{bottom:328.618500px;}
.y13e{bottom:330.016500px;}
.y154{bottom:331.198500px;}
.yd4{bottom:333.283500px;}
.y111{bottom:333.646500px;}
.y40{bottom:337.195500px;}
.y181{bottom:343.261500px;}
.yb8{bottom:344.835000px;}
.ya2{bottom:347.956500px;}
.ycb{bottom:350.028000px;}
.y11c{bottom:350.073000px;}
.y128{bottom:350.092500px;}
.y16c{bottom:355.821000px;}
.y2a{bottom:357.810000px;}
.y1ae{bottom:357.850500px;}
.y13d{bottom:358.708500px;}
.y153{bottom:359.890500px;}
.y66{bottom:360.784500px;}
.y58{bottom:360.789000px;}
.y197{bottom:368.649000px;}
.yfd{bottom:369.528000px;}
.ybb{bottom:372.552000px;}
.yb2{bottom:373.269000px;}
.y3f{bottom:373.461000px;}
.yb7{bottom:373.527000px;}
.y10b{bottom:374.520000px;}
.ya1{bottom:374.736000px;}
.y6c{bottom:375.607500px;}
.y5a{bottom:376.714500px;}
.y68{bottom:376.720500px;}
.yd7{bottom:378.664500px;}
.y110{bottom:379.012500px;}
.y29{bottom:386.502000px;}
.y1ad{bottom:386.542500px;}
.y180{bottom:391.878000px;}
.yda{bottom:392.455500px;}
.y11b{bottom:395.439000px;}
.y127{bottom:395.460000px;}
.yca{bottom:396.652500px;}
.y196{bottom:397.341000px;}
.ya0{bottom:401.515500px;}
.ye1{bottom:402.357000px;}
.y74{bottom:404.295000px;}
.y64{bottom:404.314500px;}
.y16b{bottom:404.437500px;}
.y59{bottom:405.406500px;}
.y71{bottom:405.408000px;}
.y67{bottom:405.412500px;}
.y65{bottom:405.418500px;}
.y57{bottom:405.423000px;}
.y152{bottom:408.030000px;}
.y3e{bottom:409.726500px;}
.y6f{bottom:411.261000px;}
.y28{bottom:415.194000px;}
.yb1{bottom:417.202500px;}
.yb6{bottom:417.460500px;}
.ye9{bottom:419.020500px;}
.yeb{bottom:419.025000px;}
.y10a{bottom:419.152500px;}
.y6b{bottom:420.241500px;}
.y17f{bottom:420.570000px;}
.yd9{bottom:421.147500px;}
.yba{bottom:421.168500px;}
.y13c{bottom:422.707500px;}
.yc9{bottom:425.346000px;}
.y9f{bottom:428.295000px;}
.yf0{bottom:429.288000px;}
.y16a{bottom:433.131000px;}
.y126{bottom:434.475000px;}
.y11a{bottom:434.479500px;}
.y1ac{bottom:435.160500px;}
.y151{bottom:436.723500px;}
.y27{bottom:443.886000px;}
.y195{bottom:445.957500px;}
.y3d{bottom:445.992000px;}
.ye8{bottom:447.712500px;}
.yea{bottom:447.718500px;}
.y109{bottom:447.846000px;}
.y5f{bottom:448.915500px;}
.y6e{bottom:448.920000px;}
.y73{bottom:448.927500px;}
.y61{bottom:448.929000px;}
.y6a{bottom:448.933500px;}
.y5d{bottom:448.939500px;}
.y63{bottom:448.948500px;}
.y9e{bottom:455.074500px;}
.y1ab{bottom:463.852500px;}
.yef{bottom:466.945500px;}
.ye6{bottom:466.953000px;}
.yb5{bottom:467.908500px;}
.yb0{bottom:467.923500px;}
.y17e{bottom:469.186500px;}
.y26{bottom:472.578000px;}
.y194{bottom:474.649500px;}
.y108{bottom:476.538000px;}
.y5e{bottom:477.607500px;}
.y6d{bottom:477.612000px;}
.y72{bottom:477.621000px;}
.y60{bottom:477.622500px;}
.y69{bottom:477.625500px;}
.y5c{bottom:477.631500px;}
.y70{bottom:477.636000px;}
.y62{bottom:477.640500px;}
.y125{bottom:479.842500px;}
.y119{bottom:479.847000px;}
.ydf{bottom:480.378000px;}
.y87{bottom:480.739500px;}
.y169{bottom:481.747500px;}
.y9d{bottom:481.855500px;}
.y3c{bottom:482.257500px;}
.y150{bottom:484.863000px;}
.yee{bottom:495.639000px;}
.ye5{bottom:495.645000px;}
.y17d{bottom:497.878500px;}
.y13b{bottom:498.499500px;}
.y12f{bottom:500.077500px;}
.y25{bottom:501.271500px;}
.y9c{bottom:508.635000px;}
.y168{bottom:510.439500px;}
.y86{bottom:511.105500px;}
.y1aa{bottom:512.469000px;}
.y14f{bottom:513.555000px;}
.y3b{bottom:518.523000px;}
.yd8{bottom:520.180500px;}
.yfa{bottom:521.170500px;}
.yfc{bottom:521.173500px;}
.y193{bottom:523.266000px;}
.y24{bottom:529.963500px;}
.yde{bottom:533.977500px;}
.ydc{bottom:533.982000px;}
.y9b{bottom:535.414500px;}
.y85{bottom:537.885000px;}
.yed{bottom:540.271500px;}
.yec{bottom:540.277500px;}
.ye4{bottom:540.279000px;}
.ye2{bottom:540.294000px;}
.ye3{bottom:540.295500px;}
.y1a9{bottom:541.161000px;}
.y124{bottom:544.663500px;}
.y118{bottom:544.668000px;}
.y12e{bottom:544.710000px;}
.y13a{bottom:545.823000px;}
.yf9{bottom:549.864000px;}
.yfb{bottom:549.865500px;}
.y192{bottom:551.959500px;}
.y3a{bottom:554.788500px;}
.y54{bottom:555.649500px;}
.y23{bottom:558.655500px;}
.y167{bottom:559.056000px;}
.y14e{bottom:561.694500px;}
.y9a{bottom:562.194000px;}
.yd5{bottom:562.653000px;}
.ydd{bottom:562.669500px;}
.ydb{bottom:562.674000px;}
.y107{bottom:562.728000px;}
.y17c{bottom:563.170500px;}
.y84{bottom:564.664500px;}
.yc8{bottom:566.928000px;}
.yd{bottom:568.326000px;}
.y53{bottom:584.343000px;}
.y22{bottom:587.347500px;}
.y166{bottom:587.748000px;}
.y123{bottom:589.294500px;}
.y117{bottom:589.299000px;}
.y12d{bottom:589.341000px;}
.y1a8{bottom:589.777500px;}
.y14d{bottom:590.388000px;}
.y39{bottom:591.052500px;}
.y106{bottom:591.420000px;}
.y83{bottom:591.445500px;}
.y139{bottom:593.146500px;}
.yc{bottom:597.018000px;}
.y191{bottom:600.576000px;}
.yc7{bottom:612.295500px;}
.y99{bottom:613.522500px;}
.y21{bottom:616.041000px;}
.y82{bottom:618.225000px;}
.y1a7{bottom:618.471000px;}
.yc0{bottom:618.636000px;}
.yb{bottom:625.710000px;}
.y190{bottom:629.268000px;}
.y122{bottom:633.928500px;}
.y116{bottom:633.931500px;}
.y12c{bottom:633.975000px;}
.y165{bottom:636.366000px;}
.y14c{bottom:638.527500px;}
.y38{bottom:639.430500px;}
.y138{bottom:640.470000px;}
.y17b{bottom:641.700000px;}
.y20{bottom:644.733000px;}
.y81{bottom:645.004500px;}
.y52{bottom:649.234500px;}
.ya{bottom:654.402000px;}
.y98{bottom:658.155000px;}
.y164{bottom:665.058000px;}
.ybf{bottom:665.260500px;}
.y51{bottom:665.637000px;}
.y1a6{bottom:667.087500px;}
.y14b{bottom:667.219500px;}
.y37{bottom:668.124000px;}
.y17a{bottom:670.392000px;}
.y80{bottom:671.784000px;}
.y1f{bottom:673.425000px;}
.yc6{bottom:677.116500px;}
.y18f{bottom:677.884500px;}
.y137{bottom:687.792000px;}
.ybe{bottom:693.952500px;}
.y1a5{bottom:695.779500px;}
.y36{bottom:696.816000px;}
.y7f{bottom:698.563500px;}
.y1e{bottom:702.117000px;}
.y9{bottom:703.818000px;}
.yc5{bottom:705.808500px;}
.y18e{bottom:706.576500px;}
.y97{bottom:711.109500px;}
.y163{bottom:713.674500px;}
.y179{bottom:719.008500px;}
.y7e{bottom:725.343000px;}
.y35{bottom:725.508000px;}
.y1d{bottom:730.809000px;}
.y50{bottom:731.076000px;}
.y14a{bottom:732.034500px;}
.y1b3{bottom:738.933000px;}
.y96{bottom:741.475500px;}
.y162{bottom:742.366500px;}
.ybd{bottom:743.368500px;}
.y1a4{bottom:744.396000px;}
.y136{bottom:744.777000px;}
.y178{bottom:747.702000px;}
.y7d{bottom:752.122500px;}
.y95{bottom:768.255000px;}
.y34{bottom:771.535500px;}
.y18d{bottom:771.868500px;}
.y1a3{bottom:773.088000px;}
.y7c{bottom:778.902000px;}
.y1c{bottom:783.412500px;}
.y4f{bottom:787.951500px;}
.y161{bottom:790.983000px;}
.y94{bottom:795.034500px;}
.y177{bottom:796.318500px;}
.y8{bottom:797.628000px;}
.y33{bottom:800.227500px;}
.y7b{bottom:805.681500px;}
.y149{bottom:809.554500px;}
.y1b{bottom:812.104500px;}
.y160{bottom:819.676500px;}
.y1a2{bottom:821.706000px;}
.y93{bottom:821.814000px;}
.y135{bottom:823.558500px;}
.y176{bottom:825.010500px;}
.y32{bottom:828.919500px;}
.y7a{bottom:832.461000px;}
.y148{bottom:838.246500px;}
.y1a{bottom:840.796500px;}
.yc4{bottom:847.392000px;}
.y92{bottom:848.593500px;}
.y18c{bottom:850.398000px;}
.y31{bottom:857.611500px;}
.y134{bottom:857.635500px;}
.y79{bottom:859.240500px;}
.y4e{bottom:868.177500px;}
.y15f{bottom:868.293000px;}
.y19{bottom:869.490000px;}
.y175{bottom:873.627000px;}
.y91{bottom:875.374500px;}
.y18b{bottom:879.090000px;}
.y147{bottom:886.387500px;}
.y78{bottom:889.665000px;}
.yc3{bottom:892.759500px;}
.y15e{bottom:896.985000px;}
.y18{bottom:898.182000px;}
.y1a1{bottom:899.014500px;}
.y133{bottom:899.679000px;}
.y90{bottom:902.154000px;}
.y174{bottom:902.319000px;}
.y4d{bottom:904.842000px;}
.y146{bottom:915.079500px;}
.y30{bottom:922.503000px;}
.y17{bottom:926.874000px;}
.y18a{bottom:927.706500px;}
.y8f{bottom:928.933500px;}
.y7{bottom:929.965500px;}
.yad{bottom:937.981500px;}
.y2f{bottom:938.905500px;}
.y132{bottom:941.724000px;}
.yd3{bottom:942.261000px;}
.y15d{bottom:945.601500px;}
.y77{bottom:945.916500px;}
.y4c{bottom:949.474500px;}
.y173{bottom:950.935500px;}
.y16{bottom:955.566000px;}
.y8e{bottom:955.713000px;}
.y189{bottom:956.398500px;}
.yc2{bottom:957.580500px;}
.y6{bottom:958.657500px;}
.y15c{bottom:974.293500px;}
.y131{bottom:975.801000px;}
.y172{bottom:979.629000px;}
.y145{bottom:979.894500px;}
.y8d{bottom:982.492500px;}
.yac{bottom:983.349000px;}
.y15{bottom:984.258000px;}
.yc1{bottom:986.272500px;}
.yd6{bottom:987.628500px;}
.ye0{bottom:990.879000px;}
.y1a0{bottom:992.998500px;}
.y4b{bottom:996.100500px;}
.y2e{bottom:1003.147500px;}
.yd2{bottom:1006.819500px;}
.y76{bottom:1008.483000px;}
.y8c{bottom:1009.272000px;}
.y130{bottom:1017.844500px;}
.y188{bottom:1021.690500px;}
.y15b{bottom:1022.911500px;}
.y4a{bottom:1024.792500px;}
.y171{bottom:1028.245500px;}
.y2d{bottom:1031.839500px;}
.yd1{bottom:1035.511500px;}
.y8b{bottom:1036.051500px;}
.ye7{bottom:1036.245000px;}
.y14{bottom:1036.861500px;}
.yf1{bottom:1037.370000px;}
.yab{bottom:1048.170000px;}
.y5{bottom:1048.429500px;}
.y15a{bottom:1051.603500px;}
.yb9{bottom:1052.187000px;}
.y75{bottom:1053.849000px;}
.y56{bottom:1056.937500px;}
.y144{bottom:1057.414500px;}
.y2c{bottom:1060.533000px;}
.y8a{bottom:1062.831000px;}
.y19f{bottom:1071.528000px;}
.yaa{bottom:1076.862000px;}
.yb4{bottom:1080.879000px;}
.y89{bottom:1089.610500px;}
.y49{bottom:1092.141000px;}
.yaf{bottom:1098.940500px;}
.y159{bottom:1100.220000px;}
.y4{bottom:1110.700500px;}
.y13{bottom:1117.408500px;}
.y88{bottom:1119.976500px;}
.y55{bottom:1122.229500px;}
.yb3{bottom:1126.246500px;}
.yae{bottom:1127.632500px;}
.y48{bottom:1128.804000px;}
.y158{bottom:1128.912000px;}
.y5b{bottom:1129.152000px;}
.y2{bottom:1196.023500px;}
.y3{bottom:1219.663500px;}
.y1{bottom:1219.933500px;}
.ha{height:44.097144px;}
.hb{height:58.501415px;}
.h6{height:63.360634px;}
.h4{height:63.535181px;}
.h3{height:64.058822px;}
.hd{height:69.148588px;}
.h2{height:69.626794px;}
.h9{height:70.200641px;}
.h12{height:74.743650px;}
.h8{height:82.978132px;}
.h14{height:87.268701px;}
.h16{height:87.486762px;}
.h1b{height:87.632136px;}
.he{height:87.638136px;}
.h17{height:88.068258px;}
.h18{height:89.692200px;}
.h19{height:90.596136px;}
.h15{height:92.414136px;}
.h13{height:92.420136px;}
.hc{height:99.574452px;}
.h1a{height:107.743650px;}
.h7{height:119.488909px;}
.h10{height:140.353650px;}
.h5{height:143.414714px;}
.h11{height:152.378136px;}
.hf{height:152.384136px;}
.h1{height:1317.750000px;}
.h0{height:1318.110000px;}
.w1{width:1488.000000px;}
.w0{width:1488.189000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2c{left:115.317000px;}
.x2e{left:119.955000px;}
.x2d{left:123.399000px;}
.x11{left:130.416000px;}
.xb{left:135.547500px;}
.x13{left:140.877000px;}
.xd{left:143.865000px;}
.xa{left:145.360500px;}
.x14{left:147.883500px;}
.x12{left:152.832000px;}
.x2f{left:155.665500px;}
.xe{left:198.859500px;}
.x1f{left:228.384000px;}
.x1e{left:230.805000px;}
.x1c{left:232.027500px;}
.x1d{left:233.838000px;}
.x2b{left:282.798000px;}
.x1a{left:368.832000px;}
.x19{left:374.287500px;}
.x17{left:377.319000px;}
.x1b{left:378.531000px;}
.x18{left:379.741500px;}
.x4{left:394.500000px;}
.x26{left:406.656000px;}
.x5{left:433.131000px;}
.x28{left:470.359500px;}
.x27{left:473.647500px;}
.x20{left:480.529500px;}
.x2a{left:521.293500px;}
.x15{left:573.582000px;}
.xf{left:597.220500px;}
.x8{left:603.727500px;}
.x9{left:690.822000px;}
.x2{left:732.973500px;}
.x3{left:737.139000px;}
.xc{left:739.818000px;}
.x10{left:747.556500px;}
.x16{left:749.164500px;}
.x24{left:779.868000px;}
.x22{left:782.289000px;}
.x21{left:783.511500px;}
.x23{left:785.322000px;}
.x29{left:803.733000px;}
.x6{left:829.062000px;}
.x7{left:1022.893500px;}
.x25{left:1033.224000px;}
@media print{
.v2{vertical-align:-25.717333pt;}
.v5{vertical-align:-15.856000pt;}
.va{vertical-align:-14.885333pt;}
.v3{vertical-align:-12.752000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:29.333333pt;}
.v1{vertical-align:30.858667pt;}
.v8{vertical-align:33.493333pt;}
.v6{vertical-align:35.114667pt;}
.v4{vertical-align:57.557333pt;}
.v7{vertical-align:68.901333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7d{letter-spacing:0.004800pt;}
.ls6b{letter-spacing:0.173409pt;}
.ls87{letter-spacing:0.205335pt;}
.ls70{letter-spacing:0.209327pt;}
.ls83{letter-spacing:0.210669pt;}
.ls68{letter-spacing:0.212630pt;}
.ls46{letter-spacing:0.212953pt;}
.ls66{letter-spacing:0.214230pt;}
.ls18{letter-spacing:0.214660pt;}
.ls4e{letter-spacing:0.218765pt;}
.ls7f{letter-spacing:0.221676pt;}
.ls49{letter-spacing:0.236751pt;}
.ls4a{letter-spacing:0.236822pt;}
.ls43{letter-spacing:0.237829pt;}
.ls51{letter-spacing:0.239283pt;}
.ls56{letter-spacing:0.242135pt;}
.ls3e{letter-spacing:0.247220pt;}
.ls42{letter-spacing:0.247487pt;}
.ls61{letter-spacing:0.251004pt;}
.ls40{letter-spacing:0.252554pt;}
.ls6e{letter-spacing:0.253090pt;}
.ls88{letter-spacing:0.253954pt;}
.ls19{letter-spacing:0.776519pt;}
.ls62{letter-spacing:0.804000pt;}
.ls6f{letter-spacing:0.809333pt;}
.lse{letter-spacing:0.957268pt;}
.ls6{letter-spacing:1.019994pt;}
.ls7e{letter-spacing:1.020173pt;}
.ls32{letter-spacing:1.045534pt;}
.ls27{letter-spacing:1.060800pt;}
.ls2a{letter-spacing:1.062133pt;}
.ls4{letter-spacing:1.062660pt;}
.ls28{letter-spacing:1.064202pt;}
.ls64{letter-spacing:1.105187pt;}
.ls53{letter-spacing:1.449333pt;}
.ls4f{letter-spacing:1.454667pt;}
.ls8{letter-spacing:1.587185pt;}
.ls7{letter-spacing:1.612469pt;}
.ls58{letter-spacing:1.902667pt;}
.ls52{letter-spacing:1.908000pt;}
.ls2e{letter-spacing:2.122400pt;}
.ls35{letter-spacing:2.125360pt;}
.ls8e{letter-spacing:2.126333pt;}
.lsa{letter-spacing:2.127733pt;}
.ls31{letter-spacing:2.654667pt;}
.ls0{letter-spacing:2.657333pt;}
.ls2b{letter-spacing:2.660000pt;}
.ls90{letter-spacing:3.293268pt;}
.ls8b{letter-spacing:3.298601pt;}
.ls1c{letter-spacing:3.716000pt;}
.ls10{letter-spacing:3.721333pt;}
.ls25{letter-spacing:6.274601pt;}
.ls2d{letter-spacing:6.418868pt;}
.ls63{letter-spacing:15.231467pt;}
.ls12{letter-spacing:15.231733pt;}
.ls60{letter-spacing:15.807868pt;}
.ls5f{letter-spacing:15.850133pt;}
.ls5d{letter-spacing:16.751868pt;}
.ls5c{letter-spacing:16.788800pt;}
.ls1b{letter-spacing:17.551868pt;}
.lsf{letter-spacing:17.594133pt;}
.ls74{letter-spacing:18.287868pt;}
.ls20{letter-spacing:18.309202pt;}
.ls73{letter-spacing:18.330133pt;}
.ls1f{letter-spacing:18.351467pt;}
.ls7c{letter-spacing:18.426535pt;}
.ls7a{letter-spacing:18.431868pt;}
.ls79{letter-spacing:18.468800pt;}
.ls8d{letter-spacing:18.581202pt;}
.lsd{letter-spacing:18.613202pt;}
.ls34{letter-spacing:18.618535pt;}
.ls8c{letter-spacing:18.621606pt;}
.ls95{letter-spacing:18.653606pt;}
.ls26{letter-spacing:18.656937pt;}
.lsc{letter-spacing:18.657327pt;}
.ls91{letter-spacing:18.658940pt;}
.ls72{letter-spacing:18.725202pt;}
.ls71{letter-spacing:18.762133pt;}
.ls22{letter-spacing:19.471868pt;}
.ls21{letter-spacing:19.508800pt;}
.ls5b{letter-spacing:19.663868pt;}
.ls5a{letter-spacing:19.706133pt;}
.ls15{letter-spacing:19.818400pt;}
.ls55{letter-spacing:19.978535pt;}
.ls4d{letter-spacing:20.074535pt;}
.ls76{letter-spacing:20.191868pt;}
.ls75{letter-spacing:20.228800pt;}
.ls77{letter-spacing:20.234133pt;}
.ls5e{letter-spacing:20.383467pt;}
.ls93{letter-spacing:20.581202pt;}
.ls92{letter-spacing:20.626940pt;}
.ls33{letter-spacing:21.054667pt;}
.ls8f{letter-spacing:21.226400pt;}
.ls69{letter-spacing:21.252338pt;}
.ls1e{letter-spacing:21.252800pt;}
.ls17{letter-spacing:21.253067pt;}
.ls16{letter-spacing:21.258400pt;}
.ls3a{letter-spacing:22.129803pt;}
.ls65{letter-spacing:22.273773pt;}
.ls3{letter-spacing:22.315994pt;}
.ls67{letter-spacing:22.358787pt;}
.ls7b{letter-spacing:23.615467pt;}
.ls3d{letter-spacing:23.903733pt;}
.ls5{letter-spacing:23.908000pt;}
.ls14{letter-spacing:24.634535pt;}
.ls2f{letter-spacing:24.639868pt;}
.ls39{letter-spacing:24.678133pt;}
.ls38{letter-spacing:24.718667pt;}
.ls54{letter-spacing:25.332000pt;}
.ls3b{letter-spacing:25.366197pt;}
.ls4c{letter-spacing:25.422667pt;}
.ls85{letter-spacing:25.589334pt;}
.ls3f{letter-spacing:25.634601pt;}
.ls41{letter-spacing:25.639934pt;}
.ls82{letter-spacing:25.674349pt;}
.ls37{letter-spacing:25.701202pt;}
.ls13{letter-spacing:25.739994pt;}
.ls6c{letter-spacing:25.780757pt;}
.ls23{letter-spacing:26.431467pt;}
.ls89{letter-spacing:26.566607pt;}
.ls59{letter-spacing:27.332000pt;}
.ls30{letter-spacing:27.337333pt;}
.ls6d{letter-spacing:27.374637pt;}
.ls6a{letter-spacing:27.459651pt;}
.ls94{letter-spacing:27.898400pt;}
.ls36{letter-spacing:28.137333pt;}
.ls9{letter-spacing:28.140469pt;}
.ls78{letter-spacing:28.378133pt;}
.ls84{letter-spacing:29.541202pt;}
.ls81{letter-spacing:29.546535pt;}
.ls8a{letter-spacing:29.601067pt;}
.ls29{letter-spacing:29.951733pt;}
.ls1a{letter-spacing:31.013202pt;}
.lsb{letter-spacing:32.074535pt;}
.ls86{letter-spacing:32.238667pt;}
.ls80{letter-spacing:32.244000pt;}
.ls50{letter-spacing:33.727868pt;}
.ls48{letter-spacing:33.850535pt;}
.ls47{letter-spacing:34.850601pt;}
.ls57{letter-spacing:35.498535pt;}
.ls45{letter-spacing:37.957202pt;}
.ls44{letter-spacing:38.957268pt;}
.ls2{letter-spacing:42.507200pt;}
.ls3c{letter-spacing:45.926133pt;}
.ls4b{letter-spacing:55.110400pt;}
.ls2c{letter-spacing:101.349067pt;}
.ls24{letter-spacing:143.462400pt;}
.ls11{letter-spacing:213.770133pt;}
.ls1d{letter-spacing:274.068800pt;}
.ws4b{word-spacing:-162.856533pt;}
.ws11{word-spacing:-50.413539pt;}
.ws10{word-spacing:-41.061955pt;}
.ws13{word-spacing:-40.551869pt;}
.wsf{word-spacing:-34.090774pt;}
.ws83{word-spacing:-23.378960pt;}
.ws1d{word-spacing:-21.253600pt;}
.ws2{word-spacing:-19.394133pt;}
.wsc{word-spacing:-17.711600pt;}
.wse{word-spacing:-17.002880pt;}
.ws2d{word-spacing:-16.152667pt;}
.wsa7{word-spacing:-7.141210pt;}
.ws76{word-spacing:-7.056195pt;}
.wsd4{word-spacing:-6.023467pt;}
.wsd7{word-spacing:-6.018133pt;}
.ws111{word-spacing:-4.760806pt;}
.ws112{word-spacing:-4.675792pt;}
.ws19{word-spacing:-3.910662pt;}
.ws1a{word-spacing:-3.907786pt;}
.ws1b{word-spacing:-3.904905pt;}
.ws113{word-spacing:-3.740634pt;}
.ws4f{word-spacing:-3.671847pt;}
.ws2f{word-spacing:-3.660000pt;}
.ws114{word-spacing:-3.570605pt;}
.ws11c{word-spacing:-3.400576pt;}
.ws110{word-spacing:-3.315562pt;}
.wsb7{word-spacing:-3.230547pt;}
.wsb8{word-spacing:-3.191108pt;}
.ws23{word-spacing:-2.720461pt;}
.wsa8{word-spacing:-2.550432pt;}
.ws123{word-spacing:-2.380403pt;}
.ws9f{word-spacing:-2.215750pt;}
.ws9c{word-spacing:-2.210374pt;}
.ws9d{word-spacing:-2.208111pt;}
.ws9e{word-spacing:-2.206979pt;}
.wsd1{word-spacing:-1.870317pt;}
.ws1f{word-spacing:-1.796390pt;}
.ws1e{word-spacing:-1.785302pt;}
.ws8b{word-spacing:-1.548580pt;}
.ws8a{word-spacing:-1.544149pt;}
.ws89{word-spacing:-1.530259pt;}
.wseb{word-spacing:-1.445245pt;}
.wsec{word-spacing:-1.105187pt;}
.ws104{word-spacing:-0.935158pt;}
.wsd0{word-spacing:-0.850144pt;}
.ws22{word-spacing:-0.765130pt;}
.ws115{word-spacing:-0.680115pt;}
.ws30{word-spacing:-0.595101pt;}
.ws17{word-spacing:-0.425072pt;}
.wsf3{word-spacing:-0.255043pt;}
.wsb3{word-spacing:-0.170029pt;}
.ws95{word-spacing:-0.107174pt;}
.ws46{word-spacing:-0.085014pt;}
.wse0{word-spacing:-0.042999pt;}
.ws44{word-spacing:-0.007668pt;}
.ws35{word-spacing:-0.007618pt;}
.wscd{word-spacing:-0.007257pt;}
.ws28{word-spacing:-0.006192pt;}
.ws39{word-spacing:-0.005934pt;}
.ws8f{word-spacing:-0.005932pt;}
.ws2a{word-spacing:-0.005782pt;}
.ws73{word-spacing:-0.005451pt;}
.ws90{word-spacing:-0.005444pt;}
.ws74{word-spacing:-0.005132pt;}
.wse2{word-spacing:-0.004313pt;}
.wse4{word-spacing:-0.004288pt;}
.ws98{word-spacing:-0.003994pt;}
.ws92{word-spacing:-0.003922pt;}
.wsa6{word-spacing:-0.003692pt;}
.ws43{word-spacing:-0.003417pt;}
.wse7{word-spacing:-0.003129pt;}
.ws8e{word-spacing:-0.002992pt;}
.ws96{word-spacing:-0.002914pt;}
.ws36{word-spacing:-0.002836pt;}
.ws94{word-spacing:-0.002713pt;}
.ws107{word-spacing:-0.002667pt;}
.ws101{word-spacing:-0.002595pt;}
.wsa4{word-spacing:-0.002484pt;}
.ws93{word-spacing:-0.002417pt;}
.ws45{word-spacing:-0.002062pt;}
.wsa5{word-spacing:-0.001867pt;}
.wsb6{word-spacing:-0.001858pt;}
.wsca{word-spacing:-0.001795pt;}
.wsc2{word-spacing:-0.001775pt;}
.wsb1{word-spacing:-0.001522pt;}
.ws3a{word-spacing:-0.001077pt;}
.ws72{word-spacing:-0.000852pt;}
.wse1{word-spacing:-0.000449pt;}
.wsce{word-spacing:-0.000319pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.001021pt;}
.ws8c{word-spacing:0.001094pt;}
.ws97{word-spacing:0.001183pt;}
.wscb{word-spacing:0.001606pt;}
.wscc{word-spacing:0.001997pt;}
.wsd5{word-spacing:0.003467pt;}
.ws10f{word-spacing:0.085014pt;}
.ws102{word-spacing:0.340058pt;}
.ws103{word-spacing:0.425072pt;}
.wse6{word-spacing:0.850144pt;}
.wsd2{word-spacing:1.020173pt;}
.ws116{word-spacing:1.022054pt;}
.wsf5{word-spacing:1.105187pt;}
.ws8d{word-spacing:1.190202pt;}
.ws15{word-spacing:1.360230pt;}
.ws16{word-spacing:1.401762pt;}
.wsba{word-spacing:1.496892pt;}
.wsb9{word-spacing:1.530259pt;}
.ws3e{word-spacing:1.870317pt;}
.wsd9{word-spacing:1.955331pt;}
.wsda{word-spacing:1.988000pt;}
.ws3d{word-spacing:2.029697pt;}
.ws3c{word-spacing:2.040346pt;}
.ws1{word-spacing:2.094566pt;}
.ws99{word-spacing:2.125360pt;}
.wsc9{word-spacing:2.131558pt;}
.wsf0{word-spacing:2.210374pt;}
.wsbe{word-spacing:2.295389pt;}
.wsbd{word-spacing:2.380403pt;}
.wsdd{word-spacing:2.544454pt;}
.wsdc{word-spacing:2.550432pt;}
.wsde{word-spacing:2.635446pt;}
.wsf2{word-spacing:2.805475pt;}
.ws91{word-spacing:2.890490pt;}
.ws42{word-spacing:3.060518pt;}
.ws40{word-spacing:3.114602pt;}
.ws41{word-spacing:3.119935pt;}
.ws21{word-spacing:3.142062pt;}
.ws20{word-spacing:3.145533pt;}
.wsd8{word-spacing:3.156000pt;}
.wsbf{word-spacing:3.230547pt;}
.wsc3{word-spacing:3.388157pt;}
.wsa3{word-spacing:3.400576pt;}
.ws87{word-spacing:3.421067pt;}
.ws80{word-spacing:3.421600pt;}
.ws7e{word-spacing:3.426400pt;}
.ws7c{word-spacing:3.426933pt;}
.ws85{word-spacing:3.485590pt;}
.ws84{word-spacing:3.490930pt;}
.ws1c{word-spacing:3.570605pt;}
.wsc4{word-spacing:3.655619pt;}
.wsc5{word-spacing:3.674686pt;}
.wsed{word-spacing:3.740634pt;}
.wsee{word-spacing:3.825648pt;}
.wsbb{word-spacing:3.910662pt;}
.wsbc{word-spacing:3.930686pt;}
.ws34{word-spacing:3.955723pt;}
.ws33{word-spacing:3.995677pt;}
.wsb2{word-spacing:4.080691pt;}
.wsb{word-spacing:4.246183pt;}
.ws8{word-spacing:4.247715pt;}
.ws9{word-spacing:4.248878pt;}
.ws9b{word-spacing:4.250720pt;}
.ws9a{word-spacing:4.267687pt;}
.wsa0{word-spacing:4.590778pt;}
.wsa1{word-spacing:4.621548pt;}
.ws88{word-spacing:4.654592pt;}
.wsa2{word-spacing:4.675792pt;}
.wsef{word-spacing:4.760806pt;}
.wsc1{word-spacing:4.899558pt;}
.wsaf{word-spacing:4.930835pt;}
.wsae{word-spacing:4.973516pt;}
.wsad{word-spacing:5.015850pt;}
.ws7{word-spacing:5.100864pt;}
.ws3f{word-spacing:5.185878pt;}
.ws3{word-spacing:5.270893pt;}
.ws2b{word-spacing:5.307619pt;}
.ws2c{word-spacing:5.309762pt;}
.ws26{word-spacing:5.310400pt;}
.ws24{word-spacing:5.310933pt;}
.wsd6{word-spacing:5.312137pt;}
.wsd3{word-spacing:5.314140pt;}
.wse5{word-spacing:5.315076pt;}
.wse3{word-spacing:5.315610pt;}
.ws25{word-spacing:5.315733pt;}
.ws119{word-spacing:5.355907pt;}
.ws3b{word-spacing:5.525936pt;}
.wscf{word-spacing:5.695965pt;}
.wsc7{word-spacing:5.865994pt;}
.wsff{word-spacing:5.951008pt;}
.wse9{word-spacing:6.036022pt;}
.ws38{word-spacing:6.091696pt;}
.ws37{word-spacing:6.121037pt;}
.wsea{word-spacing:6.291066pt;}
.ws100{word-spacing:6.376080pt;}
.ws79{word-spacing:6.461094pt;}
.ws78{word-spacing:6.478093pt;}
.ws77{word-spacing:6.546109pt;}
.ws118{word-spacing:6.631123pt;}
.wsb0{word-spacing:6.716138pt;}
.wsf1{word-spacing:6.801152pt;}
.wse8{word-spacing:6.886166pt;}
.ws70{word-spacing:6.949495pt;}
.ws71{word-spacing:6.955687pt;}
.ws6f{word-spacing:6.971181pt;}
.wsdb{word-spacing:7.124000pt;}
.ws81{word-spacing:7.141210pt;}
.wsac{word-spacing:7.159418pt;}
.wsaa{word-spacing:7.192182pt;}
.wsab{word-spacing:7.192800pt;}
.wsa9{word-spacing:7.226224pt;}
.ws117{word-spacing:7.396253pt;}
.wsf8{word-spacing:7.991354pt;}
.wsf9{word-spacing:8.076368pt;}
.ws27{word-spacing:8.331411pt;}
.ws31{word-spacing:8.409809pt;}
.ws32{word-spacing:8.416426pt;}
.ws82{word-spacing:8.926512pt;}
.ws4{word-spacing:9.225405pt;}
.ws6{word-spacing:9.266570pt;}
.wsfc{word-spacing:9.436598pt;}
.wsfd{word-spacing:9.521613pt;}
.wsb5{word-spacing:10.671938pt;}
.wsb4{word-spacing:10.711814pt;}
.ws2e{word-spacing:11.178000pt;}
.ws7d{word-spacing:11.182000pt;}
.ws7b{word-spacing:11.183333pt;}
.ws126{word-spacing:11.306915pt;}
.ws5{word-spacing:11.561958pt;}
.wsf4{word-spacing:11.902016pt;}
.wsfe{word-spacing:11.987030pt;}
.wsc6{word-spacing:13.857347pt;}
.ws11d{word-spacing:14.452448pt;}
.ws11e{word-spacing:14.537462pt;}
.ws75{word-spacing:15.230855pt;}
.wsf6{word-spacing:15.642650pt;}
.wsdf{word-spacing:16.090000pt;}
.ws108{word-spacing:17.002880pt;}
.ws11a{word-spacing:17.087894pt;}
.ws11b{word-spacing:17.172909pt;}
.ws124{word-spacing:17.853024pt;}
.ws50{word-spacing:18.425694pt;}
.ws86{word-spacing:18.761522pt;}
.wsf7{word-spacing:19.553312pt;}
.wsa{word-spacing:19.695299pt;}
.wsc0{word-spacing:20.271333pt;}
.ws12{word-spacing:21.253600pt;}
.ws7a{word-spacing:21.742855pt;}
.wsc8{word-spacing:22.042000pt;}
.ws125{word-spacing:22.358787pt;}
.ws121{word-spacing:24.229104pt;}
.ws122{word-spacing:30.350141pt;}
.ws11f{word-spacing:37.406336pt;}
.ws4c{word-spacing:46.491733pt;}
.ws120{word-spacing:46.757920pt;}
.wsfa{word-spacing:49.648410pt;}
.ws10b{word-spacing:50.243510pt;}
.ws105{word-spacing:52.878957pt;}
.ws106{word-spacing:52.963971pt;}
.ws109{word-spacing:53.048986pt;}
.ws52{word-spacing:55.099324pt;}
.ws5f{word-spacing:55.105314pt;}
.ws56{word-spacing:57.232614pt;}
.ws66{word-spacing:57.237948pt;}
.ws5b{word-spacing:57.238647pt;}
.ws62{word-spacing:57.269990pt;}
.ws59{word-spacing:57.275281pt;}
.ws5d{word-spacing:57.278933pt;}
.ws54{word-spacing:58.709990pt;}
.ws6b{word-spacing:58.714598pt;}
.ws60{word-spacing:59.445990pt;}
.ws51{word-spacing:59.447219pt;}
.ws65{word-spacing:60.877551pt;}
.ws6e{word-spacing:60.880657pt;}
.wsfb{word-spacing:62.060512pt;}
.ws10c{word-spacing:62.825642pt;}
.ws53{word-spacing:63.712657pt;}
.wsd{word-spacing:63.760800pt;}
.ws5e{word-spacing:65.883281pt;}
.ws6c{word-spacing:65.883324pt;}
.ws10a{word-spacing:66.396246pt;}
.ws67{word-spacing:68.020267pt;}
.ws68{word-spacing:68.057600pt;}
.ws64{word-spacing:69.487932pt;}
.ws5c{word-spacing:69.492267pt;}
.ws58{word-spacing:70.188553pt;}
.ws69{word-spacing:70.225886pt;}
.ws55{word-spacing:70.228267pt;}
.ws5a{word-spacing:71.624218pt;}
.ws10d{word-spacing:76.257917pt;}
.ws57{word-spacing:76.665600pt;}
.ws63{word-spacing:76.666257pt;}
.ws6d{word-spacing:78.839219pt;}
.ws7f{word-spacing:80.098667pt;}
.ws6a{word-spacing:80.932924pt;}
.ws61{word-spacing:85.279590pt;}
.ws4a{word-spacing:85.280000pt;}
.ws14{word-spacing:91.816000pt;}
.ws10e{word-spacing:95.301142pt;}
.ws4e{word-spacing:104.672000pt;}
.ws49{word-spacing:104.676267pt;}
.ws48{word-spacing:124.068267pt;}
.ws18{word-spacing:1617.994061pt;}
.ws47{word-spacing:2458.680943pt;}
.ws4d{word-spacing:2462.982605pt;}
._1f{margin-left:-50.158496pt;}
._14{margin-left:-44.037459pt;}
._12{margin-left:-42.507200pt;}
._d{margin-left:-27.616027pt;}
._34{margin-left:-26.045867pt;}
._13{margin-left:-21.253600pt;}
._35{margin-left:-19.392000pt;}
._4{margin-left:-15.868848pt;}
._25{margin-left:-14.027376pt;}
._16{margin-left:-11.987030pt;}
._2c{margin-left:-9.570480pt;}
._0{margin-left:-7.821325pt;}
._e{margin-left:-6.886419pt;}
._7{margin-left:-4.675792pt;}
._3{margin-left:-3.173770pt;}
._1{margin-left:-1.396378pt;}
._1b{width:1.700288pt;}
._6{width:3.230547pt;}
._5{width:4.266709pt;}
._18{width:5.695965pt;}
._19{width:7.396253pt;}
._1e{width:11.476944pt;}
._48{width:16.035067pt;}
._55{width:17.087491pt;}
._56{width:18.196668pt;}
._2b{width:19.491725pt;}
._21{width:21.253600pt;}
._28{width:22.644859pt;}
._2{width:24.048725pt;}
._27{width:25.746643pt;}
._c{width:27.364198pt;}
._24{width:28.345942pt;}
._49{width:29.248564pt;}
._9{width:30.435155pt;}
._4e{width:31.374209pt;}
._a{width:32.335290pt;}
._51{width:33.270018pt;}
._4a{width:34.528566pt;}
._2a{width:35.535565pt;}
._29{width:36.932397pt;}
._4d{width:38.277582pt;}
._4b{width:39.203858pt;}
._1c{width:40.551869pt;}
._8{width:42.239437pt;}
._52{width:43.205885pt;}
._2e{width:44.143409pt;}
._5a{width:45.230027pt;}
._17{width:46.757920pt;}
._4c{width:48.722016pt;}
._59{width:51.823479pt;}
._b{width:53.984144pt;}
._58{width:58.273931pt;}
._1d{width:59.510080pt;}
._57{width:68.148795pt;}
._50{width:70.720566pt;}
._15{width:72.687312pt;}
._53{width:74.322318pt;}
._3a{width:76.290012pt;}
._22{width:77.994352pt;}
._47{width:79.592646pt;}
._46{width:80.744726pt;}
._41{width:82.160947pt;}
._4f{width:83.495239pt;}
._10{width:85.014400pt;}
._42{width:85.921269pt;}
._3f{width:87.033726pt;}
._44{width:87.971881pt;}
._23{width:89.265120pt;}
._39{width:91.060019pt;}
._3d{width:92.244463pt;}
._43{width:93.557615pt;}
._3e{width:94.758076pt;}
._3b{width:96.024781pt;}
._36{width:96.950347pt;}
._31{width:98.028800pt;}
._38{width:99.597252pt;}
._3c{width:101.061538pt;}
._20{width:102.017280pt;}
._40{width:102.996375pt;}
._30{width:104.669867pt;}
._37{width:106.807057pt;}
._45{width:108.825596pt;}
._54{width:115.699428pt;}
._32{width:117.412267pt;}
._2d{width:122.421333pt;}
._2f{width:124.070400pt;}
._33{width:143.462400pt;}
._26{width:1669.241755pt;}
._1a{width:2480.161238pt;}
._11{width:2596.460938pt;}
._f{width:3874.278211pt;}
.fs6{font-size:53.842667pt;}
.fs4{font-size:64.610667pt;}
.fs9{font-size:67.324267pt;}
.fs7{font-size:70.846400pt;}
.fs1{font-size:77.576533pt;}
.fs0{font-size:85.014400pt;}
.fsa{font-size:88.585067pt;}
.fs5{font-size:102.017067pt;}
.fsb{font-size:106.301867pt;}
.fs8{font-size:122.421333pt;}
.fs3{font-size:146.905067pt;}
.fs2{font-size:176.320533pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:28.724000pt;}
.y47{bottom:74.078667pt;}
.y11{bottom:74.113333pt;}
.yf8{bottom:86.557333pt;}
.y10{bottom:91.825333pt;}
.y19e{bottom:96.025333pt;}
.y187{bottom:98.962667pt;}
.y143{bottom:99.582667pt;}
.y46{bottom:106.314667pt;}
.yf{bottom:111.024000pt;}
.yf7{bottom:112.061333pt;}
.y105{bottom:116.696000pt;}
.ya9{bottom:117.349333pt;}
.y19d{bottom:121.529333pt;}
.y186{bottom:124.468000pt;}
.y10f{bottom:131.914667pt;}
.ye{bottom:136.652000pt;}
.y170{bottom:137.436000pt;}
.yf6{bottom:137.566667pt;}
.y45{bottom:138.550667pt;}
.y142{bottom:141.648000pt;}
.y157{bottom:142.374667pt;}
.yf5{bottom:155.737333pt;}
.y104{bottom:160.621333pt;}
.y16f{bottom:162.941333pt;}
.yf4{bottom:163.070667pt;}
.ya8{bottom:163.281333pt;}
.y19c{bottom:164.745333pt;}
.y121{bottom:165.233333pt;}
.yd0{bottom:167.674667pt;}
.y185{bottom:167.682667pt;}
.y156{bottom:167.878667pt;}
.y44{bottom:170.786667pt;}
.y10e{bottom:172.241333pt;}
.y115{bottom:176.136000pt;}
.y1b2{bottom:180.650667pt;}
.y141{bottom:183.713333pt;}
.y103{bottom:186.125333pt;}
.yf3{bottom:188.574667pt;}
.y19b{bottom:190.249333pt;}
.ya7{bottom:190.274667pt;}
.ycf{bottom:193.178667pt;}
.y184{bottom:193.186667pt;}
.y43{bottom:203.022667pt;}
.y1b1{bottom:206.156000pt;}
.y120{bottom:209.158667pt;}
.y102{bottom:211.629333pt;}
.ya6{bottom:214.078667pt;}
.y12b{bottom:216.260000pt;}
.yce{bottom:218.682667pt;}
.y114{bottom:220.061333pt;}
.y16e{bottom:220.977333pt;}
.y155{bottom:225.492000pt;}
.y140{bottom:225.778667pt;}
.y101{bottom:229.801333pt;}
.y10d{bottom:229.860000pt;}
.y19a{bottom:233.464000pt;}
.y11f{bottom:234.662667pt;}
.y42{bottom:235.257333pt;}
.y183{bottom:236.401333pt;}
.y100{bottom:237.134667pt;}
.ya5{bottom:237.882667pt;}
.y113{bottom:245.565333pt;}
.y1b0{bottom:249.370667pt;}
.y13f{bottom:251.282667pt;}
.yf2{bottom:254.405333pt;}
.y199{bottom:258.968000pt;}
.ycd{bottom:260.128000pt;}
.y11e{bottom:260.166667pt;}
.y12a{bottom:260.184000pt;}
.ya4{bottom:261.686667pt;}
.yff{bottom:262.638667pt;}
.y41{bottom:267.493333pt;}
.y10c{bottom:270.186667pt;}
.y112{bottom:271.069333pt;}
.y2b{bottom:271.294667pt;}
.y1af{bottom:274.874667pt;}
.y182{bottom:279.616000pt;}
.y198{bottom:284.472000pt;}
.ya3{bottom:285.490667pt;}
.ycc{bottom:285.632000pt;}
.y11d{bottom:285.670667pt;}
.y129{bottom:285.689333pt;}
.yfe{bottom:288.142667pt;}
.y16d{bottom:290.781333pt;}
.ybc{bottom:292.105333pt;}
.y13e{bottom:293.348000pt;}
.y154{bottom:294.398667pt;}
.yd4{bottom:296.252000pt;}
.y111{bottom:296.574667pt;}
.y40{bottom:299.729333pt;}
.y181{bottom:305.121333pt;}
.yb8{bottom:306.520000pt;}
.ya2{bottom:309.294667pt;}
.ycb{bottom:311.136000pt;}
.y11c{bottom:311.176000pt;}
.y128{bottom:311.193333pt;}
.y16c{bottom:316.285333pt;}
.y2a{bottom:318.053333pt;}
.y1ae{bottom:318.089333pt;}
.y13d{bottom:318.852000pt;}
.y153{bottom:319.902667pt;}
.y66{bottom:320.697333pt;}
.y58{bottom:320.701333pt;}
.y197{bottom:327.688000pt;}
.yfd{bottom:328.469333pt;}
.ybb{bottom:331.157333pt;}
.yb2{bottom:331.794667pt;}
.y3f{bottom:331.965333pt;}
.yb7{bottom:332.024000pt;}
.y10b{bottom:332.906667pt;}
.ya1{bottom:333.098667pt;}
.y6c{bottom:333.873333pt;}
.y5a{bottom:334.857333pt;}
.y68{bottom:334.862667pt;}
.yd7{bottom:336.590667pt;}
.y110{bottom:336.900000pt;}
.y29{bottom:343.557333pt;}
.y1ad{bottom:343.593333pt;}
.y180{bottom:348.336000pt;}
.yda{bottom:348.849333pt;}
.y11b{bottom:351.501333pt;}
.y127{bottom:351.520000pt;}
.yca{bottom:352.580000pt;}
.y196{bottom:353.192000pt;}
.ya0{bottom:356.902667pt;}
.ye1{bottom:357.650667pt;}
.y74{bottom:359.373333pt;}
.y64{bottom:359.390667pt;}
.y16b{bottom:359.500000pt;}
.y59{bottom:360.361333pt;}
.y71{bottom:360.362667pt;}
.y67{bottom:360.366667pt;}
.y65{bottom:360.372000pt;}
.y57{bottom:360.376000pt;}
.y152{bottom:362.693333pt;}
.y3e{bottom:364.201333pt;}
.y6f{bottom:365.565333pt;}
.y28{bottom:369.061333pt;}
.yb1{bottom:370.846667pt;}
.yb6{bottom:371.076000pt;}
.ye9{bottom:372.462667pt;}
.yeb{bottom:372.466667pt;}
.y10a{bottom:372.580000pt;}
.y6b{bottom:373.548000pt;}
.y17f{bottom:373.840000pt;}
.yd9{bottom:374.353333pt;}
.yba{bottom:374.372000pt;}
.y13c{bottom:375.740000pt;}
.yc9{bottom:378.085333pt;}
.y9f{bottom:380.706667pt;}
.yf0{bottom:381.589333pt;}
.y16a{bottom:385.005333pt;}
.y126{bottom:386.200000pt;}
.y11a{bottom:386.204000pt;}
.y1ac{bottom:386.809333pt;}
.y151{bottom:388.198667pt;}
.y27{bottom:394.565333pt;}
.y195{bottom:396.406667pt;}
.y3d{bottom:396.437333pt;}
.ye8{bottom:397.966667pt;}
.yea{bottom:397.972000pt;}
.y109{bottom:398.085333pt;}
.y5f{bottom:399.036000pt;}
.y6e{bottom:399.040000pt;}
.y73{bottom:399.046667pt;}
.y61{bottom:399.048000pt;}
.y6a{bottom:399.052000pt;}
.y5d{bottom:399.057333pt;}
.y63{bottom:399.065333pt;}
.y9e{bottom:404.510667pt;}
.y1ab{bottom:412.313333pt;}
.yef{bottom:415.062667pt;}
.ye6{bottom:415.069333pt;}
.yb5{bottom:415.918667pt;}
.yb0{bottom:415.932000pt;}
.y17e{bottom:417.054667pt;}
.y26{bottom:420.069333pt;}
.y194{bottom:421.910667pt;}
.y108{bottom:423.589333pt;}
.y5e{bottom:424.540000pt;}
.y6d{bottom:424.544000pt;}
.y72{bottom:424.552000pt;}
.y60{bottom:424.553333pt;}
.y69{bottom:424.556000pt;}
.y5c{bottom:424.561333pt;}
.y70{bottom:424.565333pt;}
.y62{bottom:424.569333pt;}
.y125{bottom:426.526667pt;}
.y119{bottom:426.530667pt;}
.ydf{bottom:427.002667pt;}
.y87{bottom:427.324000pt;}
.y169{bottom:428.220000pt;}
.y9d{bottom:428.316000pt;}
.y3c{bottom:428.673333pt;}
.y150{bottom:430.989333pt;}
.yee{bottom:440.568000pt;}
.ye5{bottom:440.573333pt;}
.y17d{bottom:442.558667pt;}
.y13b{bottom:443.110667pt;}
.y12f{bottom:444.513333pt;}
.y25{bottom:445.574667pt;}
.y9c{bottom:452.120000pt;}
.y168{bottom:453.724000pt;}
.y86{bottom:454.316000pt;}
.y1aa{bottom:455.528000pt;}
.y14f{bottom:456.493333pt;}
.y3b{bottom:460.909333pt;}
.yd8{bottom:462.382667pt;}
.yfa{bottom:463.262667pt;}
.yfc{bottom:463.265333pt;}
.y193{bottom:465.125333pt;}
.y24{bottom:471.078667pt;}
.yde{bottom:474.646667pt;}
.ydc{bottom:474.650667pt;}
.y9b{bottom:475.924000pt;}
.y85{bottom:478.120000pt;}
.yed{bottom:480.241333pt;}
.yec{bottom:480.246667pt;}
.ye4{bottom:480.248000pt;}
.ye2{bottom:480.261333pt;}
.ye3{bottom:480.262667pt;}
.y1a9{bottom:481.032000pt;}
.y124{bottom:484.145333pt;}
.y118{bottom:484.149333pt;}
.y12e{bottom:484.186667pt;}
.y13a{bottom:485.176000pt;}
.yf9{bottom:488.768000pt;}
.yfb{bottom:488.769333pt;}
.y192{bottom:490.630667pt;}
.y3a{bottom:493.145333pt;}
.y54{bottom:493.910667pt;}
.y23{bottom:496.582667pt;}
.y167{bottom:496.938667pt;}
.y14e{bottom:499.284000pt;}
.y9a{bottom:499.728000pt;}
.yd5{bottom:500.136000pt;}
.ydd{bottom:500.150667pt;}
.ydb{bottom:500.154667pt;}
.y107{bottom:500.202667pt;}
.y17c{bottom:500.596000pt;}
.y84{bottom:501.924000pt;}
.yc8{bottom:503.936000pt;}
.yd{bottom:505.178667pt;}
.y53{bottom:519.416000pt;}
.y22{bottom:522.086667pt;}
.y166{bottom:522.442667pt;}
.y123{bottom:523.817333pt;}
.y117{bottom:523.821333pt;}
.y12d{bottom:523.858667pt;}
.y1a8{bottom:524.246667pt;}
.y14d{bottom:524.789333pt;}
.y39{bottom:525.380000pt;}
.y106{bottom:525.706667pt;}
.y83{bottom:525.729333pt;}
.y139{bottom:527.241333pt;}
.yc{bottom:530.682667pt;}
.y191{bottom:533.845333pt;}
.yc7{bottom:544.262667pt;}
.y99{bottom:545.353333pt;}
.y21{bottom:547.592000pt;}
.y82{bottom:549.533333pt;}
.y1a7{bottom:549.752000pt;}
.yc0{bottom:549.898667pt;}
.yb{bottom:556.186667pt;}
.y190{bottom:559.349333pt;}
.y122{bottom:563.492000pt;}
.y116{bottom:563.494667pt;}
.y12c{bottom:563.533333pt;}
.y165{bottom:565.658667pt;}
.y14c{bottom:567.580000pt;}
.y38{bottom:568.382667pt;}
.y138{bottom:569.306667pt;}
.y17b{bottom:570.400000pt;}
.y20{bottom:573.096000pt;}
.y81{bottom:573.337333pt;}
.y52{bottom:577.097333pt;}
.ya{bottom:581.690667pt;}
.y98{bottom:585.026667pt;}
.y164{bottom:591.162667pt;}
.ybf{bottom:591.342667pt;}
.y51{bottom:591.677333pt;}
.y1a6{bottom:592.966667pt;}
.y14b{bottom:593.084000pt;}
.y37{bottom:593.888000pt;}
.y17a{bottom:595.904000pt;}
.y80{bottom:597.141333pt;}
.y1f{bottom:598.600000pt;}
.yc6{bottom:601.881333pt;}
.y18f{bottom:602.564000pt;}
.y137{bottom:611.370667pt;}
.ybe{bottom:616.846667pt;}
.y1a5{bottom:618.470667pt;}
.y36{bottom:619.392000pt;}
.y7f{bottom:620.945333pt;}
.y1e{bottom:624.104000pt;}
.y9{bottom:625.616000pt;}
.yc5{bottom:627.385333pt;}
.y18e{bottom:628.068000pt;}
.y97{bottom:632.097333pt;}
.y163{bottom:634.377333pt;}
.y179{bottom:639.118667pt;}
.y7e{bottom:644.749333pt;}
.y35{bottom:644.896000pt;}
.y1d{bottom:649.608000pt;}
.y50{bottom:649.845333pt;}
.y14a{bottom:650.697333pt;}
.y1b3{bottom:656.829333pt;}
.y96{bottom:659.089333pt;}
.y162{bottom:659.881333pt;}
.ybd{bottom:660.772000pt;}
.y1a4{bottom:661.685333pt;}
.y136{bottom:662.024000pt;}
.y178{bottom:664.624000pt;}
.y7d{bottom:668.553333pt;}
.y95{bottom:682.893333pt;}
.y34{bottom:685.809333pt;}
.y18d{bottom:686.105333pt;}
.y1a3{bottom:687.189333pt;}
.y7c{bottom:692.357333pt;}
.y1c{bottom:696.366667pt;}
.y4f{bottom:700.401333pt;}
.y161{bottom:703.096000pt;}
.y94{bottom:706.697333pt;}
.y177{bottom:707.838667pt;}
.y8{bottom:709.002667pt;}
.y33{bottom:711.313333pt;}
.y7b{bottom:716.161333pt;}
.y149{bottom:719.604000pt;}
.y1b{bottom:721.870667pt;}
.y160{bottom:728.601333pt;}
.y1a2{bottom:730.405333pt;}
.y93{bottom:730.501333pt;}
.y135{bottom:732.052000pt;}
.y176{bottom:733.342667pt;}
.y32{bottom:736.817333pt;}
.y7a{bottom:739.965333pt;}
.y148{bottom:745.108000pt;}
.y1a{bottom:747.374667pt;}
.yc4{bottom:753.237333pt;}
.y92{bottom:754.305333pt;}
.y18c{bottom:755.909333pt;}
.y31{bottom:762.321333pt;}
.y134{bottom:762.342667pt;}
.y79{bottom:763.769333pt;}
.y4e{bottom:771.713333pt;}
.y15f{bottom:771.816000pt;}
.y19{bottom:772.880000pt;}
.y175{bottom:776.557333pt;}
.y91{bottom:778.110667pt;}
.y18b{bottom:781.413333pt;}
.y147{bottom:787.900000pt;}
.y78{bottom:790.813333pt;}
.yc3{bottom:793.564000pt;}
.y15e{bottom:797.320000pt;}
.y18{bottom:798.384000pt;}
.y1a1{bottom:799.124000pt;}
.y133{bottom:799.714667pt;}
.y90{bottom:801.914667pt;}
.y174{bottom:802.061333pt;}
.y4d{bottom:804.304000pt;}
.y146{bottom:813.404000pt;}
.y30{bottom:820.002667pt;}
.y17{bottom:823.888000pt;}
.y18a{bottom:824.628000pt;}
.y8f{bottom:825.718667pt;}
.y7{bottom:826.636000pt;}
.yad{bottom:833.761333pt;}
.y2f{bottom:834.582667pt;}
.y132{bottom:837.088000pt;}
.yd3{bottom:837.565333pt;}
.y15d{bottom:840.534667pt;}
.y77{bottom:840.814667pt;}
.y4c{bottom:843.977333pt;}
.y173{bottom:845.276000pt;}
.y16{bottom:849.392000pt;}
.y8e{bottom:849.522667pt;}
.y189{bottom:850.132000pt;}
.yc2{bottom:851.182667pt;}
.y6{bottom:852.140000pt;}
.y15c{bottom:866.038667pt;}
.y131{bottom:867.378667pt;}
.y172{bottom:870.781333pt;}
.y145{bottom:871.017333pt;}
.y8d{bottom:873.326667pt;}
.yac{bottom:874.088000pt;}
.y15{bottom:874.896000pt;}
.yc1{bottom:876.686667pt;}
.yd6{bottom:877.892000pt;}
.ye0{bottom:880.781333pt;}
.y1a0{bottom:882.665333pt;}
.y4b{bottom:885.422667pt;}
.y2e{bottom:891.686667pt;}
.yd2{bottom:894.950667pt;}
.y76{bottom:896.429333pt;}
.y8c{bottom:897.130667pt;}
.y130{bottom:904.750667pt;}
.y188{bottom:908.169333pt;}
.y15b{bottom:909.254667pt;}
.y4a{bottom:910.926667pt;}
.y171{bottom:913.996000pt;}
.y2d{bottom:917.190667pt;}
.yd1{bottom:920.454667pt;}
.y8b{bottom:920.934667pt;}
.ye7{bottom:921.106667pt;}
.y14{bottom:921.654667pt;}
.yf1{bottom:922.106667pt;}
.yab{bottom:931.706667pt;}
.y5{bottom:931.937333pt;}
.y15a{bottom:934.758667pt;}
.yb9{bottom:935.277333pt;}
.y75{bottom:936.754667pt;}
.y56{bottom:939.500000pt;}
.y144{bottom:939.924000pt;}
.y2c{bottom:942.696000pt;}
.y8a{bottom:944.738667pt;}
.y19f{bottom:952.469333pt;}
.yaa{bottom:957.210667pt;}
.yb4{bottom:960.781333pt;}
.y89{bottom:968.542667pt;}
.y49{bottom:970.792000pt;}
.yaf{bottom:976.836000pt;}
.y159{bottom:977.973333pt;}
.y4{bottom:987.289333pt;}
.y13{bottom:993.252000pt;}
.y88{bottom:995.534667pt;}
.y55{bottom:997.537333pt;}
.yb3{bottom:1001.108000pt;}
.yae{bottom:1002.340000pt;}
.y48{bottom:1003.381333pt;}
.y158{bottom:1003.477333pt;}
.y5b{bottom:1003.690667pt;}
.y2{bottom:1063.132000pt;}
.y3{bottom:1084.145333pt;}
.y1{bottom:1084.385333pt;}
.ha{height:39.197461pt;}
.hb{height:52.001258pt;}
.h6{height:56.320563pt;}
.h4{height:56.475716pt;}
.h3{height:56.941175pt;}
.hd{height:61.465411pt;}
.h2{height:61.890483pt;}
.h9{height:62.400570pt;}
.h12{height:66.438800pt;}
.h8{height:73.758339pt;}
.h14{height:77.572179pt;}
.h16{height:77.766011pt;}
.h1b{height:77.895232pt;}
.he{height:77.900565pt;}
.h17{height:78.282896pt;}
.h18{height:79.726400pt;}
.h19{height:80.529899pt;}
.h15{height:82.145899pt;}
.h13{height:82.151232pt;}
.hc{height:88.510624pt;}
.h1a{height:95.772133pt;}
.h7{height:106.212363pt;}
.h10{height:124.758800pt;}
.h5{height:127.479746pt;}
.h11{height:135.447232pt;}
.hf{height:135.452565pt;}
.h1{height:1171.333333pt;}
.h0{height:1171.653333pt;}
.w1{width:1322.666667pt;}
.w0{width:1322.834667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2c{left:102.504000pt;}
.x2e{left:106.626667pt;}
.x2d{left:109.688000pt;}
.x11{left:115.925333pt;}
.xb{left:120.486667pt;}
.x13{left:125.224000pt;}
.xd{left:127.880000pt;}
.xa{left:129.209333pt;}
.x14{left:131.452000pt;}
.x12{left:135.850667pt;}
.x2f{left:138.369333pt;}
.xe{left:176.764000pt;}
.x1f{left:203.008000pt;}
.x1e{left:205.160000pt;}
.x1c{left:206.246667pt;}
.x1d{left:207.856000pt;}
.x2b{left:251.376000pt;}
.x1a{left:327.850667pt;}
.x19{left:332.700000pt;}
.x17{left:335.394667pt;}
.x1b{left:336.472000pt;}
.x18{left:337.548000pt;}
.x4{left:350.666667pt;}
.x26{left:361.472000pt;}
.x5{left:385.005333pt;}
.x28{left:418.097333pt;}
.x27{left:421.020000pt;}
.x20{left:427.137333pt;}
.x2a{left:463.372000pt;}
.x15{left:509.850667pt;}
.xf{left:530.862667pt;}
.x8{left:536.646667pt;}
.x9{left:614.064000pt;}
.x2{left:651.532000pt;}
.x3{left:655.234667pt;}
.xc{left:657.616000pt;}
.x10{left:664.494667pt;}
.x16{left:665.924000pt;}
.x24{left:693.216000pt;}
.x22{left:695.368000pt;}
.x21{left:696.454667pt;}
.x23{left:698.064000pt;}
.x29{left:714.429333pt;}
.x6{left:736.944000pt;}
.x7{left:909.238667pt;}
.x25{left:918.421333pt;}
}




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