
    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_491994e637eb23aa165aedbf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_0fa4af2a49c92526c8184f72.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_dffff6623f94db2ceea0bdf8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_134c78d3c079862fb70c262d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_3bac215e6da74d5827db408c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986816;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_0f49c6064d36e6b3914c0c9f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_d2ab71ebe2db080ac0c82586.woff')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_add5112a28f8923f62bd5f0f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.962891;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_ae4f4811285bdefa25de72f1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.962891;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_110025c38727ced317978625.woff')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_532a46a7b2628c822392999a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.962891;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_e355dff0dc1deb0a11581737.woff')format("woff");}.ffc{font-family:ffc;line-height:0.962891;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_a4476b9aa77bdb83458e6708.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962891;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_0f35e582be64015ad02bc2c0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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_74fd28ffe1f019059169d5af.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;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_ca02430683f32c95203ac8c5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.986816;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_d7f97b80db428c5fb3b5f4f9.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_4d1e30e4f9ed574220a7e8fd.woff')format("woff");}.ff12{font-family:ff12;line-height:0.871094;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_dffff6623f94db2ceea0bdf8.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_34476d8bd75626e5b592b2b7.woff')format("woff");}.ff14{font-family:ff14;line-height:0.962891;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;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.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);}
.v4{vertical-align:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-6.114960px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.883960px;}
.v1{vertical-align:24.123960px;}
.lsb{letter-spacing:-2.754000px;}
.ls56{letter-spacing:-2.635200px;}
.ls6b{letter-spacing:-1.910520px;}
.ls21{letter-spacing:-1.478880px;}
.ls20{letter-spacing:-1.251360px;}
.ls47{letter-spacing:-1.185840px;}
.ls1f{letter-spacing:-1.080720px;}
.ls22{letter-spacing:-1.023840px;}
.ls6a{letter-spacing:-0.856440px;}
.ls14{letter-spacing:-0.853200px;}
.ls12{letter-spacing:-0.796320px;}
.ls18{letter-spacing:-0.739440px;}
.lsc{letter-spacing:-0.702000px;}
.ls19{letter-spacing:-0.682560px;}
.ls1b{letter-spacing:-0.511920px;}
.ls41{letter-spacing:-0.480960px;}
.ls69{letter-spacing:-0.461160px;}
.ls13{letter-spacing:-0.455040px;}
.ls72{letter-spacing:-0.420840px;}
.ls1a{letter-spacing:-0.398160px;}
.ls4a{letter-spacing:-0.378000px;}
.ls39{letter-spacing:-0.360720px;}
.ls3a{letter-spacing:-0.324000px;}
.ls61{letter-spacing:-0.300600px;}
.ls37{letter-spacing:-0.240480px;}
.ls62{letter-spacing:-0.180360px;}
.ls1c{letter-spacing:-0.170640px;}
.lsd{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.143640px;}
.ls42{letter-spacing:-0.131760px;}
.ls2f{letter-spacing:-0.126360px;}
.ls36{letter-spacing:-0.120240px;}
.ls16{letter-spacing:-0.113760px;}
.ls11{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.096120px;}
.ls33{letter-spacing:-0.078120px;}
.ls10{letter-spacing:-0.072000px;}
.ls43{letter-spacing:-0.065880px;}
.ls38{letter-spacing:-0.060120px;}
.ls17{letter-spacing:-0.056880px;}
.ls1d{letter-spacing:-0.054000px;}
.ls9{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.012024px;}
.ls5{letter-spacing:0.016560px;}
.ls74{letter-spacing:0.024048px;}
.ls6e{letter-spacing:0.030060px;}
.ls65{letter-spacing:0.034200px;}
.lsa{letter-spacing:0.047880px;}
.ls23{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.056880px;}
.ls35{letter-spacing:0.060120px;}
.ls34{letter-spacing:0.065880px;}
.ls49{letter-spacing:0.077760px;}
.ls2e{letter-spacing:0.084240px;}
.ls40{letter-spacing:0.087840px;}
.ls67{letter-spacing:0.092880px;}
.ls30{letter-spacing:0.095760px;}
.ls6{letter-spacing:0.105120px;}
.ls45{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.113760px;}
.ls57{letter-spacing:0.114480px;}
.ls29{letter-spacing:0.120240px;}
.ls24{letter-spacing:0.126360px;}
.ls8{letter-spacing:0.130824px;}
.ls66{letter-spacing:0.131760px;}
.ls7{letter-spacing:0.153360px;}
.ls3{letter-spacing:0.170640px;}
.ls68{letter-spacing:0.180360px;}
.ls32{letter-spacing:0.191520px;}
.lse{letter-spacing:0.192240px;}
.ls4d{letter-spacing:0.197640px;}
.ls25{letter-spacing:0.204840px;}
.ls2{letter-spacing:0.221832px;}
.ls58{letter-spacing:0.245160px;}
.ls27{letter-spacing:0.263520px;}
.ls44{letter-spacing:0.329400px;}
.ls4c{letter-spacing:0.335988px;}
.ls1e{letter-spacing:0.341280px;}
.ls48{letter-spacing:0.395280px;}
.ls52{letter-spacing:0.421632px;}
.ls54{letter-spacing:0.461160px;}
.ls5e{letter-spacing:0.474480px;}
.ls64{letter-spacing:0.491400px;}
.ls50{letter-spacing:0.592920px;}
.ls1{letter-spacing:0.853200px;}
.ls51{letter-spacing:1.317600px;}
.ls3e{letter-spacing:1.647000px;}
.ls5a{letter-spacing:2.042280px;}
.ls4f{letter-spacing:2.371680px;}
.ls26{letter-spacing:3.080880px;}
.ls5d{letter-spacing:3.096360px;}
.ls4e{letter-spacing:3.460320px;}
.ls2a{letter-spacing:3.667320px;}
.ls5f{letter-spacing:3.821040px;}
.ls3d{letter-spacing:4.028040px;}
.ls28{letter-spacing:4.749480px;}
.ls46{letter-spacing:5.270400px;}
.ls76{letter-spacing:5.831640px;}
.ls3c{letter-spacing:5.873724px;}
.ls59{letter-spacing:5.995080px;}
.ls71{letter-spacing:6.060960px;}
.ls3f{letter-spacing:6.324480px;}
.ls2b{letter-spacing:6.913800px;}
.ls55{letter-spacing:7.049160px;}
.ls3b{letter-spacing:7.334640px;}
.ls53{letter-spacing:7.773840px;}
.ls5b{letter-spacing:8.169120px;}
.ls6d{letter-spacing:8.356680px;}
.ls5c{letter-spacing:9.947880px;}
.ls70{letter-spacing:10.521000px;}
.ls60{letter-spacing:10.672560px;}
.ls63{letter-spacing:11.726640px;}
.ls6c{letter-spacing:12.685320px;}
.ls73{letter-spacing:14.488920px;}
.ls4b{letter-spacing:15.020640px;}
.ls75{letter-spacing:24.949800px;}
.ls2c{letter-spacing:37.800000px;}
.ls2d{letter-spacing:73.116000px;}
.ls0{letter-spacing:111.888000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3d{word-spacing:-38.880000px;}
.ws42{word-spacing:-36.000000px;}
.ws8a{word-spacing:-20.949840px;}
.ws2{word-spacing:-16.272000px;}
.ws1{word-spacing:-16.128000px;}
.ws75{word-spacing:-15.284160px;}
.ws84{word-spacing:-15.020640px;}
.ws73{word-spacing:-14.954760px;}
.ws7b{word-spacing:-14.888880px;}
.ws7a{word-spacing:-14.823000px;}
.ws69{word-spacing:-14.757120px;}
.ws8b{word-spacing:-13.707360px;}
.ws3e{word-spacing:-13.647240px;}
.ws40{word-spacing:-13.587120px;}
.ws41{word-spacing:-13.527000px;}
.ws3f{word-spacing:-13.466880px;}
.ws8c{word-spacing:-13.406760px;}
.ws8e{word-spacing:-13.346640px;}
.ws82{word-spacing:-13.286520px;}
.ws10{word-spacing:-13.196160px;}
.ws8d{word-spacing:-13.166280px;}
.ws68{word-spacing:-13.106160px;}
.wsf{word-spacing:-12.968640px;}
.wsb{word-spacing:-12.911760px;}
.ws7{word-spacing:-12.854880px;}
.ws5{word-spacing:-12.798000px;}
.wsd{word-spacing:-12.741120px;}
.ws9{word-spacing:-12.456720px;}
.wse{word-spacing:-12.342960px;}
.ws13{word-spacing:-12.258000px;}
.ws4{word-spacing:-12.204000px;}
.ws8{word-spacing:-12.172320px;}
.wsc{word-spacing:-12.150000px;}
.ws6{word-spacing:-12.115440px;}
.ws3{word-spacing:-12.096000px;}
.wsa{word-spacing:-12.001680px;}
.ws43{word-spacing:-11.880000px;}
.ws11{word-spacing:-11.774160px;}
.ws12{word-spacing:-11.376000px;}
.ws0{word-spacing:-10.868760px;}
.ws3c{word-spacing:-10.677240px;}
.ws6b{word-spacing:-9.519120px;}
.ws74{word-spacing:-9.392760px;}
.ws77{word-spacing:-8.864640px;}
.ws9e{word-spacing:-5.831640px;}
.ws91{word-spacing:-2.945880px;}
.ws4b{word-spacing:-2.645280px;}
.ws9d{word-spacing:-2.525040px;}
.ws7d{word-spacing:-2.371680px;}
.ws9c{word-spacing:-2.104200px;}
.ws59{word-spacing:-2.044080px;}
.ws6d{word-spacing:-1.983960px;}
.ws58{word-spacing:-1.923840px;}
.ws4f{word-spacing:-1.442880px;}
.ws29{word-spacing:-1.308240px;}
.ws15{word-spacing:-1.242000px;}
.ws5d{word-spacing:-1.082160px;}
.ws57{word-spacing:-0.901800px;}
.ws66{word-spacing:-0.841680px;}
.ws5e{word-spacing:-0.721440px;}
.ws19{word-spacing:-0.672840px;}
.ws5f{word-spacing:-0.480960px;}
.ws88{word-spacing:-0.461160px;}
.ws51{word-spacing:-0.360720px;}
.ws71{word-spacing:-0.329400px;}
.ws93{word-spacing:-0.300600px;}
.ws18{word-spacing:-0.288360px;}
.ws3b{word-spacing:-0.252720px;}
.ws50{word-spacing:-0.240480px;}
.ws7c{word-spacing:-0.197640px;}
.ws48{word-spacing:-0.191520px;}
.ws85{word-spacing:-0.180360px;}
.ws6c{word-spacing:-0.170640px;}
.ws38{word-spacing:-0.143640px;}
.ws1b{word-spacing:-0.131760px;}
.ws52{word-spacing:-0.120240px;}
.ws76{word-spacing:-0.116640px;}
.ws31{word-spacing:-0.113760px;}
.ws72{word-spacing:-0.108000px;}
.ws47{word-spacing:-0.095760px;}
.ws45{word-spacing:-0.084240px;}
.ws1c{word-spacing:-0.072000px;}
.ws70{word-spacing:-0.065880px;}
.ws7e{word-spacing:-0.060120px;}
.ws32{word-spacing:-0.056880px;}
.ws44{word-spacing:-0.054000px;}
.ws3a{word-spacing:-0.047880px;}
.ws37{word-spacing:-0.042120px;}
.ws14{word-spacing:0.000000px;}
.ws35{word-spacing:0.054000px;}
.ws2f{word-spacing:0.056880px;}
.ws67{word-spacing:0.060120px;}
.ws6a{word-spacing:0.065880px;}
.ws49{word-spacing:0.078120px;}
.ws36{word-spacing:0.084240px;}
.ws39{word-spacing:0.095760px;}
.ws1a{word-spacing:0.096120px;}
.ws30{word-spacing:0.108000px;}
.ws26{word-spacing:0.113760px;}
.ws65{word-spacing:0.120240px;}
.ws46{word-spacing:0.126360px;}
.ws4a{word-spacing:0.131760px;}
.ws2e{word-spacing:0.170640px;}
.ws83{word-spacing:0.180360px;}
.ws33{word-spacing:0.227520px;}
.ws56{word-spacing:0.240480px;}
.ws8f{word-spacing:0.300600px;}
.ws98{word-spacing:0.360720px;}
.ws79{word-spacing:0.378000px;}
.ws94{word-spacing:0.420840px;}
.ws1f{word-spacing:0.455040px;}
.ws86{word-spacing:0.461160px;}
.ws2d{word-spacing:0.511920px;}
.ws97{word-spacing:0.661320px;}
.ws17{word-spacing:0.702000px;}
.ws21{word-spacing:0.796320px;}
.ws20{word-spacing:0.853200px;}
.ws87{word-spacing:0.856440px;}
.ws99{word-spacing:0.961920px;}
.ws9f{word-spacing:1.022040px;}
.ws22{word-spacing:1.137600px;}
.ws78{word-spacing:1.185840px;}
.ws23{word-spacing:1.194480px;}
.ws34{word-spacing:1.251360px;}
.ws28{word-spacing:1.535760px;}
.ws81{word-spacing:1.712880px;}
.ws80{word-spacing:1.778760px;}
.ws89{word-spacing:1.910520px;}
.ws27{word-spacing:2.047680px;}
.wsa0{word-spacing:2.464920px;}
.ws7f{word-spacing:2.635200px;}
.ws16{word-spacing:2.754000px;}
.ws9a{word-spacing:3.547080px;}
.ws62{word-spacing:3.907800px;}
.ws6e{word-spacing:4.028040px;}
.ws6f{word-spacing:4.148280px;}
.ws4c{word-spacing:4.268520px;}
.ws5a{word-spacing:4.388760px;}
.ws61{word-spacing:4.509000px;}
.ws5b{word-spacing:4.629240px;}
.ws5c{word-spacing:5.110200px;}
.ws96{word-spacing:5.651280px;}
.ws25{word-spacing:6.143040px;}
.ws24{word-spacing:6.199920px;}
.ws1e{word-spacing:6.996240px;}
.ws64{word-spacing:7.154280px;}
.ws1d{word-spacing:7.280640px;}
.ws92{word-spacing:8.296560px;}
.ws90{word-spacing:9.318600px;}
.ws2c{word-spacing:10.693440px;}
.ws2b{word-spacing:10.920960px;}
.ws2a{word-spacing:11.262240px;}
.ws53{word-spacing:11.362680px;}
.ws9b{word-spacing:12.504960px;}
.ws95{word-spacing:17.194320px;}
.ws4d{word-spacing:21.583080px;}
.ws4e{word-spacing:21.823560px;}
.ws63{word-spacing:21.943800px;}
.ws60{word-spacing:30.420720px;}
.ws55{word-spacing:35.230320px;}
.ws54{word-spacing:35.591040px;}
._9{margin-left:-6.998400px;}
._0{margin-left:-5.329800px;}
._7{margin-left:-4.233600px;}
._8{margin-left:-2.451600px;}
._5{margin-left:-1.242000px;}
._4{width:1.333800px;}
._2{width:2.754000px;}
._3{width:3.774600px;}
._6{width:5.113800px;}
._1{width:6.571800px;}
._d{width:7.725600px;}
._f{width:8.838144px;}
._19{width:10.162260px;}
._a{width:11.164320px;}
._12{width:12.274668px;}
._16{width:13.788684px;}
._1c{width:15.476544px;}
._1b{width:16.601760px;}
._1a{width:18.129600px;}
._c{width:19.797516px;}
._b{width:21.270456px;}
._17{width:22.520520px;}
._13{width:24.631164px;}
._1d{width:25.648920px;}
._18{width:30.123900px;}
._14{width:36.177696px;}
._10{width:37.546200px;}
._15{width:41.148000px;}
._e{width:42.930000px;}
._11{width:73.116000px;}
.fc3{color:transparent;}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs4{font-size:6.120000px;}
.fsc{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs1{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fsb{font-size:60.120000px;}
.fsd{font-size:63.372044px;}
.fs0{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:78.120000px;}
.fs6{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.239850px;}
.y42{bottom:3.240000px;}
.ya{bottom:3.330000px;}
.y11b{bottom:3.420000px;}
.y39{bottom:3.870000px;}
.y17d{bottom:4.050000px;}
.y144{bottom:4.140000px;}
.y4{bottom:4.410000px;}
.y38{bottom:4.500000px;}
.y7{bottom:5.580000px;}
.y9{bottom:6.840000px;}
.y1e0{bottom:7.020000px;}
.ya3{bottom:14.580000px;}
.y71{bottom:15.840000px;}
.y11d{bottom:16.380000px;}
.y44{bottom:17.910000px;}
.y2d{bottom:23.760000px;}
.y1b0{bottom:25.380000px;}
.y2c{bottom:40.230000px;}
.y5{bottom:69.660000px;}
.y31{bottom:95.580000px;}
.y30{bottom:96.300000px;}
.y6e{bottom:131.125500px;}
.y136{bottom:131.130000px;}
.y245{bottom:136.534230px;}
.ya1{bottom:136.890000px;}
.y274{bottom:141.404850px;}
.y1be{bottom:143.908380px;}
.y6d{bottom:147.595500px;}
.y175{bottom:147.600000px;}
.ya0{bottom:149.494500px;}
.y1a6{bottom:149.850000px;}
.y135{bottom:153.360000px;}
.yd1{bottom:155.160000px;}
.y244{bottom:158.222520px;}
.y3a{bottom:161.010000px;}
.y217{bottom:162.016020px;}
.y273{bottom:163.093140px;}
.y6c{bottom:164.065500px;}
.y1bd{bottom:164.436030px;}
.y9f{bottom:165.964500px;}
.y14c{bottom:167.760000px;}
.y18e{bottom:168.120000px;}
.y174{bottom:169.830000px;}
.y134{bottom:171.630000px;}
.yd0{bottom:173.520000px;}
.y1a5{bottom:174.424410px;}
.y37{bottom:176.760000px;}
.y243{bottom:176.949900px;}
.y1fb{bottom:177.307200px;}
.y6b{bottom:180.630000px;}
.y272{bottom:181.820520px;}
.y9e{bottom:182.434500px;}
.y14b{bottom:184.230000px;}
.y1bc{bottom:185.041170px;}
.y119{bottom:186.124500px;}
.y173{bottom:188.100000px;}
.y133{bottom:189.990000px;}
.ycf{bottom:191.790000px;}
.y1a4{bottom:195.028380px;}
.y6a{bottom:197.100000px;}
.y1fa{bottom:197.911170px;}
.y18d{bottom:198.634410px;}
.y242{bottom:198.638190px;}
.y14a{bottom:200.700000px;}
.y271{bottom:203.508810px;}
.y9d{bottom:204.570000px;}
.y1dd{bottom:204.750000px;}
.y1bb{bottom:205.562790px;}
.y118{bottom:208.260000px;}
.y216{bottom:209.531970px;}
.yce{bottom:210.060000px;}
.y2f{bottom:212.130000px;}
.y69{bottom:213.570000px;}
.y1a3{bottom:215.558820px;}
.y241{bottom:217.275390px;}
.y1f9{bottom:218.432790px;}
.y18c{bottom:219.238380px;}
.y36{bottom:220.756320px;}
.y9c{bottom:222.930000px;}
.yf7{bottom:223.020000px;}
.y270{bottom:225.197100px;}
.y1ba{bottom:226.084410px;}
.y117{bottom:226.620000px;}
.ycd{bottom:228.420000px;}
.y68{bottom:230.040000px;}
.y9b{bottom:235.534500px;}
.y1a2{bottom:236.080440px;}
.y35{bottom:238.133160px;}
.y240{bottom:238.963680px;}
.y1f8{bottom:239.036760px;}
.y132{bottom:239.490000px;}
.y18b{bottom:239.764410px;}
.y149{bottom:241.200000px;}
.y26f{bottom:243.924480px;}
.y116{bottom:244.890000px;}
.y1b9{bottom:246.688380px;}
.ycc{bottom:246.690000px;}
.y67{bottom:251.730000px;}
.y148{bottom:253.800000px;}
.y34{bottom:255.510000px;}
.y1a1{bottom:256.684410px;}
.y215{bottom:257.146740px;}
.y9a{bottom:257.670000px;}
.y23f{bottom:257.691060px;}
.y1f7{bottom:259.558380px;}
.y18a{bottom:260.368380px;}
.y115{bottom:263.160000px;}
.ycb{bottom:265.050000px;}
.y66{bottom:265.230000px;}
.y26e{bottom:265.612770px;}
.yf6{bottom:266.582790px;}
.y1b8{bottom:267.218820px;}
.y131{bottom:267.480000px;}
.y99{bottom:270.270000px;}
.y33{bottom:272.963160px;}
.y172{bottom:276.030000px;}
.y1a0{bottom:277.206030px;}
.y23e{bottom:279.379350px;}
.y1f6{bottom:280.080000px;}
.y189{bottom:280.908990px;}
.y114{bottom:281.520000px;}
.y1d{bottom:283.050000px;}
.yca{bottom:283.320000px;}
.y26d{bottom:284.249970px;}
.y65{bottom:286.200000px;}
.y98{bottom:286.834500px;}
.yf5{bottom:287.104410px;}
.y1b7{bottom:287.822790px;}
.y32{bottom:290.340000px;}
.y130{bottom:291.060000px;}
.y113{bottom:294.124500px;}
.y171{bottom:294.300000px;}
.y19f{bottom:297.817200px;}
.y64{bottom:299.250000px;}
.y23d{bottom:301.067640px;}
.y188{bottom:301.512960px;}
.yc9{bottom:301.680000px;}
.y97{bottom:303.304500px;}
.y1f5{bottom:303.660000px;}
.y214{bottom:304.662690px;}
.y26c{bottom:305.938260px;}
.yf4{bottom:307.708380px;}
.y1b6{bottom:308.344410px;}
.y147{bottom:308.970000px;}
.y170{bottom:312.660000px;}
.y12f{bottom:314.556030px;}
.y112{bottom:316.260000px;}
.y19e{bottom:318.338820px;}
.y96{bottom:319.774500px;}
.yc8{bottom:319.950000px;}
.y1c{bottom:321.300000px;}
.y146{bottom:321.930000px;}
.y187{bottom:322.034580px;}
.y23c{bottom:322.755930px;}
.y63{bottom:323.398800px;}
.y16f{bottom:325.620000px;}
.y1f4{bottom:327.244410px;}
.y26b{bottom:327.626550px;}
.yf3{bottom:328.236030px;}
.y1b5{bottom:328.948380px;}
.y111{bottom:329.220000px;}
.yc7{bottom:332.910000px;}
.y12e{bottom:335.168820px;}
.y95{bottom:336.244500px;}
.y19d{bottom:338.942790px;}
.y1dc{bottom:340.664850px;}
.y62{bottom:341.675280px;}
.y186{bottom:342.638550px;}
.y23b{bottom:344.444220px;}
.y145{bottom:344.520000px;}
.y2e{bottom:345.060000px;}
.y26a{bottom:346.353930px;}
.y2b{bottom:346.410000px;}
.y16e{bottom:347.308380px;}
.y1f3{bottom:347.766030px;}
.yf2{bottom:348.847200px;}
.y1b4{bottom:349.474410px;}
.y213{bottom:352.277460px;}
.y94{bottom:352.714500px;}
.y110{bottom:355.241610px;}
.y12d{bottom:355.690440px;}
.y19c{bottom:359.464410px;}
.y61{bottom:360.041940px;}
.y143{bottom:360.270000px;}
.y1db{bottom:361.268820px;}
.y185{bottom:366.124770px;}
.y23a{bottom:366.132510px;}
.y16d{bottom:367.830000px;}
.y269{bottom:368.042220px;}
.y1f2{bottom:368.403660px;}
.yf1{bottom:369.368820px;}
.y1b3{bottom:370.078380px;}
.yc6{bottom:372.798630px;}
.y93{bottom:374.850000px;}
.y10f{bottom:375.845580px;}
.y212{bottom:375.862500px;}
.y12c{bottom:376.294410px;}
.y2a{bottom:378.224640px;}
.y60{bottom:378.318420px;}
.y142{bottom:378.630000px;}
.y19b{bottom:380.068380px;}
.y1da{bottom:381.790440px;}
.y239{bottom:384.859890px;}
.y184{bottom:386.728740px;}
.y268{bottom:386.769600px;}
.y1f1{bottom:388.925280px;}
.yf0{bottom:389.972790px;}
.y1b2{bottom:390.600000px;}
.y16c{bottom:391.414410px;}
.y92{bottom:393.210000px;}
.yc5{bottom:393.402600px;}
.y29{bottom:395.601480px;}
.y10e{bottom:396.367200px;}
.y211{bottom:396.384120px;}
.y5f{bottom:396.685080px;}
.y12b{bottom:396.816030px;}
.y19a{bottom:400.590000px;}
.y1d9{bottom:402.394410px;}
.y91{bottom:406.170000px;}
.y1af{bottom:406.350000px;}
.y238{bottom:406.548180px;}
.y183{bottom:407.250360px;}
.y267{bottom:408.457890px;}
.y1f0{bottom:409.529250px;}
.yef{bottom:410.494410px;}
.y16b{bottom:412.018380px;}
.y28{bottom:412.978320px;}
.y1b1{bottom:413.370000px;}
.yc4{bottom:413.924220px;}
.y5e{bottom:414.961560px;}
.y199{bottom:416.340000px;}
.y10d{bottom:416.971170px;}
.y210{bottom:416.988090px;}
.y12a{bottom:417.420000px;}
.y1d8{bottom:422.916030px;}
.y28b{bottom:424.176840px;}
.y237{bottom:425.275560px;}
.y266{bottom:427.095090px;}
.y182{bottom:427.854330px;}
.y1ef{bottom:430.050870px;}
.y27{bottom:430.355160px;}
.yee{bottom:431.016030px;}
.y16a{bottom:432.546030px;}
.yc3{bottom:434.528190px;}
.y10c{bottom:437.492790px;}
.y20f{bottom:437.509710px;}
.ye{bottom:437.850000px;}
.y129{bottom:440.916030px;}
.y1d7{bottom:443.520000px;}
.y28a{bottom:445.865130px;}
.y1ae{bottom:445.950000px;}
.y236{bottom:446.963850px;}
.y198{bottom:447.030000px;}
.y26{bottom:447.817320px;}
.y181{bottom:448.375950px;}
.y265{bottom:448.783380px;}
.y1ee{bottom:450.654840px;}
.yed{bottom:451.620000px;}
.y169{bottom:453.150000px;}
.y90{bottom:453.514410px;}
.y5d{bottom:454.204890px;}
.yc2{bottom:455.049810px;}
.y10b{bottom:458.014410px;}
.y20e{bottom:461.094750px;}
.y128{bottom:461.528820px;}
.y25{bottom:465.194160px;}
.y235{bottom:465.601050px;}
.y1d6{bottom:467.010000px;}
.y264{bottom:467.510760px;}
.y289{bottom:467.553420px;}
.y1ed{bottom:471.176460px;}
.y180{bottom:473.492700px;}
.y8f{bottom:474.036030px;}
.yec{bottom:475.208820px;}
.yc1{bottom:475.653780px;}
.y168{bottom:476.650440px;}
.y10a{bottom:478.618380px;}
.y127{bottom:482.050440px;}
.y24{bottom:482.571000px;}
.y20d{bottom:484.679790px;}
.y234{bottom:487.289340px;}
.y263{bottom:489.199050px;}
.y288{bottom:489.241710px;}
.y1d5{bottom:490.604850px;}
.y1ec{bottom:491.780430px;}
.y5c{bottom:493.538400px;}
.y8e{bottom:494.633340px;}
.yeb{bottom:495.730440px;}
.y167{bottom:497.254410px;}
.y109{bottom:499.140000px;}
.yc0{bottom:499.146030px;}
.y23{bottom:499.947840px;}
.y126{bottom:502.654410px;}
.y17f{bottom:503.006940px;}
.y20c{bottom:505.201410px;}
.y233{bottom:508.977630px;}
.y262{bottom:510.887340px;}
.y287{bottom:510.930000px;}
.y1d4{bottom:511.208820px;}
.y5b{bottom:511.905060px;}
.y1eb{bottom:512.302050px;}
.y8d{bottom:515.154960px;}
.yea{bottom:516.334410px;}
.y22{bottom:517.410000px;}
.y166{bottom:517.776030px;}
.ybf{bottom:519.748380px;}
.y108{bottom:522.724410px;}
.y125{bottom:523.176030px;}
.y20b{bottom:525.723030px;}
.y232{bottom:527.705010px;}
.y261{bottom:529.614720px;}
.y5a{bottom:530.271720px;}
.y1d3{bottom:531.730440px;}
.y286{bottom:532.612620px;}
.y17e{bottom:532.620000px;}
.y1ea{bottom:532.906020px;}
.y21{bottom:534.764160px;}
.ye9{bottom:536.856030px;}
.y165{bottom:538.380000px;}
.y8c{bottom:538.744410px;}
.ybe{bottom:540.269370px;}
.y107{bottom:543.328380px;}
.y124{bottom:543.780000px;}
.y20a{bottom:546.327000px;}
.y260{bottom:548.342100px;}
.y17c{bottom:548.370000px;}
.y59{bottom:548.548200px;}
.y231{bottom:549.393300px;}
.y285{bottom:551.340000px;}
.y20{bottom:552.141000px;}
.y1d2{bottom:552.334410px;}
.y1e9{bottom:553.427640px;}
.ye8{bottom:557.460000px;}
.y8b{bottom:559.266030px;}
.ybd{bottom:560.873340px;}
.y164{bottom:561.956760px;}
.y106{bottom:563.858820px;}
.y17b{bottom:566.640000px;}
.y58{bottom:566.824680px;}
.y209{bottom:566.848620px;}
.y123{bottom:567.367200px;}
.y1f{bottom:569.603160px;}
.y25f{bottom:570.030390px;}
.y230{bottom:571.081590px;}
.y1d1{bottom:572.856030px;}
.y284{bottom:572.991300px;}
.y1e8{bottom:574.031610px;}
.y8a{bottom:579.872790px;}
.ye7{bottom:580.953420px;}
.ybc{bottom:581.394960px;}
.y163{bottom:582.478380px;}
.y105{bottom:584.462790px;}
.y57{bottom:585.191340px;}
.y1e{bottom:586.980000px;}
.y208{bottom:587.452590px;}
.y122{bottom:587.888820px;}
.y25e{bottom:588.667590px;}
.y1b{bottom:592.200000px;}
.y22f{bottom:592.769880px;}
.y1d0{bottom:593.458380px;}
.y1e7{bottom:594.553230px;}
.y283{bottom:594.679590px;}
.y89{bottom:600.394410px;}
.ye6{bottom:601.557390px;}
.y162{bottom:603.000000px;}
.y56{bottom:603.467820px;}
.y104{bottom:604.984410px;}
.ybb{bottom:604.984950px;}
.y207{bottom:607.974210px;}
.y121{bottom:608.410440px;}
.y25d{bottom:610.355880px;}
.y1cf{bottom:613.987200px;}
.y22e{bottom:614.458170px;}
.y1e6{bottom:615.074850px;}
.y282{bottom:616.367880px;}
.yd{bottom:617.940000px;}
.y88{bottom:620.998380px;}
.y55{bottom:621.834480px;}
.y103{bottom:625.506030px;}
.yba{bottom:625.506570px;}
.ye5{bottom:626.575320px;}
.y161{bottom:626.590440px;}
.y206{bottom:628.578180px;}
.y120{bottom:629.014410px;}
.y25c{bottom:629.083260px;}
.y1ce{bottom:634.508820px;}
.y281{bottom:635.095260px;}
.y1e5{bottom:635.678820px;}
.y22d{bottom:636.146460px;}
.y54{bottom:640.110960px;}
.y87{bottom:641.526030px;}
.y1a{bottom:641.700000px;}
.y102{bottom:646.110000px;}
.yb9{bottom:646.110540px;}
.y160{bottom:647.194410px;}
.y205{bottom:649.099800px;}
.y11f{bottom:649.536030px;}
.y25b{bottom:650.771550px;}
.y22c{bottom:654.873840px;}
.y1cd{bottom:655.112790px;}
.ye4{bottom:656.188380px;}
.y1e4{bottom:656.200440px;}
.y280{bottom:656.783550px;}
.y19{bottom:658.170000px;}
.y53{bottom:658.477620px;}
.y86{bottom:662.126040px;}
.yb8{bottom:666.632160px;}
.y15f{bottom:667.716030px;}
.y101{bottom:669.701610px;}
.y204{bottom:669.703770px;}
.y11e{bottom:670.140000px;}
.y25a{bottom:672.459840px;}
.y27f{bottom:675.420750px;}
.y1cc{bottom:675.634410px;}
.y22b{bottom:676.562130px;}
.ye3{bottom:676.710000px;}
.y52{bottom:676.754100px;}
.y1e3{bottom:676.804410px;}
.y18{bottom:679.590000px;}
.y85{bottom:682.647660px;}
.y11c{bottom:685.890000px;}
.yb7{bottom:687.236130px;}
.y15e{bottom:688.320000px;}
.y100{bottom:690.223230px;}
.y203{bottom:690.225390px;}
.y259{bottom:694.148130px;}
.y51{bottom:695.120760px;}
.y22a{bottom:695.289510px;}
.y1cb{bottom:696.238380px;}
.y27e{bottom:697.109040px;}
.y1e2{bottom:697.326030px;}
.ye2{bottom:700.290000px;}
.y17{bottom:701.550000px;}
.y84{bottom:703.251630px;}
.yb6{bottom:707.757750px;}
.yff{bottom:710.827200px;}
.y202{bottom:710.829360px;}
.y15d{bottom:711.820440px;}
.y50{bottom:713.397240px;}
.y258{bottom:715.836420px;}
.y11a{bottom:716.580000px;}
.y1ca{bottom:716.770440px;}
.y229{bottom:716.977800px;}
.y1e1{bottom:717.930000px;}
.y16{bottom:722.250000px;}
.y83{bottom:723.773250px;}
.ye1{bottom:725.322960px;}
.yb5{bottom:731.342790px;}
.yfe{bottom:731.348820px;}
.y201{bottom:731.350980px;}
.y4f{bottom:731.763900px;}
.y15c{bottom:732.424410px;}
.y1df{bottom:733.680000px;}
.y257{bottom:734.563800px;}
.y228{bottom:735.615000px;}
.y1c9{bottom:737.374410px;}
.y27d{bottom:737.524710px;}
.y15{bottom:743.670000px;}
.y82{bottom:748.890000px;}
.y4e{bottom:750.040380px;}
.yb4{bottom:751.946760px;}
.yfd{bottom:751.952790px;}
.y15b{bottom:752.946030px;}
.ye0{bottom:754.936020px;}
.y1de{bottom:755.010000px;}
.y256{bottom:756.252090px;}
.y227{bottom:757.303290px;}
.y1c8{bottom:757.896030px;}
.y4d{bottom:768.316860px;}
.yb3{bottom:772.468380px;}
.y141{bottom:772.472790px;}
.yfc{bottom:772.474410px;}
.y15a{bottom:773.550000px;}
.ydf{bottom:775.457640px;}
.y226{bottom:776.030670px;}
.y255{bottom:777.940380px;}
.y1c7{bottom:778.498380px;}
.y4c{bottom:786.683520px;}
.y81{bottom:790.020000px;}
.y140{bottom:792.994410px;}
.yfb{bottom:792.996030px;}
.yb2{bottom:792.998820px;}
.y225{bottom:794.758050px;}
.yde{bottom:796.061610px;}
.y27c{bottom:796.667760px;}
.y159{bottom:797.130450px;}
.y1c6{bottom:799.024410px;}
.y254{bottom:799.628670px;}
.y4b{bottom:804.960000px;}
.y14{bottom:812.250900px;}
.y224{bottom:813.395250px;}
.y13f{bottom:813.598380px;}
.yfa{bottom:813.600000px;}
.yb1{bottom:813.602790px;}
.ydd{bottom:816.583230px;}
.y158{bottom:817.652070px;}
.y253{bottom:818.356050px;}
.y1c5{bottom:819.628380px;}
.y80{bottom:829.177470px;}
.y13e{bottom:834.120000px;}
.yb0{bottom:834.124410px;}
.y223{bottom:835.083540px;}
.y27b{bottom:836.993250px;}
.ydc{bottom:837.187200px;}
.y252{bottom:840.044340px;}
.y1c4{bottom:840.148380px;}
.y13{bottom:841.591530px;}
.y157{bottom:842.670000px;}
.y7f{bottom:847.634310px;}
.yaf{bottom:854.728380px;}
.y222{bottom:856.771830px;}
.y13d{bottom:857.706030px;}
.ydb{bottom:857.708820px;}
.y27a{bottom:858.681540px;}
.y197{bottom:858.778380px;}
.y4a{bottom:860.039010px;}
.y1c3{bottom:860.676030px;}
.y251{bottom:861.732630px;}
.y12{bottom:870.836040px;}
.y156{bottom:872.282790px;}
.yae{bottom:875.264220px;}
.y221{bottom:875.499210px;}
.y1ad{bottom:878.308380px;}
.y13c{bottom:878.311170px;}
.yda{bottom:878.312790px;}
.y196{bottom:879.306030px;}
.y279{bottom:880.369830px;}
.y1c2{bottom:881.278380px;}
.y250{bottom:883.420920px;}
.y7e{bottom:886.877640px;}
.y155{bottom:892.804410px;}
.yad{bottom:895.868190px;}
.y220{bottom:897.187500px;}
.y1ac{bottom:898.829370px;}
.y13b{bottom:898.832790px;}
.yd9{bottom:898.834410px;}
.y278{bottom:899.097210px;}
.y195{bottom:899.908380px;}
.y1c1{bottom:901.806030px;}
.y24f{bottom:902.058120px;}
.y7d{bottom:905.244300px;}
.y49{bottom:910.618380px;}
.y154{bottom:913.408380px;}
.y21f{bottom:915.914880px;}
.yac{bottom:916.389810px;}
.y13a{bottom:919.436760px;}
.yd8{bottom:919.438380px;}
.y194{bottom:920.428740px;}
.y277{bottom:920.785500px;}
.y1ab{bottom:922.414410px;}
.y7c{bottom:923.520780px;}
.y24e{bottom:923.746410px;}
.y48{bottom:931.140000px;}
.y153{bottom:933.930000px;}
.yab{bottom:936.993780px;}
.y21e{bottom:937.603170px;}
.y139{bottom:939.958380px;}
.yf9{bottom:939.960000px;}
.y200{bottom:939.964410px;}
.yd7{bottom:939.968190px;}
.y7b{bottom:941.887440px;}
.y276{bottom:942.473790px;}
.y1aa{bottom:942.936030px;}
.y11{bottom:945.184860px;}
.y24d{bottom:945.434700px;}
.y193{bottom:945.545490px;}
.y21d{bottom:956.330550px;}
.y152{bottom:957.514410px;}
.y7a{bottom:960.163920px;}
.y138{bottom:960.480000px;}
.yaa{bottom:960.484410px;}
.y1ff{bottom:960.486030px;}
.y17a{bottom:960.488820px;}
.yd6{bottom:960.489810px;}
.y1c0{bottom:963.538380px;}
.y1a9{bottom:963.544410px;}
.yf8{bottom:963.553230px;}
.y24c{bottom:964.162080px;}
.y192{bottom:966.067110px;}
.y47{bottom:970.654680px;}
.y10{bottom:974.429370px;}
.y21c{bottom:978.018840px;}
.y151{bottom:978.118380px;}
.y79{bottom:978.530580px;}
.ya9{bottom:981.088380px;}
.y179{bottom:981.092790px;}
.y1fe{bottom:981.094410px;}
.y137{bottom:984.066030px;}
.yd5{bottom:984.074850px;}
.y24b{bottom:985.850370px;}
.y46{bottom:994.950000px;}
.y191{bottom:995.581350px;}
.y21b{bottom:996.656040px;}
.y78{bottom:996.807060px;}
.y150{bottom:998.640000px;}
.ya8{bottom:1001.609370px;}
.y178{bottom:1001.614410px;}
.y1fd{bottom:1001.616030px;}
.yf{bottom:1003.770000px;}
.y275{bottom:1004.577750px;}
.y1bf{bottom:1004.668380px;}
.y1a8{bottom:1004.674410px;}
.yd4{bottom:1004.678820px;}
.y24a{bottom:1007.538660px;}
.y77{bottom:1015.173720px;}
.y21a{bottom:1018.344330px;}
.ya7{bottom:1022.213340px;}
.y177{bottom:1022.218380px;}
.y14f{bottom:1022.224410px;}
.y190{bottom:1025.194410px;}
.y1a7{bottom:1025.196030px;}
.yd3{bottom:1025.200440px;}
.y249{bottom:1026.266040px;}
.y76{bottom:1033.450200px;}
.y219{bottom:1040.032620px;}
.ya6{bottom:1042.734960px;}
.y176{bottom:1042.740000px;}
.y14e{bottom:1042.746030px;}
.y18f{bottom:1045.798380px;}
.yd2{bottom:1045.804410px;}
.y248{bottom:1047.954330px;}
.y75{bottom:1051.816860px;}
.y43{bottom:1058.490000px;}
.y218{bottom:1058.760000px;}
.y1fc{bottom:1063.344960px;}
.y14d{bottom:1063.350000px;}
.y40{bottom:1064.068920px;}
.ya5{bottom:1066.326030px;}
.y247{bottom:1066.681710px;}
.y74{bottom:1070.093340px;}
.y3{bottom:1071.540000px;}
.y3f{bottom:1076.852340px;}
.yc{bottom:1079.910000px;}
.ya4{bottom:1086.930000px;}
.y41{bottom:1087.830000px;}
.y246{bottom:1088.370000px;}
.y73{bottom:1088.460000px;}
.y3e{bottom:1089.720000px;}
.y2{bottom:1097.100000px;}
.yb{bottom:1097.460000px;}
.y6{bottom:1098.900000px;}
.y3d{bottom:1102.410000px;}
.y70{bottom:1106.100000px;}
.ya2{bottom:1106.910000px;}
.y1{bottom:1111.590000px;}
.y8{bottom:1115.100000px;}
.y6f{bottom:1121.760000px;}
.y72{bottom:1121.940000px;}
.y3c{bottom:1122.480000px;}
.y3b{bottom:1160.460000px;}
.h15{height:2.259844px;}
.ha{height:4.852969px;}
.h1d{height:14.580000px;}
.h9{height:16.200000px;}
.h19{height:16.740000px;}
.h44{height:18.270000px;}
.h41{height:18.360000px;}
.h7{height:19.710000px;}
.h4c{height:21.330000px;}
.h25{height:24.372070px;}
.h26{height:25.913672px;}
.h31{height:28.170000px;}
.h1f{height:29.340000px;}
.h27{height:29.430000px;}
.h30{height:30.507891px;}
.h3d{height:30.690000px;}
.h1b{height:33.050215px;}
.h17{height:35.370000px;}
.h6{height:35.910000px;}
.h1e{height:37.569902px;}
.h3{height:37.967344px;}
.h1c{height:37.971664px;}
.h4a{height:39.600000px;}
.h24{height:41.655410px;}
.hf{height:42.372070px;}
.h8{height:42.820312px;}
.h18{height:43.664062px;}
.h5{height:43.909277px;}
.h13{height:44.631914px;}
.h12{height:45.104063px;}
.h29{height:47.174238px;}
.h23{height:47.673281px;}
.h28{height:48.318401px;}
.h22{height:48.612656px;}
.h4f{height:49.726013px;}
.h2a{height:51.693926px;}
.h49{height:51.696446px;}
.h46{height:51.698966px;}
.h47{height:51.700406px;}
.h4e{height:51.714086px;}
.h2{height:52.240781px;}
.h14{height:53.100000px;}
.h10{height:53.270156px;}
.h4d{height:57.035575px;}
.h45{height:57.094255px;}
.h34{height:57.113335px;}
.h3a{height:57.117295px;}
.h3b{height:57.123775px;}
.h42{height:57.128455px;}
.h35{height:57.134935px;}
.h38{height:57.137455px;}
.h39{height:57.141415px;}
.h3f{height:57.145495px;}
.h2c{height:57.146095px;}
.h36{height:57.150415px;}
.h2e{height:57.152575px;}
.h2d{height:57.159055px;}
.h3e{height:57.165535px;}
.h32{height:57.170215px;}
.h33{height:57.172735px;}
.h37{height:57.176695px;}
.h43{height:57.183175px;}
.h2b{height:57.186055px;}
.h2f{height:57.196855px;}
.h21{height:57.523804px;}
.hb{height:58.218750px;}
.h20{height:63.167344px;}
.he{height:76.220156px;}
.hd{height:77.722031px;}
.h4{height:85.050000px;}
.h16{height:109.170000px;}
.h11{height:296.640000px;}
.h4b{height:347.670000px;}
.h40{height:386.010000px;}
.h3c{height:386.100000px;}
.h48{height:403.920000px;}
.hc{height:453.600000px;}
.h0{height:1262.880000px;}
.h1a{height:1262.970000px;}
.h1{height:1263.000000px;}
.wb{width:26.190000px;}
.wa{width:26.280000px;}
.w4{width:140.040000px;}
.w2{width:155.880000px;}
.w7{width:174.601500px;}
.w9{width:332.460000px;}
.w5{width:367.200000px;}
.w6{width:410.130000px;}
.w3{width:523.710000px;}
.wc{width:654.120000px;}
.w0{width:892.980000px;}
.w8{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x23{left:11.880000px;}
.x2a{left:30.690000px;}
.x11{left:63.450000px;}
.x2d{left:69.930000px;}
.xe{left:103.500000px;}
.x3{left:106.290000px;}
.xf{left:108.990000px;}
.x1d{left:119.070000px;}
.x13{left:123.300000px;}
.x20{left:133.470000px;}
.x7{left:135.000000px;}
.x2{left:136.260000px;}
.x1e{left:140.391000px;}
.x21{left:144.543690px;}
.x18{left:159.930000px;}
.x1a{left:180.360000px;}
.x16{left:207.450000px;}
.x1{left:219.150000px;}
.x19{left:229.866930px;}
.x27{left:231.300000px;}
.x17{left:238.140000px;}
.xa{left:254.070000px;}
.x15{left:258.570000px;}
.x5{left:262.170000px;}
.x6{left:270.270000px;}
.x9{left:279.270000px;}
.x1b{left:325.707750px;}
.xb{left:349.740000px;}
.x1c{left:356.210190px;}
.xc{left:367.650000px;}
.x30{left:376.380000px;}
.x31{left:380.430000px;}
.x2b{left:381.690000px;}
.x1f{left:384.210000px;}
.x2f{left:387.540000px;}
.x8{left:410.670000px;}
.x2e{left:446.481720px;}
.x14{left:447.930000px;}
.xd{left:455.400000px;}
.x25{left:503.640000px;}
.x26{left:508.590000px;}
.x24{left:529.560000px;}
.x29{left:619.560000px;}
.x10{left:626.580000px;}
.x2c{left:635.310000px;}
.x28{left:636.390000px;}
.x12{left:647.280000px;}
.x22{left:735.120000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-5.435520pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.563520pt;}
.v1{vertical-align:21.443520pt;}
.lsb{letter-spacing:-2.448000pt;}
.ls56{letter-spacing:-2.342400pt;}
.ls6b{letter-spacing:-1.698240pt;}
.ls21{letter-spacing:-1.314560pt;}
.ls20{letter-spacing:-1.112320pt;}
.ls47{letter-spacing:-1.054080pt;}
.ls1f{letter-spacing:-0.960640pt;}
.ls22{letter-spacing:-0.910080pt;}
.ls6a{letter-spacing:-0.761280pt;}
.ls14{letter-spacing:-0.758400pt;}
.ls12{letter-spacing:-0.707840pt;}
.ls18{letter-spacing:-0.657280pt;}
.lsc{letter-spacing:-0.624000pt;}
.ls19{letter-spacing:-0.606720pt;}
.ls1b{letter-spacing:-0.455040pt;}
.ls41{letter-spacing:-0.427520pt;}
.ls69{letter-spacing:-0.409920pt;}
.ls13{letter-spacing:-0.404480pt;}
.ls72{letter-spacing:-0.374080pt;}
.ls1a{letter-spacing:-0.353920pt;}
.ls4a{letter-spacing:-0.336000pt;}
.ls39{letter-spacing:-0.320640pt;}
.ls3a{letter-spacing:-0.288000pt;}
.ls61{letter-spacing:-0.267200pt;}
.ls37{letter-spacing:-0.213760pt;}
.ls62{letter-spacing:-0.160320pt;}
.ls1c{letter-spacing:-0.151680pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.127680pt;}
.ls42{letter-spacing:-0.117120pt;}
.ls2f{letter-spacing:-0.112320pt;}
.ls36{letter-spacing:-0.106880pt;}
.ls16{letter-spacing:-0.101120pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.085440pt;}
.ls33{letter-spacing:-0.069440pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls43{letter-spacing:-0.058560pt;}
.ls38{letter-spacing:-0.053440pt;}
.ls17{letter-spacing:-0.050560pt;}
.ls1d{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.010688pt;}
.ls5{letter-spacing:0.014720pt;}
.ls74{letter-spacing:0.021376pt;}
.ls6e{letter-spacing:0.026720pt;}
.ls65{letter-spacing:0.030400pt;}
.lsa{letter-spacing:0.042560pt;}
.ls23{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.050560pt;}
.ls35{letter-spacing:0.053440pt;}
.ls34{letter-spacing:0.058560pt;}
.ls49{letter-spacing:0.069120pt;}
.ls2e{letter-spacing:0.074880pt;}
.ls40{letter-spacing:0.078080pt;}
.ls67{letter-spacing:0.082560pt;}
.ls30{letter-spacing:0.085120pt;}
.ls6{letter-spacing:0.093440pt;}
.ls45{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.101120pt;}
.ls57{letter-spacing:0.101760pt;}
.ls29{letter-spacing:0.106880pt;}
.ls24{letter-spacing:0.112320pt;}
.ls8{letter-spacing:0.116288pt;}
.ls66{letter-spacing:0.117120pt;}
.ls7{letter-spacing:0.136320pt;}
.ls3{letter-spacing:0.151680pt;}
.ls68{letter-spacing:0.160320pt;}
.ls32{letter-spacing:0.170240pt;}
.lse{letter-spacing:0.170880pt;}
.ls4d{letter-spacing:0.175680pt;}
.ls25{letter-spacing:0.182080pt;}
.ls2{letter-spacing:0.197184pt;}
.ls58{letter-spacing:0.217920pt;}
.ls27{letter-spacing:0.234240pt;}
.ls44{letter-spacing:0.292800pt;}
.ls4c{letter-spacing:0.298656pt;}
.ls1e{letter-spacing:0.303360pt;}
.ls48{letter-spacing:0.351360pt;}
.ls52{letter-spacing:0.374784pt;}
.ls54{letter-spacing:0.409920pt;}
.ls5e{letter-spacing:0.421760pt;}
.ls64{letter-spacing:0.436800pt;}
.ls50{letter-spacing:0.527040pt;}
.ls1{letter-spacing:0.758400pt;}
.ls51{letter-spacing:1.171200pt;}
.ls3e{letter-spacing:1.464000pt;}
.ls5a{letter-spacing:1.815360pt;}
.ls4f{letter-spacing:2.108160pt;}
.ls26{letter-spacing:2.738560pt;}
.ls5d{letter-spacing:2.752320pt;}
.ls4e{letter-spacing:3.075840pt;}
.ls2a{letter-spacing:3.259840pt;}
.ls5f{letter-spacing:3.396480pt;}
.ls3d{letter-spacing:3.580480pt;}
.ls28{letter-spacing:4.221760pt;}
.ls46{letter-spacing:4.684800pt;}
.ls76{letter-spacing:5.183680pt;}
.ls3c{letter-spacing:5.221088pt;}
.ls59{letter-spacing:5.328960pt;}
.ls71{letter-spacing:5.387520pt;}
.ls3f{letter-spacing:5.621760pt;}
.ls2b{letter-spacing:6.145600pt;}
.ls55{letter-spacing:6.265920pt;}
.ls3b{letter-spacing:6.519680pt;}
.ls53{letter-spacing:6.910080pt;}
.ls5b{letter-spacing:7.261440pt;}
.ls6d{letter-spacing:7.428160pt;}
.ls5c{letter-spacing:8.842560pt;}
.ls70{letter-spacing:9.352000pt;}
.ls60{letter-spacing:9.486720pt;}
.ls63{letter-spacing:10.423680pt;}
.ls6c{letter-spacing:11.275840pt;}
.ls73{letter-spacing:12.879040pt;}
.ls4b{letter-spacing:13.351680pt;}
.ls75{letter-spacing:22.177600pt;}
.ls2c{letter-spacing:33.600000pt;}
.ls2d{letter-spacing:64.992000pt;}
.ls0{letter-spacing:99.456000pt;}
.ws3d{word-spacing:-34.560000pt;}
.ws42{word-spacing:-32.000000pt;}
.ws8a{word-spacing:-18.622080pt;}
.ws2{word-spacing:-14.464000pt;}
.ws1{word-spacing:-14.336000pt;}
.ws75{word-spacing:-13.585920pt;}
.ws84{word-spacing:-13.351680pt;}
.ws73{word-spacing:-13.293120pt;}
.ws7b{word-spacing:-13.234560pt;}
.ws7a{word-spacing:-13.176000pt;}
.ws69{word-spacing:-13.117440pt;}
.ws8b{word-spacing:-12.184320pt;}
.ws3e{word-spacing:-12.130880pt;}
.ws40{word-spacing:-12.077440pt;}
.ws41{word-spacing:-12.024000pt;}
.ws3f{word-spacing:-11.970560pt;}
.ws8c{word-spacing:-11.917120pt;}
.ws8e{word-spacing:-11.863680pt;}
.ws82{word-spacing:-11.810240pt;}
.ws10{word-spacing:-11.729920pt;}
.ws8d{word-spacing:-11.703360pt;}
.ws68{word-spacing:-11.649920pt;}
.wsf{word-spacing:-11.527680pt;}
.wsb{word-spacing:-11.477120pt;}
.ws7{word-spacing:-11.426560pt;}
.ws5{word-spacing:-11.376000pt;}
.wsd{word-spacing:-11.325440pt;}
.ws9{word-spacing:-11.072640pt;}
.wse{word-spacing:-10.971520pt;}
.ws13{word-spacing:-10.896000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.819840pt;}
.wsc{word-spacing:-10.800000pt;}
.ws6{word-spacing:-10.769280pt;}
.ws3{word-spacing:-10.752000pt;}
.wsa{word-spacing:-10.668160pt;}
.ws43{word-spacing:-10.560000pt;}
.ws11{word-spacing:-10.465920pt;}
.ws12{word-spacing:-10.112000pt;}
.ws0{word-spacing:-9.661120pt;}
.ws3c{word-spacing:-9.490880pt;}
.ws6b{word-spacing:-8.461440pt;}
.ws74{word-spacing:-8.349120pt;}
.ws77{word-spacing:-7.879680pt;}
.ws9e{word-spacing:-5.183680pt;}
.ws91{word-spacing:-2.618560pt;}
.ws4b{word-spacing:-2.351360pt;}
.ws9d{word-spacing:-2.244480pt;}
.ws7d{word-spacing:-2.108160pt;}
.ws9c{word-spacing:-1.870400pt;}
.ws59{word-spacing:-1.816960pt;}
.ws6d{word-spacing:-1.763520pt;}
.ws58{word-spacing:-1.710080pt;}
.ws4f{word-spacing:-1.282560pt;}
.ws29{word-spacing:-1.162880pt;}
.ws15{word-spacing:-1.104000pt;}
.ws5d{word-spacing:-0.961920pt;}
.ws57{word-spacing:-0.801600pt;}
.ws66{word-spacing:-0.748160pt;}
.ws5e{word-spacing:-0.641280pt;}
.ws19{word-spacing:-0.598080pt;}
.ws5f{word-spacing:-0.427520pt;}
.ws88{word-spacing:-0.409920pt;}
.ws51{word-spacing:-0.320640pt;}
.ws71{word-spacing:-0.292800pt;}
.ws93{word-spacing:-0.267200pt;}
.ws18{word-spacing:-0.256320pt;}
.ws3b{word-spacing:-0.224640pt;}
.ws50{word-spacing:-0.213760pt;}
.ws7c{word-spacing:-0.175680pt;}
.ws48{word-spacing:-0.170240pt;}
.ws85{word-spacing:-0.160320pt;}
.ws6c{word-spacing:-0.151680pt;}
.ws38{word-spacing:-0.127680pt;}
.ws1b{word-spacing:-0.117120pt;}
.ws52{word-spacing:-0.106880pt;}
.ws76{word-spacing:-0.103680pt;}
.ws31{word-spacing:-0.101120pt;}
.ws72{word-spacing:-0.096000pt;}
.ws47{word-spacing:-0.085120pt;}
.ws45{word-spacing:-0.074880pt;}
.ws1c{word-spacing:-0.064000pt;}
.ws70{word-spacing:-0.058560pt;}
.ws7e{word-spacing:-0.053440pt;}
.ws32{word-spacing:-0.050560pt;}
.ws44{word-spacing:-0.048000pt;}
.ws3a{word-spacing:-0.042560pt;}
.ws37{word-spacing:-0.037440pt;}
.ws14{word-spacing:0.000000pt;}
.ws35{word-spacing:0.048000pt;}
.ws2f{word-spacing:0.050560pt;}
.ws67{word-spacing:0.053440pt;}
.ws6a{word-spacing:0.058560pt;}
.ws49{word-spacing:0.069440pt;}
.ws36{word-spacing:0.074880pt;}
.ws39{word-spacing:0.085120pt;}
.ws1a{word-spacing:0.085440pt;}
.ws30{word-spacing:0.096000pt;}
.ws26{word-spacing:0.101120pt;}
.ws65{word-spacing:0.106880pt;}
.ws46{word-spacing:0.112320pt;}
.ws4a{word-spacing:0.117120pt;}
.ws2e{word-spacing:0.151680pt;}
.ws83{word-spacing:0.160320pt;}
.ws33{word-spacing:0.202240pt;}
.ws56{word-spacing:0.213760pt;}
.ws8f{word-spacing:0.267200pt;}
.ws98{word-spacing:0.320640pt;}
.ws79{word-spacing:0.336000pt;}
.ws94{word-spacing:0.374080pt;}
.ws1f{word-spacing:0.404480pt;}
.ws86{word-spacing:0.409920pt;}
.ws2d{word-spacing:0.455040pt;}
.ws97{word-spacing:0.587840pt;}
.ws17{word-spacing:0.624000pt;}
.ws21{word-spacing:0.707840pt;}
.ws20{word-spacing:0.758400pt;}
.ws87{word-spacing:0.761280pt;}
.ws99{word-spacing:0.855040pt;}
.ws9f{word-spacing:0.908480pt;}
.ws22{word-spacing:1.011200pt;}
.ws78{word-spacing:1.054080pt;}
.ws23{word-spacing:1.061760pt;}
.ws34{word-spacing:1.112320pt;}
.ws28{word-spacing:1.365120pt;}
.ws81{word-spacing:1.522560pt;}
.ws80{word-spacing:1.581120pt;}
.ws89{word-spacing:1.698240pt;}
.ws27{word-spacing:1.820160pt;}
.wsa0{word-spacing:2.191040pt;}
.ws7f{word-spacing:2.342400pt;}
.ws16{word-spacing:2.448000pt;}
.ws9a{word-spacing:3.152960pt;}
.ws62{word-spacing:3.473600pt;}
.ws6e{word-spacing:3.580480pt;}
.ws6f{word-spacing:3.687360pt;}
.ws4c{word-spacing:3.794240pt;}
.ws5a{word-spacing:3.901120pt;}
.ws61{word-spacing:4.008000pt;}
.ws5b{word-spacing:4.114880pt;}
.ws5c{word-spacing:4.542400pt;}
.ws96{word-spacing:5.023360pt;}
.ws25{word-spacing:5.460480pt;}
.ws24{word-spacing:5.511040pt;}
.ws1e{word-spacing:6.218880pt;}
.ws64{word-spacing:6.359360pt;}
.ws1d{word-spacing:6.471680pt;}
.ws92{word-spacing:7.374720pt;}
.ws90{word-spacing:8.283200pt;}
.ws2c{word-spacing:9.505280pt;}
.ws2b{word-spacing:9.707520pt;}
.ws2a{word-spacing:10.010880pt;}
.ws53{word-spacing:10.100160pt;}
.ws9b{word-spacing:11.115520pt;}
.ws95{word-spacing:15.283840pt;}
.ws4d{word-spacing:19.184960pt;}
.ws4e{word-spacing:19.398720pt;}
.ws63{word-spacing:19.505600pt;}
.ws60{word-spacing:27.040640pt;}
.ws55{word-spacing:31.315840pt;}
.ws54{word-spacing:31.636480pt;}
._9{margin-left:-6.220800pt;}
._0{margin-left:-4.737600pt;}
._7{margin-left:-3.763200pt;}
._8{margin-left:-2.179200pt;}
._5{margin-left:-1.104000pt;}
._4{width:1.185600pt;}
._2{width:2.448000pt;}
._3{width:3.355200pt;}
._6{width:4.545600pt;}
._1{width:5.841600pt;}
._d{width:6.867200pt;}
._f{width:7.856128pt;}
._19{width:9.033120pt;}
._a{width:9.923840pt;}
._12{width:10.910816pt;}
._16{width:12.256608pt;}
._1c{width:13.756928pt;}
._1b{width:14.757120pt;}
._1a{width:16.115200pt;}
._c{width:17.597792pt;}
._b{width:18.907072pt;}
._17{width:20.018240pt;}
._13{width:21.894368pt;}
._1d{width:22.799040pt;}
._18{width:26.776800pt;}
._14{width:32.157952pt;}
._10{width:33.374400pt;}
._15{width:36.576000pt;}
._e{width:38.160000pt;}
._11{width:64.992000pt;}
.fs8{font-size:2.560000pt;}
.fs4{font-size:5.440000pt;}
.fsc{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs1{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fsb{font-size:53.440000pt;}
.fsd{font-size:56.330706pt;}
.fs0{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:69.440000pt;}
.fs6{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.879867pt;}
.y42{bottom:2.880000pt;}
.ya{bottom:2.960000pt;}
.y11b{bottom:3.040000pt;}
.y39{bottom:3.440000pt;}
.y17d{bottom:3.600000pt;}
.y144{bottom:3.680000pt;}
.y4{bottom:3.920000pt;}
.y38{bottom:4.000000pt;}
.y7{bottom:4.960000pt;}
.y9{bottom:6.080000pt;}
.y1e0{bottom:6.240000pt;}
.ya3{bottom:12.960000pt;}
.y71{bottom:14.080000pt;}
.y11d{bottom:14.560000pt;}
.y44{bottom:15.920000pt;}
.y2d{bottom:21.120000pt;}
.y1b0{bottom:22.560000pt;}
.y2c{bottom:35.760000pt;}
.y5{bottom:61.920000pt;}
.y31{bottom:84.960000pt;}
.y30{bottom:85.600000pt;}
.y6e{bottom:116.556000pt;}
.y136{bottom:116.560000pt;}
.y245{bottom:121.363760pt;}
.ya1{bottom:121.680000pt;}
.y274{bottom:125.693200pt;}
.y1be{bottom:127.918560pt;}
.y6d{bottom:131.196000pt;}
.y175{bottom:131.200000pt;}
.ya0{bottom:132.884000pt;}
.y1a6{bottom:133.200000pt;}
.y135{bottom:136.320000pt;}
.yd1{bottom:137.920000pt;}
.y244{bottom:140.642240pt;}
.y3a{bottom:143.120000pt;}
.y217{bottom:144.014240pt;}
.y273{bottom:144.971680pt;}
.y6c{bottom:145.836000pt;}
.y1bd{bottom:146.165360pt;}
.y9f{bottom:147.524000pt;}
.y14c{bottom:149.120000pt;}
.y18e{bottom:149.440000pt;}
.y174{bottom:150.960000pt;}
.y134{bottom:152.560000pt;}
.yd0{bottom:154.240000pt;}
.y1a5{bottom:155.043920pt;}
.y37{bottom:157.120000pt;}
.y243{bottom:157.288800pt;}
.y1fb{bottom:157.606400pt;}
.y6b{bottom:160.560000pt;}
.y272{bottom:161.618240pt;}
.y9e{bottom:162.164000pt;}
.y14b{bottom:163.760000pt;}
.y1bc{bottom:164.481040pt;}
.y119{bottom:165.444000pt;}
.y173{bottom:167.200000pt;}
.y133{bottom:168.880000pt;}
.ycf{bottom:170.480000pt;}
.y1a4{bottom:173.358560pt;}
.y6a{bottom:175.200000pt;}
.y1fa{bottom:175.921040pt;}
.y18d{bottom:176.563920pt;}
.y242{bottom:176.567280pt;}
.y14a{bottom:178.400000pt;}
.y271{bottom:180.896720pt;}
.y9d{bottom:181.840000pt;}
.y1dd{bottom:182.000000pt;}
.y1bb{bottom:182.722480pt;}
.y118{bottom:185.120000pt;}
.y216{bottom:186.250640pt;}
.yce{bottom:186.720000pt;}
.y2f{bottom:188.560000pt;}
.y69{bottom:189.840000pt;}
.y1a3{bottom:191.607840pt;}
.y241{bottom:193.133680pt;}
.y1f9{bottom:194.162480pt;}
.y18c{bottom:194.878560pt;}
.y36{bottom:196.227840pt;}
.y9c{bottom:198.160000pt;}
.yf7{bottom:198.240000pt;}
.y270{bottom:200.175200pt;}
.y1ba{bottom:200.963920pt;}
.y117{bottom:201.440000pt;}
.ycd{bottom:203.040000pt;}
.y68{bottom:204.480000pt;}
.y9b{bottom:209.364000pt;}
.y1a2{bottom:209.849280pt;}
.y35{bottom:211.673920pt;}
.y240{bottom:212.412160pt;}
.y1f8{bottom:212.477120pt;}
.y132{bottom:212.880000pt;}
.y18b{bottom:213.123920pt;}
.y149{bottom:214.400000pt;}
.y26f{bottom:216.821760pt;}
.y116{bottom:217.680000pt;}
.y1b9{bottom:219.278560pt;}
.ycc{bottom:219.280000pt;}
.y67{bottom:223.760000pt;}
.y148{bottom:225.600000pt;}
.y34{bottom:227.120000pt;}
.y1a1{bottom:228.163920pt;}
.y215{bottom:228.574880pt;}
.y9a{bottom:229.040000pt;}
.y23f{bottom:229.058720pt;}
.y1f7{bottom:230.718560pt;}
.y18a{bottom:231.438560pt;}
.y115{bottom:233.920000pt;}
.ycb{bottom:235.600000pt;}
.y66{bottom:235.760000pt;}
.y26e{bottom:236.100240pt;}
.yf6{bottom:236.962480pt;}
.y1b8{bottom:237.527840pt;}
.y131{bottom:237.760000pt;}
.y99{bottom:240.240000pt;}
.y33{bottom:242.633920pt;}
.y172{bottom:245.360000pt;}
.y1a0{bottom:246.405360pt;}
.y23e{bottom:248.337200pt;}
.y1f6{bottom:248.960000pt;}
.y189{bottom:249.696880pt;}
.y114{bottom:250.240000pt;}
.y1d{bottom:251.600000pt;}
.yca{bottom:251.840000pt;}
.y26d{bottom:252.666640pt;}
.y65{bottom:254.400000pt;}
.y98{bottom:254.964000pt;}
.yf5{bottom:255.203920pt;}
.y1b7{bottom:255.842480pt;}
.y32{bottom:258.080000pt;}
.y130{bottom:258.720000pt;}
.y113{bottom:261.444000pt;}
.y171{bottom:261.600000pt;}
.y19f{bottom:264.726400pt;}
.y64{bottom:266.000000pt;}
.y23d{bottom:267.615680pt;}
.y188{bottom:268.011520pt;}
.yc9{bottom:268.160000pt;}
.y97{bottom:269.604000pt;}
.y1f5{bottom:269.920000pt;}
.y214{bottom:270.811280pt;}
.y26c{bottom:271.945120pt;}
.yf4{bottom:273.518560pt;}
.y1b6{bottom:274.083920pt;}
.y147{bottom:274.640000pt;}
.y170{bottom:277.920000pt;}
.y12f{bottom:279.605360pt;}
.y112{bottom:281.120000pt;}
.y19e{bottom:282.967840pt;}
.y96{bottom:284.244000pt;}
.yc8{bottom:284.400000pt;}
.y1c{bottom:285.600000pt;}
.y146{bottom:286.160000pt;}
.y187{bottom:286.252960pt;}
.y23c{bottom:286.894160pt;}
.y63{bottom:287.465600pt;}
.y16f{bottom:289.440000pt;}
.y1f4{bottom:290.883920pt;}
.y26b{bottom:291.223600pt;}
.yf3{bottom:291.765360pt;}
.y1b5{bottom:292.398560pt;}
.y111{bottom:292.640000pt;}
.yc7{bottom:295.920000pt;}
.y12e{bottom:297.927840pt;}
.y95{bottom:298.884000pt;}
.y19d{bottom:301.282480pt;}
.y1dc{bottom:302.813200pt;}
.y62{bottom:303.711360pt;}
.y186{bottom:304.567600pt;}
.y23b{bottom:306.172640pt;}
.y145{bottom:306.240000pt;}
.y2e{bottom:306.720000pt;}
.y26a{bottom:307.870160pt;}
.y2b{bottom:307.920000pt;}
.y16e{bottom:308.718560pt;}
.y1f3{bottom:309.125360pt;}
.yf2{bottom:310.086400pt;}
.y1b4{bottom:310.643920pt;}
.y213{bottom:313.135520pt;}
.y94{bottom:313.524000pt;}
.y110{bottom:315.770320pt;}
.y12d{bottom:316.169280pt;}
.y19c{bottom:319.523920pt;}
.y61{bottom:320.037280pt;}
.y143{bottom:320.240000pt;}
.y1db{bottom:321.127840pt;}
.y185{bottom:325.444240pt;}
.y23a{bottom:325.451120pt;}
.y16d{bottom:326.960000pt;}
.y269{bottom:327.148640pt;}
.y1f2{bottom:327.469920pt;}
.yf1{bottom:328.327840pt;}
.y1b3{bottom:328.958560pt;}
.yc6{bottom:331.376560pt;}
.y93{bottom:333.200000pt;}
.y10f{bottom:334.084960pt;}
.y212{bottom:334.100000pt;}
.y12c{bottom:334.483920pt;}
.y2a{bottom:336.199680pt;}
.y60{bottom:336.283040pt;}
.y142{bottom:336.560000pt;}
.y19b{bottom:337.838560pt;}
.y1da{bottom:339.369280pt;}
.y239{bottom:342.097680pt;}
.y184{bottom:343.758880pt;}
.y268{bottom:343.795200pt;}
.y1f1{bottom:345.711360pt;}
.yf0{bottom:346.642480pt;}
.y1b2{bottom:347.200000pt;}
.y16c{bottom:347.923920pt;}
.y92{bottom:349.520000pt;}
.yc5{bottom:349.691200pt;}
.y29{bottom:351.645760pt;}
.y10e{bottom:352.326400pt;}
.y211{bottom:352.341440pt;}
.y5f{bottom:352.608960pt;}
.y12b{bottom:352.725360pt;}
.y19a{bottom:356.080000pt;}
.y1d9{bottom:357.683920pt;}
.y91{bottom:361.040000pt;}
.y1af{bottom:361.200000pt;}
.y238{bottom:361.376160pt;}
.y183{bottom:362.000320pt;}
.y267{bottom:363.073680pt;}
.y1f0{bottom:364.026000pt;}
.yef{bottom:364.883920pt;}
.y16b{bottom:366.238560pt;}
.y28{bottom:367.091840pt;}
.y1b1{bottom:367.440000pt;}
.yc4{bottom:367.932640pt;}
.y5e{bottom:368.854720pt;}
.y199{bottom:370.080000pt;}
.y10d{bottom:370.641040pt;}
.y210{bottom:370.656080pt;}
.y12a{bottom:371.040000pt;}
.y1d8{bottom:375.925360pt;}
.y28b{bottom:377.046080pt;}
.y237{bottom:378.022720pt;}
.y266{bottom:379.640080pt;}
.y182{bottom:380.314960pt;}
.y1ef{bottom:382.267440pt;}
.y27{bottom:382.537920pt;}
.yee{bottom:383.125360pt;}
.y16a{bottom:384.485360pt;}
.yc3{bottom:386.247280pt;}
.y10c{bottom:388.882480pt;}
.y20f{bottom:388.897520pt;}
.ye{bottom:389.200000pt;}
.y129{bottom:391.925360pt;}
.y1d7{bottom:394.240000pt;}
.y28a{bottom:396.324560pt;}
.y1ae{bottom:396.400000pt;}
.y236{bottom:397.301200pt;}
.y198{bottom:397.360000pt;}
.y26{bottom:398.059840pt;}
.y181{bottom:398.556400pt;}
.y265{bottom:398.918560pt;}
.y1ee{bottom:400.582080pt;}
.yed{bottom:401.440000pt;}
.y169{bottom:402.800000pt;}
.y90{bottom:403.123920pt;}
.y5d{bottom:403.737680pt;}
.yc2{bottom:404.488720pt;}
.y10b{bottom:407.123920pt;}
.y20e{bottom:409.862000pt;}
.y128{bottom:410.247840pt;}
.y25{bottom:413.505920pt;}
.y235{bottom:413.867600pt;}
.y1d6{bottom:415.120000pt;}
.y264{bottom:415.565120pt;}
.y289{bottom:415.603040pt;}
.y1ed{bottom:418.823520pt;}
.y180{bottom:420.882400pt;}
.y8f{bottom:421.365360pt;}
.yec{bottom:422.407840pt;}
.yc1{bottom:422.803360pt;}
.y168{bottom:423.689280pt;}
.y10a{bottom:425.438560pt;}
.y127{bottom:428.489280pt;}
.y24{bottom:428.952000pt;}
.y20d{bottom:430.826480pt;}
.y234{bottom:433.146080pt;}
.y263{bottom:434.843600pt;}
.y288{bottom:434.881520pt;}
.y1d5{bottom:436.093200pt;}
.y1ec{bottom:437.138160pt;}
.y5c{bottom:438.700800pt;}
.y8e{bottom:439.674080pt;}
.yeb{bottom:440.649280pt;}
.y167{bottom:442.003920pt;}
.y109{bottom:443.680000pt;}
.yc0{bottom:443.685360pt;}
.y23{bottom:444.398080pt;}
.y126{bottom:446.803920pt;}
.y17f{bottom:447.117280pt;}
.y20c{bottom:449.067920pt;}
.y233{bottom:452.424560pt;}
.y262{bottom:454.122080pt;}
.y287{bottom:454.160000pt;}
.y1d4{bottom:454.407840pt;}
.y5b{bottom:455.026720pt;}
.y1eb{bottom:455.379600pt;}
.y8d{bottom:457.915520pt;}
.yea{bottom:458.963920pt;}
.y22{bottom:459.920000pt;}
.y166{bottom:460.245360pt;}
.ybf{bottom:461.998560pt;}
.y108{bottom:464.643920pt;}
.y125{bottom:465.045360pt;}
.y20b{bottom:467.309360pt;}
.y232{bottom:469.071120pt;}
.y261{bottom:470.768640pt;}
.y5a{bottom:471.352640pt;}
.y1d3{bottom:472.649280pt;}
.y286{bottom:473.433440pt;}
.y17e{bottom:473.440000pt;}
.y1ea{bottom:473.694240pt;}
.y21{bottom:475.345920pt;}
.ye9{bottom:477.205360pt;}
.y165{bottom:478.560000pt;}
.y8c{bottom:478.883920pt;}
.ybe{bottom:480.239440pt;}
.y107{bottom:482.958560pt;}
.y124{bottom:483.360000pt;}
.y20a{bottom:485.624000pt;}
.y260{bottom:487.415200pt;}
.y17c{bottom:487.440000pt;}
.y59{bottom:487.598400pt;}
.y231{bottom:488.349600pt;}
.y285{bottom:490.080000pt;}
.y20{bottom:490.792000pt;}
.y1d2{bottom:490.963920pt;}
.y1e9{bottom:491.935680pt;}
.ye8{bottom:495.520000pt;}
.y8b{bottom:497.125360pt;}
.ybd{bottom:498.554080pt;}
.y164{bottom:499.517120pt;}
.y106{bottom:501.207840pt;}
.y17b{bottom:503.680000pt;}
.y58{bottom:503.844160pt;}
.y209{bottom:503.865440pt;}
.y123{bottom:504.326400pt;}
.y1f{bottom:506.313920pt;}
.y25f{bottom:506.693680pt;}
.y230{bottom:507.628080pt;}
.y1d1{bottom:509.205360pt;}
.y284{bottom:509.325600pt;}
.y1e8{bottom:510.250320pt;}
.y8a{bottom:515.442480pt;}
.ye7{bottom:516.403040pt;}
.ybc{bottom:516.795520pt;}
.y163{bottom:517.758560pt;}
.y105{bottom:519.522480pt;}
.y57{bottom:520.170080pt;}
.y1e{bottom:521.760000pt;}
.y208{bottom:522.180080pt;}
.y122{bottom:522.567840pt;}
.y25e{bottom:523.260080pt;}
.y1b{bottom:526.400000pt;}
.y22f{bottom:526.906560pt;}
.y1d0{bottom:527.518560pt;}
.y1e7{bottom:528.491760pt;}
.y283{bottom:528.604080pt;}
.y89{bottom:533.683920pt;}
.ye6{bottom:534.717680pt;}
.y162{bottom:536.000000pt;}
.y56{bottom:536.415840pt;}
.y104{bottom:537.763920pt;}
.ybb{bottom:537.764400pt;}
.y207{bottom:540.421520pt;}
.y121{bottom:540.809280pt;}
.y25d{bottom:542.538560pt;}
.y1cf{bottom:545.766400pt;}
.y22e{bottom:546.185040pt;}
.y1e6{bottom:546.733200pt;}
.y282{bottom:547.882560pt;}
.yd{bottom:549.280000pt;}
.y88{bottom:551.998560pt;}
.y55{bottom:552.741760pt;}
.y103{bottom:556.005360pt;}
.yba{bottom:556.005840pt;}
.ye5{bottom:556.955840pt;}
.y161{bottom:556.969280pt;}
.y206{bottom:558.736160pt;}
.y120{bottom:559.123920pt;}
.y25c{bottom:559.185120pt;}
.y1ce{bottom:564.007840pt;}
.y281{bottom:564.529120pt;}
.y1e5{bottom:565.047840pt;}
.y22d{bottom:565.463520pt;}
.y54{bottom:568.987520pt;}
.y87{bottom:570.245360pt;}
.y1a{bottom:570.400000pt;}
.y102{bottom:574.320000pt;}
.yb9{bottom:574.320480pt;}
.y160{bottom:575.283920pt;}
.y205{bottom:576.977600pt;}
.y11f{bottom:577.365360pt;}
.y25b{bottom:578.463600pt;}
.y22c{bottom:582.110080pt;}
.y1cd{bottom:582.322480pt;}
.ye4{bottom:583.278560pt;}
.y1e4{bottom:583.289280pt;}
.y280{bottom:583.807600pt;}
.y19{bottom:585.040000pt;}
.y53{bottom:585.313440pt;}
.y86{bottom:588.556480pt;}
.yb8{bottom:592.561920pt;}
.y15f{bottom:593.525360pt;}
.y101{bottom:595.290320pt;}
.y204{bottom:595.292240pt;}
.y11e{bottom:595.680000pt;}
.y25a{bottom:597.742080pt;}
.y27f{bottom:600.374000pt;}
.y1cc{bottom:600.563920pt;}
.y22b{bottom:601.388560pt;}
.ye3{bottom:601.520000pt;}
.y52{bottom:601.559200pt;}
.y1e3{bottom:601.603920pt;}
.y18{bottom:604.080000pt;}
.y85{bottom:606.797920pt;}
.y11c{bottom:609.680000pt;}
.yb7{bottom:610.876560pt;}
.y15e{bottom:611.840000pt;}
.y100{bottom:613.531760pt;}
.y203{bottom:613.533680pt;}
.y259{bottom:617.020560pt;}
.y51{bottom:617.885120pt;}
.y22a{bottom:618.035120pt;}
.y1cb{bottom:618.878560pt;}
.y27e{bottom:619.652480pt;}
.y1e2{bottom:619.845360pt;}
.ye2{bottom:622.480000pt;}
.y17{bottom:623.600000pt;}
.y84{bottom:625.112560pt;}
.yb6{bottom:629.118000pt;}
.yff{bottom:631.846400pt;}
.y202{bottom:631.848320pt;}
.y15d{bottom:632.729280pt;}
.y50{bottom:634.130880pt;}
.y258{bottom:636.299040pt;}
.y11a{bottom:636.960000pt;}
.y1ca{bottom:637.129280pt;}
.y229{bottom:637.313600pt;}
.y1e1{bottom:638.160000pt;}
.y16{bottom:642.000000pt;}
.y83{bottom:643.354000pt;}
.ye1{bottom:644.731520pt;}
.yb5{bottom:650.082480pt;}
.yfe{bottom:650.087840pt;}
.y201{bottom:650.089760pt;}
.y4f{bottom:650.456800pt;}
.y15c{bottom:651.043920pt;}
.y1df{bottom:652.160000pt;}
.y257{bottom:652.945600pt;}
.y228{bottom:653.880000pt;}
.y1c9{bottom:655.443920pt;}
.y27d{bottom:655.577520pt;}
.y15{bottom:661.040000pt;}
.y82{bottom:665.680000pt;}
.y4e{bottom:666.702560pt;}
.yb4{bottom:668.397120pt;}
.yfd{bottom:668.402480pt;}
.y15b{bottom:669.285360pt;}
.ye0{bottom:671.054240pt;}
.y1de{bottom:671.120000pt;}
.y256{bottom:672.224080pt;}
.y227{bottom:673.158480pt;}
.y1c8{bottom:673.685360pt;}
.y4d{bottom:682.948320pt;}
.yb3{bottom:686.638560pt;}
.y141{bottom:686.642480pt;}
.yfc{bottom:686.643920pt;}
.y15a{bottom:687.600000pt;}
.ydf{bottom:689.295680pt;}
.y226{bottom:689.805040pt;}
.y255{bottom:691.502560pt;}
.y1c7{bottom:691.998560pt;}
.y4c{bottom:699.274240pt;}
.y81{bottom:702.240000pt;}
.y140{bottom:704.883920pt;}
.yfb{bottom:704.885360pt;}
.yb2{bottom:704.887840pt;}
.y225{bottom:706.451600pt;}
.yde{bottom:707.610320pt;}
.y27c{bottom:708.149120pt;}
.y159{bottom:708.560400pt;}
.y1c6{bottom:710.243920pt;}
.y254{bottom:710.781040pt;}
.y4b{bottom:715.520000pt;}
.y14{bottom:722.000800pt;}
.y224{bottom:723.018000pt;}
.y13f{bottom:723.198560pt;}
.yfa{bottom:723.200000pt;}
.yb1{bottom:723.202480pt;}
.ydd{bottom:725.851760pt;}
.y158{bottom:726.801840pt;}
.y253{bottom:727.427600pt;}
.y1c5{bottom:728.558560pt;}
.y80{bottom:737.046640pt;}
.y13e{bottom:741.440000pt;}
.yb0{bottom:741.443920pt;}
.y223{bottom:742.296480pt;}
.y27b{bottom:743.994000pt;}
.ydc{bottom:744.166400pt;}
.y252{bottom:746.706080pt;}
.y1c4{bottom:746.798560pt;}
.y13{bottom:748.081360pt;}
.y157{bottom:749.040000pt;}
.y7f{bottom:753.452720pt;}
.yaf{bottom:759.758560pt;}
.y222{bottom:761.574960pt;}
.y13d{bottom:762.405360pt;}
.ydb{bottom:762.407840pt;}
.y27a{bottom:763.272480pt;}
.y197{bottom:763.358560pt;}
.y4a{bottom:764.479120pt;}
.y1c3{bottom:765.045360pt;}
.y251{bottom:765.984560pt;}
.y12{bottom:774.076480pt;}
.y156{bottom:775.362480pt;}
.yae{bottom:778.012640pt;}
.y221{bottom:778.221520pt;}
.y1ad{bottom:780.718560pt;}
.y13c{bottom:780.721040pt;}
.yda{bottom:780.722480pt;}
.y196{bottom:781.605360pt;}
.y279{bottom:782.550960pt;}
.y1c2{bottom:783.358560pt;}
.y250{bottom:785.263040pt;}
.y7e{bottom:788.335680pt;}
.y155{bottom:793.603920pt;}
.yad{bottom:796.327280pt;}
.y220{bottom:797.500000pt;}
.y1ac{bottom:798.959440pt;}
.y13b{bottom:798.962480pt;}
.yd9{bottom:798.963920pt;}
.y278{bottom:799.197520pt;}
.y195{bottom:799.918560pt;}
.y1c1{bottom:801.605360pt;}
.y24f{bottom:801.829440pt;}
.y7d{bottom:804.661600pt;}
.y49{bottom:809.438560pt;}
.y154{bottom:811.918560pt;}
.y21f{bottom:814.146560pt;}
.yac{bottom:814.568720pt;}
.y13a{bottom:817.277120pt;}
.yd8{bottom:817.278560pt;}
.y194{bottom:818.158880pt;}
.y277{bottom:818.476000pt;}
.y1ab{bottom:819.923920pt;}
.y7c{bottom:820.907360pt;}
.y24e{bottom:821.107920pt;}
.y48{bottom:827.680000pt;}
.y153{bottom:830.160000pt;}
.yab{bottom:832.883360pt;}
.y21e{bottom:833.425040pt;}
.y139{bottom:835.518560pt;}
.yf9{bottom:835.520000pt;}
.y200{bottom:835.523920pt;}
.yd7{bottom:835.527280pt;}
.y7b{bottom:837.233280pt;}
.y276{bottom:837.754480pt;}
.y1aa{bottom:838.165360pt;}
.y11{bottom:840.164320pt;}
.y24d{bottom:840.386400pt;}
.y193{bottom:840.484880pt;}
.y21d{bottom:850.071600pt;}
.y152{bottom:851.123920pt;}
.y7a{bottom:853.479040pt;}
.y138{bottom:853.760000pt;}
.yaa{bottom:853.763920pt;}
.y1ff{bottom:853.765360pt;}
.y17a{bottom:853.767840pt;}
.yd6{bottom:853.768720pt;}
.y1c0{bottom:856.478560pt;}
.y1a9{bottom:856.483920pt;}
.yf8{bottom:856.491760pt;}
.y24c{bottom:857.032960pt;}
.y192{bottom:858.726320pt;}
.y47{bottom:862.804160pt;}
.y10{bottom:866.159440pt;}
.y21c{bottom:869.350080pt;}
.y151{bottom:869.438560pt;}
.y79{bottom:869.804960pt;}
.ya9{bottom:872.078560pt;}
.y179{bottom:872.082480pt;}
.y1fe{bottom:872.083920pt;}
.y137{bottom:874.725360pt;}
.yd5{bottom:874.733200pt;}
.y24b{bottom:876.311440pt;}
.y46{bottom:884.400000pt;}
.y191{bottom:884.961200pt;}
.y21b{bottom:885.916480pt;}
.y78{bottom:886.050720pt;}
.y150{bottom:887.680000pt;}
.ya8{bottom:890.319440pt;}
.y178{bottom:890.323920pt;}
.y1fd{bottom:890.325360pt;}
.yf{bottom:892.240000pt;}
.y275{bottom:892.958000pt;}
.y1bf{bottom:893.038560pt;}
.y1a8{bottom:893.043920pt;}
.yd4{bottom:893.047840pt;}
.y24a{bottom:895.589920pt;}
.y77{bottom:902.376640pt;}
.y21a{bottom:905.194960pt;}
.ya7{bottom:908.634080pt;}
.y177{bottom:908.638560pt;}
.y14f{bottom:908.643920pt;}
.y190{bottom:911.283920pt;}
.y1a7{bottom:911.285360pt;}
.yd3{bottom:911.289280pt;}
.y249{bottom:912.236480pt;}
.y76{bottom:918.622400pt;}
.y219{bottom:924.473440pt;}
.ya6{bottom:926.875520pt;}
.y176{bottom:926.880000pt;}
.y14e{bottom:926.885360pt;}
.y18f{bottom:929.598560pt;}
.yd2{bottom:929.603920pt;}
.y248{bottom:931.514960pt;}
.y75{bottom:934.948320pt;}
.y43{bottom:940.880000pt;}
.y218{bottom:941.120000pt;}
.y1fc{bottom:945.195520pt;}
.y14d{bottom:945.200000pt;}
.y40{bottom:945.839040pt;}
.ya5{bottom:947.845360pt;}
.y247{bottom:948.161520pt;}
.y74{bottom:951.194080pt;}
.y3{bottom:952.480000pt;}
.y3f{bottom:957.202080pt;}
.yc{bottom:959.920000pt;}
.ya4{bottom:966.160000pt;}
.y41{bottom:966.960000pt;}
.y246{bottom:967.440000pt;}
.y73{bottom:967.520000pt;}
.y3e{bottom:968.640000pt;}
.y2{bottom:975.200000pt;}
.yb{bottom:975.520000pt;}
.y6{bottom:976.800000pt;}
.y3d{bottom:979.920000pt;}
.y70{bottom:983.200000pt;}
.ya2{bottom:983.920000pt;}
.y1{bottom:988.080000pt;}
.y8{bottom:991.200000pt;}
.y6f{bottom:997.120000pt;}
.y72{bottom:997.280000pt;}
.y3c{bottom:997.760000pt;}
.y3b{bottom:1031.520000pt;}
.h15{height:2.008750pt;}
.ha{height:4.313750pt;}
.h1d{height:12.960000pt;}
.h9{height:14.400000pt;}
.h19{height:14.880000pt;}
.h44{height:16.240000pt;}
.h41{height:16.320000pt;}
.h7{height:17.520000pt;}
.h4c{height:18.960000pt;}
.h25{height:21.664062pt;}
.h26{height:23.034375pt;}
.h31{height:25.040000pt;}
.h1f{height:26.080000pt;}
.h27{height:26.160000pt;}
.h30{height:27.118125pt;}
.h3d{height:27.280000pt;}
.h1b{height:29.377969pt;}
.h17{height:31.440000pt;}
.h6{height:31.920000pt;}
.h1e{height:33.395469pt;}
.h3{height:33.748750pt;}
.h1c{height:33.752590pt;}
.h4a{height:35.200000pt;}
.h24{height:37.027031pt;}
.hf{height:37.664062pt;}
.h8{height:38.062500pt;}
.h18{height:38.812500pt;}
.h5{height:39.030469pt;}
.h13{height:39.672812pt;}
.h12{height:40.092500pt;}
.h29{height:41.932656pt;}
.h23{height:42.376250pt;}
.h28{height:42.949690pt;}
.h22{height:43.211250pt;}
.h4f{height:44.200901pt;}
.h2a{height:45.950156pt;}
.h49{height:45.952396pt;}
.h46{height:45.954636pt;}
.h47{height:45.955916pt;}
.h4e{height:45.968076pt;}
.h2{height:46.436250pt;}
.h14{height:47.200000pt;}
.h10{height:47.351250pt;}
.h4d{height:50.698289pt;}
.h45{height:50.750449pt;}
.h34{height:50.767409pt;}
.h3a{height:50.770929pt;}
.h3b{height:50.776689pt;}
.h42{height:50.780849pt;}
.h35{height:50.786609pt;}
.h38{height:50.788849pt;}
.h39{height:50.792369pt;}
.h3f{height:50.795995pt;}
.h2c{height:50.796529pt;}
.h36{height:50.800369pt;}
.h2e{height:50.802289pt;}
.h2d{height:50.808049pt;}
.h3e{height:50.813809pt;}
.h32{height:50.817969pt;}
.h33{height:50.820209pt;}
.h37{height:50.823729pt;}
.h43{height:50.829489pt;}
.h2b{height:50.832049pt;}
.h2f{height:50.841649pt;}
.h21{height:51.132270pt;}
.hb{height:51.750000pt;}
.h20{height:56.148750pt;}
.he{height:67.751250pt;}
.hd{height:69.086250pt;}
.h4{height:75.600000pt;}
.h16{height:97.040000pt;}
.h11{height:263.680000pt;}
.h4b{height:309.040000pt;}
.h40{height:343.120000pt;}
.h3c{height:343.200000pt;}
.h48{height:359.040000pt;}
.hc{height:403.200000pt;}
.h0{height:1122.560000pt;}
.h1a{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.wb{width:23.280000pt;}
.wa{width:23.360000pt;}
.w4{width:124.480000pt;}
.w2{width:138.560000pt;}
.w7{width:155.201333pt;}
.w9{width:295.520000pt;}
.w5{width:326.400000pt;}
.w6{width:364.560000pt;}
.w3{width:465.520000pt;}
.wc{width:581.440000pt;}
.w0{width:793.760000pt;}
.w8{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x23{left:10.560000pt;}
.x2a{left:27.280000pt;}
.x11{left:56.400000pt;}
.x2d{left:62.160000pt;}
.xe{left:92.000000pt;}
.x3{left:94.480000pt;}
.xf{left:96.880000pt;}
.x1d{left:105.840000pt;}
.x13{left:109.600000pt;}
.x20{left:118.640000pt;}
.x7{left:120.000000pt;}
.x2{left:121.120000pt;}
.x1e{left:124.792000pt;}
.x21{left:128.483280pt;}
.x18{left:142.160000pt;}
.x1a{left:160.320000pt;}
.x16{left:184.400000pt;}
.x1{left:194.800000pt;}
.x19{left:204.326160pt;}
.x27{left:205.600000pt;}
.x17{left:211.680000pt;}
.xa{left:225.840000pt;}
.x15{left:229.840000pt;}
.x5{left:233.040000pt;}
.x6{left:240.240000pt;}
.x9{left:248.240000pt;}
.x1b{left:289.518000pt;}
.xb{left:310.880000pt;}
.x1c{left:316.631280pt;}
.xc{left:326.800000pt;}
.x30{left:334.560000pt;}
.x31{left:338.160000pt;}
.x2b{left:339.280000pt;}
.x1f{left:341.520000pt;}
.x2f{left:344.480000pt;}
.x8{left:365.040000pt;}
.x2e{left:396.872640pt;}
.x14{left:398.160000pt;}
.xd{left:404.800000pt;}
.x25{left:447.680000pt;}
.x26{left:452.080000pt;}
.x24{left:470.720000pt;}
.x29{left:550.720000pt;}
.x10{left:556.960000pt;}
.x2c{left:564.720000pt;}
.x28{left:565.680000pt;}
.x12{left:575.360000pt;}
.x22{left:653.440000pt;}
}




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