
    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_8bfbeb553ba2d9779ed7b30f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.723000;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_d4b0332e853e1d5d2324cd6c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_d3481e3ba7450c20951f5beb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_4bff940863f017599953af94.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e47a28ced04f75aed03ee12d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_b1b624e53996f13a3a16f94c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_8372b152d35f2ea09424e97d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_534eecf3e96c89f199a7f172.woff')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_83e13d0d1cf19279a9ce5784.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_3f58f89ca46746c3ad038558.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5ce3062b932b6d4e4f7088ab.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5820a859a7ea8f285834f64a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_22801a96d0a074f96c3c6abe.woff')format("woff");}.ffd{font-family:ffd;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2304b298f3eddedbc0beb19c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.636000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c93ed043857620d99a20a8f5.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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:ff10;src:url('chunks/assets/font_261bc9d8a40c3da82929e85d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.724000;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);}
.vc{vertical-align:-56.622000px;}
.vb{vertical-align:-17.934000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.808000px;}
.v2{vertical-align:15.108000px;}
.v8{vertical-align:17.268000px;}
.v4{vertical-align:18.708000px;}
.ve{vertical-align:20.586000px;}
.v6{vertical-align:21.690000px;}
.v3{vertical-align:24.684000px;}
.v9{vertical-align:31.470000px;}
.v7{vertical-align:40.440000px;}
.va{vertical-align:44.832000px;}
.v5{vertical-align:56.790000px;}
.ls1{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000312px;}
.ls56{letter-spacing:0.000544px;}
.ls32{letter-spacing:0.000993px;}
.ls18{letter-spacing:0.001120px;}
.ls5b{letter-spacing:0.001496px;}
.ls42{letter-spacing:0.001698px;}
.ls3c{letter-spacing:0.002087px;}
.ls16{letter-spacing:0.002089px;}
.ls1c{letter-spacing:0.002338px;}
.ls50{letter-spacing:0.002446px;}
.ls67{letter-spacing:0.002481px;}
.ls2d{letter-spacing:0.003652px;}
.ls20{letter-spacing:0.004172px;}
.ls13{letter-spacing:0.005276px;}
.ls22{letter-spacing:0.005393px;}
.ls58{letter-spacing:0.005549px;}
.ls4c{letter-spacing:0.006062px;}
.ls31{letter-spacing:0.006592px;}
.ls4a{letter-spacing:0.007698px;}
.ls6f{letter-spacing:0.009276px;}
.ls62{letter-spacing:0.010053px;}
.ls43{letter-spacing:0.011796px;}
.ls51{letter-spacing:0.012150px;}
.ls49{letter-spacing:0.012527px;}
.ls25{letter-spacing:0.016053px;}
.ls2c{letter-spacing:0.018274px;}
.ls2a{letter-spacing:0.022980px;}
.ls70{letter-spacing:0.024638px;}
.ls7{letter-spacing:0.026505px;}
.ls60{letter-spacing:0.027565px;}
.lsf{letter-spacing:0.029166px;}
.ls41{letter-spacing:1.635993px;}
.ls2f{letter-spacing:1.655249px;}
.ls28{letter-spacing:1.661249px;}
.ls45{letter-spacing:2.140172px;}
.ls4b{letter-spacing:2.146172px;}
.lsa{letter-spacing:2.151922px;}
.ls1d{letter-spacing:2.984525px;}
.ls10{letter-spacing:2.988775px;}
.ls4f{letter-spacing:2.990525px;}
.ls64{letter-spacing:2.992851px;}
.ls5d{letter-spacing:2.994775px;}
.ls46{letter-spacing:4.115110px;}
.ls59{letter-spacing:4.485110px;}
.ls26{letter-spacing:4.491110px;}
.ls63{letter-spacing:5.029295px;}
.ls36{letter-spacing:5.752430px;}
.ls37{letter-spacing:5.774444px;}
.ls3a{letter-spacing:5.917784px;}
.ls34{letter-spacing:5.939276px;}
.ls5{letter-spacing:5.977994px;}
.ls5c{letter-spacing:6.515540px;}
.lsb{letter-spacing:6.641496px;}
.ls39{letter-spacing:6.647496px;}
.ls65{letter-spacing:8.297807px;}
.ls4d{letter-spacing:9.630741px;}
.ls9{letter-spacing:9.922750px;}
.ls3d{letter-spacing:9.942221px;}
.ls1f{letter-spacing:9.948221px;}
.ls40{letter-spacing:9.982525px;}
.ls44{letter-spacing:12.954775px;}
.ls24{letter-spacing:13.270183px;}
.ls66{letter-spacing:13.521067px;}
.ls6a{letter-spacing:13.987490px;}
.ls3e{letter-spacing:14.451110px;}
.ls21{letter-spacing:14.457110px;}
.ls68{letter-spacing:14.585246px;}
.ls69{letter-spacing:15.242778px;}
.ls1a{letter-spacing:16.146146px;}
.ls47{letter-spacing:16.266775px;}
.ls23{letter-spacing:16.272775px;}
.ls61{letter-spacing:16.276851px;}
.lse{letter-spacing:16.557841px;}
.ls1b{letter-spacing:16.581067px;}
.ls3b{letter-spacing:16.586852px;}
.ls17{letter-spacing:16.587067px;}
.ls14{letter-spacing:16.602538px;}
.ls4e{letter-spacing:16.608538px;}
.ls4{letter-spacing:16.617617px;}
.ls35{letter-spacing:17.450525px;}
.ls33{letter-spacing:19.133991px;}
.ls8{letter-spacing:19.590775px;}
.ls11{letter-spacing:19.596775px;}
.lsd{letter-spacing:19.905275px;}
.ls48{letter-spacing:20.465624px;}
.ls2e{letter-spacing:20.467424px;}
.ls5f{letter-spacing:21.093110px;}
.ls53{letter-spacing:21.459440px;}
.ls2b{letter-spacing:22.914775px;}
.ls2{letter-spacing:25.404630px;}
.ls76{letter-spacing:25.700444px;}
.ls55{letter-spacing:28.932538px;}
.ls27{letter-spacing:31.227269px;}
.ls72{letter-spacing:31.233269px;}
.ls54{letter-spacing:32.247642px;}
.ls0{letter-spacing:32.278950px;}
.ls3{letter-spacing:34.263919px;}
.ls52{letter-spacing:44.527424px;}
.ls5e{letter-spacing:44.533424px;}
.ls5a{letter-spacing:76.401722px;}
.ls73{letter-spacing:487.589569px;}
.ls29{letter-spacing:517.477369px;}
.ls71{letter-spacing:526.085056px;}
.ls1e{letter-spacing:555.972856px;}
.ls12{letter-spacing:559.499616px;}
.ls6e{letter-spacing:562.727498px;}
.ls74{letter-spacing:584.246714px;}
.ls15{letter-spacing:592.615298px;}
.ls6d{letter-spacing:607.618974px;}
.ls30{letter-spacing:614.134514px;}
.ls6c{letter-spacing:683.294884px;}
.lsc{letter-spacing:713.182684px;}
.ls75{letter-spacing:716.171464px;}
.ls6b{letter-spacing:734.403022px;}
.ls38{letter-spacing:746.059264px;}
.ls19{letter-spacing:753.531214px;}
.ls6{letter-spacing:764.290822px;}
.ls57{letter-spacing:867.128793px;}
.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;}
}
.ws20{word-spacing:-59.775600px;}
.ws2b{word-spacing:-46.505417px;}
.ws21{word-spacing:-43.157983px;}
.ws23{word-spacing:-38.937826px;}
.ws24{word-spacing:-31.633157px;}
.ws31{word-spacing:-29.015076px;}
.ws74{word-spacing:-28.955301px;}
.wsa8{word-spacing:-18.691895px;}
.ws45{word-spacing:-18.494571px;}
.ws72{word-spacing:-18.440351px;}
.wsa9{word-spacing:-17.189560px;}
.wsa7{word-spacing:-17.181272px;}
.ws4a{word-spacing:-17.176534px;}
.ws22{word-spacing:-16.605662px;}
.ws73{word-spacing:-15.373895px;}
.wsad{word-spacing:-15.122351px;}
.ws9{word-spacing:-14.111320px;}
.wsd6{word-spacing:-13.863272px;}
.ws2a{word-spacing:-12.574722px;}
.ws54{word-spacing:-12.345272px;}
.wsa5{word-spacing:-12.049895px;}
.wsac{word-spacing:-10.871613px;}
.ws32{word-spacing:-10.539272px;}
.wsbc{word-spacing:-10.003011px;}
.wsba{word-spacing:-9.997011px;}
.wsa6{word-spacing:-9.256722px;}
.ws29{word-spacing:-9.250722px;}
.ws82{word-spacing:-7.351596px;}
.ws48{word-spacing:-7.345596px;}
.ws2f{word-spacing:-7.221272px;}
.wsbb{word-spacing:-6.682912px;}
.wsb8{word-spacing:-6.623136px;}
.ws28{word-spacing:-5.932722px;}
.ws4b{word-spacing:-3.335478px;}
.wsc6{word-spacing:-3.096376px;}
.ws34{word-spacing:-3.036600px;}
.ws84{word-spacing:-2.797498px;}
.wsa1{word-spacing:-2.677947px;}
.wsd0{word-spacing:-2.558396px;}
.ws65{word-spacing:-2.379069px;}
.ws66{word-spacing:-2.319293px;}
.ws70{word-spacing:-2.259518px;}
.ws39{word-spacing:-2.199742px;}
.ws30{word-spacing:-2.139966px;}
.ws63{word-spacing:-1.900864px;}
.wscb{word-spacing:-1.841088px;}
.ws6a{word-spacing:-1.781313px;}
.ws9a{word-spacing:-1.601986px;}
.wsd7{word-spacing:-1.542210px;}
.wsb6{word-spacing:-1.422659px;}
.wsa2{word-spacing:-1.362884px;}
.ws5{word-spacing:-1.243332px;}
.wscc{word-spacing:-1.183557px;}
.wsd3{word-spacing:-1.126722px;}
.ws5d{word-spacing:-0.884679px;}
.ws41{word-spacing:-0.765128px;}
.ws99{word-spacing:-0.645576px;}
.ws80{word-spacing:-0.406474px;}
.wsc2{word-spacing:-0.346698px;}
.ws4{word-spacing:-0.227147px;}
.ws7c{word-spacing:-0.167372px;}
.ws76{word-spacing:-0.107596px;}
.ws1{word-spacing:-0.103292px;}
.ws13{word-spacing:-0.086077px;}
.ws49{word-spacing:-0.059776px;}
.wsaa{word-spacing:-0.047820px;}
.wsc5{word-spacing:-0.018678px;}
.ws17{word-spacing:0.000000px;}
.ws26{word-spacing:0.011955px;}
.ws7d{word-spacing:0.071731px;}
.ws90{word-spacing:0.191282px;}
.ws83{word-spacing:0.310833px;}
.ws1c{word-spacing:0.370609px;}
.wsc1{word-spacing:0.430384px;}
.ws35{word-spacing:0.669487px;}
.ws3f{word-spacing:0.729262px;}
.ws94{word-spacing:0.848814px;}
.ws59{word-spacing:0.968365px;}
.ws5f{word-spacing:1.087916px;}
.ws92{word-spacing:1.327018px;}
.ws67{word-spacing:1.386794px;}
.wsbf{word-spacing:1.446570px;}
.wsd{word-spacing:1.479456px;}
.wsc7{word-spacing:1.685672px;}
.ws62{word-spacing:1.745448px;}
.wsb5{word-spacing:1.805223px;}
.ws8f{word-spacing:1.864999px;}
.wsf{word-spacing:1.909843px;}
.ws4e{word-spacing:1.924774px;}
.ws89{word-spacing:1.984550px;}
.ws3d{word-spacing:2.044326px;}
.ws91{word-spacing:2.283428px;}
.wsc9{word-spacing:2.343204px;}
.ws7a{word-spacing:2.462755px;}
.wsb9{word-spacing:2.582306px;}
.wsbe{word-spacing:2.642082px;}
.ws53{word-spacing:2.761633px;}
.ws88{word-spacing:2.940960px;}
.ws12{word-spacing:3.039610px;}
.wscf{word-spacing:3.120286px;}
.ws6{word-spacing:3.299613px;}
.ws25{word-spacing:3.359389px;}
.ws10{word-spacing:3.416198px;}
.ws85{word-spacing:3.419164px;}
.ws5a{word-spacing:3.478940px;}
.wsbd{word-spacing:3.538716px;}
.wsc0{word-spacing:3.718042px;}
.wsc4{word-spacing:3.777818px;}
.ws14{word-spacing:3.801728px;}
.ws50{word-spacing:3.837594px;}
.ws15{word-spacing:3.861504px;}
.ws56{word-spacing:3.897369px;}
.ws6b{word-spacing:4.016920px;}
.ws47{word-spacing:4.076696px;}
.ws93{word-spacing:4.136472px;}
.ws3c{word-spacing:4.196247px;}
.wsd8{word-spacing:4.256023px;}
.wsb{word-spacing:4.276973px;}
.ws9e{word-spacing:4.315798px;}
.ws5b{word-spacing:4.375574px;}
.ws2d{word-spacing:4.435350px;}
.ws40{word-spacing:4.495125px;}
.ws7f{word-spacing:4.554901px;}
.wse{word-spacing:4.610523px;}
.ws58{word-spacing:4.614676px;}
.wsb1{word-spacing:4.674452px;}
.wsb2{word-spacing:4.734228px;}
.wsa4{word-spacing:4.853779px;}
.ws8b{word-spacing:4.913554px;}
.ws68{word-spacing:4.973330px;}
.ws8d{word-spacing:5.033106px;}
.ws96{word-spacing:5.152657px;}
.ws79{word-spacing:5.212432px;}
.ws3e{word-spacing:5.272208px;}
.ws36{word-spacing:5.391759px;}
.ws60{word-spacing:5.511310px;}
.ws78{word-spacing:5.571086px;}
.ws9b{word-spacing:5.630862px;}
.ws87{word-spacing:5.869964px;}
.ws52{word-spacing:5.989515px;}
.ws3a{word-spacing:6.049291px;}
.wsc{word-spacing:6.106118px;}
.ws6e{word-spacing:6.168842px;}
.ws42{word-spacing:6.288393px;}
.ws7b{word-spacing:6.348169px;}
.ws43{word-spacing:6.407944px;}
.ws7e{word-spacing:6.467720px;}
.ws46{word-spacing:6.527496px;}
.ws5c{word-spacing:6.587271px;}
.ws4f{word-spacing:6.647047px;}
.ws75{word-spacing:6.706822px;}
.wscd{word-spacing:6.826374px;}
.wsa{word-spacing:6.913094px;}
.ws97{word-spacing:6.945925px;}
.wsc3{word-spacing:7.065476px;}
.wsce{word-spacing:7.125252px;}
.ws7{word-spacing:7.235885px;}
.ws4c{word-spacing:7.364354px;}
.ws6d{word-spacing:7.424130px;}
.ws11{word-spacing:7.612474px;}
.ws51{word-spacing:7.723008px;}
.ws77{word-spacing:7.782783px;}
.wsc8{word-spacing:7.902334px;}
.wsd5{word-spacing:7.962110px;}
.wsd1{word-spacing:8.021886px;}
.ws86{word-spacing:8.081661px;}
.wsd4{word-spacing:8.141437px;}
.ws1f{word-spacing:8.201212px;}
.ws1e{word-spacing:8.260988px;}
.ws6c{word-spacing:8.380539px;}
.ws71{word-spacing:8.559866px;}
.wsaf{word-spacing:8.619642px;}
.ws8c{word-spacing:8.679417px;}
.ws33{word-spacing:9.038071px;}
.ws5e{word-spacing:9.277173px;}
.ws9d{word-spacing:9.336949px;}
.wsb4{word-spacing:9.396724px;}
.ws2e{word-spacing:9.403399px;}
.wsb7{word-spacing:9.456500px;}
.ws8{word-spacing:9.506177px;}
.ws38{word-spacing:9.576051px;}
.ws4d{word-spacing:9.695602px;}
.wsa0{word-spacing:9.874929px;}
.wsab{word-spacing:9.934705px;}
.ws1a{word-spacing:10.054256px;}
.ws19{word-spacing:10.114032px;}
.ws9c{word-spacing:10.233583px;}
.ws95{word-spacing:10.771563px;}
.ws3b{word-spacing:11.130217px;}
.ws6f{word-spacing:11.249768px;}
.wsae{word-spacing:11.369319px;}
.ws9f{word-spacing:11.488870px;}
.ws61{word-spacing:11.727973px;}
.ws44{word-spacing:12.265953px;}
.wsca{word-spacing:12.325729px;}
.wsb3{word-spacing:12.624607px;}
.ws98{word-spacing:12.863709px;}
.wsb0{word-spacing:12.983260px;}
.ws8e{word-spacing:13.043036px;}
.ws16{word-spacing:13.282138px;}
.ws8a{word-spacing:13.879894px;}
.ws69{word-spacing:14.417875px;}
.ws55{word-spacing:14.716753px;}
.wsd2{word-spacing:21.339889px;}
.ws2{word-spacing:23.312640px;}
.ws2c{word-spacing:25.478851px;}
.ws1d{word-spacing:26.827469px;}
.ws1b{word-spacing:27.556552px;}
.wsa3{word-spacing:30.760524px;}
.ws27{word-spacing:30.820299px;}
.ws0{word-spacing:31.091012px;}
.ws3{word-spacing:32.192873px;}
.ws81{word-spacing:33.919278px;}
.ws18{word-spacing:36.200103px;}
.ws37{word-spacing:96.750773px;}
.ws57{word-spacing:752.088421px;}
.ws64{word-spacing:788.778684px;}
._6{margin-left:-32.278950px;}
._0{margin-left:-10.845702px;}
._2{margin-left:-8.056807px;}
._28{margin-left:-6.635092px;}
._8{margin-left:-5.506985px;}
._3{margin-left:-3.873485px;}
._1{margin-left:-2.685602px;}
._4{margin-left:-1.187882px;}
._5{width:1.936742px;}
._22{width:3.323510px;}
._24{width:4.686394px;}
._1f{width:5.779712px;}
._23{width:8.308808px;}
._21{width:16.314439px;}
._29{width:17.741424px;}
._a{width:19.851610px;}
._1e{width:21.041011px;}
._2b{width:22.523472px;}
._9{width:23.778893px;}
._7{width:25.332925px;}
._1d{width:26.381741px;}
._19{width:28.453186px;}
._26{width:29.680250px;}
._1a{width:31.947488px;}
._32{width:33.773214px;}
._20{width:34.917741px;}
._2a{width:36.682660px;}
._31{width:38.304230px;}
._33{width:40.091573px;}
._10{width:44.131914px;}
._12{width:45.871517px;}
._2c{width:49.015992px;}
._30{width:50.689709px;}
._b{width:55.292430px;}
._f{width:61.090663px;}
._2d{width:68.587799px;}
._1c{width:80.697600px;}
._11{width:94.624775px;}
._1b{width:96.836850px;}
._27{width:130.141646px;}
._2e{width:155.389900px;}
._2f{width:316.086528px;}
._25{width:364.084452px;}
._14{width:552.473348px;}
._17{width:593.782588px;}
._13{width:670.785490px;}
._d{width:1120.912051px;}
._15{width:1122.514063px;}
._e{width:1134.966947px;}
._16{width:1151.074871px;}
._c{width:1390.081578px;}
._18{width:1680.710545px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1e{bottom:134.047500px;}
.y2c8{bottom:174.936000px;}
.y198{bottom:178.878000px;}
.y1d{bottom:178.879500px;}
.yae{bottom:182.656500px;}
.y1b8{bottom:183.859500px;}
.y21d{bottom:185.146500px;}
.y171{bottom:187.845000px;}
.y86{bottom:189.526500px;}
.y2c7{bottom:192.121500px;}
.y2a0{bottom:192.621000px;}
.y111{bottom:194.671500px;}
.y5c{bottom:196.812000px;}
.yf3{bottom:200.589000px;}
.y25f{bottom:205.254000px;}
.y197{bottom:205.569000px;}
.y281{bottom:206.649000px;}
.y85{bottom:207.459000px;}
.y23d{bottom:211.335000px;}
.y1c{bottom:211.756500px;}
.y5b{bottom:214.744500px;}
.y1b7{bottom:216.736500px;}
.y21c{bottom:218.023500px;}
.y170{bottom:220.722000px;}
.yd1{bottom:223.086000px;}
.y196{bottom:223.501500px;}
.y280{bottom:224.583000px;}
.y84{bottom:225.391500px;}
.y29f{bottom:225.498000px;}
.y2c6{bottom:226.795500px;}
.y29e{bottom:229.275000px;}
.y110{bottom:230.538000px;}
.yf2{bottom:232.677000px;}
.yad{bottom:240.436500px;}
.y14c{bottom:240.958500px;}
.y25e{bottom:241.119000px;}
.y1dc{bottom:241.132500px;}
.y83{bottom:243.325500px;}
.y23c{bottom:243.789000px;}
.yac{bottom:244.215000px;}
.y1b{bottom:244.632000px;}
.y2c5{bottom:244.728000px;}
.y21b{bottom:244.923000px;}
.y5a{bottom:245.644500px;}
.y16f{bottom:247.621500px;}
.y10f{bottom:248.470500px;}
.y27f{bottom:248.949000px;}
.y1b6{bottom:249.613500px;}
.y195{bottom:250.192500px;}
.y12d{bottom:250.609500px;}
.y29d{bottom:258.375000px;}
.y1fc{bottom:258.886500px;}
.y14b{bottom:258.891000px;}
.yd0{bottom:258.951000px;}
.y25d{bottom:259.053000px;}
.y1db{bottom:259.066500px;}
.yf1{bottom:259.576500px;}
.y82{bottom:261.258000px;}
.y1fb{bottom:262.663500px;}
.y21a{bottom:262.855500px;}
.yf0{bottom:263.353500px;}
.y16e{bottom:265.554000px;}
.y27e{bottom:266.134500px;}
.y23b{bottom:267.903000px;}
.y194{bottom:268.125000px;}
.y12c{bottom:268.542000px;}
.y27d{bottom:269.913000px;}
.y2c4{bottom:273.411000px;}
.y59{bottom:274.552500px;}
.y10e{bottom:275.370000px;}
.yab{bottom:276.303000px;}
.y1b5{bottom:276.513000px;}
.ycf{bottom:276.883500px;}
.y25c{bottom:276.985500px;}
.y1a{bottom:277.509000px;}
.y81{bottom:279.190500px;}
.y219{bottom:280.788000px;}
.y3b{bottom:282.210000px;}
.y16d{bottom:283.486500px;}
.y23a{bottom:285.088500px;}
.y14a{bottom:285.106500px;}
.y29c{bottom:285.274500px;}
.y193{bottom:286.059000px;}
.y12b{bottom:286.476000px;}
.y2c3{bottom:290.596500px;}
.y1da{bottom:291.091500px;}
.y10d{bottom:293.302500px;}
.yaa{bottom:294.235500px;}
.y2c2{bottom:294.373500px;}
.y1b4{bottom:294.445500px;}
.y1fa{bottom:294.751500px;}
.yce{bottom:294.816000px;}
.y1d9{bottom:294.868500px;}
.y25b{bottom:294.918000px;}
.y19{bottom:295.441500px;}
.y80{bottom:297.123000px;}
.y218{bottom:298.720500px;}
.y27c{bottom:302.001000px;}
.y149{bottom:303.039000px;}
.y12a{bottom:304.408500px;}
.y16c{bottom:306.691500px;}
.y58{bottom:307.284000px;}
.y16b{bottom:310.386000px;}
.y192{bottom:312.748500px;}
.ycd{bottom:312.750000px;}
.y18{bottom:313.375500px;}
.y7f{bottom:315.055500px;}
.y3a{bottom:315.087000px;}
.y217{bottom:316.653000px;}
.y1b3{bottom:318.813000px;}
.y7e{bottom:318.834000px;}
.y39{bottom:318.865500px;}
.ya9{bottom:319.927500px;}
.y27b{bottom:319.933500px;}
.y10c{bottom:320.202000px;}
.y239{bottom:320.955000px;}
.y29b{bottom:321.139500px;}
.y25a{bottom:321.292500px;}
.y2c1{bottom:321.658500px;}
.yef{bottom:322.341000px;}
.y1d8{bottom:323.118000px;}
.y1f9{bottom:326.479500px;}
.y148{bottom:329.253000px;}
.y1f8{bottom:330.256500px;}
.y191{bottom:330.681000px;}
.y7d{bottom:332.988000px;}
.y216{bottom:334.587000px;}
.y1b2{bottom:335.998500px;}
.ya8{bottom:337.860000px;}
.y27a{bottom:337.866000px;}
.y10b{bottom:338.134500px;}
.ycc{bottom:339.024000px;}
.y29a{bottom:339.072000px;}
.y259{bottom:339.225000px;}
.y2c0{bottom:339.592500px;}
.yee{bottom:340.273500px;}
.y1d7{bottom:341.050500px;}
.y17{bottom:346.251000px;}
.y147{bottom:347.185500px;}
.y38{bottom:347.964000px;}
.y7c{bottom:350.922000px;}
.y215{bottom:352.519500px;}
.y238{bottom:353.409000px;}
.y57{bottom:356.019000px;}
.ycb{bottom:356.956500px;}
.y299{bottom:357.004500px;}
.y190{bottom:357.372000px;}
.y2bf{bottom:357.525000px;}
.yed{bottom:358.206000px;}
.y1d6{bottom:358.983000px;}
.y16a{bottom:364.183500px;}
.y279{bottom:364.765500px;}
.y10a{bottom:365.034000px;}
.y278{bottom:368.542500px;}
.ya7{bottom:368.725500px;}
.y7b{bottom:368.854500px;}
.y146{bottom:369.373500px;}
.y214{bottom:370.452000px;}
.y258{bottom:371.229000px;}
.y1b1{bottom:371.863500px;}
.y7a{bottom:372.631500px;}
.y145{bottom:373.068000px;}
.y298{bottom:374.938500px;}
.y18f{bottom:375.304500px;}
.y37{bottom:375.547500px;}
.y129{bottom:376.138500px;}
.y1d5{bottom:376.915500px;}
.yca{bottom:379.036500px;}
.y16{bottom:379.128000px;}
.y56{bottom:381.730500px;}
.y169{bottom:382.117500px;}
.yc9{bottom:382.731000px;}
.y109{bottom:382.966500px;}
.y144{bottom:383.319000px;}
.yec{bottom:385.105500px;}
.y55{bottom:385.425000px;}
.y237{bottom:385.864500px;}
.y2be{bottom:386.428500px;}
.y79{bottom:386.787000px;}
.y213{bottom:388.384500px;}
.y2bd{bottom:390.207000px;}
.yc8{bottom:392.982000px;}
.y128{bottom:394.072500px;}
.y1d4{bottom:394.848000px;}
.y54{bottom:395.676000px;}
.ya6{bottom:399.591000px;}
.y168{bottom:400.050000px;}
.y277{bottom:400.630500px;}
.y18e{bottom:401.995500px;}
.y257{bottom:403.231500px;}
.y236{bottom:403.797000px;}
.y78{bottom:404.719500px;}
.y1b0{bottom:404.740500px;}
.y212{bottom:406.317000px;}
.y106{bottom:407.332500px;}
.y297{bottom:407.814000px;}
.y108{bottom:410.574000px;}
.y15{bottom:412.005000px;}
.y1d3{bottom:412.782000px;}
.y107{bottom:414.268500px;}
.y2bc{bottom:415.333500px;}
.y36{bottom:417.381000px;}
.y167{bottom:417.982500px;}
.y18d{bottom:419.928000px;}
.y1f7{bottom:420.282000px;}
.yeb{bottom:420.970500px;}
.y143{bottom:421.572000px;}
.y77{bottom:422.652000px;}
.y211{bottom:424.251000px;}
.y256{bottom:424.377000px;}
.y105{bottom:424.518000px;}
.y276{bottom:424.998000px;}
.ya5{bottom:425.284500px;}
.y53{bottom:427.594500px;}
.y255{bottom:428.769000px;}
.yc7{bottom:428.848500px;}
.y127{bottom:429.937500px;}
.y235{bottom:430.443000px;}
.y1d2{bottom:430.714500px;}
.y166{bottom:435.915000px;}
.y1af{bottom:437.617500px;}
.y18c{bottom:437.860500px;}
.y1f6{bottom:438.214500px;}
.y254{bottom:439.018500px;}
.y76{bottom:440.584500px;}
.y296{bottom:440.691000px;}
.y210{bottom:442.183500px;}
.ya4{bottom:443.217000px;}
.y2bb{bottom:444.238500px;}
.y52{bottom:445.527000px;}
.y275{bottom:445.960500px;}
.yea{bottom:447.870000px;}
.y2ba{bottom:448.015500px;}
.y234{bottom:448.377000px;}
.y35{bottom:450.258000px;}
.y142{bottom:453.307500px;}
.y165{bottom:453.847500px;}
.y34{bottom:454.035000px;}
.y1ae{bottom:455.550000px;}
.y18b{bottom:455.794500px;}
.y1f5{bottom:456.147000px;}
.y75{bottom:458.518500px;}
.y20f{bottom:460.116000px;}
.yc6{bottom:460.683000px;}
.ya3{bottom:461.149500px;}
.y14{bottom:461.250000px;}
.y1d1{bottom:462.739500px;}
.y104{bottom:463.686000px;}
.y295{bottom:464.394000px;}
.y126{bottom:465.802500px;}
.y294{bottom:468.088500px;}
.y164{bottom:471.780000px;}
.y233{bottom:472.491000px;}
.y2b9{bottom:473.142000px;}
.y18a{bottom:473.727000px;}
.y1f4{bottom:474.079500px;}
.y253{bottom:474.885000px;}
.y74{bottom:476.451000px;}
.y13{bottom:477.688500px;}
.y20e{bottom:478.048500px;}
.y51{bottom:478.258500px;}
.y293{bottom:478.339500px;}
.ya2{bottom:479.082000px;}
.y1ad{bottom:479.916000px;}
.y103{bottom:481.618500px;}
.y33{bottom:483.133500px;}
.y179{bottom:483.735000px;}
.ye9{bottom:483.736500px;}
.y141{bottom:485.043000px;}
.y232{bottom:489.676500px;}
.y163{bottom:489.714000px;}
.y189{bottom:491.659500px;}
.yc5{bottom:492.517500px;}
.y231{bottom:493.453500px;}
.y12{bottom:494.127000px;}
.y73{bottom:494.383500px;}
.y1d0{bottom:494.766000px;}
.y20d{bottom:495.981000px;}
.ya1{bottom:497.014500px;}
.y1ac{bottom:497.103000px;}
.y1f3{bottom:500.289000px;}
.y32{bottom:501.067500px;}
.y252{bottom:501.259500px;}
.y125{bottom:501.669000px;}
.y2b8{bottom:502.047000px;}
.y274{bottom:504.948000px;}
.y2b7{bottom:505.824000px;}
.y162{bottom:507.646500px;}
.y102{bottom:508.518000px;}
.yc4{bottom:510.450000px;}
.y11{bottom:510.565500px;}
.ye8{bottom:510.634500px;}
.y140{bottom:511.257000px;}
.y72{bottom:512.316000px;}
.y1cf{bottom:512.698500px;}
.y20c{bottom:513.913500px;}
.y292{bottom:514.204500px;}
.ya0{bottom:514.947000px;}
.y1f2{bottom:518.221500px;}
.y188{bottom:518.350500px;}
.y251{bottom:519.192000px;}
.y124{bottom:519.601500px;}
.y187{bottom:522.127500px;}
.y273{bottom:522.880500px;}
.y2dd{bottom:524.062500px;}
.y230{bottom:525.541500px;}
.y161{bottom:525.579000px;}
.y50{bottom:526.993500px;}
.y10{bottom:527.004000px;}
.y31{bottom:527.965500px;}
.yc3{bottom:528.382500px;}
.y175{bottom:528.567000px;}
.y13f{bottom:529.189500px;}
.y71{bottom:530.248500px;}
.y2b6{bottom:530.950500px;}
.y30{bottom:531.744000px;}
.y20b{bottom:531.847500px;}
.y291{bottom:532.137000px;}
.y9f{bottom:532.881000px;}
.y1ab{bottom:532.968000px;}
.y1f1{bottom:536.154000px;}
.y123{bottom:537.534000px;}
.yf{bottom:543.442500px;}
.y160{bottom:543.511500px;}
.y101{bottom:544.383000px;}
.y1ce{bottom:544.723500px;}
.y4f{bottom:544.926000px;}
.yc2{bottom:546.315000px;}
.ye7{bottom:546.501000px;}
.y70{bottom:548.181000px;}
.y1cd{bottom:548.502000px;}
.y2b5{bottom:548.884500px;}
.y20a{bottom:549.780000px;}
.y290{bottom:550.071000px;}
.y9e{bottom:550.813500px;}
.y250{bottom:551.196000px;}
.y186{bottom:554.215500px;}
.y13e{bottom:555.403500px;}
.y122{bottom:555.466500px;}
.y22f{bottom:557.997000px;}
.ye{bottom:559.881000px;}
.y15f{bottom:561.444000px;}
.y4e{bottom:562.860000px;}
.y2f{bottom:563.832000px;}
.yc1{bottom:564.247500px;}
.ye6{bottom:564.433500px;}
.y1aa{bottom:565.845000px;}
.y6f{bottom:566.115000px;}
.y2b4{bottom:566.817000px;}
.y209{bottom:567.712500px;}
.y1f0{bottom:567.882000px;}
.y28f{bottom:568.003500px;}
.y9d{bottom:568.746000px;}
.y100{bottom:568.750500px;}
.y13d{bottom:573.337500px;}
.y121{bottom:573.399000px;}
.y2dc{bottom:573.481500px;}
.yd{bottom:576.319500px;}
.y1cc{bottom:576.750000px;}
.y15e{bottom:579.376500px;}
.y185{bottom:580.906500px;}
.y2e{bottom:581.764500px;}
.ye5{bottom:582.366000px;}
.y24f{bottom:583.198500px;}
.y6e{bottom:584.047500px;}
.y2b3{bottom:584.749500px;}
.y208{bottom:585.645000px;}
.yff{bottom:585.936000px;}
.y9c{bottom:586.678500px;}
.ybf{bottom:587.989500px;}
.y4b{bottom:589.234500px;}
.y22e{bottom:590.451000px;}
.y13c{bottom:591.270000px;}
.y120{bottom:591.333000px;}
.y2db{bottom:591.414000px;}
.y4d{bottom:592.474500px;}
.yc{bottom:592.758000px;}
.y272{bottom:594.612000px;}
.y4c{bottom:596.169000px;}
.y15d{bottom:597.310500px;}
.y1a9{bottom:598.720500px;}
.y184{bottom:598.839000px;}
.y1ef{bottom:599.608500px;}
.y2d{bottom:599.697000px;}
.ye4{bottom:600.298500px;}
.y24e{bottom:601.131000px;}
.yc0{bottom:601.480500px;}
.y6d{bottom:601.980000px;}
.y2b2{bottom:602.682000px;}
.y207{bottom:603.577500px;}
.y9b{bottom:604.611000px;}
.ybe{bottom:605.175000px;}
.y4a{bottom:606.420000px;}
.y22d{bottom:608.385000px;}
.y1cb{bottom:608.775000px;}
.yb{bottom:609.196500px;}
.y13b{bottom:609.202500px;}
.y11f{bottom:609.265500px;}
.y2da{bottom:609.346500px;}
.y271{bottom:612.544500px;}
.y1ca{bottom:612.553500px;}
.y28e{bottom:612.835500px;}
.y15c{bottom:615.243000px;}
.y1a8{bottom:616.654500px;}
.y1ee{bottom:617.541000px;}
.y2c{bottom:617.629500px;}
.ye3{bottom:618.231000px;}
.y24d{bottom:619.063500px;}
.y6c{bottom:619.912500px;}
.y2b1{bottom:620.614500px;}
.y206{bottom:621.510000px;}
.yfe{bottom:621.801000px;}
.y9a{bottom:622.543500px;}
.y183{bottom:625.530000px;}
.y22c{bottom:626.317500px;}
.y13a{bottom:627.135000px;}
.y11e{bottom:627.198000px;}
.y2d9{bottom:627.280500px;}
.y182{bottom:629.307000px;}
.y270{bottom:630.477000px;}
.y28d{bottom:630.768000px;}
.ya{bottom:631.615500px;}
.y15b{bottom:633.175500px;}
.y1ed{bottom:635.475000px;}
.y2b{bottom:635.562000px;}
.ye2{bottom:636.163500px;}
.y24c{bottom:636.996000px;}
.y6b{bottom:637.845000px;}
.y2b0{bottom:638.547000px;}
.y205{bottom:639.444000px;}
.y99{bottom:640.477500px;}
.y1c9{bottom:640.801500px;}
.ybd{bottom:641.040000px;}
.y49{bottom:641.535000px;}
.y11d{bottom:645.130500px;}
.y2d8{bottom:645.213000px;}
.yfd{bottom:646.168500px;}
.y26f{bottom:648.409500px;}
.y1a7{bottom:649.530000px;}
.y15a{bottom:651.108000px;}
.y1ec{bottom:653.407500px;}
.ye1{bottom:654.097500px;}
.y24b{bottom:654.930000px;}
.y6a{bottom:655.779000px;}
.y2af{bottom:656.481000px;}
.y204{bottom:657.376500px;}
.y98{bottom:658.410000px;}
.y22b{bottom:658.773000px;}
.y139{bottom:658.870500px;}
.ybc{bottom:658.974000px;}
.y48{bottom:659.469000px;}
.y181{bottom:661.395000px;}
.y9{bottom:661.992000px;}
.y11c{bottom:663.063000px;}
.y2a{bottom:663.147000px;}
.yfc{bottom:663.354000px;}
.y28c{bottom:663.645000px;}
.y26e{bottom:666.342000px;}
.y1c8{bottom:667.189500px;}
.y159{bottom:669.040500px;}
.y1eb{bottom:671.340000px;}
.ye0{bottom:672.030000px;}
.y69{bottom:673.711500px;}
.y2ae{bottom:674.413500px;}
.y203{bottom:675.309000px;}
.y97{bottom:676.342500px;}
.y8{bottom:679.924500px;}
.y2d7{bottom:680.082000px;}
.y11b{bottom:680.995500px;}
.y24a{bottom:681.304500px;}
.y1a6{bottom:682.407000px;}
.ybb{bottom:682.714500px;}
.y26d{bottom:684.276000px;}
.y1c7{bottom:685.123500px;}
.y158{bottom:686.973000px;}
.y1ea{bottom:689.272500px;}
.ydf{bottom:689.962500px;}
.y138{bottom:690.606000px;}
.y22a{bottom:691.227000px;}
.y68{bottom:691.644000px;}
.y47{bottom:692.200500px;}
.y2ad{bottom:692.346000px;}
.y202{bottom:693.241500px;}
.y180{bottom:693.924000px;}
.y96{bottom:694.275000px;}
.y28b{bottom:696.520500px;}
.y17f{bottom:697.702500px;}
.y7{bottom:697.857000px;}
.y29{bottom:698.866500px;}
.y11a{bottom:698.929500px;}
.yfb{bottom:699.219000px;}
.y249{bottom:699.237000px;}
.yba{bottom:699.900000px;}
.y26c{bottom:702.208500px;}
.y1c6{bottom:703.056000px;}
.yb9{bottom:703.678500px;}
.y157{bottom:704.907000px;}
.y1e9{bottom:707.205000px;}
.yde{bottom:707.895000px;}
.y229{bottom:709.159500px;}
.y1a5{bottom:709.306500px;}
.y67{bottom:709.576500px;}
.y2ac{bottom:710.278500px;}
.y201{bottom:711.174000px;}
.y95{bottom:712.207500px;}
.y2d6{bottom:712.959000px;}
.y6{bottom:715.791000px;}
.y119{bottom:716.862000px;}
.yfa{bottom:717.151500px;}
.y26b{bottom:720.141000px;}
.y137{bottom:722.341500px;}
.y28a{bottom:723.420000px;}
.y1e8{bottom:725.139000px;}
.y248{bottom:725.611500px;}
.ydd{bottom:725.827500px;}
.y17e{bottom:726.453000px;}
.y1a4{bottom:727.239000px;}
.y66{bottom:727.509000px;}
.y2ab{bottom:728.211000px;}
.y200{bottom:729.106500px;}
.y1c5{bottom:729.444000px;}
.y94{bottom:730.141500px;}
.y2d5{bottom:730.891500px;}
.y156{bottom:731.805000px;}
.y1c4{bottom:733.221000px;}
.y46{bottom:734.002500px;}
.y118{bottom:734.794500px;}
.yb8{bottom:735.766500px;}
.y228{bottom:735.807000px;}
.y26a{bottom:738.073500px;}
.y227{bottom:739.584000px;}
.y289{bottom:741.352500px;}
.y1e7{bottom:743.071500px;}
.y247{bottom:743.545500px;}
.ydc{bottom:743.761500px;}
.yf9{bottom:744.051000px;}
.y65{bottom:745.441500px;}
.y2aa{bottom:746.143500px;}
.y1ff{bottom:747.040500px;}
.y93{bottom:748.074000px;}
.y28{bottom:748.285500px;}
.y5{bottom:748.522500px;}
.y2d4{bottom:748.824000px;}
.y155{bottom:749.739000px;}
.y45{bottom:751.188000px;}
.y1a3{bottom:751.606500px;}
.y117{bottom:752.727000px;}
.y17d{bottom:753.144000px;}
.y136{bottom:754.075500px;}
.y269{bottom:756.006000px;}
.y288{bottom:759.286500px;}
.y1e6{bottom:761.004000px;}
.ydb{bottom:761.694000px;}
.y64{bottom:763.375500px;}
.y2a9{bottom:764.077500px;}
.y1c3{bottom:765.309000px;}
.y92{bottom:766.006500px;}
.y27{bottom:766.218000px;}
.yb7{bottom:767.601000px;}
.y1a2{bottom:768.792000px;}
.y116{bottom:770.659500px;}
.y17c{bottom:771.076500px;}
.y1fd{bottom:771.406500px;}
.y226{bottom:771.672000px;}
.y1a1{bottom:772.569000px;}
.y268{bottom:773.940000px;}
.y246{bottom:775.548000px;}
.y154{bottom:776.637000px;}
.y2d3{bottom:777.675000px;}
.y1e5{bottom:778.936500px;}
.yda{bottom:779.626500px;}
.yf8{bottom:779.917500px;}
.y91{bottom:780.244500px;}
.y135{bottom:780.291000px;}
.y63{bottom:781.308000px;}
.y2d2{bottom:781.368000px;}
.y2a8{bottom:782.010000px;}
.y44{bottom:782.254500px;}
.y1c2{bottom:783.243000px;}
.y286{bottom:783.652500px;}
.y90{bottom:783.939000px;}
.y26{bottom:784.150500px;}
.y1fe{bottom:784.897500px;}
.y178{bottom:788.592000px;}
.y2d1{bottom:791.619000px;}
.y267{bottom:791.872500px;}
.y153{bottom:794.571000px;}
.y1e4{bottom:796.869000px;}
.y287{bottom:797.143500px;}
.yd9{bottom:797.559000px;}
.y17b{bottom:797.767500px;}
.y134{bottom:798.223500px;}
.y225{bottom:798.318000px;}
.y62{bottom:799.240500px;}
.yb6{bottom:799.435500px;}
.y2a7{bottom:799.942500px;}
.y285{bottom:800.838000px;}
.y1c1{bottom:801.175500px;}
.y8f{bottom:801.871500px;}
.y25{bottom:802.084500px;}
.y224{bottom:802.095000px;}
.yf7{bottom:804.283500px;}
.y1a0{bottom:804.657000px;}
.y174{bottom:806.526000px;}
.y245{bottom:807.550500px;}
.y43{bottom:808.630500px;}
.y266{bottom:809.805000px;}
.y4{bottom:811.705500px;}
.y152{bottom:812.503500px;}
.y1e3{bottom:814.801500px;}
.yd8{bottom:815.491500px;}
.y17a{bottom:815.700000px;}
.y61{bottom:817.173000px;}
.y2a6{bottom:817.875000px;}
.y1c0{bottom:819.108000px;}
.y8e{bottom:819.804000px;}
.y24{bottom:820.017000px;}
.y133{bottom:820.743000px;}
.yf6{bottom:821.469000px;}
.y19f{bottom:822.589500px;}
.y132{bottom:824.437500px;}
.y173{bottom:824.458500px;}
.yf5{bottom:825.247500px;}
.yb5{bottom:825.709500px;}
.y42{bottom:825.816000px;}
.y2d0{bottom:827.508000px;}
.y265{bottom:827.737500px;}
.yb4{bottom:829.486500px;}
.y151{bottom:830.436000px;}
.y1e2{bottom:832.735500px;}
.yd7{bottom:833.424000px;}
.y244{bottom:833.926500px;}
.y223{bottom:834.183000px;}
.y2a5{bottom:835.807500px;}
.y284{bottom:836.704500px;}
.y8d{bottom:837.738000px;}
.y23{bottom:837.949500px;}
.y19e{bottom:840.523500px;}
.y115{bottom:842.391000px;}
.y2cf{bottom:845.440500px;}
.y1bf{bottom:845.496000px;}
.y264{bottom:845.670000px;}
.y3{bottom:846.874500px;}
.y150{bottom:848.368500px;}
.y60{bottom:849.904500px;}
.y1e1{bottom:850.668000px;}
.yd6{bottom:851.358000px;}
.y243{bottom:851.859000px;}
.y2a4{bottom:853.740000px;}
.y283{bottom:854.637000px;}
.y8c{bottom:855.670500px;}
.y41{bottom:856.882500px;}
.yf4{bottom:857.335500px;}
.y19d{bottom:858.456000px;}
.y131{bottom:860.302500px;}
.y172{bottom:860.323500px;}
.y222{bottom:860.829000px;}
.yb3{bottom:861.574500px;}
.y2ce{bottom:863.373000px;}
.y1be{bottom:863.430000px;}
.y14f{bottom:866.301000px;}
.y1e0{bottom:868.600500px;}
.yd5{bottom:869.290500px;}
.y242{bottom:869.791500px;}
.y22{bottom:870.681000px;}
.y2a3{bottom:871.674000px;}
.y263{bottom:872.569500px;}
.y40{bottom:874.815000px;}
.y130{bottom:878.235000px;}
.y114{bottom:878.256000px;}
.y221{bottom:878.763000px;}
.y2cd{bottom:881.305500px;}
.y8b{bottom:884.004000px;}
.y14e{bottom:884.233500px;}
.y1df{bottom:886.533000px;}
.yd4{bottom:887.223000px;}
.yb2{bottom:887.848500px;}
.y19c{bottom:888.799500px;}
.y2a2{bottom:889.606500px;}
.y2{bottom:890.211000px;}
.y23f{bottom:893.634000px;}
.y1bd{bottom:895.455000px;}
.y177{bottom:896.188500px;}
.y241{bottom:896.875500px;}
.y282{bottom:896.937000px;}
.y5f{bottom:899.323500px;}
.y240{bottom:900.570000px;}
.y8a{bottom:901.189500px;}
.y14d{bottom:902.167500px;}
.y3f{bottom:903.499500px;}
.y1de{bottom:904.465500px;}
.y89{bottom:904.966500px;}
.yd3{bottom:905.155500px;}
.y220{bottom:905.409000px;}
.yb1{bottom:905.781000px;}
.y19b{bottom:905.986500px;}
.y2a1{bottom:907.539000px;}
.y262{bottom:908.434500px;}
.y21f{bottom:909.186000px;}
.y12f{bottom:909.970500px;}
.y23e{bottom:910.819500px;}
.y2ca{bottom:911.650500px;}
.y176{bottom:914.122500px;}
.y2cc{bottom:914.890500px;}
.y5e{bottom:917.256000px;}
.y2cb{bottom:918.585000px;}
.y21{bottom:920.100000px;}
.y3e{bottom:920.685000px;}
.y1{bottom:923.088000px;}
.yb0{bottom:923.713500px;}
.y3d{bottom:924.463500px;}
.y261{bottom:926.367000px;}
.y1bc{bottom:927.481500px;}
.y2c9{bottom:928.836000px;}
.yd2{bottom:932.055000px;}
.y5d{bottom:935.188500px;}
.y113{bottom:936.042000px;}
.y1dd{bottom:936.193500px;}
.y112{bottom:939.736500px;}
.y19a{bottom:941.020500px;}
.y21e{bottom:941.274000px;}
.y12e{bottom:941.706000px;}
.y88{bottom:949.987500px;}
.y1bb{bottom:950.673000px;}
.y260{bottom:950.734500px;}
.y20{bottom:952.977000px;}
.y3c{bottom:953.121000px;}
.yaf{bottom:953.764500px;}
.y1ba{bottom:954.367500px;}
.y1b9{bottom:964.618500px;}
.y87{bottom:967.920000px;}
.y199{bottom:971.698500px;}
.y1f{bottom:985.852500px;}
.hc{height:29.833916px;}
.h5{height:37.658880px;}
.h6{height:40.348800px;}
.h7{height:41.842920px;}
.h4{height:44.831700px;}
.h1a{height:44.832000px;}
.h12{height:46.725331px;}
.h1b{height:46.731331px;}
.h19{height:50.043331px;}
.h8{height:50.211840px;}
.h2{height:50.498765px;}
.h15{height:51.147331px;}
.hd{height:51.523916px;}
.h14{height:51.529916px;}
.h18{height:54.135331px;}
.h10{height:54.141331px;}
.h17{height:54.511916px;}
.ha{height:54.517916px;}
.he{height:56.784000px;}
.hb{height:56.790000px;}
.h16{height:59.609700px;}
.h9{height:59.939700px;}
.hf{height:59.945700px;}
.h3{height:60.254040px;}
.h1{height:73.027727px;}
.h13{height:85.265700px;}
.h11{height:85.271700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:200.652000px;}
.x2c{left:204.690000px;}
.x1{left:218.169000px;}
.x6{left:223.068000px;}
.x29{left:224.728500px;}
.x9{left:238.012500px;}
.x2a{left:253.003500px;}
.x8{left:258.747000px;}
.x2d{left:274.216500px;}
.x37{left:275.886000px;}
.x2b{left:302.551500px;}
.x3a{left:306.184500px;}
.x3e{left:308.773500px;}
.x3{left:317.313000px;}
.x48{left:324.445500px;}
.x42{left:326.938500px;}
.x4d{left:329.559000px;}
.x53{left:333.652500px;}
.x4a{left:337.207500px;}
.x36{left:338.499000px;}
.x63{left:343.962000px;}
.x33{left:347.820000px;}
.x1c{left:349.122000px;}
.x3d{left:354.072000px;}
.x12{left:359.617500px;}
.x11{left:363.033000px;}
.x4f{left:366.655500px;}
.x14{left:367.900500px;}
.x65{left:369.546000px;}
.x4e{left:370.693500px;}
.x13{left:371.938500px;}
.x21{left:373.281000px;}
.x2{left:376.644000px;}
.x32{left:379.128000px;}
.x1a{left:380.325000px;}
.x31{left:382.543500px;}
.x4b{left:384.945000px;}
.x54{left:388.756500px;}
.x3f{left:392.517000px;}
.x4{left:395.272500px;}
.xf{left:398.047500px;}
.xe{left:399.708000px;}
.x58{left:401.161500px;}
.x60{left:402.670500px;}
.x25{left:406.267500px;}
.x17{left:408.138000px;}
.x55{left:409.821000px;}
.xd{left:410.823000px;}
.xc{left:412.483500px;}
.x5b{left:414.520500px;}
.x50{left:419.736000px;}
.x15{left:420.982500px;}
.x35{left:424.128000px;}
.x26{left:426.733500px;}
.x7{left:427.995000px;}
.x1d{left:429.957000px;}
.x3b{left:432.136500px;}
.x4c{left:434.908500px;}
.x51{left:436.099500px;}
.x16{left:437.346000px;}
.x41{left:439.764000px;}
.x5a{left:440.917500px;}
.x30{left:442.222500px;}
.x47{left:443.469000px;}
.x2e{left:445.578000px;}
.x52{left:447.642000px;}
.x3c{left:448.684500px;}
.x34{left:449.856000px;}
.x46{left:450.964500px;}
.x2f{left:452.053500px;}
.x62{left:453.579000px;}
.xa{left:454.699500px;}
.x18{left:457.362000px;}
.x38{left:459.438000px;}
.x28{left:463.624500px;}
.x40{left:470.238000px;}
.x1b{left:471.354000px;}
.x19{left:473.725500px;}
.x39{left:475.801500px;}
.x10{left:477.531000px;}
.x27{left:489.294000px;}
.xb{left:492.102000px;}
.x66{left:503.143500px;}
.x22{left:514.470000px;}
.x59{left:515.821500px;}
.x43{left:518.206500px;}
.x23{left:521.212500px;}
.x44{left:524.947500px;}
.x56{left:532.144500px;}
.x49{left:538.309500px;}
.x24{left:539.439000px;}
.x1e{left:542.302500px;}
.x57{left:546.697500px;}
.x1f{left:549.045000px;}
.x61{left:550.453500px;}
.x5d{left:552.160500px;}
.x64{left:555.997500px;}
.x5e{left:558.903000px;}
.x5c{left:561.607500px;}
.x20{left:563.598000px;}
.x5f{left:573.456000px;}
.x45{left:585.783000px;}
@media print{
.vc{vertical-align:-50.330667pt;}
.vb{vertical-align:-15.941333pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:5.162667pt;}
.v2{vertical-align:13.429333pt;}
.v8{vertical-align:15.349333pt;}
.v4{vertical-align:16.629333pt;}
.ve{vertical-align:18.298667pt;}
.v6{vertical-align:19.280000pt;}
.v3{vertical-align:21.941333pt;}
.v9{vertical-align:27.973333pt;}
.v7{vertical-align:35.946667pt;}
.va{vertical-align:39.850667pt;}
.v5{vertical-align:50.480000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000277pt;}
.ls56{letter-spacing:0.000483pt;}
.ls32{letter-spacing:0.000882pt;}
.ls18{letter-spacing:0.000996pt;}
.ls5b{letter-spacing:0.001329pt;}
.ls42{letter-spacing:0.001509pt;}
.ls3c{letter-spacing:0.001855pt;}
.ls16{letter-spacing:0.001857pt;}
.ls1c{letter-spacing:0.002079pt;}
.ls50{letter-spacing:0.002174pt;}
.ls67{letter-spacing:0.002205pt;}
.ls2d{letter-spacing:0.003246pt;}
.ls20{letter-spacing:0.003709pt;}
.ls13{letter-spacing:0.004690pt;}
.ls22{letter-spacing:0.004794pt;}
.ls58{letter-spacing:0.004932pt;}
.ls4c{letter-spacing:0.005388pt;}
.ls31{letter-spacing:0.005860pt;}
.ls4a{letter-spacing:0.006842pt;}
.ls6f{letter-spacing:0.008246pt;}
.ls62{letter-spacing:0.008936pt;}
.ls43{letter-spacing:0.010486pt;}
.ls51{letter-spacing:0.010800pt;}
.ls49{letter-spacing:0.011135pt;}
.ls25{letter-spacing:0.014269pt;}
.ls2c{letter-spacing:0.016244pt;}
.ls2a{letter-spacing:0.020427pt;}
.ls70{letter-spacing:0.021900pt;}
.ls7{letter-spacing:0.023560pt;}
.ls60{letter-spacing:0.024503pt;}
.lsf{letter-spacing:0.025926pt;}
.ls41{letter-spacing:1.454216pt;}
.ls2f{letter-spacing:1.471333pt;}
.ls28{letter-spacing:1.476666pt;}
.ls45{letter-spacing:1.902375pt;}
.ls4b{letter-spacing:1.907709pt;}
.lsa{letter-spacing:1.912819pt;}
.ls1d{letter-spacing:2.652911pt;}
.ls10{letter-spacing:2.656689pt;}
.ls4f{letter-spacing:2.658245pt;}
.ls64{letter-spacing:2.660312pt;}
.ls5d{letter-spacing:2.662022pt;}
.ls46{letter-spacing:3.657876pt;}
.ls59{letter-spacing:3.986764pt;}
.ls26{letter-spacing:3.992098pt;}
.ls63{letter-spacing:4.470484pt;}
.ls36{letter-spacing:5.113271pt;}
.ls37{letter-spacing:5.132839pt;}
.ls3a{letter-spacing:5.260253pt;}
.ls34{letter-spacing:5.279357pt;}
.ls5{letter-spacing:5.313773pt;}
.ls5c{letter-spacing:5.791591pt;}
.lsb{letter-spacing:5.903552pt;}
.ls39{letter-spacing:5.908885pt;}
.ls65{letter-spacing:7.375829pt;}
.ls4d{letter-spacing:8.560659pt;}
.ls9{letter-spacing:8.820222pt;}
.ls3d{letter-spacing:8.837530pt;}
.ls1f{letter-spacing:8.842863pt;}
.ls40{letter-spacing:8.873356pt;}
.ls44{letter-spacing:11.515356pt;}
.ls24{letter-spacing:11.795718pt;}
.ls66{letter-spacing:12.018727pt;}
.ls6a{letter-spacing:12.433325pt;}
.ls3e{letter-spacing:12.845431pt;}
.ls21{letter-spacing:12.850764pt;}
.ls68{letter-spacing:12.964663pt;}
.ls69{letter-spacing:13.549136pt;}
.ls1a{letter-spacing:14.352130pt;}
.ls47{letter-spacing:14.459356pt;}
.ls23{letter-spacing:14.464689pt;}
.ls61{letter-spacing:14.468312pt;}
.lse{letter-spacing:14.718081pt;}
.ls1b{letter-spacing:14.738727pt;}
.ls3b{letter-spacing:14.743868pt;}
.ls17{letter-spacing:14.744060pt;}
.ls14{letter-spacing:14.757812pt;}
.ls4e{letter-spacing:14.763145pt;}
.ls4{letter-spacing:14.771215pt;}
.ls35{letter-spacing:15.511578pt;}
.ls33{letter-spacing:17.007992pt;}
.ls8{letter-spacing:17.414022pt;}
.ls11{letter-spacing:17.419356pt;}
.lsd{letter-spacing:17.693578pt;}
.ls48{letter-spacing:18.191666pt;}
.ls2e{letter-spacing:18.193266pt;}
.ls5f{letter-spacing:18.749431pt;}
.ls53{letter-spacing:19.075058pt;}
.ls2b{letter-spacing:20.368689pt;}
.ls2{letter-spacing:22.581893pt;}
.ls76{letter-spacing:22.844839pt;}
.ls55{letter-spacing:25.717812pt;}
.ls27{letter-spacing:27.757573pt;}
.ls72{letter-spacing:27.762906pt;}
.ls54{letter-spacing:28.664570pt;}
.ls0{letter-spacing:28.692400pt;}
.ls3{letter-spacing:30.456817pt;}
.ls52{letter-spacing:39.579933pt;}
.ls5e{letter-spacing:39.585266pt;}
.ls5a{letter-spacing:67.912642pt;}
.ls73{letter-spacing:433.412950pt;}
.ls29{letter-spacing:459.979884pt;}
.ls71{letter-spacing:467.631161pt;}
.ls1e{letter-spacing:494.198094pt;}
.ls12{letter-spacing:497.332992pt;}
.ls6e{letter-spacing:500.202221pt;}
.ls74{letter-spacing:519.330413pt;}
.ls15{letter-spacing:526.769154pt;}
.ls6d{letter-spacing:540.105755pt;}
.ls30{letter-spacing:545.897346pt;}
.ls6c{letter-spacing:607.373230pt;}
.lsc{letter-spacing:633.940163pt;}
.ls75{letter-spacing:636.596857pt;}
.ls6b{letter-spacing:652.802686pt;}
.ls38{letter-spacing:663.163790pt;}
.ls19{letter-spacing:669.805523pt;}
.ls6{letter-spacing:679.369619pt;}
.ls57{letter-spacing:770.781149pt;}
.ws20{word-spacing:-53.133867pt;}
.ws2b{word-spacing:-41.338148pt;}
.ws21{word-spacing:-38.362652pt;}
.ws23{word-spacing:-34.611401pt;}
.ws24{word-spacing:-28.118362pt;}
.ws31{word-spacing:-25.791179pt;}
.ws74{word-spacing:-25.738045pt;}
.wsa8{word-spacing:-16.615017pt;}
.ws45{word-spacing:-16.439618pt;}
.ws72{word-spacing:-16.391423pt;}
.wsa9{word-spacing:-15.279609pt;}
.wsa7{word-spacing:-15.272242pt;}
.ws4a{word-spacing:-15.268030pt;}
.ws22{word-spacing:-14.760588pt;}
.ws73{word-spacing:-13.665684pt;}
.wsad{word-spacing:-13.442090pt;}
.ws9{word-spacing:-12.543396pt;}
.wsd6{word-spacing:-12.322908pt;}
.ws2a{word-spacing:-11.177530pt;}
.ws54{word-spacing:-10.973575pt;}
.wsa5{word-spacing:-10.711017pt;}
.wsac{word-spacing:-9.663656pt;}
.ws32{word-spacing:-9.368242pt;}
.wsbc{word-spacing:-8.891566pt;}
.wsba{word-spacing:-8.886232pt;}
.wsa6{word-spacing:-8.228197pt;}
.ws29{word-spacing:-8.222864pt;}
.ws82{word-spacing:-6.534752pt;}
.ws48{word-spacing:-6.529418pt;}
.ws2f{word-spacing:-6.418908pt;}
.wsbb{word-spacing:-5.940366pt;}
.wsb8{word-spacing:-5.887232pt;}
.ws28{word-spacing:-5.273530pt;}
.ws4b{word-spacing:-2.964870pt;}
.wsc6{word-spacing:-2.752334pt;}
.ws34{word-spacing:-2.699200pt;}
.ws84{word-spacing:-2.486665pt;}
.wsa1{word-spacing:-2.380397pt;}
.wsd0{word-spacing:-2.274129pt;}
.ws65{word-spacing:-2.114728pt;}
.ws66{word-spacing:-2.061594pt;}
.ws70{word-spacing:-2.008460pt;}
.ws39{word-spacing:-1.955326pt;}
.ws30{word-spacing:-1.902192pt;}
.ws63{word-spacing:-1.689657pt;}
.wscb{word-spacing:-1.636523pt;}
.ws6a{word-spacing:-1.583389pt;}
.ws9a{word-spacing:-1.423988pt;}
.wsd7{word-spacing:-1.370854pt;}
.wsb6{word-spacing:-1.264586pt;}
.wsa2{word-spacing:-1.211452pt;}
.ws5{word-spacing:-1.105184pt;}
.wscc{word-spacing:-1.052051pt;}
.wsd3{word-spacing:-1.001530pt;}
.ws5d{word-spacing:-0.786381pt;}
.ws41{word-spacing:-0.680113pt;}
.ws99{word-spacing:-0.573846pt;}
.ws80{word-spacing:-0.361310pt;}
.wsc2{word-spacing:-0.308176pt;}
.ws4{word-spacing:-0.201909pt;}
.ws7c{word-spacing:-0.148775pt;}
.ws76{word-spacing:-0.095641pt;}
.ws1{word-spacing:-0.091815pt;}
.ws13{word-spacing:-0.076513pt;}
.ws49{word-spacing:-0.053134pt;}
.wsaa{word-spacing:-0.042507pt;}
.wsc5{word-spacing:-0.016603pt;}
.ws17{word-spacing:0.000000pt;}
.ws26{word-spacing:0.010627pt;}
.ws7d{word-spacing:0.063761pt;}
.ws90{word-spacing:0.170028pt;}
.ws83{word-spacing:0.276296pt;}
.ws1c{word-spacing:0.329430pt;}
.wsc1{word-spacing:0.382564pt;}
.ws35{word-spacing:0.595099pt;}
.ws3f{word-spacing:0.648233pt;}
.ws94{word-spacing:0.754501pt;}
.ws59{word-spacing:0.860769pt;}
.ws5f{word-spacing:0.967036pt;}
.ws92{word-spacing:1.179572pt;}
.ws67{word-spacing:1.232706pt;}
.wsbf{word-spacing:1.285840pt;}
.wsd{word-spacing:1.315072pt;}
.wsc7{word-spacing:1.498375pt;}
.ws62{word-spacing:1.551509pt;}
.wsb5{word-spacing:1.604643pt;}
.ws8f{word-spacing:1.657777pt;}
.wsf{word-spacing:1.697638pt;}
.ws4e{word-spacing:1.710911pt;}
.ws89{word-spacing:1.764044pt;}
.ws3d{word-spacing:1.817178pt;}
.ws91{word-spacing:2.029714pt;}
.wsc9{word-spacing:2.082848pt;}
.ws7a{word-spacing:2.189115pt;}
.wsb9{word-spacing:2.295383pt;}
.wsbe{word-spacing:2.348517pt;}
.ws53{word-spacing:2.454785pt;}
.ws88{word-spacing:2.614186pt;}
.ws12{word-spacing:2.701875pt;}
.wscf{word-spacing:2.773588pt;}
.ws6{word-spacing:2.932989pt;}
.ws25{word-spacing:2.986123pt;}
.ws10{word-spacing:3.036621pt;}
.ws85{word-spacing:3.039257pt;}
.ws5a{word-spacing:3.092391pt;}
.wsbd{word-spacing:3.145525pt;}
.wsc0{word-spacing:3.304927pt;}
.wsc4{word-spacing:3.358060pt;}
.ws14{word-spacing:3.379314pt;}
.ws50{word-spacing:3.411194pt;}
.ws15{word-spacing:3.432448pt;}
.ws56{word-spacing:3.464328pt;}
.ws6b{word-spacing:3.570596pt;}
.ws47{word-spacing:3.623730pt;}
.ws93{word-spacing:3.676864pt;}
.ws3c{word-spacing:3.729997pt;}
.wsd8{word-spacing:3.783131pt;}
.wsb{word-spacing:3.801754pt;}
.ws9e{word-spacing:3.836265pt;}
.ws5b{word-spacing:3.889399pt;}
.ws2d{word-spacing:3.942533pt;}
.ws40{word-spacing:3.995667pt;}
.ws7f{word-spacing:4.048801pt;}
.wse{word-spacing:4.098243pt;}
.ws58{word-spacing:4.101935pt;}
.wsb1{word-spacing:4.155068pt;}
.wsb2{word-spacing:4.208202pt;}
.wsa4{word-spacing:4.314470pt;}
.ws8b{word-spacing:4.367604pt;}
.ws68{word-spacing:4.420738pt;}
.ws8d{word-spacing:4.473872pt;}
.ws96{word-spacing:4.580139pt;}
.ws79{word-spacing:4.633273pt;}
.ws3e{word-spacing:4.686407pt;}
.ws36{word-spacing:4.792675pt;}
.ws60{word-spacing:4.898943pt;}
.ws78{word-spacing:4.952076pt;}
.ws9b{word-spacing:5.005210pt;}
.ws87{word-spacing:5.217746pt;}
.ws52{word-spacing:5.324013pt;}
.ws3a{word-spacing:5.377147pt;}
.wsc{word-spacing:5.427661pt;}
.ws6e{word-spacing:5.483415pt;}
.ws42{word-spacing:5.589683pt;}
.ws7b{word-spacing:5.642817pt;}
.ws43{word-spacing:5.695951pt;}
.ws7e{word-spacing:5.749084pt;}
.ws46{word-spacing:5.802218pt;}
.ws5c{word-spacing:5.855352pt;}
.ws4f{word-spacing:5.908486pt;}
.ws75{word-spacing:5.961620pt;}
.wscd{word-spacing:6.067888pt;}
.wsa{word-spacing:6.144973pt;}
.ws97{word-spacing:6.174155pt;}
.wsc3{word-spacing:6.280423pt;}
.wsce{word-spacing:6.333557pt;}
.ws7{word-spacing:6.431898pt;}
.ws4c{word-spacing:6.546092pt;}
.ws6d{word-spacing:6.599226pt;}
.ws11{word-spacing:6.766643pt;}
.ws51{word-spacing:6.864896pt;}
.ws77{word-spacing:6.918029pt;}
.wsc8{word-spacing:7.024297pt;}
.wsd5{word-spacing:7.077431pt;}
.wsd1{word-spacing:7.130565pt;}
.ws86{word-spacing:7.183699pt;}
.wsd4{word-spacing:7.236833pt;}
.ws1f{word-spacing:7.289967pt;}
.ws1e{word-spacing:7.343100pt;}
.ws6c{word-spacing:7.449368pt;}
.ws71{word-spacing:7.608770pt;}
.wsaf{word-spacing:7.661904pt;}
.ws8c{word-spacing:7.715037pt;}
.ws33{word-spacing:8.033841pt;}
.ws5e{word-spacing:8.246376pt;}
.ws9d{word-spacing:8.299510pt;}
.wsb4{word-spacing:8.352644pt;}
.ws2e{word-spacing:8.358577pt;}
.wsb7{word-spacing:8.405778pt;}
.ws8{word-spacing:8.449935pt;}
.ws38{word-spacing:8.512045pt;}
.ws4d{word-spacing:8.618313pt;}
.wsa0{word-spacing:8.777715pt;}
.wsab{word-spacing:8.830849pt;}
.ws1a{word-spacing:8.937116pt;}
.ws19{word-spacing:8.990250pt;}
.ws9c{word-spacing:9.096518pt;}
.ws95{word-spacing:9.574723pt;}
.ws3b{word-spacing:9.893526pt;}
.ws6f{word-spacing:9.999794pt;}
.wsae{word-spacing:10.106061pt;}
.ws9f{word-spacing:10.212329pt;}
.ws61{word-spacing:10.424865pt;}
.ws44{word-spacing:10.903069pt;}
.wsca{word-spacing:10.956203pt;}
.wsb3{word-spacing:11.221873pt;}
.ws98{word-spacing:11.434408pt;}
.wsb0{word-spacing:11.540676pt;}
.ws8e{word-spacing:11.593810pt;}
.ws16{word-spacing:11.806345pt;}
.ws8a{word-spacing:12.337684pt;}
.ws69{word-spacing:12.815889pt;}
.ws55{word-spacing:13.081558pt;}
.wsd2{word-spacing:18.968790pt;}
.ws2{word-spacing:20.722347pt;}
.ws2c{word-spacing:22.647868pt;}
.ws1d{word-spacing:23.846639pt;}
.ws1b{word-spacing:24.494713pt;}
.wsa3{word-spacing:27.342688pt;}
.ws27{word-spacing:27.395822pt;}
.ws0{word-spacing:27.636455pt;}
.ws3{word-spacing:28.615887pt;}
.ws81{word-spacing:30.150470pt;}
.ws18{word-spacing:32.177870pt;}
.ws37{word-spacing:86.000687pt;}
.ws57{word-spacing:668.523041pt;}
.ws64{word-spacing:701.136608pt;}
._6{margin-left:-28.692400pt;}
._0{margin-left:-9.640624pt;}
._2{margin-left:-7.161606pt;}
._28{margin-left:-5.897859pt;}
._8{margin-left:-4.895098pt;}
._3{margin-left:-3.443098pt;}
._1{margin-left:-2.387202pt;}
._4{margin-left:-1.055895pt;}
._5{width:1.721549pt;}
._22{width:2.954231pt;}
._24{width:4.165683pt;}
._1f{width:5.137521pt;}
._23{width:7.385607pt;}
._21{width:14.501724pt;}
._29{width:15.770155pt;}
._a{width:17.645875pt;}
._1e{width:18.703121pt;}
._2b{width:20.020864pt;}
._9{width:21.136794pt;}
._7{width:22.518156pt;}
._1d{width:23.450436pt;}
._19{width:25.291721pt;}
._26{width:26.382445pt;}
._1a{width:28.397767pt;}
._32{width:30.020635pt;}
._20{width:31.037992pt;}
._2a{width:32.606809pt;}
._31{width:34.048205pt;}
._33{width:35.636954pt;}
._10{width:39.228368pt;}
._12{width:40.774682pt;}
._2c{width:43.569771pt;}
._30{width:45.057519pt;}
._b{width:49.148827pt;}
._f{width:54.302812pt;}
._2d{width:60.966932pt;}
._1c{width:71.731200pt;}
._11{width:84.110911pt;}
._1b{width:86.077200pt;}
._27{width:115.681463pt;}
._2e{width:138.124355pt;}
._2f{width:280.965802pt;}
._25{width:323.630624pt;}
._14{width:491.087421pt;}
._17{width:527.806745pt;}
._13{width:596.253769pt;}
._d{width:996.366268pt;}
._15{width:997.790278pt;}
._e{width:1008.859508pt;}
._16{width:1023.177663pt;}
._c{width:1235.628069pt;}
._18{width:1493.964929pt;}
.fs6{font-size:26.566933pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:119.153333pt;}
.y2c8{bottom:155.498667pt;}
.y198{bottom:159.002667pt;}
.y1d{bottom:159.004000pt;}
.yae{bottom:162.361333pt;}
.y1b8{bottom:163.430667pt;}
.y21d{bottom:164.574667pt;}
.y171{bottom:166.973333pt;}
.y86{bottom:168.468000pt;}
.y2c7{bottom:170.774667pt;}
.y2a0{bottom:171.218667pt;}
.y111{bottom:173.041333pt;}
.y5c{bottom:174.944000pt;}
.yf3{bottom:178.301333pt;}
.y25f{bottom:182.448000pt;}
.y197{bottom:182.728000pt;}
.y281{bottom:183.688000pt;}
.y85{bottom:184.408000pt;}
.y23d{bottom:187.853333pt;}
.y1c{bottom:188.228000pt;}
.y5b{bottom:190.884000pt;}
.y1b7{bottom:192.654667pt;}
.y21c{bottom:193.798667pt;}
.y170{bottom:196.197333pt;}
.yd1{bottom:198.298667pt;}
.y196{bottom:198.668000pt;}
.y280{bottom:199.629333pt;}
.y84{bottom:200.348000pt;}
.y29f{bottom:200.442667pt;}
.y2c6{bottom:201.596000pt;}
.y29e{bottom:203.800000pt;}
.y110{bottom:204.922667pt;}
.yf2{bottom:206.824000pt;}
.yad{bottom:213.721333pt;}
.y14c{bottom:214.185333pt;}
.y25e{bottom:214.328000pt;}
.y1dc{bottom:214.340000pt;}
.y83{bottom:216.289333pt;}
.y23c{bottom:216.701333pt;}
.yac{bottom:217.080000pt;}
.y1b{bottom:217.450667pt;}
.y2c5{bottom:217.536000pt;}
.y21b{bottom:217.709333pt;}
.y5a{bottom:218.350667pt;}
.y16f{bottom:220.108000pt;}
.y10f{bottom:220.862667pt;}
.y27f{bottom:221.288000pt;}
.y1b6{bottom:221.878667pt;}
.y195{bottom:222.393333pt;}
.y12d{bottom:222.764000pt;}
.y29d{bottom:229.666667pt;}
.y1fc{bottom:230.121333pt;}
.y14b{bottom:230.125333pt;}
.yd0{bottom:230.178667pt;}
.y25d{bottom:230.269333pt;}
.y1db{bottom:230.281333pt;}
.yf1{bottom:230.734667pt;}
.y82{bottom:232.229333pt;}
.y1fb{bottom:233.478667pt;}
.y21a{bottom:233.649333pt;}
.yf0{bottom:234.092000pt;}
.y16e{bottom:236.048000pt;}
.y27e{bottom:236.564000pt;}
.y23b{bottom:238.136000pt;}
.y194{bottom:238.333333pt;}
.y12c{bottom:238.704000pt;}
.y27d{bottom:239.922667pt;}
.y2c4{bottom:243.032000pt;}
.y59{bottom:244.046667pt;}
.y10e{bottom:244.773333pt;}
.yab{bottom:245.602667pt;}
.y1b5{bottom:245.789333pt;}
.ycf{bottom:246.118667pt;}
.y25c{bottom:246.209333pt;}
.y1a{bottom:246.674667pt;}
.y81{bottom:248.169333pt;}
.y219{bottom:249.589333pt;}
.y3b{bottom:250.853333pt;}
.y16d{bottom:251.988000pt;}
.y23a{bottom:253.412000pt;}
.y14a{bottom:253.428000pt;}
.y29c{bottom:253.577333pt;}
.y193{bottom:254.274667pt;}
.y12b{bottom:254.645333pt;}
.y2c3{bottom:258.308000pt;}
.y1da{bottom:258.748000pt;}
.y10d{bottom:260.713333pt;}
.yaa{bottom:261.542667pt;}
.y2c2{bottom:261.665333pt;}
.y1b4{bottom:261.729333pt;}
.y1fa{bottom:262.001333pt;}
.yce{bottom:262.058667pt;}
.y1d9{bottom:262.105333pt;}
.y25b{bottom:262.149333pt;}
.y19{bottom:262.614667pt;}
.y80{bottom:264.109333pt;}
.y218{bottom:265.529333pt;}
.y27c{bottom:268.445333pt;}
.y149{bottom:269.368000pt;}
.y12a{bottom:270.585333pt;}
.y16c{bottom:272.614667pt;}
.y58{bottom:273.141333pt;}
.y16b{bottom:275.898667pt;}
.y192{bottom:277.998667pt;}
.ycd{bottom:278.000000pt;}
.y18{bottom:278.556000pt;}
.y7f{bottom:280.049333pt;}
.y3a{bottom:280.077333pt;}
.y217{bottom:281.469333pt;}
.y1b3{bottom:283.389333pt;}
.y7e{bottom:283.408000pt;}
.y39{bottom:283.436000pt;}
.ya9{bottom:284.380000pt;}
.y27b{bottom:284.385333pt;}
.y10c{bottom:284.624000pt;}
.y239{bottom:285.293333pt;}
.y29b{bottom:285.457333pt;}
.y25a{bottom:285.593333pt;}
.y2c1{bottom:285.918667pt;}
.yef{bottom:286.525333pt;}
.y1d8{bottom:287.216000pt;}
.y1f9{bottom:290.204000pt;}
.y148{bottom:292.669333pt;}
.y1f8{bottom:293.561333pt;}
.y191{bottom:293.938667pt;}
.y7d{bottom:295.989333pt;}
.y216{bottom:297.410667pt;}
.y1b2{bottom:298.665333pt;}
.ya8{bottom:300.320000pt;}
.y27a{bottom:300.325333pt;}
.y10b{bottom:300.564000pt;}
.ycc{bottom:301.354667pt;}
.y29a{bottom:301.397333pt;}
.y259{bottom:301.533333pt;}
.y2c0{bottom:301.860000pt;}
.yee{bottom:302.465333pt;}
.y1d7{bottom:303.156000pt;}
.y17{bottom:307.778667pt;}
.y147{bottom:308.609333pt;}
.y38{bottom:309.301333pt;}
.y7c{bottom:311.930667pt;}
.y215{bottom:313.350667pt;}
.y238{bottom:314.141333pt;}
.y57{bottom:316.461333pt;}
.ycb{bottom:317.294667pt;}
.y299{bottom:317.337333pt;}
.y190{bottom:317.664000pt;}
.y2bf{bottom:317.800000pt;}
.yed{bottom:318.405333pt;}
.y1d6{bottom:319.096000pt;}
.y16a{bottom:323.718667pt;}
.y279{bottom:324.236000pt;}
.y10a{bottom:324.474667pt;}
.y278{bottom:327.593333pt;}
.ya7{bottom:327.756000pt;}
.y7b{bottom:327.870667pt;}
.y146{bottom:328.332000pt;}
.y214{bottom:329.290667pt;}
.y258{bottom:329.981333pt;}
.y1b1{bottom:330.545333pt;}
.y7a{bottom:331.228000pt;}
.y145{bottom:331.616000pt;}
.y298{bottom:333.278667pt;}
.y18f{bottom:333.604000pt;}
.y37{bottom:333.820000pt;}
.y129{bottom:334.345333pt;}
.y1d5{bottom:335.036000pt;}
.yca{bottom:336.921333pt;}
.y16{bottom:337.002667pt;}
.y56{bottom:339.316000pt;}
.y169{bottom:339.660000pt;}
.yc9{bottom:340.205333pt;}
.y109{bottom:340.414667pt;}
.y144{bottom:340.728000pt;}
.yec{bottom:342.316000pt;}
.y55{bottom:342.600000pt;}
.y237{bottom:342.990667pt;}
.y2be{bottom:343.492000pt;}
.y79{bottom:343.810667pt;}
.y213{bottom:345.230667pt;}
.y2bd{bottom:346.850667pt;}
.yc8{bottom:349.317333pt;}
.y128{bottom:350.286667pt;}
.y1d4{bottom:350.976000pt;}
.y54{bottom:351.712000pt;}
.ya6{bottom:355.192000pt;}
.y168{bottom:355.600000pt;}
.y277{bottom:356.116000pt;}
.y18e{bottom:357.329333pt;}
.y257{bottom:358.428000pt;}
.y236{bottom:358.930667pt;}
.y78{bottom:359.750667pt;}
.y1b0{bottom:359.769333pt;}
.y212{bottom:361.170667pt;}
.y106{bottom:362.073333pt;}
.y297{bottom:362.501333pt;}
.y108{bottom:364.954667pt;}
.y15{bottom:366.226667pt;}
.y1d3{bottom:366.917333pt;}
.y107{bottom:368.238667pt;}
.y2bc{bottom:369.185333pt;}
.y36{bottom:371.005333pt;}
.y167{bottom:371.540000pt;}
.y18d{bottom:373.269333pt;}
.y1f7{bottom:373.584000pt;}
.yeb{bottom:374.196000pt;}
.y143{bottom:374.730667pt;}
.y77{bottom:375.690667pt;}
.y211{bottom:377.112000pt;}
.y256{bottom:377.224000pt;}
.y105{bottom:377.349333pt;}
.y276{bottom:377.776000pt;}
.ya5{bottom:378.030667pt;}
.y53{bottom:380.084000pt;}
.y255{bottom:381.128000pt;}
.yc7{bottom:381.198667pt;}
.y127{bottom:382.166667pt;}
.y235{bottom:382.616000pt;}
.y1d2{bottom:382.857333pt;}
.y166{bottom:387.480000pt;}
.y1af{bottom:388.993333pt;}
.y18c{bottom:389.209333pt;}
.y1f6{bottom:389.524000pt;}
.y254{bottom:390.238667pt;}
.y76{bottom:391.630667pt;}
.y296{bottom:391.725333pt;}
.y210{bottom:393.052000pt;}
.ya4{bottom:393.970667pt;}
.y2bb{bottom:394.878667pt;}
.y52{bottom:396.024000pt;}
.y275{bottom:396.409333pt;}
.yea{bottom:398.106667pt;}
.y2ba{bottom:398.236000pt;}
.y234{bottom:398.557333pt;}
.y35{bottom:400.229333pt;}
.y142{bottom:402.940000pt;}
.y165{bottom:403.420000pt;}
.y34{bottom:403.586667pt;}
.y1ae{bottom:404.933333pt;}
.y18b{bottom:405.150667pt;}
.y1f5{bottom:405.464000pt;}
.y75{bottom:407.572000pt;}
.y20f{bottom:408.992000pt;}
.yc6{bottom:409.496000pt;}
.ya3{bottom:409.910667pt;}
.y14{bottom:410.000000pt;}
.y1d1{bottom:411.324000pt;}
.y104{bottom:412.165333pt;}
.y295{bottom:412.794667pt;}
.y126{bottom:414.046667pt;}
.y294{bottom:416.078667pt;}
.y164{bottom:419.360000pt;}
.y233{bottom:419.992000pt;}
.y2b9{bottom:420.570667pt;}
.y18a{bottom:421.090667pt;}
.y1f4{bottom:421.404000pt;}
.y253{bottom:422.120000pt;}
.y74{bottom:423.512000pt;}
.y13{bottom:424.612000pt;}
.y20e{bottom:424.932000pt;}
.y51{bottom:425.118667pt;}
.y293{bottom:425.190667pt;}
.ya2{bottom:425.850667pt;}
.y1ad{bottom:426.592000pt;}
.y103{bottom:428.105333pt;}
.y33{bottom:429.452000pt;}
.y179{bottom:429.986667pt;}
.ye9{bottom:429.988000pt;}
.y141{bottom:431.149333pt;}
.y232{bottom:435.268000pt;}
.y163{bottom:435.301333pt;}
.y189{bottom:437.030667pt;}
.yc5{bottom:437.793333pt;}
.y231{bottom:438.625333pt;}
.y12{bottom:439.224000pt;}
.y73{bottom:439.452000pt;}
.y1d0{bottom:439.792000pt;}
.y20d{bottom:440.872000pt;}
.ya1{bottom:441.790667pt;}
.y1ac{bottom:441.869333pt;}
.y1f3{bottom:444.701333pt;}
.y32{bottom:445.393333pt;}
.y252{bottom:445.564000pt;}
.y125{bottom:445.928000pt;}
.y2b8{bottom:446.264000pt;}
.y274{bottom:448.842667pt;}
.y2b7{bottom:449.621333pt;}
.y162{bottom:451.241333pt;}
.y102{bottom:452.016000pt;}
.yc4{bottom:453.733333pt;}
.y11{bottom:453.836000pt;}
.ye8{bottom:453.897333pt;}
.y140{bottom:454.450667pt;}
.y72{bottom:455.392000pt;}
.y1cf{bottom:455.732000pt;}
.y20c{bottom:456.812000pt;}
.y292{bottom:457.070667pt;}
.ya0{bottom:457.730667pt;}
.y1f2{bottom:460.641333pt;}
.y188{bottom:460.756000pt;}
.y251{bottom:461.504000pt;}
.y124{bottom:461.868000pt;}
.y187{bottom:464.113333pt;}
.y273{bottom:464.782667pt;}
.y2dd{bottom:465.833333pt;}
.y230{bottom:467.148000pt;}
.y161{bottom:467.181333pt;}
.y50{bottom:468.438667pt;}
.y10{bottom:468.448000pt;}
.y31{bottom:469.302667pt;}
.yc3{bottom:469.673333pt;}
.y175{bottom:469.837333pt;}
.y13f{bottom:470.390667pt;}
.y71{bottom:471.332000pt;}
.y2b6{bottom:471.956000pt;}
.y30{bottom:472.661333pt;}
.y20b{bottom:472.753333pt;}
.y291{bottom:473.010667pt;}
.y9f{bottom:473.672000pt;}
.y1ab{bottom:473.749333pt;}
.y1f1{bottom:476.581333pt;}
.y123{bottom:477.808000pt;}
.yf{bottom:483.060000pt;}
.y160{bottom:483.121333pt;}
.y101{bottom:483.896000pt;}
.y1ce{bottom:484.198667pt;}
.y4f{bottom:484.378667pt;}
.yc2{bottom:485.613333pt;}
.ye7{bottom:485.778667pt;}
.y70{bottom:487.272000pt;}
.y1cd{bottom:487.557333pt;}
.y2b5{bottom:487.897333pt;}
.y20a{bottom:488.693333pt;}
.y290{bottom:488.952000pt;}
.y9e{bottom:489.612000pt;}
.y250{bottom:489.952000pt;}
.y186{bottom:492.636000pt;}
.y13e{bottom:493.692000pt;}
.y122{bottom:493.748000pt;}
.y22f{bottom:495.997333pt;}
.ye{bottom:497.672000pt;}
.y15f{bottom:499.061333pt;}
.y4e{bottom:500.320000pt;}
.y2f{bottom:501.184000pt;}
.yc1{bottom:501.553333pt;}
.ye6{bottom:501.718667pt;}
.y1aa{bottom:502.973333pt;}
.y6f{bottom:503.213333pt;}
.y2b4{bottom:503.837333pt;}
.y209{bottom:504.633333pt;}
.y1f0{bottom:504.784000pt;}
.y28f{bottom:504.892000pt;}
.y9d{bottom:505.552000pt;}
.y100{bottom:505.556000pt;}
.y13d{bottom:509.633333pt;}
.y121{bottom:509.688000pt;}
.y2dc{bottom:509.761333pt;}
.yd{bottom:512.284000pt;}
.y1cc{bottom:512.666667pt;}
.y15e{bottom:515.001333pt;}
.y185{bottom:516.361333pt;}
.y2e{bottom:517.124000pt;}
.ye5{bottom:517.658667pt;}
.y24f{bottom:518.398667pt;}
.y6e{bottom:519.153333pt;}
.y2b3{bottom:519.777333pt;}
.y208{bottom:520.573333pt;}
.yff{bottom:520.832000pt;}
.y9c{bottom:521.492000pt;}
.ybf{bottom:522.657333pt;}
.y4b{bottom:523.764000pt;}
.y22e{bottom:524.845333pt;}
.y13c{bottom:525.573333pt;}
.y120{bottom:525.629333pt;}
.y2db{bottom:525.701333pt;}
.y4d{bottom:526.644000pt;}
.yc{bottom:526.896000pt;}
.y272{bottom:528.544000pt;}
.y4c{bottom:529.928000pt;}
.y15d{bottom:530.942667pt;}
.y1a9{bottom:532.196000pt;}
.y184{bottom:532.301333pt;}
.y1ef{bottom:532.985333pt;}
.y2d{bottom:533.064000pt;}
.ye4{bottom:533.598667pt;}
.y24e{bottom:534.338667pt;}
.yc0{bottom:534.649333pt;}
.y6d{bottom:535.093333pt;}
.y2b2{bottom:535.717333pt;}
.y207{bottom:536.513333pt;}
.y9b{bottom:537.432000pt;}
.ybe{bottom:537.933333pt;}
.y4a{bottom:539.040000pt;}
.y22d{bottom:540.786667pt;}
.y1cb{bottom:541.133333pt;}
.yb{bottom:541.508000pt;}
.y13b{bottom:541.513333pt;}
.y11f{bottom:541.569333pt;}
.y2da{bottom:541.641333pt;}
.y271{bottom:544.484000pt;}
.y1ca{bottom:544.492000pt;}
.y28e{bottom:544.742667pt;}
.y15c{bottom:546.882667pt;}
.y1a8{bottom:548.137333pt;}
.y1ee{bottom:548.925333pt;}
.y2c{bottom:549.004000pt;}
.ye3{bottom:549.538667pt;}
.y24d{bottom:550.278667pt;}
.y6c{bottom:551.033333pt;}
.y2b1{bottom:551.657333pt;}
.y206{bottom:552.453333pt;}
.yfe{bottom:552.712000pt;}
.y9a{bottom:553.372000pt;}
.y183{bottom:556.026667pt;}
.y22c{bottom:556.726667pt;}
.y13a{bottom:557.453333pt;}
.y11e{bottom:557.509333pt;}
.y2d9{bottom:557.582667pt;}
.y182{bottom:559.384000pt;}
.y270{bottom:560.424000pt;}
.y28d{bottom:560.682667pt;}
.ya{bottom:561.436000pt;}
.y15b{bottom:562.822667pt;}
.y1ed{bottom:564.866667pt;}
.y2b{bottom:564.944000pt;}
.ye2{bottom:565.478667pt;}
.y24c{bottom:566.218667pt;}
.y6b{bottom:566.973333pt;}
.y2b0{bottom:567.597333pt;}
.y205{bottom:568.394667pt;}
.y99{bottom:569.313333pt;}
.y1c9{bottom:569.601333pt;}
.ybd{bottom:569.813333pt;}
.y49{bottom:570.253333pt;}
.y11d{bottom:573.449333pt;}
.y2d8{bottom:573.522667pt;}
.yfd{bottom:574.372000pt;}
.y26f{bottom:576.364000pt;}
.y1a7{bottom:577.360000pt;}
.y15a{bottom:578.762667pt;}
.y1ec{bottom:580.806667pt;}
.ye1{bottom:581.420000pt;}
.y24b{bottom:582.160000pt;}
.y6a{bottom:582.914667pt;}
.y2af{bottom:583.538667pt;}
.y204{bottom:584.334667pt;}
.y98{bottom:585.253333pt;}
.y22b{bottom:585.576000pt;}
.y139{bottom:585.662667pt;}
.ybc{bottom:585.754667pt;}
.y48{bottom:586.194667pt;}
.y181{bottom:587.906667pt;}
.y9{bottom:588.437333pt;}
.y11c{bottom:589.389333pt;}
.y2a{bottom:589.464000pt;}
.yfc{bottom:589.648000pt;}
.y28c{bottom:589.906667pt;}
.y26e{bottom:592.304000pt;}
.y1c8{bottom:593.057333pt;}
.y159{bottom:594.702667pt;}
.y1eb{bottom:596.746667pt;}
.ye0{bottom:597.360000pt;}
.y69{bottom:598.854667pt;}
.y2ae{bottom:599.478667pt;}
.y203{bottom:600.274667pt;}
.y97{bottom:601.193333pt;}
.y8{bottom:604.377333pt;}
.y2d7{bottom:604.517333pt;}
.y11b{bottom:605.329333pt;}
.y24a{bottom:605.604000pt;}
.y1a6{bottom:606.584000pt;}
.ybb{bottom:606.857333pt;}
.y26d{bottom:608.245333pt;}
.y1c7{bottom:608.998667pt;}
.y158{bottom:610.642667pt;}
.y1ea{bottom:612.686667pt;}
.ydf{bottom:613.300000pt;}
.y138{bottom:613.872000pt;}
.y22a{bottom:614.424000pt;}
.y68{bottom:614.794667pt;}
.y47{bottom:615.289333pt;}
.y2ad{bottom:615.418667pt;}
.y202{bottom:616.214667pt;}
.y180{bottom:616.821333pt;}
.y96{bottom:617.133333pt;}
.y28b{bottom:619.129333pt;}
.y17f{bottom:620.180000pt;}
.y7{bottom:620.317333pt;}
.y29{bottom:621.214667pt;}
.y11a{bottom:621.270667pt;}
.yfb{bottom:621.528000pt;}
.y249{bottom:621.544000pt;}
.yba{bottom:622.133333pt;}
.y26c{bottom:624.185333pt;}
.y1c6{bottom:624.938667pt;}
.yb9{bottom:625.492000pt;}
.y157{bottom:626.584000pt;}
.y1e9{bottom:628.626667pt;}
.yde{bottom:629.240000pt;}
.y229{bottom:630.364000pt;}
.y1a5{bottom:630.494667pt;}
.y67{bottom:630.734667pt;}
.y2ac{bottom:631.358667pt;}
.y201{bottom:632.154667pt;}
.y95{bottom:633.073333pt;}
.y2d6{bottom:633.741333pt;}
.y6{bottom:636.258667pt;}
.y119{bottom:637.210667pt;}
.yfa{bottom:637.468000pt;}
.y26b{bottom:640.125333pt;}
.y137{bottom:642.081333pt;}
.y28a{bottom:643.040000pt;}
.y1e8{bottom:644.568000pt;}
.y248{bottom:644.988000pt;}
.ydd{bottom:645.180000pt;}
.y17e{bottom:645.736000pt;}
.y1a4{bottom:646.434667pt;}
.y66{bottom:646.674667pt;}
.y2ab{bottom:647.298667pt;}
.y200{bottom:648.094667pt;}
.y1c5{bottom:648.394667pt;}
.y94{bottom:649.014667pt;}
.y2d5{bottom:649.681333pt;}
.y156{bottom:650.493333pt;}
.y1c4{bottom:651.752000pt;}
.y46{bottom:652.446667pt;}
.y118{bottom:653.150667pt;}
.yb8{bottom:654.014667pt;}
.y228{bottom:654.050667pt;}
.y26a{bottom:656.065333pt;}
.y227{bottom:657.408000pt;}
.y289{bottom:658.980000pt;}
.y1e7{bottom:660.508000pt;}
.y247{bottom:660.929333pt;}
.ydc{bottom:661.121333pt;}
.yf9{bottom:661.378667pt;}
.y65{bottom:662.614667pt;}
.y2aa{bottom:663.238667pt;}
.y1ff{bottom:664.036000pt;}
.y93{bottom:664.954667pt;}
.y28{bottom:665.142667pt;}
.y5{bottom:665.353333pt;}
.y2d4{bottom:665.621333pt;}
.y155{bottom:666.434667pt;}
.y45{bottom:667.722667pt;}
.y1a3{bottom:668.094667pt;}
.y117{bottom:669.090667pt;}
.y17d{bottom:669.461333pt;}
.y136{bottom:670.289333pt;}
.y269{bottom:672.005333pt;}
.y288{bottom:674.921333pt;}
.y1e6{bottom:676.448000pt;}
.ydb{bottom:677.061333pt;}
.y64{bottom:678.556000pt;}
.y2a9{bottom:679.180000pt;}
.y1c3{bottom:680.274667pt;}
.y92{bottom:680.894667pt;}
.y27{bottom:681.082667pt;}
.yb7{bottom:682.312000pt;}
.y1a2{bottom:683.370667pt;}
.y116{bottom:685.030667pt;}
.y17c{bottom:685.401333pt;}
.y1fd{bottom:685.694667pt;}
.y226{bottom:685.930667pt;}
.y1a1{bottom:686.728000pt;}
.y268{bottom:687.946667pt;}
.y246{bottom:689.376000pt;}
.y154{bottom:690.344000pt;}
.y2d3{bottom:691.266667pt;}
.y1e5{bottom:692.388000pt;}
.yda{bottom:693.001333pt;}
.yf8{bottom:693.260000pt;}
.y91{bottom:693.550667pt;}
.y135{bottom:693.592000pt;}
.y63{bottom:694.496000pt;}
.y2d2{bottom:694.549333pt;}
.y2a8{bottom:695.120000pt;}
.y44{bottom:695.337333pt;}
.y1c2{bottom:696.216000pt;}
.y286{bottom:696.580000pt;}
.y90{bottom:696.834667pt;}
.y26{bottom:697.022667pt;}
.y1fe{bottom:697.686667pt;}
.y178{bottom:700.970667pt;}
.y2d1{bottom:703.661333pt;}
.y267{bottom:703.886667pt;}
.y153{bottom:706.285333pt;}
.y1e4{bottom:708.328000pt;}
.y287{bottom:708.572000pt;}
.yd9{bottom:708.941333pt;}
.y17b{bottom:709.126667pt;}
.y134{bottom:709.532000pt;}
.y225{bottom:709.616000pt;}
.y62{bottom:710.436000pt;}
.yb6{bottom:710.609333pt;}
.y2a7{bottom:711.060000pt;}
.y285{bottom:711.856000pt;}
.y1c1{bottom:712.156000pt;}
.y8f{bottom:712.774667pt;}
.y25{bottom:712.964000pt;}
.y224{bottom:712.973333pt;}
.yf7{bottom:714.918667pt;}
.y1a0{bottom:715.250667pt;}
.y174{bottom:716.912000pt;}
.y245{bottom:717.822667pt;}
.y43{bottom:718.782667pt;}
.y266{bottom:719.826667pt;}
.y4{bottom:721.516000pt;}
.y152{bottom:722.225333pt;}
.y1e3{bottom:724.268000pt;}
.yd8{bottom:724.881333pt;}
.y17a{bottom:725.066667pt;}
.y61{bottom:726.376000pt;}
.y2a6{bottom:727.000000pt;}
.y1c0{bottom:728.096000pt;}
.y8e{bottom:728.714667pt;}
.y24{bottom:728.904000pt;}
.y133{bottom:729.549333pt;}
.yf6{bottom:730.194667pt;}
.y19f{bottom:731.190667pt;}
.y132{bottom:732.833333pt;}
.y173{bottom:732.852000pt;}
.yf5{bottom:733.553333pt;}
.yb5{bottom:733.964000pt;}
.y42{bottom:734.058667pt;}
.y2d0{bottom:735.562667pt;}
.y265{bottom:735.766667pt;}
.yb4{bottom:737.321333pt;}
.y151{bottom:738.165333pt;}
.y1e2{bottom:740.209333pt;}
.yd7{bottom:740.821333pt;}
.y244{bottom:741.268000pt;}
.y223{bottom:741.496000pt;}
.y2a5{bottom:742.940000pt;}
.y284{bottom:743.737333pt;}
.y8d{bottom:744.656000pt;}
.y23{bottom:744.844000pt;}
.y19e{bottom:747.132000pt;}
.y115{bottom:748.792000pt;}
.y2cf{bottom:751.502667pt;}
.y1bf{bottom:751.552000pt;}
.y264{bottom:751.706667pt;}
.y3{bottom:752.777333pt;}
.y150{bottom:754.105333pt;}
.y60{bottom:755.470667pt;}
.y1e1{bottom:756.149333pt;}
.yd6{bottom:756.762667pt;}
.y243{bottom:757.208000pt;}
.y2a4{bottom:758.880000pt;}
.y283{bottom:759.677333pt;}
.y8c{bottom:760.596000pt;}
.y41{bottom:761.673333pt;}
.yf4{bottom:762.076000pt;}
.y19d{bottom:763.072000pt;}
.y131{bottom:764.713333pt;}
.y172{bottom:764.732000pt;}
.y222{bottom:765.181333pt;}
.yb3{bottom:765.844000pt;}
.y2ce{bottom:767.442667pt;}
.y1be{bottom:767.493333pt;}
.y14f{bottom:770.045333pt;}
.y1e0{bottom:772.089333pt;}
.yd5{bottom:772.702667pt;}
.y242{bottom:773.148000pt;}
.y22{bottom:773.938667pt;}
.y2a3{bottom:774.821333pt;}
.y263{bottom:775.617333pt;}
.y40{bottom:777.613333pt;}
.y130{bottom:780.653333pt;}
.y114{bottom:780.672000pt;}
.y221{bottom:781.122667pt;}
.y2cd{bottom:783.382667pt;}
.y8b{bottom:785.781333pt;}
.y14e{bottom:785.985333pt;}
.y1df{bottom:788.029333pt;}
.yd4{bottom:788.642667pt;}
.yb2{bottom:789.198667pt;}
.y19c{bottom:790.044000pt;}
.y2a2{bottom:790.761333pt;}
.y2{bottom:791.298667pt;}
.y23f{bottom:794.341333pt;}
.y1bd{bottom:795.960000pt;}
.y177{bottom:796.612000pt;}
.y241{bottom:797.222667pt;}
.y282{bottom:797.277333pt;}
.y5f{bottom:799.398667pt;}
.y240{bottom:800.506667pt;}
.y8a{bottom:801.057333pt;}
.y14d{bottom:801.926667pt;}
.y3f{bottom:803.110667pt;}
.y1de{bottom:803.969333pt;}
.y89{bottom:804.414667pt;}
.yd3{bottom:804.582667pt;}
.y220{bottom:804.808000pt;}
.yb1{bottom:805.138667pt;}
.y19b{bottom:805.321333pt;}
.y2a1{bottom:806.701333pt;}
.y262{bottom:807.497333pt;}
.y21f{bottom:808.165333pt;}
.y12f{bottom:808.862667pt;}
.y23e{bottom:809.617333pt;}
.y2ca{bottom:810.356000pt;}
.y176{bottom:812.553333pt;}
.y2cc{bottom:813.236000pt;}
.y5e{bottom:815.338667pt;}
.y2cb{bottom:816.520000pt;}
.y21{bottom:817.866667pt;}
.y3e{bottom:818.386667pt;}
.y1{bottom:820.522667pt;}
.yb0{bottom:821.078667pt;}
.y3d{bottom:821.745333pt;}
.y261{bottom:823.437333pt;}
.y1bc{bottom:824.428000pt;}
.y2c9{bottom:825.632000pt;}
.yd2{bottom:828.493333pt;}
.y5d{bottom:831.278667pt;}
.y113{bottom:832.037333pt;}
.y1dd{bottom:832.172000pt;}
.y112{bottom:835.321333pt;}
.y19a{bottom:836.462667pt;}
.y21e{bottom:836.688000pt;}
.y12e{bottom:837.072000pt;}
.y88{bottom:844.433333pt;}
.y1bb{bottom:845.042667pt;}
.y260{bottom:845.097333pt;}
.y20{bottom:847.090667pt;}
.y3c{bottom:847.218667pt;}
.yaf{bottom:847.790667pt;}
.y1ba{bottom:848.326667pt;}
.y1b9{bottom:857.438667pt;}
.y87{bottom:860.373333pt;}
.y199{bottom:863.732000pt;}
.y1f{bottom:876.313333pt;}
.hc{height:26.519037pt;}
.h5{height:33.474560pt;}
.h6{height:35.865600pt;}
.h7{height:37.193707pt;}
.h4{height:39.850400pt;}
.h1a{height:39.850667pt;}
.h12{height:41.533628pt;}
.h1b{height:41.538961pt;}
.h19{height:44.482961pt;}
.h8{height:44.632747pt;}
.h2{height:44.887791pt;}
.h15{height:45.464294pt;}
.hd{height:45.799037pt;}
.h14{height:45.804370pt;}
.h18{height:48.120294pt;}
.h10{height:48.125628pt;}
.h17{height:48.455037pt;}
.ha{height:48.460370pt;}
.he{height:50.474667pt;}
.hb{height:50.480000pt;}
.h16{height:52.986400pt;}
.h9{height:53.279733pt;}
.hf{height:53.285067pt;}
.h3{height:53.559147pt;}
.h1{height:64.913535pt;}
.h13{height:75.791733pt;}
.h11{height:75.797067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:178.357333pt;}
.x2c{left:181.946667pt;}
.x1{left:193.928000pt;}
.x6{left:198.282667pt;}
.x29{left:199.758667pt;}
.x9{left:211.566667pt;}
.x2a{left:224.892000pt;}
.x8{left:229.997333pt;}
.x2d{left:243.748000pt;}
.x37{left:245.232000pt;}
.x2b{left:268.934667pt;}
.x3a{left:272.164000pt;}
.x3e{left:274.465333pt;}
.x3{left:282.056000pt;}
.x48{left:288.396000pt;}
.x42{left:290.612000pt;}
.x4d{left:292.941333pt;}
.x53{left:296.580000pt;}
.x4a{left:299.740000pt;}
.x36{left:300.888000pt;}
.x63{left:305.744000pt;}
.x33{left:309.173333pt;}
.x1c{left:310.330667pt;}
.x3d{left:314.730667pt;}
.x12{left:319.660000pt;}
.x11{left:322.696000pt;}
.x4f{left:325.916000pt;}
.x14{left:327.022667pt;}
.x65{left:328.485333pt;}
.x4e{left:329.505333pt;}
.x13{left:330.612000pt;}
.x21{left:331.805333pt;}
.x2{left:334.794667pt;}
.x32{left:337.002667pt;}
.x1a{left:338.066667pt;}
.x31{left:340.038667pt;}
.x4b{left:342.173333pt;}
.x54{left:345.561333pt;}
.x3f{left:348.904000pt;}
.x4{left:351.353333pt;}
.xf{left:353.820000pt;}
.xe{left:355.296000pt;}
.x58{left:356.588000pt;}
.x60{left:357.929333pt;}
.x25{left:361.126667pt;}
.x17{left:362.789333pt;}
.x55{left:364.285333pt;}
.xd{left:365.176000pt;}
.xc{left:366.652000pt;}
.x5b{left:368.462667pt;}
.x50{left:373.098667pt;}
.x15{left:374.206667pt;}
.x35{left:377.002667pt;}
.x26{left:379.318667pt;}
.x7{left:380.440000pt;}
.x1d{left:382.184000pt;}
.x3b{left:384.121333pt;}
.x4c{left:386.585333pt;}
.x51{left:387.644000pt;}
.x16{left:388.752000pt;}
.x41{left:390.901333pt;}
.x5a{left:391.926667pt;}
.x30{left:393.086667pt;}
.x47{left:394.194667pt;}
.x2e{left:396.069333pt;}
.x52{left:397.904000pt;}
.x3c{left:398.830667pt;}
.x34{left:399.872000pt;}
.x46{left:400.857333pt;}
.x2f{left:401.825333pt;}
.x62{left:403.181333pt;}
.xa{left:404.177333pt;}
.x18{left:406.544000pt;}
.x38{left:408.389333pt;}
.x28{left:412.110667pt;}
.x40{left:417.989333pt;}
.x1b{left:418.981333pt;}
.x19{left:421.089333pt;}
.x39{left:422.934667pt;}
.x10{left:424.472000pt;}
.x27{left:434.928000pt;}
.xb{left:437.424000pt;}
.x66{left:447.238667pt;}
.x22{left:457.306667pt;}
.x59{left:458.508000pt;}
.x43{left:460.628000pt;}
.x23{left:463.300000pt;}
.x44{left:466.620000pt;}
.x56{left:473.017333pt;}
.x49{left:478.497333pt;}
.x24{left:479.501333pt;}
.x1e{left:482.046667pt;}
.x57{left:485.953333pt;}
.x1f{left:488.040000pt;}
.x61{left:489.292000pt;}
.x5d{left:490.809333pt;}
.x64{left:494.220000pt;}
.x5e{left:496.802667pt;}
.x5c{left:499.206667pt;}
.x20{left:500.976000pt;}
.x5f{left:509.738667pt;}
.x45{left:520.696000pt;}
}




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