
    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_0c75ef1f88899cdcf3252ea6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_d16afa40094bf4769dca6c9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_6fe8165df99c3e1e4a1a6439.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_a82184297a569de59619d558.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_de3c4bb1bbf4c951674f34b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8aa95f8a3c0413f3f61ba9b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_982d8a781a052c672725f68a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.991000;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_188d3d4d6815a276a8f70004.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_92fdf2c98db0fda0a36e80b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_702cf7bd0f314c9aa5fd4894.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891286;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_2486704e94df04b29d5af6c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740000;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_188d3d4d6815a276a8f70004.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923000;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_92fdf2c98db0fda0a36e80b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941000;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_c983f20ad3c20ca5a63a850c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.933000;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_d9818d09836f3612b2d20b8a.woff2')format("woff");}.fff{font-family:fff;line-height:0.700000;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;}
.m3{transform:matrix(0.229998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229998,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,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);}
.m5{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);}
.v6{vertical-align:-35.503800px;}
.v3{vertical-align:-31.252800px;}
.v8{vertical-align:-25.570200px;}
.v4{vertical-align:-3.918600px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:25.571400px;}
.v1{vertical-align:28.061400px;}
.v2{vertical-align:31.252800px;}
.v5{vertical-align:35.504400px;}
.ls83{letter-spacing:-4.158000px;}
.lsb7{letter-spacing:-2.820000px;}
.ls40{letter-spacing:-1.425000px;}
.ls2f{letter-spacing:-0.990000px;}
.ls27{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.660000px;}
.ls4e{letter-spacing:-0.600000px;}
.ls30{letter-spacing:-0.540000px;}
.ls3b{letter-spacing:-0.480000px;}
.ls26{letter-spacing:-0.420000px;}
.ls6d{letter-spacing:-0.360000px;}
.ls31{letter-spacing:-0.324000px;}
.ls82{letter-spacing:-0.270000px;}
.lsaa{letter-spacing:-0.240000px;}
.ls4d{letter-spacing:-0.180000px;}
.ls3c{letter-spacing:-0.120000px;}
.ls84{letter-spacing:-0.108000px;}
.ls41{letter-spacing:-0.060000px;}
.ls25{letter-spacing:0.000000px;}
.ls8d{letter-spacing:0.000228px;}
.ls7c{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.061200px;}
.ls53{letter-spacing:0.067200px;}
.lsb{letter-spacing:0.120000px;}
.lsb2{letter-spacing:0.139920px;}
.ls54{letter-spacing:0.160800px;}
.ls48{letter-spacing:0.180000px;}
.lsa2{letter-spacing:0.215400px;}
.ls44{letter-spacing:0.240000px;}
.ls85{letter-spacing:0.244860px;}
.ls8c{letter-spacing:0.278394px;}
.ls50{letter-spacing:0.279840px;}
.ls9{letter-spacing:0.284400px;}
.ls77{letter-spacing:0.285600px;}
.ls8{letter-spacing:0.300000px;}
.ls22{letter-spacing:0.324000px;}
.ls29{letter-spacing:0.360000px;}
.ls74{letter-spacing:0.384600px;}
.ls9a{letter-spacing:0.390228px;}
.ls1{letter-spacing:0.420000px;}
.ls18{letter-spacing:0.432000px;}
.ls98{letter-spacing:0.470394px;}
.ls2d{letter-spacing:0.480000px;}
.ls8b{letter-spacing:0.486000px;}
.ls51{letter-spacing:0.489720px;}
.ls69{letter-spacing:0.523200px;}
.ls68{letter-spacing:0.523800px;}
.ls28{letter-spacing:0.524700px;}
.ls3e{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.559680px;}
.ls1e{letter-spacing:0.594000px;}
.ls3d{letter-spacing:0.600000px;}
.ls59{letter-spacing:0.612000px;}
.ls5a{letter-spacing:0.612600px;}
.ls19{letter-spacing:0.624000px;}
.ls5c{letter-spacing:0.628740px;}
.lsb5{letter-spacing:0.647340px;}
.ls99{letter-spacing:0.648000px;}
.ls11{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.669000px;}
.ls45{letter-spacing:0.720000px;}
.ls73{letter-spacing:0.738600px;}
.ls1d{letter-spacing:0.756000px;}
.ls81{letter-spacing:0.769560px;}
.ls7{letter-spacing:0.780000px;}
.ls5b{letter-spacing:0.799200px;}
.ls2c{letter-spacing:0.804540px;}
.ls21{letter-spacing:0.810000px;}
.ls33{letter-spacing:0.824340px;}
.lsb6{letter-spacing:0.839520px;}
.ls0{letter-spacing:0.840000px;}
.ls52{letter-spacing:0.889800px;}
.ls1c{letter-spacing:0.891000px;}
.ls2{letter-spacing:0.900000px;}
.ls1f{letter-spacing:0.918000px;}
.lsd{letter-spacing:0.930000px;}
.ls75{letter-spacing:0.931800px;}
.lsb3{letter-spacing:0.944460px;}
.ls5e{letter-spacing:0.946800px;}
.ls2b{letter-spacing:0.960000px;}
.ls64{letter-spacing:0.998400px;}
.ls9c{letter-spacing:1.014420px;}
.ls15{letter-spacing:1.020000px;}
.ls4f{letter-spacing:1.049400px;}
.lsa1{letter-spacing:1.063800px;}
.ls5d{letter-spacing:1.078200px;}
.ls24{letter-spacing:1.080000px;}
.ls32{letter-spacing:1.084380px;}
.ls76{letter-spacing:1.110000px;}
.ls5f{letter-spacing:1.125000px;}
.ls57{letter-spacing:1.131600px;}
.ls58{letter-spacing:1.132200px;}
.ls10{letter-spacing:1.140000px;}
.ls80{letter-spacing:1.154340px;}
.ls56{letter-spacing:1.170000px;}
.ls55{letter-spacing:1.171800px;}
.ls62{letter-spacing:1.189200px;}
.ls42{letter-spacing:1.200000px;}
.ls14{letter-spacing:1.260000px;}
.ls1a{letter-spacing:1.320000px;}
.ls3{letter-spacing:1.350000px;}
.ls5{letter-spacing:1.380000px;}
.ls34{letter-spacing:1.415400px;}
.ls61{letter-spacing:1.430400px;}
.lsc{letter-spacing:1.440000px;}
.ls60{letter-spacing:1.474200px;}
.lsa{letter-spacing:1.500000px;}
.ls67{letter-spacing:1.509000px;}
.ls66{letter-spacing:1.509600px;}
.lse{letter-spacing:1.560000px;}
.lsf{letter-spacing:1.573200px;}
.ls9f{letter-spacing:1.609200px;}
.ls65{letter-spacing:1.620000px;}
.ls9d{letter-spacing:1.659000px;}
.lsb4{letter-spacing:1.679040px;}
.ls6a{letter-spacing:1.680000px;}
.lsab{letter-spacing:1.740000px;}
.ls4{letter-spacing:1.800000px;}
.lsa0{letter-spacing:1.853940px;}
.ls39{letter-spacing:1.860000px;}
.ls72{letter-spacing:1.872000px;}
.ls23{letter-spacing:1.890000px;}
.lsa3{letter-spacing:1.902000px;}
.ls6e{letter-spacing:1.920000px;}
.ls16{letter-spacing:1.980000px;}
.ls49{letter-spacing:2.040000px;}
.ls4b{letter-spacing:2.098800px;}
.ls4a{letter-spacing:2.100000px;}
.ls17{letter-spacing:2.160000px;}
.lsbe{letter-spacing:2.220000px;}
.ls3a{letter-spacing:2.280000px;}
.ls9e{letter-spacing:2.298000px;}
.lsb1{letter-spacing:2.340000px;}
.lsb0{letter-spacing:2.400000px;}
.ls6f{letter-spacing:2.520000px;}
.ls35{letter-spacing:2.640000px;}
.ls43{letter-spacing:2.700000px;}
.ls70{letter-spacing:2.760000px;}
.ls3f{letter-spacing:2.820000px;}
.ls7e{letter-spacing:2.880000px;}
.ls47{letter-spacing:2.940000px;}
.ls71{letter-spacing:3.000000px;}
.ls63{letter-spacing:3.006600px;}
.lsb8{letter-spacing:3.060000px;}
.lsae{letter-spacing:3.120000px;}
.lsad{letter-spacing:3.180000px;}
.lsac{letter-spacing:3.240000px;}
.lsbf{letter-spacing:3.300000px;}
.ls20{letter-spacing:3.348000px;}
.lsbd{letter-spacing:3.360000px;}
.lsbb{letter-spacing:3.420000px;}
.ls36{letter-spacing:3.480000px;}
.ls37{letter-spacing:3.540000px;}
.ls4c{letter-spacing:3.600000px;}
.ls1b{letter-spacing:3.630000px;}
.ls38{letter-spacing:3.720000px;}
.lsb9{letter-spacing:3.780000px;}
.ls9b{letter-spacing:3.892800px;}
.lsaf{letter-spacing:3.900000px;}
.ls6b{letter-spacing:4.140000px;}
.ls7d{letter-spacing:4.200000px;}
.lsbc{letter-spacing:4.260000px;}
.ls7f{letter-spacing:4.380000px;}
.ls6c{letter-spacing:4.500000px;}
.ls46{letter-spacing:4.620000px;}
.lsba{letter-spacing:6.000000px;}
.ls91{letter-spacing:59.003028px;}
.ls79{letter-spacing:70.456794px;}
.ls92{letter-spacing:71.748828px;}
.ls95{letter-spacing:83.871228px;}
.ls97{letter-spacing:92.157828px;}
.ls78{letter-spacing:92.779194px;}
.ls94{letter-spacing:95.994228px;}
.ls90{letter-spacing:96.737628px;}
.ls96{letter-spacing:116.403228px;}
.ls93{letter-spacing:133.196628px;}
.ls8f{letter-spacing:137.556228px;}
.ls8e{letter-spacing:148.752594px;}
.ls87{letter-spacing:152.378028px;}
.ls88{letter-spacing:169.440828px;}
.ls89{letter-spacing:185.532828px;}
.lsa5{letter-spacing:244.736994px;}
.ls86{letter-spacing:265.378194px;}
.ls7b{letter-spacing:338.338428px;}
.lsa7{letter-spacing:345.823194px;}
.lsa6{letter-spacing:367.045194px;}
.lsa9{letter-spacing:367.923828px;}
.lsa8{letter-spacing:419.371794px;}
.lsa4{letter-spacing:500.368794px;}
.ls8a{letter-spacing:965.305428px;}
.ls7a{letter-spacing:1095.262794px;}
.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;}
}
.ws1{word-spacing:-14.700000px;}
.ws2{word-spacing:-14.184000px;}
.wsc{word-spacing:-13.176000px;}
.ws9{word-spacing:-13.002000px;}
.wsd{word-spacing:-12.906000px;}
.ws21{word-spacing:-12.120000px;}
.ws7d{word-spacing:-12.000000px;}
.wsa{word-spacing:-11.826000px;}
.ws7f{word-spacing:-11.460000px;}
.wsb{word-spacing:-11.286000px;}
.ws7e{word-spacing:-11.280000px;}
.ws4{word-spacing:-11.160000px;}
.ws23{word-spacing:-10.800000px;}
.ws36{word-spacing:-10.740000px;}
.ws62{word-spacing:-10.692000px;}
.ws38{word-spacing:-10.620000px;}
.ws5e{word-spacing:-10.530000px;}
.wse{word-spacing:-10.512000px;}
.ws7b{word-spacing:-10.320000px;}
.ws24{word-spacing:-8.395200px;}
.ws8{word-spacing:-8.157336px;}
.ws73{word-spacing:-8.150340px;}
.ws7a{word-spacing:-7.975440px;}
.ws56{word-spacing:-7.450740px;}
.ws22{word-spacing:-7.380780px;}
.ws34{word-spacing:-7.345800px;}
.ws72{word-spacing:-7.310820px;}
.ws79{word-spacing:-7.240860px;}
.ws7c{word-spacing:-7.135920px;}
.ws6{word-spacing:-7.100940px;}
.ws57{word-spacing:-7.065960px;}
.ws63{word-spacing:-6.894558px;}
.ws5{word-spacing:-6.856080px;}
.ws3{word-spacing:-6.821100px;}
.ws37{word-spacing:-6.786120px;}
.ws35{word-spacing:-6.576240px;}
.ws67{word-spacing:-6.541260px;}
.ws78{word-spacing:-6.436320px;}
.ws7{word-spacing:-6.296400px;}
.ws1b{word-spacing:-2.376000px;}
.ws49{word-spacing:-2.160000px;}
.ws20{word-spacing:-1.890000px;}
.ws53{word-spacing:-1.500000px;}
.ws4e{word-spacing:-1.440000px;}
.ws40{word-spacing:-1.200000px;}
.ws41{word-spacing:-1.140000px;}
.ws46{word-spacing:-1.080000px;}
.ws50{word-spacing:-1.020000px;}
.ws10{word-spacing:-0.840000px;}
.ws12{word-spacing:-0.780000px;}
.ws43{word-spacing:-0.600000px;}
.ws55{word-spacing:-0.540000px;}
.ws3f{word-spacing:-0.180000px;}
.ws0{word-spacing:-0.060000px;}
.ws58{word-spacing:-0.054000px;}
.ws39{word-spacing:-0.034980px;}
.wsf{word-spacing:0.000000px;}
.ws45{word-spacing:0.060000px;}
.ws76{word-spacing:0.120000px;}
.ws3e{word-spacing:0.180000px;}
.ws54{word-spacing:0.240000px;}
.ws87{word-spacing:0.300000px;}
.ws8c{word-spacing:0.420000px;}
.ws27{word-spacing:0.480000px;}
.ws4a{word-spacing:0.540000px;}
.ws32{word-spacing:0.600000px;}
.ws1c{word-spacing:0.660000px;}
.ws4c{word-spacing:0.720000px;}
.ws3b{word-spacing:0.780000px;}
.ws8a{word-spacing:0.840000px;}
.ws44{word-spacing:0.900000px;}
.ws48{word-spacing:0.960000px;}
.ws2e{word-spacing:1.020000px;}
.ws30{word-spacing:1.080000px;}
.ws88{word-spacing:1.140000px;}
.ws13{word-spacing:1.200000px;}
.ws4b{word-spacing:1.260000px;}
.ws52{word-spacing:1.380000px;}
.ws2a{word-spacing:1.425000px;}
.ws3c{word-spacing:1.440000px;}
.ws77{word-spacing:1.674000px;}
.ws28{word-spacing:1.680000px;}
.ws19{word-spacing:1.800000px;}
.ws51{word-spacing:1.860000px;}
.ws89{word-spacing:1.920000px;}
.ws4d{word-spacing:1.980000px;}
.ws84{word-spacing:2.040000px;}
.ws80{word-spacing:2.100000px;}
.ws47{word-spacing:2.280000px;}
.ws66{word-spacing:2.376000px;}
.ws70{word-spacing:2.400000px;}
.ws86{word-spacing:2.460000px;}
.ws8b{word-spacing:2.580000px;}
.ws75{word-spacing:2.700000px;}
.ws25{word-spacing:2.760000px;}
.ws2b{word-spacing:2.820000px;}
.ws29{word-spacing:2.940000px;}
.ws3a{word-spacing:3.000000px;}
.ws64{word-spacing:3.120000px;}
.ws15{word-spacing:3.168000px;}
.ws26{word-spacing:3.180000px;}
.ws4f{word-spacing:3.300000px;}
.ws65{word-spacing:3.480000px;}
.ws16{word-spacing:3.540000px;}
.ws71{word-spacing:3.564000px;}
.ws17{word-spacing:3.600000px;}
.ws2f{word-spacing:3.660000px;}
.ws2c{word-spacing:3.720000px;}
.ws31{word-spacing:3.780000px;}
.ws1e{word-spacing:3.888000px;}
.ws1f{word-spacing:3.942000px;}
.ws85{word-spacing:3.960000px;}
.ws18{word-spacing:4.020000px;}
.ws2d{word-spacing:4.080000px;}
.ws14{word-spacing:4.140000px;}
.ws11{word-spacing:4.200000px;}
.ws3d{word-spacing:4.500000px;}
.ws42{word-spacing:4.560000px;}
.ws1d{word-spacing:4.620000px;}
.ws81{word-spacing:5.220000px;}
.ws83{word-spacing:5.340000px;}
.ws82{word-spacing:6.480000px;}
.ws1a{word-spacing:8.976000px;}
.ws68{word-spacing:41.649000px;}
.ws6e{word-spacing:88.707600px;}
.ws5f{word-spacing:97.429200px;}
.ws60{word-spacing:112.824600px;}
.ws33{word-spacing:125.964000px;}
.ws5a{word-spacing:142.090200px;}
.ws74{word-spacing:144.597000px;}
.ws6b{word-spacing:152.210400px;}
.ws59{word-spacing:164.412600px;}
.ws6a{word-spacing:191.377200px;}
.ws6d{word-spacing:229.126200px;}
.ws6c{word-spacing:229.126800px;}
.ws5d{word-spacing:229.998000px;}
.ws5b{word-spacing:269.683200px;}
.ws6f{word-spacing:310.439400px;}
.ws61{word-spacing:385.291800px;}
.ws69{word-spacing:492.686400px;}
.ws5c{word-spacing:835.736400px;}
._af{margin-left:-9.574200px;}
._9a{margin-left:-8.269800px;}
._7{margin-left:-7.022400px;}
._8{margin-left:-5.706000px;}
._6{margin-left:-4.248000px;}
._5{margin-left:-3.135600px;}
._2{margin-left:-1.794000px;}
._3{width:1.104000px;}
._0{width:2.143680px;}
._ac{width:3.162240px;}
._1{width:4.272000px;}
._4{width:5.460600px;}
._b0{width:20.557200px;}
._84{width:22.444800px;}
._b1{width:23.460000px;}
._b2{width:27.354000px;}
._8f{width:33.775800px;}
._4d{width:36.295800px;}
._97{width:46.132200px;}
._55{width:47.662200px;}
._ae{width:49.041600px;}
._ad{width:50.289600px;}
._58{width:53.500782px;}
._ab{width:55.516320px;}
._4b{width:60.607800px;}
._99{width:62.764800px;}
._85{width:65.756400px;}
._53{width:68.550600px;}
._91{width:70.377600px;}
._50{width:71.552400px;}
._4e{width:72.699000px;}
._4f{width:74.830200px;}
._82{width:77.106600px;}
._89{width:78.853200px;}
._41{width:81.393600px;}
._42{width:82.983000px;}
._e{width:84.248400px;}
._3d{width:85.933800px;}
._10{width:87.940200px;}
._95{width:89.521200px;}
._f{width:90.646200px;}
._11{width:93.054600px;}
._2b{width:95.323200px;}
._86{width:96.402600px;}
._12{width:97.885200px;}
._83{width:99.339000px;}
._2c{width:104.346000px;}
._35{width:107.620800px;}
._34{width:108.923400px;}
._31{width:112.195200px;}
._28{width:113.396400px;}
._3f{width:115.697400px;}
._92{width:117.974400px;}
._93{width:119.224800px;}
._26{width:120.438000px;}
._25{width:123.250800px;}
._51{width:124.476600px;}
._29{width:126.668400px;}
._2f{width:128.509200px;}
._30{width:130.638000px;}
._1a{width:132.560400px;}
._8c{width:134.557200px;}
._19{width:135.747600px;}
._60{width:138.511200px;}
._24{width:140.632200px;}
._21{width:141.901800px;}
._4a{width:143.482800px;}
._20{width:144.640800px;}
._2e{width:147.913800px;}
._6c{width:150.168600px;}
._2a{width:151.608600px;}
._15{width:152.755800px;}
._16{width:154.882800px;}
._18{width:156.721200px;}
._9e{width:157.986000px;}
._d{width:159.058200px;}
._3c{width:160.226400px;}
._1d{width:162.098400px;}
._1e{width:164.224800px;}
._88{width:165.607800px;}
._c{width:167.165400px;}
._48{width:169.336800px;}
._23{width:172.159800px;}
._45{width:174.221400px;}
._17{width:175.854600px;}
._8e{width:178.281600px;}
._a2{width:179.390400px;}
._37{width:180.692400px;}
._a{width:183.065400px;}
._49{width:184.707600px;}
._46{width:186.054600px;}
._66{width:187.553400px;}
._7a{width:189.902400px;}
._8b{width:191.254800px;}
._6f{width:192.338400px;}
._59{width:193.489800px;}
._1f{width:194.538600px;}
._14{width:196.406400px;}
._aa{width:197.951400px;}
._69{width:200.568600px;}
._6a{width:202.593000px;}
._54{width:208.063800px;}
._47{width:211.773600px;}
._a1{width:213.534000px;}
._1c{width:215.089800px;}
._a5{width:216.133800px;}
._94{width:217.420800px;}
._4c{width:224.734800px;}
._64{width:229.069200px;}
._96{width:230.155800px;}
._a4{width:232.554600px;}
._52{width:233.941800px;}
._a0{width:237.272400px;}
._6e{width:238.546800px;}
._44{width:239.658600px;}
._9d{width:241.060800px;}
._56{width:243.419400px;}
._57{width:244.987800px;}
._79{width:246.418800px;}
._5b{width:248.176800px;}
._5c{width:250.387800px;}
._65{width:252.495600px;}
._b{width:265.270200px;}
._2d{width:267.907182px;}
._68{width:269.353200px;}
._90{width:274.330800px;}
._62{width:278.425200px;}
._27{width:279.585600px;}
._80{width:281.476800px;}
._61{width:282.657000px;}
._22{width:285.105600px;}
._32{width:288.549600px;}
._98{width:292.207800px;}
._9{width:293.416800px;}
._5a{width:302.034600px;}
._3e{width:303.130200px;}
._40{width:306.262200px;}
._7e{width:313.671000px;}
._3a{width:315.437400px;}
._38{width:326.926200px;}
._33{width:331.722600px;}
._43{width:347.976000px;}
._1b{width:350.675400px;}
._13{width:371.088000px;}
._a9{width:373.431000px;}
._3b{width:376.900200px;}
._39{width:378.249000px;}
._7d{width:407.327418px;}
._77{width:434.616000px;}
._a6{width:439.557000px;}
._a3{width:440.851200px;}
._73{width:446.803800px;}
._8a{width:451.749000px;}
._87{width:470.787000px;}
._5e{width:477.913800px;}
._9f{width:482.453400px;}
._7c{width:486.808782px;}
._a8{width:501.946200px;}
._8d{width:517.458600px;}
._5f{width:538.394400px;}
._7f{width:569.334000px;}
._a7{width:659.535720px;}
._6d{width:680.008200px;}
._78{width:685.598400px;}
._9c{width:713.469600px;}
._70{width:723.181200px;}
._63{width:725.152200px;}
._7b{width:727.312200px;}
._67{width:730.011600px;}
._81{width:737.859000px;}
._75{width:797.459400px;}
._74{width:801.833400px;}
._6b{width:806.098800px;}
._76{width:810.327720px;}
._5d{width:814.187400px;}
._72{width:817.925400px;}
._9b{width:847.048800px;}
._36{width:905.813400px;}
._71{width:1434.814800px;}
.fc1{color:rgb(243,103,23);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs9{font-size:38.478000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:97.440000px;}
.fs7{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:50.090850px;}
.y1f{bottom:54.090600px;}
.y22{bottom:87.082350px;}
.y24{bottom:95.008050px;}
.y1ac{bottom:96.307050px;}
.y21{bottom:99.082350px;}
.yd9{bottom:99.456900px;}
.y18c{bottom:99.907050px;}
.y137{bottom:101.230500px;}
.ya8{bottom:102.907050px;}
.y177{bottom:104.711700px;}
.y10b{bottom:106.313250px;}
.y86{bottom:106.806900px;}
.y23{bottom:110.308050px;}
.y20{bottom:111.082350px;}
.yed{bottom:114.157050px;}
.y1ab{bottom:114.307050px;}
.yd8{bottom:117.456900px;}
.ya7{bottom:117.907050px;}
.y136{bottom:119.230500px;}
.y176{bottom:122.711700px;}
.y10a{bottom:124.313250px;}
.y85{bottom:124.806900px;}
.yec{bottom:132.157050px;}
.y1aa{bottom:132.307050px;}
.yd7{bottom:135.456900px;}
.y18b{bottom:135.907050px;}
.y135{bottom:137.230500px;}
.y175{bottom:140.711700px;}
.y109{bottom:142.313250px;}
.y84{bottom:142.806900px;}
.y51{bottom:144.688650px;}
.y2e{bottom:145.192950px;}
.yfc{bottom:149.513250px;}
.yeb{bottom:150.157050px;}
.y1a9{bottom:150.307050px;}
.yd6{bottom:153.456900px;}
.ya6{bottom:153.907050px;}
.y134{bottom:155.230500px;}
.y174{bottom:158.711700px;}
.y108{bottom:160.313250px;}
.y50{bottom:160.888650px;}
.y2d{bottom:163.192800px;}
.yfb{bottom:167.513250px;}
.yea{bottom:168.157050px;}
.y1a8{bottom:168.307050px;}
.yd5{bottom:171.456900px;}
.ya5{bottom:171.907050px;}
.y133{bottom:173.230500px;}
.y173{bottom:176.711700px;}
.y4f{bottom:177.088650px;}
.y107{bottom:178.313250px;}
.y2c{bottom:181.192800px;}
.y83{bottom:183.501750px;}
.yfa{bottom:185.513250px;}
.ye9{bottom:186.157050px;}
.y1a7{bottom:186.307050px;}
.yd4{bottom:189.456900px;}
.ya4{bottom:189.907050px;}
.y132{bottom:191.230500px;}
.y4e{bottom:193.288650px;}
.y172{bottom:194.711700px;}
.y106{bottom:196.313250px;}
.y2b{bottom:199.192950px;}
.yf9{bottom:203.513250px;}
.ye8{bottom:204.157050px;}
.y1a6{bottom:204.307050px;}
.yd3{bottom:207.456900px;}
.ya3{bottom:207.907050px;}
.y4d{bottom:209.038650px;}
.y131{bottom:209.230500px;}
.y171{bottom:212.711700px;}
.y105{bottom:214.313250px;}
.y2a{bottom:217.192950px;}
.y82{bottom:218.556900px;}
.yf8{bottom:221.513250px;}
.ye7{bottom:222.157050px;}
.y1a5{bottom:222.307050px;}
.y4c{bottom:224.788650px;}
.yd2{bottom:225.456900px;}
.ya2{bottom:225.907050px;}
.y170{bottom:230.711700px;}
.y104{bottom:232.313250px;}
.y29{bottom:235.192950px;}
.y81{bottom:236.556900px;}
.yf7{bottom:239.513250px;}
.ye6{bottom:240.157050px;}
.y1a4{bottom:240.307050px;}
.y4b{bottom:240.538650px;}
.yd1{bottom:243.456900px;}
.ya1{bottom:243.907050px;}
.y155{bottom:247.161600px;}
.y16f{bottom:248.711700px;}
.y103{bottom:250.313250px;}
.y28{bottom:253.192950px;}
.y80{bottom:254.556900px;}
.y4a{bottom:256.288650px;}
.yf6{bottom:257.513250px;}
.ye5{bottom:258.157050px;}
.y1a3{bottom:258.307050px;}
.yd0{bottom:261.456900px;}
.ya0{bottom:261.907050px;}
.y154{bottom:262.161600px;}
.y16e{bottom:266.711700px;}
.y102{bottom:268.313250px;}
.y27{bottom:271.192950px;}
.y49{bottom:272.038650px;}
.y7f{bottom:272.556900px;}
.yf5{bottom:275.513250px;}
.ye4{bottom:276.157050px;}
.y1a2{bottom:276.307050px;}
.ycf{bottom:279.456900px;}
.y9f{bottom:279.907050px;}
.y153{bottom:283.554300px;}
.y16d{bottom:284.711700px;}
.y101{bottom:286.313250px;}
.y48{bottom:287.788650px;}
.y26{bottom:289.192950px;}
.y7e{bottom:290.556900px;}
.y152{bottom:292.161600px;}
.yf4{bottom:293.513250px;}
.ye3{bottom:294.157050px;}
.y1a1{bottom:294.307050px;}
.yce{bottom:297.456900px;}
.y9e{bottom:297.907050px;}
.y16c{bottom:302.711700px;}
.y47{bottom:303.988650px;}
.y100{bottom:304.313250px;}
.y151{bottom:307.161600px;}
.y7d{bottom:308.556900px;}
.yf3{bottom:311.513250px;}
.ye2{bottom:312.157050px;}
.y1a0{bottom:312.307050px;}
.ycd{bottom:315.456900px;}
.y9d{bottom:315.907050px;}
.y16b{bottom:320.711700px;}
.y150{bottom:322.161600px;}
.yff{bottom:322.313250px;}
.y25{bottom:326.071800px;}
.y7c{bottom:326.556900px;}
.yf2{bottom:329.513250px;}
.ye1{bottom:330.157050px;}
.y19f{bottom:330.307050px;}
.y18a{bottom:333.907050px;}
.y46{bottom:335.938650px;}
.y16a{bottom:338.711700px;}
.y14f{bottom:339.913650px;}
.yfe{bottom:340.313250px;}
.y7b{bottom:344.556900px;}
.yf1{bottom:347.513250px;}
.ye0{bottom:348.157050px;}
.y19e{bottom:348.307050px;}
.y45{bottom:351.688650px;}
.y9c{bottom:351.907050px;}
.y14e{bottom:354.913650px;}
.ycc{bottom:356.151900px;}
.y169{bottom:356.711700px;}
.y7a{bottom:362.556900px;}
.yf0{bottom:365.513250px;}
.ydf{bottom:366.157050px;}
.y19d{bottom:366.307050px;}
.y44{bottom:367.438650px;}
.y9b{bottom:369.907050px;}
.y14d{bottom:369.913650px;}
.y168{bottom:374.711700px;}
.yfd{bottom:377.192250px;}
.y79{bottom:380.556900px;}
.yef{bottom:383.513250px;}
.yde{bottom:384.157050px;}
.y19c{bottom:384.307050px;}
.y14c{bottom:387.665700px;}
.y9a{bottom:387.907050px;}
.y1e{bottom:388.198950px;}
.y167{bottom:392.711700px;}
.ycb{bottom:395.685750px;}
.y78{bottom:398.556900px;}
.yee{bottom:401.513250px;}
.ydd{bottom:402.157050px;}
.y14b{bottom:405.417600px;}
.y99{bottom:405.907050px;}
.y1d{bottom:406.198950px;}
.y166{bottom:410.711700px;}
.ydc{bottom:420.157050px;}
.y14a{bottom:423.169500px;}
.y98{bottom:423.907050px;}
.y19b{bottom:424.785900px;}
.y165{bottom:428.711700px;}
.yca{bottom:434.406900px;}
.y77{bottom:439.251900px;}
.y149{bottom:440.921550px;}
.y97{bottom:441.907050px;}
.y1c{bottom:442.198950px;}
.y130{bottom:445.909350px;}
.y164{bottom:446.711700px;}
.yc9{bottom:452.406900px;}
.y12f{bottom:455.716800px;}
.y148{bottom:458.673450px;}
.y96{bottom:459.907050px;}
.y1b{bottom:460.198950px;}
.ydb{bottom:460.851900px;}
.y163{bottom:464.711700px;}
.y19a{bottom:467.107050px;}
.yc8{bottom:470.406900px;}
.y12e{bottom:471.916800px;}
.y76{bottom:475.185750px;}
.y147{bottom:476.425500px;}
.y95{bottom:477.907050px;}
.y1a{bottom:478.198950px;}
.y162{bottom:482.711700px;}
.y199{bottom:485.107050px;}
.y12d{bottom:488.116800px;}
.yc7{bottom:488.406900px;}
.y146{bottom:494.177400px;}
.y94{bottom:495.907050px;}
.y19{bottom:496.198950px;}
.y161{bottom:500.711700px;}
.y12c{bottom:504.316800px;}
.yc6{bottom:506.406900px;}
.y145{bottom:511.929450px;}
.y75{bottom:513.906900px;}
.y93{bottom:513.907050px;}
.y18{bottom:514.198950px;}
.y160{bottom:518.711700px;}
.y12b{bottom:520.516800px;}
.yc5{bottom:524.406900px;}
.y198{bottom:525.586050px;}
.y144{bottom:529.681350px;}
.y74{bottom:531.906900px;}
.y92{bottom:531.907050px;}
.y17{bottom:532.198950px;}
.y15f{bottom:536.711700px;}
.y12a{bottom:538.268700px;}
.yc4{bottom:542.406900px;}
.y143{bottom:547.433250px;}
.y73{bottom:549.906900px;}
.y91{bottom:549.907050px;}
.y16{bottom:550.198950px;}
.y15e{bottom:554.711700px;}
.y129{bottom:556.020750px;}
.yc3{bottom:560.406900px;}
.y142{bottom:562.433250px;}
.y72{bottom:567.906900px;}
.y90{bottom:567.907050px;}
.y15{bottom:568.198950px;}
.y15d{bottom:572.711700px;}
.y128{bottom:573.772650px;}
.yc2{bottom:578.406900px;}
.y141{bottom:580.185300px;}
.y71{bottom:585.906900px;}
.y8f{bottom:585.907050px;}
.y14{bottom:586.198950px;}
.y140{bottom:589.061250px;}
.y13e{bottom:590.437200px;}
.y15c{bottom:590.711700px;}
.y127{bottom:591.524700px;}
.yc1{bottom:596.406900px;}
.y70{bottom:603.906900px;}
.y8e{bottom:603.907050px;}
.y13{bottom:604.198950px;}
.y13d{bottom:605.437200px;}
.y15b{bottom:608.711700px;}
.y126{bottom:609.276600px;}
.yc0{bottom:614.406900px;}
.y13f{bottom:615.689250px;}
.y6f{bottom:621.906900px;}
.y8d{bottom:621.907050px;}
.y12{bottom:622.198950px;}
.y15a{bottom:626.711700px;}
.y125{bottom:627.028500px;}
.ybf{bottom:632.406900px;}
.y13c{bottom:633.441150px;}
.y43{bottom:637.854450px;}
.y6e{bottom:639.906900px;}
.y8c{bottom:639.907050px;}
.y11{bottom:640.198950px;}
.y159{bottom:644.711700px;}
.y124{bottom:644.780550px;}
.ybe{bottom:650.406900px;}
.y42{bottom:654.054450px;}
.y6d{bottom:657.906900px;}
.y8b{bottom:657.907050px;}
.y10{bottom:658.198950px;}
.y123{bottom:662.532600px;}
.y158{bottom:662.711700px;}
.ybd{bottom:668.406900px;}
.y41{bottom:670.254450px;}
.y13b{bottom:673.540350px;}
.y6c{bottom:675.906900px;}
.y8a{bottom:675.907050px;}
.yf{bottom:676.198950px;}
.y122{bottom:680.284500px;}
.y157{bottom:680.711700px;}
.ybc{bottom:686.406900px;}
.y40{bottom:686.454450px;}
.y6b{bottom:693.906900px;}
.y89{bottom:693.907050px;}
.ye{bottom:694.198950px;}
.y13a{bottom:694.933050px;}
.y121{bottom:698.036400px;}
.y156{bottom:698.711700px;}
.y3f{bottom:702.654300px;}
.y139{bottom:703.540350px;}
.ybb{bottom:704.406900px;}
.y6a{bottom:711.906900px;}
.y88{bottom:711.907050px;}
.yd{bottom:712.198950px;}
.y120{bottom:715.788450px;}
.y138{bottom:718.540350px;}
.y3e{bottom:718.854450px;}
.yba{bottom:722.406900px;}
.y3d{bottom:725.247000px;}
.y69{bottom:729.906900px;}
.y87{bottom:729.907050px;}
.yc{bottom:730.198950px;}
.y11f{bottom:733.540350px;}
.y3c{bottom:735.054450px;}
.yb9{bottom:740.406900px;}
.y189{bottom:743.036700px;}
.y68{bottom:747.906900px;}
.yda{bottom:747.907050px;}
.yb{bottom:748.198950px;}
.y197{bottom:748.785900px;}
.y3b{bottom:751.254450px;}
.y11e{bottom:751.292400px;}
.y188{bottom:752.844150px;}
.yb8{bottom:758.406900px;}
.y67{bottom:765.907050px;}
.ya{bottom:766.198950px;}
.y3a{bottom:767.454300px;}
.y187{bottom:769.044000px;}
.y11d{bottom:769.044300px;}
.y39{bottom:773.847000px;}
.yb7{bottom:776.406900px;}
.y38{bottom:783.654300px;}
.y66{bottom:783.907050px;}
.y9{bottom:784.198950px;}
.y186{bottom:786.795900px;}
.y11c{bottom:786.796200px;}
.y196{bottom:791.107050px;}
.yb6{bottom:794.406900px;}
.y37{bottom:799.854150px;}
.y65{bottom:801.907050px;}
.y8{bottom:802.198950px;}
.y185{bottom:804.547800px;}
.y11b{bottom:804.548100px;}
.y195{bottom:809.107050px;}
.y36{bottom:816.054150px;}
.y64{bottom:819.907050px;}
.y7{bottom:820.198950px;}
.y184{bottom:822.299700px;}
.y11a{bottom:822.300000px;}
.y35{bottom:822.447000px;}
.y63{bottom:837.907050px;}
.y6{bottom:838.198950px;}
.yb5{bottom:838.851900px;}
.y183{bottom:840.051600px;}
.y119{bottom:840.051750px;}
.y194{bottom:845.986050px;}
.y34{bottom:849.543300px;}
.y62{bottom:855.907050px;}
.y5{bottom:856.198950px;}
.y182{bottom:857.803500px;}
.y118{bottom:857.803650px;}
.y33{bottom:869.343150px;}
.yb4{bottom:873.906900px;}
.y61{bottom:873.907050px;}
.y4{bottom:874.198950px;}
.y181{bottom:875.555550px;}
.y117{bottom:875.555850px;}
.y193{bottom:888.307050px;}
.y32{bottom:889.143300px;}
.yb3{bottom:891.906900px;}
.y60{bottom:891.907050px;}
.y3{bottom:892.198950px;}
.y180{bottom:893.307450px;}
.y116{bottom:893.307750px;}
.y192{bottom:906.307050px;}
.y31{bottom:908.943450px;}
.yb2{bottom:909.906900px;}
.y5f{bottom:909.907050px;}
.y2{bottom:910.198950px;}
.y17f{bottom:911.059350px;}
.y115{bottom:911.059500px;}
.y191{bottom:924.307050px;}
.yb1{bottom:927.906900px;}
.y5e{bottom:927.907050px;}
.y17e{bottom:928.811250px;}
.y114{bottom:928.811400px;}
.y190{bottom:942.307050px;}
.yb0{bottom:945.906900px;}
.y5d{bottom:945.907050px;}
.y17d{bottom:946.563150px;}
.y113{bottom:946.563300px;}
.y18f{bottom:960.307050px;}
.yaf{bottom:963.906900px;}
.y5c{bottom:963.907050px;}
.y17c{bottom:964.315050px;}
.y112{bottom:964.315200px;}
.y30{bottom:970.899600px;}
.y18e{bottom:978.307050px;}
.y5b{bottom:981.907050px;}
.y17b{bottom:982.066950px;}
.y111{bottom:982.067100px;}
.y17a{bottom:999.818850px;}
.y110{bottom:999.819000px;}
.yae{bottom:999.906900px;}
.y5a{bottom:999.907050px;}
.y2f{bottom:1010.499600px;}
.y18d{bottom:1015.185900px;}
.y179{bottom:1017.570750px;}
.y10f{bottom:1017.570900px;}
.yad{bottom:1017.906900px;}
.y59{bottom:1017.907050px;}
.y178{bottom:1035.322650px;}
.y10e{bottom:1035.322800px;}
.yac{bottom:1035.906900px;}
.y58{bottom:1035.907050px;}
.y10d{bottom:1044.198450px;}
.yab{bottom:1053.906900px;}
.y57{bottom:1053.907050px;}
.y10c{bottom:1070.826450px;}
.yaa{bottom:1071.906900px;}
.y56{bottom:1071.907050px;}
.y53{bottom:1077.618750px;}
.y52{bottom:1089.018750px;}
.y1{bottom:1115.391450px;}
.ya9{bottom:1131.616950px;}
.y55{bottom:1133.865300px;}
.hd{height:22.698522px;}
.h17{height:23.611500px;}
.he{height:34.608000px;}
.h5{height:36.000000px;}
.h12{height:38.610000px;}
.h4{height:38.934000px;}
.h10{height:39.387000px;}
.h14{height:40.500000px;}
.h6{height:41.106000px;}
.hf{height:42.300000px;}
.h3{height:43.260000px;}
.hc{height:47.586000px;}
.h19{height:49.181700px;}
.h16{height:49.182300px;}
.h15{height:49.182900px;}
.h7{height:51.912000px;}
.h11{height:53.247000px;}
.h8{height:53.281980px;}
.h9{height:53.282580px;}
.hb{height:58.995438px;}
.h2{height:70.254240px;}
.h18{height:76.003800px;}
.h1a{height:76.004400px;}
.h13{height:76.005000px;}
.ha{height:95.172000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.xc{left:78.661350px;}
.x5{left:80.188350px;}
.x9{left:89.291400px;}
.x17{left:102.047250px;}
.xd{left:220.937700px;}
.x14{left:241.042800px;}
.x10{left:259.319250px;}
.x15{left:272.707650px;}
.xf{left:281.292450px;}
.x2{left:296.119500px;}
.x4{left:308.689350px;}
.xe{left:312.165150px;}
.x7{left:425.812800px;}
.x11{left:461.890200px;}
.xa{left:463.464600px;}
.xb{left:476.220450px;}
.x16{left:488.976300px;}
.x12{left:536.576700px;}
.x13{left:601.042800px;}
.x8{left:646.594800px;}
.x3{left:678.566100px;}
.x6{left:791.521950px;}
@media print{
.v6{vertical-align:-31.558933pt;}
.v3{vertical-align:-27.780267pt;}
.v8{vertical-align:-22.729067pt;}
.v4{vertical-align:-3.483200pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:22.730133pt;}
.v1{vertical-align:24.943467pt;}
.v2{vertical-align:27.780267pt;}
.v5{vertical-align:31.559467pt;}
.ls83{letter-spacing:-3.696000pt;}
.lsb7{letter-spacing:-2.506667pt;}
.ls40{letter-spacing:-1.266667pt;}
.ls2f{letter-spacing:-0.880000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.586667pt;}
.ls4e{letter-spacing:-0.533333pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls3b{letter-spacing:-0.426667pt;}
.ls26{letter-spacing:-0.373333pt;}
.ls6d{letter-spacing:-0.320000pt;}
.ls31{letter-spacing:-0.288000pt;}
.ls82{letter-spacing:-0.240000pt;}
.lsaa{letter-spacing:-0.213333pt;}
.ls4d{letter-spacing:-0.160000pt;}
.ls3c{letter-spacing:-0.106667pt;}
.ls84{letter-spacing:-0.096000pt;}
.ls41{letter-spacing:-0.053333pt;}
.ls25{letter-spacing:0.000000pt;}
.ls8d{letter-spacing:0.000203pt;}
.ls7c{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.054400pt;}
.ls53{letter-spacing:0.059733pt;}
.lsb{letter-spacing:0.106667pt;}
.lsb2{letter-spacing:0.124373pt;}
.ls54{letter-spacing:0.142933pt;}
.ls48{letter-spacing:0.160000pt;}
.lsa2{letter-spacing:0.191467pt;}
.ls44{letter-spacing:0.213333pt;}
.ls85{letter-spacing:0.217653pt;}
.ls8c{letter-spacing:0.247461pt;}
.ls50{letter-spacing:0.248747pt;}
.ls9{letter-spacing:0.252800pt;}
.ls77{letter-spacing:0.253867pt;}
.ls8{letter-spacing:0.266667pt;}
.ls22{letter-spacing:0.288000pt;}
.ls29{letter-spacing:0.320000pt;}
.ls74{letter-spacing:0.341867pt;}
.ls9a{letter-spacing:0.346869pt;}
.ls1{letter-spacing:0.373333pt;}
.ls18{letter-spacing:0.384000pt;}
.ls98{letter-spacing:0.418128pt;}
.ls2d{letter-spacing:0.426667pt;}
.ls8b{letter-spacing:0.432000pt;}
.ls51{letter-spacing:0.435307pt;}
.ls69{letter-spacing:0.465067pt;}
.ls68{letter-spacing:0.465600pt;}
.ls28{letter-spacing:0.466400pt;}
.ls3e{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.497493pt;}
.ls1e{letter-spacing:0.528000pt;}
.ls3d{letter-spacing:0.533333pt;}
.ls59{letter-spacing:0.544000pt;}
.ls5a{letter-spacing:0.544533pt;}
.ls19{letter-spacing:0.554667pt;}
.ls5c{letter-spacing:0.558880pt;}
.lsb5{letter-spacing:0.575413pt;}
.ls99{letter-spacing:0.576000pt;}
.ls11{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.594667pt;}
.ls45{letter-spacing:0.640000pt;}
.ls73{letter-spacing:0.656533pt;}
.ls1d{letter-spacing:0.672000pt;}
.ls81{letter-spacing:0.684053pt;}
.ls7{letter-spacing:0.693333pt;}
.ls5b{letter-spacing:0.710400pt;}
.ls2c{letter-spacing:0.715147pt;}
.ls21{letter-spacing:0.720000pt;}
.ls33{letter-spacing:0.732747pt;}
.lsb6{letter-spacing:0.746240pt;}
.ls0{letter-spacing:0.746667pt;}
.ls52{letter-spacing:0.790933pt;}
.ls1c{letter-spacing:0.792000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:0.816000pt;}
.lsd{letter-spacing:0.826667pt;}
.ls75{letter-spacing:0.828267pt;}
.lsb3{letter-spacing:0.839520pt;}
.ls5e{letter-spacing:0.841600pt;}
.ls2b{letter-spacing:0.853333pt;}
.ls64{letter-spacing:0.887467pt;}
.ls9c{letter-spacing:0.901707pt;}
.ls15{letter-spacing:0.906667pt;}
.ls4f{letter-spacing:0.932800pt;}
.lsa1{letter-spacing:0.945600pt;}
.ls5d{letter-spacing:0.958400pt;}
.ls24{letter-spacing:0.960000pt;}
.ls32{letter-spacing:0.963893pt;}
.ls76{letter-spacing:0.986667pt;}
.ls5f{letter-spacing:1.000000pt;}
.ls57{letter-spacing:1.005867pt;}
.ls58{letter-spacing:1.006400pt;}
.ls10{letter-spacing:1.013333pt;}
.ls80{letter-spacing:1.026080pt;}
.ls56{letter-spacing:1.040000pt;}
.ls55{letter-spacing:1.041600pt;}
.ls62{letter-spacing:1.057067pt;}
.ls42{letter-spacing:1.066667pt;}
.ls14{letter-spacing:1.120000pt;}
.ls1a{letter-spacing:1.173333pt;}
.ls3{letter-spacing:1.200000pt;}
.ls5{letter-spacing:1.226667pt;}
.ls34{letter-spacing:1.258133pt;}
.ls61{letter-spacing:1.271467pt;}
.lsc{letter-spacing:1.280000pt;}
.ls60{letter-spacing:1.310400pt;}
.lsa{letter-spacing:1.333333pt;}
.ls67{letter-spacing:1.341333pt;}
.ls66{letter-spacing:1.341867pt;}
.lse{letter-spacing:1.386667pt;}
.lsf{letter-spacing:1.398400pt;}
.ls9f{letter-spacing:1.430400pt;}
.ls65{letter-spacing:1.440000pt;}
.ls9d{letter-spacing:1.474667pt;}
.lsb4{letter-spacing:1.492480pt;}
.ls6a{letter-spacing:1.493333pt;}
.lsab{letter-spacing:1.546667pt;}
.ls4{letter-spacing:1.600000pt;}
.lsa0{letter-spacing:1.647947pt;}
.ls39{letter-spacing:1.653333pt;}
.ls72{letter-spacing:1.664000pt;}
.ls23{letter-spacing:1.680000pt;}
.lsa3{letter-spacing:1.690667pt;}
.ls6e{letter-spacing:1.706667pt;}
.ls16{letter-spacing:1.760000pt;}
.ls49{letter-spacing:1.813333pt;}
.ls4b{letter-spacing:1.865600pt;}
.ls4a{letter-spacing:1.866667pt;}
.ls17{letter-spacing:1.920000pt;}
.lsbe{letter-spacing:1.973333pt;}
.ls3a{letter-spacing:2.026667pt;}
.ls9e{letter-spacing:2.042667pt;}
.lsb1{letter-spacing:2.080000pt;}
.lsb0{letter-spacing:2.133333pt;}
.ls6f{letter-spacing:2.240000pt;}
.ls35{letter-spacing:2.346667pt;}
.ls43{letter-spacing:2.400000pt;}
.ls70{letter-spacing:2.453333pt;}
.ls3f{letter-spacing:2.506667pt;}
.ls7e{letter-spacing:2.560000pt;}
.ls47{letter-spacing:2.613333pt;}
.ls71{letter-spacing:2.666667pt;}
.ls63{letter-spacing:2.672533pt;}
.lsb8{letter-spacing:2.720000pt;}
.lsae{letter-spacing:2.773333pt;}
.lsad{letter-spacing:2.826667pt;}
.lsac{letter-spacing:2.880000pt;}
.lsbf{letter-spacing:2.933333pt;}
.ls20{letter-spacing:2.976000pt;}
.lsbd{letter-spacing:2.986667pt;}
.lsbb{letter-spacing:3.040000pt;}
.ls36{letter-spacing:3.093333pt;}
.ls37{letter-spacing:3.146667pt;}
.ls4c{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:3.226667pt;}
.ls38{letter-spacing:3.306667pt;}
.lsb9{letter-spacing:3.360000pt;}
.ls9b{letter-spacing:3.460267pt;}
.lsaf{letter-spacing:3.466667pt;}
.ls6b{letter-spacing:3.680000pt;}
.ls7d{letter-spacing:3.733333pt;}
.lsbc{letter-spacing:3.786667pt;}
.ls7f{letter-spacing:3.893333pt;}
.ls6c{letter-spacing:4.000000pt;}
.ls46{letter-spacing:4.106667pt;}
.lsba{letter-spacing:5.333333pt;}
.ls91{letter-spacing:52.447136pt;}
.ls79{letter-spacing:62.628261pt;}
.ls92{letter-spacing:63.776736pt;}
.ls95{letter-spacing:74.552203pt;}
.ls97{letter-spacing:81.918069pt;}
.ls78{letter-spacing:82.470395pt;}
.ls94{letter-spacing:85.328203pt;}
.ls90{letter-spacing:85.989003pt;}
.ls96{letter-spacing:103.469536pt;}
.ls93{letter-spacing:118.397003pt;}
.ls8f{letter-spacing:122.272203pt;}
.ls8e{letter-spacing:132.224528pt;}
.ls87{letter-spacing:135.447136pt;}
.ls88{letter-spacing:150.614069pt;}
.ls89{letter-spacing:164.918069pt;}
.lsa5{letter-spacing:217.543995pt;}
.ls86{letter-spacing:235.891728pt;}
.ls7b{letter-spacing:300.745269pt;}
.lsa7{letter-spacing:307.398395pt;}
.lsa6{letter-spacing:326.262395pt;}
.lsa9{letter-spacing:327.043403pt;}
.lsa8{letter-spacing:372.774928pt;}
.lsa4{letter-spacing:444.772261pt;}
.ls8a{letter-spacing:858.049269pt;}
.ls7a{letter-spacing:973.566928pt;}
.ws1{word-spacing:-13.066667pt;}
.ws2{word-spacing:-12.608000pt;}
.wsc{word-spacing:-11.712000pt;}
.ws9{word-spacing:-11.557333pt;}
.wsd{word-spacing:-11.472000pt;}
.ws21{word-spacing:-10.773333pt;}
.ws7d{word-spacing:-10.666667pt;}
.wsa{word-spacing:-10.512000pt;}
.ws7f{word-spacing:-10.186667pt;}
.wsb{word-spacing:-10.032000pt;}
.ws7e{word-spacing:-10.026667pt;}
.ws4{word-spacing:-9.920000pt;}
.ws23{word-spacing:-9.600000pt;}
.ws36{word-spacing:-9.546667pt;}
.ws62{word-spacing:-9.504000pt;}
.ws38{word-spacing:-9.440000pt;}
.ws5e{word-spacing:-9.360000pt;}
.wse{word-spacing:-9.344000pt;}
.ws7b{word-spacing:-9.173333pt;}
.ws24{word-spacing:-7.462400pt;}
.ws8{word-spacing:-7.250965pt;}
.ws73{word-spacing:-7.244747pt;}
.ws7a{word-spacing:-7.089280pt;}
.ws56{word-spacing:-6.622880pt;}
.ws22{word-spacing:-6.560693pt;}
.ws34{word-spacing:-6.529600pt;}
.ws72{word-spacing:-6.498507pt;}
.ws79{word-spacing:-6.436320pt;}
.ws7c{word-spacing:-6.343040pt;}
.ws6{word-spacing:-6.311947pt;}
.ws57{word-spacing:-6.280853pt;}
.ws63{word-spacing:-6.128496pt;}
.ws5{word-spacing:-6.094293pt;}
.ws3{word-spacing:-6.063200pt;}
.ws37{word-spacing:-6.032107pt;}
.ws35{word-spacing:-5.845547pt;}
.ws67{word-spacing:-5.814453pt;}
.ws78{word-spacing:-5.721173pt;}
.ws7{word-spacing:-5.596800pt;}
.ws1b{word-spacing:-2.112000pt;}
.ws49{word-spacing:-1.920000pt;}
.ws20{word-spacing:-1.680000pt;}
.ws53{word-spacing:-1.333333pt;}
.ws4e{word-spacing:-1.280000pt;}
.ws40{word-spacing:-1.066667pt;}
.ws41{word-spacing:-1.013333pt;}
.ws46{word-spacing:-0.960000pt;}
.ws50{word-spacing:-0.906667pt;}
.ws10{word-spacing:-0.746667pt;}
.ws12{word-spacing:-0.693333pt;}
.ws43{word-spacing:-0.533333pt;}
.ws55{word-spacing:-0.480000pt;}
.ws3f{word-spacing:-0.160000pt;}
.ws0{word-spacing:-0.053333pt;}
.ws58{word-spacing:-0.048000pt;}
.ws39{word-spacing:-0.031093pt;}
.wsf{word-spacing:0.000000pt;}
.ws45{word-spacing:0.053333pt;}
.ws76{word-spacing:0.106667pt;}
.ws3e{word-spacing:0.160000pt;}
.ws54{word-spacing:0.213333pt;}
.ws87{word-spacing:0.266667pt;}
.ws8c{word-spacing:0.373333pt;}
.ws27{word-spacing:0.426667pt;}
.ws4a{word-spacing:0.480000pt;}
.ws32{word-spacing:0.533333pt;}
.ws1c{word-spacing:0.586667pt;}
.ws4c{word-spacing:0.640000pt;}
.ws3b{word-spacing:0.693333pt;}
.ws8a{word-spacing:0.746667pt;}
.ws44{word-spacing:0.800000pt;}
.ws48{word-spacing:0.853333pt;}
.ws2e{word-spacing:0.906667pt;}
.ws30{word-spacing:0.960000pt;}
.ws88{word-spacing:1.013333pt;}
.ws13{word-spacing:1.066667pt;}
.ws4b{word-spacing:1.120000pt;}
.ws52{word-spacing:1.226667pt;}
.ws2a{word-spacing:1.266667pt;}
.ws3c{word-spacing:1.280000pt;}
.ws77{word-spacing:1.488000pt;}
.ws28{word-spacing:1.493333pt;}
.ws19{word-spacing:1.600000pt;}
.ws51{word-spacing:1.653333pt;}
.ws89{word-spacing:1.706667pt;}
.ws4d{word-spacing:1.760000pt;}
.ws84{word-spacing:1.813333pt;}
.ws80{word-spacing:1.866667pt;}
.ws47{word-spacing:2.026667pt;}
.ws66{word-spacing:2.112000pt;}
.ws70{word-spacing:2.133333pt;}
.ws86{word-spacing:2.186667pt;}
.ws8b{word-spacing:2.293333pt;}
.ws75{word-spacing:2.400000pt;}
.ws25{word-spacing:2.453333pt;}
.ws2b{word-spacing:2.506667pt;}
.ws29{word-spacing:2.613333pt;}
.ws3a{word-spacing:2.666667pt;}
.ws64{word-spacing:2.773333pt;}
.ws15{word-spacing:2.816000pt;}
.ws26{word-spacing:2.826667pt;}
.ws4f{word-spacing:2.933333pt;}
.ws65{word-spacing:3.093333pt;}
.ws16{word-spacing:3.146667pt;}
.ws71{word-spacing:3.168000pt;}
.ws17{word-spacing:3.200000pt;}
.ws2f{word-spacing:3.253333pt;}
.ws2c{word-spacing:3.306667pt;}
.ws31{word-spacing:3.360000pt;}
.ws1e{word-spacing:3.456000pt;}
.ws1f{word-spacing:3.504000pt;}
.ws85{word-spacing:3.520000pt;}
.ws18{word-spacing:3.573333pt;}
.ws2d{word-spacing:3.626667pt;}
.ws14{word-spacing:3.680000pt;}
.ws11{word-spacing:3.733333pt;}
.ws3d{word-spacing:4.000000pt;}
.ws42{word-spacing:4.053333pt;}
.ws1d{word-spacing:4.106667pt;}
.ws81{word-spacing:4.640000pt;}
.ws83{word-spacing:4.746667pt;}
.ws82{word-spacing:5.760000pt;}
.ws1a{word-spacing:7.978667pt;}
.ws68{word-spacing:37.021333pt;}
.ws6e{word-spacing:78.851200pt;}
.ws5f{word-spacing:86.603733pt;}
.ws60{word-spacing:100.288533pt;}
.ws33{word-spacing:111.968000pt;}
.ws5a{word-spacing:126.302400pt;}
.ws74{word-spacing:128.530667pt;}
.ws6b{word-spacing:135.298133pt;}
.ws59{word-spacing:146.144533pt;}
.ws6a{word-spacing:170.113067pt;}
.ws6d{word-spacing:203.667733pt;}
.ws6c{word-spacing:203.668267pt;}
.ws5d{word-spacing:204.442667pt;}
.ws5b{word-spacing:239.718400pt;}
.ws6f{word-spacing:275.946133pt;}
.ws61{word-spacing:342.481600pt;}
.ws69{word-spacing:437.943467pt;}
.ws5c{word-spacing:742.876800pt;}
._af{margin-left:-8.510400pt;}
._9a{margin-left:-7.350933pt;}
._7{margin-left:-6.242133pt;}
._8{margin-left:-5.072000pt;}
._6{margin-left:-3.776000pt;}
._5{margin-left:-2.787200pt;}
._2{margin-left:-1.594667pt;}
._3{width:0.981333pt;}
._0{width:1.905493pt;}
._ac{width:2.810880pt;}
._1{width:3.797333pt;}
._4{width:4.853867pt;}
._b0{width:18.273067pt;}
._84{width:19.950933pt;}
._b1{width:20.853333pt;}
._b2{width:24.314667pt;}
._8f{width:30.022933pt;}
._4d{width:32.262933pt;}
._97{width:41.006400pt;}
._55{width:42.366400pt;}
._ae{width:43.592533pt;}
._ad{width:44.701867pt;}
._58{width:47.556251pt;}
._ab{width:49.347840pt;}
._4b{width:53.873600pt;}
._99{width:55.790933pt;}
._85{width:58.450133pt;}
._53{width:60.933867pt;}
._91{width:62.557867pt;}
._50{width:63.602133pt;}
._4e{width:64.621333pt;}
._4f{width:66.515733pt;}
._82{width:68.539200pt;}
._89{width:70.091733pt;}
._41{width:72.349867pt;}
._42{width:73.762667pt;}
._e{width:74.887467pt;}
._3d{width:76.385600pt;}
._10{width:78.169067pt;}
._95{width:79.574400pt;}
._f{width:80.574400pt;}
._11{width:82.715200pt;}
._2b{width:84.731733pt;}
._86{width:85.691200pt;}
._12{width:87.009067pt;}
._83{width:88.301333pt;}
._2c{width:92.752000pt;}
._35{width:95.662933pt;}
._34{width:96.820800pt;}
._31{width:99.729067pt;}
._28{width:100.796800pt;}
._3f{width:102.842133pt;}
._92{width:104.866133pt;}
._93{width:105.977600pt;}
._26{width:107.056000pt;}
._25{width:109.556267pt;}
._51{width:110.645867pt;}
._29{width:112.594133pt;}
._2f{width:114.230400pt;}
._30{width:116.122667pt;}
._1a{width:117.831467pt;}
._8c{width:119.606400pt;}
._19{width:120.664533pt;}
._60{width:123.121067pt;}
._24{width:125.006400pt;}
._21{width:126.134933pt;}
._4a{width:127.540267pt;}
._20{width:128.569600pt;}
._2e{width:131.478933pt;}
._6c{width:133.483200pt;}
._2a{width:134.763200pt;}
._15{width:135.782933pt;}
._16{width:137.673600pt;}
._18{width:139.307733pt;}
._9e{width:140.432000pt;}
._d{width:141.385067pt;}
._3c{width:142.423467pt;}
._1d{width:144.087467pt;}
._1e{width:145.977600pt;}
._88{width:147.206933pt;}
._c{width:148.591467pt;}
._48{width:150.521600pt;}
._23{width:153.030933pt;}
._45{width:154.863467pt;}
._17{width:156.315200pt;}
._8e{width:158.472533pt;}
._a2{width:159.458133pt;}
._37{width:160.615467pt;}
._a{width:162.724800pt;}
._49{width:164.184533pt;}
._46{width:165.381867pt;}
._66{width:166.714133pt;}
._7a{width:168.802133pt;}
._8b{width:170.004267pt;}
._6f{width:170.967467pt;}
._59{width:171.990933pt;}
._1f{width:172.923200pt;}
._14{width:174.583467pt;}
._aa{width:175.956800pt;}
._69{width:178.283200pt;}
._6a{width:180.082667pt;}
._54{width:184.945600pt;}
._47{width:188.243200pt;}
._a1{width:189.808000pt;}
._1c{width:191.190933pt;}
._a5{width:192.118933pt;}
._94{width:193.262933pt;}
._4c{width:199.764267pt;}
._64{width:203.617067pt;}
._96{width:204.582933pt;}
._a4{width:206.715200pt;}
._52{width:207.948267pt;}
._a0{width:210.908800pt;}
._6e{width:212.041600pt;}
._44{width:213.029867pt;}
._9d{width:214.276267pt;}
._56{width:216.372800pt;}
._57{width:217.766933pt;}
._79{width:219.038933pt;}
._5b{width:220.601600pt;}
._5c{width:222.566933pt;}
._65{width:224.440533pt;}
._b{width:235.795733pt;}
._2d{width:238.139717pt;}
._68{width:239.425067pt;}
._90{width:243.849600pt;}
._62{width:247.489067pt;}
._27{width:248.520533pt;}
._80{width:250.201600pt;}
._61{width:251.250667pt;}
._22{width:253.427200pt;}
._32{width:256.488533pt;}
._98{width:259.740267pt;}
._9{width:260.814933pt;}
._5a{width:268.475200pt;}
._3e{width:269.449067pt;}
._40{width:272.233067pt;}
._7e{width:278.818667pt;}
._3a{width:280.388800pt;}
._38{width:290.601067pt;}
._33{width:294.864533pt;}
._43{width:309.312000pt;}
._1b{width:311.711467pt;}
._13{width:329.856000pt;}
._a9{width:331.938667pt;}
._3b{width:335.022400pt;}
._39{width:336.221333pt;}
._7d{width:362.068816pt;}
._77{width:386.325333pt;}
._a6{width:390.717333pt;}
._a3{width:391.867733pt;}
._73{width:397.158933pt;}
._8a{width:401.554667pt;}
._87{width:418.477333pt;}
._5e{width:424.812267pt;}
._9f{width:428.847467pt;}
._7c{width:432.718917pt;}
._a8{width:446.174400pt;}
._8d{width:459.963200pt;}
._5f{width:478.572800pt;}
._7f{width:506.074667pt;}
._a7{width:586.253973pt;}
._6d{width:604.451733pt;}
._78{width:609.420800pt;}
._9c{width:634.195200pt;}
._70{width:642.827733pt;}
._63{width:644.579733pt;}
._7b{width:646.499733pt;}
._67{width:648.899200pt;}
._81{width:655.874667pt;}
._75{width:708.852800pt;}
._74{width:712.740800pt;}
._6b{width:716.532267pt;}
._76{width:720.291307pt;}
._5d{width:723.722133pt;}
._72{width:727.044800pt;}
._9b{width:752.932267pt;}
._36{width:805.167467pt;}
._71{width:1275.390933pt;}
.fsa{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs9{font-size:34.202667pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:86.613333pt;}
.fs7{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:44.525200pt;}
.y1f{bottom:48.080533pt;}
.y22{bottom:77.406533pt;}
.y24{bottom:84.451600pt;}
.y1ac{bottom:85.606267pt;}
.y21{bottom:88.073200pt;}
.yd9{bottom:88.406133pt;}
.y18c{bottom:88.806267pt;}
.y137{bottom:89.982667pt;}
.ya8{bottom:91.472933pt;}
.y177{bottom:93.077067pt;}
.y10b{bottom:94.500667pt;}
.y86{bottom:94.939467pt;}
.y23{bottom:98.051600pt;}
.y20{bottom:98.739867pt;}
.yed{bottom:101.472933pt;}
.y1ab{bottom:101.606267pt;}
.yd8{bottom:104.406133pt;}
.ya7{bottom:104.806267pt;}
.y136{bottom:105.982667pt;}
.y176{bottom:109.077067pt;}
.y10a{bottom:110.500667pt;}
.y85{bottom:110.939467pt;}
.yec{bottom:117.472933pt;}
.y1aa{bottom:117.606267pt;}
.yd7{bottom:120.406133pt;}
.y18b{bottom:120.806267pt;}
.y135{bottom:121.982667pt;}
.y175{bottom:125.077067pt;}
.y109{bottom:126.500667pt;}
.y84{bottom:126.939467pt;}
.y51{bottom:128.612133pt;}
.y2e{bottom:129.060400pt;}
.yfc{bottom:132.900667pt;}
.yeb{bottom:133.472933pt;}
.y1a9{bottom:133.606267pt;}
.yd6{bottom:136.406133pt;}
.ya6{bottom:136.806267pt;}
.y134{bottom:137.982667pt;}
.y174{bottom:141.077067pt;}
.y108{bottom:142.500667pt;}
.y50{bottom:143.012133pt;}
.y2d{bottom:145.060267pt;}
.yfb{bottom:148.900667pt;}
.yea{bottom:149.472933pt;}
.y1a8{bottom:149.606267pt;}
.yd5{bottom:152.406133pt;}
.ya5{bottom:152.806267pt;}
.y133{bottom:153.982667pt;}
.y173{bottom:157.077067pt;}
.y4f{bottom:157.412133pt;}
.y107{bottom:158.500667pt;}
.y2c{bottom:161.060267pt;}
.y83{bottom:163.112667pt;}
.yfa{bottom:164.900667pt;}
.ye9{bottom:165.472933pt;}
.y1a7{bottom:165.606267pt;}
.yd4{bottom:168.406133pt;}
.ya4{bottom:168.806267pt;}
.y132{bottom:169.982667pt;}
.y4e{bottom:171.812133pt;}
.y172{bottom:173.077067pt;}
.y106{bottom:174.500667pt;}
.y2b{bottom:177.060400pt;}
.yf9{bottom:180.900667pt;}
.ye8{bottom:181.472933pt;}
.y1a6{bottom:181.606267pt;}
.yd3{bottom:184.406133pt;}
.ya3{bottom:184.806267pt;}
.y4d{bottom:185.812133pt;}
.y131{bottom:185.982667pt;}
.y171{bottom:189.077067pt;}
.y105{bottom:190.500667pt;}
.y2a{bottom:193.060400pt;}
.y82{bottom:194.272800pt;}
.yf8{bottom:196.900667pt;}
.ye7{bottom:197.472933pt;}
.y1a5{bottom:197.606267pt;}
.y4c{bottom:199.812133pt;}
.yd2{bottom:200.406133pt;}
.ya2{bottom:200.806267pt;}
.y170{bottom:205.077067pt;}
.y104{bottom:206.500667pt;}
.y29{bottom:209.060400pt;}
.y81{bottom:210.272800pt;}
.yf7{bottom:212.900667pt;}
.ye6{bottom:213.472933pt;}
.y1a4{bottom:213.606267pt;}
.y4b{bottom:213.812133pt;}
.yd1{bottom:216.406133pt;}
.ya1{bottom:216.806267pt;}
.y155{bottom:219.699200pt;}
.y16f{bottom:221.077067pt;}
.y103{bottom:222.500667pt;}
.y28{bottom:225.060400pt;}
.y80{bottom:226.272800pt;}
.y4a{bottom:227.812133pt;}
.yf6{bottom:228.900667pt;}
.ye5{bottom:229.472933pt;}
.y1a3{bottom:229.606267pt;}
.yd0{bottom:232.406133pt;}
.ya0{bottom:232.806267pt;}
.y154{bottom:233.032533pt;}
.y16e{bottom:237.077067pt;}
.y102{bottom:238.500667pt;}
.y27{bottom:241.060400pt;}
.y49{bottom:241.812133pt;}
.y7f{bottom:242.272800pt;}
.yf5{bottom:244.900667pt;}
.ye4{bottom:245.472933pt;}
.y1a2{bottom:245.606267pt;}
.ycf{bottom:248.406133pt;}
.y9f{bottom:248.806267pt;}
.y153{bottom:252.048267pt;}
.y16d{bottom:253.077067pt;}
.y101{bottom:254.500667pt;}
.y48{bottom:255.812133pt;}
.y26{bottom:257.060400pt;}
.y7e{bottom:258.272800pt;}
.y152{bottom:259.699200pt;}
.yf4{bottom:260.900667pt;}
.ye3{bottom:261.472933pt;}
.y1a1{bottom:261.606267pt;}
.yce{bottom:264.406133pt;}
.y9e{bottom:264.806267pt;}
.y16c{bottom:269.077067pt;}
.y47{bottom:270.212133pt;}
.y100{bottom:270.500667pt;}
.y151{bottom:273.032533pt;}
.y7d{bottom:274.272800pt;}
.yf3{bottom:276.900667pt;}
.ye2{bottom:277.472933pt;}
.y1a0{bottom:277.606267pt;}
.ycd{bottom:280.406133pt;}
.y9d{bottom:280.806267pt;}
.y16b{bottom:285.077067pt;}
.y150{bottom:286.365867pt;}
.yff{bottom:286.500667pt;}
.y25{bottom:289.841600pt;}
.y7c{bottom:290.272800pt;}
.yf2{bottom:292.900667pt;}
.ye1{bottom:293.472933pt;}
.y19f{bottom:293.606267pt;}
.y18a{bottom:296.806267pt;}
.y46{bottom:298.612133pt;}
.y16a{bottom:301.077067pt;}
.y14f{bottom:302.145467pt;}
.yfe{bottom:302.500667pt;}
.y7b{bottom:306.272800pt;}
.yf1{bottom:308.900667pt;}
.ye0{bottom:309.472933pt;}
.y19e{bottom:309.606267pt;}
.y45{bottom:312.612133pt;}
.y9c{bottom:312.806267pt;}
.y14e{bottom:315.478800pt;}
.ycc{bottom:316.579467pt;}
.y169{bottom:317.077067pt;}
.y7a{bottom:322.272800pt;}
.yf0{bottom:324.900667pt;}
.ydf{bottom:325.472933pt;}
.y19d{bottom:325.606267pt;}
.y44{bottom:326.612133pt;}
.y9b{bottom:328.806267pt;}
.y14d{bottom:328.812133pt;}
.y168{bottom:333.077067pt;}
.yfd{bottom:335.282000pt;}
.y79{bottom:338.272800pt;}
.yef{bottom:340.900667pt;}
.yde{bottom:341.472933pt;}
.y19c{bottom:341.606267pt;}
.y14c{bottom:344.591733pt;}
.y9a{bottom:344.806267pt;}
.y1e{bottom:345.065733pt;}
.y167{bottom:349.077067pt;}
.ycb{bottom:351.720667pt;}
.y78{bottom:354.272800pt;}
.yee{bottom:356.900667pt;}
.ydd{bottom:357.472933pt;}
.y14b{bottom:360.371200pt;}
.y99{bottom:360.806267pt;}
.y1d{bottom:361.065733pt;}
.y166{bottom:365.077067pt;}
.ydc{bottom:373.472933pt;}
.y14a{bottom:376.150667pt;}
.y98{bottom:376.806267pt;}
.y19b{bottom:377.587467pt;}
.y165{bottom:381.077067pt;}
.yca{bottom:386.139467pt;}
.y77{bottom:390.446133pt;}
.y149{bottom:391.930267pt;}
.y97{bottom:392.806267pt;}
.y1c{bottom:393.065733pt;}
.y130{bottom:396.363867pt;}
.y164{bottom:397.077067pt;}
.yc9{bottom:402.139467pt;}
.y12f{bottom:405.081600pt;}
.y148{bottom:407.709733pt;}
.y96{bottom:408.806267pt;}
.y1b{bottom:409.065733pt;}
.ydb{bottom:409.646133pt;}
.y163{bottom:413.077067pt;}
.y19a{bottom:415.206267pt;}
.yc8{bottom:418.139467pt;}
.y12e{bottom:419.481600pt;}
.y76{bottom:422.387333pt;}
.y147{bottom:423.489333pt;}
.y95{bottom:424.806267pt;}
.y1a{bottom:425.065733pt;}
.y162{bottom:429.077067pt;}
.y199{bottom:431.206267pt;}
.y12d{bottom:433.881600pt;}
.yc7{bottom:434.139467pt;}
.y146{bottom:439.268800pt;}
.y94{bottom:440.806267pt;}
.y19{bottom:441.065733pt;}
.y161{bottom:445.077067pt;}
.y12c{bottom:448.281600pt;}
.yc6{bottom:450.139467pt;}
.y145{bottom:455.048400pt;}
.y75{bottom:456.806133pt;}
.y93{bottom:456.806267pt;}
.y18{bottom:457.065733pt;}
.y160{bottom:461.077067pt;}
.y12b{bottom:462.681600pt;}
.yc5{bottom:466.139467pt;}
.y198{bottom:467.187600pt;}
.y144{bottom:470.827867pt;}
.y74{bottom:472.806133pt;}
.y92{bottom:472.806267pt;}
.y17{bottom:473.065733pt;}
.y15f{bottom:477.077067pt;}
.y12a{bottom:478.461067pt;}
.yc4{bottom:482.139467pt;}
.y143{bottom:486.607333pt;}
.y73{bottom:488.806133pt;}
.y91{bottom:488.806267pt;}
.y16{bottom:489.065733pt;}
.y15e{bottom:493.077067pt;}
.y129{bottom:494.240667pt;}
.yc3{bottom:498.139467pt;}
.y142{bottom:499.940667pt;}
.y72{bottom:504.806133pt;}
.y90{bottom:504.806267pt;}
.y15{bottom:505.065733pt;}
.y15d{bottom:509.077067pt;}
.y128{bottom:510.020133pt;}
.yc2{bottom:514.139467pt;}
.y141{bottom:515.720267pt;}
.y71{bottom:520.806133pt;}
.y8f{bottom:520.806267pt;}
.y14{bottom:521.065733pt;}
.y140{bottom:523.610000pt;}
.y13e{bottom:524.833067pt;}
.y15c{bottom:525.077067pt;}
.y127{bottom:525.799733pt;}
.yc1{bottom:530.139467pt;}
.y70{bottom:536.806133pt;}
.y8e{bottom:536.806267pt;}
.y13{bottom:537.065733pt;}
.y13d{bottom:538.166400pt;}
.y15b{bottom:541.077067pt;}
.y126{bottom:541.579200pt;}
.yc0{bottom:546.139467pt;}
.y13f{bottom:547.279333pt;}
.y6f{bottom:552.806133pt;}
.y8d{bottom:552.806267pt;}
.y12{bottom:553.065733pt;}
.y15a{bottom:557.077067pt;}
.y125{bottom:557.358667pt;}
.ybf{bottom:562.139467pt;}
.y13c{bottom:563.058800pt;}
.y43{bottom:566.981733pt;}
.y6e{bottom:568.806133pt;}
.y8c{bottom:568.806267pt;}
.y11{bottom:569.065733pt;}
.y159{bottom:573.077067pt;}
.y124{bottom:573.138267pt;}
.ybe{bottom:578.139467pt;}
.y42{bottom:581.381733pt;}
.y6d{bottom:584.806133pt;}
.y8b{bottom:584.806267pt;}
.y10{bottom:585.065733pt;}
.y123{bottom:588.917867pt;}
.y158{bottom:589.077067pt;}
.ybd{bottom:594.139467pt;}
.y41{bottom:595.781733pt;}
.y13b{bottom:598.702533pt;}
.y6c{bottom:600.806133pt;}
.y8a{bottom:600.806267pt;}
.yf{bottom:601.065733pt;}
.y122{bottom:604.697333pt;}
.y157{bottom:605.077067pt;}
.ybc{bottom:610.139467pt;}
.y40{bottom:610.181733pt;}
.y6b{bottom:616.806133pt;}
.y89{bottom:616.806267pt;}
.ye{bottom:617.065733pt;}
.y13a{bottom:617.718267pt;}
.y121{bottom:620.476800pt;}
.y156{bottom:621.077067pt;}
.y3f{bottom:624.581600pt;}
.y139{bottom:625.369200pt;}
.ybb{bottom:626.139467pt;}
.y6a{bottom:632.806133pt;}
.y88{bottom:632.806267pt;}
.yd{bottom:633.065733pt;}
.y120{bottom:636.256400pt;}
.y138{bottom:638.702533pt;}
.y3e{bottom:638.981733pt;}
.yba{bottom:642.139467pt;}
.y3d{bottom:644.664000pt;}
.y69{bottom:648.806133pt;}
.y87{bottom:648.806267pt;}
.yc{bottom:649.065733pt;}
.y11f{bottom:652.035867pt;}
.y3c{bottom:653.381733pt;}
.yb9{bottom:658.139467pt;}
.y189{bottom:660.477067pt;}
.y68{bottom:664.806133pt;}
.yda{bottom:664.806267pt;}
.yb{bottom:665.065733pt;}
.y197{bottom:665.587467pt;}
.y3b{bottom:667.781733pt;}
.y11e{bottom:667.815467pt;}
.y188{bottom:669.194800pt;}
.yb8{bottom:674.139467pt;}
.y67{bottom:680.806267pt;}
.ya{bottom:681.065733pt;}
.y3a{bottom:682.181600pt;}
.y187{bottom:683.594667pt;}
.y11d{bottom:683.594933pt;}
.y39{bottom:687.864000pt;}
.yb7{bottom:690.139467pt;}
.y38{bottom:696.581600pt;}
.y66{bottom:696.806267pt;}
.y9{bottom:697.065733pt;}
.y186{bottom:699.374133pt;}
.y11c{bottom:699.374400pt;}
.y196{bottom:703.206267pt;}
.yb6{bottom:706.139467pt;}
.y37{bottom:710.981467pt;}
.y65{bottom:712.806267pt;}
.y8{bottom:713.065733pt;}
.y185{bottom:715.153600pt;}
.y11b{bottom:715.153867pt;}
.y195{bottom:719.206267pt;}
.y36{bottom:725.381467pt;}
.y64{bottom:728.806267pt;}
.y7{bottom:729.065733pt;}
.y184{bottom:730.933067pt;}
.y11a{bottom:730.933333pt;}
.y35{bottom:731.064000pt;}
.y63{bottom:744.806267pt;}
.y6{bottom:745.065733pt;}
.yb5{bottom:745.646133pt;}
.y183{bottom:746.712533pt;}
.y119{bottom:746.712667pt;}
.y194{bottom:751.987600pt;}
.y34{bottom:755.149600pt;}
.y62{bottom:760.806267pt;}
.y5{bottom:761.065733pt;}
.y182{bottom:762.492000pt;}
.y118{bottom:762.492133pt;}
.y33{bottom:772.749467pt;}
.yb4{bottom:776.806133pt;}
.y61{bottom:776.806267pt;}
.y4{bottom:777.065733pt;}
.y181{bottom:778.271600pt;}
.y117{bottom:778.271867pt;}
.y193{bottom:789.606267pt;}
.y32{bottom:790.349600pt;}
.yb3{bottom:792.806133pt;}
.y60{bottom:792.806267pt;}
.y3{bottom:793.065733pt;}
.y180{bottom:794.051067pt;}
.y116{bottom:794.051333pt;}
.y192{bottom:805.606267pt;}
.y31{bottom:807.949733pt;}
.yb2{bottom:808.806133pt;}
.y5f{bottom:808.806267pt;}
.y2{bottom:809.065733pt;}
.y17f{bottom:809.830533pt;}
.y115{bottom:809.830667pt;}
.y191{bottom:821.606267pt;}
.yb1{bottom:824.806133pt;}
.y5e{bottom:824.806267pt;}
.y17e{bottom:825.610000pt;}
.y114{bottom:825.610133pt;}
.y190{bottom:837.606267pt;}
.yb0{bottom:840.806133pt;}
.y5d{bottom:840.806267pt;}
.y17d{bottom:841.389467pt;}
.y113{bottom:841.389600pt;}
.y18f{bottom:853.606267pt;}
.yaf{bottom:856.806133pt;}
.y5c{bottom:856.806267pt;}
.y17c{bottom:857.168933pt;}
.y112{bottom:857.169067pt;}
.y30{bottom:863.021867pt;}
.y18e{bottom:869.606267pt;}
.y5b{bottom:872.806267pt;}
.y17b{bottom:872.948400pt;}
.y111{bottom:872.948533pt;}
.y17a{bottom:888.727867pt;}
.y110{bottom:888.728000pt;}
.yae{bottom:888.806133pt;}
.y5a{bottom:888.806267pt;}
.y2f{bottom:898.221867pt;}
.y18d{bottom:902.387467pt;}
.y179{bottom:904.507333pt;}
.y10f{bottom:904.507467pt;}
.yad{bottom:904.806133pt;}
.y59{bottom:904.806267pt;}
.y178{bottom:920.286800pt;}
.y10e{bottom:920.286933pt;}
.yac{bottom:920.806133pt;}
.y58{bottom:920.806267pt;}
.y10d{bottom:928.176400pt;}
.yab{bottom:936.806133pt;}
.y57{bottom:936.806267pt;}
.y10c{bottom:951.845733pt;}
.yaa{bottom:952.806133pt;}
.y56{bottom:952.806267pt;}
.y53{bottom:957.883333pt;}
.y52{bottom:968.016667pt;}
.y1{bottom:991.459067pt;}
.ya9{bottom:1005.881733pt;}
.y55{bottom:1007.880267pt;}
.hd{height:20.176464pt;}
.h17{height:20.988000pt;}
.he{height:30.762667pt;}
.h5{height:32.000000pt;}
.h12{height:34.320000pt;}
.h4{height:34.608000pt;}
.h10{height:35.010667pt;}
.h14{height:36.000000pt;}
.h6{height:36.538667pt;}
.hf{height:37.600000pt;}
.h3{height:38.453333pt;}
.hc{height:42.298667pt;}
.h19{height:43.717067pt;}
.h16{height:43.717600pt;}
.h15{height:43.718133pt;}
.h7{height:46.144000pt;}
.h11{height:47.330667pt;}
.h8{height:47.361760pt;}
.h9{height:47.362293pt;}
.hb{height:52.440389pt;}
.h2{height:62.448213pt;}
.h18{height:67.558933pt;}
.h1a{height:67.559467pt;}
.h13{height:67.560000pt;}
.ha{height:84.597333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.xc{left:69.921200pt;}
.x5{left:71.278533pt;}
.x9{left:79.370133pt;}
.x17{left:90.708667pt;}
.xd{left:196.389067pt;}
.x14{left:214.260267pt;}
.x10{left:230.506000pt;}
.x15{left:242.406800pt;}
.xf{left:250.037733pt;}
.x2{left:263.217333pt;}
.x4{left:274.390533pt;}
.xe{left:277.480133pt;}
.x7{left:378.500267pt;}
.x11{left:410.569067pt;}
.xa{left:411.968533pt;}
.xb{left:423.307067pt;}
.x16{left:434.645600pt;}
.x12{left:476.957067pt;}
.x13{left:534.260267pt;}
.x8{left:574.750933pt;}
.x3{left:603.169867pt;}
.x6{left:703.575067pt;}
}




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