
    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_279213b71e7264dab7c7075d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.135000;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_221084a6ad5cb569effc84c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120000;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_d731ad2504fcc158fc6fd327.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_0808296c6ef7325309350d44.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_ae78a5125e180d31a2715951.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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;}
.m1{transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.528000px;}
.ls2b{letter-spacing:-7.020000px;}
.ls29{letter-spacing:-6.966000px;}
.ls30{letter-spacing:-5.940000px;}
.ls19{letter-spacing:-4.560000px;}
.ls24{letter-spacing:-3.456000px;}
.ls2e{letter-spacing:-2.664000px;}
.ls12{letter-spacing:-2.451000px;}
.ls1c{letter-spacing:-2.280000px;}
.ls23{letter-spacing:-2.064000px;}
.ls27{letter-spacing:-1.944000px;}
.ls1d{letter-spacing:-1.938000px;}
.ls76{letter-spacing:-1.782000px;}
.ls1e{letter-spacing:-1.767000px;}
.ls7d{letter-spacing:-1.716000px;}
.ls25{letter-spacing:-1.656000px;}
.ls18{letter-spacing:-1.653000px;}
.ls56{letter-spacing:-1.650000px;}
.ls22{letter-spacing:-1.596000px;}
.ls6f{letter-spacing:-1.584000px;}
.ls20{letter-spacing:-1.539000px;}
.ls1a{letter-spacing:-1.482000px;}
.ls41{letter-spacing:-1.452000px;}
.ls79{letter-spacing:-1.386000px;}
.ls17{letter-spacing:-1.368000px;}
.ls66{letter-spacing:-1.320000px;}
.ls10{letter-spacing:-1.311000px;}
.ls28{letter-spacing:-1.296000px;}
.ls67{letter-spacing:-1.254000px;}
.ls2d{letter-spacing:-1.242000px;}
.ls6d{letter-spacing:-1.188000px;}
.ls16{letter-spacing:-1.140000px;}
.ls58{letter-spacing:-1.122000px;}
.ls11{letter-spacing:-1.083000px;}
.ls4e{letter-spacing:-1.056000px;}
.ls57{letter-spacing:-0.990000px;}
.ls2f{letter-spacing:-0.972000px;}
.lse{letter-spacing:-0.969000px;}
.ls52{letter-spacing:-0.924000px;}
.ls21{letter-spacing:-0.912000px;}
.ls68{letter-spacing:-0.877800px;}
.ls26{letter-spacing:-0.864000px;}
.ls6a{letter-spacing:-0.858000px;}
.ls1b{letter-spacing:-0.855000px;}
.ls77{letter-spacing:-0.840000px;}
.ls59{letter-spacing:-0.792000px;}
.ls80{letter-spacing:-0.785400px;}
.ls14{letter-spacing:-0.741000px;}
.ls4f{letter-spacing:-0.726000px;}
.ls31{letter-spacing:-0.720000px;}
.ls6b{letter-spacing:-0.693000px;}
.lsb{letter-spacing:-0.684000px;}
.ls5e{letter-spacing:-0.660000px;}
.ls2a{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.627000px;}
.ls2c{letter-spacing:-0.594000px;}
.ls1f{letter-spacing:-0.570000px;}
.ls93{letter-spacing:-0.540000px;}
.ls45{letter-spacing:-0.528000px;}
.ls50{letter-spacing:-0.508200px;}
.ls6c{letter-spacing:-0.486000px;}
.ls4d{letter-spacing:-0.462000px;}
.ls69{letter-spacing:-0.432000px;}
.ls95{letter-spacing:-0.420000px;}
.ls46{letter-spacing:-0.396000px;}
.ls5f{letter-spacing:-0.378000px;}
.lsf{letter-spacing:-0.342000px;}
.ls43{letter-spacing:-0.330000px;}
.ls75{letter-spacing:-0.324000px;}
.ls92{letter-spacing:-0.300000px;}
.ls44{letter-spacing:-0.264000px;}
.lsd{letter-spacing:-0.228000px;}
.ls91{letter-spacing:-0.225000px;}
.ls42{letter-spacing:-0.198000px;}
.ls9b{letter-spacing:-0.180000px;}
.ls9a{letter-spacing:-0.135000px;}
.ls51{letter-spacing:-0.132000px;}
.ls90{letter-spacing:-0.120000px;}
.ls7a{letter-spacing:-0.108000px;}
.ls98{letter-spacing:-0.090000px;}
.ls4c{letter-spacing:-0.066000px;}
.ls99{letter-spacing:-0.060000px;}
.ls13{letter-spacing:-0.057000px;}
.ls72{letter-spacing:-0.054000px;}
.ls47{letter-spacing:-0.048000px;}
.ls97{letter-spacing:-0.045000px;}
.lsc{letter-spacing:0.000000px;}
.ls71{letter-spacing:0.046200px;}
.ls6e{letter-spacing:0.054000px;}
.ls78{letter-spacing:0.060000px;}
.ls4a{letter-spacing:0.066000px;}
.ls63{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.114000px;}
.ls48{letter-spacing:0.132000px;}
.ls65{letter-spacing:0.184800px;}
.ls3f{letter-spacing:0.198000px;}
.ls5b{letter-spacing:0.240000px;}
.ls37{letter-spacing:0.264000px;}
.ls73{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.285000px;}
.ls88{letter-spacing:0.300000px;}
.ls96{letter-spacing:0.315000px;}
.ls60{letter-spacing:0.324000px;}
.ls38{letter-spacing:0.330000px;}
.ls8c{letter-spacing:0.360000px;}
.ls61{letter-spacing:0.378000px;}
.ls49{letter-spacing:0.396000px;}
.ls0{letter-spacing:0.399000px;}
.ls84{letter-spacing:0.405000px;}
.ls5d{letter-spacing:0.420000px;}
.ls62{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.462000px;}
.ls7e{letter-spacing:0.486000px;}
.ls4b{letter-spacing:0.528000px;}
.ls74{letter-spacing:0.540000px;}
.ls64{letter-spacing:0.554400px;}
.ls8a{letter-spacing:0.585000px;}
.ls5a{letter-spacing:0.594000px;}
.ls40{letter-spacing:0.600000px;}
.ls94{letter-spacing:0.630000px;}
.lsa{letter-spacing:0.648000px;}
.ls53{letter-spacing:0.660000px;}
.ls7{letter-spacing:0.684000px;}
.ls8f{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.726000px;}
.ls36{letter-spacing:0.780000px;}
.ls33{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.798000px;}
.ls32{letter-spacing:0.858000px;}
.ls8b{letter-spacing:0.900000px;}
.ls55{letter-spacing:0.924000px;}
.ls35{letter-spacing:0.990000px;}
.ls8d{letter-spacing:1.020000px;}
.ls4{letter-spacing:1.026000px;}
.ls8e{letter-spacing:1.035000px;}
.ls5c{letter-spacing:1.056000px;}
.ls5{letter-spacing:1.083000px;}
.ls70{letter-spacing:1.122000px;}
.ls87{letter-spacing:1.140000px;}
.ls82{letter-spacing:1.170000px;}
.ls3a{letter-spacing:1.188000px;}
.ls83{letter-spacing:1.200000px;}
.ls85{letter-spacing:1.215000px;}
.ls3d{letter-spacing:1.254000px;}
.ls7f{letter-spacing:1.452000px;}
.ls81{letter-spacing:1.500000px;}
.ls7c{letter-spacing:1.518000px;}
.ls39{letter-spacing:1.584000px;}
.ls3c{letter-spacing:1.650000px;}
.ls3e{letter-spacing:1.782000px;}
.ls6{letter-spacing:12.825000px;}
.ls3{letter-spacing:13.058700px;}
.ls8{letter-spacing:13.224000px;}
.ls7b{letter-spacing:16.170000px;}
.ls86{letter-spacing:17.700000px;}
.ls54{letter-spacing:18.480000px;}
.ls89{letter-spacing:30.000000px;}
.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;}
}
.ws18{word-spacing:-20.544000px;}
.ws84{word-spacing:-18.150000px;}
.ws3c{word-spacing:-18.084000px;}
.ws1b{word-spacing:-18.000000px;}
.ws92{word-spacing:-17.754000px;}
.ws5e{word-spacing:-17.688000px;}
.wsa9{word-spacing:-17.424000px;}
.ws3e{word-spacing:-17.358000px;}
.ws38{word-spacing:-17.292000px;}
.ws6b{word-spacing:-17.226000px;}
.ws78{word-spacing:-17.160000px;}
.ws1a{word-spacing:-17.136000px;}
.ws73{word-spacing:-17.094000px;}
.ws94{word-spacing:-17.028000px;}
.ws39{word-spacing:-16.962000px;}
.ws79{word-spacing:-16.830000px;}
.ws3b{word-spacing:-16.764000px;}
.ws58{word-spacing:-16.698000px;}
.ws5a{word-spacing:-16.632000px;}
.ws59{word-spacing:-16.566000px;}
.ws37{word-spacing:-16.500000px;}
.ws57{word-spacing:-16.434000px;}
.ws96{word-spacing:-16.368000px;}
.ws19{word-spacing:-16.344000px;}
.ws80{word-spacing:-16.302000px;}
.ws5c{word-spacing:-16.236000px;}
.wsb7{word-spacing:-16.200000px;}
.ws75{word-spacing:-16.170000px;}
.ws76{word-spacing:-16.104000px;}
.ws74{word-spacing:-16.038000px;}
.wsc7{word-spacing:-16.020000px;}
.ws7f{word-spacing:-15.972000px;}
.ws77{word-spacing:-15.906000px;}
.ws93{word-spacing:-15.840000px;}
.ws5f{word-spacing:-15.774000px;}
.wsd0{word-spacing:-15.720000px;}
.wsb8{word-spacing:-15.660000px;}
.wsaa{word-spacing:-15.642000px;}
.ws60{word-spacing:-15.576000px;}
.wsba{word-spacing:-15.540000px;}
.ws6c{word-spacing:-15.510000px;}
.ws5b{word-spacing:-15.444000px;}
.wsaf{word-spacing:-15.378000px;}
.wsc2{word-spacing:-15.360000px;}
.ws25{word-spacing:-15.336000px;}
.wsc0{word-spacing:-15.300000px;}
.ws82{word-spacing:-15.180000px;}
.wsa8{word-spacing:-15.060000px;}
.ws90{word-spacing:-15.048000px;}
.wsa5{word-spacing:-15.000000px;}
.wsab{word-spacing:-14.916000px;}
.wsd3{word-spacing:-14.820000px;}
.wsa4{word-spacing:-14.718000px;}
.wsbc{word-spacing:-14.700000px;}
.wsc3{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.535000px;}
.ws13{word-spacing:-14.307000px;}
.wsbe{word-spacing:-14.280000px;}
.ws9{word-spacing:-14.250000px;}
.wscb{word-spacing:-14.160000px;}
.ws87{word-spacing:-13.932000px;}
.ws7{word-spacing:-13.908000px;}
.ws86{word-spacing:-13.878000px;}
.wsc9{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.851000px;}
.ws11{word-spacing:-13.623000px;}
.ws2{word-spacing:-13.566000px;}
.ws97{word-spacing:-13.554000px;}
.ws6{word-spacing:-13.509000px;}
.ws23{word-spacing:-13.500000px;}
.ws9c{word-spacing:-13.446000px;}
.ws15{word-spacing:-13.338000px;}
.ws1{word-spacing:-13.281000px;}
.wsa0{word-spacing:-13.176000px;}
.ws4{word-spacing:-13.167000px;}
.wsa{word-spacing:-13.110000px;}
.ws3{word-spacing:-12.939000px;}
.ws21{word-spacing:-12.906000px;}
.wsb{word-spacing:-12.882000px;}
.ws1f{word-spacing:-12.852000px;}
.wse{word-spacing:-12.768000px;}
.ws14{word-spacing:-12.711000px;}
.ws16{word-spacing:-12.654000px;}
.ws24{word-spacing:-12.636000px;}
.wsc{word-spacing:-12.597000px;}
.ws26{word-spacing:-12.528000px;}
.ws12{word-spacing:-12.483000px;}
.wsb6{word-spacing:-12.465000px;}
.wsb5{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.312000px;}
.wsc6{word-spacing:-12.285000px;}
.ws22{word-spacing:-12.258000px;}
.ws1d{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.084000px;}
.ws61{word-spacing:-12.000000px;}
.wsf{word-spacing:-11.970000px;}
.ws40{word-spacing:-11.952000px;}
.wsc1{word-spacing:-11.880000px;}
.ws81{word-spacing:-11.734800px;}
.ws9b{word-spacing:-11.596200px;}
.wscc{word-spacing:-11.565000px;}
.ws1c{word-spacing:-11.556000px;}
.ws3a{word-spacing:-11.550000px;}
.wscd{word-spacing:-11.520000px;}
.wsb3{word-spacing:-11.250000px;}
.wsce{word-spacing:-11.205000px;}
.wscf{word-spacing:-11.160000px;}
.wsd1{word-spacing:-11.115000px;}
.ws5d{word-spacing:-11.041800px;}
.wsbb{word-spacing:-11.025000px;}
.ws8f{word-spacing:-10.857000px;}
.wsbf{word-spacing:-10.710000px;}
.ws83{word-spacing:-10.672200px;}
.ws17{word-spacing:-9.936000px;}
.wsd{word-spacing:-9.690000px;}
.ws27{word-spacing:-7.560000px;}
.ws36{word-spacing:-7.104000px;}
.ws1e{word-spacing:-6.534000px;}
.ws20{word-spacing:-6.480000px;}
.ws47{word-spacing:-0.858000px;}
.ws46{word-spacing:-0.792000px;}
.ws50{word-spacing:-0.726000px;}
.ws2f{word-spacing:-0.684000px;}
.ws43{word-spacing:-0.660000px;}
.ws6a{word-spacing:-0.648000px;}
.ws70{word-spacing:-0.594000px;}
.wsad{word-spacing:-0.540000px;}
.ws45{word-spacing:-0.528000px;}
.ws2a{word-spacing:-0.513000px;}
.wsda{word-spacing:-0.480000px;}
.ws64{word-spacing:-0.462000px;}
.ws2e{word-spacing:-0.399000px;}
.ws52{word-spacing:-0.396000px;}
.wsa2{word-spacing:-0.378000px;}
.wsa7{word-spacing:-0.360000px;}
.ws72{word-spacing:-0.330000px;}
.ws29{word-spacing:-0.285000px;}
.ws7e{word-spacing:-0.270000px;}
.ws4f{word-spacing:-0.264000px;}
.wse0{word-spacing:-0.240000px;}
.ws8a{word-spacing:-0.216000px;}
.ws7c{word-spacing:-0.198000px;}
.wsdb{word-spacing:-0.180000px;}
.ws2d{word-spacing:-0.171000px;}
.ws91{word-spacing:-0.162000px;}
.ws68{word-spacing:-0.132000px;}
.ws34{word-spacing:-0.114000px;}
.ws65{word-spacing:-0.066000px;}
.wsb4{word-spacing:-0.060000px;}
.ws89{word-spacing:-0.054000px;}
.ws28{word-spacing:0.000000px;}
.ws8b{word-spacing:0.054000px;}
.wsd4{word-spacing:0.060000px;}
.ws4c{word-spacing:0.066000px;}
.ws99{word-spacing:0.108000px;}
.ws32{word-spacing:0.114000px;}
.wsa6{word-spacing:0.120000px;}
.ws69{word-spacing:0.132000px;}
.wsb1{word-spacing:0.184800px;}
.ws49{word-spacing:0.198000px;}
.wsd7{word-spacing:0.225000px;}
.ws2c{word-spacing:0.228000px;}
.ws53{word-spacing:0.264000px;}
.ws8c{word-spacing:0.270000px;}
.wsd6{word-spacing:0.300000px;}
.ws95{word-spacing:0.330000px;}
.wse3{word-spacing:0.360000px;}
.ws55{word-spacing:0.396000px;}
.ws48{word-spacing:0.415800px;}
.ws67{word-spacing:0.462000px;}
.wse1{word-spacing:0.480000px;}
.ws54{word-spacing:0.528000px;}
.ws88{word-spacing:0.554400px;}
.ws41{word-spacing:0.594000px;}
.wsdf{word-spacing:0.600000px;}
.ws4e{word-spacing:0.660000px;}
.wsde{word-spacing:0.675000px;}
.ws71{word-spacing:0.726000px;}
.ws7d{word-spacing:0.739200px;}
.wsa3{word-spacing:0.756000px;}
.wse2{word-spacing:0.780000px;}
.ws42{word-spacing:0.792000px;}
.wsd8{word-spacing:0.840000px;}
.ws4d{word-spacing:0.858000px;}
.ws8e{word-spacing:0.864000px;}
.ws6e{word-spacing:0.877800px;}
.wsdd{word-spacing:0.900000px;}
.wsa1{word-spacing:0.918000px;}
.ws6f{word-spacing:0.924000px;}
.wsd9{word-spacing:0.960000px;}
.ws8d{word-spacing:0.972000px;}
.ws6d{word-spacing:0.990000px;}
.ws30{word-spacing:1.026000px;}
.ws7b{word-spacing:1.056000px;}
.wsc5{word-spacing:1.080000px;}
.ws56{word-spacing:1.108800px;}
.ws66{word-spacing:1.122000px;}
.ws9e{word-spacing:1.134000px;}
.ws2b{word-spacing:1.140000px;}
.ws3d{word-spacing:1.188000px;}
.wsdc{word-spacing:1.200000px;}
.ws98{word-spacing:1.242000px;}
.ws33{word-spacing:1.254000px;}
.ws4a{word-spacing:1.320000px;}
.ws4b{word-spacing:1.386000px;}
.ws31{word-spacing:1.425000px;}
.wsac{word-spacing:1.440000px;}
.ws63{word-spacing:1.452000px;}
.ws9f{word-spacing:1.458000px;}
.ws51{word-spacing:1.518000px;}
.ws44{word-spacing:1.584000px;}
.ws7a{word-spacing:1.650000px;}
.wsd2{word-spacing:3.135000px;}
.wsbd{word-spacing:3.285000px;}
.wsc4{word-spacing:3.615000px;}
.wsc8{word-spacing:3.645000px;}
.wsca{word-spacing:3.750000px;}
.ws9d{word-spacing:4.476000px;}
.wsb2{word-spacing:4.620000px;}
.ws9a{word-spacing:4.650000px;}
.wsb0{word-spacing:4.869000px;}
.wsd5{word-spacing:5.160000px;}
.ws85{word-spacing:9.018000px;}
.wsae{word-spacing:13.662000px;}
.wsb9{word-spacing:15.000000px;}
.ws3f{word-spacing:35.904000px;}
.ws62{word-spacing:36.018000px;}
.ws35{word-spacing:36.048000px;}
._d{margin-left:-11.448095px;}
._a{margin-left:-9.966000px;}
._3{margin-left:-7.260000px;}
._8{margin-left:-5.808000px;}
._4{margin-left:-4.488000px;}
._1{margin-left:-2.706000px;}
._0{margin-left:-1.081968px;}
._2{width:1.452000px;}
._7{width:3.234000px;}
._c{width:4.950000px;}
._e{width:12.975000px;}
._b{width:22.518000px;}
._6{width:49.518000px;}
._9{width:132.210000px;}
._5{width:586.530000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:1.396500px;}
.y2a{bottom:2.146500px;}
.y24{bottom:2.896500px;}
.y26{bottom:3.646500px;}
.y12c{bottom:50.373000px;}
.y197{bottom:50.394000px;}
.yc4{bottom:50.418000px;}
.y5a{bottom:50.493000px;}
.y119{bottom:50.715000px;}
.yea{bottom:50.905500px;}
.y153{bottom:50.937000px;}
.ya2{bottom:50.955000px;}
.y82{bottom:51.084000px;}
.y1ec{bottom:51.885000px;}
.y156{bottom:52.995000px;}
.y2f{bottom:58.500000px;}
.y12b{bottom:64.629000px;}
.y196{bottom:64.650000px;}
.yc3{bottom:64.674000px;}
.y59{bottom:64.749000px;}
.ye9{bottom:65.161500px;}
.y152{bottom:65.193000px;}
.y81{bottom:65.340000px;}
.y1eb{bottom:67.635000px;}
.y118{bottom:67.957500px;}
.y155{bottom:68.745000px;}
.y2e{bottom:78.000000px;}
.y12a{bottom:78.885000px;}
.yc2{bottom:78.930000px;}
.y58{bottom:79.005000px;}
.ye8{bottom:79.417500px;}
.y151{bottom:79.449000px;}
.y29{bottom:79.500000px;}
.y1ea{bottom:83.385000px;}
.y154{bottom:84.495000px;}
.y117{bottom:85.200000px;}
.ye7{bottom:93.673500px;}
.y150{bottom:93.705000px;}
.y2d{bottom:94.500000px;}
.y27{bottom:96.000000px;}
.y1e9{bottom:99.135000px;}
.y195{bottom:102.315000px;}
.ya1{bottom:102.367500px;}
.y116{bottom:102.442500px;}
.ye6{bottom:107.929500px;}
.y14f{bottom:107.961000px;}
.y25{bottom:111.000000px;}
.y2c{bottom:114.000000px;}
.y1e8{bottom:114.885000px;}
.y13d{bottom:119.392500px;}
.yc1{bottom:119.445000px;}
.y80{bottom:119.482500px;}
.y129{bottom:119.505000px;}
.y1bd{bottom:119.547000px;}
.y100{bottom:119.550000px;}
.y194{bottom:119.557500px;}
.ya0{bottom:119.610000px;}
.y115{bottom:119.685000px;}
.y17d{bottom:121.005000px;}
.ye5{bottom:122.185500px;}
.y14e{bottom:122.217000px;}
.y57{bottom:128.017500px;}
.y23{bottom:129.000000px;}
.y2b{bottom:130.500000px;}
.y1e7{bottom:130.635000px;}
.ye4{bottom:136.441500px;}
.y14d{bottom:136.473000px;}
.yc0{bottom:136.687500px;}
.y7f{bottom:136.725000px;}
.y128{bottom:136.747500px;}
.y1bc{bottom:136.789500px;}
.yff{bottom:136.792500px;}
.y193{bottom:136.800000px;}
.y9f{bottom:136.852500px;}
.y114{bottom:136.927500px;}
.y17c{bottom:138.247500px;}
.y56{bottom:145.470000px;}
.y1e6{bottom:146.385000px;}
.y14c{bottom:150.729000px;}
.ybf{bottom:153.930000px;}
.y7e{bottom:153.967500px;}
.y127{bottom:153.990000px;}
.y1bb{bottom:154.032000px;}
.yfe{bottom:154.035000px;}
.y192{bottom:154.042500px;}
.y9e{bottom:154.095000px;}
.y113{bottom:154.170000px;}
.ye3{bottom:154.950000px;}
.y17b{bottom:155.490000px;}
.y1e5{bottom:162.135000px;}
.y55{bottom:162.712500px;}
.y14b{bottom:164.985000px;}
.y21{bottom:167.265000px;}
.ye2{bottom:169.206000px;}
.ybe{bottom:171.172500px;}
.y7d{bottom:171.210000px;}
.y126{bottom:171.232500px;}
.y1ba{bottom:171.274500px;}
.yfd{bottom:171.277500px;}
.y191{bottom:171.285000px;}
.y9d{bottom:171.337500px;}
.y112{bottom:171.412500px;}
.y17a{bottom:172.732500px;}
.y1e4{bottom:177.885000px;}
.y54{bottom:179.955000px;}
.ye1{bottom:183.462000px;}
.ybd{bottom:188.415000px;}
.y7c{bottom:188.452500px;}
.y125{bottom:188.475000px;}
.y1b9{bottom:188.517000px;}
.yfc{bottom:188.520000px;}
.y190{bottom:188.527500px;}
.y9c{bottom:188.580000px;}
.y111{bottom:188.655000px;}
.y179{bottom:189.975000px;}
.y1e3{bottom:193.635000px;}
.y53{bottom:197.197500px;}
.ye0{bottom:197.718000px;}
.ybc{bottom:205.657500px;}
.y7b{bottom:205.695000px;}
.y124{bottom:205.717500px;}
.y1b8{bottom:205.759500px;}
.yfb{bottom:205.762500px;}
.y18f{bottom:205.770000px;}
.y9b{bottom:205.822500px;}
.y110{bottom:205.897500px;}
.y13{bottom:206.295000px;}
.y178{bottom:207.217500px;}
.y1e2{bottom:209.385000px;}
.ydf{bottom:211.974000px;}
.y52{bottom:214.440000px;}
.y12{bottom:221.268000px;}
.ybb{bottom:222.900000px;}
.y7a{bottom:222.937500px;}
.y123{bottom:222.960000px;}
.y14a{bottom:222.982500px;}
.y1b7{bottom:223.002000px;}
.yfa{bottom:223.005000px;}
.y18e{bottom:223.012500px;}
.y9a{bottom:223.065000px;}
.y10f{bottom:223.140000px;}
.y177{bottom:224.460000px;}
.y1e1{bottom:225.135000px;}
.yde{bottom:226.230000px;}
.y51{bottom:231.682500px;}
.yba{bottom:240.142500px;}
.y79{bottom:240.180000px;}
.y122{bottom:240.202500px;}
.y149{bottom:240.225000px;}
.y1b6{bottom:240.244500px;}
.yf9{bottom:240.247500px;}
.y18d{bottom:240.255000px;}
.y99{bottom:240.307500px;}
.y10e{bottom:240.382500px;}
.y1e0{bottom:240.885000px;}
.y176{bottom:241.702500px;}
.y11{bottom:242.272500px;}
.y50{bottom:248.925000px;}
.y1df{bottom:256.635000px;}
.y10{bottom:257.277750px;}
.y78{bottom:257.422500px;}
.y121{bottom:257.445000px;}
.y148{bottom:257.467500px;}
.y1b5{bottom:257.487000px;}
.yf8{bottom:257.490000px;}
.y18c{bottom:257.497500px;}
.y98{bottom:257.550000px;}
.yb9{bottom:257.557500px;}
.y10d{bottom:257.625000px;}
.y175{bottom:258.945000px;}
.y4f{bottom:266.167500px;}
.yf{bottom:272.283000px;}
.y1de{bottom:272.385000px;}
.y77{bottom:274.665000px;}
.y120{bottom:274.687500px;}
.y147{bottom:274.710000px;}
.y1b4{bottom:274.729500px;}
.yf7{bottom:274.732500px;}
.y18b{bottom:274.740000px;}
.ydd{bottom:274.770000px;}
.y97{bottom:274.792500px;}
.yb8{bottom:274.800000px;}
.y10c{bottom:274.867500px;}
.y174{bottom:276.187500px;}
.y4e{bottom:283.410000px;}
.ye{bottom:287.288250px;}
.y1dd{bottom:288.135000px;}
.y76{bottom:291.907500px;}
.y11f{bottom:291.930000px;}
.y146{bottom:291.952500px;}
.y1b3{bottom:291.972000px;}
.yf6{bottom:291.975000px;}
.y18a{bottom:291.982500px;}
.ydc{bottom:292.012500px;}
.y96{bottom:292.035000px;}
.yb7{bottom:292.042500px;}
.y10b{bottom:292.110000px;}
.y173{bottom:293.430000px;}
.y4d{bottom:300.652500px;}
.yd{bottom:302.293500px;}
.y1dc{bottom:303.885000px;}
.y75{bottom:309.150000px;}
.y11e{bottom:309.172500px;}
.y145{bottom:309.195000px;}
.y1b2{bottom:309.214500px;}
.yf5{bottom:309.217500px;}
.y189{bottom:309.225000px;}
.ydb{bottom:309.255000px;}
.y95{bottom:309.277500px;}
.yb6{bottom:309.285000px;}
.y10a{bottom:309.352500px;}
.y172{bottom:310.672500px;}
.yc{bottom:317.298750px;}
.y4c{bottom:317.895000px;}
.y1db{bottom:319.635000px;}
.y74{bottom:326.392500px;}
.y11d{bottom:326.415000px;}
.y144{bottom:326.437500px;}
.y1b1{bottom:326.457000px;}
.yf4{bottom:326.460000px;}
.y188{bottom:326.467500px;}
.yda{bottom:326.497500px;}
.y94{bottom:326.520000px;}
.yb5{bottom:326.527500px;}
.y109{bottom:326.595000px;}
.y171{bottom:327.915000px;}
.y4b{bottom:335.137500px;}
.y1da{bottom:335.385000px;}
.y11c{bottom:343.657500px;}
.y143{bottom:343.680000px;}
.y1b0{bottom:343.699500px;}
.yf3{bottom:343.702500px;}
.y187{bottom:343.710000px;}
.yd9{bottom:343.740000px;}
.y93{bottom:343.762500px;}
.yb4{bottom:343.770000px;}
.y73{bottom:343.804500px;}
.y108{bottom:343.837500px;}
.y170{bottom:345.157500px;}
.yb{bottom:347.295000px;}
.y1d9{bottom:351.135000px;}
.y4a{bottom:352.380000px;}
.y11b{bottom:360.900000px;}
.y142{bottom:360.922500px;}
.y1af{bottom:360.942000px;}
.yf2{bottom:360.945000px;}
.y186{bottom:360.952500px;}
.yd8{bottom:360.982500px;}
.y92{bottom:361.005000px;}
.yb3{bottom:361.012500px;}
.y72{bottom:361.047000px;}
.y107{bottom:361.080000px;}
.y16f{bottom:362.400000px;}
.y1d8{bottom:366.885000px;}
.y49{bottom:369.622500px;}
.y11a{bottom:378.142500px;}
.y141{bottom:378.165000px;}
.y1ae{bottom:378.184500px;}
.yf1{bottom:378.187500px;}
.y185{bottom:378.195000px;}
.yd7{bottom:378.225000px;}
.y91{bottom:378.247500px;}
.yb2{bottom:378.255000px;}
.y71{bottom:378.289500px;}
.y106{bottom:378.322500px;}
.y16e{bottom:379.642500px;}
.y1d7{bottom:382.635000px;}
.ya{bottom:383.257500px;}
.y48{bottom:386.865000px;}
.y140{bottom:395.407500px;}
.yf0{bottom:395.430000px;}
.y184{bottom:395.437500px;}
.yd6{bottom:395.467500px;}
.y90{bottom:395.490000px;}
.yb1{bottom:395.497500px;}
.y70{bottom:395.532000px;}
.y105{bottom:395.565000px;}
.y16d{bottom:397.042500px;}
.y9{bottom:398.262750px;}
.y1d6{bottom:398.385000px;}
.y1ad{bottom:404.056500px;}
.y47{bottom:404.107500px;}
.y13f{bottom:412.650000px;}
.yef{bottom:412.672500px;}
.y183{bottom:412.680000px;}
.yd5{bottom:412.710000px;}
.y8f{bottom:412.732500px;}
.yb0{bottom:412.740000px;}
.y13c{bottom:412.774500px;}
.y104{bottom:412.807500px;}
.y1d5{bottom:414.135000px;}
.y16c{bottom:414.285000px;}
.y8{bottom:419.267250px;}
.y46{bottom:421.350000px;}
.y6f{bottom:421.404000px;}
.y1d4{bottom:429.885000px;}
.y13e{bottom:429.892500px;}
.yee{bottom:429.915000px;}
.y182{bottom:429.922500px;}
.yd4{bottom:429.952500px;}
.y8e{bottom:429.975000px;}
.yaf{bottom:429.982500px;}
.y13b{bottom:430.017000px;}
.y103{bottom:430.050000px;}
.y16b{bottom:431.527500px;}
.y7{bottom:434.272500px;}
.y45{bottom:438.592500px;}
.y6e{bottom:438.646500px;}
.y1d3{bottom:445.635000px;}
.yed{bottom:447.157500px;}
.y181{bottom:447.165000px;}
.y1ac{bottom:447.187500px;}
.yd3{bottom:447.195000px;}
.y8d{bottom:447.217500px;}
.yae{bottom:447.225000px;}
.y13a{bottom:447.259500px;}
.y102{bottom:447.292500px;}
.y16a{bottom:448.770000px;}
.y6{bottom:449.277750px;}
.y44{bottom:455.835000px;}
.y1d2{bottom:461.385000px;}
.y5{bottom:464.283000px;}
.yec{bottom:464.400000px;}
.y180{bottom:464.407500px;}
.y1ab{bottom:464.430000px;}
.yd2{bottom:464.437500px;}
.y8c{bottom:464.460000px;}
.yad{bottom:464.467500px;}
.y139{bottom:464.502000px;}
.y101{bottom:464.535000px;}
.y169{bottom:466.012500px;}
.y43{bottom:473.077500px;}
.y1d1{bottom:477.135000px;}
.y4{bottom:479.288250px;}
.yeb{bottom:481.642500px;}
.y17f{bottom:481.650000px;}
.y1aa{bottom:481.672500px;}
.yd1{bottom:481.680000px;}
.y8b{bottom:481.702500px;}
.yac{bottom:481.710000px;}
.y138{bottom:481.744500px;}
.y6d{bottom:481.777500px;}
.y168{bottom:483.255000px;}
.y42{bottom:490.320000px;}
.y1d0{bottom:492.885000px;}
.y3{bottom:494.293500px;}
.y17e{bottom:498.892500px;}
.y1a9{bottom:498.915000px;}
.yd0{bottom:498.922500px;}
.y8a{bottom:498.945000px;}
.yab{bottom:498.952500px;}
.y137{bottom:498.987000px;}
.y6c{bottom:499.020000px;}
.y167{bottom:500.497500px;}
.y41{bottom:507.562500px;}
.y1cf{bottom:508.635000px;}
.y2{bottom:509.298750px;}
.y1a8{bottom:516.157500px;}
.ycf{bottom:516.165000px;}
.y89{bottom:516.187500px;}
.yaa{bottom:516.195000px;}
.y136{bottom:516.229500px;}
.y6b{bottom:516.262500px;}
.y166{bottom:517.740000px;}
.y1ce{bottom:524.385000px;}
.y40{bottom:524.805000px;}
.y1a7{bottom:533.400000px;}
.yce{bottom:533.407500px;}
.y88{bottom:533.430000px;}
.ya9{bottom:533.437500px;}
.y135{bottom:533.472000px;}
.y6a{bottom:533.505000px;}
.y165{bottom:534.982500px;}
.y1{bottom:539.295000px;}
.y1cd{bottom:540.135000px;}
.y3f{bottom:542.047500px;}
.y1a6{bottom:550.642500px;}
.ycd{bottom:550.650000px;}
.y87{bottom:550.672500px;}
.ya8{bottom:550.680000px;}
.y134{bottom:550.714500px;}
.y69{bottom:550.747500px;}
.y164{bottom:552.225000px;}
.y1cc{bottom:555.885000px;}
.y3e{bottom:559.290000px;}
.ycc{bottom:567.892500px;}
.y86{bottom:567.915000px;}
.ya7{bottom:567.922500px;}
.y133{bottom:567.957000px;}
.y1a5{bottom:567.982500px;}
.y68{bottom:567.990000px;}
.y163{bottom:569.467500px;}
.y1cb{bottom:571.635000px;}
.y3d{bottom:576.532500px;}
.y20{bottom:584.322000px;}
.ycb{bottom:585.142500px;}
.y85{bottom:585.157500px;}
.ya6{bottom:585.165000px;}
.y132{bottom:585.199500px;}
.y1a4{bottom:585.225000px;}
.y67{bottom:585.232500px;}
.y162{bottom:586.710000px;}
.y1ca{bottom:587.385000px;}
.y3c{bottom:593.775000px;}
.y1f{bottom:598.578000px;}
.y84{bottom:602.400000px;}
.ya5{bottom:602.407500px;}
.yca{bottom:602.422500px;}
.y131{bottom:602.442000px;}
.y1a3{bottom:602.467500px;}
.y66{bottom:602.475000px;}
.y1c9{bottom:603.135000px;}
.y161{bottom:603.952500px;}
.y3b{bottom:611.017500px;}
.y1e{bottom:612.834000px;}
.y1c8{bottom:618.885000px;}
.y83{bottom:619.642500px;}
.ya4{bottom:619.650000px;}
.yc9{bottom:619.665000px;}
.y130{bottom:619.684500px;}
.y1a2{bottom:619.710000px;}
.y65{bottom:619.717500px;}
.y160{bottom:621.195000px;}
.y1d{bottom:627.090000px;}
.y3a{bottom:628.267500px;}
.y1c7{bottom:634.635000px;}
.ya3{bottom:636.892500px;}
.yc8{bottom:636.907500px;}
.y12f{bottom:636.927000px;}
.y1a1{bottom:636.952500px;}
.y64{bottom:636.960000px;}
.y15f{bottom:638.437500px;}
.y1c{bottom:645.090000px;}
.y39{bottom:645.573000px;}
.y1c6{bottom:650.385000px;}
.yc7{bottom:654.150000px;}
.y1a0{bottom:654.195000px;}
.y63{bottom:654.202500px;}
.y15e{bottom:655.680000px;}
.y12e{bottom:662.799000px;}
.y38{bottom:662.815500px;}
.y1c5{bottom:666.135000px;}
.yc6{bottom:671.392500px;}
.y19f{bottom:671.437500px;}
.y62{bottom:671.445000px;}
.y15d{bottom:672.922500px;}
.y1b{bottom:675.837000px;}
.y12d{bottom:680.041500px;}
.y37{bottom:680.058000px;}
.y1c4{bottom:681.885000px;}
.yc5{bottom:688.635000px;}
.y19e{bottom:688.680000px;}
.y61{bottom:688.687500px;}
.y1a{bottom:690.093000px;}
.y15c{bottom:690.165000px;}
.y36{bottom:697.300500px;}
.y1c3{bottom:697.635000px;}
.y19{bottom:704.349000px;}
.y19d{bottom:705.922500px;}
.y60{bottom:705.930000px;}
.y15b{bottom:707.407500px;}
.y1c2{bottom:713.385000px;}
.y35{bottom:714.543000px;}
.y18{bottom:718.605000px;}
.y19c{bottom:723.165000px;}
.y5f{bottom:723.172500px;}
.y15a{bottom:724.650000px;}
.y1c1{bottom:729.135000px;}
.y34{bottom:731.785500px;}
.y17{bottom:736.605000px;}
.y19b{bottom:740.407500px;}
.y5e{bottom:740.415000px;}
.y159{bottom:741.892500px;}
.y1c0{bottom:744.885000px;}
.y33{bottom:749.028000px;}
.y19a{bottom:757.650000px;}
.y5d{bottom:757.657500px;}
.y158{bottom:759.135000px;}
.y1bf{bottom:760.635000px;}
.y32{bottom:766.270500px;}
.y199{bottom:774.892500px;}
.y5c{bottom:774.900000px;}
.y1be{bottom:776.385000px;}
.y16{bottom:781.605000px;}
.y31{bottom:783.513000px;}
.y198{bottom:792.135000px;}
.y5b{bottom:792.142500px;}
.y157{bottom:793.635000px;}
.y15{bottom:805.605000px;}
.y30{bottom:809.385000px;}
.y14{bottom:856.605000px;}
.y22{bottom:1045.500000px;}
.hb{height:12.000000px;}
.hc{height:13.500000px;}
.h8{height:15.000000px;}
.ha{height:16.500000px;}
.h3{height:41.568000px;}
.h6{height:45.954000px;}
.h7{height:47.085938px;}
.h2{height:48.507000px;}
.h1{height:49.362000px;}
.h1f{height:51.060000px;}
.h9{height:52.998047px;}
.hf{height:56.166000px;}
.he{height:57.156000px;}
.h12{height:60.256200px;}
.h1b{height:60.376200px;}
.h16{height:60.406200px;}
.h13{height:60.418200px;}
.h1e{height:60.466200px;}
.h1c{height:60.508200px;}
.h1a{height:60.556200px;}
.h20{height:60.586200px;}
.h1d{height:60.646200px;}
.h21{height:60.706200px;}
.h14{height:60.796200px;}
.h15{height:60.826200px;}
.h10{height:60.844200px;}
.h17{height:60.916200px;}
.h19{height:60.946200px;}
.h11{height:61.066200px;}
.h18{height:61.096200px;}
.h5{height:61.272000px;}
.h4{height:81.696000px;}
.hd{height:889.500000px;}
.h0{height:892.500000px;}
.w8{width:153.000000px;}
.w7{width:163.500000px;}
.w6{width:168.000000px;}
.w4{width:199.500000px;}
.w5{width:214.500000px;}
.w3{width:217.520270px;}
.w2{width:223.500000px;}
.w1{width:226.500000px;}
.w9{width:634.500000px;}
.w0{width:637.500000px;}
.x4{left:-64.500000px;}
.x0{left:0.000000px;}
.xf{left:1.500000px;}
.x8{left:5.662800px;}
.xa{left:58.880800px;}
.x1{left:71.700000px;}
.x5{left:73.500000px;}
.x7{left:75.000000px;}
.x13{left:78.165000px;}
.x9{left:85.489865px;}
.x12{left:88.381500px;}
.x11{left:93.871500px;}
.xb{left:97.500000px;}
.xc{left:115.530000px;}
.x14{left:116.700000px;}
.x6{left:142.515150px;}
.x3{left:291.030000px;}
.xe{left:330.000000px;}
.xd{left:331.500000px;}
.x10{left:333.000000px;}
.x2{left:426.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.136000pt;}
.ls2b{letter-spacing:-6.240000pt;}
.ls29{letter-spacing:-6.192000pt;}
.ls30{letter-spacing:-5.280000pt;}
.ls19{letter-spacing:-4.053333pt;}
.ls24{letter-spacing:-3.072000pt;}
.ls2e{letter-spacing:-2.368000pt;}
.ls12{letter-spacing:-2.178667pt;}
.ls1c{letter-spacing:-2.026667pt;}
.ls23{letter-spacing:-1.834667pt;}
.ls27{letter-spacing:-1.728000pt;}
.ls1d{letter-spacing:-1.722667pt;}
.ls76{letter-spacing:-1.584000pt;}
.ls1e{letter-spacing:-1.570667pt;}
.ls7d{letter-spacing:-1.525333pt;}
.ls25{letter-spacing:-1.472000pt;}
.ls18{letter-spacing:-1.469333pt;}
.ls56{letter-spacing:-1.466667pt;}
.ls22{letter-spacing:-1.418667pt;}
.ls6f{letter-spacing:-1.408000pt;}
.ls20{letter-spacing:-1.368000pt;}
.ls1a{letter-spacing:-1.317333pt;}
.ls41{letter-spacing:-1.290667pt;}
.ls79{letter-spacing:-1.232000pt;}
.ls17{letter-spacing:-1.216000pt;}
.ls66{letter-spacing:-1.173333pt;}
.ls10{letter-spacing:-1.165333pt;}
.ls28{letter-spacing:-1.152000pt;}
.ls67{letter-spacing:-1.114667pt;}
.ls2d{letter-spacing:-1.104000pt;}
.ls6d{letter-spacing:-1.056000pt;}
.ls16{letter-spacing:-1.013333pt;}
.ls58{letter-spacing:-0.997333pt;}
.ls11{letter-spacing:-0.962667pt;}
.ls4e{letter-spacing:-0.938667pt;}
.ls57{letter-spacing:-0.880000pt;}
.ls2f{letter-spacing:-0.864000pt;}
.lse{letter-spacing:-0.861333pt;}
.ls52{letter-spacing:-0.821333pt;}
.ls21{letter-spacing:-0.810667pt;}
.ls68{letter-spacing:-0.780267pt;}
.ls26{letter-spacing:-0.768000pt;}
.ls6a{letter-spacing:-0.762667pt;}
.ls1b{letter-spacing:-0.760000pt;}
.ls77{letter-spacing:-0.746667pt;}
.ls59{letter-spacing:-0.704000pt;}
.ls80{letter-spacing:-0.698133pt;}
.ls14{letter-spacing:-0.658667pt;}
.ls4f{letter-spacing:-0.645333pt;}
.ls31{letter-spacing:-0.640000pt;}
.ls6b{letter-spacing:-0.616000pt;}
.lsb{letter-spacing:-0.608000pt;}
.ls5e{letter-spacing:-0.586667pt;}
.ls2a{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.557333pt;}
.ls2c{letter-spacing:-0.528000pt;}
.ls1f{letter-spacing:-0.506667pt;}
.ls93{letter-spacing:-0.480000pt;}
.ls45{letter-spacing:-0.469333pt;}
.ls50{letter-spacing:-0.451733pt;}
.ls6c{letter-spacing:-0.432000pt;}
.ls4d{letter-spacing:-0.410667pt;}
.ls69{letter-spacing:-0.384000pt;}
.ls95{letter-spacing:-0.373333pt;}
.ls46{letter-spacing:-0.352000pt;}
.ls5f{letter-spacing:-0.336000pt;}
.lsf{letter-spacing:-0.304000pt;}
.ls43{letter-spacing:-0.293333pt;}
.ls75{letter-spacing:-0.288000pt;}
.ls92{letter-spacing:-0.266667pt;}
.ls44{letter-spacing:-0.234667pt;}
.lsd{letter-spacing:-0.202667pt;}
.ls91{letter-spacing:-0.200000pt;}
.ls42{letter-spacing:-0.176000pt;}
.ls9b{letter-spacing:-0.160000pt;}
.ls9a{letter-spacing:-0.120000pt;}
.ls51{letter-spacing:-0.117333pt;}
.ls90{letter-spacing:-0.106667pt;}
.ls7a{letter-spacing:-0.096000pt;}
.ls98{letter-spacing:-0.080000pt;}
.ls4c{letter-spacing:-0.058667pt;}
.ls99{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:-0.050667pt;}
.ls72{letter-spacing:-0.048000pt;}
.ls47{letter-spacing:-0.042667pt;}
.ls97{letter-spacing:-0.040000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls71{letter-spacing:0.041067pt;}
.ls6e{letter-spacing:0.048000pt;}
.ls78{letter-spacing:0.053333pt;}
.ls4a{letter-spacing:0.058667pt;}
.ls63{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.101333pt;}
.ls48{letter-spacing:0.117333pt;}
.ls65{letter-spacing:0.164267pt;}
.ls3f{letter-spacing:0.176000pt;}
.ls5b{letter-spacing:0.213333pt;}
.ls37{letter-spacing:0.234667pt;}
.ls73{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.253333pt;}
.ls88{letter-spacing:0.266667pt;}
.ls96{letter-spacing:0.280000pt;}
.ls60{letter-spacing:0.288000pt;}
.ls38{letter-spacing:0.293333pt;}
.ls8c{letter-spacing:0.320000pt;}
.ls61{letter-spacing:0.336000pt;}
.ls49{letter-spacing:0.352000pt;}
.ls0{letter-spacing:0.354667pt;}
.ls84{letter-spacing:0.360000pt;}
.ls5d{letter-spacing:0.373333pt;}
.ls62{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.410667pt;}
.ls7e{letter-spacing:0.432000pt;}
.ls4b{letter-spacing:0.469333pt;}
.ls74{letter-spacing:0.480000pt;}
.ls64{letter-spacing:0.492800pt;}
.ls8a{letter-spacing:0.520000pt;}
.ls5a{letter-spacing:0.528000pt;}
.ls40{letter-spacing:0.533333pt;}
.ls94{letter-spacing:0.560000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls53{letter-spacing:0.586667pt;}
.ls7{letter-spacing:0.608000pt;}
.ls8f{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.645333pt;}
.ls36{letter-spacing:0.693333pt;}
.ls33{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.709333pt;}
.ls32{letter-spacing:0.762667pt;}
.ls8b{letter-spacing:0.800000pt;}
.ls55{letter-spacing:0.821333pt;}
.ls35{letter-spacing:0.880000pt;}
.ls8d{letter-spacing:0.906667pt;}
.ls4{letter-spacing:0.912000pt;}
.ls8e{letter-spacing:0.920000pt;}
.ls5c{letter-spacing:0.938667pt;}
.ls5{letter-spacing:0.962667pt;}
.ls70{letter-spacing:0.997333pt;}
.ls87{letter-spacing:1.013333pt;}
.ls82{letter-spacing:1.040000pt;}
.ls3a{letter-spacing:1.056000pt;}
.ls83{letter-spacing:1.066667pt;}
.ls85{letter-spacing:1.080000pt;}
.ls3d{letter-spacing:1.114667pt;}
.ls7f{letter-spacing:1.290667pt;}
.ls81{letter-spacing:1.333333pt;}
.ls7c{letter-spacing:1.349333pt;}
.ls39{letter-spacing:1.408000pt;}
.ls3c{letter-spacing:1.466667pt;}
.ls3e{letter-spacing:1.584000pt;}
.ls6{letter-spacing:11.400000pt;}
.ls3{letter-spacing:11.607733pt;}
.ls8{letter-spacing:11.754667pt;}
.ls7b{letter-spacing:14.373333pt;}
.ls86{letter-spacing:15.733333pt;}
.ls54{letter-spacing:16.426667pt;}
.ls89{letter-spacing:26.666667pt;}
.ws18{word-spacing:-18.261333pt;}
.ws84{word-spacing:-16.133333pt;}
.ws3c{word-spacing:-16.074667pt;}
.ws1b{word-spacing:-16.000000pt;}
.ws92{word-spacing:-15.781333pt;}
.ws5e{word-spacing:-15.722667pt;}
.wsa9{word-spacing:-15.488000pt;}
.ws3e{word-spacing:-15.429333pt;}
.ws38{word-spacing:-15.370667pt;}
.ws6b{word-spacing:-15.312000pt;}
.ws78{word-spacing:-15.253333pt;}
.ws1a{word-spacing:-15.232000pt;}
.ws73{word-spacing:-15.194667pt;}
.ws94{word-spacing:-15.136000pt;}
.ws39{word-spacing:-15.077333pt;}
.ws79{word-spacing:-14.960000pt;}
.ws3b{word-spacing:-14.901333pt;}
.ws58{word-spacing:-14.842667pt;}
.ws5a{word-spacing:-14.784000pt;}
.ws59{word-spacing:-14.725333pt;}
.ws37{word-spacing:-14.666667pt;}
.ws57{word-spacing:-14.608000pt;}
.ws96{word-spacing:-14.549333pt;}
.ws19{word-spacing:-14.528000pt;}
.ws80{word-spacing:-14.490667pt;}
.ws5c{word-spacing:-14.432000pt;}
.wsb7{word-spacing:-14.400000pt;}
.ws75{word-spacing:-14.373333pt;}
.ws76{word-spacing:-14.314667pt;}
.ws74{word-spacing:-14.256000pt;}
.wsc7{word-spacing:-14.240000pt;}
.ws7f{word-spacing:-14.197333pt;}
.ws77{word-spacing:-14.138667pt;}
.ws93{word-spacing:-14.080000pt;}
.ws5f{word-spacing:-14.021333pt;}
.wsd0{word-spacing:-13.973333pt;}
.wsb8{word-spacing:-13.920000pt;}
.wsaa{word-spacing:-13.904000pt;}
.ws60{word-spacing:-13.845333pt;}
.wsba{word-spacing:-13.813333pt;}
.ws6c{word-spacing:-13.786667pt;}
.ws5b{word-spacing:-13.728000pt;}
.wsaf{word-spacing:-13.669333pt;}
.wsc2{word-spacing:-13.653333pt;}
.ws25{word-spacing:-13.632000pt;}
.wsc0{word-spacing:-13.600000pt;}
.ws82{word-spacing:-13.493333pt;}
.wsa8{word-spacing:-13.386667pt;}
.ws90{word-spacing:-13.376000pt;}
.wsa5{word-spacing:-13.333333pt;}
.wsab{word-spacing:-13.258667pt;}
.wsd3{word-spacing:-13.173333pt;}
.wsa4{word-spacing:-13.082667pt;}
.wsbc{word-spacing:-13.066667pt;}
.wsc3{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.920000pt;}
.ws13{word-spacing:-12.717333pt;}
.wsbe{word-spacing:-12.693333pt;}
.ws9{word-spacing:-12.666667pt;}
.wscb{word-spacing:-12.586667pt;}
.ws87{word-spacing:-12.384000pt;}
.ws7{word-spacing:-12.362667pt;}
.ws86{word-spacing:-12.336000pt;}
.wsc9{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.312000pt;}
.ws11{word-spacing:-12.109333pt;}
.ws2{word-spacing:-12.058667pt;}
.ws97{word-spacing:-12.048000pt;}
.ws6{word-spacing:-12.008000pt;}
.ws23{word-spacing:-12.000000pt;}
.ws9c{word-spacing:-11.952000pt;}
.ws15{word-spacing:-11.856000pt;}
.ws1{word-spacing:-11.805333pt;}
.wsa0{word-spacing:-11.712000pt;}
.ws4{word-spacing:-11.704000pt;}
.wsa{word-spacing:-11.653333pt;}
.ws3{word-spacing:-11.501333pt;}
.ws21{word-spacing:-11.472000pt;}
.wsb{word-spacing:-11.450667pt;}
.ws1f{word-spacing:-11.424000pt;}
.wse{word-spacing:-11.349333pt;}
.ws14{word-spacing:-11.298667pt;}
.ws16{word-spacing:-11.248000pt;}
.ws24{word-spacing:-11.232000pt;}
.wsc{word-spacing:-11.197333pt;}
.ws26{word-spacing:-11.136000pt;}
.ws12{word-spacing:-11.096000pt;}
.wsb6{word-spacing:-11.080000pt;}
.wsb5{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.944000pt;}
.wsc6{word-spacing:-10.920000pt;}
.ws22{word-spacing:-10.896000pt;}
.ws1d{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.741333pt;}
.ws61{word-spacing:-10.666667pt;}
.wsf{word-spacing:-10.640000pt;}
.ws40{word-spacing:-10.624000pt;}
.wsc1{word-spacing:-10.560000pt;}
.ws81{word-spacing:-10.430933pt;}
.ws9b{word-spacing:-10.307733pt;}
.wscc{word-spacing:-10.280000pt;}
.ws1c{word-spacing:-10.272000pt;}
.ws3a{word-spacing:-10.266667pt;}
.wscd{word-spacing:-10.240000pt;}
.wsb3{word-spacing:-10.000000pt;}
.wsce{word-spacing:-9.960000pt;}
.wscf{word-spacing:-9.920000pt;}
.wsd1{word-spacing:-9.880000pt;}
.ws5d{word-spacing:-9.814933pt;}
.wsbb{word-spacing:-9.800000pt;}
.ws8f{word-spacing:-9.650667pt;}
.wsbf{word-spacing:-9.520000pt;}
.ws83{word-spacing:-9.486400pt;}
.ws17{word-spacing:-8.832000pt;}
.wsd{word-spacing:-8.613333pt;}
.ws27{word-spacing:-6.720000pt;}
.ws36{word-spacing:-6.314667pt;}
.ws1e{word-spacing:-5.808000pt;}
.ws20{word-spacing:-5.760000pt;}
.ws47{word-spacing:-0.762667pt;}
.ws46{word-spacing:-0.704000pt;}
.ws50{word-spacing:-0.645333pt;}
.ws2f{word-spacing:-0.608000pt;}
.ws43{word-spacing:-0.586667pt;}
.ws6a{word-spacing:-0.576000pt;}
.ws70{word-spacing:-0.528000pt;}
.wsad{word-spacing:-0.480000pt;}
.ws45{word-spacing:-0.469333pt;}
.ws2a{word-spacing:-0.456000pt;}
.wsda{word-spacing:-0.426667pt;}
.ws64{word-spacing:-0.410667pt;}
.ws2e{word-spacing:-0.354667pt;}
.ws52{word-spacing:-0.352000pt;}
.wsa2{word-spacing:-0.336000pt;}
.wsa7{word-spacing:-0.320000pt;}
.ws72{word-spacing:-0.293333pt;}
.ws29{word-spacing:-0.253333pt;}
.ws7e{word-spacing:-0.240000pt;}
.ws4f{word-spacing:-0.234667pt;}
.wse0{word-spacing:-0.213333pt;}
.ws8a{word-spacing:-0.192000pt;}
.ws7c{word-spacing:-0.176000pt;}
.wsdb{word-spacing:-0.160000pt;}
.ws2d{word-spacing:-0.152000pt;}
.ws91{word-spacing:-0.144000pt;}
.ws68{word-spacing:-0.117333pt;}
.ws34{word-spacing:-0.101333pt;}
.ws65{word-spacing:-0.058667pt;}
.wsb4{word-spacing:-0.053333pt;}
.ws89{word-spacing:-0.048000pt;}
.ws28{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.048000pt;}
.wsd4{word-spacing:0.053333pt;}
.ws4c{word-spacing:0.058667pt;}
.ws99{word-spacing:0.096000pt;}
.ws32{word-spacing:0.101333pt;}
.wsa6{word-spacing:0.106667pt;}
.ws69{word-spacing:0.117333pt;}
.wsb1{word-spacing:0.164267pt;}
.ws49{word-spacing:0.176000pt;}
.wsd7{word-spacing:0.200000pt;}
.ws2c{word-spacing:0.202667pt;}
.ws53{word-spacing:0.234667pt;}
.ws8c{word-spacing:0.240000pt;}
.wsd6{word-spacing:0.266667pt;}
.ws95{word-spacing:0.293333pt;}
.wse3{word-spacing:0.320000pt;}
.ws55{word-spacing:0.352000pt;}
.ws48{word-spacing:0.369600pt;}
.ws67{word-spacing:0.410667pt;}
.wse1{word-spacing:0.426667pt;}
.ws54{word-spacing:0.469333pt;}
.ws88{word-spacing:0.492800pt;}
.ws41{word-spacing:0.528000pt;}
.wsdf{word-spacing:0.533333pt;}
.ws4e{word-spacing:0.586667pt;}
.wsde{word-spacing:0.600000pt;}
.ws71{word-spacing:0.645333pt;}
.ws7d{word-spacing:0.657067pt;}
.wsa3{word-spacing:0.672000pt;}
.wse2{word-spacing:0.693333pt;}
.ws42{word-spacing:0.704000pt;}
.wsd8{word-spacing:0.746667pt;}
.ws4d{word-spacing:0.762667pt;}
.ws8e{word-spacing:0.768000pt;}
.ws6e{word-spacing:0.780267pt;}
.wsdd{word-spacing:0.800000pt;}
.wsa1{word-spacing:0.816000pt;}
.ws6f{word-spacing:0.821333pt;}
.wsd9{word-spacing:0.853333pt;}
.ws8d{word-spacing:0.864000pt;}
.ws6d{word-spacing:0.880000pt;}
.ws30{word-spacing:0.912000pt;}
.ws7b{word-spacing:0.938667pt;}
.wsc5{word-spacing:0.960000pt;}
.ws56{word-spacing:0.985600pt;}
.ws66{word-spacing:0.997333pt;}
.ws9e{word-spacing:1.008000pt;}
.ws2b{word-spacing:1.013333pt;}
.ws3d{word-spacing:1.056000pt;}
.wsdc{word-spacing:1.066667pt;}
.ws98{word-spacing:1.104000pt;}
.ws33{word-spacing:1.114667pt;}
.ws4a{word-spacing:1.173333pt;}
.ws4b{word-spacing:1.232000pt;}
.ws31{word-spacing:1.266667pt;}
.wsac{word-spacing:1.280000pt;}
.ws63{word-spacing:1.290667pt;}
.ws9f{word-spacing:1.296000pt;}
.ws51{word-spacing:1.349333pt;}
.ws44{word-spacing:1.408000pt;}
.ws7a{word-spacing:1.466667pt;}
.wsd2{word-spacing:2.786667pt;}
.wsbd{word-spacing:2.920000pt;}
.wsc4{word-spacing:3.213333pt;}
.wsc8{word-spacing:3.240000pt;}
.wsca{word-spacing:3.333333pt;}
.ws9d{word-spacing:3.978667pt;}
.wsb2{word-spacing:4.106667pt;}
.ws9a{word-spacing:4.133333pt;}
.wsb0{word-spacing:4.328000pt;}
.wsd5{word-spacing:4.586667pt;}
.ws85{word-spacing:8.016000pt;}
.wsae{word-spacing:12.144000pt;}
.wsb9{word-spacing:13.333333pt;}
.ws3f{word-spacing:31.914667pt;}
.ws62{word-spacing:32.016000pt;}
.ws35{word-spacing:32.042667pt;}
._d{margin-left:-10.176085pt;}
._a{margin-left:-8.858667pt;}
._3{margin-left:-6.453333pt;}
._8{margin-left:-5.162667pt;}
._4{margin-left:-3.989333pt;}
._1{margin-left:-2.405333pt;}
._0{margin-left:-0.961750pt;}
._2{width:1.290667pt;}
._7{width:2.874667pt;}
._c{width:4.400000pt;}
._e{width:11.533333pt;}
._b{width:20.016000pt;}
._6{width:44.016000pt;}
._9{width:117.520000pt;}
._5{width:521.360000pt;}
.fs8{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:1.241333pt;}
.y2a{bottom:1.908000pt;}
.y24{bottom:2.574667pt;}
.y26{bottom:3.241333pt;}
.y12c{bottom:44.776000pt;}
.y197{bottom:44.794667pt;}
.yc4{bottom:44.816000pt;}
.y5a{bottom:44.882667pt;}
.y119{bottom:45.080000pt;}
.yea{bottom:45.249333pt;}
.y153{bottom:45.277333pt;}
.ya2{bottom:45.293333pt;}
.y82{bottom:45.408000pt;}
.y1ec{bottom:46.120000pt;}
.y156{bottom:47.106667pt;}
.y2f{bottom:52.000000pt;}
.y12b{bottom:57.448000pt;}
.y196{bottom:57.466667pt;}
.yc3{bottom:57.488000pt;}
.y59{bottom:57.554667pt;}
.ye9{bottom:57.921333pt;}
.y152{bottom:57.949333pt;}
.y81{bottom:58.080000pt;}
.y1eb{bottom:60.120000pt;}
.y118{bottom:60.406667pt;}
.y155{bottom:61.106667pt;}
.y2e{bottom:69.333333pt;}
.y12a{bottom:70.120000pt;}
.yc2{bottom:70.160000pt;}
.y58{bottom:70.226667pt;}
.ye8{bottom:70.593333pt;}
.y151{bottom:70.621333pt;}
.y29{bottom:70.666667pt;}
.y1ea{bottom:74.120000pt;}
.y154{bottom:75.106667pt;}
.y117{bottom:75.733333pt;}
.ye7{bottom:83.265333pt;}
.y150{bottom:83.293333pt;}
.y2d{bottom:84.000000pt;}
.y27{bottom:85.333333pt;}
.y1e9{bottom:88.120000pt;}
.y195{bottom:90.946667pt;}
.ya1{bottom:90.993333pt;}
.y116{bottom:91.060000pt;}
.ye6{bottom:95.937333pt;}
.y14f{bottom:95.965333pt;}
.y25{bottom:98.666667pt;}
.y2c{bottom:101.333333pt;}
.y1e8{bottom:102.120000pt;}
.y13d{bottom:106.126667pt;}
.yc1{bottom:106.173333pt;}
.y80{bottom:106.206667pt;}
.y129{bottom:106.226667pt;}
.y1bd{bottom:106.264000pt;}
.y100{bottom:106.266667pt;}
.y194{bottom:106.273333pt;}
.ya0{bottom:106.320000pt;}
.y115{bottom:106.386667pt;}
.y17d{bottom:107.560000pt;}
.ye5{bottom:108.609333pt;}
.y14e{bottom:108.637333pt;}
.y57{bottom:113.793333pt;}
.y23{bottom:114.666667pt;}
.y2b{bottom:116.000000pt;}
.y1e7{bottom:116.120000pt;}
.ye4{bottom:121.281333pt;}
.y14d{bottom:121.309333pt;}
.yc0{bottom:121.500000pt;}
.y7f{bottom:121.533333pt;}
.y128{bottom:121.553333pt;}
.y1bc{bottom:121.590667pt;}
.yff{bottom:121.593333pt;}
.y193{bottom:121.600000pt;}
.y9f{bottom:121.646667pt;}
.y114{bottom:121.713333pt;}
.y17c{bottom:122.886667pt;}
.y56{bottom:129.306667pt;}
.y1e6{bottom:130.120000pt;}
.y14c{bottom:133.981333pt;}
.ybf{bottom:136.826667pt;}
.y7e{bottom:136.860000pt;}
.y127{bottom:136.880000pt;}
.y1bb{bottom:136.917333pt;}
.yfe{bottom:136.920000pt;}
.y192{bottom:136.926667pt;}
.y9e{bottom:136.973333pt;}
.y113{bottom:137.040000pt;}
.ye3{bottom:137.733333pt;}
.y17b{bottom:138.213333pt;}
.y1e5{bottom:144.120000pt;}
.y55{bottom:144.633333pt;}
.y14b{bottom:146.653333pt;}
.y21{bottom:148.680000pt;}
.ye2{bottom:150.405333pt;}
.ybe{bottom:152.153333pt;}
.y7d{bottom:152.186667pt;}
.y126{bottom:152.206667pt;}
.y1ba{bottom:152.244000pt;}
.yfd{bottom:152.246667pt;}
.y191{bottom:152.253333pt;}
.y9d{bottom:152.300000pt;}
.y112{bottom:152.366667pt;}
.y17a{bottom:153.540000pt;}
.y1e4{bottom:158.120000pt;}
.y54{bottom:159.960000pt;}
.ye1{bottom:163.077333pt;}
.ybd{bottom:167.480000pt;}
.y7c{bottom:167.513333pt;}
.y125{bottom:167.533333pt;}
.y1b9{bottom:167.570667pt;}
.yfc{bottom:167.573333pt;}
.y190{bottom:167.580000pt;}
.y9c{bottom:167.626667pt;}
.y111{bottom:167.693333pt;}
.y179{bottom:168.866667pt;}
.y1e3{bottom:172.120000pt;}
.y53{bottom:175.286667pt;}
.ye0{bottom:175.749333pt;}
.ybc{bottom:182.806667pt;}
.y7b{bottom:182.840000pt;}
.y124{bottom:182.860000pt;}
.y1b8{bottom:182.897333pt;}
.yfb{bottom:182.900000pt;}
.y18f{bottom:182.906667pt;}
.y9b{bottom:182.953333pt;}
.y110{bottom:183.020000pt;}
.y13{bottom:183.373333pt;}
.y178{bottom:184.193333pt;}
.y1e2{bottom:186.120000pt;}
.ydf{bottom:188.421333pt;}
.y52{bottom:190.613333pt;}
.y12{bottom:196.682667pt;}
.ybb{bottom:198.133333pt;}
.y7a{bottom:198.166667pt;}
.y123{bottom:198.186667pt;}
.y14a{bottom:198.206667pt;}
.y1b7{bottom:198.224000pt;}
.yfa{bottom:198.226667pt;}
.y18e{bottom:198.233333pt;}
.y9a{bottom:198.280000pt;}
.y10f{bottom:198.346667pt;}
.y177{bottom:199.520000pt;}
.y1e1{bottom:200.120000pt;}
.yde{bottom:201.093333pt;}
.y51{bottom:205.940000pt;}
.yba{bottom:213.460000pt;}
.y79{bottom:213.493333pt;}
.y122{bottom:213.513333pt;}
.y149{bottom:213.533333pt;}
.y1b6{bottom:213.550667pt;}
.yf9{bottom:213.553333pt;}
.y18d{bottom:213.560000pt;}
.y99{bottom:213.606667pt;}
.y10e{bottom:213.673333pt;}
.y1e0{bottom:214.120000pt;}
.y176{bottom:214.846667pt;}
.y11{bottom:215.353333pt;}
.y50{bottom:221.266667pt;}
.y1df{bottom:228.120000pt;}
.y10{bottom:228.691333pt;}
.y78{bottom:228.820000pt;}
.y121{bottom:228.840000pt;}
.y148{bottom:228.860000pt;}
.y1b5{bottom:228.877333pt;}
.yf8{bottom:228.880000pt;}
.y18c{bottom:228.886667pt;}
.y98{bottom:228.933333pt;}
.yb9{bottom:228.940000pt;}
.y10d{bottom:229.000000pt;}
.y175{bottom:230.173333pt;}
.y4f{bottom:236.593333pt;}
.yf{bottom:242.029333pt;}
.y1de{bottom:242.120000pt;}
.y77{bottom:244.146667pt;}
.y120{bottom:244.166667pt;}
.y147{bottom:244.186667pt;}
.y1b4{bottom:244.204000pt;}
.yf7{bottom:244.206667pt;}
.y18b{bottom:244.213333pt;}
.ydd{bottom:244.240000pt;}
.y97{bottom:244.260000pt;}
.yb8{bottom:244.266667pt;}
.y10c{bottom:244.326667pt;}
.y174{bottom:245.500000pt;}
.y4e{bottom:251.920000pt;}
.ye{bottom:255.367333pt;}
.y1dd{bottom:256.120000pt;}
.y76{bottom:259.473333pt;}
.y11f{bottom:259.493333pt;}
.y146{bottom:259.513333pt;}
.y1b3{bottom:259.530667pt;}
.yf6{bottom:259.533333pt;}
.y18a{bottom:259.540000pt;}
.ydc{bottom:259.566667pt;}
.y96{bottom:259.586667pt;}
.yb7{bottom:259.593333pt;}
.y10b{bottom:259.653333pt;}
.y173{bottom:260.826667pt;}
.y4d{bottom:267.246667pt;}
.yd{bottom:268.705333pt;}
.y1dc{bottom:270.120000pt;}
.y75{bottom:274.800000pt;}
.y11e{bottom:274.820000pt;}
.y145{bottom:274.840000pt;}
.y1b2{bottom:274.857333pt;}
.yf5{bottom:274.860000pt;}
.y189{bottom:274.866667pt;}
.ydb{bottom:274.893333pt;}
.y95{bottom:274.913333pt;}
.yb6{bottom:274.920000pt;}
.y10a{bottom:274.980000pt;}
.y172{bottom:276.153333pt;}
.yc{bottom:282.043333pt;}
.y4c{bottom:282.573333pt;}
.y1db{bottom:284.120000pt;}
.y74{bottom:290.126667pt;}
.y11d{bottom:290.146667pt;}
.y144{bottom:290.166667pt;}
.y1b1{bottom:290.184000pt;}
.yf4{bottom:290.186667pt;}
.y188{bottom:290.193333pt;}
.yda{bottom:290.220000pt;}
.y94{bottom:290.240000pt;}
.yb5{bottom:290.246667pt;}
.y109{bottom:290.306667pt;}
.y171{bottom:291.480000pt;}
.y4b{bottom:297.900000pt;}
.y1da{bottom:298.120000pt;}
.y11c{bottom:305.473333pt;}
.y143{bottom:305.493333pt;}
.y1b0{bottom:305.510667pt;}
.yf3{bottom:305.513333pt;}
.y187{bottom:305.520000pt;}
.yd9{bottom:305.546667pt;}
.y93{bottom:305.566667pt;}
.yb4{bottom:305.573333pt;}
.y73{bottom:305.604000pt;}
.y108{bottom:305.633333pt;}
.y170{bottom:306.806667pt;}
.yb{bottom:308.706667pt;}
.y1d9{bottom:312.120000pt;}
.y4a{bottom:313.226667pt;}
.y11b{bottom:320.800000pt;}
.y142{bottom:320.820000pt;}
.y1af{bottom:320.837333pt;}
.yf2{bottom:320.840000pt;}
.y186{bottom:320.846667pt;}
.yd8{bottom:320.873333pt;}
.y92{bottom:320.893333pt;}
.yb3{bottom:320.900000pt;}
.y72{bottom:320.930667pt;}
.y107{bottom:320.960000pt;}
.y16f{bottom:322.133333pt;}
.y1d8{bottom:326.120000pt;}
.y49{bottom:328.553333pt;}
.y11a{bottom:336.126667pt;}
.y141{bottom:336.146667pt;}
.y1ae{bottom:336.164000pt;}
.yf1{bottom:336.166667pt;}
.y185{bottom:336.173333pt;}
.yd7{bottom:336.200000pt;}
.y91{bottom:336.220000pt;}
.yb2{bottom:336.226667pt;}
.y71{bottom:336.257333pt;}
.y106{bottom:336.286667pt;}
.y16e{bottom:337.460000pt;}
.y1d7{bottom:340.120000pt;}
.ya{bottom:340.673333pt;}
.y48{bottom:343.880000pt;}
.y140{bottom:351.473333pt;}
.yf0{bottom:351.493333pt;}
.y184{bottom:351.500000pt;}
.yd6{bottom:351.526667pt;}
.y90{bottom:351.546667pt;}
.yb1{bottom:351.553333pt;}
.y70{bottom:351.584000pt;}
.y105{bottom:351.613333pt;}
.y16d{bottom:352.926667pt;}
.y9{bottom:354.011333pt;}
.y1d6{bottom:354.120000pt;}
.y1ad{bottom:359.161333pt;}
.y47{bottom:359.206667pt;}
.y13f{bottom:366.800000pt;}
.yef{bottom:366.820000pt;}
.y183{bottom:366.826667pt;}
.yd5{bottom:366.853333pt;}
.y8f{bottom:366.873333pt;}
.yb0{bottom:366.880000pt;}
.y13c{bottom:366.910667pt;}
.y104{bottom:366.940000pt;}
.y1d5{bottom:368.120000pt;}
.y16c{bottom:368.253333pt;}
.y8{bottom:372.682000pt;}
.y46{bottom:374.533333pt;}
.y6f{bottom:374.581333pt;}
.y1d4{bottom:382.120000pt;}
.y13e{bottom:382.126667pt;}
.yee{bottom:382.146667pt;}
.y182{bottom:382.153333pt;}
.yd4{bottom:382.180000pt;}
.y8e{bottom:382.200000pt;}
.yaf{bottom:382.206667pt;}
.y13b{bottom:382.237333pt;}
.y103{bottom:382.266667pt;}
.y16b{bottom:383.580000pt;}
.y7{bottom:386.020000pt;}
.y45{bottom:389.860000pt;}
.y6e{bottom:389.908000pt;}
.y1d3{bottom:396.120000pt;}
.yed{bottom:397.473333pt;}
.y181{bottom:397.480000pt;}
.y1ac{bottom:397.500000pt;}
.yd3{bottom:397.506667pt;}
.y8d{bottom:397.526667pt;}
.yae{bottom:397.533333pt;}
.y13a{bottom:397.564000pt;}
.y102{bottom:397.593333pt;}
.y16a{bottom:398.906667pt;}
.y6{bottom:399.358000pt;}
.y44{bottom:405.186667pt;}
.y1d2{bottom:410.120000pt;}
.y5{bottom:412.696000pt;}
.yec{bottom:412.800000pt;}
.y180{bottom:412.806667pt;}
.y1ab{bottom:412.826667pt;}
.yd2{bottom:412.833333pt;}
.y8c{bottom:412.853333pt;}
.yad{bottom:412.860000pt;}
.y139{bottom:412.890667pt;}
.y101{bottom:412.920000pt;}
.y169{bottom:414.233333pt;}
.y43{bottom:420.513333pt;}
.y1d1{bottom:424.120000pt;}
.y4{bottom:426.034000pt;}
.yeb{bottom:428.126667pt;}
.y17f{bottom:428.133333pt;}
.y1aa{bottom:428.153333pt;}
.yd1{bottom:428.160000pt;}
.y8b{bottom:428.180000pt;}
.yac{bottom:428.186667pt;}
.y138{bottom:428.217333pt;}
.y6d{bottom:428.246667pt;}
.y168{bottom:429.560000pt;}
.y42{bottom:435.840000pt;}
.y1d0{bottom:438.120000pt;}
.y3{bottom:439.372000pt;}
.y17e{bottom:443.460000pt;}
.y1a9{bottom:443.480000pt;}
.yd0{bottom:443.486667pt;}
.y8a{bottom:443.506667pt;}
.yab{bottom:443.513333pt;}
.y137{bottom:443.544000pt;}
.y6c{bottom:443.573333pt;}
.y167{bottom:444.886667pt;}
.y41{bottom:451.166667pt;}
.y1cf{bottom:452.120000pt;}
.y2{bottom:452.710000pt;}
.y1a8{bottom:458.806667pt;}
.ycf{bottom:458.813333pt;}
.y89{bottom:458.833333pt;}
.yaa{bottom:458.840000pt;}
.y136{bottom:458.870667pt;}
.y6b{bottom:458.900000pt;}
.y166{bottom:460.213333pt;}
.y1ce{bottom:466.120000pt;}
.y40{bottom:466.493333pt;}
.y1a7{bottom:474.133333pt;}
.yce{bottom:474.140000pt;}
.y88{bottom:474.160000pt;}
.ya9{bottom:474.166667pt;}
.y135{bottom:474.197333pt;}
.y6a{bottom:474.226667pt;}
.y165{bottom:475.540000pt;}
.y1{bottom:479.373333pt;}
.y1cd{bottom:480.120000pt;}
.y3f{bottom:481.820000pt;}
.y1a6{bottom:489.460000pt;}
.ycd{bottom:489.466667pt;}
.y87{bottom:489.486667pt;}
.ya8{bottom:489.493333pt;}
.y134{bottom:489.524000pt;}
.y69{bottom:489.553333pt;}
.y164{bottom:490.866667pt;}
.y1cc{bottom:494.120000pt;}
.y3e{bottom:497.146667pt;}
.ycc{bottom:504.793333pt;}
.y86{bottom:504.813333pt;}
.ya7{bottom:504.820000pt;}
.y133{bottom:504.850667pt;}
.y1a5{bottom:504.873333pt;}
.y68{bottom:504.880000pt;}
.y163{bottom:506.193333pt;}
.y1cb{bottom:508.120000pt;}
.y3d{bottom:512.473333pt;}
.y20{bottom:519.397333pt;}
.ycb{bottom:520.126667pt;}
.y85{bottom:520.140000pt;}
.ya6{bottom:520.146667pt;}
.y132{bottom:520.177333pt;}
.y1a4{bottom:520.200000pt;}
.y67{bottom:520.206667pt;}
.y162{bottom:521.520000pt;}
.y1ca{bottom:522.120000pt;}
.y3c{bottom:527.800000pt;}
.y1f{bottom:532.069333pt;}
.y84{bottom:535.466667pt;}
.ya5{bottom:535.473333pt;}
.yca{bottom:535.486667pt;}
.y131{bottom:535.504000pt;}
.y1a3{bottom:535.526667pt;}
.y66{bottom:535.533333pt;}
.y1c9{bottom:536.120000pt;}
.y161{bottom:536.846667pt;}
.y3b{bottom:543.126667pt;}
.y1e{bottom:544.741333pt;}
.y1c8{bottom:550.120000pt;}
.y83{bottom:550.793333pt;}
.ya4{bottom:550.800000pt;}
.yc9{bottom:550.813333pt;}
.y130{bottom:550.830667pt;}
.y1a2{bottom:550.853333pt;}
.y65{bottom:550.860000pt;}
.y160{bottom:552.173333pt;}
.y1d{bottom:557.413333pt;}
.y3a{bottom:558.460000pt;}
.y1c7{bottom:564.120000pt;}
.ya3{bottom:566.126667pt;}
.yc8{bottom:566.140000pt;}
.y12f{bottom:566.157333pt;}
.y1a1{bottom:566.180000pt;}
.y64{bottom:566.186667pt;}
.y15f{bottom:567.500000pt;}
.y1c{bottom:573.413333pt;}
.y39{bottom:573.842667pt;}
.y1c6{bottom:578.120000pt;}
.yc7{bottom:581.466667pt;}
.y1a0{bottom:581.506667pt;}
.y63{bottom:581.513333pt;}
.y15e{bottom:582.826667pt;}
.y12e{bottom:589.154667pt;}
.y38{bottom:589.169333pt;}
.y1c5{bottom:592.120000pt;}
.yc6{bottom:596.793333pt;}
.y19f{bottom:596.833333pt;}
.y62{bottom:596.840000pt;}
.y15d{bottom:598.153333pt;}
.y1b{bottom:600.744000pt;}
.y12d{bottom:604.481333pt;}
.y37{bottom:604.496000pt;}
.y1c4{bottom:606.120000pt;}
.yc5{bottom:612.120000pt;}
.y19e{bottom:612.160000pt;}
.y61{bottom:612.166667pt;}
.y1a{bottom:613.416000pt;}
.y15c{bottom:613.480000pt;}
.y36{bottom:619.822667pt;}
.y1c3{bottom:620.120000pt;}
.y19{bottom:626.088000pt;}
.y19d{bottom:627.486667pt;}
.y60{bottom:627.493333pt;}
.y15b{bottom:628.806667pt;}
.y1c2{bottom:634.120000pt;}
.y35{bottom:635.149333pt;}
.y18{bottom:638.760000pt;}
.y19c{bottom:642.813333pt;}
.y5f{bottom:642.820000pt;}
.y15a{bottom:644.133333pt;}
.y1c1{bottom:648.120000pt;}
.y34{bottom:650.476000pt;}
.y17{bottom:654.760000pt;}
.y19b{bottom:658.140000pt;}
.y5e{bottom:658.146667pt;}
.y159{bottom:659.460000pt;}
.y1c0{bottom:662.120000pt;}
.y33{bottom:665.802667pt;}
.y19a{bottom:673.466667pt;}
.y5d{bottom:673.473333pt;}
.y158{bottom:674.786667pt;}
.y1bf{bottom:676.120000pt;}
.y32{bottom:681.129333pt;}
.y199{bottom:688.793333pt;}
.y5c{bottom:688.800000pt;}
.y1be{bottom:690.120000pt;}
.y16{bottom:694.760000pt;}
.y31{bottom:696.456000pt;}
.y198{bottom:704.120000pt;}
.y5b{bottom:704.126667pt;}
.y157{bottom:705.453333pt;}
.y15{bottom:716.093333pt;}
.y30{bottom:719.453333pt;}
.y14{bottom:761.426667pt;}
.y22{bottom:929.333333pt;}
.hb{height:10.666667pt;}
.hc{height:12.000000pt;}
.h8{height:13.333333pt;}
.ha{height:14.666667pt;}
.h3{height:36.949333pt;}
.h6{height:40.848000pt;}
.h7{height:41.854167pt;}
.h2{height:43.117333pt;}
.h1{height:43.877333pt;}
.h1f{height:45.386667pt;}
.h9{height:47.109375pt;}
.hf{height:49.925333pt;}
.he{height:50.805333pt;}
.h12{height:53.561067pt;}
.h1b{height:53.667733pt;}
.h16{height:53.694400pt;}
.h13{height:53.705067pt;}
.h1e{height:53.747733pt;}
.h1c{height:53.785067pt;}
.h1a{height:53.827733pt;}
.h20{height:53.854400pt;}
.h1d{height:53.907733pt;}
.h21{height:53.961067pt;}
.h14{height:54.041067pt;}
.h15{height:54.067733pt;}
.h10{height:54.083733pt;}
.h17{height:54.147733pt;}
.h19{height:54.174400pt;}
.h11{height:54.281067pt;}
.h18{height:54.307733pt;}
.h5{height:54.464000pt;}
.h4{height:72.618667pt;}
.hd{height:790.666667pt;}
.h0{height:793.333333pt;}
.w8{width:136.000000pt;}
.w7{width:145.333333pt;}
.w6{width:149.333333pt;}
.w4{width:177.333333pt;}
.w5{width:190.666667pt;}
.w3{width:193.351351pt;}
.w2{width:198.666667pt;}
.w1{width:201.333333pt;}
.w9{width:564.000000pt;}
.w0{width:566.666667pt;}
.x4{left:-57.333333pt;}
.x0{left:0.000000pt;}
.xf{left:1.333333pt;}
.x8{left:5.033600pt;}
.xa{left:52.338489pt;}
.x1{left:63.733333pt;}
.x5{left:65.333333pt;}
.x7{left:66.666667pt;}
.x13{left:69.480000pt;}
.x9{left:75.990991pt;}
.x12{left:78.561333pt;}
.x11{left:83.441333pt;}
.xb{left:86.666667pt;}
.xc{left:102.693333pt;}
.x14{left:103.733333pt;}
.x6{left:126.680133pt;}
.x3{left:258.693333pt;}
.xe{left:293.333333pt;}
.xd{left:294.666667pt;}
.x10{left:296.000000pt;}
.x2{left:378.906667pt;}
}




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