
    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_4e0d74c7ba8dbfc16f133e7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_5f237979e1eafcffd300fafe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_289d7394e260ec1a194ab261.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_26dafaed3b9d823dbbf70b65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_0f84e823f97accc249137a5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_283ece972ac0f4d42e0b32f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_5cf700b0346c9f94219c1406.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_0a588e5acff5a95f49b99c4e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678711;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_35d72e9c887ca0b2a3f93277.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_4bdfd98743d84a46de607a10.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_27011f0086025a9bf6176597.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_4dec107ee482c1c12f677f0e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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_5f237979e1eafcffd300fafe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_289d7394e260ec1a194ab261.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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_24c8b288d620664e167bb0e9.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_f55da2e3f8452ff991d2d1bc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.952000;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:ff11;src:url('chunks/assets/font_9bcf1688eba50bb5246c96a4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.943000;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:ff12;src:url('chunks/assets/font_4dec107ee482c1c12f677f0e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;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:ff13;src:url('chunks/assets/font_5f237979e1eafcffd300fafe.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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:ff14;src:url('chunks/assets/font_289d7394e260ec1a194ab261.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;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:ff15;src:url('chunks/assets/font_24c8b288d620664e167bb0e9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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:ff16;src:url('chunks/assets/font_5f237979e1eafcffd300fafe.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;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:ff17;src:url('chunks/assets/font_289d7394e260ec1a194ab261.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;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:ff18;src:url('chunks/assets/font_24c8b288d620664e167bb0e9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;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:ff19;src:url('chunks/assets/font_074d3846adc64ff661bfda9a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.956500;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:ff1a;src:url('chunks/assets/font_5f237979e1eafcffd300fafe.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;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:ff1b;src:url('chunks/assets/font_289d7394e260ec1a194ab261.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958496;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:ff1c;src:url('chunks/assets/font_24c8b288d620664e167bb0e9.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400600px;}
.v6{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v5{vertical-align:-10.812000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.246000px;}
.v1{vertical-align:20.400600px;}
.v7{vertical-align:34.860000px;}
.ls40{letter-spacing:-4.374000px;}
.ls45{letter-spacing:-4.266000px;}
.ls5b{letter-spacing:-4.158000px;}
.ls25{letter-spacing:-4.104000px;}
.ls49{letter-spacing:-4.050000px;}
.ls4c{letter-spacing:-3.996000px;}
.ls24{letter-spacing:-3.942000px;}
.ls4e{letter-spacing:-3.888000px;}
.ls44{letter-spacing:-3.834000px;}
.ls22{letter-spacing:-3.780000px;}
.ls2d{letter-spacing:-3.726000px;}
.ls48{letter-spacing:-3.618000px;}
.ls6e{letter-spacing:-3.564000px;}
.ls2a{letter-spacing:-3.456000px;}
.ls5d{letter-spacing:-3.402000px;}
.ls5c{letter-spacing:-3.348000px;}
.ls2c{letter-spacing:-3.240000px;}
.ls26{letter-spacing:-2.970000px;}
.ls28{letter-spacing:-2.700000px;}
.ls47{letter-spacing:-2.160000px;}
.ls82{letter-spacing:-1.305000px;}
.ls89{letter-spacing:-1.260000px;}
.ls3e{letter-spacing:-1.026000px;}
.ls8d{letter-spacing:-0.990000px;}
.ls42{letter-spacing:-0.918000px;}
.ls8c{letter-spacing:-0.855000px;}
.ls3f{letter-spacing:-0.810000px;}
.ls8a{letter-spacing:-0.765000px;}
.ls6b{letter-spacing:-0.756000px;}
.ls7e{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.702000px;}
.ls41{letter-spacing:-0.648000px;}
.ls5a{letter-spacing:-0.594000px;}
.ls7c{letter-spacing:-0.585000px;}
.ls3a{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.486000px;}
.ls81{letter-spacing:-0.450000px;}
.ls3c{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.378000px;}
.ls61{letter-spacing:-0.336000px;}
.ls46{letter-spacing:-0.324000px;}
.ls7a{letter-spacing:-0.315000px;}
.ls4a{letter-spacing:-0.270000px;}
.ls20{letter-spacing:-0.216000px;}
.ls62{letter-spacing:-0.210000px;}
.ls23{letter-spacing:-0.162000px;}
.ls30{letter-spacing:-0.153000px;}
.ls7b{letter-spacing:-0.135000px;}
.ls29{letter-spacing:-0.108000px;}
.ls7d{letter-spacing:-0.090000px;}
.ls58{letter-spacing:-0.070200px;}
.ls6c{letter-spacing:-0.060000px;}
.ls59{letter-spacing:-0.054000px;}
.ls8b{letter-spacing:-0.045000px;}
.ls60{letter-spacing:-0.042000px;}
.ls1e{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.013800px;}
.ls63{letter-spacing:0.017550px;}
.ls2{letter-spacing:0.022800px;}
.ls77{letter-spacing:0.035100px;}
.lsf{letter-spacing:0.044400px;}
.ls83{letter-spacing:0.045000px;}
.lse{letter-spacing:0.054000px;}
.ls6d{letter-spacing:0.070200px;}
.ls34{letter-spacing:0.085200px;}
.ls72{letter-spacing:0.090000px;}
.ls1b{letter-spacing:0.104850px;}
.ls64{letter-spacing:0.105300px;}
.ls1f{letter-spacing:0.108000px;}
.ls35{letter-spacing:0.120000px;}
.ls79{letter-spacing:0.135000px;}
.ls78{letter-spacing:0.140400px;}
.ls18{letter-spacing:0.144450px;}
.ls65{letter-spacing:0.159000px;}
.ls6{letter-spacing:0.162000px;}
.ls6a{letter-spacing:0.175500px;}
.ls8e{letter-spacing:0.180000px;}
.ls66{letter-spacing:0.193050px;}
.ls2f{letter-spacing:0.204000px;}
.ls33{letter-spacing:0.210600px;}
.lsa{letter-spacing:0.214800px;}
.ls4b{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.245700px;}
.lsc{letter-spacing:0.249600px;}
.ls2e{letter-spacing:0.255000px;}
.ls43{letter-spacing:0.270000px;}
.ls50{letter-spacing:0.274200px;}
.ls54{letter-spacing:0.276300px;}
.ls8{letter-spacing:0.280800px;}
.ls55{letter-spacing:0.282600px;}
.ls67{letter-spacing:0.290400px;}
.lsd{letter-spacing:0.297000px;}
.ls32{letter-spacing:0.300000px;}
.ls88{letter-spacing:0.315000px;}
.ls53{letter-spacing:0.315900px;}
.lsb{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.330450px;}
.ls69{letter-spacing:0.339000px;}
.ls5f{letter-spacing:0.351000px;}
.ls73{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.378000px;}
.ls5e{letter-spacing:0.386100px;}
.ls85{letter-spacing:0.405000px;}
.ls7{letter-spacing:0.432000px;}
.ls80{letter-spacing:0.450000px;}
.ls14{letter-spacing:0.451050px;}
.ls68{letter-spacing:0.469800px;}
.ls4d{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.486000px;}
.ls87{letter-spacing:0.495000px;}
.ls6f{letter-spacing:0.499800px;}
.ls16{letter-spacing:0.510000px;}
.ls39{letter-spacing:0.540000px;}
.ls75{letter-spacing:0.585000px;}
.ls52{letter-spacing:0.594000px;}
.ls1c{letter-spacing:0.597300px;}
.ls7f{letter-spacing:0.630000px;}
.ls19{letter-spacing:0.639450px;}
.ls13{letter-spacing:0.648000px;}
.ls76{letter-spacing:0.675000px;}
.ls5{letter-spacing:0.702000px;}
.ls15{letter-spacing:0.714000px;}
.ls70{letter-spacing:0.720000px;}
.ls51{letter-spacing:0.756000px;}
.ls57{letter-spacing:0.810000px;}
.ls71{letter-spacing:0.840000px;}
.ls74{letter-spacing:0.841500px;}
.ls2b{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.912600px;}
.ls27{letter-spacing:0.918000px;}
.ls1d{letter-spacing:0.960000px;}
.ls4f{letter-spacing:0.972000px;}
.ls1a{letter-spacing:1.020000px;}
.ls10{letter-spacing:1.080000px;}
.ls86{letter-spacing:1.170000px;}
.ls84{letter-spacing:1.179000px;}
.ls12{letter-spacing:1.404000px;}
.ls8f{letter-spacing:1.674000px;}
.ls0{letter-spacing:2.592000px;}
.ls31{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls36{letter-spacing:14.742000px;}
.ls56{letter-spacing:103.740000px;}
.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;}
}
.ws47{word-spacing:-60.300000px;}
.ws6{word-spacing:-54.000000px;}
.ws2{word-spacing:-15.067500px;}
.ws45{word-spacing:-13.596000px;}
.ws13{word-spacing:-13.284000px;}
.ws96{word-spacing:-13.230000px;}
.ws7b{word-spacing:-13.068000px;}
.ws6d{word-spacing:-13.014000px;}
.ws74{word-spacing:-12.798000px;}
.wse{word-spacing:-12.744000px;}
.wsb{word-spacing:-12.690000px;}
.wsf{word-spacing:-12.663000px;}
.wsca{word-spacing:-12.636000px;}
.ws75{word-spacing:-12.528000px;}
.ws6c{word-spacing:-12.474000px;}
.ws10{word-spacing:-12.420000px;}
.ws49{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws9b{word-spacing:-12.312000px;}
.ws6e{word-spacing:-12.258000px;}
.ws62{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.wsd{word-spacing:-12.150000px;}
.ws65{word-spacing:-12.096000px;}
.ws7{word-spacing:-12.042000px;}
.ws4b{word-spacing:-11.988000px;}
.ws4c{word-spacing:-11.934000px;}
.wsa2{word-spacing:-11.880000px;}
.ws4a{word-spacing:-11.826000px;}
.ws78{word-spacing:-11.772000px;}
.ws9a{word-spacing:-11.718000px;}
.ws51{word-spacing:-11.664000px;}
.ws99{word-spacing:-11.610000px;}
.ws4d{word-spacing:-11.556000px;}
.ws52{word-spacing:-11.502000px;}
.wsbf{word-spacing:-10.395000px;}
.wsa6{word-spacing:-10.305000px;}
.wsc7{word-spacing:-10.215000px;}
.ws53{word-spacing:-10.206000px;}
.wsa7{word-spacing:-10.125000px;}
.wsc5{word-spacing:-10.080000px;}
.wsc6{word-spacing:-10.035000px;}
.wsc3{word-spacing:-9.990000px;}
.wsc9{word-spacing:-9.900000px;}
.wsc4{word-spacing:-9.855000px;}
.wsc1{word-spacing:-9.765000px;}
.wsa8{word-spacing:-9.720000px;}
.wsc8{word-spacing:-9.675000px;}
.ws15{word-spacing:-9.666000px;}
.wsc0{word-spacing:-9.540000px;}
.wsc2{word-spacing:-9.450000px;}
.ws12{word-spacing:-9.396000px;}
.ws17{word-spacing:-9.126000px;}
.wsbe{word-spacing:-9.045000px;}
.ws7a{word-spacing:-9.018000px;}
.wsa9{word-spacing:-9.000000px;}
.ws7c{word-spacing:-8.964000px;}
.ws16{word-spacing:-8.910000px;}
.ws14{word-spacing:-8.880300px;}
.ws9d{word-spacing:-8.802000px;}
.ws63{word-spacing:-8.748000px;}
.ws18{word-spacing:-8.640000px;}
.wsa{word-spacing:-8.586000px;}
.ws4f{word-spacing:-8.532000px;}
.ws6a{word-spacing:-8.478000px;}
.wsc{word-spacing:-8.424000px;}
.ws66{word-spacing:-8.370000px;}
.ws7d{word-spacing:-8.353800px;}
.ws7e{word-spacing:-8.318700px;}
.ws64{word-spacing:-8.316000px;}
.ws77{word-spacing:-8.283600px;}
.ws11{word-spacing:-8.262000px;}
.ws9{word-spacing:-8.248500px;}
.ws48{word-spacing:-8.213400px;}
.ws79{word-spacing:-8.208000px;}
.ws6b{word-spacing:-8.178300px;}
.ws97{word-spacing:-8.160750px;}
.ws98{word-spacing:-8.143200px;}
.wsa5{word-spacing:-8.108100px;}
.ws50{word-spacing:-8.100000px;}
.ws95{word-spacing:-8.073000px;}
.ws9c{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.wsa4{word-spacing:-8.002800px;}
.ws4e{word-spacing:-7.992000px;}
.ws94{word-spacing:-7.985250px;}
.ws8{word-spacing:-7.967700px;}
.ws76{word-spacing:-7.897500px;}
.ws1f{word-spacing:-7.800000px;}
.ws19{word-spacing:-6.630000px;}
.ws21{word-spacing:-4.440000px;}
.wsd8{word-spacing:-3.960000px;}
.ws1d{word-spacing:-3.840000px;}
.ws20{word-spacing:-3.600000px;}
.ws1b{word-spacing:-3.276000px;}
.ws44{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.ws1e{word-spacing:-2.400000px;}
.ws8c{word-spacing:-1.998000px;}
.ws5c{word-spacing:-1.890000px;}
.ws24{word-spacing:-1.836000px;}
.ws8f{word-spacing:-1.782000px;}
.ws58{word-spacing:-1.728000px;}
.ws9e{word-spacing:-1.674000px;}
.ws39{word-spacing:-1.620000px;}
.wscc{word-spacing:-1.575000px;}
.ws42{word-spacing:-1.530000px;}
.wscf{word-spacing:-1.485000px;}
.ws5b{word-spacing:-1.458000px;}
.wscd{word-spacing:-1.440000px;}
.ws31{word-spacing:-1.404000px;}
.ws92{word-spacing:-1.386000px;}
.wsae{word-spacing:-1.350000px;}
.ws91{word-spacing:-1.302000px;}
.wsad{word-spacing:-1.296000px;}
.ws1c{word-spacing:-1.260000px;}
.ws28{word-spacing:-1.242000px;}
.wsb3{word-spacing:-1.215000px;}
.ws5f{word-spacing:-1.188000px;}
.ws22{word-spacing:-1.134000px;}
.ws2e{word-spacing:-1.080000px;}
.wsb1{word-spacing:-1.035000px;}
.ws67{word-spacing:-1.026000px;}
.ws3e{word-spacing:-1.020000px;}
.ws68{word-spacing:-0.972000px;}
.ws93{word-spacing:-0.966000px;}
.ws43{word-spacing:-0.918000px;}
.ws2b{word-spacing:-0.864000px;}
.wsaf{word-spacing:-0.840000px;}
.ws59{word-spacing:-0.810000px;}
.wsa3{word-spacing:-0.780000px;}
.ws60{word-spacing:-0.756000px;}
.wsab{word-spacing:-0.720000px;}
.ws90{word-spacing:-0.714000px;}
.wsa0{word-spacing:-0.702000px;}
.ws69{word-spacing:-0.648000px;}
.ws5e{word-spacing:-0.600000px;}
.ws23{word-spacing:-0.594000px;}
.wsb6{word-spacing:-0.585000px;}
.ws2d{word-spacing:-0.540000px;}
.ws3b{word-spacing:-0.510000px;}
.wsb0{word-spacing:-0.495000px;}
.ws32{word-spacing:-0.486000px;}
.ws71{word-spacing:-0.480000px;}
.wsbd{word-spacing:-0.450000px;}
.ws38{word-spacing:-0.432000px;}
.ws55{word-spacing:-0.420000px;}
.wsb8{word-spacing:-0.405000px;}
.ws29{word-spacing:-0.378000px;}
.ws46{word-spacing:-0.360000px;}
.ws27{word-spacing:-0.324000px;}
.wsba{word-spacing:-0.315000px;}
.ws54{word-spacing:-0.300000px;}
.ws2c{word-spacing:-0.270000px;}
.ws3d{word-spacing:-0.255000px;}
.wsd3{word-spacing:-0.225000px;}
.ws61{word-spacing:-0.216000px;}
.ws40{word-spacing:-0.204000px;}
.ws26{word-spacing:-0.162000px;}
.wsd5{word-spacing:-0.135000px;}
.ws5d{word-spacing:-0.120000px;}
.ws72{word-spacing:-0.108000px;}
.wsb5{word-spacing:-0.090000px;}
.ws70{word-spacing:-0.060000px;}
.ws5{word-spacing:-0.054000px;}
.wscb{word-spacing:-0.045000px;}
.ws1a{word-spacing:0.000000px;}
.wsbc{word-spacing:0.045000px;}
.ws56{word-spacing:0.054000px;}
.wsa1{word-spacing:0.060000px;}
.wsce{word-spacing:0.090000px;}
.ws2a{word-spacing:0.108000px;}
.wsd4{word-spacing:0.135000px;}
.ws41{word-spacing:0.153000px;}
.ws8b{word-spacing:0.162000px;}
.ws73{word-spacing:0.216000px;}
.wsd2{word-spacing:0.225000px;}
.ws8d{word-spacing:0.270000px;}
.ws3c{word-spacing:0.306000px;}
.ws6f{word-spacing:0.324000px;}
.wsb2{word-spacing:0.360000px;}
.ws89{word-spacing:0.378000px;}
.wsb4{word-spacing:0.405000px;}
.ws33{word-spacing:0.432000px;}
.ws57{word-spacing:0.486000px;}
.wsb7{word-spacing:0.495000px;}
.ws5a{word-spacing:0.540000px;}
.wsbb{word-spacing:0.585000px;}
.ws25{word-spacing:0.594000px;}
.wsaa{word-spacing:0.600000px;}
.wsb9{word-spacing:0.630000px;}
.ws8e{word-spacing:0.648000px;}
.ws8a{word-spacing:0.702000px;}
.wsd7{word-spacing:0.756000px;}
.ws3a{word-spacing:0.765000px;}
.wsd0{word-spacing:0.855000px;}
.ws36{word-spacing:0.864000px;}
.ws9f{word-spacing:0.918000px;}
.ws35{word-spacing:1.080000px;}
.ws34{word-spacing:1.188000px;}
.wsac{word-spacing:1.242000px;}
.ws3f{word-spacing:1.479000px;}
.ws2f{word-spacing:1.566000px;}
.ws37{word-spacing:1.728000px;}
.wsd1{word-spacing:1.890000px;}
.ws30{word-spacing:2.322000px;}
.wsd6{word-spacing:2.916000px;}
.ws7f{word-spacing:27.472200px;}
.ws80{word-spacing:49.337400px;}
.ws81{word-spacing:54.562200px;}
.ws88{word-spacing:94.206000px;}
.ws84{word-spacing:116.172000px;}
.ws82{word-spacing:126.252000px;}
.ws86{word-spacing:126.672000px;}
.ws85{word-spacing:131.376000px;}
.ws83{word-spacing:151.536000px;}
.ws87{word-spacing:158.634000px;}
._1{margin-left:-19.110000px;}
._d{margin-left:-12.150000px;}
._1f{margin-left:-10.765200px;}
._c{margin-left:-9.757800px;}
._21{margin-left:-7.227600px;}
._2{margin-left:-6.052800px;}
._a{margin-left:-4.913400px;}
._3{margin-left:-3.856200px;}
._8{margin-left:-2.814600px;}
._0{margin-left:-1.776000px;}
._5{width:1.200000px;}
._4{width:2.551200px;}
._6{width:3.696000px;}
._7{width:4.794600px;}
._b{width:6.963600px;}
._20{width:12.709800px;}
._f{width:37.464000px;}
._e{width:41.260200px;}
._9{width:48.673800px;}
._13{width:136.206000px;}
._17{width:145.866000px;}
._1a{width:160.650000px;}
._16{width:176.694000px;}
._1d{width:181.230000px;}
._12{width:186.774000px;}
._1b{width:196.854000px;}
._1e{width:206.934000px;}
._15{width:247.128000px;}
._14{width:250.992000px;}
._11{width:257.208000px;}
._10{width:261.492000px;}
._19{width:264.306000px;}
._1c{width:266.868000px;}
._18{width:271.152000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y31{bottom:68.307900px;}
.y102{bottom:68.551500px;}
.y148{bottom:70.957500px;}
.y76{bottom:74.032800px;}
.y48{bottom:75.531300px;}
.yb5{bottom:76.051500px;}
.y196{bottom:81.550800px;}
.y64{bottom:81.576300px;}
.y30{bottom:83.307900px;}
.y101{bottom:83.551500px;}
.y147{bottom:83.703750px;}
.y75{bottom:89.031300px;}
.y47{bottom:90.529800px;}
.yb4{bottom:91.051500px;}
.y146{bottom:96.450000px;}
.y195{bottom:96.549300px;}
.y63{bottom:96.574800px;}
.y2f{bottom:98.307900px;}
.y100{bottom:98.553000px;}
.y74{bottom:104.029800px;}
.y46{bottom:105.528300px;}
.yb3{bottom:106.059000px;}
.y145{bottom:109.196250px;}
.y194{bottom:111.547800px;}
.y62{bottom:111.573300px;}
.y2e{bottom:113.307900px;}
.yff{bottom:113.551500px;}
.y73{bottom:119.028300px;}
.yb2{bottom:121.057500px;}
.y144{bottom:121.942500px;}
.y193{bottom:126.546300px;}
.y61{bottom:126.571800px;}
.y2d{bottom:128.307900px;}
.yfe{bottom:128.551500px;}
.y143{bottom:134.688750px;}
.yb1{bottom:136.056000px;}
.y45{bottom:138.535800px;}
.y192{bottom:141.544800px;}
.y60{bottom:141.570300px;}
.y2c{bottom:143.307900px;}
.yfd{bottom:143.550000px;}
.y142{bottom:147.435000px;}
.yb0{bottom:151.054500px;}
.y72{bottom:152.032800px;}
.y44{bottom:153.534300px;}
.y191{bottom:156.543300px;}
.y5f{bottom:156.568800px;}
.y2b{bottom:158.307900px;}
.y141{bottom:160.181250px;}
.yaf{bottom:166.053000px;}
.y71{bottom:167.031300px;}
.y43{bottom:168.532800px;}
.y190{bottom:171.543300px;}
.y5e{bottom:171.567300px;}
.y140{bottom:172.927500px;}
.yfc{bottom:173.674650px;}
.y2a{bottom:177.636900px;}
.yae{bottom:181.051500px;}
.y70{bottom:182.029800px;}
.y42{bottom:183.531300px;}
.y13f{bottom:185.673750px;}
.y5d{bottom:186.565800px;}
.yfb{bottom:188.673150px;}
.yad{bottom:196.053000px;}
.y6f{bottom:197.031300px;}
.y13e{bottom:198.420000px;}
.y41{bottom:198.529800px;}
.y18f{bottom:198.805800px;}
.y5c{bottom:201.564300px;}
.yfa{bottom:203.674650px;}
.yac{bottom:211.051500px;}
.y13d{bottom:211.166250px;}
.y18e{bottom:211.552050px;}
.y6e{bottom:212.029800px;}
.y40{bottom:213.531300px;}
.y5b{bottom:216.562800px;}
.yf9{bottom:218.673150px;}
.y13c{bottom:223.912500px;}
.y18d{bottom:224.298300px;}
.yab{bottom:226.051500px;}
.y6d{bottom:227.031300px;}
.y3f{bottom:228.529800px;}
.y5a{bottom:231.561300px;}
.yf8{bottom:233.676150px;}
.y13b{bottom:236.658750px;}
.y18c{bottom:237.044550px;}
.yaa{bottom:241.051500px;}
.y6c{bottom:242.029800px;}
.y3e{bottom:243.529800px;}
.y59{bottom:246.559800px;}
.yf7{bottom:248.674650px;}
.y13a{bottom:249.405000px;}
.y29{bottom:249.685800px;}
.y18b{bottom:249.790800px;}
.ya9{bottom:256.053000px;}
.y6b{bottom:257.034300px;}
.y3d{bottom:258.529800px;}
.y58{bottom:261.558300px;}
.y139{bottom:262.151250px;}
.y18a{bottom:262.537050px;}
.yf6{bottom:263.673150px;}
.y28{bottom:264.693300px;}
.ya8{bottom:271.051500px;}
.y6a{bottom:272.032800px;}
.y3c{bottom:273.532800px;}
.y138{bottom:274.897500px;}
.y189{bottom:275.283300px;}
.y57{bottom:276.556800px;}
.yf5{bottom:278.673150px;}
.y27{bottom:279.691800px;}
.ya7{bottom:286.051500px;}
.y69{bottom:287.031300px;}
.y137{bottom:287.643750px;}
.y188{bottom:288.029550px;}
.y3b{bottom:288.531300px;}
.y56{bottom:291.555300px;}
.yf4{bottom:293.673150px;}
.y26{bottom:294.690300px;}
.y136{bottom:300.390000px;}
.y187{bottom:300.775800px;}
.ya6{bottom:301.060500px;}
.y68{bottom:302.029800px;}
.y3a{bottom:303.529800px;}
.y55{bottom:306.553800px;}
.yf3{bottom:308.671650px;}
.y25{bottom:309.688800px;}
.y135{bottom:313.136250px;}
.y186{bottom:313.522050px;}
.ya5{bottom:316.059000px;}
.y67{bottom:317.028300px;}
.y39{bottom:318.529800px;}
.y54{bottom:321.552300px;}
.yf2{bottom:323.671650px;}
.y24{bottom:324.687300px;}
.y134{bottom:325.882500px;}
.y185{bottom:326.268300px;}
.ya4{bottom:331.057500px;}
.y38{bottom:333.528300px;}
.y53{bottom:336.550800px;}
.y133{bottom:338.628750px;}
.y184{bottom:339.014550px;}
.y23{bottom:339.685800px;}
.ya3{bottom:346.056000px;}
.y37{bottom:348.528300px;}
.y132{bottom:351.375000px;}
.y52{bottom:351.549300px;}
.y183{bottom:351.760800px;}
.yf1{bottom:353.800800px;}
.y22{bottom:354.687300px;}
.ya2{bottom:361.054500px;}
.y131{bottom:364.121250px;}
.y182{bottom:364.507050px;}
.y51{bottom:366.547800px;}
.yf0{bottom:368.799300px;}
.y21{bottom:369.685800px;}
.y81{bottom:373.639950px;}
.ya1{bottom:376.053000px;}
.y130{bottom:376.867500px;}
.y181{bottom:377.253300px;}
.y50{bottom:381.546300px;}
.yef{bottom:383.797800px;}
.y20{bottom:384.685800px;}
.y80{bottom:388.638450px;}
.y12f{bottom:389.613750px;}
.y180{bottom:389.999550px;}
.ya0{bottom:391.051500px;}
.y4f{bottom:396.544800px;}
.yee{bottom:398.796300px;}
.y1f{bottom:399.687300px;}
.y4d{bottom:402.196950px;}
.y12e{bottom:402.360000px;}
.y17f{bottom:402.745800px;}
.y7f{bottom:403.636950px;}
.y9f{bottom:406.051500px;}
.y4e{bottom:411.543300px;}
.yed{bottom:413.794800px;}
.y1e{bottom:414.685800px;}
.y12d{bottom:415.106250px;}
.y17e{bottom:415.492050px;}
.y4c{bottom:417.195450px;}
.y7e{bottom:418.635450px;}
.y9e{bottom:421.054500px;}
.y12c{bottom:427.852500px;}
.y17d{bottom:428.238300px;}
.yec{bottom:428.800800px;}
.y1d{bottom:429.688800px;}
.y4b{bottom:432.193950px;}
.y7d{bottom:433.633950px;}
.y9d{bottom:436.053000px;}
.y12b{bottom:440.598750px;}
.y17c{bottom:440.984550px;}
.yeb{bottom:443.799300px;}
.y1c{bottom:444.687300px;}
.y9c{bottom:451.051500px;}
.y12a{bottom:453.345000px;}
.y17b{bottom:453.730800px;}
.yea{bottom:458.797800px;}
.y1b{bottom:459.685800px;}
.y66{bottom:460.500450px;}
.y9b{bottom:466.050000px;}
.y129{bottom:466.091250px;}
.y17a{bottom:466.477050px;}
.ye9{bottom:473.796300px;}
.y1a{bottom:474.690300px;}
.y65{bottom:475.498950px;}
.y128{bottom:478.837500px;}
.y179{bottom:479.223300px;}
.y9a{bottom:481.050000px;}
.ye8{bottom:488.794800px;}
.y19{bottom:489.688800px;}
.y127{bottom:491.583750px;}
.y178{bottom:491.969550px;}
.ye7{bottom:503.802300px;}
.y126{bottom:504.330000px;}
.y18{bottom:504.687300px;}
.y177{bottom:504.715800px;}
.y99{bottom:512.676150px;}
.y125{bottom:517.076250px;}
.y176{bottom:517.462050px;}
.ye6{bottom:518.800800px;}
.y17{bottom:519.685800px;}
.y98{bottom:527.674650px;}
.y124{bottom:529.822500px;}
.y175{bottom:530.208300px;}
.ye5{bottom:533.799300px;}
.y16{bottom:534.688800px;}
.y123{bottom:542.568750px;}
.y97{bottom:542.673150px;}
.y174{bottom:542.954550px;}
.ye4{bottom:548.797800px;}
.y15{bottom:549.687300px;}
.y122{bottom:555.315000px;}
.y173{bottom:555.700800px;}
.y96{bottom:557.679150px;}
.ye3{bottom:563.796300px;}
.y14{bottom:564.685800px;}
.y121{bottom:568.061250px;}
.y172{bottom:568.447050px;}
.y95{bottom:572.677650px;}
.ye2{bottom:578.794800px;}
.y13{bottom:579.712800px;}
.y120{bottom:580.807500px;}
.y171{bottom:581.193300px;}
.y94{bottom:587.676150px;}
.y11f{bottom:593.553750px;}
.ye1{bottom:593.794800px;}
.y170{bottom:593.939550px;}
.y12{bottom:594.711300px;}
.y93{bottom:602.674650px;}
.y11e{bottom:606.300000px;}
.y16f{bottom:606.685800px;}
.ye0{bottom:608.794800px;}
.y92{bottom:617.673150px;}
.y11d{bottom:619.050000px;}
.y16e{bottom:619.432050px;}
.ydf{bottom:623.794800px;}
.y16d{bottom:632.178300px;}
.y91{bottom:632.682150px;}
.yde{bottom:638.794800px;}
.y11{bottom:641.961300px;}
.y16c{bottom:644.924550px;}
.y11c{bottom:646.487250px;}
.y90{bottom:647.680650px;}
.ydd{bottom:653.794800px;}
.y16b{bottom:657.670800px;}
.y10{bottom:658.458300px;}
.y11b{bottom:661.488750px;}
.y8f{bottom:662.679150px;}
.ydc{bottom:668.794800px;}
.y16a{bottom:670.417050px;}
.yf{bottom:674.955300px;}
.y11a{bottom:676.487250px;}
.y8e{bottom:677.677650px;}
.y169{bottom:683.163300px;}
.ydb{bottom:683.794800px;}
.ye{bottom:691.452300px;}
.y119{bottom:691.487250px;}
.y8d{bottom:692.676150px;}
.y168{bottom:695.909550px;}
.yda{bottom:698.794800px;}
.y118{bottom:706.487250px;}
.y8c{bottom:707.674650px;}
.yd{bottom:707.949300px;}
.y167{bottom:708.655800px;}
.yd9{bottom:713.794800px;}
.y166{bottom:721.402050px;}
.y117{bottom:721.485750px;}
.y8b{bottom:722.673150px;}
.yc{bottom:724.446300px;}
.yd8{bottom:728.799300px;}
.y165{bottom:734.148300px;}
.y8a{bottom:737.671650px;}
.yb{bottom:740.943300px;}
.yd7{bottom:743.797800px;}
.y164{bottom:746.894550px;}
.y116{bottom:748.923150px;}
.y34{bottom:757.050000px;}
.ya{bottom:757.440300px;}
.yd6{bottom:758.796300px;}
.y163{bottom:759.640800px;}
.y115{bottom:763.929150px;}
.y89{bottom:769.299300px;}
.y162{bottom:772.387050px;}
.yd5{bottom:773.794800px;}
.y9{bottom:773.937300px;}
.y33{bottom:778.050000px;}
.y114{bottom:778.927650px;}
.y88{bottom:784.297800px;}
.y161{bottom:785.133300px;}
.yd4{bottom:788.802300px;}
.y8{bottom:790.434300px;}
.y113{bottom:793.926150px;}
.y1a5{bottom:794.802300px;}
.y160{bottom:797.879550px;}
.y32{bottom:799.050000px;}
.y87{bottom:799.296300px;}
.yd3{bottom:803.800800px;}
.y112{bottom:808.924650px;}
.y1a4{bottom:809.800800px;}
.y15f{bottom:810.625800px;}
.y4a{bottom:813.660450px;}
.y86{bottom:814.294800px;}
.yd2{bottom:818.799300px;}
.y7{bottom:820.434300px;}
.y15e{bottom:823.372050px;}
.y111{bottom:823.923150px;}
.y1a3{bottom:824.799300px;}
.y49{bottom:828.658950px;}
.y85{bottom:829.297800px;}
.yd1{bottom:833.797800px;}
.y15d{bottom:836.118300px;}
.y6{bottom:838.434300px;}
.y110{bottom:838.921650px;}
.y1a2{bottom:839.797800px;}
.y84{bottom:844.296300px;}
.yd0{bottom:848.796300px;}
.y15c{bottom:848.864550px;}
.y1a1{bottom:854.796300px;}
.y83{bottom:859.294800px;}
.y15b{bottom:861.610800px;}
.ycf{bottom:863.794800px;}
.y10f{bottom:866.371050px;}
.y1a0{bottom:869.794800px;}
.y5{bottom:871.428300px;}
.y82{bottom:874.293300px;}
.y15a{bottom:874.357050px;}
.yce{bottom:878.799300px;}
.y10e{bottom:881.369550px;}
.y19f{bottom:884.793300px;}
.y159{bottom:887.103300px;}
.ycd{bottom:893.797800px;}
.y10d{bottom:896.368050px;}
.y158{bottom:899.849550px;}
.y19e{bottom:906.550800px;}
.ycc{bottom:908.796300px;}
.y10c{bottom:911.366550px;}
.y157{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y19d{bottom:921.549300px;}
.ybf{bottom:922.480800px;}
.ycb{bottom:923.794800px;}
.y156{bottom:925.342050px;}
.y10b{bottom:926.365050px;}
.y35{bottom:926.409600px;}
.y7c{bottom:936.546450px;}
.y155{bottom:938.088300px;}
.yca{bottom:938.794800px;}
.y10a{bottom:941.363550px;}
.y19c{bottom:943.297800px;}
.y154{bottom:950.834550px;}
.y7b{bottom:951.544950px;}
.ybe{bottom:952.675800px;}
.yc9{bottom:953.796300px;}
.y109{bottom:956.362050px;}
.y19b{bottom:958.296300px;}
.y153{bottom:963.580800px;}
.y7a{bottom:966.543450px;}
.yc8{bottom:968.794800px;}
.ybd{bottom:970.116300px;}
.y108{bottom:971.360550px;}
.y152{bottom:976.327050px;}
.y19a{bottom:980.044800px;}
.y79{bottom:981.541950px;}
.yc7{bottom:983.794800px;}
.y107{bottom:986.359050px;}
.ybc{bottom:987.556800px;}
.y151{bottom:989.073300px;}
.ybb{bottom:996.271800px;}
.y78{bottom:996.540450px;}
.yc6{bottom:998.794800px;}
.y106{bottom:1001.357550px;}
.y199{bottom:1001.793300px;}
.y150{bottom:1001.819550px;}
.y77{bottom:1011.538950px;}
.yc5{bottom:1013.794800px;}
.y14f{bottom:1014.565800px;}
.y198{bottom:1016.793300px;}
.yba{bottom:1022.427300px;}
.y14e{bottom:1027.312050px;}
.yc4{bottom:1028.797800px;}
.y105{bottom:1028.799300px;}
.yb9{bottom:1031.142300px;}
.y14d{bottom:1040.058300px;}
.yc3{bottom:1043.796300px;}
.y104{bottom:1043.797800px;}
.y14c{bottom:1052.804550px;}
.yb8{bottom:1057.297800px;}
.yc2{bottom:1058.794800px;}
.y103{bottom:1058.796300px;}
.y14b{bottom:1065.550800px;}
.yb7{bottom:1066.012800px;}
.y197{bottom:1073.793300px;}
.yc1{bottom:1073.794800px;}
.y14a{bottom:1078.297050px;}
.yc0{bottom:1088.793300px;}
.y149{bottom:1091.043300px;}
.yb6{bottom:1092.168300px;}
.y36{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hf{height:23.842749px;}
.h1d{height:29.736000px;}
.h1f{height:30.072000px;}
.h21{height:32.220000px;}
.h3{height:34.523438px;}
.h11{height:36.681152px;}
.h14{height:38.232000px;}
.h8{height:38.664000px;}
.h7{height:38.838867px;}
.h15{height:39.906000px;}
.h10{height:41.158749px;}
.h2{height:43.154297px;}
.h9{height:43.377600px;}
.h18{height:43.449000px;}
.h16{height:43.449600px;}
.h1c{height:43.455000px;}
.he{height:43.455600px;}
.h17{height:43.461600px;}
.hb{height:43.467600px;}
.ha{height:43.473600px;}
.h1a{height:43.479000px;}
.hc{height:43.479600px;}
.h19{height:43.485000px;}
.hd{height:43.485600px;}
.h20{height:43.491600px;}
.h4{height:44.233154px;}
.h1b{height:44.292300px;}
.h13{height:47.469727px;}
.h6{height:48.450893px;}
.h1e{height:64.932000px;}
.h12{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x7{left:78.957150px;}
.x6{left:84.453150px;}
.x8{left:140.952750px;}
.x4{left:233.456400px;}
.xb{left:238.136250px;}
.x5{left:251.456400px;}
.xa{left:255.618750px;}
.xc{left:269.100750px;}
.xd{left:300.348600px;}
.x3{left:584.586600px;}
.x9{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v2{vertical-align:-18.133867pt;}
.v6{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.610667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.218667pt;}
.v1{vertical-align:18.133867pt;}
.v7{vertical-align:30.986667pt;}
.ls40{letter-spacing:-3.888000pt;}
.ls45{letter-spacing:-3.792000pt;}
.ls5b{letter-spacing:-3.696000pt;}
.ls25{letter-spacing:-3.648000pt;}
.ls49{letter-spacing:-3.600000pt;}
.ls4c{letter-spacing:-3.552000pt;}
.ls24{letter-spacing:-3.504000pt;}
.ls4e{letter-spacing:-3.456000pt;}
.ls44{letter-spacing:-3.408000pt;}
.ls22{letter-spacing:-3.360000pt;}
.ls2d{letter-spacing:-3.312000pt;}
.ls48{letter-spacing:-3.216000pt;}
.ls6e{letter-spacing:-3.168000pt;}
.ls2a{letter-spacing:-3.072000pt;}
.ls5d{letter-spacing:-3.024000pt;}
.ls5c{letter-spacing:-2.976000pt;}
.ls2c{letter-spacing:-2.880000pt;}
.ls26{letter-spacing:-2.640000pt;}
.ls28{letter-spacing:-2.400000pt;}
.ls47{letter-spacing:-1.920000pt;}
.ls82{letter-spacing:-1.160000pt;}
.ls89{letter-spacing:-1.120000pt;}
.ls3e{letter-spacing:-0.912000pt;}
.ls8d{letter-spacing:-0.880000pt;}
.ls42{letter-spacing:-0.816000pt;}
.ls8c{letter-spacing:-0.760000pt;}
.ls3f{letter-spacing:-0.720000pt;}
.ls8a{letter-spacing:-0.680000pt;}
.ls6b{letter-spacing:-0.672000pt;}
.ls7e{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.624000pt;}
.ls41{letter-spacing:-0.576000pt;}
.ls5a{letter-spacing:-0.528000pt;}
.ls7c{letter-spacing:-0.520000pt;}
.ls3a{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.432000pt;}
.ls81{letter-spacing:-0.400000pt;}
.ls3c{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.336000pt;}
.ls61{letter-spacing:-0.298667pt;}
.ls46{letter-spacing:-0.288000pt;}
.ls7a{letter-spacing:-0.280000pt;}
.ls4a{letter-spacing:-0.240000pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls62{letter-spacing:-0.186667pt;}
.ls23{letter-spacing:-0.144000pt;}
.ls30{letter-spacing:-0.136000pt;}
.ls7b{letter-spacing:-0.120000pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls7d{letter-spacing:-0.080000pt;}
.ls58{letter-spacing:-0.062400pt;}
.ls6c{letter-spacing:-0.053333pt;}
.ls59{letter-spacing:-0.048000pt;}
.ls8b{letter-spacing:-0.040000pt;}
.ls60{letter-spacing:-0.037333pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.012267pt;}
.ls63{letter-spacing:0.015600pt;}
.ls2{letter-spacing:0.020267pt;}
.ls77{letter-spacing:0.031200pt;}
.lsf{letter-spacing:0.039467pt;}
.ls83{letter-spacing:0.040000pt;}
.lse{letter-spacing:0.048000pt;}
.ls6d{letter-spacing:0.062400pt;}
.ls34{letter-spacing:0.075733pt;}
.ls72{letter-spacing:0.080000pt;}
.ls1b{letter-spacing:0.093200pt;}
.ls64{letter-spacing:0.093600pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls35{letter-spacing:0.106667pt;}
.ls79{letter-spacing:0.120000pt;}
.ls78{letter-spacing:0.124800pt;}
.ls18{letter-spacing:0.128400pt;}
.ls65{letter-spacing:0.141333pt;}
.ls6{letter-spacing:0.144000pt;}
.ls6a{letter-spacing:0.156000pt;}
.ls8e{letter-spacing:0.160000pt;}
.ls66{letter-spacing:0.171600pt;}
.ls2f{letter-spacing:0.181333pt;}
.ls33{letter-spacing:0.187200pt;}
.lsa{letter-spacing:0.190933pt;}
.ls4b{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.218400pt;}
.lsc{letter-spacing:0.221867pt;}
.ls2e{letter-spacing:0.226667pt;}
.ls43{letter-spacing:0.240000pt;}
.ls50{letter-spacing:0.243733pt;}
.ls54{letter-spacing:0.245600pt;}
.ls8{letter-spacing:0.249600pt;}
.ls55{letter-spacing:0.251200pt;}
.ls67{letter-spacing:0.258133pt;}
.lsd{letter-spacing:0.264000pt;}
.ls32{letter-spacing:0.266667pt;}
.ls88{letter-spacing:0.280000pt;}
.ls53{letter-spacing:0.280800pt;}
.lsb{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.293733pt;}
.ls69{letter-spacing:0.301333pt;}
.ls5f{letter-spacing:0.312000pt;}
.ls73{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.336000pt;}
.ls5e{letter-spacing:0.343200pt;}
.ls85{letter-spacing:0.360000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls80{letter-spacing:0.400000pt;}
.ls14{letter-spacing:0.400933pt;}
.ls68{letter-spacing:0.417600pt;}
.ls4d{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.432000pt;}
.ls87{letter-spacing:0.440000pt;}
.ls6f{letter-spacing:0.444267pt;}
.ls16{letter-spacing:0.453333pt;}
.ls39{letter-spacing:0.480000pt;}
.ls75{letter-spacing:0.520000pt;}
.ls52{letter-spacing:0.528000pt;}
.ls1c{letter-spacing:0.530933pt;}
.ls7f{letter-spacing:0.560000pt;}
.ls19{letter-spacing:0.568400pt;}
.ls13{letter-spacing:0.576000pt;}
.ls76{letter-spacing:0.600000pt;}
.ls5{letter-spacing:0.624000pt;}
.ls15{letter-spacing:0.634667pt;}
.ls70{letter-spacing:0.640000pt;}
.ls51{letter-spacing:0.672000pt;}
.ls57{letter-spacing:0.720000pt;}
.ls71{letter-spacing:0.746667pt;}
.ls74{letter-spacing:0.748000pt;}
.ls2b{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.811200pt;}
.ls27{letter-spacing:0.816000pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls4f{letter-spacing:0.864000pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls10{letter-spacing:0.960000pt;}
.ls86{letter-spacing:1.040000pt;}
.ls84{letter-spacing:1.048000pt;}
.ls12{letter-spacing:1.248000pt;}
.ls8f{letter-spacing:1.488000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls31{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls36{letter-spacing:13.104000pt;}
.ls56{letter-spacing:92.213333pt;}
.ws47{word-spacing:-53.600000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws45{word-spacing:-12.085333pt;}
.ws13{word-spacing:-11.808000pt;}
.ws96{word-spacing:-11.760000pt;}
.ws7b{word-spacing:-11.616000pt;}
.ws6d{word-spacing:-11.568000pt;}
.ws74{word-spacing:-11.376000pt;}
.wse{word-spacing:-11.328000pt;}
.wsb{word-spacing:-11.280000pt;}
.wsf{word-spacing:-11.256000pt;}
.wsca{word-spacing:-11.232000pt;}
.ws75{word-spacing:-11.136000pt;}
.ws6c{word-spacing:-11.088000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws49{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws9b{word-spacing:-10.944000pt;}
.ws6e{word-spacing:-10.896000pt;}
.ws62{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.wsd{word-spacing:-10.800000pt;}
.ws65{word-spacing:-10.752000pt;}
.ws7{word-spacing:-10.704000pt;}
.ws4b{word-spacing:-10.656000pt;}
.ws4c{word-spacing:-10.608000pt;}
.wsa2{word-spacing:-10.560000pt;}
.ws4a{word-spacing:-10.512000pt;}
.ws78{word-spacing:-10.464000pt;}
.ws9a{word-spacing:-10.416000pt;}
.ws51{word-spacing:-10.368000pt;}
.ws99{word-spacing:-10.320000pt;}
.ws4d{word-spacing:-10.272000pt;}
.ws52{word-spacing:-10.224000pt;}
.wsbf{word-spacing:-9.240000pt;}
.wsa6{word-spacing:-9.160000pt;}
.wsc7{word-spacing:-9.080000pt;}
.ws53{word-spacing:-9.072000pt;}
.wsa7{word-spacing:-9.000000pt;}
.wsc5{word-spacing:-8.960000pt;}
.wsc6{word-spacing:-8.920000pt;}
.wsc3{word-spacing:-8.880000pt;}
.wsc9{word-spacing:-8.800000pt;}
.wsc4{word-spacing:-8.760000pt;}
.wsc1{word-spacing:-8.680000pt;}
.wsa8{word-spacing:-8.640000pt;}
.wsc8{word-spacing:-8.600000pt;}
.ws15{word-spacing:-8.592000pt;}
.wsc0{word-spacing:-8.480000pt;}
.wsc2{word-spacing:-8.400000pt;}
.ws12{word-spacing:-8.352000pt;}
.ws17{word-spacing:-8.112000pt;}
.wsbe{word-spacing:-8.040000pt;}
.ws7a{word-spacing:-8.016000pt;}
.wsa9{word-spacing:-8.000000pt;}
.ws7c{word-spacing:-7.968000pt;}
.ws16{word-spacing:-7.920000pt;}
.ws14{word-spacing:-7.893600pt;}
.ws9d{word-spacing:-7.824000pt;}
.ws63{word-spacing:-7.776000pt;}
.ws18{word-spacing:-7.680000pt;}
.wsa{word-spacing:-7.632000pt;}
.ws4f{word-spacing:-7.584000pt;}
.ws6a{word-spacing:-7.536000pt;}
.wsc{word-spacing:-7.488000pt;}
.ws66{word-spacing:-7.440000pt;}
.ws7d{word-spacing:-7.425600pt;}
.ws7e{word-spacing:-7.394400pt;}
.ws64{word-spacing:-7.392000pt;}
.ws77{word-spacing:-7.363200pt;}
.ws11{word-spacing:-7.344000pt;}
.ws9{word-spacing:-7.332000pt;}
.ws48{word-spacing:-7.300800pt;}
.ws79{word-spacing:-7.296000pt;}
.ws6b{word-spacing:-7.269600pt;}
.ws97{word-spacing:-7.254000pt;}
.ws98{word-spacing:-7.238400pt;}
.wsa5{word-spacing:-7.207200pt;}
.ws50{word-spacing:-7.200000pt;}
.ws95{word-spacing:-7.176000pt;}
.ws9c{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.wsa4{word-spacing:-7.113600pt;}
.ws4e{word-spacing:-7.104000pt;}
.ws94{word-spacing:-7.098000pt;}
.ws8{word-spacing:-7.082400pt;}
.ws76{word-spacing:-7.020000pt;}
.ws1f{word-spacing:-6.933333pt;}
.ws19{word-spacing:-5.893333pt;}
.ws21{word-spacing:-3.946667pt;}
.wsd8{word-spacing:-3.520000pt;}
.ws1d{word-spacing:-3.413333pt;}
.ws20{word-spacing:-3.200000pt;}
.ws1b{word-spacing:-2.912000pt;}
.ws44{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.ws1e{word-spacing:-2.133333pt;}
.ws8c{word-spacing:-1.776000pt;}
.ws5c{word-spacing:-1.680000pt;}
.ws24{word-spacing:-1.632000pt;}
.ws8f{word-spacing:-1.584000pt;}
.ws58{word-spacing:-1.536000pt;}
.ws9e{word-spacing:-1.488000pt;}
.ws39{word-spacing:-1.440000pt;}
.wscc{word-spacing:-1.400000pt;}
.ws42{word-spacing:-1.360000pt;}
.wscf{word-spacing:-1.320000pt;}
.ws5b{word-spacing:-1.296000pt;}
.wscd{word-spacing:-1.280000pt;}
.ws31{word-spacing:-1.248000pt;}
.ws92{word-spacing:-1.232000pt;}
.wsae{word-spacing:-1.200000pt;}
.ws91{word-spacing:-1.157333pt;}
.wsad{word-spacing:-1.152000pt;}
.ws1c{word-spacing:-1.120000pt;}
.ws28{word-spacing:-1.104000pt;}
.wsb3{word-spacing:-1.080000pt;}
.ws5f{word-spacing:-1.056000pt;}
.ws22{word-spacing:-1.008000pt;}
.ws2e{word-spacing:-0.960000pt;}
.wsb1{word-spacing:-0.920000pt;}
.ws67{word-spacing:-0.912000pt;}
.ws3e{word-spacing:-0.906667pt;}
.ws68{word-spacing:-0.864000pt;}
.ws93{word-spacing:-0.858667pt;}
.ws43{word-spacing:-0.816000pt;}
.ws2b{word-spacing:-0.768000pt;}
.wsaf{word-spacing:-0.746667pt;}
.ws59{word-spacing:-0.720000pt;}
.wsa3{word-spacing:-0.693333pt;}
.ws60{word-spacing:-0.672000pt;}
.wsab{word-spacing:-0.640000pt;}
.ws90{word-spacing:-0.634667pt;}
.wsa0{word-spacing:-0.624000pt;}
.ws69{word-spacing:-0.576000pt;}
.ws5e{word-spacing:-0.533333pt;}
.ws23{word-spacing:-0.528000pt;}
.wsb6{word-spacing:-0.520000pt;}
.ws2d{word-spacing:-0.480000pt;}
.ws3b{word-spacing:-0.453333pt;}
.wsb0{word-spacing:-0.440000pt;}
.ws32{word-spacing:-0.432000pt;}
.ws71{word-spacing:-0.426667pt;}
.wsbd{word-spacing:-0.400000pt;}
.ws38{word-spacing:-0.384000pt;}
.ws55{word-spacing:-0.373333pt;}
.wsb8{word-spacing:-0.360000pt;}
.ws29{word-spacing:-0.336000pt;}
.ws46{word-spacing:-0.320000pt;}
.ws27{word-spacing:-0.288000pt;}
.wsba{word-spacing:-0.280000pt;}
.ws54{word-spacing:-0.266667pt;}
.ws2c{word-spacing:-0.240000pt;}
.ws3d{word-spacing:-0.226667pt;}
.wsd3{word-spacing:-0.200000pt;}
.ws61{word-spacing:-0.192000pt;}
.ws40{word-spacing:-0.181333pt;}
.ws26{word-spacing:-0.144000pt;}
.wsd5{word-spacing:-0.120000pt;}
.ws5d{word-spacing:-0.106667pt;}
.ws72{word-spacing:-0.096000pt;}
.wsb5{word-spacing:-0.080000pt;}
.ws70{word-spacing:-0.053333pt;}
.ws5{word-spacing:-0.048000pt;}
.wscb{word-spacing:-0.040000pt;}
.ws1a{word-spacing:0.000000pt;}
.wsbc{word-spacing:0.040000pt;}
.ws56{word-spacing:0.048000pt;}
.wsa1{word-spacing:0.053333pt;}
.wsce{word-spacing:0.080000pt;}
.ws2a{word-spacing:0.096000pt;}
.wsd4{word-spacing:0.120000pt;}
.ws41{word-spacing:0.136000pt;}
.ws8b{word-spacing:0.144000pt;}
.ws73{word-spacing:0.192000pt;}
.wsd2{word-spacing:0.200000pt;}
.ws8d{word-spacing:0.240000pt;}
.ws3c{word-spacing:0.272000pt;}
.ws6f{word-spacing:0.288000pt;}
.wsb2{word-spacing:0.320000pt;}
.ws89{word-spacing:0.336000pt;}
.wsb4{word-spacing:0.360000pt;}
.ws33{word-spacing:0.384000pt;}
.ws57{word-spacing:0.432000pt;}
.wsb7{word-spacing:0.440000pt;}
.ws5a{word-spacing:0.480000pt;}
.wsbb{word-spacing:0.520000pt;}
.ws25{word-spacing:0.528000pt;}
.wsaa{word-spacing:0.533333pt;}
.wsb9{word-spacing:0.560000pt;}
.ws8e{word-spacing:0.576000pt;}
.ws8a{word-spacing:0.624000pt;}
.wsd7{word-spacing:0.672000pt;}
.ws3a{word-spacing:0.680000pt;}
.wsd0{word-spacing:0.760000pt;}
.ws36{word-spacing:0.768000pt;}
.ws9f{word-spacing:0.816000pt;}
.ws35{word-spacing:0.960000pt;}
.ws34{word-spacing:1.056000pt;}
.wsac{word-spacing:1.104000pt;}
.ws3f{word-spacing:1.314667pt;}
.ws2f{word-spacing:1.392000pt;}
.ws37{word-spacing:1.536000pt;}
.wsd1{word-spacing:1.680000pt;}
.ws30{word-spacing:2.064000pt;}
.wsd6{word-spacing:2.592000pt;}
.ws7f{word-spacing:24.419733pt;}
.ws80{word-spacing:43.855467pt;}
.ws81{word-spacing:48.499733pt;}
.ws88{word-spacing:83.738667pt;}
.ws84{word-spacing:103.264000pt;}
.ws82{word-spacing:112.224000pt;}
.ws86{word-spacing:112.597333pt;}
.ws85{word-spacing:116.778667pt;}
.ws83{word-spacing:134.698667pt;}
.ws87{word-spacing:141.008000pt;}
._1{margin-left:-16.986667pt;}
._d{margin-left:-10.800000pt;}
._1f{margin-left:-9.569067pt;}
._c{margin-left:-8.673600pt;}
._21{margin-left:-6.424533pt;}
._2{margin-left:-5.380267pt;}
._a{margin-left:-4.367467pt;}
._3{margin-left:-3.427733pt;}
._8{margin-left:-2.501867pt;}
._0{margin-left:-1.578667pt;}
._5{width:1.066667pt;}
._4{width:2.267733pt;}
._6{width:3.285333pt;}
._7{width:4.261867pt;}
._b{width:6.189867pt;}
._20{width:11.297600pt;}
._f{width:33.301333pt;}
._e{width:36.675733pt;}
._9{width:43.265600pt;}
._13{width:121.072000pt;}
._17{width:129.658667pt;}
._1a{width:142.800000pt;}
._16{width:157.061333pt;}
._1d{width:161.093333pt;}
._12{width:166.021333pt;}
._1b{width:174.981333pt;}
._1e{width:183.941333pt;}
._15{width:219.669333pt;}
._14{width:223.104000pt;}
._11{width:228.629333pt;}
._10{width:232.437333pt;}
._19{width:234.938667pt;}
._1c{width:237.216000pt;}
._18{width:241.024000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y31{bottom:60.718133pt;}
.y102{bottom:60.934667pt;}
.y148{bottom:63.073333pt;}
.y76{bottom:65.806933pt;}
.y48{bottom:67.138933pt;}
.yb5{bottom:67.601333pt;}
.y196{bottom:72.489600pt;}
.y64{bottom:72.512267pt;}
.y30{bottom:74.051467pt;}
.y101{bottom:74.268000pt;}
.y147{bottom:74.403333pt;}
.y75{bottom:79.138933pt;}
.y47{bottom:80.470933pt;}
.yb4{bottom:80.934667pt;}
.y146{bottom:85.733333pt;}
.y195{bottom:85.821600pt;}
.y63{bottom:85.844267pt;}
.y2f{bottom:87.384800pt;}
.y100{bottom:87.602667pt;}
.y74{bottom:92.470933pt;}
.y46{bottom:93.802933pt;}
.yb3{bottom:94.274667pt;}
.y145{bottom:97.063333pt;}
.y194{bottom:99.153600pt;}
.y62{bottom:99.176267pt;}
.y2e{bottom:100.718133pt;}
.yff{bottom:100.934667pt;}
.y73{bottom:105.802933pt;}
.yb2{bottom:107.606667pt;}
.y144{bottom:108.393333pt;}
.y193{bottom:112.485600pt;}
.y61{bottom:112.508267pt;}
.y2d{bottom:114.051467pt;}
.yfe{bottom:114.268000pt;}
.y143{bottom:119.723333pt;}
.yb1{bottom:120.938667pt;}
.y45{bottom:123.142933pt;}
.y192{bottom:125.817600pt;}
.y60{bottom:125.840267pt;}
.y2c{bottom:127.384800pt;}
.yfd{bottom:127.600000pt;}
.y142{bottom:131.053333pt;}
.yb0{bottom:134.270667pt;}
.y72{bottom:135.140267pt;}
.y44{bottom:136.474933pt;}
.y191{bottom:139.149600pt;}
.y5f{bottom:139.172267pt;}
.y2b{bottom:140.718133pt;}
.y141{bottom:142.383333pt;}
.yaf{bottom:147.602667pt;}
.y71{bottom:148.472267pt;}
.y43{bottom:149.806933pt;}
.y190{bottom:152.482933pt;}
.y5e{bottom:152.504267pt;}
.y140{bottom:153.713333pt;}
.yfc{bottom:154.377467pt;}
.y2a{bottom:157.899467pt;}
.yae{bottom:160.934667pt;}
.y70{bottom:161.804267pt;}
.y42{bottom:163.138933pt;}
.y13f{bottom:165.043333pt;}
.y5d{bottom:165.836267pt;}
.yfb{bottom:167.709467pt;}
.yad{bottom:174.269333pt;}
.y6f{bottom:175.138933pt;}
.y13e{bottom:176.373333pt;}
.y41{bottom:176.470933pt;}
.y18f{bottom:176.716267pt;}
.y5c{bottom:179.168267pt;}
.yfa{bottom:181.044133pt;}
.yac{bottom:187.601333pt;}
.y13d{bottom:187.703333pt;}
.y18e{bottom:188.046267pt;}
.y6e{bottom:188.470933pt;}
.y40{bottom:189.805600pt;}
.y5b{bottom:192.500267pt;}
.yf9{bottom:194.376133pt;}
.y13c{bottom:199.033333pt;}
.y18d{bottom:199.376267pt;}
.yab{bottom:200.934667pt;}
.y6d{bottom:201.805600pt;}
.y3f{bottom:203.137600pt;}
.y5a{bottom:205.832267pt;}
.yf8{bottom:207.712133pt;}
.y13b{bottom:210.363333pt;}
.y18c{bottom:210.706267pt;}
.yaa{bottom:214.268000pt;}
.y6c{bottom:215.137600pt;}
.y3e{bottom:216.470933pt;}
.y59{bottom:219.164267pt;}
.yf7{bottom:221.044133pt;}
.y13a{bottom:221.693333pt;}
.y29{bottom:221.942933pt;}
.y18b{bottom:222.036267pt;}
.ya9{bottom:227.602667pt;}
.y6b{bottom:228.474933pt;}
.y3d{bottom:229.804267pt;}
.y58{bottom:232.496267pt;}
.y139{bottom:233.023333pt;}
.y18a{bottom:233.366267pt;}
.yf6{bottom:234.376133pt;}
.y28{bottom:235.282933pt;}
.ya8{bottom:240.934667pt;}
.y6a{bottom:241.806933pt;}
.y3c{bottom:243.140267pt;}
.y138{bottom:244.353333pt;}
.y189{bottom:244.696267pt;}
.y57{bottom:245.828267pt;}
.yf5{bottom:247.709467pt;}
.y27{bottom:248.614933pt;}
.ya7{bottom:254.268000pt;}
.y69{bottom:255.138933pt;}
.y137{bottom:255.683333pt;}
.y188{bottom:256.026267pt;}
.y3b{bottom:256.472267pt;}
.y56{bottom:259.160267pt;}
.yf4{bottom:261.042800pt;}
.y26{bottom:261.946933pt;}
.y136{bottom:267.013333pt;}
.y187{bottom:267.356267pt;}
.ya6{bottom:267.609333pt;}
.y68{bottom:268.470933pt;}
.y3a{bottom:269.804267pt;}
.y55{bottom:272.492267pt;}
.yf3{bottom:274.374800pt;}
.y25{bottom:275.278933pt;}
.y135{bottom:278.343333pt;}
.y186{bottom:278.686267pt;}
.ya5{bottom:280.941333pt;}
.y67{bottom:281.802933pt;}
.y39{bottom:283.137600pt;}
.y54{bottom:285.824267pt;}
.yf2{bottom:287.708133pt;}
.y24{bottom:288.610933pt;}
.y134{bottom:289.673333pt;}
.y185{bottom:290.016267pt;}
.ya4{bottom:294.273333pt;}
.y38{bottom:296.469600pt;}
.y53{bottom:299.156267pt;}
.y133{bottom:301.003333pt;}
.y184{bottom:301.346267pt;}
.y23{bottom:301.942933pt;}
.ya3{bottom:307.605333pt;}
.y37{bottom:309.802933pt;}
.y132{bottom:312.333333pt;}
.y52{bottom:312.488267pt;}
.y183{bottom:312.676267pt;}
.yf1{bottom:314.489600pt;}
.y22{bottom:315.277600pt;}
.ya2{bottom:320.937333pt;}
.y131{bottom:323.663333pt;}
.y182{bottom:324.006267pt;}
.y51{bottom:325.820267pt;}
.yf0{bottom:327.821600pt;}
.y21{bottom:328.609600pt;}
.y81{bottom:332.124400pt;}
.ya1{bottom:334.269333pt;}
.y130{bottom:334.993333pt;}
.y181{bottom:335.336267pt;}
.y50{bottom:339.152267pt;}
.yef{bottom:341.153600pt;}
.y20{bottom:341.942933pt;}
.y80{bottom:345.456400pt;}
.y12f{bottom:346.323333pt;}
.y180{bottom:346.666267pt;}
.ya0{bottom:347.601333pt;}
.y4f{bottom:352.484267pt;}
.yee{bottom:354.485600pt;}
.y1f{bottom:355.277600pt;}
.y4d{bottom:357.508400pt;}
.y12e{bottom:357.653333pt;}
.y17f{bottom:357.996267pt;}
.y7f{bottom:358.788400pt;}
.y9f{bottom:360.934667pt;}
.y4e{bottom:365.816267pt;}
.yed{bottom:367.817600pt;}
.y1e{bottom:368.609600pt;}
.y12d{bottom:368.983333pt;}
.y17e{bottom:369.326267pt;}
.y4c{bottom:370.840400pt;}
.y7e{bottom:372.120400pt;}
.y9e{bottom:374.270667pt;}
.y12c{bottom:380.313333pt;}
.y17d{bottom:380.656267pt;}
.yec{bottom:381.156267pt;}
.y1d{bottom:381.945600pt;}
.y4b{bottom:384.172400pt;}
.y7d{bottom:385.452400pt;}
.y9d{bottom:387.602667pt;}
.y12b{bottom:391.643333pt;}
.y17c{bottom:391.986267pt;}
.yeb{bottom:394.488267pt;}
.y1c{bottom:395.277600pt;}
.y9c{bottom:400.934667pt;}
.y12a{bottom:402.973333pt;}
.y17b{bottom:403.316267pt;}
.yea{bottom:407.820267pt;}
.y1b{bottom:408.609600pt;}
.y66{bottom:409.333733pt;}
.y9b{bottom:414.266667pt;}
.y129{bottom:414.303333pt;}
.y17a{bottom:414.646267pt;}
.ye9{bottom:421.152267pt;}
.y1a{bottom:421.946933pt;}
.y65{bottom:422.665733pt;}
.y128{bottom:425.633333pt;}
.y179{bottom:425.976267pt;}
.y9a{bottom:427.600000pt;}
.ye8{bottom:434.484267pt;}
.y19{bottom:435.278933pt;}
.y127{bottom:436.963333pt;}
.y178{bottom:437.306267pt;}
.ye7{bottom:447.824267pt;}
.y126{bottom:448.293333pt;}
.y18{bottom:448.610933pt;}
.y177{bottom:448.636267pt;}
.y99{bottom:455.712133pt;}
.y125{bottom:459.623333pt;}
.y176{bottom:459.966267pt;}
.ye6{bottom:461.156267pt;}
.y17{bottom:461.942933pt;}
.y98{bottom:469.044133pt;}
.y124{bottom:470.953333pt;}
.y175{bottom:471.296267pt;}
.ye5{bottom:474.488267pt;}
.y16{bottom:475.278933pt;}
.y123{bottom:482.283333pt;}
.y97{bottom:482.376133pt;}
.y174{bottom:482.626267pt;}
.ye4{bottom:487.820267pt;}
.y15{bottom:488.610933pt;}
.y122{bottom:493.613333pt;}
.y173{bottom:493.956267pt;}
.y96{bottom:495.714800pt;}
.ye3{bottom:501.152267pt;}
.y14{bottom:501.942933pt;}
.y121{bottom:504.943333pt;}
.y172{bottom:505.286267pt;}
.y95{bottom:509.046800pt;}
.ye2{bottom:514.484267pt;}
.y13{bottom:515.300267pt;}
.y120{bottom:516.273333pt;}
.y171{bottom:516.616267pt;}
.y94{bottom:522.378800pt;}
.y11f{bottom:527.603333pt;}
.ye1{bottom:527.817600pt;}
.y170{bottom:527.946267pt;}
.y12{bottom:528.632267pt;}
.y93{bottom:535.710800pt;}
.y11e{bottom:538.933333pt;}
.y16f{bottom:539.276267pt;}
.ye0{bottom:541.150933pt;}
.y92{bottom:549.042800pt;}
.y11d{bottom:550.266667pt;}
.y16e{bottom:550.606267pt;}
.ydf{bottom:554.484267pt;}
.y16d{bottom:561.936267pt;}
.y91{bottom:562.384133pt;}
.yde{bottom:567.817600pt;}
.y11{bottom:570.632267pt;}
.y16c{bottom:573.266267pt;}
.y11c{bottom:574.655333pt;}
.y90{bottom:575.716133pt;}
.ydd{bottom:581.150933pt;}
.y16b{bottom:584.596267pt;}
.y10{bottom:585.296267pt;}
.y11b{bottom:587.990000pt;}
.y8f{bottom:589.048133pt;}
.ydc{bottom:594.484267pt;}
.y16a{bottom:595.926267pt;}
.yf{bottom:599.960267pt;}
.y11a{bottom:601.322000pt;}
.y8e{bottom:602.380133pt;}
.y169{bottom:607.256267pt;}
.ydb{bottom:607.817600pt;}
.ye{bottom:614.624267pt;}
.y119{bottom:614.655333pt;}
.y8d{bottom:615.712133pt;}
.y168{bottom:618.586267pt;}
.yda{bottom:621.150933pt;}
.y118{bottom:627.988667pt;}
.y8c{bottom:629.044133pt;}
.yd{bottom:629.288267pt;}
.y167{bottom:629.916267pt;}
.yd9{bottom:634.484267pt;}
.y166{bottom:641.246267pt;}
.y117{bottom:641.320667pt;}
.y8b{bottom:642.376133pt;}
.yc{bottom:643.952267pt;}
.yd8{bottom:647.821600pt;}
.y165{bottom:652.576267pt;}
.y8a{bottom:655.708133pt;}
.yb{bottom:658.616267pt;}
.yd7{bottom:661.153600pt;}
.y164{bottom:663.906267pt;}
.y116{bottom:665.709467pt;}
.y34{bottom:672.933333pt;}
.ya{bottom:673.280267pt;}
.yd6{bottom:674.485600pt;}
.y163{bottom:675.236267pt;}
.y115{bottom:679.048133pt;}
.y89{bottom:683.821600pt;}
.y162{bottom:686.566267pt;}
.yd5{bottom:687.817600pt;}
.y9{bottom:687.944267pt;}
.y33{bottom:691.600000pt;}
.y114{bottom:692.380133pt;}
.y88{bottom:697.153600pt;}
.y161{bottom:697.896267pt;}
.yd4{bottom:701.157600pt;}
.y8{bottom:702.608267pt;}
.y113{bottom:705.712133pt;}
.y1a5{bottom:706.490933pt;}
.y160{bottom:709.226267pt;}
.y32{bottom:710.266667pt;}
.y87{bottom:710.485600pt;}
.yd3{bottom:714.489600pt;}
.y112{bottom:719.044133pt;}
.y1a4{bottom:719.822933pt;}
.y15f{bottom:720.556267pt;}
.y4a{bottom:723.253733pt;}
.y86{bottom:723.817600pt;}
.yd2{bottom:727.821600pt;}
.y7{bottom:729.274933pt;}
.y15e{bottom:731.886267pt;}
.y111{bottom:732.376133pt;}
.y1a3{bottom:733.154933pt;}
.y49{bottom:736.585733pt;}
.y85{bottom:737.153600pt;}
.yd1{bottom:741.153600pt;}
.y15d{bottom:743.216267pt;}
.y6{bottom:745.274933pt;}
.y110{bottom:745.708133pt;}
.y1a2{bottom:746.486933pt;}
.y84{bottom:750.485600pt;}
.yd0{bottom:754.485600pt;}
.y15c{bottom:754.546267pt;}
.y1a1{bottom:759.818933pt;}
.y83{bottom:763.817600pt;}
.y15b{bottom:765.876267pt;}
.ycf{bottom:767.817600pt;}
.y10f{bottom:770.107600pt;}
.y1a0{bottom:773.150933pt;}
.y5{bottom:774.602933pt;}
.y82{bottom:777.149600pt;}
.y15a{bottom:777.206267pt;}
.yce{bottom:781.154933pt;}
.y10e{bottom:783.439600pt;}
.y19f{bottom:786.482933pt;}
.y159{bottom:788.536267pt;}
.ycd{bottom:794.486933pt;}
.y10d{bottom:796.771600pt;}
.y158{bottom:799.866267pt;}
.y19e{bottom:805.822933pt;}
.ycc{bottom:807.818933pt;}
.y10c{bottom:810.103600pt;}
.y157{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y19d{bottom:819.154933pt;}
.ybf{bottom:819.982933pt;}
.ycb{bottom:821.150933pt;}
.y156{bottom:822.526267pt;}
.y10b{bottom:823.435600pt;}
.y35{bottom:823.475200pt;}
.y7c{bottom:832.485733pt;}
.y155{bottom:833.856267pt;}
.yca{bottom:834.484267pt;}
.y10a{bottom:836.767600pt;}
.y19c{bottom:838.486933pt;}
.y154{bottom:845.186267pt;}
.y7b{bottom:845.817733pt;}
.ybe{bottom:846.822933pt;}
.yc9{bottom:847.818933pt;}
.y109{bottom:850.099600pt;}
.y19b{bottom:851.818933pt;}
.y153{bottom:856.516267pt;}
.y7a{bottom:859.149733pt;}
.yc8{bottom:861.150933pt;}
.ybd{bottom:862.325600pt;}
.y108{bottom:863.431600pt;}
.y152{bottom:867.846267pt;}
.y19a{bottom:871.150933pt;}
.y79{bottom:872.481733pt;}
.yc7{bottom:874.484267pt;}
.y107{bottom:876.763600pt;}
.ybc{bottom:877.828267pt;}
.y151{bottom:879.176267pt;}
.ybb{bottom:885.574933pt;}
.y78{bottom:885.813733pt;}
.yc6{bottom:887.817600pt;}
.y106{bottom:890.095600pt;}
.y199{bottom:890.482933pt;}
.y150{bottom:890.506267pt;}
.y77{bottom:899.145733pt;}
.yc5{bottom:901.150933pt;}
.y14f{bottom:901.836267pt;}
.y198{bottom:903.816267pt;}
.yba{bottom:908.824267pt;}
.y14e{bottom:913.166267pt;}
.yc4{bottom:914.486933pt;}
.y105{bottom:914.488267pt;}
.yb9{bottom:916.570933pt;}
.y14d{bottom:924.496267pt;}
.yc3{bottom:927.818933pt;}
.y104{bottom:927.820267pt;}
.y14c{bottom:935.826267pt;}
.yb8{bottom:939.820267pt;}
.yc2{bottom:941.150933pt;}
.y103{bottom:941.152267pt;}
.y14b{bottom:947.156267pt;}
.yb7{bottom:947.566933pt;}
.y197{bottom:954.482933pt;}
.yc1{bottom:954.484267pt;}
.y14a{bottom:958.486267pt;}
.yc0{bottom:967.816267pt;}
.y149{bottom:969.816267pt;}
.yb6{bottom:970.816267pt;}
.y36{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hf{height:21.193555pt;}
.h1d{height:26.432000pt;}
.h1f{height:26.730667pt;}
.h21{height:28.640000pt;}
.h3{height:30.687500pt;}
.h11{height:32.605469pt;}
.h14{height:33.984000pt;}
.h8{height:34.368000pt;}
.h7{height:34.523438pt;}
.h15{height:35.472000pt;}
.h10{height:36.585555pt;}
.h2{height:38.359375pt;}
.h9{height:38.557867pt;}
.h18{height:38.621333pt;}
.h16{height:38.621867pt;}
.h1c{height:38.626667pt;}
.he{height:38.627200pt;}
.h17{height:38.632533pt;}
.hb{height:38.637867pt;}
.ha{height:38.643200pt;}
.h1a{height:38.648000pt;}
.hc{height:38.648533pt;}
.h19{height:38.653333pt;}
.hd{height:38.653867pt;}
.h20{height:38.659200pt;}
.h4{height:39.318359pt;}
.h1b{height:39.370933pt;}
.h13{height:42.195312pt;}
.h6{height:43.067460pt;}
.h1e{height:57.717333pt;}
.h12{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x7{left:70.184133pt;}
.x6{left:75.069467pt;}
.x8{left:125.291333pt;}
.x4{left:207.516800pt;}
.xb{left:211.676667pt;}
.x5{left:223.516800pt;}
.xa{left:227.216667pt;}
.xc{left:239.200667pt;}
.xd{left:266.976533pt;}
.x3{left:519.632533pt;}
.x9{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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