
    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_341d9b2f932f54ae105d012a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_6ffcf201581dcd94567e5613.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_3eafac18cdcfc65bdaec0568.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.750000px;}
.ls6e{letter-spacing:-1.584000px;}
.ls1e{letter-spacing:-1.452000px;}
.ls73{letter-spacing:-1.386000px;}
.ls8f{letter-spacing:-1.260000px;}
.ls4c{letter-spacing:-1.254000px;}
.ls27{letter-spacing:-1.242000px;}
.ls99{letter-spacing:-1.215000px;}
.ls9a{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-1.197000px;}
.ls26{letter-spacing:-1.188000px;}
.ls6b{letter-spacing:-1.134000px;}
.ls4b{letter-spacing:-1.122000px;}
.ls68{letter-spacing:-1.089000px;}
.ls1a{letter-spacing:-1.056000px;}
.ls84{letter-spacing:-1.026000px;}
.ls5f{letter-spacing:-1.012500px;}
.ls41{letter-spacing:-0.990000px;}
.ls5e{letter-spacing:-0.972000px;}
.ls93{letter-spacing:-0.960000px;}
.ls1d{letter-spacing:-0.924000px;}
.ls94{letter-spacing:-0.900000px;}
.ls44{letter-spacing:-0.858000px;}
.ls83{letter-spacing:-0.810000px;}
.ls21{letter-spacing:-0.792000px;}
.ls2a{letter-spacing:-0.756000px;}
.lsd{letter-spacing:-0.741000px;}
.ls4d{letter-spacing:-0.726000px;}
.ls74{letter-spacing:-0.688500px;}
.ls22{letter-spacing:-0.660000px;}
.ls59{letter-spacing:-0.648000px;}
.ls98{letter-spacing:-0.630000px;}
.ls97{letter-spacing:-0.600000px;}
.ls67{letter-spacing:-0.594000px;}
.ls96{letter-spacing:-0.585000px;}
.ls29{letter-spacing:-0.567000px;}
.ls28{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.528000px;}
.ls70{letter-spacing:-0.486000px;}
.ls9f{letter-spacing:-0.480000px;}
.ls20{letter-spacing:-0.462000px;}
.lsa1{letter-spacing:-0.450000px;}
.ls39{letter-spacing:-0.432000px;}
.lsa2{letter-spacing:-0.420000px;}
.lsa0{letter-spacing:-0.405000px;}
.ls1f{letter-spacing:-0.396000px;}
.ls65{letter-spacing:-0.378000px;}
.ls95{letter-spacing:-0.360000px;}
.ls7f{letter-spacing:-0.346500px;}
.lsa{letter-spacing:-0.342000px;}
.ls40{letter-spacing:-0.330000px;}
.ls3a{letter-spacing:-0.324000px;}
.ls82{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.285000px;}
.ls3b{letter-spacing:-0.270000px;}
.ls61{letter-spacing:-0.264000px;}
.ls72{letter-spacing:-0.247500px;}
.ls90{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.228000px;}
.ls8e{letter-spacing:-0.225000px;}
.ls60{letter-spacing:-0.216000px;}
.ls5b{letter-spacing:-0.202500px;}
.ls1b{letter-spacing:-0.198000px;}
.ls81{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.171000px;}
.ls5a{letter-spacing:-0.162000px;}
.ls45{letter-spacing:-0.148500px;}
.ls80{letter-spacing:-0.135000px;}
.ls23{letter-spacing:-0.132000px;}
.ls5d{letter-spacing:-0.108000px;}
.ls5c{letter-spacing:-0.081000px;}
.ls1c{letter-spacing:-0.066000px;}
.ls92{letter-spacing:-0.060000px;}
.ls9{letter-spacing:-0.057000px;}
.ls25{letter-spacing:-0.054000px;}
.ls24{letter-spacing:-0.048000px;}
.ls91{letter-spacing:-0.045000px;}
.ls2b{letter-spacing:-0.040500px;}
.ls6{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.006000px;}
.ls52{letter-spacing:0.024000px;}
.ls13{letter-spacing:0.030000px;}
.ls16{letter-spacing:0.036000px;}
.ls4a{letter-spacing:0.040500px;}
.ls9b{letter-spacing:0.045000px;}
.ls42{letter-spacing:0.049500px;}
.ls32{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.057000px;}
.ls9c{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.066000px;}
.ls54{letter-spacing:0.081000px;}
.ls6f{letter-spacing:0.099000px;}
.ls53{letter-spacing:0.108000px;}
.ls89{letter-spacing:0.120000px;}
.ls47{letter-spacing:0.132000px;}
.ls8a{letter-spacing:0.135000px;}
.ls4e{letter-spacing:0.150000px;}
.ls35{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.171000px;}
.ls34{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.198000px;}
.ls36{letter-spacing:0.210000px;}
.ls37{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.228000px;}
.ls7e{letter-spacing:0.240000px;}
.ls56{letter-spacing:0.243000px;}
.ls64{letter-spacing:0.247500px;}
.ls11{letter-spacing:0.264000px;}
.ls33{letter-spacing:0.270000px;}
.ls51{letter-spacing:0.283500px;}
.ls69{letter-spacing:0.297000px;}
.ls85{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.324000px;}
.ls46{letter-spacing:0.330000px;}
.ls88{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.364500px;}
.ls3f{letter-spacing:0.366000px;}
.ls17{letter-spacing:0.378000px;}
.ls31{letter-spacing:0.396000px;}
.ls4{letter-spacing:0.399000px;}
.ls63{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.462000px;}
.ls6d{letter-spacing:0.474000px;}
.ls14{letter-spacing:0.486000px;}
.ls3{letter-spacing:0.513000px;}
.lse{letter-spacing:0.528000px;}
.ls15{letter-spacing:0.540000px;}
.ls76{letter-spacing:0.585000px;}
.ls3c{letter-spacing:0.594000px;}
.ls75{letter-spacing:0.600000px;}
.ls48{letter-spacing:0.660000px;}
.ls8d{letter-spacing:0.675000px;}
.ls8c{letter-spacing:0.720000px;}
.ls30{letter-spacing:0.726000px;}
.ls9e{letter-spacing:0.765000px;}
.ls9d{letter-spacing:0.780000px;}
.lsf{letter-spacing:0.792000px;}
.ls1{letter-spacing:0.855000px;}
.ls3e{letter-spacing:0.858000px;}
.ls49{letter-spacing:0.924000px;}
.ls87{letter-spacing:0.945000px;}
.ls86{letter-spacing:0.960000px;}
.ls50{letter-spacing:0.972000px;}
.ls4f{letter-spacing:0.990000px;}
.ls7a{letter-spacing:1.020000px;}
.ls58{letter-spacing:1.056000px;}
.ls7b{letter-spacing:1.080000px;}
.ls62{letter-spacing:1.122000px;}
.ls7c{letter-spacing:1.200000px;}
.ls7d{letter-spacing:1.215000px;}
.ls2e{letter-spacing:1.230000px;}
.ls8b{letter-spacing:1.305000px;}
.ls12{letter-spacing:1.320000px;}
.ls79{letter-spacing:1.485000px;}
.ls78{letter-spacing:1.500000px;}
.ls2d{letter-spacing:1.584000px;}
.ls2f{letter-spacing:1.650000px;}
.ls43{letter-spacing:1.716000px;}
.ls6c{letter-spacing:1.782000px;}
.ls6a{letter-spacing:1.980000px;}
.ls71{letter-spacing:18.414000px;}
.ls66{letter-spacing:24.024000px;}
.ls77{letter-spacing:30.000000px;}
.ls55{letter-spacing:36.018000px;}
.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;}
}
.wsa1{word-spacing:-18.480000px;}
.wsa9{word-spacing:-18.282000px;}
.ws5f{word-spacing:-18.216000px;}
.ws46{word-spacing:-18.150000px;}
.ws6e{word-spacing:-17.424000px;}
.ws98{word-spacing:-17.160000px;}
.ws5c{word-spacing:-17.094000px;}
.ws60{word-spacing:-16.962000px;}
.ws6f{word-spacing:-16.896000px;}
.ws6c{word-spacing:-16.830000px;}
.ws75{word-spacing:-16.764000px;}
.ws79{word-spacing:-16.698000px;}
.ws18{word-spacing:-16.566000px;}
.ws15{word-spacing:-16.500000px;}
.wsaa{word-spacing:-16.434000px;}
.ws45{word-spacing:-16.368000px;}
.wse1{word-spacing:-16.320000px;}
.ws5d{word-spacing:-16.302000px;}
.wsa3{word-spacing:-16.236000px;}
.ws78{word-spacing:-16.170000px;}
.ws97{word-spacing:-16.104000px;}
.wsbf{word-spacing:-16.080000px;}
.ws7a{word-spacing:-16.038000px;}
.ws94{word-spacing:-15.972000px;}
.wsdb{word-spacing:-15.960000px;}
.ws9d{word-spacing:-15.774000px;}
.ws17{word-spacing:-15.708000px;}
.wsd4{word-spacing:-15.660000px;}
.wsa7{word-spacing:-15.642000px;}
.wsba{word-spacing:-15.600000px;}
.ws47{word-spacing:-15.576000px;}
.ws6d{word-spacing:-15.510000px;}
.ws99{word-spacing:-15.444000px;}
.wsd1{word-spacing:-15.300000px;}
.wsc4{word-spacing:-15.240000px;}
.wsc2{word-spacing:-15.180000px;}
.ws16{word-spacing:-15.048000px;}
.wsb4{word-spacing:-15.000000px;}
.wsd9{word-spacing:-14.940000px;}
.wsb7{word-spacing:-14.820000px;}
.wsbc{word-spacing:-14.700000px;}
.wsde{word-spacing:-14.640000px;}
.ws0{word-spacing:-14.535000px;}
.wsf5{word-spacing:-14.520000px;}
.ws2{word-spacing:-14.478000px;}
.wsf7{word-spacing:-14.460000px;}
.wse4{word-spacing:-14.400000px;}
.ws1{word-spacing:-14.250000px;}
.wsdc{word-spacing:-14.100000px;}
.wsb2{word-spacing:-14.040000px;}
.ws22{word-spacing:-13.878000px;}
.ws23{word-spacing:-13.824000px;}
.wsf4{word-spacing:-13.740000px;}
.ws4a{word-spacing:-13.716000px;}
.ws84{word-spacing:-13.662000px;}
.wsa4{word-spacing:-13.608000px;}
.ws1d{word-spacing:-13.500000px;}
.ws82{word-spacing:-13.446000px;}
.ws81{word-spacing:-13.392000px;}
.ws8c{word-spacing:-13.284000px;}
.ws77{word-spacing:-13.167000px;}
.ws9a{word-spacing:-13.122000px;}
.wsab{word-spacing:-13.014000px;}
.ws7e{word-spacing:-12.852000px;}
.ws7c{word-spacing:-12.744000px;}
.wsbd{word-spacing:-12.735000px;}
.wsc5{word-spacing:-12.690000px;}
.wsa0{word-spacing:-12.672000px;}
.ws95{word-spacing:-12.622500px;}
.ws76{word-spacing:-12.573000px;}
.wsdf{word-spacing:-12.555000px;}
.ws88{word-spacing:-12.528000px;}
.wsa8{word-spacing:-12.474000px;}
.wsc0{word-spacing:-12.465000px;}
.wsa2{word-spacing:-12.424500px;}
.ws19{word-spacing:-12.375000px;}
.wsa5{word-spacing:-12.366000px;}
.wsbe{word-spacing:-12.330000px;}
.ws61{word-spacing:-12.226500px;}
.wsd2{word-spacing:-12.195000px;}
.wsaf{word-spacing:-12.127500px;}
.wsb3{word-spacing:-12.028500px;}
.wsf9{word-spacing:-12.015000px;}
.ws1b{word-spacing:-11.952000px;}
.wse5{word-spacing:-11.925000px;}
.wsb9{word-spacing:-11.835000px;}
.wsc3{word-spacing:-11.790000px;}
.wsd5{word-spacing:-11.610000px;}
.wsd6{word-spacing:-11.520000px;}
.wsc1{word-spacing:-11.430000px;}
.wsd7{word-spacing:-11.385000px;}
.wsf3{word-spacing:-11.295000px;}
.wsb5{word-spacing:-11.250000px;}
.wsd8{word-spacing:-11.205000px;}
.wsb8{word-spacing:-11.115000px;}
.wsd0{word-spacing:-11.025000px;}
.wsdd{word-spacing:-10.890000px;}
.wsf8{word-spacing:-10.800000px;}
.wse2{word-spacing:-10.665000px;}
.wse3{word-spacing:-10.620000px;}
.ws62{word-spacing:-10.611000px;}
.ws24{word-spacing:-10.489500px;}
.ws7d{word-spacing:-10.408500px;}
.ws8b{word-spacing:-10.368000px;}
.ws49{word-spacing:-10.287000px;}
.wsda{word-spacing:-10.260000px;}
.ws83{word-spacing:-10.206000px;}
.ws70{word-spacing:-10.165500px;}
.ws1f{word-spacing:-10.125000px;}
.ws21{word-spacing:-10.084500px;}
.ws80{word-spacing:-10.044000px;}
.wse6{word-spacing:-10.035000px;}
.wsd3{word-spacing:-9.990000px;}
.ws7f{word-spacing:-9.922500px;}
.ws1e{word-spacing:-9.558000px;}
.wsb0{word-spacing:-9.477000px;}
.wsb1{word-spacing:-9.436500px;}
.ws86{word-spacing:-9.153000px;}
.ws87{word-spacing:-9.112500px;}
.ws2f{word-spacing:-0.858000px;}
.ws2b{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.741000px;}
.ws39{word-spacing:-0.726000px;}
.wsec{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.684000px;}
.ws28{word-spacing:-0.660000px;}
.ws68{word-spacing:-0.648000px;}
.wsc9{word-spacing:-0.600000px;}
.ws29{word-spacing:-0.594000px;}
.wse{word-spacing:-0.570000px;}
.ws41{word-spacing:-0.540000px;}
.ws34{word-spacing:-0.528000px;}
.ws4{word-spacing:-0.513000px;}
.ws74{word-spacing:-0.486000px;}
.wsc8{word-spacing:-0.480000px;}
.ws30{word-spacing:-0.462000px;}
.wsc{word-spacing:-0.456000px;}
.ws93{word-spacing:-0.432000px;}
.wsee{word-spacing:-0.420000px;}
.ws9{word-spacing:-0.399000px;}
.ws51{word-spacing:-0.396000px;}
.ws5a{word-spacing:-0.378000px;}
.ws10{word-spacing:-0.342000px;}
.ws2d{word-spacing:-0.330000px;}
.ws3b{word-spacing:-0.324000px;}
.wsfb{word-spacing:-0.300000px;}
.ws14{word-spacing:-0.285000px;}
.ws9c{word-spacing:-0.270000px;}
.ws2e{word-spacing:-0.264000px;}
.ws59{word-spacing:-0.216000px;}
.ws35{word-spacing:-0.198000px;}
.wsef{word-spacing:-0.180000px;}
.ws3f{word-spacing:-0.162000px;}
.ws73{word-spacing:-0.132000px;}
.wsf2{word-spacing:-0.120000px;}
.ws6b{word-spacing:-0.108000px;}
.ws57{word-spacing:-0.066000px;}
.wsbb{word-spacing:-0.060000px;}
.ws25{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws53{word-spacing:0.049500px;}
.wsa6{word-spacing:0.054000px;}
.ws52{word-spacing:0.066000px;}
.wsc7{word-spacing:0.120000px;}
.ws37{word-spacing:0.132000px;}
.ws42{word-spacing:0.162000px;}
.wsed{word-spacing:0.180000px;}
.ws26{word-spacing:0.198000px;}
.ws4e{word-spacing:0.264000px;}
.ws92{word-spacing:0.270000px;}
.wscc{word-spacing:0.300000px;}
.ws8f{word-spacing:0.324000px;}
.ws36{word-spacing:0.330000px;}
.ws72{word-spacing:0.396000px;}
.wscb{word-spacing:0.420000px;}
.ws5{word-spacing:0.456000px;}
.ws56{word-spacing:0.462000px;}
.wsf0{word-spacing:0.480000px;}
.ws3a{word-spacing:0.486000px;}
.ws67{word-spacing:0.528000px;}
.ws3c{word-spacing:0.540000px;}
.ws7{word-spacing:0.570000px;}
.ws4f{word-spacing:0.594000px;}
.wse9{word-spacing:0.600000px;}
.ws43{word-spacing:0.648000px;}
.ws8d{word-spacing:0.660000px;}
.ws38{word-spacing:0.693000px;}
.wsfc{word-spacing:0.720000px;}
.ws54{word-spacing:0.726000px;}
.ws8e{word-spacing:0.742500px;}
.ws3e{word-spacing:0.756000px;}
.ws4c{word-spacing:0.792000px;}
.ws3d{word-spacing:0.810000px;}
.wse8{word-spacing:0.840000px;}
.ws2c{word-spacing:0.858000px;}
.ws69{word-spacing:0.864000px;}
.wsc6{word-spacing:0.900000px;}
.wsf{word-spacing:0.912000px;}
.ws6a{word-spacing:0.918000px;}
.ws31{word-spacing:0.924000px;}
.wscd{word-spacing:0.960000px;}
.ws13{word-spacing:0.969000px;}
.ws44{word-spacing:0.972000px;}
.ws64{word-spacing:0.990000px;}
.ws11{word-spacing:1.026000px;}
.ws63{word-spacing:1.056000px;}
.ws90{word-spacing:1.080000px;}
.ws2a{word-spacing:1.122000px;}
.ws91{word-spacing:1.134000px;}
.wsea{word-spacing:1.140000px;}
.ws5b{word-spacing:1.188000px;}
.ws12{word-spacing:1.197000px;}
.wse7{word-spacing:1.200000px;}
.ws58{word-spacing:1.242000px;}
.ws6{word-spacing:1.254000px;}
.wscf{word-spacing:1.260000px;}
.ws40{word-spacing:1.296000px;}
.ws33{word-spacing:1.320000px;}
.wsa{word-spacing:1.368000px;}
.wseb{word-spacing:1.380000px;}
.ws50{word-spacing:1.386000px;}
.wsb{word-spacing:1.425000px;}
.wsfa{word-spacing:1.440000px;}
.ws4d{word-spacing:1.452000px;}
.ws32{word-spacing:1.518000px;}
.ws27{word-spacing:1.584000px;}
.ws55{word-spacing:1.650000px;}
.ws20{word-spacing:2.847000px;}
.ws8a{word-spacing:2.868000px;}
.wsca{word-spacing:2.880000px;}
.wsae{word-spacing:2.904000px;}
.ws9b{word-spacing:3.102000px;}
.wsb6{word-spacing:3.225000px;}
.ws7b{word-spacing:3.285000px;}
.wsf6{word-spacing:3.345000px;}
.wse0{word-spacing:3.870000px;}
.ws71{word-spacing:3.960000px;}
.ws65{word-spacing:4.092000px;}
.ws9f{word-spacing:4.452000px;}
.ws48{word-spacing:4.522500px;}
.ws85{word-spacing:4.705500px;}
.ws4b{word-spacing:4.780500px;}
.wsac{word-spacing:5.016000px;}
.ws5e{word-spacing:5.779500px;}
.wsce{word-spacing:5.880000px;}
.ws9e{word-spacing:7.524000px;}
.ws66{word-spacing:8.382000px;}
.wsad{word-spacing:8.514000px;}
.wsf1{word-spacing:8.700000px;}
.ws89{word-spacing:9.018000px;}
.ws96{word-spacing:24.024000px;}
.ws1a{word-spacing:35.904000px;}
.ws1c{word-spacing:36.018000px;}
._10{margin-left:-9.316500px;}
._9{margin-left:-8.250000px;}
._5{margin-left:-6.840000px;}
._8{margin-left:-5.676000px;}
._4{margin-left:-4.671000px;}
._1{margin-left:-3.456000px;}
._0{margin-left:-2.112000px;}
._2{margin-left:-1.026000px;}
._3{width:1.086000px;}
._a{width:2.706000px;}
._e{width:4.248000px;}
._11{width:9.018000px;}
._f{width:13.836000px;}
._14{width:15.399000px;}
._13{width:19.206000px;}
._12{width:24.024000px;}
._15{width:30.000000px;}
._d{width:36.018000px;}
._6{width:48.096000px;}
._c{width:49.518000px;}
._b{width:335.328000px;}
._7{width:1210.896000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:42.082500px;}
.y15a{bottom:45.951000px;}
.ye4{bottom:45.963000px;}
.y55{bottom:45.969000px;}
.y134{bottom:45.975000px;}
.y114{bottom:47.190000px;}
.y74{bottom:47.208000px;}
.yb9{bottom:47.214000px;}
.y1e1{bottom:48.075000px;}
.y10f{bottom:49.588500px;}
.y16d{bottom:49.605000px;}
.y22{bottom:59.638500px;}
.y159{bottom:60.207000px;}
.y54{bottom:60.219000px;}
.y113{bottom:61.446000px;}
.yb8{bottom:61.458000px;}
.y73{bottom:61.464000px;}
.y26{bottom:62.716500px;}
.y1e0{bottom:63.825000px;}
.y10e{bottom:66.831000px;}
.y16c{bottom:66.847500px;}
.y17b{bottom:74.439000px;}
.y53{bottom:74.463000px;}
.ye3{bottom:74.469000px;}
.y198{bottom:74.475000px;}
.y21{bottom:74.643750px;}
.y112{bottom:75.702000px;}
.y72{bottom:75.708000px;}
.yb7{bottom:75.714000px;}
.y1df{bottom:81.915000px;}
.y10d{bottom:84.073500px;}
.y16b{bottom:84.090000px;}
.y25{bottom:84.946500px;}
.y17a{bottom:88.695000px;}
.ye2{bottom:88.713000px;}
.y52{bottom:88.719000px;}
.y111{bottom:89.958000px;}
.y71{bottom:89.964000px;}
.yb6{bottom:89.970000px;}
.y20{bottom:92.199750px;}
.y1de{bottom:97.665000px;}
.y10c{bottom:101.316000px;}
.y16a{bottom:101.332500px;}
.y158{bottom:102.939000px;}
.y179{bottom:102.951000px;}
.y51{bottom:102.969000px;}
.y70{bottom:104.148000px;}
.y92{bottom:104.214000px;}
.y133{bottom:104.865000px;}
.y24{bottom:107.176500px;}
.y1f{bottom:107.205000px;}
.y1dd{bottom:113.415000px;}
.y157{bottom:117.195000px;}
.ye1{bottom:117.207000px;}
.y50{bottom:117.219000px;}
.y6f{bottom:118.404000px;}
.y91{bottom:118.464000px;}
.y197{bottom:118.467000px;}
.y110{bottom:118.470000px;}
.y10b{bottom:118.558500px;}
.y169{bottom:118.575000px;}
.y132{bottom:122.107500px;}
.y27{bottom:131.415000px;}
.y156{bottom:131.451000px;}
.ye0{bottom:131.463000px;}
.y1dc{bottom:131.490000px;}
.y6e{bottom:132.660000px;}
.y90{bottom:132.714000px;}
.y196{bottom:135.709500px;}
.yb5{bottom:135.787500px;}
.y10a{bottom:135.801000px;}
.y168{bottom:135.817500px;}
.y131{bottom:139.350000px;}
.y4f{bottom:145.671000px;}
.y155{bottom:145.707000px;}
.ydf{bottom:145.719000px;}
.y6d{bottom:146.916000px;}
.y8f{bottom:146.970000px;}
.y1db{bottom:147.240000px;}
.y195{bottom:152.952000px;}
.yb4{bottom:153.030000px;}
.y109{bottom:153.043500px;}
.y167{bottom:153.060000px;}
.y130{bottom:156.592500px;}
.y4e{bottom:159.927000px;}
.yde{bottom:159.963000px;}
.y178{bottom:159.975000px;}
.y6c{bottom:161.172000px;}
.y1da{bottom:165.330000px;}
.y194{bottom:170.194500px;}
.yb3{bottom:170.272500px;}
.y108{bottom:170.286000px;}
.y166{bottom:170.302500px;}
.y1b4{bottom:171.735000px;}
.y12f{bottom:173.835000px;}
.y4d{bottom:174.183000px;}
.ydd{bottom:174.219000px;}
.y6b{bottom:175.428000px;}
.y1e{bottom:180.975000px;}
.y1d9{bottom:181.080000px;}
.y8e{bottom:187.350000px;}
.y193{bottom:187.437000px;}
.y1b3{bottom:187.485000px;}
.yb2{bottom:187.515000px;}
.y107{bottom:187.528500px;}
.y165{bottom:187.545000px;}
.y4c{bottom:188.439000px;}
.ydc{bottom:188.457000px;}
.y154{bottom:188.475000px;}
.y6a{bottom:189.684000px;}
.y12e{bottom:191.077500px;}
.y1d{bottom:195.936000px;}
.y1d8{bottom:199.170000px;}
.y4b{bottom:202.695000px;}
.ydb{bottom:202.713000px;}
.y69{bottom:203.940000px;}
.y177{bottom:204.577500px;}
.y8d{bottom:204.592500px;}
.y192{bottom:204.679500px;}
.yb1{bottom:204.757500px;}
.y106{bottom:204.771000px;}
.y164{bottom:204.787500px;}
.y1b2{bottom:204.930000px;}
.y12d{bottom:208.320000px;}
.y1d7{bottom:214.920000px;}
.y4a{bottom:216.951000px;}
.yda{bottom:216.969000px;}
.y68{bottom:218.196000px;}
.y1c{bottom:218.436750px;}
.y1b1{bottom:220.680000px;}
.y176{bottom:221.820000px;}
.y8c{bottom:221.835000px;}
.y191{bottom:221.922000px;}
.yb0{bottom:222.000000px;}
.y105{bottom:222.013500px;}
.y163{bottom:222.030000px;}
.y12c{bottom:225.562500px;}
.y49{bottom:231.207000px;}
.yd9{bottom:231.213000px;}
.y67{bottom:232.452000px;}
.y1d6{bottom:233.010000px;}
.y1b{bottom:233.442000px;}
.y1b0{bottom:236.430000px;}
.y175{bottom:239.062500px;}
.y8b{bottom:239.077500px;}
.y153{bottom:239.115000px;}
.y190{bottom:239.164500px;}
.yaf{bottom:239.242500px;}
.y104{bottom:239.256000px;}
.y162{bottom:239.272500px;}
.y12b{bottom:242.805000px;}
.y48{bottom:245.463000px;}
.yd8{bottom:245.469000px;}
.y66{bottom:246.708000px;}
.y1a{bottom:248.447250px;}
.y1d5{bottom:248.760000px;}
.y1af{bottom:253.890000px;}
.y174{bottom:256.305000px;}
.y8a{bottom:256.320000px;}
.y152{bottom:256.357500px;}
.y18f{bottom:256.407000px;}
.yae{bottom:256.485000px;}
.y103{bottom:256.498500px;}
.y161{bottom:256.515000px;}
.yd7{bottom:259.713000px;}
.y47{bottom:259.719000px;}
.y12a{bottom:260.047500px;}
.y65{bottom:260.964000px;}
.y19{bottom:263.452500px;}
.y1d4{bottom:266.850000px;}
.y1ae{bottom:269.640000px;}
.y173{bottom:273.547500px;}
.y89{bottom:273.562500px;}
.y151{bottom:273.600000px;}
.y18e{bottom:273.649500px;}
.yad{bottom:273.727500px;}
.y102{bottom:273.741000px;}
.y160{bottom:273.757500px;}
.yd6{bottom:273.969000px;}
.y46{bottom:273.975000px;}
.y64{bottom:275.220000px;}
.y129{bottom:277.290000px;}
.y18{bottom:278.457750px;}
.y1d3{bottom:282.600000px;}
.y1ad{bottom:287.085000px;}
.yd5{bottom:288.219000px;}
.y172{bottom:290.790000px;}
.y88{bottom:290.805000px;}
.y150{bottom:290.842500px;}
.y18d{bottom:290.892000px;}
.yac{bottom:290.970000px;}
.y101{bottom:290.983500px;}
.y15f{bottom:291.000000px;}
.y17{bottom:293.463000px;}
.y128{bottom:294.532500px;}
.y1d2{bottom:300.690000px;}
.yd4{bottom:302.469000px;}
.y1ac{bottom:304.530000px;}
.y171{bottom:308.032500px;}
.y87{bottom:308.047500px;}
.y63{bottom:308.070000px;}
.y14f{bottom:308.085000px;}
.y18c{bottom:308.134500px;}
.yab{bottom:308.212500px;}
.y100{bottom:308.226000px;}
.y15e{bottom:308.242500px;}
.y16{bottom:308.468250px;}
.y127{bottom:311.922000px;}
.y1d1{bottom:316.440000px;}
.yd3{bottom:316.713000px;}
.y1ab{bottom:321.990000px;}
.y15{bottom:323.473500px;}
.y45{bottom:325.282500px;}
.y86{bottom:325.290000px;}
.y62{bottom:325.312500px;}
.y14e{bottom:325.327500px;}
.y18b{bottom:325.377000px;}
.y170{bottom:325.452000px;}
.yaa{bottom:325.455000px;}
.yff{bottom:325.468500px;}
.y15d{bottom:325.485000px;}
.y126{bottom:329.164500px;}
.yd2{bottom:330.969000px;}
.y1d0{bottom:334.530000px;}
.y1aa{bottom:337.740000px;}
.y14{bottom:338.478750px;}
.y85{bottom:342.532500px;}
.y44{bottom:342.540000px;}
.y61{bottom:342.555000px;}
.y14d{bottom:342.570000px;}
.y18a{bottom:342.619500px;}
.y16f{bottom:342.694500px;}
.ya9{bottom:342.697500px;}
.yfe{bottom:342.711000px;}
.y15c{bottom:342.727500px;}
.yd1{bottom:345.201000px;}
.y125{bottom:346.407000px;}
.y1cf{bottom:350.280000px;}
.y1a9{bottom:355.185000px;}
.yd0{bottom:359.457000px;}
.y43{bottom:359.782500px;}
.y60{bottom:359.797500px;}
.y14c{bottom:359.812500px;}
.y189{bottom:359.862000px;}
.y84{bottom:359.937000px;}
.ya8{bottom:359.940000px;}
.yfd{bottom:359.953500px;}
.y15b{bottom:359.970000px;}
.y124{bottom:363.649500px;}
.y1ce{bottom:366.030000px;}
.y13{bottom:368.475000px;}
.y1a8{bottom:372.645000px;}
.ycf{bottom:373.713000px;}
.y5f{bottom:377.040000px;}
.y14b{bottom:377.055000px;}
.y188{bottom:377.104500px;}
.y83{bottom:377.179500px;}
.ya7{bottom:377.182500px;}
.yfc{bottom:377.196000px;}
.y42{bottom:377.212500px;}
.y123{bottom:380.892000px;}
.y1cd{bottom:384.120000px;}
.yce{bottom:387.969000px;}
.y1a7{bottom:388.395000px;}
.y5e{bottom:394.282500px;}
.y14a{bottom:394.297500px;}
.y187{bottom:394.347000px;}
.y82{bottom:394.422000px;}
.ya6{bottom:394.425000px;}
.yfb{bottom:394.438500px;}
.y41{bottom:394.455000px;}
.y122{bottom:398.134500px;}
.y1cc{bottom:399.870000px;}
.ycd{bottom:402.213000px;}
.y12{bottom:404.430750px;}
.y1a6{bottom:405.840000px;}
.y149{bottom:411.540000px;}
.y5d{bottom:411.555000px;}
.y186{bottom:411.589500px;}
.y81{bottom:411.664500px;}
.ya5{bottom:411.667500px;}
.yfa{bottom:411.681000px;}
.y40{bottom:411.697500px;}
.y121{bottom:415.377000px;}
.ycc{bottom:416.469000px;}
.y1cb{bottom:417.960000px;}
.y11{bottom:419.436000px;}
.y1a5{bottom:421.590000px;}
.y148{bottom:428.782500px;}
.y5c{bottom:428.797500px;}
.y185{bottom:428.832000px;}
.y80{bottom:428.907000px;}
.ya4{bottom:428.910000px;}
.yf9{bottom:428.923500px;}
.y3f{bottom:428.940000px;}
.ycb{bottom:430.719000px;}
.y1ca{bottom:436.050000px;}
.y1a4{bottom:439.035000px;}
.y120{bottom:441.249000px;}
.y10{bottom:441.936750px;}
.yca{bottom:444.957000px;}
.y5b{bottom:446.040000px;}
.y7f{bottom:446.149500px;}
.ya3{bottom:446.152500px;}
.yf8{bottom:446.166000px;}
.y147{bottom:446.167500px;}
.y3e{bottom:446.182500px;}
.y1c9{bottom:454.125000px;}
.y184{bottom:454.704000px;}
.y1a3{bottom:454.785000px;}
.yf{bottom:456.942000px;}
.yc9{bottom:459.213000px;}
.y5a{bottom:463.282500px;}
.y7e{bottom:463.392000px;}
.ya2{bottom:463.395000px;}
.yf7{bottom:463.408500px;}
.y146{bottom:463.410000px;}
.y3d{bottom:463.425000px;}
.y1c8{bottom:469.875000px;}
.ye{bottom:471.947250px;}
.y1a2{bottom:472.245000px;}
.yc8{bottom:473.469000px;}
.y59{bottom:480.555000px;}
.y7d{bottom:480.634500px;}
.ya1{bottom:480.637500px;}
.yf6{bottom:480.651000px;}
.y145{bottom:480.652500px;}
.y3c{bottom:480.667500px;}
.y11f{bottom:484.380000px;}
.yd{bottom:486.952500px;}
.yc7{bottom:487.725000px;}
.y1c7{bottom:487.965000px;}
.y1a1{bottom:487.995000px;}
.y58{bottom:497.797500px;}
.y183{bottom:497.835000px;}
.y7c{bottom:497.877000px;}
.ya0{bottom:497.880000px;}
.yf5{bottom:497.893500px;}
.y144{bottom:497.895000px;}
.y3b{bottom:497.910000px;}
.y11e{bottom:501.622500px;}
.yc{bottom:501.957750px;}
.y1c6{bottom:503.715000px;}
.y1a0{bottom:503.745000px;}
.y57{bottom:515.040000px;}
.y182{bottom:515.077500px;}
.y7b{bottom:515.119500px;}
.y9f{bottom:515.122500px;}
.yf4{bottom:515.136000px;}
.y143{bottom:515.137500px;}
.y3a{bottom:515.152500px;}
.yb{bottom:516.963000px;}
.y11d{bottom:518.865000px;}
.y19f{bottom:521.190000px;}
.y1c5{bottom:521.805000px;}
.ya{bottom:531.968250px;}
.y56{bottom:532.282500px;}
.y181{bottom:532.320000px;}
.yc6{bottom:532.350000px;}
.y7a{bottom:532.362000px;}
.y9e{bottom:532.365000px;}
.yf3{bottom:532.378500px;}
.y142{bottom:532.380000px;}
.y39{bottom:532.395000px;}
.y11c{bottom:536.107500px;}
.y19e{bottom:536.940000px;}
.y1c4{bottom:537.555000px;}
.y9{bottom:546.973500px;}
.y180{bottom:549.562500px;}
.yc5{bottom:549.592500px;}
.y79{bottom:549.604500px;}
.y9d{bottom:549.607500px;}
.yf2{bottom:549.621000px;}
.y141{bottom:549.622500px;}
.y38{bottom:549.637500px;}
.y11b{bottom:553.350000px;}
.y19d{bottom:554.400000px;}
.y1c3{bottom:555.645000px;}
.y8{bottom:561.978750px;}
.y17f{bottom:566.805000px;}
.yc4{bottom:566.835000px;}
.y78{bottom:566.847000px;}
.y9c{bottom:566.850000px;}
.yf1{bottom:566.863500px;}
.y140{bottom:566.865000px;}
.y37{bottom:566.880000px;}
.y19c{bottom:570.150000px;}
.y11a{bottom:570.592500px;}
.y1c2{bottom:571.395000px;}
.y17e{bottom:584.047500px;}
.yc3{bottom:584.077500px;}
.y77{bottom:584.089500px;}
.y9b{bottom:584.092500px;}
.yf0{bottom:584.106000px;}
.y13f{bottom:584.107500px;}
.y36{bottom:584.122500px;}
.y19b{bottom:585.900000px;}
.y119{bottom:587.835000px;}
.y1c1{bottom:589.485000px;}
.y7{bottom:591.975000px;}
.y16e{bottom:592.719000px;}
.y17d{bottom:601.290000px;}
.yc2{bottom:601.320000px;}
.y76{bottom:601.332000px;}
.y9a{bottom:601.335000px;}
.yef{bottom:601.348500px;}
.y13e{bottom:601.350000px;}
.y35{bottom:601.365000px;}
.y118{bottom:605.077500px;}
.y1c0{bottom:607.575000px;}
.y19a{bottom:609.916500px;}
.y17c{bottom:618.532500px;}
.yc1{bottom:618.562500px;}
.y99{bottom:618.577500px;}
.yee{bottom:618.591000px;}
.y13d{bottom:618.592500px;}
.y34{bottom:618.607500px;}
.y117{bottom:622.320000px;}
.y1bf{bottom:625.665000px;}
.y75{bottom:627.204000px;}
.yc0{bottom:635.805000px;}
.y98{bottom:635.820000px;}
.yed{bottom:635.833500px;}
.y13c{bottom:635.835000px;}
.y33{bottom:635.850000px;}
.y116{bottom:639.562500px;}
.y1be{bottom:641.415000px;}
.ybf{bottom:653.047500px;}
.y97{bottom:653.062500px;}
.yec{bottom:653.076000px;}
.y13b{bottom:653.077500px;}
.y32{bottom:653.092500px;}
.y115{bottom:656.805000px;}
.y1bd{bottom:657.165000px;}
.ybe{bottom:670.290000px;}
.y96{bottom:670.305000px;}
.yeb{bottom:670.318500px;}
.y13a{bottom:670.320000px;}
.y31{bottom:670.335000px;}
.y1bc{bottom:672.915000px;}
.y6{bottom:674.206500px;}
.ybd{bottom:687.532500px;}
.y95{bottom:687.547500px;}
.yea{bottom:687.561000px;}
.y139{bottom:687.562500px;}
.y30{bottom:687.577500px;}
.y5{bottom:689.205000px;}
.y1bb{bottom:691.005000px;}
.y1e7{bottom:692.910000px;}
.ybc{bottom:704.782500px;}
.y94{bottom:704.790000px;}
.y199{bottom:704.797500px;}
.ye9{bottom:704.803500px;}
.y138{bottom:704.805000px;}
.y2f{bottom:704.820000px;}
.y1ba{bottom:706.755000px;}
.y4{bottom:707.955000px;}
.y1e6{bottom:708.660000px;}
.y93{bottom:722.032500px;}
.ybb{bottom:722.040000px;}
.ye8{bottom:722.046000px;}
.y137{bottom:722.047500px;}
.y2e{bottom:722.062500px;}
.y1b9{bottom:724.845000px;}
.y1e5{bottom:726.120000px;}
.yba{bottom:739.282500px;}
.ye7{bottom:739.288500px;}
.y136{bottom:739.290000px;}
.y2d{bottom:739.305000px;}
.y1b8{bottom:740.595000px;}
.y1e4{bottom:741.870000px;}
.y3{bottom:752.955000px;}
.ye6{bottom:756.531000px;}
.y135{bottom:756.532500px;}
.y2c{bottom:756.547500px;}
.y1b7{bottom:758.685000px;}
.y1e3{bottom:759.315000px;}
.ye5{bottom:773.773500px;}
.y2b{bottom:773.790000px;}
.y1b6{bottom:774.435000px;}
.y1e2{bottom:776.775000px;}
.y2{bottom:776.955000px;}
.y2a{bottom:791.032500px;}
.y1b5{bottom:792.525000px;}
.y1{bottom:800.955000px;}
.y29{bottom:808.275000px;}
.y28{bottom:855.105000px;}
.h6{height:51.216000px;}
.h3{height:57.618000px;}
.he{height:57.666000px;}
.hf{height:57.690000px;}
.h10{height:57.714000px;}
.h12{height:57.762000px;}
.h9{height:57.858000px;}
.hd{height:57.906000px;}
.hb{height:58.536000px;}
.ha{height:58.560000px;}
.hc{height:58.584000px;}
.h11{height:58.608000px;}
.h13{height:58.680000px;}
.h4{height:60.819000px;}
.h5{height:61.965000px;}
.h14{height:64.020000px;}
.h15{height:65.040000px;}
.h7{height:70.422000px;}
.h8{height:71.544000px;}
.h2{height:76.824000px;}
.h1{height:102.432000px;}
.h0{height:922.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x1{left:53.700000px;}
.x9{left:54.915000px;}
.xc{left:76.189500px;}
.xa{left:77.388000px;}
.x4{left:86.285250px;}
.x2{left:89.805000px;}
.xd{left:98.695500px;}
.xb{left:99.951000px;}
.x3{left:132.555000px;}
.x5{left:242.793000px;}
.x7{left:273.030000px;}
.x6{left:310.209750px;}
.x8{left:412.515000px;}
@media print{
.v2{vertical-align:-14.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.000000pt;}
.ls6e{letter-spacing:-1.408000pt;}
.ls1e{letter-spacing:-1.290667pt;}
.ls73{letter-spacing:-1.232000pt;}
.ls8f{letter-spacing:-1.120000pt;}
.ls4c{letter-spacing:-1.114667pt;}
.ls27{letter-spacing:-1.104000pt;}
.ls99{letter-spacing:-1.080000pt;}
.ls9a{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-1.064000pt;}
.ls26{letter-spacing:-1.056000pt;}
.ls6b{letter-spacing:-1.008000pt;}
.ls4b{letter-spacing:-0.997333pt;}
.ls68{letter-spacing:-0.968000pt;}
.ls1a{letter-spacing:-0.938667pt;}
.ls84{letter-spacing:-0.912000pt;}
.ls5f{letter-spacing:-0.900000pt;}
.ls41{letter-spacing:-0.880000pt;}
.ls5e{letter-spacing:-0.864000pt;}
.ls93{letter-spacing:-0.853333pt;}
.ls1d{letter-spacing:-0.821333pt;}
.ls94{letter-spacing:-0.800000pt;}
.ls44{letter-spacing:-0.762667pt;}
.ls83{letter-spacing:-0.720000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls2a{letter-spacing:-0.672000pt;}
.lsd{letter-spacing:-0.658667pt;}
.ls4d{letter-spacing:-0.645333pt;}
.ls74{letter-spacing:-0.612000pt;}
.ls22{letter-spacing:-0.586667pt;}
.ls59{letter-spacing:-0.576000pt;}
.ls98{letter-spacing:-0.560000pt;}
.ls97{letter-spacing:-0.533333pt;}
.ls67{letter-spacing:-0.528000pt;}
.ls96{letter-spacing:-0.520000pt;}
.ls29{letter-spacing:-0.504000pt;}
.ls28{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.469333pt;}
.ls70{letter-spacing:-0.432000pt;}
.ls9f{letter-spacing:-0.426667pt;}
.ls20{letter-spacing:-0.410667pt;}
.lsa1{letter-spacing:-0.400000pt;}
.ls39{letter-spacing:-0.384000pt;}
.lsa2{letter-spacing:-0.373333pt;}
.lsa0{letter-spacing:-0.360000pt;}
.ls1f{letter-spacing:-0.352000pt;}
.ls65{letter-spacing:-0.336000pt;}
.ls95{letter-spacing:-0.320000pt;}
.ls7f{letter-spacing:-0.308000pt;}
.lsa{letter-spacing:-0.304000pt;}
.ls40{letter-spacing:-0.293333pt;}
.ls3a{letter-spacing:-0.288000pt;}
.ls82{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.253333pt;}
.ls3b{letter-spacing:-0.240000pt;}
.ls61{letter-spacing:-0.234667pt;}
.ls72{letter-spacing:-0.220000pt;}
.ls90{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.202667pt;}
.ls8e{letter-spacing:-0.200000pt;}
.ls60{letter-spacing:-0.192000pt;}
.ls5b{letter-spacing:-0.180000pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls81{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.152000pt;}
.ls5a{letter-spacing:-0.144000pt;}
.ls45{letter-spacing:-0.132000pt;}
.ls80{letter-spacing:-0.120000pt;}
.ls23{letter-spacing:-0.117333pt;}
.ls5d{letter-spacing:-0.096000pt;}
.ls5c{letter-spacing:-0.072000pt;}
.ls1c{letter-spacing:-0.058667pt;}
.ls92{letter-spacing:-0.053333pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls25{letter-spacing:-0.048000pt;}
.ls24{letter-spacing:-0.042667pt;}
.ls91{letter-spacing:-0.040000pt;}
.ls2b{letter-spacing:-0.036000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.005333pt;}
.ls52{letter-spacing:0.021333pt;}
.ls13{letter-spacing:0.026667pt;}
.ls16{letter-spacing:0.032000pt;}
.ls4a{letter-spacing:0.036000pt;}
.ls9b{letter-spacing:0.040000pt;}
.ls42{letter-spacing:0.044000pt;}
.ls32{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.050667pt;}
.ls9c{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.058667pt;}
.ls54{letter-spacing:0.072000pt;}
.ls6f{letter-spacing:0.088000pt;}
.ls53{letter-spacing:0.096000pt;}
.ls89{letter-spacing:0.106667pt;}
.ls47{letter-spacing:0.117333pt;}
.ls8a{letter-spacing:0.120000pt;}
.ls4e{letter-spacing:0.133333pt;}
.ls35{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.152000pt;}
.ls34{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.176000pt;}
.ls36{letter-spacing:0.186667pt;}
.ls37{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.202667pt;}
.ls7e{letter-spacing:0.213333pt;}
.ls56{letter-spacing:0.216000pt;}
.ls64{letter-spacing:0.220000pt;}
.ls11{letter-spacing:0.234667pt;}
.ls33{letter-spacing:0.240000pt;}
.ls51{letter-spacing:0.252000pt;}
.ls69{letter-spacing:0.264000pt;}
.ls85{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.288000pt;}
.ls46{letter-spacing:0.293333pt;}
.ls88{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.324000pt;}
.ls3f{letter-spacing:0.325333pt;}
.ls17{letter-spacing:0.336000pt;}
.ls31{letter-spacing:0.352000pt;}
.ls4{letter-spacing:0.354667pt;}
.ls63{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.410667pt;}
.ls6d{letter-spacing:0.421333pt;}
.ls14{letter-spacing:0.432000pt;}
.ls3{letter-spacing:0.456000pt;}
.lse{letter-spacing:0.469333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls76{letter-spacing:0.520000pt;}
.ls3c{letter-spacing:0.528000pt;}
.ls75{letter-spacing:0.533333pt;}
.ls48{letter-spacing:0.586667pt;}
.ls8d{letter-spacing:0.600000pt;}
.ls8c{letter-spacing:0.640000pt;}
.ls30{letter-spacing:0.645333pt;}
.ls9e{letter-spacing:0.680000pt;}
.ls9d{letter-spacing:0.693333pt;}
.lsf{letter-spacing:0.704000pt;}
.ls1{letter-spacing:0.760000pt;}
.ls3e{letter-spacing:0.762667pt;}
.ls49{letter-spacing:0.821333pt;}
.ls87{letter-spacing:0.840000pt;}
.ls86{letter-spacing:0.853333pt;}
.ls50{letter-spacing:0.864000pt;}
.ls4f{letter-spacing:0.880000pt;}
.ls7a{letter-spacing:0.906667pt;}
.ls58{letter-spacing:0.938667pt;}
.ls7b{letter-spacing:0.960000pt;}
.ls62{letter-spacing:0.997333pt;}
.ls7c{letter-spacing:1.066667pt;}
.ls7d{letter-spacing:1.080000pt;}
.ls2e{letter-spacing:1.093333pt;}
.ls8b{letter-spacing:1.160000pt;}
.ls12{letter-spacing:1.173333pt;}
.ls79{letter-spacing:1.320000pt;}
.ls78{letter-spacing:1.333333pt;}
.ls2d{letter-spacing:1.408000pt;}
.ls2f{letter-spacing:1.466667pt;}
.ls43{letter-spacing:1.525333pt;}
.ls6c{letter-spacing:1.584000pt;}
.ls6a{letter-spacing:1.760000pt;}
.ls71{letter-spacing:16.368000pt;}
.ls66{letter-spacing:21.354667pt;}
.ls77{letter-spacing:26.666667pt;}
.ls55{letter-spacing:32.016000pt;}
.wsa1{word-spacing:-16.426667pt;}
.wsa9{word-spacing:-16.250667pt;}
.ws5f{word-spacing:-16.192000pt;}
.ws46{word-spacing:-16.133333pt;}
.ws6e{word-spacing:-15.488000pt;}
.ws98{word-spacing:-15.253333pt;}
.ws5c{word-spacing:-15.194667pt;}
.ws60{word-spacing:-15.077333pt;}
.ws6f{word-spacing:-15.018667pt;}
.ws6c{word-spacing:-14.960000pt;}
.ws75{word-spacing:-14.901333pt;}
.ws79{word-spacing:-14.842667pt;}
.ws18{word-spacing:-14.725333pt;}
.ws15{word-spacing:-14.666667pt;}
.wsaa{word-spacing:-14.608000pt;}
.ws45{word-spacing:-14.549333pt;}
.wse1{word-spacing:-14.506667pt;}
.ws5d{word-spacing:-14.490667pt;}
.wsa3{word-spacing:-14.432000pt;}
.ws78{word-spacing:-14.373333pt;}
.ws97{word-spacing:-14.314667pt;}
.wsbf{word-spacing:-14.293333pt;}
.ws7a{word-spacing:-14.256000pt;}
.ws94{word-spacing:-14.197333pt;}
.wsdb{word-spacing:-14.186667pt;}
.ws9d{word-spacing:-14.021333pt;}
.ws17{word-spacing:-13.962667pt;}
.wsd4{word-spacing:-13.920000pt;}
.wsa7{word-spacing:-13.904000pt;}
.wsba{word-spacing:-13.866667pt;}
.ws47{word-spacing:-13.845333pt;}
.ws6d{word-spacing:-13.786667pt;}
.ws99{word-spacing:-13.728000pt;}
.wsd1{word-spacing:-13.600000pt;}
.wsc4{word-spacing:-13.546667pt;}
.wsc2{word-spacing:-13.493333pt;}
.ws16{word-spacing:-13.376000pt;}
.wsb4{word-spacing:-13.333333pt;}
.wsd9{word-spacing:-13.280000pt;}
.wsb7{word-spacing:-13.173333pt;}
.wsbc{word-spacing:-13.066667pt;}
.wsde{word-spacing:-13.013333pt;}
.ws0{word-spacing:-12.920000pt;}
.wsf5{word-spacing:-12.906667pt;}
.ws2{word-spacing:-12.869333pt;}
.wsf7{word-spacing:-12.853333pt;}
.wse4{word-spacing:-12.800000pt;}
.ws1{word-spacing:-12.666667pt;}
.wsdc{word-spacing:-12.533333pt;}
.wsb2{word-spacing:-12.480000pt;}
.ws22{word-spacing:-12.336000pt;}
.ws23{word-spacing:-12.288000pt;}
.wsf4{word-spacing:-12.213333pt;}
.ws4a{word-spacing:-12.192000pt;}
.ws84{word-spacing:-12.144000pt;}
.wsa4{word-spacing:-12.096000pt;}
.ws1d{word-spacing:-12.000000pt;}
.ws82{word-spacing:-11.952000pt;}
.ws81{word-spacing:-11.904000pt;}
.ws8c{word-spacing:-11.808000pt;}
.ws77{word-spacing:-11.704000pt;}
.ws9a{word-spacing:-11.664000pt;}
.wsab{word-spacing:-11.568000pt;}
.ws7e{word-spacing:-11.424000pt;}
.ws7c{word-spacing:-11.328000pt;}
.wsbd{word-spacing:-11.320000pt;}
.wsc5{word-spacing:-11.280000pt;}
.wsa0{word-spacing:-11.264000pt;}
.ws95{word-spacing:-11.220000pt;}
.ws76{word-spacing:-11.176000pt;}
.wsdf{word-spacing:-11.160000pt;}
.ws88{word-spacing:-11.136000pt;}
.wsa8{word-spacing:-11.088000pt;}
.wsc0{word-spacing:-11.080000pt;}
.wsa2{word-spacing:-11.044000pt;}
.ws19{word-spacing:-11.000000pt;}
.wsa5{word-spacing:-10.992000pt;}
.wsbe{word-spacing:-10.960000pt;}
.ws61{word-spacing:-10.868000pt;}
.wsd2{word-spacing:-10.840000pt;}
.wsaf{word-spacing:-10.780000pt;}
.wsb3{word-spacing:-10.692000pt;}
.wsf9{word-spacing:-10.680000pt;}
.ws1b{word-spacing:-10.624000pt;}
.wse5{word-spacing:-10.600000pt;}
.wsb9{word-spacing:-10.520000pt;}
.wsc3{word-spacing:-10.480000pt;}
.wsd5{word-spacing:-10.320000pt;}
.wsd6{word-spacing:-10.240000pt;}
.wsc1{word-spacing:-10.160000pt;}
.wsd7{word-spacing:-10.120000pt;}
.wsf3{word-spacing:-10.040000pt;}
.wsb5{word-spacing:-10.000000pt;}
.wsd8{word-spacing:-9.960000pt;}
.wsb8{word-spacing:-9.880000pt;}
.wsd0{word-spacing:-9.800000pt;}
.wsdd{word-spacing:-9.680000pt;}
.wsf8{word-spacing:-9.600000pt;}
.wse2{word-spacing:-9.480000pt;}
.wse3{word-spacing:-9.440000pt;}
.ws62{word-spacing:-9.432000pt;}
.ws24{word-spacing:-9.324000pt;}
.ws7d{word-spacing:-9.252000pt;}
.ws8b{word-spacing:-9.216000pt;}
.ws49{word-spacing:-9.144000pt;}
.wsda{word-spacing:-9.120000pt;}
.ws83{word-spacing:-9.072000pt;}
.ws70{word-spacing:-9.036000pt;}
.ws1f{word-spacing:-9.000000pt;}
.ws21{word-spacing:-8.964000pt;}
.ws80{word-spacing:-8.928000pt;}
.wse6{word-spacing:-8.920000pt;}
.wsd3{word-spacing:-8.880000pt;}
.ws7f{word-spacing:-8.820000pt;}
.ws1e{word-spacing:-8.496000pt;}
.wsb0{word-spacing:-8.424000pt;}
.wsb1{word-spacing:-8.388000pt;}
.ws86{word-spacing:-8.136000pt;}
.ws87{word-spacing:-8.100000pt;}
.ws2f{word-spacing:-0.762667pt;}
.ws2b{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.658667pt;}
.ws39{word-spacing:-0.645333pt;}
.wsec{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.608000pt;}
.ws28{word-spacing:-0.586667pt;}
.ws68{word-spacing:-0.576000pt;}
.wsc9{word-spacing:-0.533333pt;}
.ws29{word-spacing:-0.528000pt;}
.wse{word-spacing:-0.506667pt;}
.ws41{word-spacing:-0.480000pt;}
.ws34{word-spacing:-0.469333pt;}
.ws4{word-spacing:-0.456000pt;}
.ws74{word-spacing:-0.432000pt;}
.wsc8{word-spacing:-0.426667pt;}
.ws30{word-spacing:-0.410667pt;}
.wsc{word-spacing:-0.405333pt;}
.ws93{word-spacing:-0.384000pt;}
.wsee{word-spacing:-0.373333pt;}
.ws9{word-spacing:-0.354667pt;}
.ws51{word-spacing:-0.352000pt;}
.ws5a{word-spacing:-0.336000pt;}
.ws10{word-spacing:-0.304000pt;}
.ws2d{word-spacing:-0.293333pt;}
.ws3b{word-spacing:-0.288000pt;}
.wsfb{word-spacing:-0.266667pt;}
.ws14{word-spacing:-0.253333pt;}
.ws9c{word-spacing:-0.240000pt;}
.ws2e{word-spacing:-0.234667pt;}
.ws59{word-spacing:-0.192000pt;}
.ws35{word-spacing:-0.176000pt;}
.wsef{word-spacing:-0.160000pt;}
.ws3f{word-spacing:-0.144000pt;}
.ws73{word-spacing:-0.117333pt;}
.wsf2{word-spacing:-0.106667pt;}
.ws6b{word-spacing:-0.096000pt;}
.ws57{word-spacing:-0.058667pt;}
.wsbb{word-spacing:-0.053333pt;}
.ws25{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws53{word-spacing:0.044000pt;}
.wsa6{word-spacing:0.048000pt;}
.ws52{word-spacing:0.058667pt;}
.wsc7{word-spacing:0.106667pt;}
.ws37{word-spacing:0.117333pt;}
.ws42{word-spacing:0.144000pt;}
.wsed{word-spacing:0.160000pt;}
.ws26{word-spacing:0.176000pt;}
.ws4e{word-spacing:0.234667pt;}
.ws92{word-spacing:0.240000pt;}
.wscc{word-spacing:0.266667pt;}
.ws8f{word-spacing:0.288000pt;}
.ws36{word-spacing:0.293333pt;}
.ws72{word-spacing:0.352000pt;}
.wscb{word-spacing:0.373333pt;}
.ws5{word-spacing:0.405333pt;}
.ws56{word-spacing:0.410667pt;}
.wsf0{word-spacing:0.426667pt;}
.ws3a{word-spacing:0.432000pt;}
.ws67{word-spacing:0.469333pt;}
.ws3c{word-spacing:0.480000pt;}
.ws7{word-spacing:0.506667pt;}
.ws4f{word-spacing:0.528000pt;}
.wse9{word-spacing:0.533333pt;}
.ws43{word-spacing:0.576000pt;}
.ws8d{word-spacing:0.586667pt;}
.ws38{word-spacing:0.616000pt;}
.wsfc{word-spacing:0.640000pt;}
.ws54{word-spacing:0.645333pt;}
.ws8e{word-spacing:0.660000pt;}
.ws3e{word-spacing:0.672000pt;}
.ws4c{word-spacing:0.704000pt;}
.ws3d{word-spacing:0.720000pt;}
.wse8{word-spacing:0.746667pt;}
.ws2c{word-spacing:0.762667pt;}
.ws69{word-spacing:0.768000pt;}
.wsc6{word-spacing:0.800000pt;}
.wsf{word-spacing:0.810667pt;}
.ws6a{word-spacing:0.816000pt;}
.ws31{word-spacing:0.821333pt;}
.wscd{word-spacing:0.853333pt;}
.ws13{word-spacing:0.861333pt;}
.ws44{word-spacing:0.864000pt;}
.ws64{word-spacing:0.880000pt;}
.ws11{word-spacing:0.912000pt;}
.ws63{word-spacing:0.938667pt;}
.ws90{word-spacing:0.960000pt;}
.ws2a{word-spacing:0.997333pt;}
.ws91{word-spacing:1.008000pt;}
.wsea{word-spacing:1.013333pt;}
.ws5b{word-spacing:1.056000pt;}
.ws12{word-spacing:1.064000pt;}
.wse7{word-spacing:1.066667pt;}
.ws58{word-spacing:1.104000pt;}
.ws6{word-spacing:1.114667pt;}
.wscf{word-spacing:1.120000pt;}
.ws40{word-spacing:1.152000pt;}
.ws33{word-spacing:1.173333pt;}
.wsa{word-spacing:1.216000pt;}
.wseb{word-spacing:1.226667pt;}
.ws50{word-spacing:1.232000pt;}
.wsb{word-spacing:1.266667pt;}
.wsfa{word-spacing:1.280000pt;}
.ws4d{word-spacing:1.290667pt;}
.ws32{word-spacing:1.349333pt;}
.ws27{word-spacing:1.408000pt;}
.ws55{word-spacing:1.466667pt;}
.ws20{word-spacing:2.530667pt;}
.ws8a{word-spacing:2.549333pt;}
.wsca{word-spacing:2.560000pt;}
.wsae{word-spacing:2.581333pt;}
.ws9b{word-spacing:2.757333pt;}
.wsb6{word-spacing:2.866667pt;}
.ws7b{word-spacing:2.920000pt;}
.wsf6{word-spacing:2.973333pt;}
.wse0{word-spacing:3.440000pt;}
.ws71{word-spacing:3.520000pt;}
.ws65{word-spacing:3.637333pt;}
.ws9f{word-spacing:3.957333pt;}
.ws48{word-spacing:4.020000pt;}
.ws85{word-spacing:4.182667pt;}
.ws4b{word-spacing:4.249333pt;}
.wsac{word-spacing:4.458667pt;}
.ws5e{word-spacing:5.137333pt;}
.wsce{word-spacing:5.226667pt;}
.ws9e{word-spacing:6.688000pt;}
.ws66{word-spacing:7.450667pt;}
.wsad{word-spacing:7.568000pt;}
.wsf1{word-spacing:7.733333pt;}
.ws89{word-spacing:8.016000pt;}
.ws96{word-spacing:21.354667pt;}
.ws1a{word-spacing:31.914667pt;}
.ws1c{word-spacing:32.016000pt;}
._10{margin-left:-8.281333pt;}
._9{margin-left:-7.333333pt;}
._5{margin-left:-6.080000pt;}
._8{margin-left:-5.045333pt;}
._4{margin-left:-4.152000pt;}
._1{margin-left:-3.072000pt;}
._0{margin-left:-1.877333pt;}
._2{margin-left:-0.912000pt;}
._3{width:0.965333pt;}
._a{width:2.405333pt;}
._e{width:3.776000pt;}
._11{width:8.016000pt;}
._f{width:12.298667pt;}
._14{width:13.688000pt;}
._13{width:17.072000pt;}
._12{width:21.354667pt;}
._15{width:26.666667pt;}
._d{width:32.016000pt;}
._6{width:42.752000pt;}
._c{width:44.016000pt;}
._b{width:298.069333pt;}
._7{width:1076.352000pt;}
.fs7{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:37.406667pt;}
.y15a{bottom:40.845333pt;}
.ye4{bottom:40.856000pt;}
.y55{bottom:40.861333pt;}
.y134{bottom:40.866667pt;}
.y114{bottom:41.946667pt;}
.y74{bottom:41.962667pt;}
.yb9{bottom:41.968000pt;}
.y1e1{bottom:42.733333pt;}
.y10f{bottom:44.078667pt;}
.y16d{bottom:44.093333pt;}
.y22{bottom:53.012000pt;}
.y159{bottom:53.517333pt;}
.y54{bottom:53.528000pt;}
.y113{bottom:54.618667pt;}
.yb8{bottom:54.629333pt;}
.y73{bottom:54.634667pt;}
.y26{bottom:55.748000pt;}
.y1e0{bottom:56.733333pt;}
.y10e{bottom:59.405333pt;}
.y16c{bottom:59.420000pt;}
.y17b{bottom:66.168000pt;}
.y53{bottom:66.189333pt;}
.ye3{bottom:66.194667pt;}
.y198{bottom:66.200000pt;}
.y21{bottom:66.350000pt;}
.y112{bottom:67.290667pt;}
.y72{bottom:67.296000pt;}
.yb7{bottom:67.301333pt;}
.y1df{bottom:72.813333pt;}
.y10d{bottom:74.732000pt;}
.y16b{bottom:74.746667pt;}
.y25{bottom:75.508000pt;}
.y17a{bottom:78.840000pt;}
.ye2{bottom:78.856000pt;}
.y52{bottom:78.861333pt;}
.y111{bottom:79.962667pt;}
.y71{bottom:79.968000pt;}
.yb6{bottom:79.973333pt;}
.y20{bottom:81.955333pt;}
.y1de{bottom:86.813333pt;}
.y10c{bottom:90.058667pt;}
.y16a{bottom:90.073333pt;}
.y158{bottom:91.501333pt;}
.y179{bottom:91.512000pt;}
.y51{bottom:91.528000pt;}
.y70{bottom:92.576000pt;}
.y92{bottom:92.634667pt;}
.y133{bottom:93.213333pt;}
.y24{bottom:95.268000pt;}
.y1f{bottom:95.293333pt;}
.y1dd{bottom:100.813333pt;}
.y157{bottom:104.173333pt;}
.ye1{bottom:104.184000pt;}
.y50{bottom:104.194667pt;}
.y6f{bottom:105.248000pt;}
.y91{bottom:105.301333pt;}
.y197{bottom:105.304000pt;}
.y110{bottom:105.306667pt;}
.y10b{bottom:105.385333pt;}
.y169{bottom:105.400000pt;}
.y132{bottom:108.540000pt;}
.y27{bottom:116.813333pt;}
.y156{bottom:116.845333pt;}
.ye0{bottom:116.856000pt;}
.y1dc{bottom:116.880000pt;}
.y6e{bottom:117.920000pt;}
.y90{bottom:117.968000pt;}
.y196{bottom:120.630667pt;}
.yb5{bottom:120.700000pt;}
.y10a{bottom:120.712000pt;}
.y168{bottom:120.726667pt;}
.y131{bottom:123.866667pt;}
.y4f{bottom:129.485333pt;}
.y155{bottom:129.517333pt;}
.ydf{bottom:129.528000pt;}
.y6d{bottom:130.592000pt;}
.y8f{bottom:130.640000pt;}
.y1db{bottom:130.880000pt;}
.y195{bottom:135.957333pt;}
.yb4{bottom:136.026667pt;}
.y109{bottom:136.038667pt;}
.y167{bottom:136.053333pt;}
.y130{bottom:139.193333pt;}
.y4e{bottom:142.157333pt;}
.yde{bottom:142.189333pt;}
.y178{bottom:142.200000pt;}
.y6c{bottom:143.264000pt;}
.y1da{bottom:146.960000pt;}
.y194{bottom:151.284000pt;}
.yb3{bottom:151.353333pt;}
.y108{bottom:151.365333pt;}
.y166{bottom:151.380000pt;}
.y1b4{bottom:152.653333pt;}
.y12f{bottom:154.520000pt;}
.y4d{bottom:154.829333pt;}
.ydd{bottom:154.861333pt;}
.y6b{bottom:155.936000pt;}
.y1e{bottom:160.866667pt;}
.y1d9{bottom:160.960000pt;}
.y8e{bottom:166.533333pt;}
.y193{bottom:166.610667pt;}
.y1b3{bottom:166.653333pt;}
.yb2{bottom:166.680000pt;}
.y107{bottom:166.692000pt;}
.y165{bottom:166.706667pt;}
.y4c{bottom:167.501333pt;}
.ydc{bottom:167.517333pt;}
.y154{bottom:167.533333pt;}
.y6a{bottom:168.608000pt;}
.y12e{bottom:169.846667pt;}
.y1d{bottom:174.165333pt;}
.y1d8{bottom:177.040000pt;}
.y4b{bottom:180.173333pt;}
.ydb{bottom:180.189333pt;}
.y69{bottom:181.280000pt;}
.y177{bottom:181.846667pt;}
.y8d{bottom:181.860000pt;}
.y192{bottom:181.937333pt;}
.yb1{bottom:182.006667pt;}
.y106{bottom:182.018667pt;}
.y164{bottom:182.033333pt;}
.y1b2{bottom:182.160000pt;}
.y12d{bottom:185.173333pt;}
.y1d7{bottom:191.040000pt;}
.y4a{bottom:192.845333pt;}
.yda{bottom:192.861333pt;}
.y68{bottom:193.952000pt;}
.y1c{bottom:194.166000pt;}
.y1b1{bottom:196.160000pt;}
.y176{bottom:197.173333pt;}
.y8c{bottom:197.186667pt;}
.y191{bottom:197.264000pt;}
.yb0{bottom:197.333333pt;}
.y105{bottom:197.345333pt;}
.y163{bottom:197.360000pt;}
.y12c{bottom:200.500000pt;}
.y49{bottom:205.517333pt;}
.yd9{bottom:205.522667pt;}
.y67{bottom:206.624000pt;}
.y1d6{bottom:207.120000pt;}
.y1b{bottom:207.504000pt;}
.y1b0{bottom:210.160000pt;}
.y175{bottom:212.500000pt;}
.y8b{bottom:212.513333pt;}
.y153{bottom:212.546667pt;}
.y190{bottom:212.590667pt;}
.yaf{bottom:212.660000pt;}
.y104{bottom:212.672000pt;}
.y162{bottom:212.686667pt;}
.y12b{bottom:215.826667pt;}
.y48{bottom:218.189333pt;}
.yd8{bottom:218.194667pt;}
.y66{bottom:219.296000pt;}
.y1a{bottom:220.842000pt;}
.y1d5{bottom:221.120000pt;}
.y1af{bottom:225.680000pt;}
.y174{bottom:227.826667pt;}
.y8a{bottom:227.840000pt;}
.y152{bottom:227.873333pt;}
.y18f{bottom:227.917333pt;}
.yae{bottom:227.986667pt;}
.y103{bottom:227.998667pt;}
.y161{bottom:228.013333pt;}
.yd7{bottom:230.856000pt;}
.y47{bottom:230.861333pt;}
.y12a{bottom:231.153333pt;}
.y65{bottom:231.968000pt;}
.y19{bottom:234.180000pt;}
.y1d4{bottom:237.200000pt;}
.y1ae{bottom:239.680000pt;}
.y173{bottom:243.153333pt;}
.y89{bottom:243.166667pt;}
.y151{bottom:243.200000pt;}
.y18e{bottom:243.244000pt;}
.yad{bottom:243.313333pt;}
.y102{bottom:243.325333pt;}
.y160{bottom:243.340000pt;}
.yd6{bottom:243.528000pt;}
.y46{bottom:243.533333pt;}
.y64{bottom:244.640000pt;}
.y129{bottom:246.480000pt;}
.y18{bottom:247.518000pt;}
.y1d3{bottom:251.200000pt;}
.y1ad{bottom:255.186667pt;}
.yd5{bottom:256.194667pt;}
.y172{bottom:258.480000pt;}
.y88{bottom:258.493333pt;}
.y150{bottom:258.526667pt;}
.y18d{bottom:258.570667pt;}
.yac{bottom:258.640000pt;}
.y101{bottom:258.652000pt;}
.y15f{bottom:258.666667pt;}
.y17{bottom:260.856000pt;}
.y128{bottom:261.806667pt;}
.y1d2{bottom:267.280000pt;}
.yd4{bottom:268.861333pt;}
.y1ac{bottom:270.693333pt;}
.y171{bottom:273.806667pt;}
.y87{bottom:273.820000pt;}
.y63{bottom:273.840000pt;}
.y14f{bottom:273.853333pt;}
.y18c{bottom:273.897333pt;}
.yab{bottom:273.966667pt;}
.y100{bottom:273.978667pt;}
.y15e{bottom:273.993333pt;}
.y16{bottom:274.194000pt;}
.y127{bottom:277.264000pt;}
.y1d1{bottom:281.280000pt;}
.yd3{bottom:281.522667pt;}
.y1ab{bottom:286.213333pt;}
.y15{bottom:287.532000pt;}
.y45{bottom:289.140000pt;}
.y86{bottom:289.146667pt;}
.y62{bottom:289.166667pt;}
.y14e{bottom:289.180000pt;}
.y18b{bottom:289.224000pt;}
.y170{bottom:289.290667pt;}
.yaa{bottom:289.293333pt;}
.yff{bottom:289.305333pt;}
.y15d{bottom:289.320000pt;}
.y126{bottom:292.590667pt;}
.yd2{bottom:294.194667pt;}
.y1d0{bottom:297.360000pt;}
.y1aa{bottom:300.213333pt;}
.y14{bottom:300.870000pt;}
.y85{bottom:304.473333pt;}
.y44{bottom:304.480000pt;}
.y61{bottom:304.493333pt;}
.y14d{bottom:304.506667pt;}
.y18a{bottom:304.550667pt;}
.y16f{bottom:304.617333pt;}
.ya9{bottom:304.620000pt;}
.yfe{bottom:304.632000pt;}
.y15c{bottom:304.646667pt;}
.yd1{bottom:306.845333pt;}
.y125{bottom:307.917333pt;}
.y1cf{bottom:311.360000pt;}
.y1a9{bottom:315.720000pt;}
.yd0{bottom:319.517333pt;}
.y43{bottom:319.806667pt;}
.y60{bottom:319.820000pt;}
.y14c{bottom:319.833333pt;}
.y189{bottom:319.877333pt;}
.y84{bottom:319.944000pt;}
.ya8{bottom:319.946667pt;}
.yfd{bottom:319.958667pt;}
.y15b{bottom:319.973333pt;}
.y124{bottom:323.244000pt;}
.y1ce{bottom:325.360000pt;}
.y13{bottom:327.533333pt;}
.y1a8{bottom:331.240000pt;}
.ycf{bottom:332.189333pt;}
.y5f{bottom:335.146667pt;}
.y14b{bottom:335.160000pt;}
.y188{bottom:335.204000pt;}
.y83{bottom:335.270667pt;}
.ya7{bottom:335.273333pt;}
.yfc{bottom:335.285333pt;}
.y42{bottom:335.300000pt;}
.y123{bottom:338.570667pt;}
.y1cd{bottom:341.440000pt;}
.yce{bottom:344.861333pt;}
.y1a7{bottom:345.240000pt;}
.y5e{bottom:350.473333pt;}
.y14a{bottom:350.486667pt;}
.y187{bottom:350.530667pt;}
.y82{bottom:350.597333pt;}
.ya6{bottom:350.600000pt;}
.yfb{bottom:350.612000pt;}
.y41{bottom:350.626667pt;}
.y122{bottom:353.897333pt;}
.y1cc{bottom:355.440000pt;}
.ycd{bottom:357.522667pt;}
.y12{bottom:359.494000pt;}
.y1a6{bottom:360.746667pt;}
.y149{bottom:365.813333pt;}
.y5d{bottom:365.826667pt;}
.y186{bottom:365.857333pt;}
.y81{bottom:365.924000pt;}
.ya5{bottom:365.926667pt;}
.yfa{bottom:365.938667pt;}
.y40{bottom:365.953333pt;}
.y121{bottom:369.224000pt;}
.ycc{bottom:370.194667pt;}
.y1cb{bottom:371.520000pt;}
.y11{bottom:372.832000pt;}
.y1a5{bottom:374.746667pt;}
.y148{bottom:381.140000pt;}
.y5c{bottom:381.153333pt;}
.y185{bottom:381.184000pt;}
.y80{bottom:381.250667pt;}
.ya4{bottom:381.253333pt;}
.yf9{bottom:381.265333pt;}
.y3f{bottom:381.280000pt;}
.ycb{bottom:382.861333pt;}
.y1ca{bottom:387.600000pt;}
.y1a4{bottom:390.253333pt;}
.y120{bottom:392.221333pt;}
.y10{bottom:392.832667pt;}
.yca{bottom:395.517333pt;}
.y5b{bottom:396.480000pt;}
.y7f{bottom:396.577333pt;}
.ya3{bottom:396.580000pt;}
.yf8{bottom:396.592000pt;}
.y147{bottom:396.593333pt;}
.y3e{bottom:396.606667pt;}
.y1c9{bottom:403.666667pt;}
.y184{bottom:404.181333pt;}
.y1a3{bottom:404.253333pt;}
.yf{bottom:406.170667pt;}
.yc9{bottom:408.189333pt;}
.y5a{bottom:411.806667pt;}
.y7e{bottom:411.904000pt;}
.ya2{bottom:411.906667pt;}
.yf7{bottom:411.918667pt;}
.y146{bottom:411.920000pt;}
.y3d{bottom:411.933333pt;}
.y1c8{bottom:417.666667pt;}
.ye{bottom:419.508667pt;}
.y1a2{bottom:419.773333pt;}
.yc8{bottom:420.861333pt;}
.y59{bottom:427.160000pt;}
.y7d{bottom:427.230667pt;}
.ya1{bottom:427.233333pt;}
.yf6{bottom:427.245333pt;}
.y145{bottom:427.246667pt;}
.y3c{bottom:427.260000pt;}
.y11f{bottom:430.560000pt;}
.yd{bottom:432.846667pt;}
.yc7{bottom:433.533333pt;}
.y1c7{bottom:433.746667pt;}
.y1a1{bottom:433.773333pt;}
.y58{bottom:442.486667pt;}
.y183{bottom:442.520000pt;}
.y7c{bottom:442.557333pt;}
.ya0{bottom:442.560000pt;}
.yf5{bottom:442.572000pt;}
.y144{bottom:442.573333pt;}
.y3b{bottom:442.586667pt;}
.y11e{bottom:445.886667pt;}
.yc{bottom:446.184667pt;}
.y1c6{bottom:447.746667pt;}
.y1a0{bottom:447.773333pt;}
.y57{bottom:457.813333pt;}
.y182{bottom:457.846667pt;}
.y7b{bottom:457.884000pt;}
.y9f{bottom:457.886667pt;}
.yf4{bottom:457.898667pt;}
.y143{bottom:457.900000pt;}
.y3a{bottom:457.913333pt;}
.yb{bottom:459.522667pt;}
.y11d{bottom:461.213333pt;}
.y19f{bottom:463.280000pt;}
.y1c5{bottom:463.826667pt;}
.ya{bottom:472.860667pt;}
.y56{bottom:473.140000pt;}
.y181{bottom:473.173333pt;}
.yc6{bottom:473.200000pt;}
.y7a{bottom:473.210667pt;}
.y9e{bottom:473.213333pt;}
.yf3{bottom:473.225333pt;}
.y142{bottom:473.226667pt;}
.y39{bottom:473.240000pt;}
.y11c{bottom:476.540000pt;}
.y19e{bottom:477.280000pt;}
.y1c4{bottom:477.826667pt;}
.y9{bottom:486.198667pt;}
.y180{bottom:488.500000pt;}
.yc5{bottom:488.526667pt;}
.y79{bottom:488.537333pt;}
.y9d{bottom:488.540000pt;}
.yf2{bottom:488.552000pt;}
.y141{bottom:488.553333pt;}
.y38{bottom:488.566667pt;}
.y11b{bottom:491.866667pt;}
.y19d{bottom:492.800000pt;}
.y1c3{bottom:493.906667pt;}
.y8{bottom:499.536667pt;}
.y17f{bottom:503.826667pt;}
.yc4{bottom:503.853333pt;}
.y78{bottom:503.864000pt;}
.y9c{bottom:503.866667pt;}
.yf1{bottom:503.878667pt;}
.y140{bottom:503.880000pt;}
.y37{bottom:503.893333pt;}
.y19c{bottom:506.800000pt;}
.y11a{bottom:507.193333pt;}
.y1c2{bottom:507.906667pt;}
.y17e{bottom:519.153333pt;}
.yc3{bottom:519.180000pt;}
.y77{bottom:519.190667pt;}
.y9b{bottom:519.193333pt;}
.yf0{bottom:519.205333pt;}
.y13f{bottom:519.206667pt;}
.y36{bottom:519.220000pt;}
.y19b{bottom:520.800000pt;}
.y119{bottom:522.520000pt;}
.y1c1{bottom:523.986667pt;}
.y7{bottom:526.200000pt;}
.y16e{bottom:526.861333pt;}
.y17d{bottom:534.480000pt;}
.yc2{bottom:534.506667pt;}
.y76{bottom:534.517333pt;}
.y9a{bottom:534.520000pt;}
.yef{bottom:534.532000pt;}
.y13e{bottom:534.533333pt;}
.y35{bottom:534.546667pt;}
.y118{bottom:537.846667pt;}
.y1c0{bottom:540.066667pt;}
.y19a{bottom:542.148000pt;}
.y17c{bottom:549.806667pt;}
.yc1{bottom:549.833333pt;}
.y99{bottom:549.846667pt;}
.yee{bottom:549.858667pt;}
.y13d{bottom:549.860000pt;}
.y34{bottom:549.873333pt;}
.y117{bottom:553.173333pt;}
.y1bf{bottom:556.146667pt;}
.y75{bottom:557.514667pt;}
.yc0{bottom:565.160000pt;}
.y98{bottom:565.173333pt;}
.yed{bottom:565.185333pt;}
.y13c{bottom:565.186667pt;}
.y33{bottom:565.200000pt;}
.y116{bottom:568.500000pt;}
.y1be{bottom:570.146667pt;}
.ybf{bottom:580.486667pt;}
.y97{bottom:580.500000pt;}
.yec{bottom:580.512000pt;}
.y13b{bottom:580.513333pt;}
.y32{bottom:580.526667pt;}
.y115{bottom:583.826667pt;}
.y1bd{bottom:584.146667pt;}
.ybe{bottom:595.813333pt;}
.y96{bottom:595.826667pt;}
.yeb{bottom:595.838667pt;}
.y13a{bottom:595.840000pt;}
.y31{bottom:595.853333pt;}
.y1bc{bottom:598.146667pt;}
.y6{bottom:599.294667pt;}
.ybd{bottom:611.140000pt;}
.y95{bottom:611.153333pt;}
.yea{bottom:611.165333pt;}
.y139{bottom:611.166667pt;}
.y30{bottom:611.180000pt;}
.y5{bottom:612.626667pt;}
.y1bb{bottom:614.226667pt;}
.y1e7{bottom:615.920000pt;}
.ybc{bottom:626.473333pt;}
.y94{bottom:626.480000pt;}
.y199{bottom:626.486667pt;}
.ye9{bottom:626.492000pt;}
.y138{bottom:626.493333pt;}
.y2f{bottom:626.506667pt;}
.y1ba{bottom:628.226667pt;}
.y4{bottom:629.293333pt;}
.y1e6{bottom:629.920000pt;}
.y93{bottom:641.806667pt;}
.ybb{bottom:641.813333pt;}
.ye8{bottom:641.818667pt;}
.y137{bottom:641.820000pt;}
.y2e{bottom:641.833333pt;}
.y1b9{bottom:644.306667pt;}
.y1e5{bottom:645.440000pt;}
.yba{bottom:657.140000pt;}
.ye7{bottom:657.145333pt;}
.y136{bottom:657.146667pt;}
.y2d{bottom:657.160000pt;}
.y1b8{bottom:658.306667pt;}
.y1e4{bottom:659.440000pt;}
.y3{bottom:669.293333pt;}
.ye6{bottom:672.472000pt;}
.y135{bottom:672.473333pt;}
.y2c{bottom:672.486667pt;}
.y1b7{bottom:674.386667pt;}
.y1e3{bottom:674.946667pt;}
.ye5{bottom:687.798667pt;}
.y2b{bottom:687.813333pt;}
.y1b6{bottom:688.386667pt;}
.y1e2{bottom:690.466667pt;}
.y2{bottom:690.626667pt;}
.y2a{bottom:703.140000pt;}
.y1b5{bottom:704.466667pt;}
.y1{bottom:711.960000pt;}
.y29{bottom:718.466667pt;}
.y28{bottom:760.093333pt;}
.h6{height:45.525333pt;}
.h3{height:51.216000pt;}
.he{height:51.258667pt;}
.hf{height:51.280000pt;}
.h10{height:51.301333pt;}
.h12{height:51.344000pt;}
.h9{height:51.429333pt;}
.hd{height:51.472000pt;}
.hb{height:52.032000pt;}
.ha{height:52.053333pt;}
.hc{height:52.074667pt;}
.h11{height:52.096000pt;}
.h13{height:52.160000pt;}
.h4{height:54.061333pt;}
.h5{height:55.080000pt;}
.h14{height:56.906667pt;}
.h15{height:57.813333pt;}
.h7{height:62.597333pt;}
.h8{height:63.594667pt;}
.h2{height:68.288000pt;}
.h1{height:91.050667pt;}
.h0{height:820.000000pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x1{left:47.733333pt;}
.x9{left:48.813333pt;}
.xc{left:67.724000pt;}
.xa{left:68.789333pt;}
.x4{left:76.698000pt;}
.x2{left:79.826667pt;}
.xd{left:87.729333pt;}
.xb{left:88.845333pt;}
.x3{left:117.826667pt;}
.x5{left:215.816000pt;}
.x7{left:242.693333pt;}
.x6{left:275.742000pt;}
.x8{left:366.680000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  