
    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_c74530e26e3694511d7d71ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_3fd912dd598b0e6df5d97963.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_32c599f4ad28cb46f64a3536.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_6c036636d32234719932cc55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932000;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_f757952347f155f20e29de7d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_051b623282f4317cd3af0ea5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_6f49c0c1ac7e0d3d3655b1dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856000;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_4c66c84577fabfa3b9b60a1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_37a117f3f5049640fe7ce210.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.385000;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_c5097945665c6715cd735232.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.232000;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);}
.v3{vertical-align:-28.158000px;}
.v5{vertical-align:-15.060000px;}
.v4{vertical-align:-13.386000px;}
.v6{vertical-align:-11.952000px;}
.v8{vertical-align:-9.564000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.982000px;}
.v7{vertical-align:16.734000px;}
.va{vertical-align:19.128000px;}
.v1{vertical-align:22.176000px;}
.v9{vertical-align:27.738000px;}
.vb{vertical-align:48.462000px;}
.lsd{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.000014px;}
.ls7{letter-spacing:0.000022px;}
.lsa{letter-spacing:0.000029px;}
.ls8{letter-spacing:0.000037px;}
.ls37{letter-spacing:0.000477px;}
.ls67{letter-spacing:0.000870px;}
.ls72{letter-spacing:0.000923px;}
.ls4a{letter-spacing:0.001015px;}
.ls18{letter-spacing:0.001036px;}
.ls32{letter-spacing:0.001200px;}
.ls2d{letter-spacing:0.001235px;}
.ls29{letter-spacing:0.001587px;}
.ls5b{letter-spacing:0.001684px;}
.ls14{letter-spacing:0.001793px;}
.ls16{letter-spacing:0.002152px;}
.ls4c{letter-spacing:0.002451px;}
.ls1d{letter-spacing:0.002610px;}
.ls3b{letter-spacing:0.002669px;}
.ls25{letter-spacing:0.002832px;}
.ls44{letter-spacing:0.002850px;}
.ls27{letter-spacing:0.003580px;}
.ls33{letter-spacing:0.003600px;}
.ls59{letter-spacing:0.004552px;}
.lsb{letter-spacing:0.004564px;}
.ls12{letter-spacing:0.004583px;}
.ls20{letter-spacing:0.005740px;}
.ls5c{letter-spacing:1.913511px;}
.ls11{letter-spacing:2.390451px;}
.ls1e{letter-spacing:2.396451px;}
.ls1b{letter-spacing:2.986291px;}
.ls0{letter-spacing:2.986384px;}
.ls15{letter-spacing:2.987424px;}
.ls5e{letter-spacing:2.988120px;}
.ls4d{letter-spacing:2.988662px;}
.ls23{letter-spacing:2.988797px;}
.ls13{letter-spacing:2.988845px;}
.ls2{letter-spacing:2.988877px;}
.ls5d{letter-spacing:2.989517px;}
.ls53{letter-spacing:2.990160px;}
.ls35{letter-spacing:2.991706px;}
.ls1{letter-spacing:2.992384px;}
.ls17{letter-spacing:2.993424px;}
.ls62{letter-spacing:3.443633px;}
.ls45{letter-spacing:4.304669px;}
.ls2e{letter-spacing:7.292592px;}
.ls31{letter-spacing:7.646670px;}
.ls4{letter-spacing:9.366188px;}
.ls3{letter-spacing:9.366743px;}
.ls21{letter-spacing:10.623308px;}
.ls30{letter-spacing:10.625740px;}
.ls38{letter-spacing:10.628889px;}
.ls2f{letter-spacing:10.629308px;}
.ls36{letter-spacing:10.631700px;}
.ls19{letter-spacing:11.555740px;}
.ls3c{letter-spacing:11.810889px;}
.ls41{letter-spacing:12.530889px;}
.lsc{letter-spacing:13.280889px;}
.ls68{letter-spacing:13.616971px;}
.ls6c{letter-spacing:14.612152px;}
.ls6a{letter-spacing:14.984152px;}
.ls52{letter-spacing:15.030662px;}
.ls3d{letter-spacing:15.440889px;}
.ls74{letter-spacing:15.938229px;}
.ls5a{letter-spacing:15.940552px;}
.ls40{letter-spacing:16.266845px;}
.ls66{letter-spacing:16.271722px;}
.ls4e{letter-spacing:16.272662px;}
.ls22{letter-spacing:16.404797px;}
.ls6b{letter-spacing:16.652152px;}
.ls1c{letter-spacing:16.780291px;}
.ls1a{letter-spacing:16.782845px;}
.ls49{letter-spacing:17.588669px;}
.ls6{letter-spacing:18.345254px;}
.ls76{letter-spacing:18.495706px;}
.ls58{letter-spacing:18.548160px;}
.ls10{letter-spacing:18.793463px;}
.ls7a{letter-spacing:18.926659px;}
.ls78{letter-spacing:18.927706px;}
.ls5f{letter-spacing:18.931517px;}
.ls5{letter-spacing:18.990835px;}
.ls6e{letter-spacing:19.190152px;}
.ls6d{letter-spacing:19.196152px;}
.ls54{letter-spacing:19.379633px;}
.ls61{letter-spacing:19.385633px;}
.ls7b{letter-spacing:19.701706px;}
.ls46{letter-spacing:20.786669px;}
.ls65{letter-spacing:21.728669px;}
.lsf{letter-spacing:22.093102px;}
.ls79{letter-spacing:22.139544px;}
.ls1f{letter-spacing:22.199740px;}
.ls4b{letter-spacing:22.200662px;}
.ls69{letter-spacing:22.238152px;}
.ls70{letter-spacing:22.407706px;}
.ls75{letter-spacing:22.802592px;}
.ls39{letter-spacing:23.022797px;}
.ls7c{letter-spacing:24.008592px;}
.lse{letter-spacing:24.101602px;}
.ls71{letter-spacing:24.305722px;}
.ls3e{letter-spacing:24.528797px;}
.ls3f{letter-spacing:24.582797px;}
.ls2c{letter-spacing:24.725722px;}
.ls55{letter-spacing:24.746669px;}
.ls48{letter-spacing:25.472669px;}
.ls50{letter-spacing:25.553740px;}
.ls77{letter-spacing:25.874592px;}
.ls47{letter-spacing:25.886669px;}
.ls3a{letter-spacing:26.090889px;}
.ls6f{letter-spacing:26.714592px;}
.ls9{letter-spacing:26.896216px;}
.ls57{letter-spacing:27.042662px;}
.ls51{letter-spacing:29.852669px;}
.ls42{letter-spacing:41.234889px;}
.ls43{letter-spacing:51.991155px;}
.ls4f{letter-spacing:87.776889px;}
.ls73{letter-spacing:349.871544px;}
.ls2b{letter-spacing:400.957440px;}
.ls64{letter-spacing:401.406120px;}
.ls63{letter-spacing:408.877517px;}
.ls24{letter-spacing:420.622738px;}
.ls60{letter-spacing:422.159511px;}
.ls28{letter-spacing:424.864738px;}
.ls2a{letter-spacing:426.278400px;}
.ls26{letter-spacing:429.226738px;}
.ls34{letter-spacing:937.397722px;}
.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;}
}
.ws13{word-spacing:-34.108186px;}
.ws46{word-spacing:-31.609417px;}
.ws8e{word-spacing:-25.287613px;}
.ws2{word-spacing:-24.230394px;}
.ws7a{word-spacing:-23.707162px;}
.wscd{word-spacing:-20.851339px;}
.ws8f{word-spacing:-19.549123px;}
.ws74{word-spacing:-18.930422px;}
.ws6f{word-spacing:-18.928867px;}
.ws7e{word-spacing:-18.926064px;}
.ws6d{word-spacing:-18.922867px;}
.wsf2{word-spacing:-18.330763px;}
.ws83{word-spacing:-18.324763px;}
.ws109{word-spacing:-17.701051px;}
.wsf3{word-spacing:-16.413926px;}
.ws1{word-spacing:-15.020262px;}
.wsf8{word-spacing:-14.366435px;}
.wsf6{word-spacing:-14.360435px;}
.ws25{word-spacing:-14.011436px;}
.ws11a{word-spacing:-13.374710px;}
.ws8{word-spacing:-12.995488px;}
.wsdf{word-spacing:-12.398435px;}
.ws0{word-spacing:-11.620260px;}
.ws128{word-spacing:-11.498165px;}
.ws55{word-spacing:-11.209184px;}
.wsa0{word-spacing:-10.095734px;}
.wsf1{word-spacing:-10.089696px;}
.ws53{word-spacing:-10.061328px;}
.ws125{word-spacing:-9.345359px;}
.ws4{word-spacing:-8.535992px;}
.ws47{word-spacing:-8.521958px;}
.ws137{word-spacing:-8.407363px;}
.wsca{word-spacing:-8.317339px;}
.ws84{word-spacing:-8.300064px;}
.ws82{word-spacing:-8.294064px;}
.wsd{word-spacing:-8.028803px;}
.ws7{word-spacing:-8.021371px;}
.wsc{word-spacing:-7.985715px;}
.wsb{word-spacing:-7.984136px;}
.wsf{word-spacing:-7.982585px;}
.ws6{word-spacing:-7.746970px;}
.wsd0{word-spacing:-7.440950px;}
.ws48{word-spacing:-7.435958px;}
.wsfc{word-spacing:-7.429958px;}
.wsdc{word-spacing:-5.997562px;}
.wsbb{word-spacing:-5.841562px;}
.ws139{word-spacing:-4.777363px;}
.wsba{word-spacing:-4.558042px;}
.ws13d{word-spacing:-4.549363px;}
.ws101{word-spacing:-4.213363px;}
.ws14a{word-spacing:-4.189363px;}
.wse4{word-spacing:-4.183958px;}
.ws12a{word-spacing:-4.057958px;}
.ws15d{word-spacing:-3.726950px;}
.ws175{word-spacing:-3.361958px;}
.ws80{word-spacing:-2.984064px;}
.wsa9{word-spacing:-2.773595px;}
.wse{word-spacing:-2.661221px;}
.wse2{word-spacing:-2.630133px;}
.wsa{word-spacing:-2.597858px;}
.ws57{word-spacing:-2.582312px;}
.wse7{word-spacing:-2.575958px;}
.ws4c{word-spacing:-2.486671px;}
.ws6e{word-spacing:-2.438851px;}
.ws59{word-spacing:-2.391030px;}
.ws4e{word-spacing:-2.343209px;}
.ws36{word-spacing:-2.295389px;}
.ws35{word-spacing:-2.247568px;}
.wsb7{word-spacing:-2.199748px;}
.wsc7{word-spacing:-2.008465px;}
.wsfb{word-spacing:-1.963863px;}
.wsfe{word-spacing:-1.960645px;}
.ws45{word-spacing:-1.817183px;}
.ws89{word-spacing:-1.721542px;}
.ws12{word-spacing:-1.645034px;}
.wsc9{word-spacing:-1.482439px;}
.ws58{word-spacing:-1.386797px;}
.wsc3{word-spacing:-1.338977px;}
.ws14{word-spacing:-1.334197px;}
.ws10d{word-spacing:-1.243336px;}
.ws10c{word-spacing:-1.243324px;}
.ws12f{word-spacing:-1.195515px;}
.wsc8{word-spacing:-1.147694px;}
.ws64{word-spacing:-0.997958px;}
.wsb8{word-spacing:-0.837283px;}
.ws1c{word-spacing:-0.817733px;}
.ws136{word-spacing:-0.812950px;}
.wsad{word-spacing:-0.765130px;}
.ws56{word-spacing:-0.717309px;}
.wsa3{word-spacing:-0.681734px;}
.ws111{word-spacing:-0.669488px;}
.ws12d{word-spacing:-0.621668px;}
.ws85{word-spacing:-0.587074px;}
.ws86{word-spacing:-0.573847px;}
.ws3c{word-spacing:-0.526027px;}
.ws78{word-spacing:-0.430385px;}
.ws42{word-spacing:-0.382565px;}
.ws30{word-spacing:-0.334744px;}
.wsd8{word-spacing:-0.286924px;}
.ws73{word-spacing:-0.239103px;}
.ws71{word-spacing:-0.208501px;}
.ws72{word-spacing:-0.191282px;}
.ws15c{word-spacing:-0.143462px;}
.ws69{word-spacing:-0.047821px;}
.ws9{word-spacing:-0.044353px;}
.ws11b{word-spacing:-0.038257px;}
.ws52{word-spacing:0.000000px;}
.ws32{word-spacing:0.047821px;}
.ws1e0{word-spacing:0.076513px;}
.ws13c{word-spacing:0.143462px;}
.wsdd{word-spacing:0.177019px;}
.wsdb{word-spacing:0.191282px;}
.ws50{word-spacing:0.286924px;}
.wsa7{word-spacing:0.334744px;}
.wsa8{word-spacing:0.334752px;}
.ws194{word-spacing:0.420823px;}
.ws29{word-spacing:0.430385px;}
.ws143{word-spacing:0.472637px;}
.ws148{word-spacing:0.478206px;}
.ws166{word-spacing:0.526027px;}
.ws16e{word-spacing:0.573847px;}
.ws19f{word-spacing:0.573849px;}
.ws153{word-spacing:0.598637px;}
.ws195{word-spacing:0.688619px;}
.ws7d{word-spacing:0.748637px;}
.ws7b{word-spacing:0.765130px;}
.ws8b{word-spacing:0.860771px;}
.ws8a{word-spacing:0.878849px;}
.ws9d{word-spacing:1.004233px;}
.ws33{word-spacing:1.052053px;}
.wsd7{word-spacing:1.099874px;}
.ws17{word-spacing:1.119004px;}
.ws174{word-spacing:1.147694px;}
.ws1b6{word-spacing:1.147698px;}
.ws5c{word-spacing:1.195515px;}
.ws1e1{word-spacing:1.224211px;}
.ws116{word-spacing:1.243336px;}
.ws1c5{word-spacing:1.262468px;}
.ws6a{word-spacing:1.386795px;}
.ws31{word-spacing:1.386797px;}
.ws68{word-spacing:1.409906px;}
.wsb9{word-spacing:1.434618px;}
.ws51{word-spacing:1.482439px;}
.ws114{word-spacing:1.526164px;}
.ws113{word-spacing:1.530259px;}
.ws11e{word-spacing:1.568521px;}
.ws115{word-spacing:1.578080px;}
.ws1d7{word-spacing:1.683290px;}
.wsda{word-spacing:1.769362px;}
.ws16b{word-spacing:1.817183px;}
.ws1b5{word-spacing:1.836317px;}
.ws17c{word-spacing:1.906467px;}
.ws3{word-spacing:1.912824px;}
.ws9e{word-spacing:1.931623px;}
.wsed{word-spacing:1.936637px;}
.ws138{word-spacing:1.936850px;}
.ws37{word-spacing:1.960645px;}
.ws1b9{word-spacing:2.027600px;}
.ws1a9{word-spacing:2.142370px;}
.ws2a{word-spacing:2.151927px;}
.ws1b4{word-spacing:2.180626px;}
.wsc0{word-spacing:2.247568px;}
.ws9c{word-spacing:2.295389px;}
.ws1d0{word-spacing:2.295396px;}
.ws122{word-spacing:2.298149px;}
.ws12e{word-spacing:2.343209px;}
.ws1df{word-spacing:2.371909px;}
.ws1ce{word-spacing:2.448422px;}
.wsd6{word-spacing:2.486671px;}
.ws1d8{word-spacing:2.486679px;}
.ws149{word-spacing:2.502205px;}
.ws14b{word-spacing:2.516004px;}
.ws14c{word-spacing:2.534492px;}
.ws144{word-spacing:2.677954px;}
.ws19b{word-spacing:2.677962px;}
.ws164{word-spacing:2.701126px;}
.ws163{word-spacing:2.705858px;}
.ws165{word-spacing:2.725774px;}
.wsa6{word-spacing:2.821415px;}
.ws18c{word-spacing:2.907502px;}
.ws79{word-spacing:2.917057px;}
.ws19{word-spacing:2.926625px;}
.ws4d{word-spacing:2.964877px;}
.ws14d{word-spacing:3.012698px;}
.ws135{word-spacing:3.060518px;}
.ws15{word-spacing:3.141818px;}
.wsc1{word-spacing:3.156160px;}
.wsf7{word-spacing:3.203980px;}
.wsf5{word-spacing:3.240926px;}
.wsf9{word-spacing:3.251801px;}
.ws11{word-spacing:3.281702px;}
.ws196{word-spacing:3.290068px;}
.ws2e{word-spacing:3.299621px;}
.ws1e{word-spacing:3.313972px;}
.wse3{word-spacing:3.347442px;}
.ws3a{word-spacing:3.356987px;}
.ws38{word-spacing:3.357011px;}
.ws129{word-spacing:3.395263px;}
.wsf0{word-spacing:3.443083px;}
.ws1cf{word-spacing:3.443094px;}
.ws62{word-spacing:3.490904px;}
.ws18e{word-spacing:3.519607px;}
.ws173{word-spacing:3.586545px;}
.ws133{word-spacing:3.596120px;}
.ws3b{word-spacing:3.634366px;}
.ws131{word-spacing:3.634377px;}
.ws22{word-spacing:3.682186px;}
.ws172{word-spacing:3.730007px;}
.ws1ab{word-spacing:3.749147px;}
.ws4b{word-spacing:3.777827px;}
.ws6c{word-spacing:3.969110px;}
.ws1e5{word-spacing:3.978686px;}
.wsd3{word-spacing:4.016930px;}
.wse6{word-spacing:4.064751px;}
.wsd2{word-spacing:4.112572px;}
.ws192{word-spacing:4.169969px;}
.ws1bf{word-spacing:4.246483px;}
.wsc2{word-spacing:4.256033px;}
.ws10b{word-spacing:4.284739px;}
.ws3e{word-spacing:4.399495px;}
.ws1e3{word-spacing:4.399509px;}
.ws6b{word-spacing:4.405298px;}
.wsb0{word-spacing:4.447316px;}
.wsae{word-spacing:4.495136px;}
.wsaf{word-spacing:4.495152px;}
.ws1a{word-spacing:4.519053px;}
.wsc4{word-spacing:4.542957px;}
.ws15f{word-spacing:4.590778px;}
.ws34{word-spacing:4.638598px;}
.ws18d{word-spacing:4.667305px;}
.wsff{word-spacing:4.686419px;}
.ws8c{word-spacing:4.705562px;}
.ws15a{word-spacing:4.713893px;}
.ws157{word-spacing:4.714551px;}
.ws159{word-spacing:4.714692px;}
.ws162{word-spacing:4.731804px;}
.ws63{word-spacing:4.734239px;}
.ws108{word-spacing:4.739009px;}
.ws54{word-spacing:4.743818px;}
.ws66{word-spacing:4.782060px;}
.ws1d5{word-spacing:4.820332px;}
.ws17a{word-spacing:4.877701px;}
.wsd5{word-spacing:4.925522px;}
.ws197{word-spacing:4.935101px;}
.wsb1{word-spacing:4.973342px;}
.wsb3{word-spacing:5.011615px;}
.ws40{word-spacing:5.068984px;}
.ws1c9{word-spacing:5.088128px;}
.ws41{word-spacing:5.116804px;}
.ws1bd{word-spacing:5.126384px;}
.ws1a6{word-spacing:5.202898px;}
.ws3d{word-spacing:5.212445px;}
.ws191{word-spacing:5.241154px;}
.ws106{word-spacing:5.279411px;}
.wsc6{word-spacing:5.308087px;}
.ws104{word-spacing:5.317667px;}
.ws3f{word-spacing:5.355907px;}
.ws1ad{word-spacing:5.394181px;}
.ws150{word-spacing:5.403728px;}
.ws151{word-spacing:5.407126px;}
.ws1b{word-spacing:5.422864px;}
.ws2c{word-spacing:5.547190px;}
.ws9a{word-spacing:5.595010px;}
.ws102{word-spacing:5.642831px;}
.ws1ba{word-spacing:5.661977px;}
.wsbd{word-spacing:5.690651px;}
.ws1cd{word-spacing:5.738490px;}
.ws141{word-spacing:5.881934px;}
.ws180{word-spacing:5.929754px;}
.ws17e{word-spacing:5.941265px;}
.wsd1{word-spacing:5.977575px;}
.ws16{word-spacing:5.982365px;}
.wsa4{word-spacing:6.019126px;}
.wsa2{word-spacing:6.025396px;}
.wsa1{word-spacing:6.030926px;}
.ws118{word-spacing:6.044543px;}
.ws1de{word-spacing:6.082799px;}
.wsb6{word-spacing:6.090154px;}
.wsab{word-spacing:6.121037px;}
.ws1a3{word-spacing:6.197569px;}
.wse9{word-spacing:6.216678px;}
.ws18{word-spacing:6.240597px;}
.ws27{word-spacing:6.264499px;}
.ws28{word-spacing:6.312319px;}
.ws10f{word-spacing:6.407960px;}
.ws110{word-spacing:6.407972px;}
.wsde{word-spacing:6.455781px;}
.wsb4{word-spacing:6.503602px;}
.ws88{word-spacing:6.551422px;}
.ws1a5{word-spacing:6.580135px;}
.ws168{word-spacing:6.599243px;}
.ws1cb{word-spacing:6.656648px;}
.ws1ac{word-spacing:6.694905px;}
.ws43{word-spacing:6.742705px;}
.ws1c8{word-spacing:6.809675px;}
.ws18f{word-spacing:6.847931px;}
.ws16c{word-spacing:6.886166px;}
.wsc5{word-spacing:6.933987px;}
.ws2d{word-spacing:6.981808px;}
.wsaa{word-spacing:7.029628px;}
.ws1cc{word-spacing:7.039214px;}
.ws1d6{word-spacing:7.077471px;}
.wsd9{word-spacing:7.173090px;}
.ws190{word-spacing:7.192241px;}
.ws154{word-spacing:7.268731px;}
.ws11f{word-spacing:7.307011px;}
.ws152{word-spacing:7.316552px;}
.ws15e{word-spacing:7.364372px;}
.ws77{word-spacing:7.412193px;}
.ws1c2{word-spacing:7.421780px;}
.ws7c{word-spacing:7.460014px;}
.ws11d{word-spacing:7.460037px;}
.ws99{word-spacing:7.507834px;}
.ws1a7{word-spacing:7.536550px;}
.wsbe{word-spacing:7.555655px;}
.wsbf{word-spacing:7.603475px;}
.ws9b{word-spacing:7.699117px;}
.ws1c7{word-spacing:7.727833px;}
.wscf{word-spacing:7.794758px;}
.ws1ae{word-spacing:7.804346px;}
.ws1c3{word-spacing:7.842603px;}
.ws169{word-spacing:7.890399px;}
.ws23{word-spacing:7.938220px;}
.ws100{word-spacing:7.986040px;}
.ws1da{word-spacing:7.995629px;}
.ws1d{word-spacing:8.005180px;}
.ws5e{word-spacing:8.081681px;}
.ws70{word-spacing:8.129502px;}
.ws7f{word-spacing:8.177323px;}
.wsd4{word-spacing:8.272964px;}
.ws19d{word-spacing:8.339939px;}
.ws1bb{word-spacing:8.378195px;}
.ws16f{word-spacing:8.464246px;}
.ws24{word-spacing:8.512067px;}
.ws21{word-spacing:8.559887px;}
.wsec{word-spacing:8.607708px;}
.ws1d2{word-spacing:8.607735px;}
.wsee{word-spacing:8.655529px;}
.ws87{word-spacing:8.703349px;}
.wsef{word-spacing:8.751170px;}
.ws13e{word-spacing:8.846811px;}
.ws67{word-spacing:8.942452px;}
.ws1ca{word-spacing:8.952044px;}
.ws61{word-spacing:8.990273px;}
.ws186{word-spacing:9.325017px;}
.ws184{word-spacing:9.360492px;}
.ws13a{word-spacing:9.516299px;}
.ws1db{word-spacing:9.525893px;}
.wscc{word-spacing:9.621565px;}
.ws1a1{word-spacing:9.640663px;}
.ws4f{word-spacing:9.659761px;}
.ws1c4{word-spacing:9.678920px;}
.ws1aa{word-spacing:9.717176px;}
.wseb{word-spacing:9.755402px;}
.ws19e{word-spacing:9.755433px;}
.ws199{word-spacing:9.793690px;}
.ws12c{word-spacing:9.803223px;}
.ws1b3{word-spacing:9.831946px;}
.ws16d{word-spacing:9.851044px;}
.ws1c6{word-spacing:9.908459px;}
.ws160{word-spacing:9.946685px;}
.ws1d1{word-spacing:10.023229px;}
.ws2b{word-spacing:10.042326px;}
.ws112{word-spacing:10.064889px;}
.ws5a{word-spacing:10.090147px;}
.ws5b{word-spacing:10.137967px;}
.ws178{word-spacing:10.185788px;}
.ws1bc{word-spacing:10.214512px;}
.ws1dd{word-spacing:10.329282px;}
.ws189{word-spacing:10.377070px;}
.ws1d4{word-spacing:10.405795px;}
.ws44{word-spacing:10.424891px;}
.ws132{word-spacing:10.597078px;}
.ws60{word-spacing:10.759635px;}
.ws19a{word-spacing:10.788361px;}
.ws16a{word-spacing:10.807456px;}
.ws167{word-spacing:10.855276px;}
.ws19c{word-spacing:10.903131px;}
.ws1af{word-spacing:11.017901px;}
.ws183{word-spacing:11.094379px;}
.ws181{word-spacing:11.138104px;}
.wsac{word-spacing:11.142200px;}
.ws5d{word-spacing:11.237841px;}
.ws1a0{word-spacing:11.247440px;}
.ws13b{word-spacing:11.381303px;}
.wsfa{word-spacing:11.524765px;}
.ws1e2{word-spacing:11.706520px;}
.ws170{word-spacing:11.763868px;}
.ws1b0{word-spacing:11.936059px;}
.wsfd{word-spacing:11.980642px;}
.ws20{word-spacing:12.002971px;}
.ws161{word-spacing:12.050791px;}
.wsb5{word-spacing:12.098612px;}
.ws2f{word-spacing:12.289894px;}
.wsea{word-spacing:12.433356px;}
.ws1d3{word-spacing:12.624678px;}
.ws5f{word-spacing:12.672459px;}
.ws10e{word-spacing:12.768100px;}
.ws193{word-spacing:12.777704px;}
.ws1a2{word-spacing:12.815961px;}
.ws49{word-spacing:13.055024px;}
.ws1b2{word-spacing:13.083757px;}
.wsbc{word-spacing:13.102844px;}
.ws198{word-spacing:13.160270px;}
.ws81{word-spacing:13.222682px;}
.ws1c0{word-spacing:13.236784px;}
.ws9f{word-spacing:13.246306px;}
.ws1b1{word-spacing:13.275040px;}
.ws177{word-spacing:13.294127px;}
.ws1a8{word-spacing:13.351553px;}
.ws1e4{word-spacing:13.428067px;}
.ws17b{word-spacing:13.437589px;}
.ws26{word-spacing:13.628871px;}
.ws15b{word-spacing:13.867974px;}
.ws4a{word-spacing:14.107077px;}
.wscb{word-spacing:14.202718px;}
.ws179{word-spacing:14.250539px;}
.ws75{word-spacing:14.489642px;}
.ws76{word-spacing:14.585283px;}
.ws130{word-spacing:14.767048px;}
.ws1b7{word-spacing:14.843561px;}
.ws145{word-spacing:14.920027px;}
.ws10a{word-spacing:15.455666px;}
.ws5{word-spacing:15.876439px;}
.ws39{word-spacing:15.881243px;}
.ws134{word-spacing:15.899710px;}
.ws119{word-spacing:15.905710px;}
.ws10{word-spacing:15.914746px;}
.wsb2{word-spacing:16.182542px;}
.ws171{word-spacing:16.259004px;}
.ws107{word-spacing:16.475710px;}
.ws105{word-spacing:16.481710px;}
.ws103{word-spacing:16.488595px;}
.wse5{word-spacing:16.498107px;}
.ws18b{word-spacing:16.565108px;}
.ws12b{word-spacing:16.593748px;}
.ws146{word-spacing:16.641569px;}
.ws1be{word-spacing:16.909417px;}
.ws1a4{word-spacing:16.947674px;}
.ws117{word-spacing:17.215470px;}
.ws1dc{word-spacing:17.253727px;}
.ws176{word-spacing:17.311057px;}
.ws147{word-spacing:17.358878px;}
.wse8{word-spacing:18.076187px;}
.ws1b8{word-spacing:18.171885px;}
.wse1{word-spacing:18.488587px;}
.ws14f{word-spacing:18.506572px;}
.ws11c{word-spacing:18.630964px;}
.ws18a{word-spacing:18.669221px;}
.ws65{word-spacing:18.748681px;}
.ws14e{word-spacing:19.128240px;}
.wse0{word-spacing:19.176061px;}
.ws1c1{word-spacing:19.778662px;}
.ws142{word-spacing:19.817996px;}
.ws140{word-spacing:19.845549px;}
.ws17f{word-spacing:19.893370px;}
.ws1d9{word-spacing:20.161228px;}
.ws188{word-spacing:20.419396px;}
.wsa5{word-spacing:22.064866px;}
.ws13f{word-spacing:22.188758px;}
.ws187{word-spacing:23.240812px;}
.ws185{word-spacing:23.281009px;}
.ws1f{word-spacing:23.862479px;}
.ws182{word-spacing:25.046682px;}
.ws17d{word-spacing:26.062227px;}
.wsce{word-spacing:41.173537px;}
.ws93{word-spacing:263.014125px;}
.ws127{word-spacing:274.376335px;}
.ws8d{word-spacing:275.677060px;}
.ws124{word-spacing:289.602462px;}
.ws156{word-spacing:295.438867px;}
.ws158{word-spacing:298.937072px;}
.ws123{word-spacing:322.503138px;}
.ws126{word-spacing:322.541395px;}
.ws120{word-spacing:347.829007px;}
.ws96{word-spacing:353.129789px;}
.ws95{word-spacing:354.174178px;}
.ws94{word-spacing:358.271395px;}
.ws91{word-spacing:364.930709px;}
.ws98{word-spacing:367.644149px;}
.ws121{word-spacing:376.291918px;}
.ws92{word-spacing:390.504845px;}
.ws97{word-spacing:392.168407px;}
.ws90{word-spacing:402.207355px;}
.ws155{word-spacing:471.133284px;}
.wsf4{word-spacing:684.767237px;}
._4{margin-left:-18.829440px;}
._1{margin-left:-2.646218px;}
._16{width:1.874177px;}
._8{width:3.026503px;}
._9{width:4.342606px;}
._2{width:10.503882px;}
._1c{width:13.292690px;}
._0{width:15.622794px;}
._3{width:16.874192px;}
._1a{width:18.258295px;}
._7{width:19.834037px;}
._6{width:23.891876px;}
._1b{width:26.577801px;}
._27{width:29.878405px;}
._5{width:31.900328px;}
._19{width:44.354826px;}
._23{width:213.471029px;}
._1f{width:257.237378px;}
._1e{width:261.240220px;}
._15{width:273.338775px;}
._13{width:286.846147px;}
._f{width:293.810688px;}
._11{width:309.111488px;}
._25{width:310.222769px;}
._26{width:313.924529px;}
._12{width:315.768137px;}
._20{width:317.069028px;}
._21{width:318.830900px;}
._17{width:320.399025px;}
._b{width:341.133199px;}
._22{width:354.370886px;}
._10{width:356.168946px;}
._1d{width:360.606712px;}
._18{width:385.090936px;}
._c{width:389.299162px;}
._d{width:406.361605px;}
._e{width:408.796511px;}
._a{width:432.337837px;}
._24{width:440.027413px;}
._14{width:451.466137px;}
.fc2{color:rgb(0,128,172);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs7{font-size:26.779200px;}
.fsb{font-size:35.865600px;}
.fsc{font-size:38.256000px;}
.fs8{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs0{font-size:43.038000px;}
.fsa{font-size:43.038600px;}
.fs6{font-size:44.353200px;}
.fs1{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs4{font-size:63.362400px;}
.fs3{font-size:80.697600px;}
.fs2{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y53{bottom:47.430000px;}
.y5{bottom:76.860000px;}
.y87{bottom:80.236500px;}
.y11c{bottom:83.757000px;}
.y4{bottom:91.200000px;}
.y1bb{bottom:93.088500px;}
.y109{bottom:95.650500px;}
.y14b{bottom:95.689500px;}
.y130{bottom:95.761500px;}
.ye1{bottom:95.979000px;}
.yb8{bottom:96.033000px;}
.y86{bottom:96.103500px;}
.y116{bottom:96.139500px;}
.y112{bottom:96.223500px;}
.y18f{bottom:96.255000px;}
.y161{bottom:96.526500px;}
.y11b{bottom:96.607500px;}
.y3{bottom:105.630000px;}
.y1ba{bottom:105.940500px;}
.y11a{bottom:109.459500px;}
.y108{bottom:111.064500px;}
.y14a{bottom:111.142500px;}
.y12f{bottom:111.285000px;}
.ye0{bottom:111.723000px;}
.yb7{bottom:111.829500px;}
.y85{bottom:111.970500px;}
.y115{bottom:112.042500px;}
.y111{bottom:112.212000px;}
.y18e{bottom:112.273500px;}
.y160{bottom:112.818000px;}
.y1b9{bottom:118.666500px;}
.y51{bottom:119.718000px;}
.y119{bottom:122.311500px;}
.y107{bottom:126.477000px;}
.y149{bottom:126.594000px;}
.y12e{bottom:126.810000px;}
.ydf{bottom:127.467000px;}
.yb6{bottom:127.627500px;}
.y84{bottom:127.837500px;}
.y110{bottom:128.200500px;}
.y18d{bottom:128.293500px;}
.y114{bottom:128.370000px;}
.y15f{bottom:129.109500px;}
.y1b8{bottom:131.518500px;}
.y50{bottom:134.064000px;}
.y106{bottom:141.891000px;}
.y148{bottom:142.047000px;}
.y12d{bottom:142.335000px;}
.yde{bottom:143.211000px;}
.yb5{bottom:143.635500px;}
.y83{bottom:143.704500px;}
.y10f{bottom:144.187500px;}
.y113{bottom:144.273000px;}
.y18c{bottom:144.312000px;}
.y1b7{bottom:144.369000px;}
.y15e{bottom:145.399500px;}
.y1b6{bottom:157.221000px;}
.y105{bottom:157.305000px;}
.y147{bottom:157.500000px;}
.y12c{bottom:157.860000px;}
.ydd{bottom:158.953500px;}
.y3a{bottom:159.289500px;}
.yb4{bottom:159.433500px;}
.y82{bottom:159.922500px;}
.y10e{bottom:160.176000px;}
.y18b{bottom:160.330500px;}
.y15d{bottom:161.691000px;}
.y1b5{bottom:169.947000px;}
.y104{bottom:172.719000px;}
.y146{bottom:172.953000px;}
.ydc{bottom:174.697500px;}
.yb3{bottom:175.230000px;}
.y81{bottom:175.789500px;}
.y18a{bottom:176.349000px;}
.y39{bottom:177.297000px;}
.y15c{bottom:179.181000px;}
.y1b4{bottom:182.799000px;}
.y103{bottom:188.133000px;}
.y145{bottom:188.406000px;}
.y12b{bottom:188.743500px;}
.ydb{bottom:190.441500px;}
.yb2{bottom:191.026500px;}
.y189{bottom:192.369000px;}
.y15b{bottom:195.472500px;}
.y1b3{bottom:195.651000px;}
.y80{bottom:196.620000px;}
.y10d{bottom:198.616500px;}
.y102{bottom:203.547000px;}
.y144{bottom:203.859000px;}
.y7e{bottom:204.988500px;}
.yda{bottom:206.184000px;}
.yb1{bottom:206.824500px;}
.y188{bottom:208.387500px;}
.y1b2{bottom:208.503000px;}
.y10c{bottom:211.468500px;}
.y15a{bottom:211.762500px;}
.y7f{bottom:215.377500px;}
.y38{bottom:218.317500px;}
.y101{bottom:218.961000px;}
.y143{bottom:219.312000px;}
.y12a{bottom:219.460500px;}
.y1b1{bottom:221.229000px;}
.yd9{bottom:222.033000px;}
.yb0{bottom:222.621000px;}
.y187{bottom:224.406000px;}
.y4f{bottom:226.246500px;}
.y159{bottom:228.054000px;}
.y37{bottom:233.652000px;}
.y1b0{bottom:234.081000px;}
.y100{bottom:234.375000px;}
.y142{bottom:234.765000px;}
.y129{bottom:234.985500px;}
.y7d{bottom:237.319500px;}
.yd8{bottom:237.777000px;}
.yaf{bottom:238.417500px;}
.y186{bottom:240.424500px;}
.y4e{bottom:243.378000px;}
.y158{bottom:244.345500px;}
.y1af{bottom:246.933000px;}
.y36{bottom:248.988000px;}
.yff{bottom:249.789000px;}
.y141{bottom:250.218000px;}
.y7c{bottom:253.186500px;}
.yd7{bottom:253.519500px;}
.yae{bottom:254.215500px;}
.y185{bottom:257.100000px;}
.y1ae{bottom:259.785000px;}
.y4d{bottom:260.511000px;}
.y157{bottom:261.835500px;}
.y35{bottom:264.322500px;}
.y140{bottom:265.671000px;}
.yd6{bottom:269.263500px;}
.y7b{bottom:269.404500px;}
.y1ad{bottom:272.511000px;}
.y184{bottom:273.118500px;}
.yfe{bottom:274.770000px;}
.y4c{bottom:277.642500px;}
.y156{bottom:278.127000px;}
.y34{bottom:279.658500px;}
.y13f{bottom:281.124000px;}
.yfd{bottom:283.138500px;}
.yd5{bottom:285.007500px;}
.y7a{bottom:285.271500px;}
.y1ac{bottom:285.361500px;}
.yad{bottom:286.549500px;}
.y183{bottom:289.137000px;}
.y155{bottom:294.417000px;}
.y4b{bottom:294.774000px;}
.y33{bottom:294.994500px;}
.y13e{bottom:296.577000px;}
.y1ab{bottom:298.213500px;}
.y128{bottom:298.684500px;}
.yd4{bottom:300.750000px;}
.y79{bottom:301.138500px;}
.y182{bottom:305.157000px;}
.y32{bottom:310.329000px;}
.y154{bottom:310.708500px;}
.y1aa{bottom:310.939500px;}
.y4a{bottom:311.905500px;}
.y13d{bottom:312.030000px;}
.yfc{bottom:313.134000px;}
.y1f9{bottom:314.089500px;}
.yd3{bottom:316.494000px;}
.y127{bottom:316.507500px;}
.y78{bottom:317.005500px;}
.yac{bottom:319.414500px;}
.y181{bottom:321.175500px;}
.y1a9{bottom:323.791500px;}
.y31{bottom:325.665000px;}
.y1f8{bottom:326.941500px;}
.y153{bottom:327.000000px;}
.y13c{bottom:327.483000px;}
.yfb{bottom:328.548000px;}
.y49{bottom:329.037000px;}
.y126{bottom:329.359500px;}
.yd2{bottom:332.238000px;}
.y77{bottom:332.872500px;}
.yab{bottom:335.211000px;}
.y1a8{bottom:336.643500px;}
.y180{bottom:337.194000px;}
.y1f7{bottom:339.793500px;}
.y30{bottom:341.001000px;}
.y125{bottom:342.211500px;}
.y13b{bottom:342.936000px;}
.yfa{bottom:343.962000px;}
.y48{bottom:346.168500px;}
.yd1{bottom:347.982000px;}
.y76{bottom:348.739500px;}
.y1a7{bottom:349.495500px;}
.yaa{bottom:351.009000px;}
.y1f6{bottom:352.645500px;}
.y17f{bottom:353.212500px;}
.y124{bottom:355.063500px;}
.y2f{bottom:356.335500px;}
.y13a{bottom:358.389000px;}
.yf9{bottom:359.376000px;}
.y1a6{bottom:362.347500px;}
.y47{bottom:363.300000px;}
.yd0{bottom:363.724500px;}
.y75{bottom:364.606500px;}
.y1f5{bottom:365.497500px;}
.ya9{bottom:366.805500px;}
.y17e{bottom:369.232500px;}
.y2e{bottom:371.671500px;}
.y123{bottom:373.435500px;}
.y139{bottom:373.840500px;}
.yf8{bottom:374.790000px;}
.y1a5{bottom:375.073500px;}
.y1f4{bottom:378.349500px;}
.ycf{bottom:379.468500px;}
.y46{bottom:380.431500px;}
.y74{bottom:380.473500px;}
.y152{bottom:383.226000px;}
.y17d{bottom:385.251000px;}
.y2d{bottom:387.006000px;}
.ya8{bottom:387.496500px;}
.y1a4{bottom:387.925500px;}
.y138{bottom:389.293500px;}
.yf7{bottom:390.204000px;}
.y1f3{bottom:391.200000px;}
.y20b{bottom:391.201500px;}
.y122{bottom:391.260000px;}
.ya6{bottom:395.865000px;}
.y151{bottom:396.078000px;}
.y73{bottom:396.693000px;}
.y45{bottom:397.563000px;}
.y1a3{bottom:400.651500px;}
.y17c{bottom:401.269500px;}
.y2c{bottom:402.342000px;}
.y1f2{bottom:404.052000px;}
.y20a{bottom:404.053500px;}
.y121{bottom:404.112000px;}
.y137{bottom:404.746500px;}
.yf6{bottom:405.618000px;}
.ya7{bottom:406.254000px;}
.y150{bottom:408.930000px;}
.yce{bottom:411.322500px;}
.y72{bottom:412.560000px;}
.y1a2{bottom:413.503500px;}
.y44{bottom:414.694500px;}
.y1f1{bottom:416.904000px;}
.y120{bottom:416.962500px;}
.y17b{bottom:417.289500px;}
.y2b{bottom:417.678000px;}
.y136{bottom:420.199500px;}
.yf5{bottom:421.032000px;}
.y14f{bottom:421.782000px;}
.y1a1{bottom:426.355500px;}
.ya5{bottom:426.501000px;}
.y71{bottom:428.427000px;}
.y1f0{bottom:429.756000px;}
.y43{bottom:431.827500px;}
.y2a{bottom:433.012500px;}
.y17a{bottom:433.308000px;}
.y11f{bottom:434.787000px;}
.y135{bottom:435.652500px;}
.yf4{bottom:436.446000px;}
.y1a0{bottom:439.081500px;}
.y14e{bottom:439.606500px;}
.y1ef{bottom:442.608000px;}
.ycd{bottom:443.437500px;}
.ya3{bottom:444.222000px;}
.y70{bottom:444.292500px;}
.y29{bottom:448.348500px;}
.ya4{bottom:448.405500px;}
.y42{bottom:448.959000px;}
.y179{bottom:449.326500px;}
.y11e{bottom:450.930000px;}
.y134{bottom:451.105500px;}
.yf3{bottom:451.858500px;}
.ya2{bottom:452.590500px;}
.y1ee{bottom:455.460000px;}
.y14d{bottom:455.748000px;}
.ycc{bottom:459.181500px;}
.y6f{bottom:460.159500px;}
.y28{bottom:463.684500px;}
.y11d{bottom:463.782000px;}
.y178{bottom:466.000500px;}
.y41{bottom:466.090500px;}
.y133{bottom:466.558500px;}
.yf2{bottom:467.272500px;}
.y19f{bottom:467.497500px;}
.y1ed{bottom:468.312000px;}
.y14c{bottom:468.600000px;}
.ycb{bottom:474.925500px;}
.y6e{bottom:476.026500px;}
.y27{bottom:479.019000px;}
.y1ec{bottom:481.164000px;}
.ya1{bottom:481.626000px;}
.y177{bottom:482.020500px;}
.yf1{bottom:482.686500px;}
.y40{bottom:483.222000px;}
.y6d{bottom:492.246000px;}
.y1eb{bottom:494.014500px;}
.y209{bottom:494.016000px;}
.y26{bottom:494.355000px;}
.ya0{bottom:497.422500px;}
.y176{bottom:498.039000px;}
.y118{bottom:498.490500px;}
.y19e{bottom:498.502500px;}
.y3f{bottom:500.353500px;}
.y132{bottom:501.964500px;}
.yca{bottom:506.779500px;}
.y1ea{bottom:506.866500px;}
.y208{bottom:506.868000px;}
.y6c{bottom:508.113000px;}
.y25{bottom:509.689500px;}
.y117{bottom:511.342500px;}
.y9f{bottom:513.220500px;}
.yf0{bottom:513.237000px;}
.y175{bottom:514.057500px;}
.y19d{bottom:514.131000px;}
.y131{bottom:514.816500px;}
.y3e{bottom:517.485000px;}
.y1e9{bottom:519.718500px;}
.y6b{bottom:523.980000px;}
.y24{bottom:525.025500px;}
.y9e{bottom:529.017000px;}
.y174{bottom:530.076000px;}
.y1e8{bottom:532.570500px;}
.y3d{bottom:534.616500px;}
.yc9{bottom:538.894500px;}
.y6a{bottom:539.847000px;}
.y23{bottom:540.361500px;}
.yef{bottom:543.510000px;}
.y9d{bottom:544.813500px;}
.y19c{bottom:545.325000px;}
.y1e7{bottom:545.422500px;}
.y173{bottom:546.096000px;}
.y3c{bottom:551.748000px;}
.yc8{bottom:554.638500px;}
.y22{bottom:555.696000px;}
.y1e6{bottom:558.274500px;}
.yee{bottom:558.924000px;}
.y9c{bottom:560.823000px;}
.y172{bottom:562.114500px;}
.y10b{bottom:563.646000px;}
.y3b{bottom:568.879500px;}
.yc7{bottom:570.382500px;}
.y1e5{bottom:571.126500px;}
.y69{bottom:572.811000px;}
.yed{bottom:574.338000px;}
.y19b{bottom:576.330000px;}
.y10a{bottom:576.498000px;}
.y9b{bottom:576.619500px;}
.y171{bottom:578.133000px;}
.y1e4{bottom:583.977000px;}
.y207{bottom:583.978500px;}
.y21{bottom:586.011000px;}
.yc6{bottom:586.125000px;}
.yec{bottom:589.752000px;}
.y170{bottom:594.153000px;}
.y1e3{bottom:596.829000px;}
.y206{bottom:596.830500px;}
.yc5{bottom:601.869000px;}
.yeb{bottom:605.166000px;}
.y68{bottom:605.599500px;}
.y19a{bottom:607.524000px;}
.y1e2{bottom:609.681000px;}
.y205{bottom:609.682500px;}
.y16f{bottom:610.171500px;}
.yc4{bottom:617.613000px;}
.yea{bottom:620.580000px;}
.y1e1{bottom:622.533000px;}
.y16e{bottom:626.190000px;}
.y20{bottom:632.020500px;}
.y9a{bottom:632.847000px;}
.yc3{bottom:633.355500px;}
.y1e0{bottom:635.385000px;}
.ye9{bottom:635.994000px;}
.y199{bottom:638.529000px;}
.y67{bottom:639.442500px;}
.y16d{bottom:642.208500px;}
.y1f{bottom:646.366500px;}
.y1df{bottom:648.237000px;}
.yc2{bottom:649.099500px;}
.y99{bottom:650.670000px;}
.ye8{bottom:651.408000px;}
.y198{bottom:654.157500px;}
.y66{bottom:655.309500px;}
.y16c{bottom:658.228500px;}
.y1e{bottom:660.712500px;}
.y1de{bottom:661.089000px;}
.y98{bottom:663.522000px;}
.yc1{bottom:664.843500px;}
.ye7{bottom:666.822000px;}
.y197{bottom:669.786000px;}
.y65{bottom:671.176500px;}
.y1dd{bottom:673.941000px;}
.y16b{bottom:674.247000px;}
.y1d{bottom:675.058500px;}
.y97{bottom:676.374000px;}
.yc0{bottom:680.586000px;}
.ye6{bottom:682.234500px;}
.y1dc{bottom:686.791500px;}
.y204{bottom:686.793000px;}
.y64{bottom:687.043500px;}
.y96{bottom:689.226000px;}
.y1c{bottom:689.404500px;}
.y16a{bottom:690.265500px;}
.ybf{bottom:696.330000px;}
.ye5{bottom:697.648500px;}
.y1db{bottom:699.643500px;}
.y203{bottom:699.645000px;}
.y196{bottom:700.978500px;}
.y63{bottom:702.910500px;}
.y1b{bottom:703.750500px;}
.y169{bottom:706.939500px;}
.y95{bottom:707.050500px;}
.y14{bottom:711.775500px;}
.ybe{bottom:712.074000px;}
.y1da{bottom:712.495500px;}
.y202{bottom:712.497000px;}
.ye4{bottom:713.062500px;}
.y1a{bottom:718.096500px;}
.y62{bottom:718.777500px;}
.y168{bottom:722.959500px;}
.y94{bottom:723.192000px;}
.y13{bottom:724.627500px;}
.y1d9{bottom:725.347500px;}
.ybd{bottom:727.818000px;}
.ye3{bottom:728.476500px;}
.y195{bottom:731.983500px;}
.y19{bottom:732.444000px;}
.y61{bottom:734.644500px;}
.y93{bottom:736.044000px;}
.y12{bottom:737.479500px;}
.y1d8{bottom:738.199500px;}
.y167{bottom:738.978000px;}
.ybc{bottom:743.560500px;}
.ye2{bottom:743.890500px;}
.y18{bottom:746.790000px;}
.y194{bottom:747.612000px;}
.y11{bottom:750.330000px;}
.y60{bottom:750.511500px;}
.y1d7{bottom:751.051500px;}
.y166{bottom:754.996500px;}
.ybb{bottom:759.304500px;}
.y17{bottom:761.136000px;}
.y10{bottom:763.182000px;}
.y193{bottom:763.240500px;}
.y1d6{bottom:763.903500px;}
.y5f{bottom:766.378500px;}
.y92{bottom:774.885000px;}
.y16{bottom:775.482000px;}
.yf{bottom:776.034000px;}
.y1d5{bottom:776.755500px;}
.y192{bottom:778.869000px;}
.y5e{bottom:782.245500px;}
.y91{bottom:787.737000px;}
.y165{bottom:789.328500px;}
.y1d4{bottom:789.606000px;}
.y201{bottom:789.607500px;}
.yba{bottom:793.261500px;}
.y191{bottom:794.497500px;}
.y5d{bottom:798.112500px;}
.y90{bottom:800.589000px;}
.y1d3{bottom:802.458000px;}
.y200{bottom:802.459500px;}
.ye{bottom:804.034500px;}
.y15{bottom:804.079500px;}
.yb9{bottom:806.113500px;}
.y190{bottom:810.126000px;}
.y8f{bottom:813.441000px;}
.y5c{bottom:814.330500px;}
.y1d2{bottom:815.310000px;}
.y164{bottom:825.300000px;}
.y8e{bottom:826.293000px;}
.y1d1{bottom:828.162000px;}
.y5b{bottom:830.197500px;}
.y8d{bottom:839.145000px;}
.y1d0{bottom:841.014000px;}
.y163{bottom:841.318500px;}
.y5a{bottom:846.064500px;}
.yd{bottom:849.898500px;}
.y8c{bottom:851.995500px;}
.y1cf{bottom:853.866000px;}
.y59{bottom:861.931500px;}
.yc{bottom:862.749000px;}
.y8b{bottom:864.847500px;}
.y1ce{bottom:866.718000px;}
.y162{bottom:876.724500px;}
.y58{bottom:877.798500px;}
.yb{bottom:878.232000px;}
.y1cd{bottom:879.570000px;}
.y8a{bottom:882.672000px;}
.y1cc{bottom:892.420500px;}
.y1ff{bottom:892.422000px;}
.y57{bottom:893.665500px;}
.ya{bottom:897.658500px;}
.y89{bottom:898.722000px;}
.y1cb{bottom:905.272500px;}
.y1fe{bottom:905.274000px;}
.y56{bottom:909.532500px;}
.y88{bottom:911.574000px;}
.y1ca{bottom:918.124500px;}
.y9{bottom:924.865500px;}
.y1c9{bottom:930.976500px;}
.y55{bottom:943.524000px;}
.y1c8{bottom:943.828500px;}
.y1c7{bottom:956.680500px;}
.y1c6{bottom:969.532500px;}
.y1c5{bottom:982.384500px;}
.y1c4{bottom:995.235000px;}
.y1fd{bottom:995.236500px;}
.y8{bottom:1004.473500px;}
.y1c3{bottom:1008.087000px;}
.y1fc{bottom:1008.088500px;}
.y1c2{bottom:1020.939000px;}
.y1c1{bottom:1033.791000px;}
.y7{bottom:1044.445500px;}
.y1c0{bottom:1046.643000px;}
.y1bf{bottom:1059.495000px;}
.y1be{bottom:1072.347000px;}
.y1bd{bottom:1085.197500px;}
.y1fb{bottom:1085.199000px;}
.y6{bottom:1086.802500px;}
.y1bc{bottom:1098.049500px;}
.y1fa{bottom:1098.051000px;}
.y2{bottom:1127.505000px;}
.y52{bottom:1128.630000px;}
.y54{bottom:1128.849000px;}
.h16{height:21.232346px;}
.ha{height:23.536406px;}
.he{height:29.708388px;}
.h11{height:31.991981px;}
.hf{height:33.623438px;}
.hc{height:33.623965px;}
.h10{height:33.952626px;}
.h6{height:34.478653px;}
.h3{height:37.826367px;}
.hd{height:37.826895px;}
.h4{height:42.029824px;}
.h13{height:44.592576px;}
.hb{height:47.283750px;}
.h15{height:51.618160px;}
.h14{height:58.769824px;}
.h9{height:58.951898px;}
.h17{height:59.729981px;}
.h8{height:61.158305px;}
.h12{height:61.690626px;}
.h7{height:70.925625px;}
.h5{height:73.552324px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x1f{left:58.492500px;}
.x7{left:66.601500px;}
.x6{left:74.314500px;}
.x8{left:78.796500px;}
.x20{left:84.820500px;}
.x1d{left:123.162000px;}
.x4{left:170.373000px;}
.xe{left:218.469000px;}
.xf{left:226.296000px;}
.xd{left:253.939500px;}
.x5{left:302.430000px;}
.x1{left:309.761979px;}
.x3{left:341.316000px;}
.x10{left:417.286500px;}
.xc{left:444.311979px;}
.xa{left:459.906000px;}
.x21{left:462.016500px;}
.x11{left:466.705500px;}
.x9{left:477.838500px;}
.x1e{left:488.346000px;}
.xb{left:507.311979px;}
.x12{left:511.281000px;}
.x13{left:533.664000px;}
.x15{left:535.284000px;}
.x1b{left:557.971500px;}
.x16{left:574.351500px;}
.x14{left:582.078000px;}
.x1c{left:609.208500px;}
.x17{left:631.500000px;}
.x18{left:639.369000px;}
.x19{left:647.197500px;}
.x1a{left:820.812000px;}
@media print{
.v3{vertical-align:-25.029333pt;}
.v5{vertical-align:-13.386667pt;}
.v4{vertical-align:-11.898667pt;}
.v6{vertical-align:-10.624000pt;}
.v8{vertical-align:-8.501333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.317333pt;}
.v7{vertical-align:14.874667pt;}
.va{vertical-align:17.002667pt;}
.v1{vertical-align:19.712000pt;}
.v9{vertical-align:24.656000pt;}
.vb{vertical-align:43.077333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.000013pt;}
.ls7{letter-spacing:0.000020pt;}
.lsa{letter-spacing:0.000025pt;}
.ls8{letter-spacing:0.000033pt;}
.ls37{letter-spacing:0.000424pt;}
.ls67{letter-spacing:0.000773pt;}
.ls72{letter-spacing:0.000820pt;}
.ls4a{letter-spacing:0.000902pt;}
.ls18{letter-spacing:0.000921pt;}
.ls32{letter-spacing:0.001067pt;}
.ls2d{letter-spacing:0.001098pt;}
.ls29{letter-spacing:0.001411pt;}
.ls5b{letter-spacing:0.001497pt;}
.ls14{letter-spacing:0.001594pt;}
.ls16{letter-spacing:0.001913pt;}
.ls4c{letter-spacing:0.002179pt;}
.ls1d{letter-spacing:0.002320pt;}
.ls3b{letter-spacing:0.002373pt;}
.ls25{letter-spacing:0.002517pt;}
.ls44{letter-spacing:0.002533pt;}
.ls27{letter-spacing:0.003182pt;}
.ls33{letter-spacing:0.003200pt;}
.ls59{letter-spacing:0.004046pt;}
.lsb{letter-spacing:0.004057pt;}
.ls12{letter-spacing:0.004074pt;}
.ls20{letter-spacing:0.005102pt;}
.ls5c{letter-spacing:1.700899pt;}
.ls11{letter-spacing:2.124845pt;}
.ls1e{letter-spacing:2.130179pt;}
.ls1b{letter-spacing:2.654481pt;}
.ls0{letter-spacing:2.654563pt;}
.ls15{letter-spacing:2.655488pt;}
.ls5e{letter-spacing:2.656107pt;}
.ls4d{letter-spacing:2.656589pt;}
.ls23{letter-spacing:2.656708pt;}
.ls13{letter-spacing:2.656751pt;}
.ls2{letter-spacing:2.656780pt;}
.ls5d{letter-spacing:2.657348pt;}
.ls53{letter-spacing:2.657920pt;}
.ls35{letter-spacing:2.659294pt;}
.ls1{letter-spacing:2.659897pt;}
.ls17{letter-spacing:2.660821pt;}
.ls62{letter-spacing:3.061007pt;}
.ls45{letter-spacing:3.826373pt;}
.ls2e{letter-spacing:6.482304pt;}
.ls31{letter-spacing:6.797040pt;}
.ls4{letter-spacing:8.325500pt;}
.ls3{letter-spacing:8.325994pt;}
.ls21{letter-spacing:9.442941pt;}
.ls30{letter-spacing:9.445102pt;}
.ls38{letter-spacing:9.447901pt;}
.ls2f{letter-spacing:9.448274pt;}
.ls36{letter-spacing:9.450400pt;}
.ls19{letter-spacing:10.271769pt;}
.ls3c{letter-spacing:10.498568pt;}
.ls41{letter-spacing:11.138568pt;}
.lsc{letter-spacing:11.805235pt;}
.ls68{letter-spacing:12.103974pt;}
.ls6c{letter-spacing:12.988580pt;}
.ls6a{letter-spacing:13.319246pt;}
.ls52{letter-spacing:13.360589pt;}
.ls3d{letter-spacing:13.725235pt;}
.ls74{letter-spacing:14.167315pt;}
.ls5a{letter-spacing:14.169380pt;}
.ls40{letter-spacing:14.459418pt;}
.ls66{letter-spacing:14.463753pt;}
.ls4e{letter-spacing:14.464589pt;}
.ls22{letter-spacing:14.582042pt;}
.ls6b{letter-spacing:14.801913pt;}
.ls1c{letter-spacing:14.915814pt;}
.ls1a{letter-spacing:14.918084pt;}
.ls49{letter-spacing:15.634373pt;}
.ls6{letter-spacing:16.306893pt;}
.ls76{letter-spacing:16.440627pt;}
.ls58{letter-spacing:16.487253pt;}
.ls10{letter-spacing:16.705300pt;}
.ls7a{letter-spacing:16.823697pt;}
.ls78{letter-spacing:16.824627pt;}
.ls5f{letter-spacing:16.828015pt;}
.ls5{letter-spacing:16.880742pt;}
.ls6e{letter-spacing:17.057913pt;}
.ls6d{letter-spacing:17.063246pt;}
.ls54{letter-spacing:17.226341pt;}
.ls61{letter-spacing:17.231674pt;}
.ls7b{letter-spacing:17.512627pt;}
.ls46{letter-spacing:18.477039pt;}
.ls65{letter-spacing:19.314373pt;}
.lsf{letter-spacing:19.638313pt;}
.ls79{letter-spacing:19.679595pt;}
.ls1f{letter-spacing:19.733102pt;}
.ls4b{letter-spacing:19.733922pt;}
.ls69{letter-spacing:19.767246pt;}
.ls70{letter-spacing:19.917961pt;}
.ls75{letter-spacing:20.268971pt;}
.ls39{letter-spacing:20.464708pt;}
.ls7c{letter-spacing:21.340971pt;}
.lse{letter-spacing:21.423646pt;}
.ls71{letter-spacing:21.605086pt;}
.ls3e{letter-spacing:21.803375pt;}
.ls3f{letter-spacing:21.851375pt;}
.ls2c{letter-spacing:21.978419pt;}
.ls55{letter-spacing:21.997039pt;}
.ls48{letter-spacing:22.642373pt;}
.ls50{letter-spacing:22.714436pt;}
.ls77{letter-spacing:22.999637pt;}
.ls47{letter-spacing:23.010373pt;}
.ls3a{letter-spacing:23.191901pt;}
.ls6f{letter-spacing:23.746304pt;}
.ls9{letter-spacing:23.907747pt;}
.ls57{letter-spacing:24.037922pt;}
.ls51{letter-spacing:26.535706pt;}
.ls42{letter-spacing:36.653235pt;}
.ls43{letter-spacing:46.214360pt;}
.ls4f{letter-spacing:78.023901pt;}
.ls73{letter-spacing:310.996928pt;}
.ls2b{letter-spacing:356.406613pt;}
.ls64{letter-spacing:356.805440pt;}
.ls63{letter-spacing:363.446682pt;}
.ls24{letter-spacing:373.886878pt;}
.ls60{letter-spacing:375.252899pt;}
.ls28{letter-spacing:377.657545pt;}
.ls2a{letter-spacing:378.914133pt;}
.ls26{letter-spacing:381.534878pt;}
.ls34{letter-spacing:833.242419pt;}
.ws13{word-spacing:-30.318387pt;}
.ws46{word-spacing:-28.097259pt;}
.ws8e{word-spacing:-22.477878pt;}
.ws2{word-spacing:-21.538128pt;}
.ws7a{word-spacing:-21.073033pt;}
.wscd{word-spacing:-18.534524pt;}
.ws8f{word-spacing:-17.376998pt;}
.ws74{word-spacing:-16.827042pt;}
.ws6f{word-spacing:-16.825660pt;}
.ws7e{word-spacing:-16.823168pt;}
.ws6d{word-spacing:-16.820326pt;}
.wsf2{word-spacing:-16.294012pt;}
.ws83{word-spacing:-16.288678pt;}
.ws109{word-spacing:-15.734268pt;}
.wsf3{word-spacing:-14.590157pt;}
.ws1{word-spacing:-13.351344pt;}
.wsf8{word-spacing:-12.770165pt;}
.wsf6{word-spacing:-12.764831pt;}
.ws25{word-spacing:-12.454610pt;}
.ws11a{word-spacing:-11.888631pt;}
.ws8{word-spacing:-11.551545pt;}
.wsdf{word-spacing:-11.020831pt;}
.ws0{word-spacing:-10.329120pt;}
.ws128{word-spacing:-10.220591pt;}
.ws55{word-spacing:-9.963719pt;}
.wsa0{word-spacing:-8.973986pt;}
.wsf1{word-spacing:-8.968619pt;}
.ws53{word-spacing:-8.943403pt;}
.ws125{word-spacing:-8.306986pt;}
.ws4{word-spacing:-7.587549pt;}
.ws47{word-spacing:-7.575074pt;}
.ws137{word-spacing:-7.473212pt;}
.wsca{word-spacing:-7.393190pt;}
.ws84{word-spacing:-7.377835pt;}
.ws82{word-spacing:-7.372501pt;}
.wsd{word-spacing:-7.136714pt;}
.ws7{word-spacing:-7.130108pt;}
.wsc{word-spacing:-7.098413pt;}
.wsb{word-spacing:-7.097009pt;}
.wsf{word-spacing:-7.095631pt;}
.ws6{word-spacing:-6.886195pt;}
.wsd0{word-spacing:-6.614178pt;}
.ws48{word-spacing:-6.609741pt;}
.wsfc{word-spacing:-6.604407pt;}
.wsdc{word-spacing:-5.331166pt;}
.wsbb{word-spacing:-5.192499pt;}
.ws139{word-spacing:-4.246545pt;}
.wsba{word-spacing:-4.051593pt;}
.ws13d{word-spacing:-4.043878pt;}
.ws101{word-spacing:-3.745212pt;}
.ws14a{word-spacing:-3.723878pt;}
.wse4{word-spacing:-3.719074pt;}
.ws12a{word-spacing:-3.607074pt;}
.ws15d{word-spacing:-3.312845pt;}
.ws175{word-spacing:-2.988407pt;}
.ws80{word-spacing:-2.652501pt;}
.wsa9{word-spacing:-2.465418pt;}
.wse{word-spacing:-2.365530pt;}
.wse2{word-spacing:-2.337896pt;}
.wsa{word-spacing:-2.309207pt;}
.ws57{word-spacing:-2.295389pt;}
.wse7{word-spacing:-2.289741pt;}
.ws4c{word-spacing:-2.210374pt;}
.ws6e{word-spacing:-2.167867pt;}
.ws59{word-spacing:-2.125360pt;}
.ws4e{word-spacing:-2.082853pt;}
.ws36{word-spacing:-2.040346pt;}
.ws35{word-spacing:-1.997838pt;}
.wsb7{word-spacing:-1.955331pt;}
.wsc7{word-spacing:-1.785302pt;}
.wsfb{word-spacing:-1.745656pt;}
.wsfe{word-spacing:-1.742795pt;}
.ws45{word-spacing:-1.615274pt;}
.ws89{word-spacing:-1.530259pt;}
.ws12{word-spacing:-1.462252pt;}
.wsc9{word-spacing:-1.317723pt;}
.ws58{word-spacing:-1.232709pt;}
.wsc3{word-spacing:-1.190202pt;}
.ws14{word-spacing:-1.185953pt;}
.ws10d{word-spacing:-1.105187pt;}
.ws10c{word-spacing:-1.105177pt;}
.ws12f{word-spacing:-1.062680pt;}
.wsc8{word-spacing:-1.020173pt;}
.ws64{word-spacing:-0.887074pt;}
.wsb8{word-spacing:-0.744252pt;}
.ws1c{word-spacing:-0.726874pt;}
.ws136{word-spacing:-0.722622pt;}
.wsad{word-spacing:-0.680115pt;}
.ws56{word-spacing:-0.637608pt;}
.wsa3{word-spacing:-0.605986pt;}
.ws111{word-spacing:-0.595101pt;}
.ws12d{word-spacing:-0.552594pt;}
.ws85{word-spacing:-0.521843pt;}
.ws86{word-spacing:-0.510086pt;}
.ws3c{word-spacing:-0.467579pt;}
.ws78{word-spacing:-0.382565pt;}
.ws42{word-spacing:-0.340058pt;}
.ws30{word-spacing:-0.297550pt;}
.wsd8{word-spacing:-0.255043pt;}
.ws73{word-spacing:-0.212536pt;}
.ws71{word-spacing:-0.185334pt;}
.ws72{word-spacing:-0.170029pt;}
.ws15c{word-spacing:-0.127522pt;}
.ws69{word-spacing:-0.042507pt;}
.ws9{word-spacing:-0.039425pt;}
.ws11b{word-spacing:-0.034006pt;}
.ws52{word-spacing:0.000000pt;}
.ws32{word-spacing:0.042507pt;}
.ws1e0{word-spacing:0.068012pt;}
.ws13c{word-spacing:0.127522pt;}
.wsdd{word-spacing:0.157350pt;}
.wsdb{word-spacing:0.170029pt;}
.ws50{word-spacing:0.255043pt;}
.wsa7{word-spacing:0.297550pt;}
.wsa8{word-spacing:0.297557pt;}
.ws194{word-spacing:0.374065pt;}
.ws29{word-spacing:0.382565pt;}
.ws143{word-spacing:0.420122pt;}
.ws148{word-spacing:0.425072pt;}
.ws166{word-spacing:0.467579pt;}
.ws16e{word-spacing:0.510086pt;}
.ws19f{word-spacing:0.510088pt;}
.ws153{word-spacing:0.532122pt;}
.ws195{word-spacing:0.612106pt;}
.ws7d{word-spacing:0.665455pt;}
.ws7b{word-spacing:0.680115pt;}
.ws8b{word-spacing:0.765130pt;}
.ws8a{word-spacing:0.781199pt;}
.ws9d{word-spacing:0.892651pt;}
.ws33{word-spacing:0.935158pt;}
.wsd7{word-spacing:0.977666pt;}
.ws17{word-spacing:0.994670pt;}
.ws174{word-spacing:1.020173pt;}
.ws1b6{word-spacing:1.020176pt;}
.ws5c{word-spacing:1.062680pt;}
.ws1e1{word-spacing:1.088188pt;}
.ws116{word-spacing:1.105187pt;}
.ws1c5{word-spacing:1.122194pt;}
.ws6a{word-spacing:1.232707pt;}
.ws31{word-spacing:1.232709pt;}
.ws68{word-spacing:1.253250pt;}
.wsb9{word-spacing:1.275216pt;}
.ws51{word-spacing:1.317723pt;}
.ws114{word-spacing:1.356591pt;}
.ws113{word-spacing:1.360230pt;}
.ws11e{word-spacing:1.394241pt;}
.ws115{word-spacing:1.402738pt;}
.ws1d7{word-spacing:1.496258pt;}
.wsda{word-spacing:1.572766pt;}
.ws16b{word-spacing:1.615274pt;}
.ws1b5{word-spacing:1.632282pt;}
.ws17c{word-spacing:1.694638pt;}
.ws3{word-spacing:1.700288pt;}
.ws9e{word-spacing:1.716998pt;}
.wsed{word-spacing:1.721455pt;}
.ws138{word-spacing:1.721644pt;}
.ws37{word-spacing:1.742795pt;}
.ws1b9{word-spacing:1.802311pt;}
.ws1a9{word-spacing:1.904329pt;}
.ws2a{word-spacing:1.912824pt;}
.ws1b4{word-spacing:1.938334pt;}
.wsc0{word-spacing:1.997838pt;}
.ws9c{word-spacing:2.040346pt;}
.ws1d0{word-spacing:2.040352pt;}
.ws122{word-spacing:2.042799pt;}
.ws12e{word-spacing:2.082853pt;}
.ws1df{word-spacing:2.108364pt;}
.ws1ce{word-spacing:2.176375pt;}
.wsd6{word-spacing:2.210374pt;}
.ws1d8{word-spacing:2.210381pt;}
.ws149{word-spacing:2.224182pt;}
.ws14b{word-spacing:2.236448pt;}
.ws14c{word-spacing:2.252882pt;}
.ws144{word-spacing:2.380403pt;}
.ws19b{word-spacing:2.380411pt;}
.ws164{word-spacing:2.401001pt;}
.ws163{word-spacing:2.405207pt;}
.ws165{word-spacing:2.422910pt;}
.wsa6{word-spacing:2.507925pt;}
.ws18c{word-spacing:2.584446pt;}
.ws79{word-spacing:2.592939pt;}
.ws19{word-spacing:2.601444pt;}
.ws4d{word-spacing:2.635446pt;}
.ws14d{word-spacing:2.677954pt;}
.ws135{word-spacing:2.720461pt;}
.ws15{word-spacing:2.792727pt;}
.wsc1{word-spacing:2.805475pt;}
.wsf7{word-spacing:2.847982pt;}
.wsf5{word-spacing:2.880823pt;}
.wsf9{word-spacing:2.890490pt;}
.ws11{word-spacing:2.917069pt;}
.ws196{word-spacing:2.924505pt;}
.ws2e{word-spacing:2.932997pt;}
.ws1e{word-spacing:2.945753pt;}
.wse3{word-spacing:2.975504pt;}
.ws3a{word-spacing:2.983988pt;}
.ws38{word-spacing:2.984010pt;}
.ws129{word-spacing:3.018011pt;}
.wsf0{word-spacing:3.060518pt;}
.ws1cf{word-spacing:3.060528pt;}
.ws62{word-spacing:3.103026pt;}
.ws18e{word-spacing:3.128540pt;}
.ws173{word-spacing:3.188040pt;}
.ws133{word-spacing:3.196551pt;}
.ws3b{word-spacing:3.230547pt;}
.ws131{word-spacing:3.230557pt;}
.ws22{word-spacing:3.273054pt;}
.ws172{word-spacing:3.315562pt;}
.ws1ab{word-spacing:3.332575pt;}
.ws4b{word-spacing:3.358069pt;}
.ws6c{word-spacing:3.528098pt;}
.ws1e5{word-spacing:3.536610pt;}
.wsd3{word-spacing:3.570605pt;}
.wse6{word-spacing:3.613112pt;}
.wsd2{word-spacing:3.655619pt;}
.ws192{word-spacing:3.706639pt;}
.ws1bf{word-spacing:3.774651pt;}
.wsc2{word-spacing:3.783141pt;}
.ws10b{word-spacing:3.808657pt;}
.ws3e{word-spacing:3.910662pt;}
.ws1e3{word-spacing:3.910675pt;}
.ws6b{word-spacing:3.915821pt;}
.wsb0{word-spacing:3.953170pt;}
.wsae{word-spacing:3.995677pt;}
.wsaf{word-spacing:3.995690pt;}
.ws1a{word-spacing:4.016936pt;}
.wsc4{word-spacing:4.038184pt;}
.ws15f{word-spacing:4.080691pt;}
.ws34{word-spacing:4.123198pt;}
.ws18d{word-spacing:4.148716pt;}
.wsff{word-spacing:4.165706pt;}
.ws8c{word-spacing:4.182722pt;}
.ws15a{word-spacing:4.190127pt;}
.ws157{word-spacing:4.190712pt;}
.ws159{word-spacing:4.190837pt;}
.ws162{word-spacing:4.206048pt;}
.ws63{word-spacing:4.208213pt;}
.ws108{word-spacing:4.212453pt;}
.ws54{word-spacing:4.216727pt;}
.ws66{word-spacing:4.250720pt;}
.ws1d5{word-spacing:4.284739pt;}
.ws17a{word-spacing:4.335734pt;}
.wsd5{word-spacing:4.378242pt;}
.ws197{word-spacing:4.386757pt;}
.wsb1{word-spacing:4.420749pt;}
.wsb3{word-spacing:4.454769pt;}
.ws40{word-spacing:4.505763pt;}
.ws1c9{word-spacing:4.522780pt;}
.ws41{word-spacing:4.548270pt;}
.ws1bd{word-spacing:4.556786pt;}
.ws1a6{word-spacing:4.624798pt;}
.ws3d{word-spacing:4.633285pt;}
.ws191{word-spacing:4.658804pt;}
.ws106{word-spacing:4.692810pt;}
.wsc6{word-spacing:4.718299pt;}
.ws104{word-spacing:4.726815pt;}
.ws3f{word-spacing:4.760806pt;}
.ws1ad{word-spacing:4.794827pt;}
.ws150{word-spacing:4.803314pt;}
.ws151{word-spacing:4.806334pt;}
.ws1b{word-spacing:4.820323pt;}
.ws2c{word-spacing:4.930835pt;}
.ws9a{word-spacing:4.973342pt;}
.ws102{word-spacing:5.015850pt;}
.ws1ba{word-spacing:5.032868pt;}
.wsbd{word-spacing:5.058357pt;}
.ws1cd{word-spacing:5.100880pt;}
.ws141{word-spacing:5.228386pt;}
.ws180{word-spacing:5.270893pt;}
.ws17e{word-spacing:5.281125pt;}
.wsd1{word-spacing:5.313400pt;}
.ws16{word-spacing:5.317658pt;}
.wsa4{word-spacing:5.350334pt;}
.wsa2{word-spacing:5.355907pt;}
.wsa1{word-spacing:5.360823pt;}
.ws118{word-spacing:5.372927pt;}
.ws1de{word-spacing:5.406933pt;}
.wsb6{word-spacing:5.413470pt;}
.wsab{word-spacing:5.440922pt;}
.ws1a3{word-spacing:5.508950pt;}
.wse9{word-spacing:5.525936pt;}
.ws18{word-spacing:5.547197pt;}
.ws27{word-spacing:5.568443pt;}
.ws28{word-spacing:5.610950pt;}
.ws10f{word-spacing:5.695965pt;}
.ws110{word-spacing:5.695975pt;}
.wsde{word-spacing:5.738472pt;}
.wsb4{word-spacing:5.780979pt;}
.ws88{word-spacing:5.823486pt;}
.ws1a5{word-spacing:5.849009pt;}
.ws168{word-spacing:5.865994pt;}
.ws1cb{word-spacing:5.917021pt;}
.ws1ac{word-spacing:5.951027pt;}
.ws43{word-spacing:5.993515pt;}
.ws1c8{word-spacing:6.053044pt;}
.ws18f{word-spacing:6.087050pt;}
.ws16c{word-spacing:6.121037pt;}
.wsc5{word-spacing:6.163544pt;}
.ws2d{word-spacing:6.206051pt;}
.wsaa{word-spacing:6.248558pt;}
.ws1cc{word-spacing:6.257079pt;}
.ws1d6{word-spacing:6.291085pt;}
.wsd9{word-spacing:6.376080pt;}
.ws190{word-spacing:6.393103pt;}
.ws154{word-spacing:6.461094pt;}
.ws11f{word-spacing:6.495121pt;}
.ws152{word-spacing:6.503602pt;}
.ws15e{word-spacing:6.546109pt;}
.ws77{word-spacing:6.588616pt;}
.ws1c2{word-spacing:6.597138pt;}
.ws7c{word-spacing:6.631123pt;}
.ws11d{word-spacing:6.631144pt;}
.ws99{word-spacing:6.673630pt;}
.ws1a7{word-spacing:6.699156pt;}
.wsbe{word-spacing:6.716138pt;}
.wsbf{word-spacing:6.758645pt;}
.ws9b{word-spacing:6.843659pt;}
.ws1c7{word-spacing:6.869185pt;}
.wscf{word-spacing:6.928674pt;}
.ws1ae{word-spacing:6.937197pt;}
.ws1c3{word-spacing:6.971203pt;}
.ws169{word-spacing:7.013688pt;}
.ws23{word-spacing:7.056195pt;}
.ws100{word-spacing:7.098702pt;}
.ws1da{word-spacing:7.107226pt;}
.ws1d{word-spacing:7.115715pt;}
.ws5e{word-spacing:7.183717pt;}
.ws70{word-spacing:7.226224pt;}
.ws7f{word-spacing:7.268731pt;}
.wsd4{word-spacing:7.353746pt;}
.ws19d{word-spacing:7.413279pt;}
.ws1bb{word-spacing:7.447285pt;}
.ws16f{word-spacing:7.523774pt;}
.ws24{word-spacing:7.566282pt;}
.ws21{word-spacing:7.608789pt;}
.wsec{word-spacing:7.651296pt;}
.ws1d2{word-spacing:7.651320pt;}
.wsee{word-spacing:7.693803pt;}
.ws87{word-spacing:7.736310pt;}
.wsef{word-spacing:7.778818pt;}
.ws13e{word-spacing:7.863832pt;}
.ws67{word-spacing:7.948846pt;}
.ws1ca{word-spacing:7.957373pt;}
.ws61{word-spacing:7.991354pt;}
.ws186{word-spacing:8.288904pt;}
.ws184{word-spacing:8.320437pt;}
.ws13a{word-spacing:8.458933pt;}
.ws1db{word-spacing:8.467461pt;}
.wscc{word-spacing:8.552502pt;}
.ws1a1{word-spacing:8.569478pt;}
.ws4f{word-spacing:8.586454pt;}
.ws1c4{word-spacing:8.603484pt;}
.ws1aa{word-spacing:8.637490pt;}
.wseb{word-spacing:8.671469pt;}
.ws19e{word-spacing:8.671496pt;}
.ws199{word-spacing:8.705502pt;}
.ws12c{word-spacing:8.713976pt;}
.ws1b3{word-spacing:8.739508pt;}
.ws16d{word-spacing:8.756483pt;}
.ws1c6{word-spacing:8.807519pt;}
.ws160{word-spacing:8.841498pt;}
.ws1d1{word-spacing:8.909537pt;}
.ws2b{word-spacing:8.926512pt;}
.ws112{word-spacing:8.946568pt;}
.ws5a{word-spacing:8.969019pt;}
.ws5b{word-spacing:9.011526pt;}
.ws178{word-spacing:9.054034pt;}
.ws1bc{word-spacing:9.079566pt;}
.ws1dd{word-spacing:9.181584pt;}
.ws189{word-spacing:9.224062pt;}
.ws1d4{word-spacing:9.249596pt;}
.ws44{word-spacing:9.266570pt;}
.ws132{word-spacing:9.419625pt;}
.ws60{word-spacing:9.564120pt;}
.ws19a{word-spacing:9.589654pt;}
.ws16a{word-spacing:9.606627pt;}
.ws167{word-spacing:9.649134pt;}
.ws19c{word-spacing:9.691672pt;}
.ws1af{word-spacing:9.793690pt;}
.ws183{word-spacing:9.861670pt;}
.ws181{word-spacing:9.900537pt;}
.wsac{word-spacing:9.904178pt;}
.ws5d{word-spacing:9.989192pt;}
.ws1a0{word-spacing:9.997725pt;}
.ws13b{word-spacing:10.116714pt;}
.wsfa{word-spacing:10.244235pt;}
.ws1e2{word-spacing:10.405795pt;}
.ws170{word-spacing:10.456771pt;}
.ws1b0{word-spacing:10.609830pt;}
.wsfd{word-spacing:10.649459pt;}
.ws20{word-spacing:10.669307pt;}
.ws161{word-spacing:10.711814pt;}
.wsb5{word-spacing:10.754322pt;}
.ws2f{word-spacing:10.924350pt;}
.wsea{word-spacing:11.051872pt;}
.ws1d3{word-spacing:11.221936pt;}
.ws5f{word-spacing:11.264408pt;}
.ws10e{word-spacing:11.349422pt;}
.ws193{word-spacing:11.357959pt;}
.ws1a2{word-spacing:11.391965pt;}
.ws49{word-spacing:11.604466pt;}
.ws1b2{word-spacing:11.630006pt;}
.wsbc{word-spacing:11.646973pt;}
.ws198{word-spacing:11.698018pt;}
.ws81{word-spacing:11.753495pt;}
.ws1c0{word-spacing:11.766030pt;}
.ws9f{word-spacing:11.774494pt;}
.ws1b1{word-spacing:11.800036pt;}
.ws177{word-spacing:11.817002pt;}
.ws1a8{word-spacing:11.868047pt;}
.ws1e4{word-spacing:11.936059pt;}
.ws17b{word-spacing:11.944523pt;}
.ws26{word-spacing:12.114552pt;}
.ws15b{word-spacing:12.327088pt;}
.ws4a{word-spacing:12.539624pt;}
.wscb{word-spacing:12.624638pt;}
.ws179{word-spacing:12.667146pt;}
.ws75{word-spacing:12.879682pt;}
.ws76{word-spacing:12.964696pt;}
.ws130{word-spacing:13.126265pt;}
.ws1b7{word-spacing:13.194276pt;}
.ws145{word-spacing:13.262246pt;}
.ws10a{word-spacing:13.738370pt;}
.ws5{word-spacing:14.112390pt;}
.ws39{word-spacing:14.116661pt;}
.ws134{word-spacing:14.133076pt;}
.ws119{word-spacing:14.138409pt;}
.ws10{word-spacing:14.146441pt;}
.wsb2{word-spacing:14.384482pt;}
.ws171{word-spacing:14.452448pt;}
.ws107{word-spacing:14.645076pt;}
.ws105{word-spacing:14.650409pt;}
.ws103{word-spacing:14.656529pt;}
.wse5{word-spacing:14.664984pt;}
.ws18b{word-spacing:14.724540pt;}
.ws12b{word-spacing:14.749998pt;}
.ws146{word-spacing:14.792506pt;}
.ws1be{word-spacing:15.030593pt;}
.ws1a4{word-spacing:15.064599pt;}
.ws117{word-spacing:15.302640pt;}
.ws1dc{word-spacing:15.336646pt;}
.ws176{word-spacing:15.387606pt;}
.ws147{word-spacing:15.430114pt;}
.wse8{word-spacing:16.067722pt;}
.ws1b8{word-spacing:16.152787pt;}
.wse1{word-spacing:16.434300pt;}
.ws14f{word-spacing:16.450286pt;}
.ws11c{word-spacing:16.560857pt;}
.ws18a{word-spacing:16.594863pt;}
.ws65{word-spacing:16.665494pt;}
.ws14e{word-spacing:17.002880pt;}
.wse0{word-spacing:17.045387pt;}
.ws1c1{word-spacing:17.581033pt;}
.ws142{word-spacing:17.615997pt;}
.ws140{word-spacing:17.640488pt;}
.ws17f{word-spacing:17.682995pt;}
.ws1d9{word-spacing:17.921092pt;}
.ws188{word-spacing:18.150574pt;}
.wsa5{word-spacing:19.613214pt;}
.ws13f{word-spacing:19.723341pt;}
.ws187{word-spacing:20.658499pt;}
.ws185{word-spacing:20.694230pt;}
.ws1f{word-spacing:21.211093pt;}
.ws182{word-spacing:22.263717pt;}
.ws17d{word-spacing:23.166424pt;}
.wsce{word-spacing:36.598699pt;}
.ws93{word-spacing:233.790333pt;}
.ws127{word-spacing:243.890076pt;}
.ws8d{word-spacing:245.046275pt;}
.ws124{word-spacing:257.424411pt;}
.ws156{word-spacing:262.612326pt;}
.ws158{word-spacing:265.721842pt;}
.ws123{word-spacing:286.669456pt;}
.ws126{word-spacing:286.703462pt;}
.ws120{word-spacing:309.181340pt;}
.ws96{word-spacing:313.893146pt;}
.ws95{word-spacing:314.821491pt;}
.ws94{word-spacing:318.463462pt;}
.ws91{word-spacing:324.382852pt;}
.ws98{word-spacing:326.794799pt;}
.ws121{word-spacing:334.481705pt;}
.ws92{word-spacing:347.115418pt;}
.ws97{word-spacing:348.594139pt;}
.ws90{word-spacing:357.517649pt;}
.ws155{word-spacing:418.785141pt;}
.wsf4{word-spacing:608.681988pt;}
._4{margin-left:-16.737280pt;}
._1{margin-left:-2.352193pt;}
._16{width:1.665935pt;}
._8{width:2.690225pt;}
._9{width:3.860094pt;}
._2{width:9.336784pt;}
._1c{width:11.815725pt;}
._0{width:13.886928pt;}
._3{width:14.999282pt;}
._1a{width:16.229596pt;}
._7{width:17.630255pt;}
._6{width:21.237223pt;}
._1b{width:23.624712pt;}
._27{width:26.558582pt;}
._5{width:28.355847pt;}
._19{width:39.426512pt;}
._23{width:189.752026pt;}
._1f{width:228.655447pt;}
._1e{width:232.213529pt;}
._15{width:242.967800pt;}
._13{width:254.974353pt;}
._f{width:261.165056pt;}
._11{width:274.765767pt;}
._25{width:275.753573pt;}
._26{width:279.044026pt;}
._12{width:280.682788pt;}
._20{width:281.839136pt;}
._21{width:283.405245pt;}
._17{width:284.799133pt;}
._b{width:303.229510pt;}
._22{width:314.996343pt;}
._10{width:316.594619pt;}
._1d{width:320.539299pt;}
._18{width:342.303054pt;}
._c{width:346.043699pt;}
._d{width:361.210316pt;}
._e{width:363.374676pt;}
._a{width:384.300299pt;}
._24{width:391.135478pt;}
._14{width:401.303233pt;}
.fs7{font-size:23.803733pt;}
.fsb{font-size:31.880533pt;}
.fsc{font-size:34.005333pt;}
.fs8{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs0{font-size:38.256000pt;}
.fsa{font-size:38.256533pt;}
.fs6{font-size:39.425067pt;}
.fs1{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs4{font-size:56.322133pt;}
.fs3{font-size:71.731200pt;}
.fs2{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y53{bottom:42.160000pt;}
.y5{bottom:68.320000pt;}
.y87{bottom:71.321333pt;}
.y11c{bottom:74.450667pt;}
.y4{bottom:81.066667pt;}
.y1bb{bottom:82.745333pt;}
.y109{bottom:85.022667pt;}
.y14b{bottom:85.057333pt;}
.y130{bottom:85.121333pt;}
.ye1{bottom:85.314667pt;}
.yb8{bottom:85.362667pt;}
.y86{bottom:85.425333pt;}
.y116{bottom:85.457333pt;}
.y112{bottom:85.532000pt;}
.y18f{bottom:85.560000pt;}
.y161{bottom:85.801333pt;}
.y11b{bottom:85.873333pt;}
.y3{bottom:93.893333pt;}
.y1ba{bottom:94.169333pt;}
.y11a{bottom:97.297333pt;}
.y108{bottom:98.724000pt;}
.y14a{bottom:98.793333pt;}
.y12f{bottom:98.920000pt;}
.ye0{bottom:99.309333pt;}
.yb7{bottom:99.404000pt;}
.y85{bottom:99.529333pt;}
.y115{bottom:99.593333pt;}
.y111{bottom:99.744000pt;}
.y18e{bottom:99.798667pt;}
.y160{bottom:100.282667pt;}
.y1b9{bottom:105.481333pt;}
.y51{bottom:106.416000pt;}
.y119{bottom:108.721333pt;}
.y107{bottom:112.424000pt;}
.y149{bottom:112.528000pt;}
.y12e{bottom:112.720000pt;}
.ydf{bottom:113.304000pt;}
.yb6{bottom:113.446667pt;}
.y84{bottom:113.633333pt;}
.y110{bottom:113.956000pt;}
.y18d{bottom:114.038667pt;}
.y114{bottom:114.106667pt;}
.y15f{bottom:114.764000pt;}
.y1b8{bottom:116.905333pt;}
.y50{bottom:119.168000pt;}
.y106{bottom:126.125333pt;}
.y148{bottom:126.264000pt;}
.y12d{bottom:126.520000pt;}
.yde{bottom:127.298667pt;}
.yb5{bottom:127.676000pt;}
.y83{bottom:127.737333pt;}
.y10f{bottom:128.166667pt;}
.y113{bottom:128.242667pt;}
.y18c{bottom:128.277333pt;}
.y1b7{bottom:128.328000pt;}
.y15e{bottom:129.244000pt;}
.y1b6{bottom:139.752000pt;}
.y105{bottom:139.826667pt;}
.y147{bottom:140.000000pt;}
.y12c{bottom:140.320000pt;}
.ydd{bottom:141.292000pt;}
.y3a{bottom:141.590667pt;}
.yb4{bottom:141.718667pt;}
.y82{bottom:142.153333pt;}
.y10e{bottom:142.378667pt;}
.y18b{bottom:142.516000pt;}
.y15d{bottom:143.725333pt;}
.y1b5{bottom:151.064000pt;}
.y104{bottom:153.528000pt;}
.y146{bottom:153.736000pt;}
.ydc{bottom:155.286667pt;}
.yb3{bottom:155.760000pt;}
.y81{bottom:156.257333pt;}
.y18a{bottom:156.754667pt;}
.y39{bottom:157.597333pt;}
.y15c{bottom:159.272000pt;}
.y1b4{bottom:162.488000pt;}
.y103{bottom:167.229333pt;}
.y145{bottom:167.472000pt;}
.y12b{bottom:167.772000pt;}
.ydb{bottom:169.281333pt;}
.yb2{bottom:169.801333pt;}
.y189{bottom:170.994667pt;}
.y15b{bottom:173.753333pt;}
.y1b3{bottom:173.912000pt;}
.y80{bottom:174.773333pt;}
.y10d{bottom:176.548000pt;}
.y102{bottom:180.930667pt;}
.y144{bottom:181.208000pt;}
.y7e{bottom:182.212000pt;}
.yda{bottom:183.274667pt;}
.yb1{bottom:183.844000pt;}
.y188{bottom:185.233333pt;}
.y1b2{bottom:185.336000pt;}
.y10c{bottom:187.972000pt;}
.y15a{bottom:188.233333pt;}
.y7f{bottom:191.446667pt;}
.y38{bottom:194.060000pt;}
.y101{bottom:194.632000pt;}
.y143{bottom:194.944000pt;}
.y12a{bottom:195.076000pt;}
.y1b1{bottom:196.648000pt;}
.yd9{bottom:197.362667pt;}
.yb0{bottom:197.885333pt;}
.y187{bottom:199.472000pt;}
.y4f{bottom:201.108000pt;}
.y159{bottom:202.714667pt;}
.y37{bottom:207.690667pt;}
.y1b0{bottom:208.072000pt;}
.y100{bottom:208.333333pt;}
.y142{bottom:208.680000pt;}
.y129{bottom:208.876000pt;}
.y7d{bottom:210.950667pt;}
.yd8{bottom:211.357333pt;}
.yaf{bottom:211.926667pt;}
.y186{bottom:213.710667pt;}
.y4e{bottom:216.336000pt;}
.y158{bottom:217.196000pt;}
.y1af{bottom:219.496000pt;}
.y36{bottom:221.322667pt;}
.yff{bottom:222.034667pt;}
.y141{bottom:222.416000pt;}
.y7c{bottom:225.054667pt;}
.yd7{bottom:225.350667pt;}
.yae{bottom:225.969333pt;}
.y185{bottom:228.533333pt;}
.y1ae{bottom:230.920000pt;}
.y4d{bottom:231.565333pt;}
.y157{bottom:232.742667pt;}
.y35{bottom:234.953333pt;}
.y140{bottom:236.152000pt;}
.yd6{bottom:239.345333pt;}
.y7b{bottom:239.470667pt;}
.y1ad{bottom:242.232000pt;}
.y184{bottom:242.772000pt;}
.yfe{bottom:244.240000pt;}
.y4c{bottom:246.793333pt;}
.y156{bottom:247.224000pt;}
.y34{bottom:248.585333pt;}
.y13f{bottom:249.888000pt;}
.yfd{bottom:251.678667pt;}
.yd5{bottom:253.340000pt;}
.y7a{bottom:253.574667pt;}
.y1ac{bottom:253.654667pt;}
.yad{bottom:254.710667pt;}
.y183{bottom:257.010667pt;}
.y155{bottom:261.704000pt;}
.y4b{bottom:262.021333pt;}
.y33{bottom:262.217333pt;}
.y13e{bottom:263.624000pt;}
.y1ab{bottom:265.078667pt;}
.y128{bottom:265.497333pt;}
.yd4{bottom:267.333333pt;}
.y79{bottom:267.678667pt;}
.y182{bottom:271.250667pt;}
.y32{bottom:275.848000pt;}
.y154{bottom:276.185333pt;}
.y1aa{bottom:276.390667pt;}
.y4a{bottom:277.249333pt;}
.y13d{bottom:277.360000pt;}
.yfc{bottom:278.341333pt;}
.y1f9{bottom:279.190667pt;}
.yd3{bottom:281.328000pt;}
.y127{bottom:281.340000pt;}
.y78{bottom:281.782667pt;}
.yac{bottom:283.924000pt;}
.y181{bottom:285.489333pt;}
.y1a9{bottom:287.814667pt;}
.y31{bottom:289.480000pt;}
.y1f8{bottom:290.614667pt;}
.y153{bottom:290.666667pt;}
.y13c{bottom:291.096000pt;}
.yfb{bottom:292.042667pt;}
.y49{bottom:292.477333pt;}
.y126{bottom:292.764000pt;}
.yd2{bottom:295.322667pt;}
.y77{bottom:295.886667pt;}
.yab{bottom:297.965333pt;}
.y1a8{bottom:299.238667pt;}
.y180{bottom:299.728000pt;}
.y1f7{bottom:302.038667pt;}
.y30{bottom:303.112000pt;}
.y125{bottom:304.188000pt;}
.y13b{bottom:304.832000pt;}
.yfa{bottom:305.744000pt;}
.y48{bottom:307.705333pt;}
.yd1{bottom:309.317333pt;}
.y76{bottom:309.990667pt;}
.y1a7{bottom:310.662667pt;}
.yaa{bottom:312.008000pt;}
.y1f6{bottom:313.462667pt;}
.y17f{bottom:313.966667pt;}
.y124{bottom:315.612000pt;}
.y2f{bottom:316.742667pt;}
.y13a{bottom:318.568000pt;}
.yf9{bottom:319.445333pt;}
.y1a6{bottom:322.086667pt;}
.y47{bottom:322.933333pt;}
.yd0{bottom:323.310667pt;}
.y75{bottom:324.094667pt;}
.y1f5{bottom:324.886667pt;}
.ya9{bottom:326.049333pt;}
.y17e{bottom:328.206667pt;}
.y2e{bottom:330.374667pt;}
.y123{bottom:331.942667pt;}
.y139{bottom:332.302667pt;}
.yf8{bottom:333.146667pt;}
.y1a5{bottom:333.398667pt;}
.y1f4{bottom:336.310667pt;}
.ycf{bottom:337.305333pt;}
.y46{bottom:338.161333pt;}
.y74{bottom:338.198667pt;}
.y152{bottom:340.645333pt;}
.y17d{bottom:342.445333pt;}
.y2d{bottom:344.005333pt;}
.ya8{bottom:344.441333pt;}
.y1a4{bottom:344.822667pt;}
.y138{bottom:346.038667pt;}
.yf7{bottom:346.848000pt;}
.y1f3{bottom:347.733333pt;}
.y20b{bottom:347.734667pt;}
.y122{bottom:347.786667pt;}
.ya6{bottom:351.880000pt;}
.y151{bottom:352.069333pt;}
.y73{bottom:352.616000pt;}
.y45{bottom:353.389333pt;}
.y1a3{bottom:356.134667pt;}
.y17c{bottom:356.684000pt;}
.y2c{bottom:357.637333pt;}
.y1f2{bottom:359.157333pt;}
.y20a{bottom:359.158667pt;}
.y121{bottom:359.210667pt;}
.y137{bottom:359.774667pt;}
.yf6{bottom:360.549333pt;}
.ya7{bottom:361.114667pt;}
.y150{bottom:363.493333pt;}
.yce{bottom:365.620000pt;}
.y72{bottom:366.720000pt;}
.y1a2{bottom:367.558667pt;}
.y44{bottom:368.617333pt;}
.y1f1{bottom:370.581333pt;}
.y120{bottom:370.633333pt;}
.y17b{bottom:370.924000pt;}
.y2b{bottom:371.269333pt;}
.y136{bottom:373.510667pt;}
.yf5{bottom:374.250667pt;}
.y14f{bottom:374.917333pt;}
.y1a1{bottom:378.982667pt;}
.ya5{bottom:379.112000pt;}
.y71{bottom:380.824000pt;}
.y1f0{bottom:382.005333pt;}
.y43{bottom:383.846667pt;}
.y2a{bottom:384.900000pt;}
.y17a{bottom:385.162667pt;}
.y11f{bottom:386.477333pt;}
.y135{bottom:387.246667pt;}
.yf4{bottom:387.952000pt;}
.y1a0{bottom:390.294667pt;}
.y14e{bottom:390.761333pt;}
.y1ef{bottom:393.429333pt;}
.ycd{bottom:394.166667pt;}
.ya3{bottom:394.864000pt;}
.y70{bottom:394.926667pt;}
.y29{bottom:398.532000pt;}
.ya4{bottom:398.582667pt;}
.y42{bottom:399.074667pt;}
.y179{bottom:399.401333pt;}
.y11e{bottom:400.826667pt;}
.y134{bottom:400.982667pt;}
.yf3{bottom:401.652000pt;}
.ya2{bottom:402.302667pt;}
.y1ee{bottom:404.853333pt;}
.y14d{bottom:405.109333pt;}
.ycc{bottom:408.161333pt;}
.y6f{bottom:409.030667pt;}
.y28{bottom:412.164000pt;}
.y11d{bottom:412.250667pt;}
.y178{bottom:414.222667pt;}
.y41{bottom:414.302667pt;}
.y133{bottom:414.718667pt;}
.yf2{bottom:415.353333pt;}
.y19f{bottom:415.553333pt;}
.y1ed{bottom:416.277333pt;}
.y14c{bottom:416.533333pt;}
.ycb{bottom:422.156000pt;}
.y6e{bottom:423.134667pt;}
.y27{bottom:425.794667pt;}
.y1ec{bottom:427.701333pt;}
.ya1{bottom:428.112000pt;}
.y177{bottom:428.462667pt;}
.yf1{bottom:429.054667pt;}
.y40{bottom:429.530667pt;}
.y6d{bottom:437.552000pt;}
.y1eb{bottom:439.124000pt;}
.y209{bottom:439.125333pt;}
.y26{bottom:439.426667pt;}
.ya0{bottom:442.153333pt;}
.y176{bottom:442.701333pt;}
.y118{bottom:443.102667pt;}
.y19e{bottom:443.113333pt;}
.y3f{bottom:444.758667pt;}
.y132{bottom:446.190667pt;}
.yca{bottom:450.470667pt;}
.y1ea{bottom:450.548000pt;}
.y208{bottom:450.549333pt;}
.y6c{bottom:451.656000pt;}
.y25{bottom:453.057333pt;}
.y117{bottom:454.526667pt;}
.y9f{bottom:456.196000pt;}
.yf0{bottom:456.210667pt;}
.y175{bottom:456.940000pt;}
.y19d{bottom:457.005333pt;}
.y131{bottom:457.614667pt;}
.y3e{bottom:459.986667pt;}
.y1e9{bottom:461.972000pt;}
.y6b{bottom:465.760000pt;}
.y24{bottom:466.689333pt;}
.y9e{bottom:470.237333pt;}
.y174{bottom:471.178667pt;}
.y1e8{bottom:473.396000pt;}
.y3d{bottom:475.214667pt;}
.yc9{bottom:479.017333pt;}
.y6a{bottom:479.864000pt;}
.y23{bottom:480.321333pt;}
.yef{bottom:483.120000pt;}
.y9d{bottom:484.278667pt;}
.y19c{bottom:484.733333pt;}
.y1e7{bottom:484.820000pt;}
.y173{bottom:485.418667pt;}
.y3c{bottom:490.442667pt;}
.yc8{bottom:493.012000pt;}
.y22{bottom:493.952000pt;}
.y1e6{bottom:496.244000pt;}
.yee{bottom:496.821333pt;}
.y9c{bottom:498.509333pt;}
.y172{bottom:499.657333pt;}
.y10b{bottom:501.018667pt;}
.y3b{bottom:505.670667pt;}
.yc7{bottom:507.006667pt;}
.y1e5{bottom:507.668000pt;}
.y69{bottom:509.165333pt;}
.yed{bottom:510.522667pt;}
.y19b{bottom:512.293333pt;}
.y10a{bottom:512.442667pt;}
.y9b{bottom:512.550667pt;}
.y171{bottom:513.896000pt;}
.y1e4{bottom:519.090667pt;}
.y207{bottom:519.092000pt;}
.y21{bottom:520.898667pt;}
.yc6{bottom:521.000000pt;}
.yec{bottom:524.224000pt;}
.y170{bottom:528.136000pt;}
.y1e3{bottom:530.514667pt;}
.y206{bottom:530.516000pt;}
.yc5{bottom:534.994667pt;}
.yeb{bottom:537.925333pt;}
.y68{bottom:538.310667pt;}
.y19a{bottom:540.021333pt;}
.y1e2{bottom:541.938667pt;}
.y205{bottom:541.940000pt;}
.y16f{bottom:542.374667pt;}
.yc4{bottom:548.989333pt;}
.yea{bottom:551.626667pt;}
.y1e1{bottom:553.362667pt;}
.y16e{bottom:556.613333pt;}
.y20{bottom:561.796000pt;}
.y9a{bottom:562.530667pt;}
.yc3{bottom:562.982667pt;}
.y1e0{bottom:564.786667pt;}
.ye9{bottom:565.328000pt;}
.y199{bottom:567.581333pt;}
.y67{bottom:568.393333pt;}
.y16d{bottom:570.852000pt;}
.y1f{bottom:574.548000pt;}
.y1df{bottom:576.210667pt;}
.yc2{bottom:576.977333pt;}
.y99{bottom:578.373333pt;}
.ye8{bottom:579.029333pt;}
.y198{bottom:581.473333pt;}
.y66{bottom:582.497333pt;}
.y16c{bottom:585.092000pt;}
.y1e{bottom:587.300000pt;}
.y1de{bottom:587.634667pt;}
.y98{bottom:589.797333pt;}
.yc1{bottom:590.972000pt;}
.ye7{bottom:592.730667pt;}
.y197{bottom:595.365333pt;}
.y65{bottom:596.601333pt;}
.y1dd{bottom:599.058667pt;}
.y16b{bottom:599.330667pt;}
.y1d{bottom:600.052000pt;}
.y97{bottom:601.221333pt;}
.yc0{bottom:604.965333pt;}
.ye6{bottom:606.430667pt;}
.y1dc{bottom:610.481333pt;}
.y204{bottom:610.482667pt;}
.y64{bottom:610.705333pt;}
.y96{bottom:612.645333pt;}
.y1c{bottom:612.804000pt;}
.y16a{bottom:613.569333pt;}
.ybf{bottom:618.960000pt;}
.ye5{bottom:620.132000pt;}
.y1db{bottom:621.905333pt;}
.y203{bottom:621.906667pt;}
.y196{bottom:623.092000pt;}
.y63{bottom:624.809333pt;}
.y1b{bottom:625.556000pt;}
.y169{bottom:628.390667pt;}
.y95{bottom:628.489333pt;}
.y14{bottom:632.689333pt;}
.ybe{bottom:632.954667pt;}
.y1da{bottom:633.329333pt;}
.y202{bottom:633.330667pt;}
.ye4{bottom:633.833333pt;}
.y1a{bottom:638.308000pt;}
.y62{bottom:638.913333pt;}
.y168{bottom:642.630667pt;}
.y94{bottom:642.837333pt;}
.y13{bottom:644.113333pt;}
.y1d9{bottom:644.753333pt;}
.ybd{bottom:646.949333pt;}
.ye3{bottom:647.534667pt;}
.y195{bottom:650.652000pt;}
.y19{bottom:651.061333pt;}
.y61{bottom:653.017333pt;}
.y93{bottom:654.261333pt;}
.y12{bottom:655.537333pt;}
.y1d8{bottom:656.177333pt;}
.y167{bottom:656.869333pt;}
.ybc{bottom:660.942667pt;}
.ye2{bottom:661.236000pt;}
.y18{bottom:663.813333pt;}
.y194{bottom:664.544000pt;}
.y11{bottom:666.960000pt;}
.y60{bottom:667.121333pt;}
.y1d7{bottom:667.601333pt;}
.y166{bottom:671.108000pt;}
.ybb{bottom:674.937333pt;}
.y17{bottom:676.565333pt;}
.y10{bottom:678.384000pt;}
.y193{bottom:678.436000pt;}
.y1d6{bottom:679.025333pt;}
.y5f{bottom:681.225333pt;}
.y92{bottom:688.786667pt;}
.y16{bottom:689.317333pt;}
.yf{bottom:689.808000pt;}
.y1d5{bottom:690.449333pt;}
.y192{bottom:692.328000pt;}
.y5e{bottom:695.329333pt;}
.y91{bottom:700.210667pt;}
.y165{bottom:701.625333pt;}
.y1d4{bottom:701.872000pt;}
.y201{bottom:701.873333pt;}
.yba{bottom:705.121333pt;}
.y191{bottom:706.220000pt;}
.y5d{bottom:709.433333pt;}
.y90{bottom:711.634667pt;}
.y1d3{bottom:713.296000pt;}
.y200{bottom:713.297333pt;}
.ye{bottom:714.697333pt;}
.y15{bottom:714.737333pt;}
.yb9{bottom:716.545333pt;}
.y190{bottom:720.112000pt;}
.y8f{bottom:723.058667pt;}
.y5c{bottom:723.849333pt;}
.y1d2{bottom:724.720000pt;}
.y164{bottom:733.600000pt;}
.y8e{bottom:734.482667pt;}
.y1d1{bottom:736.144000pt;}
.y5b{bottom:737.953333pt;}
.y8d{bottom:745.906667pt;}
.y1d0{bottom:747.568000pt;}
.y163{bottom:747.838667pt;}
.y5a{bottom:752.057333pt;}
.yd{bottom:755.465333pt;}
.y8c{bottom:757.329333pt;}
.y1cf{bottom:758.992000pt;}
.y59{bottom:766.161333pt;}
.yc{bottom:766.888000pt;}
.y8b{bottom:768.753333pt;}
.y1ce{bottom:770.416000pt;}
.y162{bottom:779.310667pt;}
.y58{bottom:780.265333pt;}
.yb{bottom:780.650667pt;}
.y1cd{bottom:781.840000pt;}
.y8a{bottom:784.597333pt;}
.y1cc{bottom:793.262667pt;}
.y1ff{bottom:793.264000pt;}
.y57{bottom:794.369333pt;}
.ya{bottom:797.918667pt;}
.y89{bottom:798.864000pt;}
.y1cb{bottom:804.686667pt;}
.y1fe{bottom:804.688000pt;}
.y56{bottom:808.473333pt;}
.y88{bottom:810.288000pt;}
.y1ca{bottom:816.110667pt;}
.y9{bottom:822.102667pt;}
.y1c9{bottom:827.534667pt;}
.y55{bottom:838.688000pt;}
.y1c8{bottom:838.958667pt;}
.y1c7{bottom:850.382667pt;}
.y1c6{bottom:861.806667pt;}
.y1c5{bottom:873.230667pt;}
.y1c4{bottom:884.653333pt;}
.y1fd{bottom:884.654667pt;}
.y8{bottom:892.865333pt;}
.y1c3{bottom:896.077333pt;}
.y1fc{bottom:896.078667pt;}
.y1c2{bottom:907.501333pt;}
.y1c1{bottom:918.925333pt;}
.y7{bottom:928.396000pt;}
.y1c0{bottom:930.349333pt;}
.y1bf{bottom:941.773333pt;}
.y1be{bottom:953.197333pt;}
.y1bd{bottom:964.620000pt;}
.y1fb{bottom:964.621333pt;}
.y6{bottom:966.046667pt;}
.y1bc{bottom:976.044000pt;}
.y1fa{bottom:976.045333pt;}
.y2{bottom:1002.226667pt;}
.y52{bottom:1003.226667pt;}
.y54{bottom:1003.421333pt;}
.h16{height:18.873197pt;}
.ha{height:20.921250pt;}
.he{height:26.407456pt;}
.h11{height:28.437317pt;}
.hf{height:29.887500pt;}
.hc{height:29.887969pt;}
.h10{height:30.180112pt;}
.h6{height:30.647691pt;}
.h3{height:33.623437pt;}
.hd{height:33.623906pt;}
.h4{height:37.359844pt;}
.h13{height:39.637845pt;}
.hb{height:42.030000pt;}
.h15{height:45.882809pt;}
.h14{height:52.239844pt;}
.h9{height:52.401687pt;}
.h17{height:53.093317pt;}
.h8{height:54.362937pt;}
.h12{height:54.836112pt;}
.h7{height:63.045000pt;}
.h5{height:65.379844pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x1f{left:51.993333pt;}
.x7{left:59.201333pt;}
.x6{left:66.057333pt;}
.x8{left:70.041333pt;}
.x20{left:75.396000pt;}
.x1d{left:109.477333pt;}
.x4{left:151.442667pt;}
.xe{left:194.194667pt;}
.xf{left:201.152000pt;}
.xd{left:225.724000pt;}
.x5{left:268.826667pt;}
.x1{left:275.343981pt;}
.x3{left:303.392000pt;}
.x10{left:370.921333pt;}
.xc{left:394.943981pt;}
.xa{left:408.805333pt;}
.x21{left:410.681333pt;}
.x11{left:414.849333pt;}
.x9{left:424.745333pt;}
.x1e{left:434.085333pt;}
.xb{left:450.943981pt;}
.x12{left:454.472000pt;}
.x13{left:474.368000pt;}
.x15{left:475.808000pt;}
.x1b{left:495.974667pt;}
.x16{left:510.534667pt;}
.x14{left:517.402667pt;}
.x1c{left:541.518667pt;}
.x17{left:561.333333pt;}
.x18{left:568.328000pt;}
.x19{left:575.286667pt;}
.x1a{left:729.610667pt;}
}




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