
    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_7faeb8995e5e6cb63a5ea79b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693359;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_150a1f17ef6bba1c7673fcce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_00e0b79a461fea9c18704e58.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e3cbead214ec6884c94e2f4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.909180;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_6189e04a6a351b7a3f49c7f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908691;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_92bfe534384a15cd3b60ddc8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710938;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_56a7745cbd422641c1669598.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_08e0123bc56dbca3a2c5a6ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_48496e02e5ffa4205471c20d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_463d0806db8eecd23b91f84e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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;}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.236463,0.000000,-0.080873,0.236558,0,0);-ms-transform:matrix(0.236463,0.000000,-0.080873,0.236558,0,0);-webkit-transform:matrix(0.236463,0.000000,-0.080873,0.236558,0,0);}
.m6{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v1{vertical-align:-12.243132px;}
.v4{vertical-align:-2.519028px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.519028px;}
.v2{vertical-align:12.240000px;}
.v3{vertical-align:14.760000px;}
.v6{vertical-align:21.958296px;}
.v7{vertical-align:34.200600px;}
.ls29{letter-spacing:-5.443200px;}
.ls92{letter-spacing:-0.540000px;}
.ls9e{letter-spacing:-0.480600px;}
.ls48{letter-spacing:-0.324648px;}
.ls4d{letter-spacing:-0.288576px;}
.ls9d{letter-spacing:-0.286200px;}
.ls7a{letter-spacing:-0.270540px;}
.ls64{letter-spacing:-0.264528px;}
.ls7f{letter-spacing:-0.228456px;}
.ls81{letter-spacing:-0.198396px;}
.ls82{letter-spacing:-0.192384px;}
.ls7c{letter-spacing:-0.180360px;}
.ls97{letter-spacing:-0.178200px;}
.ls69{letter-spacing:-0.174348px;}
.ls37{letter-spacing:-0.168336px;}
.ls47{letter-spacing:-0.162324px;}
.ls9a{letter-spacing:-0.162000px;}
.ls35{letter-spacing:-0.156312px;}
.ls2f{letter-spacing:-0.150300px;}
.ls67{letter-spacing:-0.144288px;}
.ls3e{letter-spacing:-0.138276px;}
.ls3f{letter-spacing:-0.132264px;}
.ls36{letter-spacing:-0.126252px;}
.ls2e{letter-spacing:-0.120240px;}
.ls4b{letter-spacing:-0.114228px;}
.ls2c{letter-spacing:-0.108216px;}
.ls9c{letter-spacing:-0.102600px;}
.ls3a{letter-spacing:-0.102204px;}
.ls8f{letter-spacing:-0.100800px;}
.ls63{letter-spacing:-0.096192px;}
.ls33{letter-spacing:-0.090180px;}
.ls32{letter-spacing:-0.084168px;}
.ls98{letter-spacing:-0.081000px;}
.ls46{letter-spacing:-0.078156px;}
.ls4f{letter-spacing:-0.072144px;}
.ls39{letter-spacing:-0.066132px;}
.ls4e{letter-spacing:-0.060120px;}
.ls7d{letter-spacing:-0.057600px;}
.ls7b{letter-spacing:-0.054108px;}
.ls93{letter-spacing:-0.054000px;}
.lsa0{letter-spacing:-0.048600px;}
.ls2d{letter-spacing:-0.048096px;}
.ls7e{letter-spacing:-0.043200px;}
.ls6c{letter-spacing:-0.042084px;}
.ls4c{letter-spacing:-0.036072px;}
.ls44{letter-spacing:-0.033696px;}
.ls9f{letter-spacing:-0.032400px;}
.ls40{letter-spacing:-0.030060px;}
.ls45{letter-spacing:-0.029484px;}
.ls76{letter-spacing:-0.028800px;}
.ls9b{letter-spacing:-0.027000px;}
.ls41{letter-spacing:-0.024048px;}
.ls80{letter-spacing:-0.021600px;}
.ls65{letter-spacing:-0.018036px;}
.ls49{letter-spacing:-0.016848px;}
.ls90{letter-spacing:-0.016200px;}
.ls42{letter-spacing:-0.014400px;}
.ls3b{letter-spacing:-0.012024px;}
.ls94{letter-spacing:-0.010800px;}
.ls2b{letter-spacing:-0.007200px;}
.ls38{letter-spacing:-0.006012px;}
.ls91{letter-spacing:-0.005400px;}
.ls2a{letter-spacing:0.000000px;}
.ls85{letter-spacing:0.005400px;}
.ls7{letter-spacing:0.006012px;}
.ls0{letter-spacing:0.007200px;}
.ls88{letter-spacing:0.010800px;}
.ls21{letter-spacing:0.012024px;}
.ls2{letter-spacing:0.014400px;}
.ls84{letter-spacing:0.016200px;}
.ls53{letter-spacing:0.018036px;}
.ls4a{letter-spacing:0.021060px;}
.ls1{letter-spacing:0.021600px;}
.ls72{letter-spacing:0.024048px;}
.ls8c{letter-spacing:0.027000px;}
.ls71{letter-spacing:0.028800px;}
.ls70{letter-spacing:0.030060px;}
.ls87{letter-spacing:0.032400px;}
.ls3{letter-spacing:0.036000px;}
.ls8d{letter-spacing:0.037800px;}
.ls5{letter-spacing:0.042084px;}
.ls50{letter-spacing:0.043200px;}
.ls1d{letter-spacing:0.046332px;}
.ls79{letter-spacing:0.048096px;}
.ls8a{letter-spacing:0.048600px;}
.ls6f{letter-spacing:0.050400px;}
.ls74{letter-spacing:0.050544px;}
.ls26{letter-spacing:0.052668px;}
.ls83{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.054108px;}
.ls62{letter-spacing:0.057600px;}
.lsa{letter-spacing:0.060120px;}
.ls8b{letter-spacing:0.064800px;}
.ls3d{letter-spacing:0.066132px;}
.ls86{letter-spacing:0.067032px;}
.ls1f{letter-spacing:0.072144px;}
.ls28{letter-spacing:0.075492px;}
.ls89{letter-spacing:0.075600px;}
.ls25{letter-spacing:0.076608px;}
.ls15{letter-spacing:0.078156px;}
.ls8{letter-spacing:0.084168px;}
.ls31{letter-spacing:0.090180px;}
.ls9{letter-spacing:0.096192px;}
.ls1c{letter-spacing:0.096876px;}
.ls8e{letter-spacing:0.097200px;}
.ls4{letter-spacing:0.102204px;}
.ls30{letter-spacing:0.108216px;}
.ls6{letter-spacing:0.114228px;}
.ls19{letter-spacing:0.117936px;}
.lsa1{letter-spacing:0.118800px;}
.lsc{letter-spacing:0.120240px;}
.ls23{letter-spacing:0.126252px;}
.ls3c{letter-spacing:0.132264px;}
.ls34{letter-spacing:0.138276px;}
.ls27{letter-spacing:0.143640px;}
.lsb{letter-spacing:0.144288px;}
.ls75{letter-spacing:0.150300px;}
.ls6d{letter-spacing:0.156312px;}
.ls24{letter-spacing:0.185724px;}
.ls58{letter-spacing:0.186372px;}
.ls59{letter-spacing:0.258516px;}
.ls1e{letter-spacing:0.808704px;}
.ls20{letter-spacing:0.889776px;}
.ls60{letter-spacing:1.082160px;}
.ls6b{letter-spacing:1.094184px;}
.ls13{letter-spacing:1.149876px;}
.ls10{letter-spacing:1.170936px;}
.ls17{letter-spacing:1.809612px;}
.ls5a{letter-spacing:2.458908px;}
.ls6a{letter-spacing:2.464920px;}
.ls14{letter-spacing:2.617558px;}
.lsf{letter-spacing:2.623294px;}
.ls16{letter-spacing:2.819628px;}
.lsd{letter-spacing:3.276330px;}
.ls1b{letter-spacing:3.316434px;}
.ls18{letter-spacing:3.323945px;}
.ls78{letter-spacing:3.383401px;}
.ls61{letter-spacing:3.670099px;}
.lse{letter-spacing:3.689035px;}
.ls12{letter-spacing:3.695583px;}
.ls5e{letter-spacing:4.030243px;}
.ls22{letter-spacing:4.899780px;}
.ls99{letter-spacing:7.268184px;}
.ls56{letter-spacing:8.380728px;}
.ls54{letter-spacing:8.392752px;}
.ls55{letter-spacing:8.543052px;}
.ls77{letter-spacing:13.154256px;}
.ls6e{letter-spacing:13.166280px;}
.ls73{letter-spacing:13.232412px;}
.ls5d{letter-spacing:13.424796px;}
.ls43{letter-spacing:14.458860px;}
.ls57{letter-spacing:16.316568px;}
.ls5b{letter-spacing:16.665264px;}
.ls68{letter-spacing:16.671276px;}
.ls5c{letter-spacing:16.677288px;}
.ls52{letter-spacing:16.827588px;}
.ls66{letter-spacing:18.390708px;}
.ls5f{letter-spacing:18.829758px;}
.ls95{letter-spacing:24.188976px;}
.ls96{letter-spacing:29.585052px;}
.ls51{letter-spacing:46.671156px;}
.ls1a{letter-spacing:79.695072px;}
.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;}
}
.ws5{word-spacing:-139.815072px;}
.ws65{word-spacing:-78.510708px;}
.ws67{word-spacing:-76.791276px;}
.ws2{word-spacing:-74.578860px;}
.ws6a{word-spacing:-62.584920px;}
.ws6f{word-spacing:-61.214184px;}
.ws68{word-spacing:-60.138036px;}
.ws0{word-spacing:-60.120000px;}
.ws69{word-spacing:-60.113988px;}
.ws6d{word-spacing:-59.957676px;}
.ws3{word-spacing:-43.290936px;}
.ws8{word-spacing:-42.928704px;}
.wsb1{word-spacing:-42.170544px;}
.ws7{word-spacing:-42.166332px;}
.ws6{word-spacing:-42.103152px;}
.ws6e{word-spacing:-41.831494px;}
.ws70{word-spacing:-41.404644px;}
.ws161{word-spacing:-28.795032px;}
.ws4{word-spacing:-23.182901px;}
.ws6b{word-spacing:-13.226400px;}
.ws4e{word-spacing:-13.178304px;}
.ws66{word-spacing:-13.082112px;}
.ws6c{word-spacing:-13.070088px;}
.ws107{word-spacing:-3.613212px;}
.wsd7{word-spacing:-3.589164px;}
.ws7e{word-spacing:-3.438864px;}
.ws5e{word-spacing:-3.402792px;}
.ws133{word-spacing:-3.396780px;}
.ws15{word-spacing:-3.354696px;}
.ws119{word-spacing:-3.276540px;}
.ws19{word-spacing:-3.258504px;}
.wsab{word-spacing:-3.252492px;}
.ws1a{word-spacing:-3.150288px;}
.ws13{word-spacing:-3.096180px;}
.ws116{word-spacing:-3.078144px;}
.ws162{word-spacing:-3.045600px;}
.ws113{word-spacing:-2.993976px;}
.ws2d{word-spacing:-2.987964px;}
.ws153{word-spacing:-2.903796px;}
.wsc7{word-spacing:-2.885760px;}
.ws11e{word-spacing:-2.879748px;}
.ws12e{word-spacing:-2.825640px;}
.ws191{word-spacing:-2.775600px;}
.ws188{word-spacing:-2.710800px;}
.ws189{word-spacing:-2.656800px;}
.ws84{word-spacing:-2.627244px;}
.ws61{word-spacing:-2.614608px;}
.ws190{word-spacing:-2.597400px;}
.ws192{word-spacing:-2.349000px;}
.ws45{word-spacing:-2.344680px;}
.ws46{word-spacing:-2.338668px;}
.wsd5{word-spacing:-2.326644px;}
.ws12f{word-spacing:-2.296584px;}
.ws56{word-spacing:-2.290572px;}
.wsa9{word-spacing:-2.182356px;}
.ws12{word-spacing:-2.158308px;}
.ws5d{word-spacing:-2.152296px;}
.ws55{word-spacing:-2.134260px;}
.ws186{word-spacing:-2.014200px;}
.ws1d{word-spacing:-2.014020px;}
.wsfd{word-spacing:-1.995984px;}
.wsf5{word-spacing:-1.983960px;}
.ws17d{word-spacing:-1.981800px;}
.ws149{word-spacing:-1.977948px;}
.ws1c{word-spacing:-1.971936px;}
.wse7{word-spacing:-1.953900px;}
.ws21{word-spacing:-1.935864px;}
.ws3b{word-spacing:-1.923840px;}
.ws111{word-spacing:-1.821636px;}
.ws79{word-spacing:-1.809612px;}
.ws127{word-spacing:-1.701396px;}
.ws128{word-spacing:-1.665324px;}
.ws183{word-spacing:-1.652400px;}
.ws1a5{word-spacing:-1.636200px;}
.wsc9{word-spacing:-1.629252px;}
.ws139{word-spacing:-1.611216px;}
.ws72{word-spacing:-1.605204px;}
.wsc6{word-spacing:-1.593180px;}
.ws156{word-spacing:-1.587168px;}
.wsf4{word-spacing:-1.581156px;}
.ws80{word-spacing:-1.551096px;}
.ws16{word-spacing:-1.454904px;}
.ws26{word-spacing:-1.448892px;}
.ws17{word-spacing:-1.436868px;}
.ws182{word-spacing:-1.285200px;}
.ws19a{word-spacing:-1.269000px;}
.wsdd{word-spacing:-1.250496px;}
.ws53{word-spacing:-1.238472px;}
.ws37{word-spacing:-1.196388px;}
.wsb5{word-spacing:-1.142280px;}
.ws124{word-spacing:-1.082160px;}
.wsce{word-spacing:-1.076148px;}
.wsf2{word-spacing:-1.004004px;}
.ws199{word-spacing:-0.972000px;}
.ws179{word-spacing:-0.923400px;}
.ws3a{word-spacing:-0.919836px;}
.ws11a{word-spacing:-0.913824px;}
.ws1b0{word-spacing:-0.901800px;}
.ws1af{word-spacing:-0.891000px;}
.ws125{word-spacing:-0.877752px;}
.wscb{word-spacing:-0.871740px;}
.ws14c{word-spacing:-0.847692px;}
.wsd4{word-spacing:-0.649296px;}
.wsd3{word-spacing:-0.631260px;}
.ws140{word-spacing:-0.625248px;}
.ws19f{word-spacing:-0.556200px;}
.ws8a{word-spacing:-0.541080px;}
.wsd9{word-spacing:-0.529056px;}
.wsa3{word-spacing:-0.523044px;}
.wsb4{word-spacing:-0.517032px;}
.wse8{word-spacing:-0.480960px;}
.ws15b{word-spacing:-0.432864px;}
.ws8c{word-spacing:-0.396792px;}
.ws85{word-spacing:-0.384768px;}
.wsac{word-spacing:-0.366732px;}
.ws42{word-spacing:-0.360720px;}
.ws122{word-spacing:-0.342684px;}
.ws131{word-spacing:-0.330660px;}
.ws115{word-spacing:-0.280800px;}
.ws130{word-spacing:-0.270540px;}
.ws64{word-spacing:-0.229824px;}
.wse9{word-spacing:-0.228456px;}
.ws24{word-spacing:-0.198396px;}
.ws1a3{word-spacing:-0.194400px;}
.ws145{word-spacing:-0.186372px;}
.ws17a{word-spacing:-0.183600px;}
.ws3f{word-spacing:-0.180360px;}
.ws4c{word-spacing:-0.174348px;}
.wsa2{word-spacing:-0.168336px;}
.ws62{word-spacing:-0.162792px;}
.ws81{word-spacing:-0.162324px;}
.wsa1{word-spacing:-0.156312px;}
.wsb9{word-spacing:-0.150300px;}
.wsa5{word-spacing:-0.138276px;}
.ws54{word-spacing:-0.126252px;}
.ws132{word-spacing:-0.122400px;}
.wsdb{word-spacing:-0.120240px;}
.wse{word-spacing:-0.115200px;}
.ws40{word-spacing:-0.114228px;}
.ws160{word-spacing:-0.108216px;}
.wsf9{word-spacing:-0.108000px;}
.ws123{word-spacing:-0.100800px;}
.ws17b{word-spacing:-0.097200px;}
.ws121{word-spacing:-0.090180px;}
.wsb8{word-spacing:-0.086400px;}
.ws1a0{word-spacing:-0.059400px;}
.wsc0{word-spacing:-0.054108px;}
.wsad{word-spacing:-0.050400px;}
.wsc4{word-spacing:-0.043200px;}
.wsaa{word-spacing:-0.042084px;}
.wsb3{word-spacing:-0.036072px;}
.ws7c{word-spacing:-0.036000px;}
.ws13c{word-spacing:-0.030060px;}
.ws78{word-spacing:-0.028800px;}
.ws8e{word-spacing:-0.024048px;}
.wsd0{word-spacing:-0.021600px;}
.ws143{word-spacing:-0.018036px;}
.wsc{word-spacing:-0.014400px;}
.ws29{word-spacing:-0.012024px;}
.wsd{word-spacing:-0.007200px;}
.wsa4{word-spacing:-0.006012px;}
.wsb{word-spacing:0.000000px;}
.wsf{word-spacing:0.014400px;}
.ws3e{word-spacing:0.021600px;}
.ws144{word-spacing:0.028800px;}
.ws14b{word-spacing:0.036000px;}
.ws43{word-spacing:0.042084px;}
.ws2b{word-spacing:0.054108px;}
.wsfe{word-spacing:0.064800px;}
.ws141{word-spacing:0.078156px;}
.ws17e{word-spacing:0.102600px;}
.ws10d{word-spacing:0.114228px;}
.ws3d{word-spacing:0.120240px;}
.ws10c{word-spacing:0.126252px;}
.ws52{word-spacing:0.132264px;}
.ws9{word-spacing:0.134208px;}
.wsb7{word-spacing:0.138276px;}
.ws195{word-spacing:0.140400px;}
.wsd8{word-spacing:0.144288px;}
.ws170{word-spacing:0.145800px;}
.ws18e{word-spacing:0.151200px;}
.ws5a{word-spacing:0.156312px;}
.ws1a6{word-spacing:0.156600px;}
.ws18a{word-spacing:0.162000px;}
.ws77{word-spacing:0.162324px;}
.ws9c{word-spacing:0.168336px;}
.ws11b{word-spacing:0.174348px;}
.ws1ab{word-spacing:0.178200px;}
.ws73{word-spacing:0.180360px;}
.ws187{word-spacing:0.183600px;}
.ws7b{word-spacing:0.186372px;}
.ws9a{word-spacing:0.192384px;}
.ws2c{word-spacing:0.198396px;}
.ws178{word-spacing:0.199800px;}
.wsc1{word-spacing:0.204408px;}
.wse2{word-spacing:0.210420px;}
.wsc3{word-spacing:0.216000px;}
.wsc2{word-spacing:0.216432px;}
.ws63{word-spacing:0.220248px;}
.ws114{word-spacing:0.230400px;}
.ws96{word-spacing:0.258516px;}
.ws97{word-spacing:0.270540px;}
.ws39{word-spacing:0.312624px;}
.ws15e{word-spacing:0.354708px;}
.ws25{word-spacing:0.360000px;}
.wscc{word-spacing:0.396000px;}
.wsae{word-spacing:0.498996px;}
.ws13b{word-spacing:0.505008px;}
.wsf0{word-spacing:0.523044px;}
.wsbd{word-spacing:0.583164px;}
.ws92{word-spacing:0.847692px;}
.ws5f{word-spacing:0.877752px;}
.wsc8{word-spacing:0.883764px;}
.ws176{word-spacing:0.901800px;}
.ws91{word-spacing:0.907812px;}
.wsc5{word-spacing:0.931860px;}
.ws1aa{word-spacing:0.934200px;}
.ws10e{word-spacing:0.967932px;}
.wsda{word-spacing:0.973944px;}
.ws177{word-spacing:1.080000px;}
.ws95{word-spacing:1.100196px;}
.wsaf{word-spacing:1.256508px;}
.ws7a{word-spacing:1.298592px;}
.wsb0{word-spacing:1.328652px;}
.ws22{word-spacing:1.346688px;}
.wsdf{word-spacing:1.418832px;}
.ws108{word-spacing:1.436868px;}
.ws49{word-spacing:1.503000px;}
.ws17c{word-spacing:1.620000px;}
.ws94{word-spacing:1.623240px;}
.wsbb{word-spacing:1.629252px;}
.ws93{word-spacing:1.635264px;}
.wsee{word-spacing:1.677348px;}
.wsef{word-spacing:1.707408px;}
.ws1f{word-spacing:1.809612px;}
.ws11f{word-spacing:1.815624px;}
.ws14a{word-spacing:1.959912px;}
.ws19e{word-spacing:1.960200px;}
.wsa0{word-spacing:1.977948px;}
.ws16f{word-spacing:1.992600px;}
.ws11d{word-spacing:2.001996px;}
.ws16e{word-spacing:2.035800px;}
.ws31{word-spacing:2.122236px;}
.ws150{word-spacing:2.146284px;}
.ws10b{word-spacing:2.206404px;}
.wsea{word-spacing:2.248488px;}
.ws38{word-spacing:2.284560px;}
.ws13f{word-spacing:2.326644px;}
.ws74{word-spacing:2.362716px;}
.wseb{word-spacing:2.494980px;}
.ws33{word-spacing:2.549088px;}
.ws32{word-spacing:2.615220px;}
.ws75{word-spacing:2.663316px;}
.ws10a{word-spacing:2.669328px;}
.ws76{word-spacing:2.711412px;}
.wsfa{word-spacing:2.735460px;}
.wsec{word-spacing:2.771532px;}
.ws83{word-spacing:2.861712px;}
.ws152{word-spacing:2.867724px;}
.ws148{word-spacing:2.891772px;}
.wse4{word-spacing:2.945880px;}
.ws15d{word-spacing:2.975940px;}
.ws181{word-spacing:2.997000px;}
.ws1a7{word-spacing:3.045600px;}
.ws180{word-spacing:3.051000px;}
.ws82{word-spacing:3.096180px;}
.wscd{word-spacing:3.360708px;}
.ws19b{word-spacing:3.402000px;}
.ws16b{word-spacing:3.407400px;}
.ws137{word-spacing:3.414816px;}
.ws103{word-spacing:3.420828px;}
.ws16c{word-spacing:3.434400px;}
.wsdc{word-spacing:3.444876px;}
.wsd2{word-spacing:3.547080px;}
.wsed{word-spacing:3.607200px;}
.ws23{word-spacing:3.697380px;}
.ws9b{word-spacing:3.727440px;}
.ws102{word-spacing:3.757500px;}
.ws71{word-spacing:3.805596px;}
.ws9d{word-spacing:3.841668px;}
.wsfb{word-spacing:3.877740px;}
.ws3c{word-spacing:3.937860px;}
.ws105{word-spacing:3.985956px;}
.ws50{word-spacing:4.052088px;}
.ws15a{word-spacing:4.064112px;}
.ws106{word-spacing:4.070124px;}
.ws185{word-spacing:4.077000px;}
.ws159{word-spacing:4.094172px;}
.ws14e{word-spacing:4.148280px;}
.ws51{word-spacing:4.172328px;}
.ws41{word-spacing:4.208400px;}
.ws7f{word-spacing:4.226436px;}
.ws28{word-spacing:4.322628px;}
.ws100{word-spacing:4.340664px;}
.ws89{word-spacing:4.436856px;}
.ws196{word-spacing:4.476600px;}
.ws5c{word-spacing:4.490964px;}
.ws5b{word-spacing:4.509000px;}
.wse5{word-spacing:4.533048px;}
.ws112{word-spacing:4.557096px;}
.ws59{word-spacing:4.653288px;}
.ws147{word-spacing:4.671324px;}
.ws87{word-spacing:4.683348px;}
.ws88{word-spacing:4.791564px;}
.ws117{word-spacing:5.026032px;}
.ws58{word-spacing:5.128236px;}
.wsf3{word-spacing:5.194368px;}
.ws172{word-spacing:5.221800px;}
.ws173{word-spacing:5.227200px;}
.ws11c{word-spacing:5.242464px;}
.wsb2{word-spacing:5.260500px;}
.ws101{word-spacing:5.278536px;}
.ws151{word-spacing:5.344668px;}
.wsa{word-spacing:5.450400px;}
.ws1ad{word-spacing:5.502600px;}
.ws17f{word-spacing:5.545800px;}
.ws34{word-spacing:5.615208px;}
.ws14f{word-spacing:5.741460px;}
.ws10{word-spacing:5.777532px;}
.wsff{word-spacing:5.873724px;}
.wsbf{word-spacing:5.921820px;}
.ws11{word-spacing:5.963904px;}
.wse1{word-spacing:5.975928px;}
.ws158{word-spacing:5.993964px;}
.wsbc{word-spacing:6.216408px;}
.ws171{word-spacing:6.247800px;}
.ws109{word-spacing:6.306588px;}
.wsa8{word-spacing:6.342660px;}
.ws44{word-spacing:6.354684px;}
.ws20{word-spacing:6.372720px;}
.ws120{word-spacing:6.450876px;}
.ws184{word-spacing:6.463800px;}
.ws12c{word-spacing:6.486948px;}
.ws48{word-spacing:6.685344px;}
.wsf6{word-spacing:6.691356px;}
.wsf7{word-spacing:6.715404px;}
.ws1e{word-spacing:6.799572px;}
.wsd1{word-spacing:6.853680px;}
.ws13a{word-spacing:6.925824px;}
.ws12b{word-spacing:7.028028px;}
.ws8f{word-spacing:7.034040px;}
.ws90{word-spacing:7.046064px;}
.ws47{word-spacing:7.100172px;}
.wsd6{word-spacing:7.142256px;}
.ws2e{word-spacing:7.202376px;}
.ws174{word-spacing:7.306200px;}
.ws2f{word-spacing:7.310592px;}
.ws1ac{word-spacing:7.403400px;}
.ws135{word-spacing:7.671312px;}
.ws136{word-spacing:7.683336px;}
.ws163{word-spacing:7.684200px;}
.ws57{word-spacing:7.767504px;}
.ws4a{word-spacing:7.887744px;}
.ws27{word-spacing:7.905780px;}
.ws2a{word-spacing:7.917804px;}
.ws4b{word-spacing:7.941852px;}
.ws4d{word-spacing:7.947864px;}
.ws118{word-spacing:8.128224px;}
.ws15c{word-spacing:8.164296px;}
.ws8d{word-spacing:8.278524px;}
.ws4f{word-spacing:8.386740px;}
.wse3{word-spacing:8.458884px;}
.ws146{word-spacing:8.639244px;}
.ws12d{word-spacing:8.645256px;}
.wsca{word-spacing:8.711388px;}
.ws193{word-spacing:8.775000px;}
.ws194{word-spacing:8.791200px;}
.wsbe{word-spacing:8.843652px;}
.ws1b1{word-spacing:9.163800px;}
.ws13e{word-spacing:9.348660px;}
.ws13d{word-spacing:9.516996px;}
.wsf1{word-spacing:9.535032px;}
.ws9f{word-spacing:9.553068px;}
.ws36{word-spacing:9.949860px;}
.ws99{word-spacing:10.196352px;}
.ws98{word-spacing:10.226412px;}
.wsde{word-spacing:10.280520px;}
.wsfc{word-spacing:10.400760px;}
.ws142{word-spacing:10.418796px;}
.ws175{word-spacing:10.573200px;}
.ws104{word-spacing:10.803564px;}
.wse6{word-spacing:11.013984px;}
.ws10f{word-spacing:11.050056px;}
.wsa7{word-spacing:11.164284px;}
.ws157{word-spacing:11.386728px;}
.ws8b{word-spacing:11.879712px;}
.wse0{word-spacing:11.951856px;}
.ws138{word-spacing:12.060072px;}
.ws166{word-spacing:12.063600px;}
.ws134{word-spacing:12.084120px;}
.ws9e{word-spacing:12.246444px;}
.ws110{word-spacing:12.342636px;}
.ws1a1{word-spacing:12.382200px;}
.ws18f{word-spacing:12.409200px;}
.ws1b2{word-spacing:12.414600px;}
.ws1b3{word-spacing:12.425400px;}
.ws198{word-spacing:12.430800px;}
.ws35{word-spacing:12.480912px;}
.ws1{word-spacing:13.082112px;}
.ws12a{word-spacing:13.088124px;}
.ws169{word-spacing:13.462200px;}
.ws168{word-spacing:13.467600px;}
.ws1b{word-spacing:13.863672px;}
.ws126{word-spacing:14.603148px;}
.ws14d{word-spacing:14.729400px;}
.ws18{word-spacing:14.759460px;}
.wsb6{word-spacing:14.969880px;}
.ws19d{word-spacing:15.265800px;}
.ws19c{word-spacing:15.287400px;}
.ws30{word-spacing:15.522984px;}
.ws155{word-spacing:15.571080px;}
.ws1a2{word-spacing:15.924600px;}
.ws154{word-spacing:16.142220px;}
.ws1a4{word-spacing:16.329600px;}
.ws1a9{word-spacing:16.335000px;}
.ws197{word-spacing:16.367400px;}
.wsba{word-spacing:16.923780px;}
.ws167{word-spacing:17.101800px;}
.ws18d{word-spacing:18.160200px;}
.ws14{word-spacing:18.222372px;}
.ws1a8{word-spacing:18.527400px;}
.wsa6{word-spacing:18.595116px;}
.ws129{word-spacing:18.643212px;}
.wscf{word-spacing:20.182284px;}
.ws60{word-spacing:21.955824px;}
.ws16d{word-spacing:22.491000px;}
.ws7d{word-spacing:24.023952px;}
.ws18b{word-spacing:25.023600px;}
.ws18c{word-spacing:25.045200px;}
.wsf8{word-spacing:26.981856px;}
.ws16a{word-spacing:28.620000px;}
.ws164{word-spacing:31.843800px;}
.ws165{word-spacing:31.854600px;}
.ws86{word-spacing:32.308488px;}
.ws15f{word-spacing:37.779408px;}
.ws1ae{word-spacing:72.230400px;}
._1c{margin-left:-39.128694px;}
._b{margin-left:-22.460654px;}
._15{margin-left:-16.236504px;}
._21{margin-left:-15.120000px;}
._22{margin-left:-13.678201px;}
._8{margin-left:-12.277554px;}
._19{margin-left:-9.445684px;}
._a{margin-left:-7.309764px;}
._3{margin-left:-5.940000px;}
._2{margin-left:-3.960000px;}
._5{margin-left:-2.460816px;}
._1{margin-left:-1.296000px;}
._4{width:1.232460px;}
._9{width:2.373495px;}
._1b{width:3.842079px;}
._0{width:5.450400px;}
._d{width:6.483456px;}
._16{width:8.635140px;}
._1e{width:10.438200px;}
._20{width:13.678201px;}
._c{width:14.951016px;}
._6{width:17.293406px;}
._18{width:21.905283px;}
._17{width:25.346592px;}
._24{width:30.780005px;}
._1f{width:38.475000px;}
._25{width:56.964600px;}
._1d{width:59.767211px;}
._23{width:65.638811px;}
._e{width:67.438985px;}
._7{width:79.797276px;}
._1a{width:84.508098px;}
._f{width:95.439214px;}
._10{width:483.614820px;}
._12{width:537.291240px;}
._11{width:801.009000px;}
._14{width:1392.270000px;}
._13{width:1984.974000px;}
.fc2{color:rgb(26,26,26);}
.fc1{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.120000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs4{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs5{font-size:63.536327px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y61{bottom:6.600001px;}
.y63{bottom:22.500000px;}
.y64{bottom:42.000000px;}
.y5c{bottom:89.940864px;}
.ye8{bottom:91.983000px;}
.y16d{bottom:95.611080px;}
.y122{bottom:97.950873px;}
.y5f{bottom:99.930162px;}
.y104{bottom:103.620600px;}
.y84{bottom:105.692745px;}
.y103{bottom:106.680828px;}
.y5b{bottom:107.220855px;}
.ycd{bottom:108.107280px;}
.y16c{bottom:112.891071px;}
.yab{bottom:113.430609px;}
.y5e{bottom:113.700450px;}
.y121{bottom:115.230864px;}
.y83{bottom:122.972736px;}
.y102{bottom:124.141179px;}
.y5a{bottom:124.410666px;}
.ycc{bottom:125.391780px;}
.y5d{bottom:126.120600px;}
.y16b{bottom:130.080882px;}
.y65{bottom:130.500000px;}
.yaa{bottom:130.710600px;}
.y120{bottom:132.420675px;}
.y59{bottom:141.690657px;}
.ycb{bottom:142.676280px;}
.y145{bottom:145.200807px;}
.y82{bottom:146.012223px;}
.y101{bottom:147.090486px;}
.y16a{bottom:147.360873px;}
.y28{bottom:148.620999px;}
.y11f{bottom:149.700666px;}
.ya9{bottom:153.030450px;}
.y58{bottom:158.970648px;}
.yca{bottom:159.870600px;}
.y144{bottom:162.480798px;}
.y169{bottom:164.640864px;}
.y27{bottom:165.900990px;}
.y11e{bottom:166.980657px;}
.y57{bottom:176.160459px;}
.y143{bottom:179.670609px;}
.y168{bottom:181.830675px;}
.ya8{bottom:182.101566px;}
.yc9{bottom:182.280450px;}
.y26{bottom:183.180981px;}
.y11d{bottom:184.170468px;}
.y1dd{bottom:192.090450px;}
.y56{bottom:193.440450px;}
.y142{bottom:196.950600px;}
.y167{bottom:199.110666px;}
.ya7{bottom:199.381557px;}
.y25{bottom:200.370792px;}
.y11c{bottom:201.450459px;}
.y55{bottom:210.720486px;}
.yc8{bottom:211.980450px;}
.y1dc{bottom:213.511050px;}
.y166{bottom:216.390657px;}
.ya6{bottom:216.661548px;}
.y24{bottom:217.650783px;}
.ye7{bottom:217.690950px;}
.y11b{bottom:218.730450px;}
.y141{bottom:219.360450px;}
.y1a2{bottom:222.240000px;}
.y54{bottom:227.910297px;}
.y165{bottom:233.580468px;}
.y1db{bottom:234.210600px;}
.y1da{bottom:234.210900px;}
.ye6{bottom:234.885270px;}
.ya5{bottom:235.110873px;}
.y1a1{bottom:237.720450px;}
.y11a{bottom:241.050450px;}
.y23{bottom:243.840558px;}
.yc7{bottom:245.425620px;}
.y140{bottom:248.340459px;}
.y164{bottom:250.860459px;}
.ye5{bottom:252.169770px;}
.y53{bottom:254.190252px;}
.y1d9{bottom:254.910450px;}
.y1d8{bottom:254.910900px;}
.y1a0{bottom:258.510909px;}
.y22{bottom:261.120549px;}
.yc6{bottom:262.710120px;}
.y13f{bottom:265.620450px;}
.y163{bottom:268.140450px;}
.ye4{bottom:269.454270px;}
.y119{bottom:270.750450px;}
.y52{bottom:271.470243px;}
.y19f{bottom:272.100450px;}
.y1d7{bottom:275.610909px;}
.y81{bottom:278.222115px;}
.y21{bottom:279.660054px;}
.y19e{bottom:284.970900px;}
.ye3{bottom:286.648590px;}
.y1d6{bottom:289.200450px;}
.y162{bottom:290.460450px;}
.y13e{bottom:290.910450px;}
.y51{bottom:294.419550px;}
.y80{bottom:295.502106px;}
.y19d{bottom:300.540450px;}
.y100{bottom:301.890468px;}
.y1d5{bottom:302.070450px;}
.ye2{bottom:303.933090px;}
.y118{bottom:304.321332px;}
.y13d{bottom:309.720450px;}
.y7f{bottom:312.691917px;}
.y19c{bottom:316.020900px;}
.y1d4{bottom:317.640000px;}
.yff{bottom:319.170459px;}
.ye1{bottom:321.217590px;}
.y117{bottom:321.601323px;}
.y161{bottom:324.031419px;}
.y7e{bottom:329.971908px;}
.y1d3{bottom:333.120450px;}
.yfe{bottom:336.450450px;}
.y19b{bottom:336.720909px;}
.y160{bottom:341.311410px;}
.y116{bottom:344.550630px;}
.y7d{bottom:347.251899px;}
.ye0{bottom:347.399850px;}
.y19a{bottom:350.310450px;}
.y1d2{bottom:353.820909px;}
.y15f{bottom:358.591401px;}
.yfd{bottom:358.770450px;}
.y199{bottom:363.270450px;}
.y7c{bottom:364.441710px;}
.y1d1{bottom:367.410450px;}
.y15e{bottom:375.781212px;}
.y198{bottom:378.750900px;}
.y1d0{bottom:380.370450px;}
.yfc{bottom:387.842664px;}
.y7b{bottom:390.721665px;}
.y15d{bottom:393.061203px;}
.y1cf{bottom:395.850900px;}
.y197{bottom:398.910099px;}
.ya4{bottom:404.850675px;}
.yfb{bottom:405.122655px;}
.y50{bottom:410.159568px;}
.y15c{bottom:410.341194px;}
.y1ce{bottom:411.420450px;}
.y7a{bottom:413.761152px;}
.y196{bottom:414.570450px;}
.ya3{bottom:422.130666px;}
.yfa{bottom:422.402646px;}
.y4f{bottom:427.529739px;}
.y15b{bottom:427.531005px;}
.y195{bottom:430.141500px;}
.y1cd{bottom:432.121059px;}
.ya2{bottom:439.410657px;}
.y15a{bottom:444.810996px;}
.y4e{bottom:445.170450px;}
.yf9{bottom:445.351953px;}
.y1cc{bottom:445.710600px;}
.y194{bottom:445.711050px;}
.y115{bottom:455.790666px;}
.ya1{bottom:456.600468px;}
.y1cb{bottom:458.580900px;}
.y4d{bottom:459.300450px;}
.y4c{bottom:461.460600px;}
.y159{bottom:462.000807px;}
.y13c{bottom:463.080450px;}
.y193{bottom:465.869298px;}
.yc5{bottom:467.463810px;}
.y114{bottom:473.070657px;}
.ya0{bottom:473.880459px;}
.y1ca{bottom:474.150450px;}
.y20{bottom:474.600657px;}
.y13b{bottom:477.481053px;}
.y48{bottom:477.570450px;}
.y158{bottom:479.280798px;}
.y49{bottom:480.630450px;}
.y47{bottom:480.631026px;}
.y192{bottom:481.439874px;}
.ydf{bottom:484.653810px;}
.yc4{bottom:484.748310px;}
.y1c9{bottom:489.630900px;}
.y113{bottom:490.350648px;}
.y9f{bottom:491.160450px;}
.y1f{bottom:491.880648px;}
.y13a{bottom:494.670864px;}
.y157{bottom:496.560789px;}
.y191{bottom:497.010450px;}
.yde{bottom:501.938310px;}
.yc3{bottom:502.032810px;}
.y4b{bottom:502.950600px;}
.y4a{bottom:505.110600px;}
.y112{bottom:507.540459px;}
.y1e{bottom:509.070459px;}
.y1c8{bottom:510.329937px;}
.y139{bottom:511.950855px;}
.y190{bottom:512.670450px;}
.y9e{bottom:513.480450px;}
.y156{bottom:513.750600px;}
.y46{bottom:517.080279px;}
.ydd{bottom:519.132630px;}
.yc2{bottom:519.227130px;}
.y1c7{bottom:524.010450px;}
.y111{bottom:524.820450px;}
.y1d{bottom:526.350450px;}
.y18f{bottom:528.240000px;}
.y138{bottom:529.230846px;}
.y45{bottom:534.449748px;}
.y155{bottom:536.160450px;}
.ydc{bottom:536.417130px;}
.yc1{bottom:536.511630px;}
.y1c6{bottom:536.880900px;}
.y79{bottom:541.471062px;}
.y9d{bottom:542.550729px;}
.y137{bottom:546.420657px;}
.y110{bottom:547.230450px;}
.y18e{bottom:548.309523px;}
.y1c{bottom:548.670450px;}
.y44{bottom:551.910099px;}
.y1c5{bottom:552.361350px;}
.ydb{bottom:553.701630px;}
.yc0{bottom:553.796130px;}
.y78{bottom:558.751053px;}
.y9c{bottom:559.830720px;}
.y136{bottom:563.700648px;}
.y18d{bottom:563.969874px;}
.yf8{bottom:565.591953px;}
.y1c4{bottom:567.930900px;}
.y43{bottom:569.369919px;}
.y154{bottom:569.731764px;}
.yda{bottom:570.895950px;}
.ybf{bottom:570.990450px;}
.y77{bottom:575.940864px;}
.y18c{bottom:579.540450px;}
.y10f{bottom:580.711161px;}
.y135{bottom:580.890459px;}
.y1b{bottom:582.241071px;}
.y9b{bottom:582.780027px;}
.y42{bottom:586.919919px;}
.yd9{bottom:588.180450px;}
.y1c3{bottom:588.630909px;}
.yf7{bottom:588.631440px;}
.y153{bottom:592.771251px;}
.y76{bottom:593.220855px;}
.ybe{bottom:593.400450px;}
.y18b{bottom:595.110000px;}
.y134{bottom:598.170450px;}
.y1a{bottom:599.521062px;}
.y1c2{bottom:602.220450px;}
.y10e{bottom:603.750648px;}
.y41{bottom:604.470450px;}
.y75{bottom:610.500846px;}
.yd8{bottom:610.590450px;}
.y18a{bottom:610.770000px;}
.ybd{bottom:614.100450px;}
.y1c1{bottom:615.180900px;}
.y19{bottom:616.801053px;}
.y40{bottom:618.600450px;}
.y133{bottom:620.580450px;}
.y3f{bottom:620.760441px;}
.y74{bottom:627.690657px;}
.y1c0{bottom:630.661350px;}
.y189{bottom:630.839874px;}
.y18{bottom:633.990864px;}
.y3b{bottom:636.870450px;}
.yd7{bottom:639.528330px;}
.y3c{bottom:639.930450px;}
.y3a{bottom:639.931233px;}
.y132{bottom:641.280450px;}
.y73{bottom:644.970648px;}
.y1bf{bottom:646.230900px;}
.y188{bottom:646.410450px;}
.ybc{bottom:647.755230px;}
.y17{bottom:651.270855px;}
.yd6{bottom:656.812830px;}
.y187{bottom:662.071800px;}
.y3e{bottom:662.250450px;}
.y72{bottom:662.250639px;}
.ybb{bottom:662.340450px;}
.y3d{bottom:664.410450px;}
.yba{bottom:665.369100px;}
.y1be{bottom:666.930909px;}
.y16{bottom:668.550846px;}
.y131{bottom:670.350855px;}
.yd5{bottom:674.097330px;}
.y39{bottom:676.470666px;}
.y186{bottom:677.641350px;}
.y71{bottom:679.440450px;}
.y1bd{bottom:680.520450px;}
.yb9{bottom:682.833960px;}
.y15{bottom:685.740657px;}
.y130{bottom:687.540666px;}
.y185{bottom:693.210900px;}
.y1bc{bottom:693.390900px;}
.y38{bottom:693.750657px;}
.yb8{bottom:700.028280px;}
.y70{bottom:701.850450px;}
.y14{bottom:703.020648px;}
.y12f{bottom:704.820657px;}
.y1bb{bottom:708.960450px;}
.y37{bottom:710.940468px;}
.y184{bottom:713.369298px;}
.yf6{bottom:714.991656px;}
.yb7{bottom:717.312780px;}
.y13{bottom:720.300639px;}
.y12e{bottom:722.100648px;}
.y1ba{bottom:724.440900px;}
.y36{bottom:728.220459px;}
.y183{bottom:728.939874px;}
.y6f{bottom:730.920648px;}
.yf5{bottom:732.271647px;}
.yb6{bottom:734.597280px;}
.y9a{bottom:736.320495px;}
.y12{bottom:737.490450px;}
.y12d{bottom:739.290459px;}
.y182{bottom:744.511800px;}
.y1b9{bottom:745.140909px;}
.y35{bottom:745.500450px;}
.y6e{bottom:748.110459px;}
.yf4{bottom:749.551638px;}
.yb5{bottom:751.791600px;}
.y99{bottom:753.600486px;}
.y12c{bottom:756.570450px;}
.y1b8{bottom:758.730450px;}
.y11{bottom:759.900450px;}
.y181{bottom:760.171800px;}
.y152{bottom:762.511053px;}
.y6d{bottom:765.390450px;}
.yf3{bottom:766.741449px;}
.y34{bottom:767.820450px;}
.y10d{bottom:768.990468px;}
.yb4{bottom:769.076100px;}
.y98{bottom:770.880477px;}
.y1b7{bottom:771.689550px;}
.y180{bottom:775.741350px;}
.y12b{bottom:778.980450px;}
.y151{bottom:779.700864px;}
.yf2{bottom:784.021440px;}
.y10c{bottom:786.270459px;}
.yb3{bottom:786.360600px;}
.y1b6{bottom:787.170000px;}
.y6c{bottom:787.800450px;}
.y97{bottom:788.070288px;}
.y17f{bottom:791.310900px;}
.y10{bottom:793.471071px;}
.y150{bottom:796.980855px;}
.yf1{bottom:801.211251px;}
.y33{bottom:801.391935px;}
.y10b{bottom:803.550450px;}
.y96{bottom:805.350279px;}
.y1b5{bottom:807.240450px;}
.y12a{bottom:808.050864px;}
.yb2{bottom:808.680450px;}
.yf{bottom:810.751062px;}
.y17e{bottom:811.469448px;}
.y14f{bottom:814.260846px;}
.yf0{bottom:818.491242px;}
.y32{bottom:818.671926px;}
.y95{bottom:819.660450px;}
.y6b{bottom:821.279307px;}
.y94{bottom:822.719889px;}
.y1b4{bottom:822.720900px;}
.y129{bottom:825.240675px;}
.y10a{bottom:825.870450px;}
.y17d{bottom:827.040024px;}
.ye{bottom:827.940873px;}
.y14e{bottom:831.450657px;}
.y31{bottom:835.951917px;}
.yb1{bottom:837.723630px;}
.y1b3{bottom:838.290450px;}
.y6a{bottom:838.559298px;}
.y93{bottom:840.357687px;}
.y128{bottom:842.520666px;}
.y17c{bottom:842.610450px;}
.yef{bottom:844.681017px;}
.yd{bottom:845.220864px;}
.y14d{bottom:848.730648px;}
.y30{bottom:853.141728px;}
.y1b2{bottom:853.770900px;}
.yb0{bottom:855.008130px;}
.y69{bottom:855.839289px;}
.y92{bottom:857.908218px;}
.y17b{bottom:858.270450px;}
.y109{bottom:859.441278px;}
.y127{bottom:859.800657px;}
.yc{bottom:862.500855px;}
.y14c{bottom:866.010639px;}
.yee{bottom:867.720504px;}
.y2f{bottom:870.421719px;}
.yaf{bottom:872.292630px;}
.y17a{bottom:873.840000px;}
.y1b1{bottom:874.470909px;}
.y91{bottom:875.458749px;}
.y108{bottom:876.721269px;}
.y126{bottom:876.990468px;}
.y68{bottom:878.790099px;}
.yb{bottom:879.690666px;}
.y14b{bottom:883.200450px;}
.y2e{bottom:887.701710px;}
.y1b0{bottom:888.060450px;}
.yae{bottom:889.486950px;}
.y90{bottom:893.099460px;}
.y179{bottom:893.910099px;}
.y107{bottom:894.001260px;}
.y125{bottom:894.270459px;}
.ya{bottom:896.970657px;}
.y1af{bottom:901.019550px;}
.y2d{bottom:904.891521px;}
.y14a{bottom:905.610450px;}
.yad{bottom:906.771450px;}
.y178{bottom:909.570450px;}
.y8f{bottom:910.649991px;}
.y106{bottom:911.191071px;}
.y124{bottom:911.550450px;}
.y9{bottom:914.160468px;}
.y1ae{bottom:916.500000px;}
.y2c{bottom:922.171512px;}
.y177{bottom:925.140000px;}
.y149{bottom:926.310450px;}
.y8e{bottom:928.200522px;}
.y105{bottom:928.471062px;}
.y8{bottom:931.440459px;}
.y123{bottom:933.870450px;}
.y1ad{bottom:936.570450px;}
.y2b{bottom:939.361323px;}
.y176{bottom:945.210450px;}
.yd4{bottom:945.629310px;}
.y8d{bottom:945.660873px;}
.y7{bottom:948.720450px;}
.y1ac{bottom:952.050900px;}
.y148{bottom:955.380933px;}
.y2a{bottom:956.641314px;}
.y175{bottom:960.871800px;}
.yd3{bottom:962.913810px;}
.y8c{bottom:962.940864px;}
.y1ab{bottom:967.620450px;}
.y6{bottom:971.040450px;}
.y147{bottom:972.660924px;}
.y29{bottom:973.921305px;}
.y174{bottom:976.441350px;}
.yd2{bottom:980.198310px;}
.y8b{bottom:980.220855px;}
.y1aa{bottom:983.100900px;}
.yed{bottom:988.140864px;}
.y173{bottom:992.010900px;}
.y146{bottom:995.610231px;}
.yd1{bottom:997.392630px;}
.y8a{bottom:997.410666px;}
.y1a9{bottom:1003.800909px;}
.yec{bottom:1005.420855px;}
.y5{bottom:1009.740450px;}
.y172{bottom:1012.170450px;}
.yd0{bottom:1014.677130px;}
.y89{bottom:1014.690657px;}
.y1a8{bottom:1017.390450px;}
.yeb{bottom:1022.610666px;}
.y171{bottom:1027.740900px;}
.y1a7{bottom:1030.350900px;}
.y4{bottom:1030.440450px;}
.ycf{bottom:1031.961630px;}
.y88{bottom:1031.970648px;}
.yea{bottom:1039.890657px;}
.y170{bottom:1043.310450px;}
.y1a6{bottom:1045.831350px;}
.yce{bottom:1049.155950px;}
.y87{bottom:1049.160459px;}
.y2{bottom:1051.140450px;}
.ye9{bottom:1057.170648px;}
.y3{bottom:1057.890450px;}
.y16f{bottom:1058.970450px;}
.y1a5{bottom:1061.400900px;}
.y86{bottom:1066.440450px;}
.yac{bottom:1074.355950px;}
.y67{bottom:1074.360459px;}
.y16e{bottom:1079.850450px;}
.y1a4{bottom:1082.100909px;}
.y1{bottom:1086.060450px;}
.y85{bottom:1088.850450px;}
.y66{bottom:1091.640450px;}
.y1a3{bottom:1095.690450px;}
.y62{bottom:1131.000000px;}
.y60{bottom:1150.500000px;}
.h11{height:15.000000px;}
.h10{height:16.759160px;}
.h19{height:29.265996px;}
.h3{height:33.268184px;}
.h1b{height:34.694297px;}
.h22{height:37.518672px;}
.h1a{height:37.520508px;}
.h1c{height:37.521912px;}
.h23{height:37.522560px;}
.h1f{height:37.522812px;}
.h20{height:37.524216px;}
.h1d{height:37.524516px;}
.h1e{height:37.525116px;}
.h21{height:37.525716px;}
.h5{height:41.772832px;}
.hf{height:42.741563px;}
.h12{height:43.804688px;}
.h9{height:44.394768px;}
.hb{height:44.648438px;}
.h6{height:48.796875px;}
.h4{height:49.992188px;}
.h2{height:50.027344px;}
.ha{height:52.238672px;}
.h18{height:54.012232px;}
.h17{height:54.012832px;}
.h16{height:54.247676px;}
.h1{height:56.848359px;}
.hc{height:74.562891px;}
.h15{height:74.565135px;}
.h14{height:74.574543px;}
.h7{height:77.079759px;}
.hd{height:77.081919px;}
.he{height:86.802891px;}
.h8{height:89.322891px;}
.h13{height:951.000000px;}
.h0{height:1188.000000px;}
.w2{width:13.500000px;}
.w1{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x25{left:8.399999px;}
.x29{left:44.250000px;}
.x7{left:85.140306px;}
.x30{left:91.980499px;}
.x5{left:93.420524px;}
.x8{left:99.180000px;}
.x2b{left:100.710000px;}
.x31{left:106.559789px;}
.x39{left:114.120000px;}
.x27{left:115.380000px;}
.x2d{left:118.890000px;}
.xa{left:125.460000px;}
.x2{left:131.670000px;}
.x6{left:162.361162px;}
.x2c{left:164.799819px;}
.x32{left:183.060000px;}
.x9{left:188.460000px;}
.x1{left:189.810000px;}
.x38{left:199.890000px;}
.x23{left:207.843795px;}
.x3{left:225.270000px;}
.x4{left:231.300000px;}
.x2a{left:416.250000px;}
.xb{left:431.638584px;}
.x26{left:436.139702px;}
.xc{left:457.379203px;}
.x2f{left:466.740000px;}
.xe{left:471.420000px;}
.x33{left:480.510000px;}
.x3a{left:486.360000px;}
.x37{left:491.400000px;}
.x36{left:500.850514px;}
.x2e{left:514.809312px;}
.x19{left:527.219419px;}
.xf{left:528.840226px;}
.x34{left:552.420000px;}
.x3c{left:568.890000px;}
.x3b{left:573.570000px;}
.xd{left:582.300000px;}
.x12{left:590.220000px;}
.x16{left:593.099740px;}
.x13{left:597.870000px;}
.x14{left:613.440000px;}
.x17{left:615.330000px;}
.x15{left:620.010000px;}
.x1c{left:621.450000px;}
.x1f{left:624.330000px;}
.x1d{left:629.100000px;}
.x20{left:646.470000px;}
.x1e{left:658.350000px;}
.x1a{left:675.720000px;}
.x10{left:720.270000px;}
.x11{left:733.230000px;}
.x1b{left:734.850000px;}
.x18{left:736.560000px;}
.x21{left:738.089850px;}
.x35{left:768.418939px;}
.x22{left:784.162517px;}
.x28{left:808.378531px;}
.x24{left:836.250000px;}
@media print{
.v1{vertical-align:-10.882784pt;}
.v4{vertical-align:-2.239136pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.239136pt;}
.v2{vertical-align:10.880000pt;}
.v3{vertical-align:13.120000pt;}
.v6{vertical-align:19.518485pt;}
.v7{vertical-align:30.400533pt;}
.ls29{letter-spacing:-4.838400pt;}
.ls92{letter-spacing:-0.480000pt;}
.ls9e{letter-spacing:-0.427200pt;}
.ls48{letter-spacing:-0.288576pt;}
.ls4d{letter-spacing:-0.256512pt;}
.ls9d{letter-spacing:-0.254400pt;}
.ls7a{letter-spacing:-0.240480pt;}
.ls64{letter-spacing:-0.235136pt;}
.ls7f{letter-spacing:-0.203072pt;}
.ls81{letter-spacing:-0.176352pt;}
.ls82{letter-spacing:-0.171008pt;}
.ls7c{letter-spacing:-0.160320pt;}
.ls97{letter-spacing:-0.158400pt;}
.ls69{letter-spacing:-0.154976pt;}
.ls37{letter-spacing:-0.149632pt;}
.ls47{letter-spacing:-0.144288pt;}
.ls9a{letter-spacing:-0.144000pt;}
.ls35{letter-spacing:-0.138944pt;}
.ls2f{letter-spacing:-0.133600pt;}
.ls67{letter-spacing:-0.128256pt;}
.ls3e{letter-spacing:-0.122912pt;}
.ls3f{letter-spacing:-0.117568pt;}
.ls36{letter-spacing:-0.112224pt;}
.ls2e{letter-spacing:-0.106880pt;}
.ls4b{letter-spacing:-0.101536pt;}
.ls2c{letter-spacing:-0.096192pt;}
.ls9c{letter-spacing:-0.091200pt;}
.ls3a{letter-spacing:-0.090848pt;}
.ls8f{letter-spacing:-0.089600pt;}
.ls63{letter-spacing:-0.085504pt;}
.ls33{letter-spacing:-0.080160pt;}
.ls32{letter-spacing:-0.074816pt;}
.ls98{letter-spacing:-0.072000pt;}
.ls46{letter-spacing:-0.069472pt;}
.ls4f{letter-spacing:-0.064128pt;}
.ls39{letter-spacing:-0.058784pt;}
.ls4e{letter-spacing:-0.053440pt;}
.ls7d{letter-spacing:-0.051200pt;}
.ls7b{letter-spacing:-0.048096pt;}
.ls93{letter-spacing:-0.048000pt;}
.lsa0{letter-spacing:-0.043200pt;}
.ls2d{letter-spacing:-0.042752pt;}
.ls7e{letter-spacing:-0.038400pt;}
.ls6c{letter-spacing:-0.037408pt;}
.ls4c{letter-spacing:-0.032064pt;}
.ls44{letter-spacing:-0.029952pt;}
.ls9f{letter-spacing:-0.028800pt;}
.ls40{letter-spacing:-0.026720pt;}
.ls45{letter-spacing:-0.026208pt;}
.ls76{letter-spacing:-0.025600pt;}
.ls9b{letter-spacing:-0.024000pt;}
.ls41{letter-spacing:-0.021376pt;}
.ls80{letter-spacing:-0.019200pt;}
.ls65{letter-spacing:-0.016032pt;}
.ls49{letter-spacing:-0.014976pt;}
.ls90{letter-spacing:-0.014400pt;}
.ls42{letter-spacing:-0.012800pt;}
.ls3b{letter-spacing:-0.010688pt;}
.ls94{letter-spacing:-0.009600pt;}
.ls2b{letter-spacing:-0.006400pt;}
.ls38{letter-spacing:-0.005344pt;}
.ls91{letter-spacing:-0.004800pt;}
.ls2a{letter-spacing:0.000000pt;}
.ls85{letter-spacing:0.004800pt;}
.ls7{letter-spacing:0.005344pt;}
.ls0{letter-spacing:0.006400pt;}
.ls88{letter-spacing:0.009600pt;}
.ls21{letter-spacing:0.010688pt;}
.ls2{letter-spacing:0.012800pt;}
.ls84{letter-spacing:0.014400pt;}
.ls53{letter-spacing:0.016032pt;}
.ls4a{letter-spacing:0.018720pt;}
.ls1{letter-spacing:0.019200pt;}
.ls72{letter-spacing:0.021376pt;}
.ls8c{letter-spacing:0.024000pt;}
.ls71{letter-spacing:0.025600pt;}
.ls70{letter-spacing:0.026720pt;}
.ls87{letter-spacing:0.028800pt;}
.ls3{letter-spacing:0.032000pt;}
.ls8d{letter-spacing:0.033600pt;}
.ls5{letter-spacing:0.037408pt;}
.ls50{letter-spacing:0.038400pt;}
.ls1d{letter-spacing:0.041184pt;}
.ls79{letter-spacing:0.042752pt;}
.ls8a{letter-spacing:0.043200pt;}
.ls6f{letter-spacing:0.044800pt;}
.ls74{letter-spacing:0.044928pt;}
.ls26{letter-spacing:0.046816pt;}
.ls83{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.048096pt;}
.ls62{letter-spacing:0.051200pt;}
.lsa{letter-spacing:0.053440pt;}
.ls8b{letter-spacing:0.057600pt;}
.ls3d{letter-spacing:0.058784pt;}
.ls86{letter-spacing:0.059584pt;}
.ls1f{letter-spacing:0.064128pt;}
.ls28{letter-spacing:0.067104pt;}
.ls89{letter-spacing:0.067200pt;}
.ls25{letter-spacing:0.068096pt;}
.ls15{letter-spacing:0.069472pt;}
.ls8{letter-spacing:0.074816pt;}
.ls31{letter-spacing:0.080160pt;}
.ls9{letter-spacing:0.085504pt;}
.ls1c{letter-spacing:0.086112pt;}
.ls8e{letter-spacing:0.086400pt;}
.ls4{letter-spacing:0.090848pt;}
.ls30{letter-spacing:0.096192pt;}
.ls6{letter-spacing:0.101536pt;}
.ls19{letter-spacing:0.104832pt;}
.lsa1{letter-spacing:0.105600pt;}
.lsc{letter-spacing:0.106880pt;}
.ls23{letter-spacing:0.112224pt;}
.ls3c{letter-spacing:0.117568pt;}
.ls34{letter-spacing:0.122912pt;}
.ls27{letter-spacing:0.127680pt;}
.lsb{letter-spacing:0.128256pt;}
.ls75{letter-spacing:0.133600pt;}
.ls6d{letter-spacing:0.138944pt;}
.ls24{letter-spacing:0.165088pt;}
.ls58{letter-spacing:0.165664pt;}
.ls59{letter-spacing:0.229792pt;}
.ls1e{letter-spacing:0.718848pt;}
.ls20{letter-spacing:0.790912pt;}
.ls60{letter-spacing:0.961920pt;}
.ls6b{letter-spacing:0.972608pt;}
.ls13{letter-spacing:1.022112pt;}
.ls10{letter-spacing:1.040832pt;}
.ls17{letter-spacing:1.608544pt;}
.ls5a{letter-spacing:2.185696pt;}
.ls6a{letter-spacing:2.191040pt;}
.ls14{letter-spacing:2.326718pt;}
.lsf{letter-spacing:2.331816pt;}
.ls16{letter-spacing:2.506336pt;}
.lsd{letter-spacing:2.912293pt;}
.ls1b{letter-spacing:2.947942pt;}
.ls18{letter-spacing:2.954617pt;}
.ls78{letter-spacing:3.007467pt;}
.ls61{letter-spacing:3.262310pt;}
.lse{letter-spacing:3.279143pt;}
.ls12{letter-spacing:3.284963pt;}
.ls5e{letter-spacing:3.582438pt;}
.ls22{letter-spacing:4.355360pt;}
.ls99{letter-spacing:6.460608pt;}
.ls56{letter-spacing:7.449536pt;}
.ls54{letter-spacing:7.460224pt;}
.ls55{letter-spacing:7.593824pt;}
.ls77{letter-spacing:11.692672pt;}
.ls6e{letter-spacing:11.703360pt;}
.ls73{letter-spacing:11.762144pt;}
.ls5d{letter-spacing:11.933152pt;}
.ls43{letter-spacing:12.852320pt;}
.ls57{letter-spacing:14.503616pt;}
.ls5b{letter-spacing:14.813568pt;}
.ls68{letter-spacing:14.818912pt;}
.ls5c{letter-spacing:14.824256pt;}
.ls52{letter-spacing:14.957856pt;}
.ls66{letter-spacing:16.347296pt;}
.ls5f{letter-spacing:16.737562pt;}
.ls95{letter-spacing:21.501312pt;}
.ls96{letter-spacing:26.297824pt;}
.ls51{letter-spacing:41.485472pt;}
.ls1a{letter-spacing:70.840064pt;}
.ws5{word-spacing:-124.280064pt;}
.ws65{word-spacing:-69.787296pt;}
.ws67{word-spacing:-68.258912pt;}
.ws2{word-spacing:-66.292320pt;}
.ws6a{word-spacing:-55.631040pt;}
.ws6f{word-spacing:-54.412608pt;}
.ws68{word-spacing:-53.456032pt;}
.ws0{word-spacing:-53.440000pt;}
.ws69{word-spacing:-53.434656pt;}
.ws6d{word-spacing:-53.295712pt;}
.ws3{word-spacing:-38.480832pt;}
.ws8{word-spacing:-38.158848pt;}
.wsb1{word-spacing:-37.484928pt;}
.ws7{word-spacing:-37.481184pt;}
.ws6{word-spacing:-37.425024pt;}
.ws6e{word-spacing:-37.183550pt;}
.ws70{word-spacing:-36.804128pt;}
.ws161{word-spacing:-25.595584pt;}
.ws4{word-spacing:-20.607023pt;}
.ws6b{word-spacing:-11.756800pt;}
.ws4e{word-spacing:-11.714048pt;}
.ws66{word-spacing:-11.628544pt;}
.ws6c{word-spacing:-11.617856pt;}
.ws107{word-spacing:-3.211744pt;}
.wsd7{word-spacing:-3.190368pt;}
.ws7e{word-spacing:-3.056768pt;}
.ws5e{word-spacing:-3.024704pt;}
.ws133{word-spacing:-3.019360pt;}
.ws15{word-spacing:-2.981952pt;}
.ws119{word-spacing:-2.912480pt;}
.ws19{word-spacing:-2.896448pt;}
.wsab{word-spacing:-2.891104pt;}
.ws1a{word-spacing:-2.800256pt;}
.ws13{word-spacing:-2.752160pt;}
.ws116{word-spacing:-2.736128pt;}
.ws162{word-spacing:-2.707200pt;}
.ws113{word-spacing:-2.661312pt;}
.ws2d{word-spacing:-2.655968pt;}
.ws153{word-spacing:-2.581152pt;}
.wsc7{word-spacing:-2.565120pt;}
.ws11e{word-spacing:-2.559776pt;}
.ws12e{word-spacing:-2.511680pt;}
.ws191{word-spacing:-2.467200pt;}
.ws188{word-spacing:-2.409600pt;}
.ws189{word-spacing:-2.361600pt;}
.ws84{word-spacing:-2.335328pt;}
.ws61{word-spacing:-2.324096pt;}
.ws190{word-spacing:-2.308800pt;}
.ws192{word-spacing:-2.088000pt;}
.ws45{word-spacing:-2.084160pt;}
.ws46{word-spacing:-2.078816pt;}
.wsd5{word-spacing:-2.068128pt;}
.ws12f{word-spacing:-2.041408pt;}
.ws56{word-spacing:-2.036064pt;}
.wsa9{word-spacing:-1.939872pt;}
.ws12{word-spacing:-1.918496pt;}
.ws5d{word-spacing:-1.913152pt;}
.ws55{word-spacing:-1.897120pt;}
.ws186{word-spacing:-1.790400pt;}
.ws1d{word-spacing:-1.790240pt;}
.wsfd{word-spacing:-1.774208pt;}
.wsf5{word-spacing:-1.763520pt;}
.ws17d{word-spacing:-1.761600pt;}
.ws149{word-spacing:-1.758176pt;}
.ws1c{word-spacing:-1.752832pt;}
.wse7{word-spacing:-1.736800pt;}
.ws21{word-spacing:-1.720768pt;}
.ws3b{word-spacing:-1.710080pt;}
.ws111{word-spacing:-1.619232pt;}
.ws79{word-spacing:-1.608544pt;}
.ws127{word-spacing:-1.512352pt;}
.ws128{word-spacing:-1.480288pt;}
.ws183{word-spacing:-1.468800pt;}
.ws1a5{word-spacing:-1.454400pt;}
.wsc9{word-spacing:-1.448224pt;}
.ws139{word-spacing:-1.432192pt;}
.ws72{word-spacing:-1.426848pt;}
.wsc6{word-spacing:-1.416160pt;}
.ws156{word-spacing:-1.410816pt;}
.wsf4{word-spacing:-1.405472pt;}
.ws80{word-spacing:-1.378752pt;}
.ws16{word-spacing:-1.293248pt;}
.ws26{word-spacing:-1.287904pt;}
.ws17{word-spacing:-1.277216pt;}
.ws182{word-spacing:-1.142400pt;}
.ws19a{word-spacing:-1.128000pt;}
.wsdd{word-spacing:-1.111552pt;}
.ws53{word-spacing:-1.100864pt;}
.ws37{word-spacing:-1.063456pt;}
.wsb5{word-spacing:-1.015360pt;}
.ws124{word-spacing:-0.961920pt;}
.wsce{word-spacing:-0.956576pt;}
.wsf2{word-spacing:-0.892448pt;}
.ws199{word-spacing:-0.864000pt;}
.ws179{word-spacing:-0.820800pt;}
.ws3a{word-spacing:-0.817632pt;}
.ws11a{word-spacing:-0.812288pt;}
.ws1b0{word-spacing:-0.801600pt;}
.ws1af{word-spacing:-0.792000pt;}
.ws125{word-spacing:-0.780224pt;}
.wscb{word-spacing:-0.774880pt;}
.ws14c{word-spacing:-0.753504pt;}
.wsd4{word-spacing:-0.577152pt;}
.wsd3{word-spacing:-0.561120pt;}
.ws140{word-spacing:-0.555776pt;}
.ws19f{word-spacing:-0.494400pt;}
.ws8a{word-spacing:-0.480960pt;}
.wsd9{word-spacing:-0.470272pt;}
.wsa3{word-spacing:-0.464928pt;}
.wsb4{word-spacing:-0.459584pt;}
.wse8{word-spacing:-0.427520pt;}
.ws15b{word-spacing:-0.384768pt;}
.ws8c{word-spacing:-0.352704pt;}
.ws85{word-spacing:-0.342016pt;}
.wsac{word-spacing:-0.325984pt;}
.ws42{word-spacing:-0.320640pt;}
.ws122{word-spacing:-0.304608pt;}
.ws131{word-spacing:-0.293920pt;}
.ws115{word-spacing:-0.249600pt;}
.ws130{word-spacing:-0.240480pt;}
.ws64{word-spacing:-0.204288pt;}
.wse9{word-spacing:-0.203072pt;}
.ws24{word-spacing:-0.176352pt;}
.ws1a3{word-spacing:-0.172800pt;}
.ws145{word-spacing:-0.165664pt;}
.ws17a{word-spacing:-0.163200pt;}
.ws3f{word-spacing:-0.160320pt;}
.ws4c{word-spacing:-0.154976pt;}
.wsa2{word-spacing:-0.149632pt;}
.ws62{word-spacing:-0.144704pt;}
.ws81{word-spacing:-0.144288pt;}
.wsa1{word-spacing:-0.138944pt;}
.wsb9{word-spacing:-0.133600pt;}
.wsa5{word-spacing:-0.122912pt;}
.ws54{word-spacing:-0.112224pt;}
.ws132{word-spacing:-0.108800pt;}
.wsdb{word-spacing:-0.106880pt;}
.wse{word-spacing:-0.102400pt;}
.ws40{word-spacing:-0.101536pt;}
.ws160{word-spacing:-0.096192pt;}
.wsf9{word-spacing:-0.096000pt;}
.ws123{word-spacing:-0.089600pt;}
.ws17b{word-spacing:-0.086400pt;}
.ws121{word-spacing:-0.080160pt;}
.wsb8{word-spacing:-0.076800pt;}
.ws1a0{word-spacing:-0.052800pt;}
.wsc0{word-spacing:-0.048096pt;}
.wsad{word-spacing:-0.044800pt;}
.wsc4{word-spacing:-0.038400pt;}
.wsaa{word-spacing:-0.037408pt;}
.wsb3{word-spacing:-0.032064pt;}
.ws7c{word-spacing:-0.032000pt;}
.ws13c{word-spacing:-0.026720pt;}
.ws78{word-spacing:-0.025600pt;}
.ws8e{word-spacing:-0.021376pt;}
.wsd0{word-spacing:-0.019200pt;}
.ws143{word-spacing:-0.016032pt;}
.wsc{word-spacing:-0.012800pt;}
.ws29{word-spacing:-0.010688pt;}
.wsd{word-spacing:-0.006400pt;}
.wsa4{word-spacing:-0.005344pt;}
.wsb{word-spacing:0.000000pt;}
.wsf{word-spacing:0.012800pt;}
.ws3e{word-spacing:0.019200pt;}
.ws144{word-spacing:0.025600pt;}
.ws14b{word-spacing:0.032000pt;}
.ws43{word-spacing:0.037408pt;}
.ws2b{word-spacing:0.048096pt;}
.wsfe{word-spacing:0.057600pt;}
.ws141{word-spacing:0.069472pt;}
.ws17e{word-spacing:0.091200pt;}
.ws10d{word-spacing:0.101536pt;}
.ws3d{word-spacing:0.106880pt;}
.ws10c{word-spacing:0.112224pt;}
.ws52{word-spacing:0.117568pt;}
.ws9{word-spacing:0.119296pt;}
.wsb7{word-spacing:0.122912pt;}
.ws195{word-spacing:0.124800pt;}
.wsd8{word-spacing:0.128256pt;}
.ws170{word-spacing:0.129600pt;}
.ws18e{word-spacing:0.134400pt;}
.ws5a{word-spacing:0.138944pt;}
.ws1a6{word-spacing:0.139200pt;}
.ws18a{word-spacing:0.144000pt;}
.ws77{word-spacing:0.144288pt;}
.ws9c{word-spacing:0.149632pt;}
.ws11b{word-spacing:0.154976pt;}
.ws1ab{word-spacing:0.158400pt;}
.ws73{word-spacing:0.160320pt;}
.ws187{word-spacing:0.163200pt;}
.ws7b{word-spacing:0.165664pt;}
.ws9a{word-spacing:0.171008pt;}
.ws2c{word-spacing:0.176352pt;}
.ws178{word-spacing:0.177600pt;}
.wsc1{word-spacing:0.181696pt;}
.wse2{word-spacing:0.187040pt;}
.wsc3{word-spacing:0.192000pt;}
.wsc2{word-spacing:0.192384pt;}
.ws63{word-spacing:0.195776pt;}
.ws114{word-spacing:0.204800pt;}
.ws96{word-spacing:0.229792pt;}
.ws97{word-spacing:0.240480pt;}
.ws39{word-spacing:0.277888pt;}
.ws15e{word-spacing:0.315296pt;}
.ws25{word-spacing:0.320000pt;}
.wscc{word-spacing:0.352000pt;}
.wsae{word-spacing:0.443552pt;}
.ws13b{word-spacing:0.448896pt;}
.wsf0{word-spacing:0.464928pt;}
.wsbd{word-spacing:0.518368pt;}
.ws92{word-spacing:0.753504pt;}
.ws5f{word-spacing:0.780224pt;}
.wsc8{word-spacing:0.785568pt;}
.ws176{word-spacing:0.801600pt;}
.ws91{word-spacing:0.806944pt;}
.wsc5{word-spacing:0.828320pt;}
.ws1aa{word-spacing:0.830400pt;}
.ws10e{word-spacing:0.860384pt;}
.wsda{word-spacing:0.865728pt;}
.ws177{word-spacing:0.960000pt;}
.ws95{word-spacing:0.977952pt;}
.wsaf{word-spacing:1.116896pt;}
.ws7a{word-spacing:1.154304pt;}
.wsb0{word-spacing:1.181024pt;}
.ws22{word-spacing:1.197056pt;}
.wsdf{word-spacing:1.261184pt;}
.ws108{word-spacing:1.277216pt;}
.ws49{word-spacing:1.336000pt;}
.ws17c{word-spacing:1.440000pt;}
.ws94{word-spacing:1.442880pt;}
.wsbb{word-spacing:1.448224pt;}
.ws93{word-spacing:1.453568pt;}
.wsee{word-spacing:1.490976pt;}
.wsef{word-spacing:1.517696pt;}
.ws1f{word-spacing:1.608544pt;}
.ws11f{word-spacing:1.613888pt;}
.ws14a{word-spacing:1.742144pt;}
.ws19e{word-spacing:1.742400pt;}
.wsa0{word-spacing:1.758176pt;}
.ws16f{word-spacing:1.771200pt;}
.ws11d{word-spacing:1.779552pt;}
.ws16e{word-spacing:1.809600pt;}
.ws31{word-spacing:1.886432pt;}
.ws150{word-spacing:1.907808pt;}
.ws10b{word-spacing:1.961248pt;}
.wsea{word-spacing:1.998656pt;}
.ws38{word-spacing:2.030720pt;}
.ws13f{word-spacing:2.068128pt;}
.ws74{word-spacing:2.100192pt;}
.wseb{word-spacing:2.217760pt;}
.ws33{word-spacing:2.265856pt;}
.ws32{word-spacing:2.324640pt;}
.ws75{word-spacing:2.367392pt;}
.ws10a{word-spacing:2.372736pt;}
.ws76{word-spacing:2.410144pt;}
.wsfa{word-spacing:2.431520pt;}
.wsec{word-spacing:2.463584pt;}
.ws83{word-spacing:2.543744pt;}
.ws152{word-spacing:2.549088pt;}
.ws148{word-spacing:2.570464pt;}
.wse4{word-spacing:2.618560pt;}
.ws15d{word-spacing:2.645280pt;}
.ws181{word-spacing:2.664000pt;}
.ws1a7{word-spacing:2.707200pt;}
.ws180{word-spacing:2.712000pt;}
.ws82{word-spacing:2.752160pt;}
.wscd{word-spacing:2.987296pt;}
.ws19b{word-spacing:3.024000pt;}
.ws16b{word-spacing:3.028800pt;}
.ws137{word-spacing:3.035392pt;}
.ws103{word-spacing:3.040736pt;}
.ws16c{word-spacing:3.052800pt;}
.wsdc{word-spacing:3.062112pt;}
.wsd2{word-spacing:3.152960pt;}
.wsed{word-spacing:3.206400pt;}
.ws23{word-spacing:3.286560pt;}
.ws9b{word-spacing:3.313280pt;}
.ws102{word-spacing:3.340000pt;}
.ws71{word-spacing:3.382752pt;}
.ws9d{word-spacing:3.414816pt;}
.wsfb{word-spacing:3.446880pt;}
.ws3c{word-spacing:3.500320pt;}
.ws105{word-spacing:3.543072pt;}
.ws50{word-spacing:3.601856pt;}
.ws15a{word-spacing:3.612544pt;}
.ws106{word-spacing:3.617888pt;}
.ws185{word-spacing:3.624000pt;}
.ws159{word-spacing:3.639264pt;}
.ws14e{word-spacing:3.687360pt;}
.ws51{word-spacing:3.708736pt;}
.ws41{word-spacing:3.740800pt;}
.ws7f{word-spacing:3.756832pt;}
.ws28{word-spacing:3.842336pt;}
.ws100{word-spacing:3.858368pt;}
.ws89{word-spacing:3.943872pt;}
.ws196{word-spacing:3.979200pt;}
.ws5c{word-spacing:3.991968pt;}
.ws5b{word-spacing:4.008000pt;}
.wse5{word-spacing:4.029376pt;}
.ws112{word-spacing:4.050752pt;}
.ws59{word-spacing:4.136256pt;}
.ws147{word-spacing:4.152288pt;}
.ws87{word-spacing:4.162976pt;}
.ws88{word-spacing:4.259168pt;}
.ws117{word-spacing:4.467584pt;}
.ws58{word-spacing:4.558432pt;}
.wsf3{word-spacing:4.617216pt;}
.ws172{word-spacing:4.641600pt;}
.ws173{word-spacing:4.646400pt;}
.ws11c{word-spacing:4.659968pt;}
.wsb2{word-spacing:4.676000pt;}
.ws101{word-spacing:4.692032pt;}
.ws151{word-spacing:4.750816pt;}
.wsa{word-spacing:4.844800pt;}
.ws1ad{word-spacing:4.891200pt;}
.ws17f{word-spacing:4.929600pt;}
.ws34{word-spacing:4.991296pt;}
.ws14f{word-spacing:5.103520pt;}
.ws10{word-spacing:5.135584pt;}
.wsff{word-spacing:5.221088pt;}
.wsbf{word-spacing:5.263840pt;}
.ws11{word-spacing:5.301248pt;}
.wse1{word-spacing:5.311936pt;}
.ws158{word-spacing:5.327968pt;}
.wsbc{word-spacing:5.525696pt;}
.ws171{word-spacing:5.553600pt;}
.ws109{word-spacing:5.605856pt;}
.wsa8{word-spacing:5.637920pt;}
.ws44{word-spacing:5.648608pt;}
.ws20{word-spacing:5.664640pt;}
.ws120{word-spacing:5.734112pt;}
.ws184{word-spacing:5.745600pt;}
.ws12c{word-spacing:5.766176pt;}
.ws48{word-spacing:5.942528pt;}
.wsf6{word-spacing:5.947872pt;}
.wsf7{word-spacing:5.969248pt;}
.ws1e{word-spacing:6.044064pt;}
.wsd1{word-spacing:6.092160pt;}
.ws13a{word-spacing:6.156288pt;}
.ws12b{word-spacing:6.247136pt;}
.ws8f{word-spacing:6.252480pt;}
.ws90{word-spacing:6.263168pt;}
.ws47{word-spacing:6.311264pt;}
.wsd6{word-spacing:6.348672pt;}
.ws2e{word-spacing:6.402112pt;}
.ws174{word-spacing:6.494400pt;}
.ws2f{word-spacing:6.498304pt;}
.ws1ac{word-spacing:6.580800pt;}
.ws135{word-spacing:6.818944pt;}
.ws136{word-spacing:6.829632pt;}
.ws163{word-spacing:6.830400pt;}
.ws57{word-spacing:6.904448pt;}
.ws4a{word-spacing:7.011328pt;}
.ws27{word-spacing:7.027360pt;}
.ws2a{word-spacing:7.038048pt;}
.ws4b{word-spacing:7.059424pt;}
.ws4d{word-spacing:7.064768pt;}
.ws118{word-spacing:7.225088pt;}
.ws15c{word-spacing:7.257152pt;}
.ws8d{word-spacing:7.358688pt;}
.ws4f{word-spacing:7.454880pt;}
.wse3{word-spacing:7.519008pt;}
.ws146{word-spacing:7.679328pt;}
.ws12d{word-spacing:7.684672pt;}
.wsca{word-spacing:7.743456pt;}
.ws193{word-spacing:7.800000pt;}
.ws194{word-spacing:7.814400pt;}
.wsbe{word-spacing:7.861024pt;}
.ws1b1{word-spacing:8.145600pt;}
.ws13e{word-spacing:8.309920pt;}
.ws13d{word-spacing:8.459552pt;}
.wsf1{word-spacing:8.475584pt;}
.ws9f{word-spacing:8.491616pt;}
.ws36{word-spacing:8.844320pt;}
.ws99{word-spacing:9.063424pt;}
.ws98{word-spacing:9.090144pt;}
.wsde{word-spacing:9.138240pt;}
.wsfc{word-spacing:9.245120pt;}
.ws142{word-spacing:9.261152pt;}
.ws175{word-spacing:9.398400pt;}
.ws104{word-spacing:9.603168pt;}
.wse6{word-spacing:9.790208pt;}
.ws10f{word-spacing:9.822272pt;}
.wsa7{word-spacing:9.923808pt;}
.ws157{word-spacing:10.121536pt;}
.ws8b{word-spacing:10.559744pt;}
.wse0{word-spacing:10.623872pt;}
.ws138{word-spacing:10.720064pt;}
.ws166{word-spacing:10.723200pt;}
.ws134{word-spacing:10.741440pt;}
.ws9e{word-spacing:10.885728pt;}
.ws110{word-spacing:10.971232pt;}
.ws1a1{word-spacing:11.006400pt;}
.ws18f{word-spacing:11.030400pt;}
.ws1b2{word-spacing:11.035200pt;}
.ws1b3{word-spacing:11.044800pt;}
.ws198{word-spacing:11.049600pt;}
.ws35{word-spacing:11.094144pt;}
.ws1{word-spacing:11.628544pt;}
.ws12a{word-spacing:11.633888pt;}
.ws169{word-spacing:11.966400pt;}
.ws168{word-spacing:11.971200pt;}
.ws1b{word-spacing:12.323264pt;}
.ws126{word-spacing:12.980576pt;}
.ws14d{word-spacing:13.092800pt;}
.ws18{word-spacing:13.119520pt;}
.wsb6{word-spacing:13.306560pt;}
.ws19d{word-spacing:13.569600pt;}
.ws19c{word-spacing:13.588800pt;}
.ws30{word-spacing:13.798208pt;}
.ws155{word-spacing:13.840960pt;}
.ws1a2{word-spacing:14.155200pt;}
.ws154{word-spacing:14.348640pt;}
.ws1a4{word-spacing:14.515200pt;}
.ws1a9{word-spacing:14.520000pt;}
.ws197{word-spacing:14.548800pt;}
.wsba{word-spacing:15.043360pt;}
.ws167{word-spacing:15.201600pt;}
.ws18d{word-spacing:16.142400pt;}
.ws14{word-spacing:16.197664pt;}
.ws1a8{word-spacing:16.468800pt;}
.wsa6{word-spacing:16.528992pt;}
.ws129{word-spacing:16.571744pt;}
.wscf{word-spacing:17.939808pt;}
.ws60{word-spacing:19.516288pt;}
.ws16d{word-spacing:19.992000pt;}
.ws7d{word-spacing:21.354624pt;}
.ws18b{word-spacing:22.243200pt;}
.ws18c{word-spacing:22.262400pt;}
.wsf8{word-spacing:23.983872pt;}
.ws16a{word-spacing:25.440000pt;}
.ws164{word-spacing:28.305600pt;}
.ws165{word-spacing:28.315200pt;}
.ws86{word-spacing:28.718656pt;}
.ws15f{word-spacing:33.581696pt;}
.ws1ae{word-spacing:64.204800pt;}
._1c{margin-left:-34.781061pt;}
._b{margin-left:-19.965026pt;}
._15{margin-left:-14.432448pt;}
._21{margin-left:-13.440000pt;}
._22{margin-left:-12.158401pt;}
._8{margin-left:-10.913382pt;}
._19{margin-left:-8.396164pt;}
._a{margin-left:-6.497568pt;}
._3{margin-left:-5.280000pt;}
._2{margin-left:-3.520000pt;}
._5{margin-left:-2.187392pt;}
._1{margin-left:-1.152000pt;}
._4{width:1.095520pt;}
._9{width:2.109773pt;}
._1b{width:3.415181pt;}
._0{width:4.844800pt;}
._d{width:5.763072pt;}
._16{width:7.675680pt;}
._1e{width:9.278400pt;}
._20{width:12.158401pt;}
._c{width:13.289792pt;}
._6{width:15.371917pt;}
._18{width:19.471362pt;}
._17{width:22.530304pt;}
._24{width:27.360004pt;}
._1f{width:34.200000pt;}
._25{width:50.635200pt;}
._1d{width:53.126410pt;}
._23{width:58.345610pt;}
._e{width:59.945764pt;}
._7{width:70.930912pt;}
._1a{width:75.118309pt;}
._f{width:84.834857pt;}
._10{width:429.879840pt;}
._12{width:477.592213pt;}
._11{width:712.008000pt;}
._14{width:1237.573333pt;}
._13{width:1764.421333pt;}
.fs7{font-size:21.440000pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs4{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs5{font-size:56.476735pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:5.866668pt;}
.y63{bottom:20.000000pt;}
.y64{bottom:37.333333pt;}
.y5c{bottom:79.947435pt;}
.ye8{bottom:81.762667pt;}
.y16d{bottom:84.987627pt;}
.y122{bottom:87.067443pt;}
.y5f{bottom:88.826811pt;}
.y104{bottom:92.107200pt;}
.y84{bottom:93.949107pt;}
.y103{bottom:94.827403pt;}
.y5b{bottom:95.307427pt;}
.ycd{bottom:96.095360pt;}
.y16c{bottom:100.347619pt;}
.yab{bottom:100.827208pt;}
.y5e{bottom:101.067067pt;}
.y121{bottom:102.427435pt;}
.y83{bottom:109.309099pt;}
.y102{bottom:110.347715pt;}
.y5a{bottom:110.587259pt;}
.ycc{bottom:111.459360pt;}
.y5d{bottom:112.107200pt;}
.y16b{bottom:115.627451pt;}
.y65{bottom:116.000000pt;}
.yaa{bottom:116.187200pt;}
.y120{bottom:117.707267pt;}
.y59{bottom:125.947251pt;}
.ycb{bottom:126.823360pt;}
.y145{bottom:129.067384pt;}
.y82{bottom:129.788643pt;}
.y101{bottom:130.747099pt;}
.y16a{bottom:130.987443pt;}
.y28{bottom:132.107555pt;}
.y11f{bottom:133.067259pt;}
.ya9{bottom:136.027067pt;}
.y58{bottom:141.307243pt;}
.yca{bottom:142.107200pt;}
.y144{bottom:144.427376pt;}
.y169{bottom:146.347435pt;}
.y27{bottom:147.467547pt;}
.y11e{bottom:148.427251pt;}
.y57{bottom:156.587075pt;}
.y143{bottom:159.707208pt;}
.y168{bottom:161.627267pt;}
.ya8{bottom:161.868059pt;}
.yc9{bottom:162.027067pt;}
.y26{bottom:162.827539pt;}
.y11d{bottom:163.707083pt;}
.y1dd{bottom:170.747067pt;}
.y56{bottom:171.947067pt;}
.y142{bottom:175.067200pt;}
.y167{bottom:176.987259pt;}
.ya7{bottom:177.228051pt;}
.y25{bottom:178.107371pt;}
.y11c{bottom:179.067075pt;}
.y55{bottom:187.307099pt;}
.yc8{bottom:188.427067pt;}
.y1dc{bottom:189.787600pt;}
.y166{bottom:192.347251pt;}
.ya6{bottom:192.588043pt;}
.y24{bottom:193.467363pt;}
.ye7{bottom:193.503067pt;}
.y11b{bottom:194.427067pt;}
.y141{bottom:194.987067pt;}
.y1a2{bottom:197.546667pt;}
.y54{bottom:202.586931pt;}
.y165{bottom:207.627083pt;}
.y1db{bottom:208.187200pt;}
.y1da{bottom:208.187467pt;}
.ye6{bottom:208.786907pt;}
.ya5{bottom:208.987443pt;}
.y1a1{bottom:211.307067pt;}
.y11a{bottom:214.267067pt;}
.y23{bottom:216.747163pt;}
.yc7{bottom:218.156107pt;}
.y140{bottom:220.747075pt;}
.y164{bottom:222.987075pt;}
.ye5{bottom:224.150907pt;}
.y53{bottom:225.946891pt;}
.y1d9{bottom:226.587067pt;}
.y1d8{bottom:226.587467pt;}
.y1a0{bottom:229.787475pt;}
.y22{bottom:232.107155pt;}
.yc6{bottom:233.520107pt;}
.y13f{bottom:236.107067pt;}
.y163{bottom:238.347067pt;}
.ye4{bottom:239.514907pt;}
.y119{bottom:240.667067pt;}
.y52{bottom:241.306883pt;}
.y19f{bottom:241.867067pt;}
.y1d7{bottom:244.987475pt;}
.y81{bottom:247.308547pt;}
.y21{bottom:248.586715pt;}
.y19e{bottom:253.307467pt;}
.ye3{bottom:254.798747pt;}
.y1d6{bottom:257.067067pt;}
.y162{bottom:258.187067pt;}
.y13e{bottom:258.587067pt;}
.y51{bottom:261.706267pt;}
.y80{bottom:262.668539pt;}
.y19d{bottom:267.147067pt;}
.y100{bottom:268.347083pt;}
.y1d5{bottom:268.507067pt;}
.ye2{bottom:270.162747pt;}
.y118{bottom:270.507851pt;}
.y13d{bottom:275.307067pt;}
.y7f{bottom:277.948371pt;}
.y19c{bottom:280.907467pt;}
.y1d4{bottom:282.346667pt;}
.yff{bottom:283.707075pt;}
.ye1{bottom:285.526747pt;}
.y117{bottom:285.867843pt;}
.y161{bottom:288.027928pt;}
.y7e{bottom:293.308363pt;}
.y1d3{bottom:296.107067pt;}
.yfe{bottom:299.067067pt;}
.y19b{bottom:299.307475pt;}
.y160{bottom:303.387920pt;}
.y116{bottom:306.267227pt;}
.y7d{bottom:308.668355pt;}
.ye0{bottom:308.799867pt;}
.y19a{bottom:311.387067pt;}
.y1d2{bottom:314.507475pt;}
.y15f{bottom:318.747912pt;}
.yfd{bottom:318.907067pt;}
.y199{bottom:322.907067pt;}
.y7c{bottom:323.948187pt;}
.y1d1{bottom:326.587067pt;}
.y15e{bottom:334.027744pt;}
.y198{bottom:336.667467pt;}
.y1d0{bottom:338.107067pt;}
.yfc{bottom:344.749035pt;}
.y7b{bottom:347.308147pt;}
.y15d{bottom:349.387736pt;}
.y1cf{bottom:351.867467pt;}
.y197{bottom:354.586755pt;}
.ya4{bottom:359.867267pt;}
.yfb{bottom:360.109027pt;}
.y50{bottom:364.586283pt;}
.y15c{bottom:364.747728pt;}
.y1ce{bottom:365.707067pt;}
.y7a{bottom:367.787691pt;}
.y196{bottom:368.507067pt;}
.ya3{bottom:375.227259pt;}
.yfa{bottom:375.469019pt;}
.y4f{bottom:380.026435pt;}
.y15b{bottom:380.027560pt;}
.y195{bottom:382.348000pt;}
.y1cd{bottom:384.107608pt;}
.ya2{bottom:390.587251pt;}
.y15a{bottom:395.387552pt;}
.y4e{bottom:395.707067pt;}
.yf9{bottom:395.868403pt;}
.y1cc{bottom:396.187200pt;}
.y194{bottom:396.187600pt;}
.y115{bottom:405.147259pt;}
.ya1{bottom:405.867083pt;}
.y1cb{bottom:407.627467pt;}
.y4d{bottom:408.267067pt;}
.y4c{bottom:410.187200pt;}
.y159{bottom:410.667384pt;}
.y13c{bottom:411.627067pt;}
.y193{bottom:414.106043pt;}
.yc5{bottom:415.523387pt;}
.y114{bottom:420.507251pt;}
.ya0{bottom:421.227075pt;}
.y1ca{bottom:421.467067pt;}
.y20{bottom:421.867251pt;}
.y13b{bottom:424.427603pt;}
.y48{bottom:424.507067pt;}
.y158{bottom:426.027376pt;}
.y49{bottom:427.227067pt;}
.y47{bottom:427.227579pt;}
.y192{bottom:427.946555pt;}
.ydf{bottom:430.803387pt;}
.yc4{bottom:430.887387pt;}
.y1c9{bottom:435.227467pt;}
.y113{bottom:435.867243pt;}
.y9f{bottom:436.587067pt;}
.y1f{bottom:437.227243pt;}
.y13a{bottom:439.707435pt;}
.y157{bottom:441.387368pt;}
.y191{bottom:441.787067pt;}
.yde{bottom:446.167387pt;}
.yc3{bottom:446.251387pt;}
.y4b{bottom:447.067200pt;}
.y4a{bottom:448.987200pt;}
.y112{bottom:451.147075pt;}
.y1e{bottom:452.507075pt;}
.y1c8{bottom:453.626611pt;}
.y139{bottom:455.067427pt;}
.y190{bottom:455.707067pt;}
.y9e{bottom:456.427067pt;}
.y156{bottom:456.667200pt;}
.y46{bottom:459.626915pt;}
.ydd{bottom:461.451227pt;}
.yc2{bottom:461.535227pt;}
.y1c7{bottom:465.787067pt;}
.y111{bottom:466.507067pt;}
.y1d{bottom:467.867067pt;}
.y18f{bottom:469.546667pt;}
.y138{bottom:470.427419pt;}
.y45{bottom:475.066443pt;}
.y155{bottom:476.587067pt;}
.ydc{bottom:476.815227pt;}
.yc1{bottom:476.899227pt;}
.y1c6{bottom:477.227467pt;}
.y79{bottom:481.307611pt;}
.y9d{bottom:482.267315pt;}
.y137{bottom:485.707251pt;}
.y110{bottom:486.427067pt;}
.y18e{bottom:487.386243pt;}
.y1c{bottom:487.707067pt;}
.y44{bottom:490.586755pt;}
.y1c5{bottom:490.987867pt;}
.ydb{bottom:492.179227pt;}
.yc0{bottom:492.263227pt;}
.y78{bottom:496.667603pt;}
.y9c{bottom:497.627307pt;}
.y136{bottom:501.067243pt;}
.y18d{bottom:501.306555pt;}
.yf8{bottom:502.748403pt;}
.y1c4{bottom:504.827467pt;}
.y43{bottom:506.106595pt;}
.y154{bottom:506.428235pt;}
.yda{bottom:507.463067pt;}
.ybf{bottom:507.547067pt;}
.y77{bottom:511.947435pt;}
.y18c{bottom:515.147067pt;}
.y10f{bottom:516.187699pt;}
.y135{bottom:516.347075pt;}
.y1b{bottom:517.547619pt;}
.y9b{bottom:518.026691pt;}
.y42{bottom:521.706595pt;}
.yd9{bottom:522.827067pt;}
.y1c3{bottom:523.227475pt;}
.yf7{bottom:523.227947pt;}
.y153{bottom:526.907779pt;}
.y76{bottom:527.307427pt;}
.ybe{bottom:527.467067pt;}
.y18b{bottom:528.986667pt;}
.y134{bottom:531.707067pt;}
.y1a{bottom:532.907611pt;}
.y1c2{bottom:535.307067pt;}
.y10e{bottom:536.667243pt;}
.y41{bottom:537.307067pt;}
.y75{bottom:542.667419pt;}
.yd8{bottom:542.747067pt;}
.y18a{bottom:542.906667pt;}
.ybd{bottom:545.867067pt;}
.y1c1{bottom:546.827467pt;}
.y19{bottom:548.267603pt;}
.y40{bottom:549.867067pt;}
.y133{bottom:551.627067pt;}
.y3f{bottom:551.787059pt;}
.y74{bottom:557.947251pt;}
.y1c0{bottom:560.587867pt;}
.y189{bottom:560.746555pt;}
.y18{bottom:563.547435pt;}
.y3b{bottom:566.107067pt;}
.yd7{bottom:568.469627pt;}
.y3c{bottom:568.827067pt;}
.y3a{bottom:568.827763pt;}
.y132{bottom:570.027067pt;}
.y73{bottom:573.307243pt;}
.y1bf{bottom:574.427467pt;}
.y188{bottom:574.587067pt;}
.ybc{bottom:575.782427pt;}
.y17{bottom:578.907427pt;}
.yd6{bottom:583.833627pt;}
.y187{bottom:588.508267pt;}
.y3e{bottom:588.667067pt;}
.y72{bottom:588.667235pt;}
.ybb{bottom:588.747067pt;}
.y3d{bottom:590.587067pt;}
.yba{bottom:591.439200pt;}
.y1be{bottom:592.827475pt;}
.y16{bottom:594.267419pt;}
.y131{bottom:595.867427pt;}
.yd5{bottom:599.197627pt;}
.y39{bottom:601.307259pt;}
.y186{bottom:602.347867pt;}
.y71{bottom:603.947067pt;}
.y1bd{bottom:604.907067pt;}
.yb9{bottom:606.963520pt;}
.y15{bottom:609.547251pt;}
.y130{bottom:611.147259pt;}
.y185{bottom:616.187467pt;}
.y1bc{bottom:616.347467pt;}
.y38{bottom:616.667251pt;}
.yb8{bottom:622.247360pt;}
.y70{bottom:623.867067pt;}
.y14{bottom:624.907243pt;}
.y12f{bottom:626.507251pt;}
.y1bb{bottom:630.187067pt;}
.y37{bottom:631.947083pt;}
.y184{bottom:634.106043pt;}
.yf6{bottom:635.548139pt;}
.yb7{bottom:637.611360pt;}
.y13{bottom:640.267235pt;}
.y12e{bottom:641.867243pt;}
.y1ba{bottom:643.947467pt;}
.y36{bottom:647.307075pt;}
.y183{bottom:647.946555pt;}
.y6f{bottom:649.707243pt;}
.yf5{bottom:650.908131pt;}
.yb6{bottom:652.975360pt;}
.y9a{bottom:654.507107pt;}
.y12{bottom:655.547067pt;}
.y12d{bottom:657.147075pt;}
.y182{bottom:661.788267pt;}
.y1b9{bottom:662.347475pt;}
.y35{bottom:662.667067pt;}
.y6e{bottom:664.987075pt;}
.yf4{bottom:666.268123pt;}
.yb5{bottom:668.259200pt;}
.y99{bottom:669.867099pt;}
.y12c{bottom:672.507067pt;}
.y1b8{bottom:674.427067pt;}
.y11{bottom:675.467067pt;}
.y181{bottom:675.708267pt;}
.y152{bottom:677.787603pt;}
.y6d{bottom:680.347067pt;}
.yf3{bottom:681.547955pt;}
.y34{bottom:682.507067pt;}
.y10d{bottom:683.547083pt;}
.yb4{bottom:683.623200pt;}
.y98{bottom:685.227091pt;}
.y1b7{bottom:685.946267pt;}
.y180{bottom:689.547867pt;}
.y12b{bottom:692.427067pt;}
.y151{bottom:693.067435pt;}
.yf2{bottom:696.907947pt;}
.y10c{bottom:698.907075pt;}
.yb3{bottom:698.987200pt;}
.y1b6{bottom:699.706667pt;}
.y6c{bottom:700.267067pt;}
.y97{bottom:700.506923pt;}
.y17f{bottom:703.387467pt;}
.y10{bottom:705.307619pt;}
.y150{bottom:708.427427pt;}
.yf1{bottom:712.187779pt;}
.y33{bottom:712.348387pt;}
.y10b{bottom:714.267067pt;}
.y96{bottom:715.866915pt;}
.y1b5{bottom:717.547067pt;}
.y12a{bottom:718.267435pt;}
.yb2{bottom:718.827067pt;}
.yf{bottom:720.667611pt;}
.y17e{bottom:721.306176pt;}
.y14f{bottom:723.787419pt;}
.yf0{bottom:727.547771pt;}
.y32{bottom:727.708379pt;}
.y95{bottom:728.587067pt;}
.y6b{bottom:730.026051pt;}
.y94{bottom:731.306568pt;}
.y1b4{bottom:731.307467pt;}
.y129{bottom:733.547267pt;}
.y10a{bottom:734.107067pt;}
.y17d{bottom:735.146688pt;}
.ye{bottom:735.947443pt;}
.y14e{bottom:739.067251pt;}
.y31{bottom:743.068371pt;}
.yb1{bottom:744.643227pt;}
.y1b3{bottom:745.147067pt;}
.y6a{bottom:745.386043pt;}
.y93{bottom:746.984611pt;}
.y128{bottom:748.907259pt;}
.y17c{bottom:748.987067pt;}
.yef{bottom:750.827571pt;}
.yd{bottom:751.307435pt;}
.y14d{bottom:754.427243pt;}
.y30{bottom:758.348203pt;}
.y1b2{bottom:758.907467pt;}
.yb0{bottom:760.007227pt;}
.y69{bottom:760.746035pt;}
.y92{bottom:762.585083pt;}
.y17b{bottom:762.907067pt;}
.y109{bottom:763.947803pt;}
.y127{bottom:764.267251pt;}
.yc{bottom:766.667427pt;}
.y14c{bottom:769.787235pt;}
.yee{bottom:771.307115pt;}
.y2f{bottom:773.708195pt;}
.yaf{bottom:775.371227pt;}
.y17a{bottom:776.746667pt;}
.y1b1{bottom:777.307475pt;}
.y91{bottom:778.185555pt;}
.y108{bottom:779.307795pt;}
.y126{bottom:779.547083pt;}
.y68{bottom:781.146755pt;}
.yb{bottom:781.947259pt;}
.y14b{bottom:785.067067pt;}
.y2e{bottom:789.068187pt;}
.y1b0{bottom:789.387067pt;}
.yae{bottom:790.655067pt;}
.y90{bottom:793.866187pt;}
.y179{bottom:794.586755pt;}
.y107{bottom:794.667787pt;}
.y125{bottom:794.907075pt;}
.ya{bottom:797.307251pt;}
.y1af{bottom:800.906267pt;}
.y2d{bottom:804.348019pt;}
.y14a{bottom:804.987067pt;}
.yad{bottom:806.019067pt;}
.y178{bottom:808.507067pt;}
.y8f{bottom:809.466659pt;}
.y106{bottom:809.947619pt;}
.y124{bottom:810.267067pt;}
.y9{bottom:812.587083pt;}
.y1ae{bottom:814.666667pt;}
.y2c{bottom:819.708011pt;}
.y177{bottom:822.346667pt;}
.y149{bottom:823.387067pt;}
.y8e{bottom:825.067131pt;}
.y105{bottom:825.307611pt;}
.y8{bottom:827.947075pt;}
.y123{bottom:830.107067pt;}
.y1ad{bottom:832.507067pt;}
.y2b{bottom:834.987843pt;}
.y176{bottom:840.187067pt;}
.yd4{bottom:840.559387pt;}
.y8d{bottom:840.587443pt;}
.y7{bottom:843.307067pt;}
.y1ac{bottom:846.267467pt;}
.y148{bottom:849.227496pt;}
.y2a{bottom:850.347835pt;}
.y175{bottom:854.108267pt;}
.yd3{bottom:855.923387pt;}
.y8c{bottom:855.947435pt;}
.y1ab{bottom:860.107067pt;}
.y6{bottom:863.147067pt;}
.y147{bottom:864.587488pt;}
.y29{bottom:865.707827pt;}
.y174{bottom:867.947867pt;}
.yd2{bottom:871.287387pt;}
.y8b{bottom:871.307427pt;}
.y1aa{bottom:873.867467pt;}
.yed{bottom:878.347435pt;}
.y173{bottom:881.787467pt;}
.y146{bottom:884.986872pt;}
.yd1{bottom:886.571227pt;}
.y8a{bottom:886.587259pt;}
.y1a9{bottom:892.267475pt;}
.yec{bottom:893.707427pt;}
.y5{bottom:897.547067pt;}
.y172{bottom:899.707067pt;}
.yd0{bottom:901.935227pt;}
.y89{bottom:901.947251pt;}
.y1a8{bottom:904.347067pt;}
.yeb{bottom:908.987259pt;}
.y171{bottom:913.547467pt;}
.y1a7{bottom:915.867467pt;}
.y4{bottom:915.947067pt;}
.ycf{bottom:917.299227pt;}
.y88{bottom:917.307243pt;}
.yea{bottom:924.347251pt;}
.y170{bottom:927.387067pt;}
.y1a6{bottom:929.627867pt;}
.yce{bottom:932.583067pt;}
.y87{bottom:932.587075pt;}
.y2{bottom:934.347067pt;}
.ye9{bottom:939.707243pt;}
.y3{bottom:940.347067pt;}
.y16f{bottom:941.307067pt;}
.y1a5{bottom:943.467467pt;}
.y86{bottom:947.947067pt;}
.yac{bottom:954.983067pt;}
.y67{bottom:954.987075pt;}
.y16e{bottom:959.867067pt;}
.y1a4{bottom:961.867475pt;}
.y1{bottom:965.387067pt;}
.y85{bottom:967.867067pt;}
.y66{bottom:970.347067pt;}
.y1a3{bottom:973.947067pt;}
.y62{bottom:1005.333333pt;}
.y60{bottom:1022.666667pt;}
.h11{height:13.333333pt;}
.h10{height:14.897031pt;}
.h19{height:26.014219pt;}
.h3{height:29.571719pt;}
.h1b{height:30.839375pt;}
.h22{height:33.349931pt;}
.h1a{height:33.351562pt;}
.h1c{height:33.352810pt;}
.h23{height:33.353386pt;}
.h1f{height:33.353610pt;}
.h20{height:33.354858pt;}
.h1d{height:33.355125pt;}
.h1e{height:33.355658pt;}
.h21{height:33.356192pt;}
.h5{height:37.131406pt;}
.hf{height:37.992500pt;}
.h12{height:38.937500pt;}
.h9{height:39.462016pt;}
.hb{height:39.687500pt;}
.h6{height:43.375000pt;}
.h4{height:44.437500pt;}
.h2{height:44.468750pt;}
.ha{height:46.434375pt;}
.h18{height:48.010873pt;}
.h17{height:48.011406pt;}
.h16{height:48.220156pt;}
.h1{height:50.531875pt;}
.hc{height:66.278125pt;}
.h15{height:66.280120pt;}
.h14{height:66.288482pt;}
.h7{height:68.515341pt;}
.hd{height:68.517261pt;}
.he{height:77.158125pt;}
.h8{height:79.398125pt;}
.h13{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:12.000000pt;}
.w1{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x25{left:7.466666pt;}
.x29{left:39.333333pt;}
.x7{left:75.680272pt;}
.x30{left:81.760444pt;}
.x5{left:83.040466pt;}
.x8{left:88.160000pt;}
.x2b{left:89.520000pt;}
.x31{left:94.719812pt;}
.x39{left:101.440000pt;}
.x27{left:102.560000pt;}
.x2d{left:105.680000pt;}
.xa{left:111.520000pt;}
.x2{left:117.040000pt;}
.x6{left:144.321032pt;}
.x2c{left:146.488728pt;}
.x32{left:162.720000pt;}
.x9{left:167.520000pt;}
.x1{left:168.720000pt;}
.x38{left:177.680000pt;}
.x23{left:184.750040pt;}
.x3{left:200.240000pt;}
.x4{left:205.600000pt;}
.x2a{left:370.000000pt;}
.xb{left:383.678741pt;}
.x26{left:387.679735pt;}
.xc{left:406.559292pt;}
.x2f{left:414.880000pt;}
.xe{left:419.040000pt;}
.x33{left:427.120000pt;}
.x3a{left:432.320000pt;}
.x37{left:436.800000pt;}
.x36{left:445.200457pt;}
.x2e{left:457.608277pt;}
.x19{left:468.639484pt;}
.xf{left:470.080201pt;}
.x34{left:491.040000pt;}
.x3c{left:505.680000pt;}
.x3b{left:509.840000pt;}
.xd{left:517.600000pt;}
.x12{left:524.640000pt;}
.x16{left:527.199769pt;}
.x13{left:531.440000pt;}
.x14{left:545.280000pt;}
.x17{left:546.960000pt;}
.x15{left:551.120000pt;}
.x1c{left:552.400000pt;}
.x1f{left:554.960000pt;}
.x1d{left:559.200000pt;}
.x20{left:574.640000pt;}
.x1e{left:585.200000pt;}
.x1a{left:600.640000pt;}
.x10{left:640.240000pt;}
.x11{left:651.760000pt;}
.x1b{left:653.200000pt;}
.x18{left:654.720000pt;}
.x21{left:656.079867pt;}
.x35{left:683.039057pt;}
.x22{left:697.033348pt;}
.x28{left:718.558694pt;}
.x24{left:743.333333pt;}
}




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