
    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_44130cc52f56ab3c234b8005.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4762c5474d5aa7420fd18b8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_32e1fb1d52d462dedf755d7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.070312;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_d8bccd66fdbadcf882cfd7ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_d9f1617520de6ecfae804a4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_ebf491088650a9c952763984.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_fa77aa1751b1fb51f7ab22aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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_ec4b514a095fa03cfe90891c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935547;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_92d80256a0b4a3ba5c51a9ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_1288baad88e77b30af732633.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.070312;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_12d2cd07d63f4e714450b3e2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_44130cc52f56ab3c234b8005.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5876551e770ab3c902386353.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_716bf7527b2640dc73ab5a9e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls23{letter-spacing:-2.190240px;}
.ls69{letter-spacing:-1.192320px;}
.ls57{letter-spacing:-1.126080px;}
.ls2b{letter-spacing:-1.059840px;}
.ls29{letter-spacing:-0.861120px;}
.ls95{letter-spacing:-0.810000px;}
.ls55{letter-spacing:-0.728640px;}
.ls25{letter-spacing:-0.673920px;}
.ls2{letter-spacing:-0.468720px;}
.ls2a{letter-spacing:-0.463680px;}
.ls2c{letter-spacing:-0.397440px;}
.ls31{letter-spacing:-0.358560px;}
.ls24{letter-spacing:-0.336960px;}
.ls28{letter-spacing:-0.331200px;}
.ls8d{letter-spacing:-0.300600px;}
.ls30{letter-spacing:-0.298800px;}
.ls6a{letter-spacing:-0.264960px;}
.ls59{letter-spacing:-0.239040px;}
.ls3{letter-spacing:-0.234360px;}
.ls56{letter-spacing:-0.167040px;}
.ls94{letter-spacing:-0.162000px;}
.ls27{letter-spacing:-0.132480px;}
.ls8e{letter-spacing:-0.120240px;}
.ls4{letter-spacing:-0.119880px;}
.ls2e{letter-spacing:-0.119520px;}
.ls96{letter-spacing:-0.108000px;}
.ls8f{letter-spacing:-0.095760px;}
.ls8c{letter-spacing:-0.083880px;}
.ls2f{letter-spacing:-0.059760px;}
.ls58{letter-spacing:-0.038880px;}
.ls1{letter-spacing:0.000000px;}
.ls91{letter-spacing:0.018000px;}
.ls89{letter-spacing:0.060120px;}
.ls48{letter-spacing:0.099360px;}
.ls92{letter-spacing:0.108000px;}
.ls8a{letter-spacing:0.120240px;}
.ls82{letter-spacing:0.125496px;}
.ls5e{letter-spacing:0.132480px;}
.ls88{letter-spacing:0.140040px;}
.ls8b{letter-spacing:0.143640px;}
.ls7a{letter-spacing:0.149400px;}
.ls0{letter-spacing:0.156240px;}
.ls93{letter-spacing:0.167760px;}
.ls37{letter-spacing:0.172224px;}
.ls76{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.239040px;}
.ls38{letter-spacing:0.264960px;}
.ls51{letter-spacing:0.286848px;}
.ls52{letter-spacing:0.292824px;}
.ls3f{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.310752px;}
.ls53{letter-spacing:0.316728px;}
.ls3b{letter-spacing:0.324576px;}
.ls22{letter-spacing:0.328680px;}
.ls8{letter-spacing:0.331200px;}
.ls26{letter-spacing:0.336960px;}
.ls54{letter-spacing:0.346608px;}
.ls71{letter-spacing:0.358560px;}
.ls90{letter-spacing:0.378000px;}
.ls4d{letter-spacing:0.404064px;}
.ls70{letter-spacing:0.406368px;}
.ls3a{letter-spacing:0.417312px;}
.ls41{letter-spacing:0.470304px;}
.ls1a{letter-spacing:0.496800px;}
.ls67{letter-spacing:0.510048px;}
.ls66{letter-spacing:0.516672px;}
.ls19{letter-spacing:0.529920px;}
.ls2d{letter-spacing:0.596160px;}
.ls40{letter-spacing:0.597600px;}
.ls97{letter-spacing:0.615600px;}
.ls3e{letter-spacing:0.657360px;}
.ls1d{letter-spacing:0.663336px;}
.ls42{letter-spacing:0.682272px;}
.ls7b{letter-spacing:0.694080px;}
.ls83{letter-spacing:0.705168px;}
.ls20{letter-spacing:0.956160px;}
.ls32{letter-spacing:0.993600px;}
.ls21{letter-spacing:1.075680px;}
.ls6f{letter-spacing:1.245312px;}
.ls68{letter-spacing:1.371168px;}
.ls33{letter-spacing:1.510272px;}
.ls18{letter-spacing:1.722240px;}
.ls63{letter-spacing:1.920960px;}
.ls44{letter-spacing:2.007072px;}
.ls9{letter-spacing:2.280960px;}
.ls35{letter-spacing:2.450880px;}
.ls6c{letter-spacing:2.528640px;}
.ls16{letter-spacing:2.666880px;}
.ls6b{letter-spacing:3.170880px;}
.lsa{letter-spacing:3.179520px;}
.ls6{letter-spacing:3.199680px;}
.ls5d{letter-spacing:3.219840px;}
.ls6d{letter-spacing:3.696192px;}
.ls50{letter-spacing:3.908160px;}
.lse{letter-spacing:3.921408px;}
.lsb{letter-spacing:4.100256px;}
.ls43{letter-spacing:4.305600px;}
.lsc{letter-spacing:4.636800px;}
.ls3d{letter-spacing:4.802400px;}
.ls11{letter-spacing:5.365440px;}
.lsd{letter-spacing:5.484672px;}
.ls12{letter-spacing:5.564160px;}
.ls7d{letter-spacing:6.100704px;}
.ls17{letter-spacing:7.365888px;}
.ls75{letter-spacing:7.710336px;}
.ls87{letter-spacing:8.319744px;}
.ls61{letter-spacing:9.035136px;}
.ls3c{letter-spacing:9.671040px;}
.ls86{letter-spacing:11.856960px;}
.ls1b{letter-spacing:11.989440px;}
.ls79{letter-spacing:12.519360px;}
.ls62{letter-spacing:13.976640px;}
.ls45{letter-spacing:14.142240px;}
.lsf{letter-spacing:14.506560px;}
.ls77{letter-spacing:17.017056px;}
.ls1c{letter-spacing:17.553600px;}
.ls60{letter-spacing:17.672832px;}
.ls78{letter-spacing:17.884800px;}
.ls5f{letter-spacing:18.282240px;}
.ls14{letter-spacing:19.739520px;}
.ls13{letter-spacing:20.024352px;}
.ls72{letter-spacing:21.925440px;}
.ls73{letter-spacing:21.991680px;}
.ls74{letter-spacing:22.263264px;}
.ls5c{letter-spacing:23.316480px;}
.ls34{letter-spacing:24.773760px;}
.ls46{letter-spacing:25.502400px;}
.ls84{letter-spacing:29.079360px;}
.ls64{letter-spacing:31.265280px;}
.ls6e{letter-spacing:31.358016px;}
.ls65{letter-spacing:31.404384px;}
.ls4f{letter-spacing:34.113600px;}
.ls39{letter-spacing:34.842240px;}
.ls5b{letter-spacing:34.941600px;}
.ls4e{letter-spacing:34.948224px;}
.ls4c{letter-spacing:37.756800px;}
.ls36{letter-spacing:37.968768px;}
.ls4b{letter-spacing:37.975392px;}
.ls7c{letter-spacing:42.062400px;}
.ls7e{letter-spacing:44.248320px;}
.ls15{letter-spacing:45.639360px;}
.ls5{letter-spacing:45.742320px;}
.ls81{letter-spacing:46.434240px;}
.ls7f{letter-spacing:46.467360px;}
.ls4a{letter-spacing:46.473984px;}
.ls49{letter-spacing:46.507104px;}
.ls47{letter-spacing:46.520352px;}
.ls80{letter-spacing:46.546848px;}
.ls85{letter-spacing:48.553920px;}
.ls10{letter-spacing:56.681568px;}
.ls5a{letter-spacing:62.928000px;}
.ls7{letter-spacing:102.731616px;}
.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;}
}
.ws95{word-spacing:-23.486400px;}
.ws86{word-spacing:-23.234760px;}
.ws7{word-spacing:-23.081760px;}
.ws1{word-spacing:-21.483000px;}
.ws0{word-spacing:-21.248640px;}
.ws6{word-spacing:-21.228480px;}
.ws36{word-spacing:-19.010880px;}
.wse{word-spacing:-18.745920px;}
.ws8{word-spacing:-18.414720px;}
.ws9{word-spacing:-18.282240px;}
.ws61{word-spacing:-18.149760px;}
.wsb{word-spacing:-18.083520px;}
.ws52{word-spacing:-17.686080px;}
.wsc{word-spacing:-17.553600px;}
.wsd{word-spacing:-17.354880px;}
.ws37{word-spacing:-17.210880px;}
.ws6b{word-spacing:-16.971840px;}
.ws7b{word-spacing:-16.852320px;}
.ws96{word-spacing:-16.833600px;}
.ws88{word-spacing:-16.773480px;}
.ws12{word-spacing:-16.613280px;}
.ws56{word-spacing:-16.553520px;}
.ws10{word-spacing:-16.493760px;}
.ws87{word-spacing:-16.412760px;}
.ws71{word-spacing:-16.374240px;}
.ws55{word-spacing:-16.314480px;}
.ws11{word-spacing:-16.254720px;}
.ws9a{word-spacing:-15.120000px;}
.ws98{word-spacing:-15.012000px;}
.ws97{word-spacing:-14.850000px;}
.ws99{word-spacing:-14.202000px;}
.ws89{word-spacing:-13.310640px;}
.ws8a{word-spacing:-13.214880px;}
.wsa{word-spacing:-11.609280px;}
.ws53{word-spacing:-11.442240px;}
.wsf{word-spacing:-10.808640px;}
.ws54{word-spacing:-10.769760px;}
.ws18{word-spacing:-3.841920px;}
.ws9f{word-spacing:-3.456000px;}
.wsa8{word-spacing:-3.348000px;}
.wsa0{word-spacing:-3.294000px;}
.ws3c{word-spacing:-3.179520px;}
.ws3d{word-spacing:-2.450880px;}
.wsaa{word-spacing:-1.890000px;}
.wsa9{word-spacing:-1.782000px;}
.ws32{word-spacing:-1.722240px;}
.ws5f{word-spacing:-1.374480px;}
.ws20{word-spacing:-0.993600px;}
.ws79{word-spacing:-0.657360px;}
.ws31{word-spacing:-0.596160px;}
.ws8c{word-spacing:-0.541080px;}
.ws92{word-spacing:-0.480960px;}
.ws15{word-spacing:-0.336960px;}
.ws23{word-spacing:-0.331200px;}
.ws30{word-spacing:-0.264960px;}
.ws91{word-spacing:-0.240480px;}
.ws3{word-spacing:-0.234360px;}
.ws75{word-spacing:-0.216000px;}
.ws8b{word-spacing:-0.180360px;}
.ws4{word-spacing:-0.156240px;}
.ws94{word-spacing:-0.143640px;}
.ws8e{word-spacing:-0.120240px;}
.ws76{word-spacing:-0.108000px;}
.ws9d{word-spacing:-0.060120px;}
.ws2{word-spacing:0.000000px;}
.ws33{word-spacing:0.059760px;}
.ws90{word-spacing:0.095760px;}
.wsac{word-spacing:0.108000px;}
.ws51{word-spacing:0.119520px;}
.ws8f{word-spacing:0.120240px;}
.ws17{word-spacing:0.132480px;}
.ws9e{word-spacing:0.162000px;}
.ws9b{word-spacing:0.167760px;}
.ws60{word-spacing:0.179280px;}
.wsa1{word-spacing:0.270000px;}
.ws34{word-spacing:0.298800px;}
.ws9c{word-spacing:0.300600px;}
.ws1a{word-spacing:0.331200px;}
.ws5{word-spacing:0.359640px;}
.ws2d{word-spacing:0.397440px;}
.ws16{word-spacing:0.463680px;}
.ws65{word-spacing:0.662400px;}
.ws13{word-spacing:0.673920px;}
.ws6f{word-spacing:0.728640px;}
.ws35{word-spacing:0.776880px;}
.ws93{word-spacing:0.813960px;}
.ws3e{word-spacing:0.861120px;}
.ws6c{word-spacing:1.059840px;}
.ws5b{word-spacing:1.126080px;}
.ws1d{word-spacing:1.192320px;}
.wsa2{word-spacing:1.728000px;}
.ws22{word-spacing:1.920960px;}
.ws74{word-spacing:2.119680px;}
.ws7c{word-spacing:2.517120px;}
.ws1f{word-spacing:2.583360px;}
.wsa5{word-spacing:2.808000px;}
.ws1b{word-spacing:3.312000px;}
.wsa3{word-spacing:3.510000px;}
.ws5d{word-spacing:3.510720px;}
.ws1c{word-spacing:4.040640px;}
.ws5e{word-spacing:4.239360px;}
.ws4c{word-spacing:4.769280px;}
.ws1e{word-spacing:5.497920px;}
.wsab{word-spacing:5.670000px;}
.ws78{word-spacing:5.856480px;}
.ws4d{word-spacing:6.226560px;}
.ws4e{word-spacing:6.425280px;}
.ws2a{word-spacing:6.955200px;}
.ws44{word-spacing:7.683840px;}
.ws2b{word-spacing:8.346240px;}
.ws48{word-spacing:9.074880px;}
.ws49{word-spacing:9.803520px;}
.ws72{word-spacing:10.002240px;}
.wsa6{word-spacing:10.206000px;}
.wsa7{word-spacing:10.368000px;}
.ws67{word-spacing:10.532160px;}
.ws40{word-spacing:11.260800px;}
.ws77{word-spacing:11.593440px;}
.ws26{word-spacing:11.989440px;}
.ws27{word-spacing:12.718080px;}
.ws84{word-spacing:12.916800px;}
.ws43{word-spacing:13.380480px;}
.ws21{word-spacing:14.109120px;}
.ws4b{word-spacing:14.837760px;}
.ws66{word-spacing:15.566400px;}
.ws2f{word-spacing:17.023680px;}
.ws2e{word-spacing:17.752320px;}
.ws7a{word-spacing:17.951040px;}
.ws69{word-spacing:18.480960px;}
.ws5c{word-spacing:19.143360px;}
.ws28{word-spacing:19.872000px;}
.wsa4{word-spacing:20.088000px;}
.ws8d{word-spacing:20.320560px;}
.ws6e{word-spacing:20.600640px;}
.ws73{word-spacing:21.329280px;}
.ws62{word-spacing:22.057920px;}
.ws5a{word-spacing:23.515200px;}
.ws85{word-spacing:24.243840px;}
.ws3b{word-spacing:24.906240px;}
.ws57{word-spacing:25.634880px;}
.ws3f{word-spacing:26.363520px;}
.ws68{word-spacing:27.092160px;}
.ws39{word-spacing:27.820800px;}
.ws38{word-spacing:28.549440px;}
.ws4a{word-spacing:29.278080px;}
.ws3a{word-spacing:29.940480px;}
.ws70{word-spacing:30.669120px;}
.ws6a{word-spacing:30.934080px;}
.ws59{word-spacing:31.397760px;}
.ws58{word-spacing:32.126400px;}
.ws6d{word-spacing:33.583680px;}
.ws47{word-spacing:34.312320px;}
.ws45{word-spacing:35.040960px;}
.ws64{word-spacing:35.239680px;}
.ws46{word-spacing:35.769600px;}
.ws41{word-spacing:37.160640px;}
.ws42{word-spacing:37.889280px;}
.ws83{word-spacing:41.466240px;}
.ws7d{word-spacing:42.194880px;}
.ws7e{word-spacing:44.380800px;}
.ws29{word-spacing:45.838080px;}
.ws14{word-spacing:46.079280px;}
.ws4f{word-spacing:46.500480px;}
.ws2c{word-spacing:47.229120px;}
.ws50{word-spacing:47.427840px;}
.ws82{word-spacing:48.686400px;}
.ws80{word-spacing:50.872320px;}
.ws7f{word-spacing:51.600960px;}
.ws24{word-spacing:55.906560px;}
.ws25{word-spacing:56.635200px;}
.ws81{word-spacing:57.363840px;}
.ws63{word-spacing:63.060480px;}
.ws19{word-spacing:102.672000px;}
._c{margin-left:-17.089920px;}
._6{margin-left:-4.173120px;}
._10{margin-left:-3.113280px;}
._1b{margin-left:-2.090880px;}
._1{margin-left:-1.054620px;}
._2{width:1.163988px;}
._3{width:2.793816px;}
._4{width:3.967704px;}
._9{width:5.195052px;}
._22{width:6.354000px;}
._12{width:7.418880px;}
._16{width:8.478720px;}
._13{width:9.569988px;}
._21{width:11.342700px;}
._1d{width:13.446720px;}
._1c{width:15.102720px;}
._17{width:17.108676px;}
._a{width:20.058300px;}
._f{width:23.509980px;}
._e{width:25.303680px;}
._d{width:28.014300px;}
._14{width:29.287260px;}
._1a{width:31.351248px;}
._19{width:33.674832px;}
._15{width:35.074080px;}
._11{width:37.425888px;}
._1e{width:44.904348px;}
._5{width:46.075284px;}
._b{width:47.427840px;}
._1f{width:51.998400px;}
._18{width:63.391680px;}
._7{width:100.956384px;}
._8{width:103.457304px;}
._20{width:845.553600px;}
._0{width:2127.133440px;}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:18.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fsb{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:78.120000px;}
.fs9{font-size:83.880000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y159{bottom:5.850000px;}
.y15b{bottom:5.940000px;}
.y1ca{bottom:9.810000px;}
.y1c8{bottom:9.900000px;}
.y1c7{bottom:9.990000px;}
.y14b{bottom:10.620000px;}
.y1a1{bottom:13.770000px;}
.y1bd{bottom:24.390000px;}
.y157{bottom:25.740000px;}
.y1e9{bottom:27.630000px;}
.y1d6{bottom:27.720000px;}
.y146{bottom:28.170000px;}
.y14a{bottom:30.420000px;}
.y1f2{bottom:32.130000px;}
.y1d0{bottom:32.220000px;}
.y1bc{bottom:40.230000px;}
.y156{bottom:45.540000px;}
.y19f{bottom:49.500000px;}
.y149{bottom:50.310000px;}
.y1ba{bottom:56.070000px;}
.y19{bottom:56.705040px;}
.y1c0{bottom:57.510720px;}
.y4{bottom:57.604680px;}
.y19d{bottom:65.340000px;}
.y154{bottom:65.430000px;}
.y178{bottom:70.830000px;}
.y1b8{bottom:72.000000px;}
.y3{bottom:73.350000px;}
.y18{bottom:75.600000px;}
.y1bf{bottom:77.670000px;}
.y19b{bottom:81.270000px;}
.y153{bottom:85.230000px;}
.y1b6{bottom:87.840000px;}
.y12d{bottom:94.308840px;}
.ya6{bottom:94.320000px;}
.y47{bottom:94.500000px;}
.y1f5{bottom:95.310000px;}
.y177{bottom:98.460000px;}
.y151{bottom:105.030000px;}
.y199{bottom:106.110000px;}
.y12c{bottom:111.594420px;}
.y10a{bottom:111.600000px;}
.y1b4{bottom:112.680000px;}
.y46{bottom:113.208840px;}
.y77{bottom:113.220000px;}
.y175{bottom:114.300000px;}
.ya5{bottom:116.100000px;}
.y1f4{bottom:117.630000px;}
.y197{bottom:121.950000px;}
.y14f{bottom:124.920000px;}
.y1b2{bottom:128.610000px;}
.y184{bottom:128.790000px;}
.y109{bottom:128.880000px;}
.y45{bottom:130.494420px;}
.y76{bottom:130.500000px;}
.ya4{bottom:133.380000px;}
.ye7{bottom:135.000000px;}
.y173{bottom:139.230000px;}
.y1f1{bottom:140.040000px;}
.y1a2{bottom:142.560000px;}
.y14e{bottom:144.810000px;}
.y108{bottom:145.974420px;}
.y195{bottom:146.880000px;}
.yc3{bottom:147.780000px;}
.y1f3{bottom:149.850000px;}
.ya3{bottom:150.480000px;}
.y44{bottom:152.280000px;}
.y1be{bottom:153.180000px;}
.y1b0{bottom:153.450000px;}
.y171{bottom:155.070000px;}
.y193{bottom:162.720000px;}
.y75{bottom:165.048840px;}
.yc2{bottom:165.054420px;}
.y43{bottom:165.060000px;}
.ya2{bottom:167.760000px;}
.y1ae{bottom:169.290000px;}
.y1a0{bottom:178.290000px;}
.y16f{bottom:179.910000px;}
.y107{bottom:180.540000px;}
.y12b{bottom:180.900000px;}
.y74{bottom:182.334420px;}
.y42{bottom:182.340000px;}
.y1ef{bottom:184.680000px;}
.y1bb{bottom:184.860000px;}
.ya1{bottom:185.040000px;}
.y191{bottom:187.560000px;}
.y19e{bottom:194.130000px;}
.y1ac{bottom:194.220000px;}
.y1f0{bottom:194.580000px;}
.y16d{bottom:195.840000px;}
.y106{bottom:197.785800px;}
.ya0{bottom:197.820000px;}
.y183{bottom:198.000000px;}
.y41{bottom:199.620000px;}
.y1b9{bottom:200.790000px;}
.y18f{bottom:203.490000px;}
.y73{bottom:204.120000px;}
.y19c{bottom:210.060000px;}
.y105{bottom:215.071380px;}
.y1b7{bottom:216.630000px;}
.y40{bottom:216.708840px;}
.y72{bottom:216.720000px;}
.y9f{bottom:219.600000px;}
.y16b{bottom:220.680000px;}
.y1ee{bottom:224.910000px;}
.y18d{bottom:228.330000px;}
.y104{bottom:232.356960px;}
.y9e{bottom:232.560000px;}
.y3f{bottom:233.994420px;}
.y71{bottom:234.000000px;}
.y19a{bottom:234.900000px;}
.y169{bottom:236.520000px;}
.yc1{bottom:238.500000px;}
.y1b5{bottom:241.470000px;}
.y18b{bottom:244.170000px;}
.y1ed{bottom:247.320000px;}
.y181{bottom:248.400000px;}
.y103{bottom:249.463260px;}
.y198{bottom:250.740000px;}
.y1a8{bottom:250.830000px;}
.y70{bottom:251.262540px;}
.yc0{bottom:251.274420px;}
.y168{bottom:252.360000px;}
.y3e{bottom:255.780000px;}
.y1b3{bottom:257.400000px;}
.y18a{bottom:260.100000px;}
.y17f{bottom:264.330000px;}
.y1a7{bottom:266.670000px;}
.y102{bottom:266.748840px;}
.y166{bottom:268.290000px;}
.y6f{bottom:268.548120px;}
.y3d{bottom:268.554420px;}
.ye6{bottom:268.740000px;}
.y1eb{bottom:269.640000px;}
.ybf{bottom:273.060000px;}
.y196{bottom:275.670000px;}
.y188{bottom:275.940000px;}
.y1ec{bottom:279.450000px;}
.y17d{bottom:280.170000px;}
.y1b1{bottom:282.240000px;}
.y1a5{bottom:282.510000px;}
.y9d{bottom:282.598560px;}
.y101{bottom:284.034420px;}
.y164{bottom:284.130000px;}
.y6e{bottom:285.833700px;}
.ybe{bottom:286.020000px;}
.y187{bottom:288.810000px;}
.y3c{bottom:290.340000px;}
.y194{bottom:291.510000px;}
.y17c{bottom:296.010000px;}
.y1af{bottom:298.080000px;}
.y186{bottom:298.890000px;}
.y1a4{bottom:299.880000px;}
.y163{bottom:299.970000px;}
.y3b{bottom:303.300000px;}
.y100{bottom:305.820000px;}
.y6d{bottom:307.440000px;}
.y17b{bottom:308.880000px;}
.y1e8{bottom:309.870000px;}
.y9c{bottom:315.006480px;}
.y161{bottom:315.900000px;}
.y192{bottom:316.350000px;}
.y185{bottom:318.690000px;}
.yff{bottom:318.780000px;}
.y179{bottom:318.960000px;}
.y1a3{bottom:319.410000px;}
.y1ea{bottom:319.680000px;}
.y6c{bottom:320.580000px;}
.y1ad{bottom:323.010000px;}
.ye5{bottom:325.005120px;}
.y160{bottom:328.770000px;}
.y190{bottom:332.280000px;}
.y9b{bottom:335.342160px;}
.y15e{bottom:338.760000px;}
.y1ab{bottom:338.850000px;}
.y6b{bottom:349.784640px;}
.y1e7{bottom:350.010000px;}
.y9a{bottom:355.866480px;}
.y18e{bottom:357.120000px;}
.y15d{bottom:357.570000px;}
.ye4{bottom:357.578640px;}
.y3a{bottom:358.230240px;}
.yfe{bottom:359.852400px;}
.y1aa{bottom:363.690000px;}
.y6a{bottom:370.120320px;}
.y12a{bottom:371.730240px;}
.y1e6{bottom:372.420000px;}
.y18c{bottom:372.960000px;}
.y99{bottom:376.384320px;}
.y39{bottom:378.565920px;}
.y1a9{bottom:379.620000px;}
.yfd{bottom:380.005920px;}
.ye3{bottom:389.986560px;}
.y1e5{bottom:394.740000px;}
.y98{bottom:396.771840px;}
.y38{bottom:399.083760px;}
.yfc{bottom:400.523760px;}
.y69{bottom:402.876000px;}
.y129{bottom:404.303760px;}
.y189{bottom:404.730000px;}
.y1a6{bottom:411.300000px;}
.y1e3{bottom:417.060000px;}
.y97{bottom:417.289680px;}
.y37{bottom:419.601600px;}
.yfb{bottom:421.041600px;}
.ye2{bottom:422.560080px;}
.y68{bottom:423.211680px;}
.y128{bottom:424.457280px;}
.y1e4{bottom:426.960000px;}
.y96{bottom:437.807520px;}
.y36{bottom:439.937280px;}
.yfa{bottom:441.559440px;}
.ye1{bottom:442.713600px;}
.y67{bottom:443.547360px;}
.y127{bottom:444.975120px;}
.ybd{bottom:446.269680px;}
.y1e1{bottom:457.290000px;}
.y95{bottom:458.325360px;}
.y35{bottom:460.455120px;}
.y15c{bottom:461.430000px;}
.yf9{bottom:461.895120px;}
.y66{bottom:464.065200px;}
.y126{bottom:465.492960px;}
.ybc{bottom:466.787520px;}
.y1e2{bottom:467.190000px;}
.ye0{bottom:475.469280px;}
.y94{bottom:478.661040px;}
.y34{bottom:480.972960px;}
.yf8{bottom:482.412960px;}
.y65{bottom:484.583040px;}
.ybb{bottom:487.123200px;}
.ydf{bottom:495.622800px;}
.y125{bottom:498.066480px;}
.y33{bottom:501.490800px;}
.y1df{bottom:502.020000px;}
.yf7{bottom:502.930800px;}
.y64{bottom:505.100880px;}
.yba{bottom:507.641040px;}
.y93{bottom:511.416720px;}
.y1e0{bottom:511.830000px;}
.yde{bottom:516.140640px;}
.y144{bottom:516.344400px;}
.y124{bottom:518.402160px;}
.y32{bottom:521.826480px;}
.y17{bottom:522.711090px;}
.yf6{bottom:523.448640px;}
.yb9{bottom:528.158880px;}
.y92{bottom:531.570240px;}
.ydd{bottom:536.658480px;}
.y143{bottom:536.680080px;}
.y123{bottom:538.963200px;}
.y63{bottom:539.115120px;}
.y1de{bottom:542.250000px;}
.y31{bottom:542.344320px;}
.yf5{bottom:543.784320px;}
.yb8{bottom:548.676720px;}
.y91{bottom:552.088080px;}
.ydc{bottom:557.176320px;}
.y142{bottom:557.197920px;}
.y122{bottom:559.481040px;}
.y62{bottom:560.527200px;}
.y16{bottom:560.872080px;}
.y1dd{bottom:564.570000px;}
.y90{bottom:572.605920px;}
.y30{bottom:575.150400px;}
.y176{bottom:575.730000px;}
.yf4{bottom:576.540000px;}
.ydb{bottom:577.694160px;}
.y121{bottom:579.816720px;}
.y61{bottom:581.045040px;}
.yb7{bottom:581.250240px;}
.y1dc{bottom:586.890000px;}
.y141{bottom:589.771440px;}
.y8f{bottom:593.123760px;}
.yf3{bottom:595.248840px;}
.y2f{bottom:595.303920px;}
.y15{bottom:599.033070px;}
.y120{bottom:600.334560px;}
.y174{bottom:600.660000px;}
.y60{bottom:601.562880px;}
.yb6{bottom:601.585920px;}
.y1db{bottom:609.300000px;}
.y140{bottom:610.107120px;}
.yda{bottom:610.267680px;}
.yf2{bottom:612.534420px;}
.y8e{bottom:613.641600px;}
.y2e{bottom:615.821760px;}
.y172{bottom:616.500000px;}
.y5f{bottom:622.080720px;}
.yb5{bottom:622.103760px;}
.yf1{bottom:629.820000px;}
.yd9{bottom:630.603360px;}
.y13f{bottom:630.624960px;}
.y1d8{bottom:631.620000px;}
.y11f{bottom:632.908080px;}
.y8d{bottom:633.977280px;}
.y2d{bottom:636.339600px;}
.y14{bottom:637.194060px;}
.y170{bottom:641.340000px;}
.y1da{bottom:641.430000px;}
.y5e{bottom:642.416400px;}
.yb4{bottom:642.439440px;}
.yd8{bottom:650.939040px;}
.y13e{bottom:650.960640px;}
.y11e{bottom:653.243760px;}
.y8c{bottom:654.495120px;}
.y2c{bottom:656.857440px;}
.yf0{bottom:657.180000px;}
.y16e{bottom:657.270000px;}
.y1d9{bottom:659.340000px;}
.yb3{bottom:662.957280px;}
.yd7{bottom:671.456880px;}
.y13d{bottom:671.478480px;}
.y11d{bottom:673.761600px;}
.y5d{bottom:675.172080px;}
.y13{bottom:675.355050px;}
.y2b{bottom:677.193120px;}
.y16c{bottom:682.110000px;}
.yb2{bottom:683.475120px;}
.y8b{bottom:687.068640px;}
.y1d5{bottom:689.670000px;}
.y13c{bottom:691.996320px;}
.y11c{bottom:694.279440px;}
.y2a{bottom:697.710960px;}
.y16a{bottom:697.950000px;}
.y1d7{bottom:699.570000px;}
.yd6{bottom:704.212560px;}
.y8a{bottom:707.404320px;}
.y5c{bottom:707.625360px;}
.y182{bottom:709.830000px;}
.y12{bottom:713.516040px;}
.y11b{bottom:714.615120px;}
.yb1{bottom:716.048640px;}
.y29{bottom:718.228800px;}
.yd5{bottom:724.366080px;}
.y13b{bottom:724.569840px;}
.y180{bottom:725.760000px;}
.y89{bottom:727.922160px;}
.y5b{bottom:727.961040px;}
.y167{bottom:729.720000px;}
.y1d4{bottom:729.900000px;}
.y11a{bottom:735.132960px;}
.yb0{bottom:736.384320px;}
.y17e{bottom:741.600000px;}
.yd4{bottom:744.883920px;}
.y13a{bottom:744.905520px;}
.y165{bottom:745.560000px;}
.y88{bottom:748.448640px;}
.y5a{bottom:748.478880px;}
.y28{bottom:750.802320px;}
.y11{bottom:751.677030px;}
.y1d3{bottom:752.220000px;}
.yaf{bottom:756.902160px;}
.yd3{bottom:765.401760px;}
.y139{bottom:765.423360px;}
.y119{bottom:767.888640px;}
.y87{bottom:768.784320px;}
.y59{bottom:768.814560px;}
.y27{bottom:771.138000px;}
.y1d2{bottom:774.630000px;}
.y162{bottom:777.330000px;}
.yae{bottom:777.479040px;}
.y17a{bottom:780.390000px;}
.yd2{bottom:785.919600px;}
.y138{bottom:785.941200px;}
.y118{bottom:788.042160px;}
.y86{bottom:789.302160px;}
.y58{bottom:789.332400px;}
.y10{bottom:789.838020px;}
.y26{bottom:791.655840px;}
.y1cf{bottom:796.950000px;}
.yad{bottom:797.814720px;}
.y15f{bottom:800.190000px;}
.yd1{bottom:806.255280px;}
.y137{bottom:806.276880px;}
.y1d1{bottom:806.760000px;}
.y117{bottom:808.583760px;}
.y85{bottom:809.828640px;}
.y57{bottom:809.850240px;}
.y25{bottom:811.991520px;}
.yac{bottom:818.332560px;}
.yd0{bottom:826.773120px;}
.y136{bottom:826.794720px;}
.yf{bottom:827.999010px;}
.y116{bottom:829.101600px;}
.y15a{bottom:830.070000px;}
.y84{bottom:830.346480px;}
.y56{bottom:830.368080px;}
.y24{bottom:832.509360px;}
.y1ce{bottom:841.680000px;}
.ycf{bottom:847.290960px;}
.y115{bottom:849.619440px;}
.y14d{bottom:849.870000px;}
.y83{bottom:850.682160px;}
.y55{bottom:850.703760px;}
.yab{bottom:850.906080px;}
.y135{bottom:859.550400px;}
.y1cd{bottom:864.000000px;}
.y23{bottom:865.265040px;}
.ye{bottom:866.160000px;}
.yce{bottom:867.808800px;}
.y114{bottom:869.955120px;}
.y82{bottom:871.204320px;}
.yaa{bottom:871.241760px;}
.y158{bottom:875.610000px;}
.y202{bottom:875.880000px;}
.y134{bottom:879.703920px;}
.y54{bottom:883.459440px;}
.y1cc{bottom:886.320000px;}
.ycd{bottom:888.144480px;}
.yd{bottom:889.290000px;}
.y113{bottom:890.472960px;}
.y81{bottom:891.722160px;}
.ya9{bottom:891.759600px;}
.y22{bottom:897.672960px;}
.y53{bottom:903.795120px;}
.y1cb{bottom:908.730000px;}
.y201{bottom:910.890000px;}
.y112{bottom:910.990800px;}
.y80{bottom:912.277440px;}
.y133{bottom:912.459600px;}
.yc{bottom:914.053590px;}
.y155{bottom:915.300000px;}
.y21{bottom:918.008640px;}
.ycc{bottom:920.900160px;}
.y52{bottom:924.130800px;}
.y1c9{bottom:931.050000px;}
.y111{bottom:931.508640px;}
.y7f{bottom:932.613120px;}
.y1fe{bottom:933.210000px;}
.y20{bottom:938.526480px;}
.ycb{bottom:941.235840px;}
.y200{bottom:943.110000px;}
.y51{bottom:944.648640px;}
.yb{bottom:948.519090px;}
.y110{bottom:951.844320px;}
.y132{bottom:953.130960px;}
.y1c6{bottom:953.370000px;}
.y152{bottom:954.900000px;}
.y1ff{bottom:960.930000px;}
.yca{bottom:961.571520px;}
.y50{bottom:965.166480px;}
.y7e{bottom:965.368800px;}
.y1f{bottom:971.106480px;}
.y10f{bottom:972.362160px;}
.y131{bottom:973.648800px;}
.y150{bottom:974.790000px;}
.yef{bottom:976.500000px;}
.yc9{bottom:982.089360px;}
.ya{bottom:983.074500px;}
.y7d{bottom:985.704480px;}
.y1fc{bottom:991.260000px;}
.y1e{bottom:991.442160px;}
.y1c5{bottom:992.421720px;}
.y10e{bottom:992.880000px;}
.y130{bottom:994.166640px;}
.y4f{bottom:997.746480px;}
.y1fd{bottom:1001.160000px;}
.yc8{bottom:1002.607200px;}
.y7c{bottom:1006.040160px;}
.yee{bottom:1006.215120px;}
.y148{bottom:1008.540000px;}
.y1d{bottom:1011.960000px;}
.y12f{bottom:1014.502320px;}
.y9{bottom:1017.540000px;}
.y4e{bottom:1018.082160px;}
.y14c{bottom:1019.160000px;}
.y1c4{bottom:1023.022800px;}
.yc7{bottom:1023.125040px;}
.y10d{bottom:1024.560000px;}
.yed{bottom:1026.550800px;}
.y7b{bottom:1026.558000px;}
.y1fa{bottom:1031.490000px;}
.y4d{bottom:1038.613680px;}
.y1fb{bottom:1041.300000px;}
.y1c3{bottom:1041.660000px;}
.yec{bottom:1047.068640px;}
.y7a{bottom:1047.075840px;}
.y12e{bottom:1047.258000px;}
.y8{bottom:1049.865390px;}
.y10c{bottom:1050.840000px;}
.yc6{bottom:1055.698560px;}
.y4c{bottom:1059.131520px;}
.y1c2{bottom:1060.282800px;}
.yeb{bottom:1067.586480px;}
.y79{bottom:1067.593680px;}
.y1f8{bottom:1071.720000px;}
.y7{bottom:1072.266300px;}
.y145{bottom:1072.710000px;}
.y1c{bottom:1076.940000px;}
.y1c1{bottom:1078.920000px;}
.y4b{bottom:1079.467200px;}
.y1f9{bottom:1081.530000px;}
.yea{bottom:1087.922160px;}
.ya8{bottom:1087.929360px;}
.yc5{bottom:1088.106480px;}
.y6{bottom:1094.589090px;}
.y4a{bottom:1099.985040px;}
.y78{bottom:1100.167200px;}
.y147{bottom:1100.880000px;}
.ye9{bottom:1108.447200px;}
.y1b{bottom:1110.966660px;}
.y1f7{bottom:1111.860000px;}
.y5{bottom:1116.990000px;}
.y49{bottom:1120.502880px;}
.yc4{bottom:1120.684320px;}
.ya7{bottom:1120.685040px;}
.y1f6{bottom:1134.270000px;}
.y1a{bottom:1137.060000px;}
.y48{bottom:1141.020720px;}
.ye8{bottom:1141.202880px;}
.y10b{bottom:1143.900000px;}
.y2{bottom:1226.970000px;}
.y1{bottom:1247.130000px;}
.h27{height:15.477539px;}
.h24{height:19.798500px;}
.h2c{height:22.320000px;}
.h2d{height:22.321500px;}
.h2b{height:22.410000px;}
.hc{height:33.431484px;}
.h28{height:34.857949px;}
.h19{height:39.313477px;}
.h33{height:40.140000px;}
.h31{height:40.141500px;}
.h2f{height:40.230000px;}
.h26{height:41.170254px;}
.h2a{height:42.084000px;}
.h23{height:43.769004px;}
.h2{height:43.909277px;}
.h32{height:44.640000px;}
.h2e{height:44.731500px;}
.h1b{height:46.432617px;}
.ha{height:48.224531px;}
.hd{height:51.385430px;}
.h16{height:51.407750px;}
.h1a{height:51.522230px;}
.h21{height:51.694980px;}
.h3{height:56.873496px;}
.h6{height:56.957344px;}
.h30{height:58.050000px;}
.h14{height:59.431731px;}
.h13{height:59.460531px;}
.hb{height:59.466291px;}
.hf{height:59.486451px;}
.h1d{height:59.495091px;}
.h10{height:59.518131px;}
.h1c{height:59.572851px;}
.h18{height:59.607411px;}
.he{height:59.613171px;}
.h12{height:59.633331px;}
.h17{height:59.639091px;}
.h9{height:59.641971px;}
.h11{height:59.650611px;}
.h15{height:59.665011px;}
.h8{height:59.667891px;}
.h1f{height:61.066934px;}
.h7{height:61.329023px;}
.h20{height:64.170000px;}
.h4{height:67.172520px;}
.h1e{height:83.880000px;}
.h5{height:87.275918px;}
.h22{height:158.671500px;}
.h29{height:332.640000px;}
.h25{height:368.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:68.130000px;}
.w4{width:311.940000px;}
.w3{width:372.150000px;}
.w6{width:618.210000px;}
.w2{width:684.091500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:8.100000px;}
.x5{left:104.732640px;}
.x4{left:106.197840px;}
.x1{left:111.600000px;}
.xd{left:114.210000px;}
.x1f{left:136.260000px;}
.x20{left:138.330000px;}
.xc{left:147.960000px;}
.x1b{left:156.870000px;}
.x14{left:167.040000px;}
.x2e{left:174.420000px;}
.x2f{left:182.520000px;}
.x1e{left:188.910000px;}
.x13{left:208.980000px;}
.xb{left:214.650000px;}
.x8{left:218.340000px;}
.xf{left:229.050000px;}
.xa{left:238.050000px;}
.xe{left:247.680000px;}
.x9{left:249.750000px;}
.x2{left:251.100000px;}
.x1d{left:265.050000px;}
.x12{left:267.750000px;}
.x11{left:271.080000px;}
.x1c{left:283.680000px;}
.x10{left:324.450000px;}
.x3{left:441.720000px;}
.x2c{left:446.490000px;}
.x15{left:478.440000px;}
.x29{left:508.410000px;}
.x2b{left:510.480000px;}
.x21{left:529.020000px;}
.x28{left:539.190000px;}
.x27{left:561.060000px;}
.x2a{left:582.120000px;}
.x19{left:601.200000px;}
.x17{left:606.780000px;}
.x1a{left:608.490000px;}
.x18{left:609.840000px;}
.x23{left:637.200000px;}
.x26{left:639.900000px;}
.x25{left:643.230000px;}
.x22{left:655.830000px;}
.x24{left:696.600000px;}
.x16{left:715.140000px;}
.x7{left:769.860000px;}
.x6{left:787.140000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls23{letter-spacing:-1.946880pt;}
.ls69{letter-spacing:-1.059840pt;}
.ls57{letter-spacing:-1.000960pt;}
.ls2b{letter-spacing:-0.942080pt;}
.ls29{letter-spacing:-0.765440pt;}
.ls95{letter-spacing:-0.720000pt;}
.ls55{letter-spacing:-0.647680pt;}
.ls25{letter-spacing:-0.599040pt;}
.ls2{letter-spacing:-0.416640pt;}
.ls2a{letter-spacing:-0.412160pt;}
.ls2c{letter-spacing:-0.353280pt;}
.ls31{letter-spacing:-0.318720pt;}
.ls24{letter-spacing:-0.299520pt;}
.ls28{letter-spacing:-0.294400pt;}
.ls8d{letter-spacing:-0.267200pt;}
.ls30{letter-spacing:-0.265600pt;}
.ls6a{letter-spacing:-0.235520pt;}
.ls59{letter-spacing:-0.212480pt;}
.ls3{letter-spacing:-0.208320pt;}
.ls56{letter-spacing:-0.148480pt;}
.ls94{letter-spacing:-0.144000pt;}
.ls27{letter-spacing:-0.117760pt;}
.ls8e{letter-spacing:-0.106880pt;}
.ls4{letter-spacing:-0.106560pt;}
.ls2e{letter-spacing:-0.106240pt;}
.ls96{letter-spacing:-0.096000pt;}
.ls8f{letter-spacing:-0.085120pt;}
.ls8c{letter-spacing:-0.074560pt;}
.ls2f{letter-spacing:-0.053120pt;}
.ls58{letter-spacing:-0.034560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls91{letter-spacing:0.016000pt;}
.ls89{letter-spacing:0.053440pt;}
.ls48{letter-spacing:0.088320pt;}
.ls92{letter-spacing:0.096000pt;}
.ls8a{letter-spacing:0.106880pt;}
.ls82{letter-spacing:0.111552pt;}
.ls5e{letter-spacing:0.117760pt;}
.ls88{letter-spacing:0.124480pt;}
.ls8b{letter-spacing:0.127680pt;}
.ls7a{letter-spacing:0.132800pt;}
.ls0{letter-spacing:0.138880pt;}
.ls93{letter-spacing:0.149120pt;}
.ls37{letter-spacing:0.153088pt;}
.ls76{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.212480pt;}
.ls38{letter-spacing:0.235520pt;}
.ls51{letter-spacing:0.254976pt;}
.ls52{letter-spacing:0.260288pt;}
.ls3f{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.276224pt;}
.ls53{letter-spacing:0.281536pt;}
.ls3b{letter-spacing:0.288512pt;}
.ls22{letter-spacing:0.292160pt;}
.ls8{letter-spacing:0.294400pt;}
.ls26{letter-spacing:0.299520pt;}
.ls54{letter-spacing:0.308096pt;}
.ls71{letter-spacing:0.318720pt;}
.ls90{letter-spacing:0.336000pt;}
.ls4d{letter-spacing:0.359168pt;}
.ls70{letter-spacing:0.361216pt;}
.ls3a{letter-spacing:0.370944pt;}
.ls41{letter-spacing:0.418048pt;}
.ls1a{letter-spacing:0.441600pt;}
.ls67{letter-spacing:0.453376pt;}
.ls66{letter-spacing:0.459264pt;}
.ls19{letter-spacing:0.471040pt;}
.ls2d{letter-spacing:0.529920pt;}
.ls40{letter-spacing:0.531200pt;}
.ls97{letter-spacing:0.547200pt;}
.ls3e{letter-spacing:0.584320pt;}
.ls1d{letter-spacing:0.589632pt;}
.ls42{letter-spacing:0.606464pt;}
.ls7b{letter-spacing:0.616960pt;}
.ls83{letter-spacing:0.626816pt;}
.ls20{letter-spacing:0.849920pt;}
.ls32{letter-spacing:0.883200pt;}
.ls21{letter-spacing:0.956160pt;}
.ls6f{letter-spacing:1.106944pt;}
.ls68{letter-spacing:1.218816pt;}
.ls33{letter-spacing:1.342464pt;}
.ls18{letter-spacing:1.530880pt;}
.ls63{letter-spacing:1.707520pt;}
.ls44{letter-spacing:1.784064pt;}
.ls9{letter-spacing:2.027520pt;}
.ls35{letter-spacing:2.178560pt;}
.ls6c{letter-spacing:2.247680pt;}
.ls16{letter-spacing:2.370560pt;}
.ls6b{letter-spacing:2.818560pt;}
.lsa{letter-spacing:2.826240pt;}
.ls6{letter-spacing:2.844160pt;}
.ls5d{letter-spacing:2.862080pt;}
.ls6d{letter-spacing:3.285504pt;}
.ls50{letter-spacing:3.473920pt;}
.lse{letter-spacing:3.485696pt;}
.lsb{letter-spacing:3.644672pt;}
.ls43{letter-spacing:3.827200pt;}
.lsc{letter-spacing:4.121600pt;}
.ls3d{letter-spacing:4.268800pt;}
.ls11{letter-spacing:4.769280pt;}
.lsd{letter-spacing:4.875264pt;}
.ls12{letter-spacing:4.945920pt;}
.ls7d{letter-spacing:5.422848pt;}
.ls17{letter-spacing:6.547456pt;}
.ls75{letter-spacing:6.853632pt;}
.ls87{letter-spacing:7.395328pt;}
.ls61{letter-spacing:8.031232pt;}
.ls3c{letter-spacing:8.596480pt;}
.ls86{letter-spacing:10.539520pt;}
.ls1b{letter-spacing:10.657280pt;}
.ls79{letter-spacing:11.128320pt;}
.ls62{letter-spacing:12.423680pt;}
.ls45{letter-spacing:12.570880pt;}
.lsf{letter-spacing:12.894720pt;}
.ls77{letter-spacing:15.126272pt;}
.ls1c{letter-spacing:15.603200pt;}
.ls60{letter-spacing:15.709184pt;}
.ls78{letter-spacing:15.897600pt;}
.ls5f{letter-spacing:16.250880pt;}
.ls14{letter-spacing:17.546240pt;}
.ls13{letter-spacing:17.799424pt;}
.ls72{letter-spacing:19.489280pt;}
.ls73{letter-spacing:19.548160pt;}
.ls74{letter-spacing:19.789568pt;}
.ls5c{letter-spacing:20.725760pt;}
.ls34{letter-spacing:22.021120pt;}
.ls46{letter-spacing:22.668800pt;}
.ls84{letter-spacing:25.848320pt;}
.ls64{letter-spacing:27.791360pt;}
.ls6e{letter-spacing:27.873792pt;}
.ls65{letter-spacing:27.915008pt;}
.ls4f{letter-spacing:30.323200pt;}
.ls39{letter-spacing:30.970880pt;}
.ls5b{letter-spacing:31.059200pt;}
.ls4e{letter-spacing:31.065088pt;}
.ls4c{letter-spacing:33.561600pt;}
.ls36{letter-spacing:33.750016pt;}
.ls4b{letter-spacing:33.755904pt;}
.ls7c{letter-spacing:37.388800pt;}
.ls7e{letter-spacing:39.331840pt;}
.ls15{letter-spacing:40.568320pt;}
.ls5{letter-spacing:40.659840pt;}
.ls81{letter-spacing:41.274880pt;}
.ls7f{letter-spacing:41.304320pt;}
.ls4a{letter-spacing:41.310208pt;}
.ls49{letter-spacing:41.339648pt;}
.ls47{letter-spacing:41.351424pt;}
.ls80{letter-spacing:41.374976pt;}
.ls85{letter-spacing:43.159040pt;}
.ls10{letter-spacing:50.383616pt;}
.ls5a{letter-spacing:55.936000pt;}
.ls7{letter-spacing:91.316992pt;}
.ws95{word-spacing:-20.876800pt;}
.ws86{word-spacing:-20.653120pt;}
.ws7{word-spacing:-20.517120pt;}
.ws1{word-spacing:-19.096000pt;}
.ws0{word-spacing:-18.887680pt;}
.ws6{word-spacing:-18.869760pt;}
.ws36{word-spacing:-16.898560pt;}
.wse{word-spacing:-16.663040pt;}
.ws8{word-spacing:-16.368640pt;}
.ws9{word-spacing:-16.250880pt;}
.ws61{word-spacing:-16.133120pt;}
.wsb{word-spacing:-16.074240pt;}
.ws52{word-spacing:-15.720960pt;}
.wsc{word-spacing:-15.603200pt;}
.wsd{word-spacing:-15.426560pt;}
.ws37{word-spacing:-15.298560pt;}
.ws6b{word-spacing:-15.086080pt;}
.ws7b{word-spacing:-14.979840pt;}
.ws96{word-spacing:-14.963200pt;}
.ws88{word-spacing:-14.909760pt;}
.ws12{word-spacing:-14.767360pt;}
.ws56{word-spacing:-14.714240pt;}
.ws10{word-spacing:-14.661120pt;}
.ws87{word-spacing:-14.589120pt;}
.ws71{word-spacing:-14.554880pt;}
.ws55{word-spacing:-14.501760pt;}
.ws11{word-spacing:-14.448640pt;}
.ws9a{word-spacing:-13.440000pt;}
.ws98{word-spacing:-13.344000pt;}
.ws97{word-spacing:-13.200000pt;}
.ws99{word-spacing:-12.624000pt;}
.ws89{word-spacing:-11.831680pt;}
.ws8a{word-spacing:-11.746560pt;}
.wsa{word-spacing:-10.319360pt;}
.ws53{word-spacing:-10.170880pt;}
.wsf{word-spacing:-9.607680pt;}
.ws54{word-spacing:-9.573120pt;}
.ws18{word-spacing:-3.415040pt;}
.ws9f{word-spacing:-3.072000pt;}
.wsa8{word-spacing:-2.976000pt;}
.wsa0{word-spacing:-2.928000pt;}
.ws3c{word-spacing:-2.826240pt;}
.ws3d{word-spacing:-2.178560pt;}
.wsaa{word-spacing:-1.680000pt;}
.wsa9{word-spacing:-1.584000pt;}
.ws32{word-spacing:-1.530880pt;}
.ws5f{word-spacing:-1.221760pt;}
.ws20{word-spacing:-0.883200pt;}
.ws79{word-spacing:-0.584320pt;}
.ws31{word-spacing:-0.529920pt;}
.ws8c{word-spacing:-0.480960pt;}
.ws92{word-spacing:-0.427520pt;}
.ws15{word-spacing:-0.299520pt;}
.ws23{word-spacing:-0.294400pt;}
.ws30{word-spacing:-0.235520pt;}
.ws91{word-spacing:-0.213760pt;}
.ws3{word-spacing:-0.208320pt;}
.ws75{word-spacing:-0.192000pt;}
.ws8b{word-spacing:-0.160320pt;}
.ws4{word-spacing:-0.138880pt;}
.ws94{word-spacing:-0.127680pt;}
.ws8e{word-spacing:-0.106880pt;}
.ws76{word-spacing:-0.096000pt;}
.ws9d{word-spacing:-0.053440pt;}
.ws2{word-spacing:0.000000pt;}
.ws33{word-spacing:0.053120pt;}
.ws90{word-spacing:0.085120pt;}
.wsac{word-spacing:0.096000pt;}
.ws51{word-spacing:0.106240pt;}
.ws8f{word-spacing:0.106880pt;}
.ws17{word-spacing:0.117760pt;}
.ws9e{word-spacing:0.144000pt;}
.ws9b{word-spacing:0.149120pt;}
.ws60{word-spacing:0.159360pt;}
.wsa1{word-spacing:0.240000pt;}
.ws34{word-spacing:0.265600pt;}
.ws9c{word-spacing:0.267200pt;}
.ws1a{word-spacing:0.294400pt;}
.ws5{word-spacing:0.319680pt;}
.ws2d{word-spacing:0.353280pt;}
.ws16{word-spacing:0.412160pt;}
.ws65{word-spacing:0.588800pt;}
.ws13{word-spacing:0.599040pt;}
.ws6f{word-spacing:0.647680pt;}
.ws35{word-spacing:0.690560pt;}
.ws93{word-spacing:0.723520pt;}
.ws3e{word-spacing:0.765440pt;}
.ws6c{word-spacing:0.942080pt;}
.ws5b{word-spacing:1.000960pt;}
.ws1d{word-spacing:1.059840pt;}
.wsa2{word-spacing:1.536000pt;}
.ws22{word-spacing:1.707520pt;}
.ws74{word-spacing:1.884160pt;}
.ws7c{word-spacing:2.237440pt;}
.ws1f{word-spacing:2.296320pt;}
.wsa5{word-spacing:2.496000pt;}
.ws1b{word-spacing:2.944000pt;}
.wsa3{word-spacing:3.120000pt;}
.ws5d{word-spacing:3.120640pt;}
.ws1c{word-spacing:3.591680pt;}
.ws5e{word-spacing:3.768320pt;}
.ws4c{word-spacing:4.239360pt;}
.ws1e{word-spacing:4.887040pt;}
.wsab{word-spacing:5.040000pt;}
.ws78{word-spacing:5.205760pt;}
.ws4d{word-spacing:5.534720pt;}
.ws4e{word-spacing:5.711360pt;}
.ws2a{word-spacing:6.182400pt;}
.ws44{word-spacing:6.830080pt;}
.ws2b{word-spacing:7.418880pt;}
.ws48{word-spacing:8.066560pt;}
.ws49{word-spacing:8.714240pt;}
.ws72{word-spacing:8.890880pt;}
.wsa6{word-spacing:9.072000pt;}
.wsa7{word-spacing:9.216000pt;}
.ws67{word-spacing:9.361920pt;}
.ws40{word-spacing:10.009600pt;}
.ws77{word-spacing:10.305280pt;}
.ws26{word-spacing:10.657280pt;}
.ws27{word-spacing:11.304960pt;}
.ws84{word-spacing:11.481600pt;}
.ws43{word-spacing:11.893760pt;}
.ws21{word-spacing:12.541440pt;}
.ws4b{word-spacing:13.189120pt;}
.ws66{word-spacing:13.836800pt;}
.ws2f{word-spacing:15.132160pt;}
.ws2e{word-spacing:15.779840pt;}
.ws7a{word-spacing:15.956480pt;}
.ws69{word-spacing:16.427520pt;}
.ws5c{word-spacing:17.016320pt;}
.ws28{word-spacing:17.664000pt;}
.wsa4{word-spacing:17.856000pt;}
.ws8d{word-spacing:18.062720pt;}
.ws6e{word-spacing:18.311680pt;}
.ws73{word-spacing:18.959360pt;}
.ws62{word-spacing:19.607040pt;}
.ws5a{word-spacing:20.902400pt;}
.ws85{word-spacing:21.550080pt;}
.ws3b{word-spacing:22.138880pt;}
.ws57{word-spacing:22.786560pt;}
.ws3f{word-spacing:23.434240pt;}
.ws68{word-spacing:24.081920pt;}
.ws39{word-spacing:24.729600pt;}
.ws38{word-spacing:25.377280pt;}
.ws4a{word-spacing:26.024960pt;}
.ws3a{word-spacing:26.613760pt;}
.ws70{word-spacing:27.261440pt;}
.ws6a{word-spacing:27.496960pt;}
.ws59{word-spacing:27.909120pt;}
.ws58{word-spacing:28.556800pt;}
.ws6d{word-spacing:29.852160pt;}
.ws47{word-spacing:30.499840pt;}
.ws45{word-spacing:31.147520pt;}
.ws64{word-spacing:31.324160pt;}
.ws46{word-spacing:31.795200pt;}
.ws41{word-spacing:33.031680pt;}
.ws42{word-spacing:33.679360pt;}
.ws83{word-spacing:36.858880pt;}
.ws7d{word-spacing:37.506560pt;}
.ws7e{word-spacing:39.449600pt;}
.ws29{word-spacing:40.744960pt;}
.ws14{word-spacing:40.959360pt;}
.ws4f{word-spacing:41.333760pt;}
.ws2c{word-spacing:41.981440pt;}
.ws50{word-spacing:42.158080pt;}
.ws82{word-spacing:43.276800pt;}
.ws80{word-spacing:45.219840pt;}
.ws7f{word-spacing:45.867520pt;}
.ws24{word-spacing:49.694720pt;}
.ws25{word-spacing:50.342400pt;}
.ws81{word-spacing:50.990080pt;}
.ws63{word-spacing:56.053760pt;}
.ws19{word-spacing:91.264000pt;}
._c{margin-left:-15.191040pt;}
._6{margin-left:-3.709440pt;}
._10{margin-left:-2.767360pt;}
._1b{margin-left:-1.858560pt;}
._1{margin-left:-0.937440pt;}
._2{width:1.034656pt;}
._3{width:2.483392pt;}
._4{width:3.526848pt;}
._9{width:4.617824pt;}
._22{width:5.648000pt;}
._12{width:6.594560pt;}
._16{width:7.536640pt;}
._13{width:8.506656pt;}
._21{width:10.082400pt;}
._1d{width:11.952640pt;}
._1c{width:13.424640pt;}
._17{width:15.207712pt;}
._a{width:17.829600pt;}
._f{width:20.897760pt;}
._e{width:22.492160pt;}
._d{width:24.901600pt;}
._14{width:26.033120pt;}
._1a{width:27.867776pt;}
._19{width:29.933184pt;}
._15{width:31.176960pt;}
._11{width:33.267456pt;}
._1e{width:39.914976pt;}
._5{width:40.955808pt;}
._b{width:42.158080pt;}
._1f{width:46.220800pt;}
._18{width:56.348160pt;}
._7{width:89.739008pt;}
._8{width:91.962048pt;}
._20{width:751.603200pt;}
._0{width:1890.785280pt;}
.fsc{font-size:16.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fsb{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:69.440000pt;}
.fs9{font-size:74.560000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y159{bottom:5.200000pt;}
.y15b{bottom:5.280000pt;}
.y1ca{bottom:8.720000pt;}
.y1c8{bottom:8.800000pt;}
.y1c7{bottom:8.880000pt;}
.y14b{bottom:9.440000pt;}
.y1a1{bottom:12.240000pt;}
.y1bd{bottom:21.680000pt;}
.y157{bottom:22.880000pt;}
.y1e9{bottom:24.560000pt;}
.y1d6{bottom:24.640000pt;}
.y146{bottom:25.040000pt;}
.y14a{bottom:27.040000pt;}
.y1f2{bottom:28.560000pt;}
.y1d0{bottom:28.640000pt;}
.y1bc{bottom:35.760000pt;}
.y156{bottom:40.480000pt;}
.y19f{bottom:44.000000pt;}
.y149{bottom:44.720000pt;}
.y1ba{bottom:49.840000pt;}
.y19{bottom:50.404480pt;}
.y1c0{bottom:51.120640pt;}
.y4{bottom:51.204160pt;}
.y19d{bottom:58.080000pt;}
.y154{bottom:58.160000pt;}
.y178{bottom:62.960000pt;}
.y1b8{bottom:64.000000pt;}
.y3{bottom:65.200000pt;}
.y18{bottom:67.200000pt;}
.y1bf{bottom:69.040000pt;}
.y19b{bottom:72.240000pt;}
.y153{bottom:75.760000pt;}
.y1b6{bottom:78.080000pt;}
.y12d{bottom:83.830080pt;}
.ya6{bottom:83.840000pt;}
.y47{bottom:84.000000pt;}
.y1f5{bottom:84.720000pt;}
.y177{bottom:87.520000pt;}
.y151{bottom:93.360000pt;}
.y199{bottom:94.320000pt;}
.y12c{bottom:99.195040pt;}
.y10a{bottom:99.200000pt;}
.y1b4{bottom:100.160000pt;}
.y46{bottom:100.630080pt;}
.y77{bottom:100.640000pt;}
.y175{bottom:101.600000pt;}
.ya5{bottom:103.200000pt;}
.y1f4{bottom:104.560000pt;}
.y197{bottom:108.400000pt;}
.y14f{bottom:111.040000pt;}
.y1b2{bottom:114.320000pt;}
.y184{bottom:114.480000pt;}
.y109{bottom:114.560000pt;}
.y45{bottom:115.995040pt;}
.y76{bottom:116.000000pt;}
.ya4{bottom:118.560000pt;}
.ye7{bottom:120.000000pt;}
.y173{bottom:123.760000pt;}
.y1f1{bottom:124.480000pt;}
.y1a2{bottom:126.720000pt;}
.y14e{bottom:128.720000pt;}
.y108{bottom:129.755040pt;}
.y195{bottom:130.560000pt;}
.yc3{bottom:131.360000pt;}
.y1f3{bottom:133.200000pt;}
.ya3{bottom:133.760000pt;}
.y44{bottom:135.360000pt;}
.y1be{bottom:136.160000pt;}
.y1b0{bottom:136.400000pt;}
.y171{bottom:137.840000pt;}
.y193{bottom:144.640000pt;}
.y75{bottom:146.710080pt;}
.yc2{bottom:146.715040pt;}
.y43{bottom:146.720000pt;}
.ya2{bottom:149.120000pt;}
.y1ae{bottom:150.480000pt;}
.y1a0{bottom:158.480000pt;}
.y16f{bottom:159.920000pt;}
.y107{bottom:160.480000pt;}
.y12b{bottom:160.800000pt;}
.y74{bottom:162.075040pt;}
.y42{bottom:162.080000pt;}
.y1ef{bottom:164.160000pt;}
.y1bb{bottom:164.320000pt;}
.ya1{bottom:164.480000pt;}
.y191{bottom:166.720000pt;}
.y19e{bottom:172.560000pt;}
.y1ac{bottom:172.640000pt;}
.y1f0{bottom:172.960000pt;}
.y16d{bottom:174.080000pt;}
.y106{bottom:175.809600pt;}
.ya0{bottom:175.840000pt;}
.y183{bottom:176.000000pt;}
.y41{bottom:177.440000pt;}
.y1b9{bottom:178.480000pt;}
.y18f{bottom:180.880000pt;}
.y73{bottom:181.440000pt;}
.y19c{bottom:186.720000pt;}
.y105{bottom:191.174560pt;}
.y1b7{bottom:192.560000pt;}
.y40{bottom:192.630080pt;}
.y72{bottom:192.640000pt;}
.y9f{bottom:195.200000pt;}
.y16b{bottom:196.160000pt;}
.y1ee{bottom:199.920000pt;}
.y18d{bottom:202.960000pt;}
.y104{bottom:206.539520pt;}
.y9e{bottom:206.720000pt;}
.y3f{bottom:207.995040pt;}
.y71{bottom:208.000000pt;}
.y19a{bottom:208.800000pt;}
.y169{bottom:210.240000pt;}
.yc1{bottom:212.000000pt;}
.y1b5{bottom:214.640000pt;}
.y18b{bottom:217.040000pt;}
.y1ed{bottom:219.840000pt;}
.y181{bottom:220.800000pt;}
.y103{bottom:221.745120pt;}
.y198{bottom:222.880000pt;}
.y1a8{bottom:222.960000pt;}
.y70{bottom:223.344480pt;}
.yc0{bottom:223.355040pt;}
.y168{bottom:224.320000pt;}
.y3e{bottom:227.360000pt;}
.y1b3{bottom:228.800000pt;}
.y18a{bottom:231.200000pt;}
.y17f{bottom:234.960000pt;}
.y1a7{bottom:237.040000pt;}
.y102{bottom:237.110080pt;}
.y166{bottom:238.480000pt;}
.y6f{bottom:238.709440pt;}
.y3d{bottom:238.715040pt;}
.ye6{bottom:238.880000pt;}
.y1eb{bottom:239.680000pt;}
.ybf{bottom:242.720000pt;}
.y196{bottom:245.040000pt;}
.y188{bottom:245.280000pt;}
.y1ec{bottom:248.400000pt;}
.y17d{bottom:249.040000pt;}
.y1b1{bottom:250.880000pt;}
.y1a5{bottom:251.120000pt;}
.y9d{bottom:251.198720pt;}
.y101{bottom:252.475040pt;}
.y164{bottom:252.560000pt;}
.y6e{bottom:254.074400pt;}
.ybe{bottom:254.240000pt;}
.y187{bottom:256.720000pt;}
.y3c{bottom:258.080000pt;}
.y194{bottom:259.120000pt;}
.y17c{bottom:263.120000pt;}
.y1af{bottom:264.960000pt;}
.y186{bottom:265.680000pt;}
.y1a4{bottom:266.560000pt;}
.y163{bottom:266.640000pt;}
.y3b{bottom:269.600000pt;}
.y100{bottom:271.840000pt;}
.y6d{bottom:273.280000pt;}
.y17b{bottom:274.560000pt;}
.y1e8{bottom:275.440000pt;}
.y9c{bottom:280.005760pt;}
.y161{bottom:280.800000pt;}
.y192{bottom:281.200000pt;}
.y185{bottom:283.280000pt;}
.yff{bottom:283.360000pt;}
.y179{bottom:283.520000pt;}
.y1a3{bottom:283.920000pt;}
.y1ea{bottom:284.160000pt;}
.y6c{bottom:284.960000pt;}
.y1ad{bottom:287.120000pt;}
.ye5{bottom:288.893440pt;}
.y160{bottom:292.240000pt;}
.y190{bottom:295.360000pt;}
.y9b{bottom:298.081920pt;}
.y15e{bottom:301.120000pt;}
.y1ab{bottom:301.200000pt;}
.y6b{bottom:310.919680pt;}
.y1e7{bottom:311.120000pt;}
.y9a{bottom:316.325760pt;}
.y18e{bottom:317.440000pt;}
.y15d{bottom:317.840000pt;}
.ye4{bottom:317.847680pt;}
.y3a{bottom:318.426880pt;}
.yfe{bottom:319.868800pt;}
.y1aa{bottom:323.280000pt;}
.y6a{bottom:328.995840pt;}
.y12a{bottom:330.426880pt;}
.y1e6{bottom:331.040000pt;}
.y18c{bottom:331.520000pt;}
.y99{bottom:334.563840pt;}
.y39{bottom:336.503040pt;}
.y1a9{bottom:337.440000pt;}
.yfd{bottom:337.783040pt;}
.ye3{bottom:346.654720pt;}
.y1e5{bottom:350.880000pt;}
.y98{bottom:352.686080pt;}
.y38{bottom:354.741120pt;}
.yfc{bottom:356.021120pt;}
.y69{bottom:358.112000pt;}
.y129{bottom:359.381120pt;}
.y189{bottom:359.760000pt;}
.y1a6{bottom:365.600000pt;}
.y1e3{bottom:370.720000pt;}
.y97{bottom:370.924160pt;}
.y37{bottom:372.979200pt;}
.yfb{bottom:374.259200pt;}
.ye2{bottom:375.608960pt;}
.y68{bottom:376.188160pt;}
.y128{bottom:377.295360pt;}
.y1e4{bottom:379.520000pt;}
.y96{bottom:389.162240pt;}
.y36{bottom:391.055360pt;}
.yfa{bottom:392.497280pt;}
.ye1{bottom:393.523200pt;}
.y67{bottom:394.264320pt;}
.y127{bottom:395.533440pt;}
.ybd{bottom:396.684160pt;}
.y1e1{bottom:406.480000pt;}
.y95{bottom:407.400320pt;}
.y35{bottom:409.293440pt;}
.y15c{bottom:410.160000pt;}
.yf9{bottom:410.573440pt;}
.y66{bottom:412.502400pt;}
.y126{bottom:413.771520pt;}
.ybc{bottom:414.922240pt;}
.y1e2{bottom:415.280000pt;}
.ye0{bottom:422.639360pt;}
.y94{bottom:425.476480pt;}
.y34{bottom:427.531520pt;}
.yf8{bottom:428.811520pt;}
.y65{bottom:430.740480pt;}
.ybb{bottom:432.998400pt;}
.ydf{bottom:440.553600pt;}
.y125{bottom:442.725760pt;}
.y33{bottom:445.769600pt;}
.y1df{bottom:446.240000pt;}
.yf7{bottom:447.049600pt;}
.y64{bottom:448.978560pt;}
.yba{bottom:451.236480pt;}
.y93{bottom:454.592640pt;}
.y1e0{bottom:454.960000pt;}
.yde{bottom:458.791680pt;}
.y144{bottom:458.972800pt;}
.y124{bottom:460.801920pt;}
.y32{bottom:463.845760pt;}
.y17{bottom:464.632080pt;}
.yf6{bottom:465.287680pt;}
.yb9{bottom:469.474560pt;}
.y92{bottom:472.506880pt;}
.ydd{bottom:477.029760pt;}
.y143{bottom:477.048960pt;}
.y123{bottom:479.078400pt;}
.y63{bottom:479.213440pt;}
.y1de{bottom:482.000000pt;}
.y31{bottom:482.083840pt;}
.yf5{bottom:483.363840pt;}
.yb8{bottom:487.712640pt;}
.y91{bottom:490.744960pt;}
.ydc{bottom:495.267840pt;}
.y142{bottom:495.287040pt;}
.y122{bottom:497.316480pt;}
.y62{bottom:498.246400pt;}
.y16{bottom:498.552960pt;}
.y1dd{bottom:501.840000pt;}
.y90{bottom:508.983040pt;}
.y30{bottom:511.244800pt;}
.y176{bottom:511.760000pt;}
.yf4{bottom:512.480000pt;}
.ydb{bottom:513.505920pt;}
.y121{bottom:515.392640pt;}
.y61{bottom:516.484480pt;}
.yb7{bottom:516.666880pt;}
.y1dc{bottom:521.680000pt;}
.y141{bottom:524.241280pt;}
.y8f{bottom:527.221120pt;}
.yf3{bottom:529.110080pt;}
.y2f{bottom:529.159040pt;}
.y15{bottom:532.473840pt;}
.y120{bottom:533.630720pt;}
.y174{bottom:533.920000pt;}
.y60{bottom:534.722560pt;}
.yb6{bottom:534.743040pt;}
.y1db{bottom:541.600000pt;}
.y140{bottom:542.317440pt;}
.yda{bottom:542.460160pt;}
.yf2{bottom:544.475040pt;}
.y8e{bottom:545.459200pt;}
.y2e{bottom:547.397120pt;}
.y172{bottom:548.000000pt;}
.y5f{bottom:552.960640pt;}
.yb5{bottom:552.981120pt;}
.yf1{bottom:559.840000pt;}
.yd9{bottom:560.536320pt;}
.y13f{bottom:560.555520pt;}
.y1d8{bottom:561.440000pt;}
.y11f{bottom:562.584960pt;}
.y8d{bottom:563.535360pt;}
.y2d{bottom:565.635200pt;}
.y14{bottom:566.394720pt;}
.y170{bottom:570.080000pt;}
.y1da{bottom:570.160000pt;}
.y5e{bottom:571.036800pt;}
.yb4{bottom:571.057280pt;}
.yd8{bottom:578.612480pt;}
.y13e{bottom:578.631680pt;}
.y11e{bottom:580.661120pt;}
.y8c{bottom:581.773440pt;}
.y2c{bottom:583.873280pt;}
.yf0{bottom:584.160000pt;}
.y16e{bottom:584.240000pt;}
.y1d9{bottom:586.080000pt;}
.yb3{bottom:589.295360pt;}
.yd7{bottom:596.850560pt;}
.y13d{bottom:596.869760pt;}
.y11d{bottom:598.899200pt;}
.y5d{bottom:600.152960pt;}
.y13{bottom:600.315600pt;}
.y2b{bottom:601.949440pt;}
.y16c{bottom:606.320000pt;}
.yb2{bottom:607.533440pt;}
.y8b{bottom:610.727680pt;}
.y1d5{bottom:613.040000pt;}
.y13c{bottom:615.107840pt;}
.y11c{bottom:617.137280pt;}
.y2a{bottom:620.187520pt;}
.y16a{bottom:620.400000pt;}
.y1d7{bottom:621.840000pt;}
.yd6{bottom:625.966720pt;}
.y8a{bottom:628.803840pt;}
.y5c{bottom:629.000320pt;}
.y182{bottom:630.960000pt;}
.y12{bottom:634.236480pt;}
.y11b{bottom:635.213440pt;}
.yb1{bottom:636.487680pt;}
.y29{bottom:638.425600pt;}
.yd5{bottom:643.880960pt;}
.y13b{bottom:644.062080pt;}
.y180{bottom:645.120000pt;}
.y89{bottom:647.041920pt;}
.y5b{bottom:647.076480pt;}
.y167{bottom:648.640000pt;}
.y1d4{bottom:648.800000pt;}
.y11a{bottom:653.451520pt;}
.yb0{bottom:654.563840pt;}
.y17e{bottom:659.200000pt;}
.yd4{bottom:662.119040pt;}
.y13a{bottom:662.138240pt;}
.y165{bottom:662.720000pt;}
.y88{bottom:665.287680pt;}
.y5a{bottom:665.314560pt;}
.y28{bottom:667.379840pt;}
.y11{bottom:668.157360pt;}
.y1d3{bottom:668.640000pt;}
.yaf{bottom:672.801920pt;}
.yd3{bottom:680.357120pt;}
.y139{bottom:680.376320pt;}
.y119{bottom:682.567680pt;}
.y87{bottom:683.363840pt;}
.y59{bottom:683.390720pt;}
.y27{bottom:685.456000pt;}
.y1d2{bottom:688.560000pt;}
.y162{bottom:690.960000pt;}
.yae{bottom:691.092480pt;}
.y17a{bottom:693.680000pt;}
.yd2{bottom:698.595200pt;}
.y138{bottom:698.614400pt;}
.y118{bottom:700.481920pt;}
.y86{bottom:701.601920pt;}
.y58{bottom:701.628800pt;}
.y10{bottom:702.078240pt;}
.y26{bottom:703.694080pt;}
.y1cf{bottom:708.400000pt;}
.yad{bottom:709.168640pt;}
.y15f{bottom:711.280000pt;}
.yd1{bottom:716.671360pt;}
.y137{bottom:716.690560pt;}
.y1d1{bottom:717.120000pt;}
.y117{bottom:718.741120pt;}
.y85{bottom:719.847680pt;}
.y57{bottom:719.866880pt;}
.y25{bottom:721.770240pt;}
.yac{bottom:727.406720pt;}
.yd0{bottom:734.909440pt;}
.y136{bottom:734.928640pt;}
.yf{bottom:735.999120pt;}
.y116{bottom:736.979200pt;}
.y15a{bottom:737.840000pt;}
.y84{bottom:738.085760pt;}
.y56{bottom:738.104960pt;}
.y24{bottom:740.008320pt;}
.y1ce{bottom:748.160000pt;}
.ycf{bottom:753.147520pt;}
.y115{bottom:755.217280pt;}
.y14d{bottom:755.440000pt;}
.y83{bottom:756.161920pt;}
.y55{bottom:756.181120pt;}
.yab{bottom:756.360960pt;}
.y135{bottom:764.044800pt;}
.y1cd{bottom:768.000000pt;}
.y23{bottom:769.124480pt;}
.ye{bottom:769.920000pt;}
.yce{bottom:771.385600pt;}
.y114{bottom:773.293440pt;}
.y82{bottom:774.403840pt;}
.yaa{bottom:774.437120pt;}
.y158{bottom:778.320000pt;}
.y202{bottom:778.560000pt;}
.y134{bottom:781.959040pt;}
.y54{bottom:785.297280pt;}
.y1cc{bottom:787.840000pt;}
.ycd{bottom:789.461760pt;}
.yd{bottom:790.480000pt;}
.y113{bottom:791.531520pt;}
.y81{bottom:792.641920pt;}
.ya9{bottom:792.675200pt;}
.y22{bottom:797.931520pt;}
.y53{bottom:803.373440pt;}
.y1cb{bottom:807.760000pt;}
.y201{bottom:809.680000pt;}
.y112{bottom:809.769600pt;}
.y80{bottom:810.913280pt;}
.y133{bottom:811.075200pt;}
.yc{bottom:812.492080pt;}
.y155{bottom:813.600000pt;}
.y21{bottom:816.007680pt;}
.ycc{bottom:818.577920pt;}
.y52{bottom:821.449600pt;}
.y1c9{bottom:827.600000pt;}
.y111{bottom:828.007680pt;}
.y7f{bottom:828.989440pt;}
.y1fe{bottom:829.520000pt;}
.y20{bottom:834.245760pt;}
.ycb{bottom:836.654080pt;}
.y200{bottom:838.320000pt;}
.y51{bottom:839.687680pt;}
.yb{bottom:843.128080pt;}
.y110{bottom:846.083840pt;}
.y132{bottom:847.227520pt;}
.y1c6{bottom:847.440000pt;}
.y152{bottom:848.800000pt;}
.y1ff{bottom:854.160000pt;}
.yca{bottom:854.730240pt;}
.y50{bottom:857.925760pt;}
.y7e{bottom:858.105600pt;}
.y1f{bottom:863.205760pt;}
.y10f{bottom:864.321920pt;}
.y131{bottom:865.465600pt;}
.y150{bottom:866.480000pt;}
.yef{bottom:868.000000pt;}
.yc9{bottom:872.968320pt;}
.ya{bottom:873.844000pt;}
.y7d{bottom:876.181760pt;}
.y1fc{bottom:881.120000pt;}
.y1e{bottom:881.281920pt;}
.y1c5{bottom:882.152640pt;}
.y10e{bottom:882.560000pt;}
.y130{bottom:883.703680pt;}
.y4f{bottom:886.885760pt;}
.y1fd{bottom:889.920000pt;}
.yc8{bottom:891.206400pt;}
.y7c{bottom:894.257920pt;}
.yee{bottom:894.413440pt;}
.y148{bottom:896.480000pt;}
.y1d{bottom:899.520000pt;}
.y12f{bottom:901.779840pt;}
.y9{bottom:904.480000pt;}
.y4e{bottom:904.961920pt;}
.y14c{bottom:905.920000pt;}
.y1c4{bottom:909.353600pt;}
.yc7{bottom:909.444480pt;}
.y10d{bottom:910.720000pt;}
.yed{bottom:912.489600pt;}
.y7b{bottom:912.496000pt;}
.y1fa{bottom:916.880000pt;}
.y4d{bottom:923.212160pt;}
.y1fb{bottom:925.600000pt;}
.y1c3{bottom:925.920000pt;}
.yec{bottom:930.727680pt;}
.y7a{bottom:930.734080pt;}
.y12e{bottom:930.896000pt;}
.y8{bottom:933.213680pt;}
.y10c{bottom:934.080000pt;}
.yc6{bottom:938.398720pt;}
.y4c{bottom:941.450240pt;}
.y1c2{bottom:942.473600pt;}
.yeb{bottom:948.965760pt;}
.y79{bottom:948.972160pt;}
.y1f8{bottom:952.640000pt;}
.y7{bottom:953.125600pt;}
.y145{bottom:953.520000pt;}
.y1c{bottom:957.280000pt;}
.y1c1{bottom:959.040000pt;}
.y4b{bottom:959.526400pt;}
.y1f9{bottom:961.360000pt;}
.yea{bottom:967.041920pt;}
.ya8{bottom:967.048320pt;}
.yc5{bottom:967.205760pt;}
.y6{bottom:972.968080pt;}
.y4a{bottom:977.764480pt;}
.y78{bottom:977.926400pt;}
.y147{bottom:978.560000pt;}
.ye9{bottom:985.286400pt;}
.y1b{bottom:987.525920pt;}
.y1f7{bottom:988.320000pt;}
.y5{bottom:992.880000pt;}
.y49{bottom:996.002560pt;}
.yc4{bottom:996.163840pt;}
.ya7{bottom:996.164480pt;}
.y1f6{bottom:1008.240000pt;}
.y1a{bottom:1010.720000pt;}
.y48{bottom:1014.240640pt;}
.ye8{bottom:1014.402560pt;}
.y10b{bottom:1016.800000pt;}
.y2{bottom:1090.640000pt;}
.y1{bottom:1108.560000pt;}
.h27{height:13.757812pt;}
.h24{height:17.598667pt;}
.h2c{height:19.840000pt;}
.h2d{height:19.841333pt;}
.h2b{height:19.920000pt;}
.hc{height:29.716875pt;}
.h28{height:30.984844pt;}
.h19{height:34.945312pt;}
.h33{height:35.680000pt;}
.h31{height:35.681333pt;}
.h2f{height:35.760000pt;}
.h26{height:36.595781pt;}
.h2a{height:37.408000pt;}
.h23{height:38.905781pt;}
.h2{height:39.030469pt;}
.h32{height:39.680000pt;}
.h2e{height:39.761333pt;}
.h1b{height:41.273438pt;}
.ha{height:42.866250pt;}
.hd{height:45.675938pt;}
.h16{height:45.695778pt;}
.h1a{height:45.797537pt;}
.h21{height:45.951094pt;}
.h3{height:50.554219pt;}
.h6{height:50.628750pt;}
.h30{height:51.600000pt;}
.h14{height:52.828205pt;}
.h13{height:52.853805pt;}
.hb{height:52.858925pt;}
.hf{height:52.876845pt;}
.h1d{height:52.884525pt;}
.h10{height:52.905005pt;}
.h1c{height:52.953645pt;}
.h18{height:52.984365pt;}
.he{height:52.989485pt;}
.h12{height:53.007405pt;}
.h17{height:53.012525pt;}
.h9{height:53.015085pt;}
.h11{height:53.022765pt;}
.h15{height:53.035565pt;}
.h8{height:53.038125pt;}
.h1f{height:54.281719pt;}
.h7{height:54.514687pt;}
.h20{height:57.040000pt;}
.h4{height:59.708906pt;}
.h1e{height:74.560000pt;}
.h5{height:77.578594pt;}
.h22{height:141.041333pt;}
.h29{height:295.680000pt;}
.h25{height:327.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:60.560000pt;}
.w4{width:277.280000pt;}
.w3{width:330.800000pt;}
.w6{width:549.520000pt;}
.w2{width:608.081333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:7.200000pt;}
.x5{left:93.095680pt;}
.x4{left:94.398080pt;}
.x1{left:99.200000pt;}
.xd{left:101.520000pt;}
.x1f{left:121.120000pt;}
.x20{left:122.960000pt;}
.xc{left:131.520000pt;}
.x1b{left:139.440000pt;}
.x14{left:148.480000pt;}
.x2e{left:155.040000pt;}
.x2f{left:162.240000pt;}
.x1e{left:167.920000pt;}
.x13{left:185.760000pt;}
.xb{left:190.800000pt;}
.x8{left:194.080000pt;}
.xf{left:203.600000pt;}
.xa{left:211.600000pt;}
.xe{left:220.160000pt;}
.x9{left:222.000000pt;}
.x2{left:223.200000pt;}
.x1d{left:235.600000pt;}
.x12{left:238.000000pt;}
.x11{left:240.960000pt;}
.x1c{left:252.160000pt;}
.x10{left:288.400000pt;}
.x3{left:392.640000pt;}
.x2c{left:396.880000pt;}
.x15{left:425.280000pt;}
.x29{left:451.920000pt;}
.x2b{left:453.760000pt;}
.x21{left:470.240000pt;}
.x28{left:479.280000pt;}
.x27{left:498.720000pt;}
.x2a{left:517.440000pt;}
.x19{left:534.400000pt;}
.x17{left:539.360000pt;}
.x1a{left:540.880000pt;}
.x18{left:542.080000pt;}
.x23{left:566.400000pt;}
.x26{left:568.800000pt;}
.x25{left:571.760000pt;}
.x22{left:582.960000pt;}
.x24{left:619.200000pt;}
.x16{left:635.680000pt;}
.x7{left:684.320000pt;}
.x6{left:699.680000pt;}
}




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