
    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_cde9743c86167d8ef1745316.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_f46994d55830e33785d6e6f1.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_19dd42b619480d0e026ea9dc.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b03e039ee1a8d4865d2ddb7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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_237c11caabdcc642028ea782.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1e3e629253dcb661da14339f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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:-73.530000px;}
.v1{vertical-align:-13.260000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:43.197000px;}
.v4{vertical-align:64.482000px;}
.ls66{letter-spacing:-1.650000px;}
.ls18{letter-spacing:-1.584000px;}
.ls30{letter-spacing:-1.518000px;}
.lsa{letter-spacing:-1.452000px;}
.ls31{letter-spacing:-1.386000px;}
.ls26{letter-spacing:-1.320000px;}
.ls80{letter-spacing:-1.260000px;}
.ls65{letter-spacing:-1.254000px;}
.ls27{letter-spacing:-1.188000px;}
.ls2b{letter-spacing:-1.122000px;}
.ls2c{letter-spacing:-1.056000px;}
.ls1d{letter-spacing:-0.990000px;}
.ls2d{letter-spacing:-0.924000px;}
.ls15{letter-spacing:-0.858000px;}
.ls10{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.726000px;}
.ls64{letter-spacing:-0.693000px;}
.ls17{letter-spacing:-0.660000px;}
.ls1e{letter-spacing:-0.594000px;}
.ls25{letter-spacing:-0.528000px;}
.ls28{letter-spacing:-0.462000px;}
.ls1b{letter-spacing:-0.396000px;}
.ls56{letter-spacing:-0.384000px;}
.ls7f{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.330000px;}
.ls84{letter-spacing:-0.300000px;}
.ls82{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.264000px;}
.lsd{letter-spacing:-0.247500px;}
.ls85{letter-spacing:-0.240000px;}
.ls83{letter-spacing:-0.225000px;}
.lsb{letter-spacing:-0.198000px;}
.ls67{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.066000px;}
.ls13{letter-spacing:-0.057000px;}
.ls55{letter-spacing:-0.049500px;}
.ls7e{letter-spacing:-0.045000px;}
.ls0{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.012000px;}
.ls5b{letter-spacing:0.030000px;}
.ls78{letter-spacing:0.045000px;}
.ls74{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.066000px;}
.ls2e{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.132000px;}
.ls7{letter-spacing:0.198000px;}
.ls4d{letter-spacing:0.210000px;}
.ls50{letter-spacing:0.220500px;}
.ls42{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.264000px;}
.ls75{letter-spacing:0.270000px;}
.ls6e{letter-spacing:0.300000px;}
.ls6f{letter-spacing:0.315000px;}
.ls4c{letter-spacing:0.318000px;}
.ls4{letter-spacing:0.330000px;}
.ls4f{letter-spacing:0.342000px;}
.ls49{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.384000px;}
.ls4e{letter-spacing:0.390000px;}
.ls16{letter-spacing:0.396000px;}
.ls21{letter-spacing:0.462000px;}
.ls9{letter-spacing:0.528000px;}
.ls70{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.594000px;}
.ls5{letter-spacing:0.660000px;}
.ls77{letter-spacing:0.675000px;}
.ls22{letter-spacing:0.726000px;}
.ls81{letter-spacing:0.765000px;}
.ls71{letter-spacing:0.780000px;}
.ls2{letter-spacing:0.792000px;}
.ls76{letter-spacing:0.810000px;}
.ls73{letter-spacing:0.840000px;}
.ls72{letter-spacing:0.855000px;}
.ls20{letter-spacing:0.858000px;}
.ls1{letter-spacing:0.924000px;}
.ls79{letter-spacing:0.960000px;}
.ls2f{letter-spacing:0.990000px;}
.ls7a{letter-spacing:1.020000px;}
.ls6{letter-spacing:1.056000px;}
.ls44{letter-spacing:1.122000px;}
.ls7b{letter-spacing:1.140000px;}
.ls29{letter-spacing:1.188000px;}
.ls7d{letter-spacing:1.200000px;}
.ls7c{letter-spacing:1.215000px;}
.ls57{letter-spacing:1.254000px;}
.ls14{letter-spacing:1.320000px;}
.ls61{letter-spacing:1.452000px;}
.ls62{letter-spacing:1.518000px;}
.ls1a{letter-spacing:1.650000px;}
.ls24{letter-spacing:1.716000px;}
.ls33{letter-spacing:1.782000px;}
.ls69{letter-spacing:1.980000px;}
.ls53{letter-spacing:12.375000px;}
.ls6a{letter-spacing:14.586000px;}
.ls46{letter-spacing:14.718000px;}
.ls47{letter-spacing:14.784000px;}
.ls48{letter-spacing:15.114000px;}
.ls38{letter-spacing:15.180000px;}
.ls3c{letter-spacing:15.280500px;}
.ls3a{letter-spacing:15.444000px;}
.ls39{letter-spacing:15.510000px;}
.ls23{letter-spacing:15.576000px;}
.ls3b{letter-spacing:15.630000px;}
.ls58{letter-spacing:15.708000px;}
.ls41{letter-spacing:15.774000px;}
.ls45{letter-spacing:15.840000px;}
.ls5d{letter-spacing:16.302000px;}
.ls60{letter-spacing:16.368000px;}
.ls5f{letter-spacing:16.434000px;}
.ls52{letter-spacing:16.500000px;}
.ls54{letter-spacing:16.512000px;}
.ls51{letter-spacing:16.566000px;}
.ls5e{letter-spacing:16.599000px;}
.ls3d{letter-spacing:16.632000px;}
.ls40{letter-spacing:16.830000px;}
.ls3e{letter-spacing:17.226000px;}
.ls59{letter-spacing:17.754000px;}
.ls5a{letter-spacing:17.820000px;}
.ls6c{letter-spacing:17.952000px;}
.ls3f{letter-spacing:18.084000px;}
.ls6d{letter-spacing:18.282000px;}
.ls36{letter-spacing:18.348000px;}
.ls68{letter-spacing:18.414000px;}
.ls37{letter-spacing:18.546000px;}
.ls6b{letter-spacing:18.678000px;}
.ls43{letter-spacing:18.810000px;}
.ls34{letter-spacing:18.876000px;}
.ls4b{letter-spacing:19.074000px;}
.ls4a{letter-spacing:19.140000px;}
.ls35{letter-spacing:19.206000px;}
.ls63{letter-spacing:19.404000px;}
.ls2a{letter-spacing:24.024000px;}
.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;}
}
.ws40{word-spacing:-18.150000px;}
.ws8a{word-spacing:-17.952000px;}
.ws86{word-spacing:-17.754000px;}
.ws62{word-spacing:-17.688000px;}
.ws51{word-spacing:-17.556000px;}
.ws6d{word-spacing:-17.490000px;}
.ws8d{word-spacing:-17.424000px;}
.ws52{word-spacing:-17.358000px;}
.ws57{word-spacing:-17.292000px;}
.ws73{word-spacing:-17.160000px;}
.ws8b{word-spacing:-17.094000px;}
.ws8f{word-spacing:-17.028000px;}
.ws80{word-spacing:-16.962000px;}
.ws90{word-spacing:-16.896000px;}
.ws64{word-spacing:-16.830000px;}
.ws41{word-spacing:-16.764000px;}
.ws3e{word-spacing:-16.698000px;}
.ws68{word-spacing:-16.632000px;}
.ws63{word-spacing:-16.566000px;}
.ws1f{word-spacing:-16.500000px;}
.ws3f{word-spacing:-16.434000px;}
.ws58{word-spacing:-16.368000px;}
.ws53{word-spacing:-16.302000px;}
.ws61{word-spacing:-16.236000px;}
.wsa7{word-spacing:-16.200000px;}
.ws3c{word-spacing:-16.170000px;}
.ws55{word-spacing:-16.104000px;}
.ws6b{word-spacing:-16.038000px;}
.wsa4{word-spacing:-16.020000px;}
.ws70{word-spacing:-15.972000px;}
.ws85{word-spacing:-15.906000px;}
.ws3d{word-spacing:-15.840000px;}
.ws23{word-spacing:-15.774000px;}
.ws22{word-spacing:-15.708000px;}
.wsa1{word-spacing:-15.660000px;}
.ws88{word-spacing:-15.576000px;}
.ws9b{word-spacing:-15.540000px;}
.ws74{word-spacing:-15.510000px;}
.ws91{word-spacing:-15.444000px;}
.ws8e{word-spacing:-15.312000px;}
.ws97{word-spacing:-15.300000px;}
.ws81{word-spacing:-15.048000px;}
.ws98{word-spacing:-15.000000px;}
.ws69{word-spacing:-14.982000px;}
.ws54{word-spacing:-14.916000px;}
.ws1{word-spacing:-14.535000px;}
.ws27{word-spacing:-14.250000px;}
.ws26{word-spacing:-14.193000px;}
.wsa2{word-spacing:-13.740000px;}
.ws0{word-spacing:-13.500000px;}
.ws42{word-spacing:-12.576000px;}
.wsa6{word-spacing:-12.465000px;}
.ws6a{word-spacing:-12.384000px;}
.ws87{word-spacing:-12.375000px;}
.ws78{word-spacing:-12.240000px;}
.ws9c{word-spacing:-12.105000px;}
.ws65{word-spacing:-12.096000px;}
.ws9f{word-spacing:-12.060000px;}
.wsa3{word-spacing:-12.015000px;}
.ws25{word-spacing:-12.000000px;}
.ws71{word-spacing:-11.979000px;}
.wsa0{word-spacing:-11.925000px;}
.ws8c{word-spacing:-11.856000px;}
.ws89{word-spacing:-11.682000px;}
.ws82{word-spacing:-11.616000px;}
.ws96{word-spacing:-11.565000px;}
.ws99{word-spacing:-11.250000px;}
.ws9a{word-spacing:-11.205000px;}
.wsa9{word-spacing:-11.025000px;}
.wsa8{word-spacing:-10.980000px;}
.ws9e{word-spacing:-10.890000px;}
.ws1a{word-spacing:-1.767000px;}
.ws1b{word-spacing:-1.482000px;}
.wsa{word-spacing:-1.083000px;}
.ws4{word-spacing:-0.912000px;}
.ws28{word-spacing:-0.858000px;}
.ws2c{word-spacing:-0.792000px;}
.ws36{word-spacing:-0.726000px;}
.ws3a{word-spacing:-0.684000px;}
.ws30{word-spacing:-0.660000px;}
.ws31{word-spacing:-0.594000px;}
.wsb3{word-spacing:-0.540000px;}
.ws49{word-spacing:-0.528000px;}
.ws44{word-spacing:-0.462000px;}
.wsf{word-spacing:-0.456000px;}
.wsad{word-spacing:-0.420000px;}
.ws33{word-spacing:-0.396000px;}
.ws2{word-spacing:-0.381000px;}
.ws4a{word-spacing:-0.330000px;}
.ws50{word-spacing:-0.264000px;}
.ws79{word-spacing:-0.247500px;}
.ws19{word-spacing:-0.228000px;}
.ws2d{word-spacing:-0.198000px;}
.ws5b{word-spacing:-0.132000px;}
.ws10{word-spacing:-0.114000px;}
.ws4b{word-spacing:-0.066000px;}
.ws1c{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.ws29{word-spacing:0.066000px;}
.ws5f{word-spacing:0.132000px;}
.ws39{word-spacing:0.171000px;}
.ws4d{word-spacing:0.198000px;}
.ws7{word-spacing:0.228000px;}
.ws67{word-spacing:0.264000px;}
.ws83{word-spacing:0.297000px;}
.wsb2{word-spacing:0.300000px;}
.ws4c{word-spacing:0.330000px;}
.ws84{word-spacing:0.346500px;}
.ws48{word-spacing:0.396000px;}
.ws6{word-spacing:0.399000px;}
.ws5e{word-spacing:0.462000px;}
.ws76{word-spacing:0.480000px;}
.ws37{word-spacing:0.528000px;}
.wsb0{word-spacing:0.540000px;}
.ws66{word-spacing:0.594000px;}
.ws2a{word-spacing:0.660000px;}
.ws11{word-spacing:0.684000px;}
.wsaf{word-spacing:0.720000px;}
.ws35{word-spacing:0.726000px;}
.ws4e{word-spacing:0.792000px;}
.wsae{word-spacing:0.840000px;}
.ws2b{word-spacing:0.858000px;}
.ws45{word-spacing:0.924000px;}
.wsac{word-spacing:0.960000px;}
.ws46{word-spacing:0.990000px;}
.ws5c{word-spacing:1.056000px;}
.ws34{word-spacing:1.122000px;}
.ws32{word-spacing:1.188000px;}
.wsaa{word-spacing:1.200000px;}
.ws59{word-spacing:1.254000px;}
.ws38{word-spacing:1.320000px;}
.ws43{word-spacing:1.386000px;}
.ws14{word-spacing:1.425000px;}
.wsb1{word-spacing:1.440000px;}
.ws5a{word-spacing:1.452000px;}
.ws3b{word-spacing:1.482000px;}
.wsab{word-spacing:1.500000px;}
.ws2e{word-spacing:1.518000px;}
.ws2f{word-spacing:1.584000px;}
.wsc{word-spacing:1.596000px;}
.ws4f{word-spacing:1.650000px;}
.wsb{word-spacing:1.710000px;}
.ws1d{word-spacing:1.995000px;}
.wse{word-spacing:2.280000px;}
.ws9{word-spacing:2.565000px;}
.ws15{word-spacing:2.679000px;}
.ws5{word-spacing:2.736000px;}
.ws7f{word-spacing:3.120000px;}
.wsd{word-spacing:3.363000px;}
.ws20{word-spacing:3.415500px;}
.ws5d{word-spacing:3.432000px;}
.ws21{word-spacing:3.570000px;}
.ws6f{word-spacing:4.092000px;}
.ws8{word-spacing:4.161000px;}
.ws95{word-spacing:4.554000px;}
.ws16{word-spacing:4.731000px;}
.ws18{word-spacing:4.845000px;}
.ws17{word-spacing:5.130000px;}
.wsa5{word-spacing:5.190000px;}
.ws9d{word-spacing:5.340000px;}
.ws94{word-spacing:5.544000px;}
.ws12{word-spacing:6.099000px;}
.ws13{word-spacing:7.011000px;}
.ws60{word-spacing:7.524000px;}
.ws56{word-spacing:8.184000px;}
.ws1e{word-spacing:8.379000px;}
.ws47{word-spacing:9.900000px;}
.ws93{word-spacing:11.286000px;}
.ws92{word-spacing:16.698000px;}
.ws7d{word-spacing:21.054000px;}
.ws75{word-spacing:21.120000px;}
.ws6e{word-spacing:21.846000px;}
.ws6c{word-spacing:23.100000px;}
.ws7b{word-spacing:24.024000px;}
.ws7c{word-spacing:27.192000px;}
.ws7a{word-spacing:27.390000px;}
.ws77{word-spacing:28.776000px;}
.ws72{word-spacing:29.700000px;}
.ws7e{word-spacing:34.254000px;}
.ws24{word-spacing:35.712000px;}
._b{margin-left:-13.596000px;}
._2a{margin-left:-10.809000px;}
._c{margin-left:-8.910000px;}
._5{margin-left:-7.854000px;}
._e{margin-left:-6.600000px;}
._3{margin-left:-4.845000px;}
._23{margin-left:-3.828000px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.056000px;}
._9{width:1.008000px;}
._2{width:2.052000px;}
._d{width:3.564000px;}
._24{width:6.732000px;}
._25{width:13.992000px;}
._26{width:15.114000px;}
._a{width:16.236000px;}
._8{width:17.358000px;}
._29{width:24.024000px;}
._15{width:30.000000px;}
._4{width:48.576000px;}
._1e{width:84.132000px;}
._10{width:94.680000px;}
._18{width:98.520000px;}
._20{width:99.720000px;}
._1b{width:101.580000px;}
._12{width:110.400000px;}
._22{width:111.600000px;}
._11{width:127.920000px;}
._13{width:129.120000px;}
._19{width:130.320000px;}
._17{width:131.580000px;}
._1f{width:141.600000px;}
._14{width:169.680000px;}
._1d{width:220.596000px;}
._1c{width:332.100000px;}
._1a{width:396.252000px;}
._21{width:426.252000px;}
._16{width:428.916000px;}
._27{width:468.960000px;}
._f{width:480.156000px;}
._28{width:850.005000px;}
._7{width:910.992000px;}
._6{width:1155.552000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:42.666000px;}
.y41{bottom:47.580000px;}
.y102{bottom:49.341000px;}
.y13c{bottom:49.395000px;}
.y15e{bottom:49.461000px;}
.yc0{bottom:49.470000px;}
.y11d{bottom:49.522500px;}
.ydb{bottom:49.539000px;}
.y180{bottom:49.555500px;}
.y7e{bottom:49.572000px;}
.y89{bottom:49.588500px;}
.y98{bottom:49.605000px;}
.y24{bottom:58.412250px;}
.y40{bottom:64.822500px;}
.y101{bottom:66.583500px;}
.y13b{bottom:66.637500px;}
.y15d{bottom:66.703500px;}
.ybf{bottom:66.712500px;}
.y11c{bottom:66.765000px;}
.yda{bottom:66.781500px;}
.y17f{bottom:66.798000px;}
.y7d{bottom:66.814500px;}
.y88{bottom:66.831000px;}
.y97{bottom:66.847500px;}
.y23{bottom:74.158500px;}
.y3f{bottom:82.065000px;}
.y100{bottom:83.826000px;}
.y13a{bottom:83.880000px;}
.y15c{bottom:83.946000px;}
.ybe{bottom:83.955000px;}
.y11b{bottom:84.007500px;}
.yd9{bottom:84.024000px;}
.y17e{bottom:84.040500px;}
.y7c{bottom:84.057000px;}
.y87{bottom:84.073500px;}
.y96{bottom:84.090000px;}
.y22{bottom:89.904750px;}
.y3e{bottom:99.307500px;}
.yff{bottom:101.068500px;}
.y139{bottom:101.122500px;}
.y15b{bottom:101.188500px;}
.ybd{bottom:101.197500px;}
.y11a{bottom:101.250000px;}
.yd8{bottom:101.266500px;}
.y17d{bottom:101.283000px;}
.y7b{bottom:101.299500px;}
.y86{bottom:101.316000px;}
.y95{bottom:101.332500px;}
.y21{bottom:105.651000px;}
.y3d{bottom:116.550000px;}
.yfe{bottom:118.311000px;}
.y138{bottom:118.365000px;}
.y15a{bottom:118.431000px;}
.ybc{bottom:118.440000px;}
.y119{bottom:118.492500px;}
.yd7{bottom:118.509000px;}
.y17c{bottom:118.525500px;}
.y90{bottom:118.542000px;}
.y85{bottom:118.558500px;}
.y94{bottom:118.575000px;}
.y20{bottom:121.397250px;}
.y7a{bottom:127.171500px;}
.y3c{bottom:133.792500px;}
.yfd{bottom:135.553500px;}
.y137{bottom:135.607500px;}
.y159{bottom:135.673500px;}
.ybb{bottom:135.682500px;}
.y118{bottom:135.735000px;}
.yd6{bottom:135.751500px;}
.y17b{bottom:135.768000px;}
.y8f{bottom:135.784500px;}
.y84{bottom:135.801000px;}
.y93{bottom:135.817500px;}
.y1f{bottom:137.143500px;}
.y79{bottom:144.414000px;}
.y3b{bottom:151.035000px;}
.y1b1{bottom:152.505000px;}
.yfc{bottom:152.796000px;}
.y136{bottom:152.850000px;}
.y1e{bottom:152.889750px;}
.y158{bottom:152.916000px;}
.yba{bottom:152.925000px;}
.y117{bottom:152.977500px;}
.yd5{bottom:152.994000px;}
.y17a{bottom:153.010500px;}
.y8e{bottom:153.027000px;}
.y83{bottom:153.043500px;}
.y92{bottom:153.060000px;}
.y1b0{bottom:168.255000px;}
.y3a{bottom:168.277500px;}
.y1d{bottom:168.636000px;}
.y135{bottom:170.092500px;}
.y157{bottom:170.158500px;}
.yb9{bottom:170.167500px;}
.y116{bottom:170.220000px;}
.yd4{bottom:170.236500px;}
.y179{bottom:170.253000px;}
.y8d{bottom:170.269500px;}
.y82{bottom:170.286000px;}
.y91{bottom:170.302500px;}
.y1c{bottom:184.382250px;}
.y39{bottom:185.520000px;}
.y1af{bottom:186.135000px;}
.yfb{bottom:187.297500px;}
.y134{bottom:187.335000px;}
.y156{bottom:187.401000px;}
.yb8{bottom:187.410000px;}
.y115{bottom:187.462500px;}
.yd3{bottom:187.479000px;}
.y178{bottom:187.495500px;}
.y8c{bottom:187.512000px;}
.y81{bottom:187.528500px;}
.y78{bottom:187.545000px;}
.y1b{bottom:200.128500px;}
.y1ae{bottom:201.885000px;}
.y38{bottom:202.762500px;}
.yfa{bottom:204.540000px;}
.y133{bottom:204.577500px;}
.y155{bottom:204.643500px;}
.yb7{bottom:204.652500px;}
.y114{bottom:204.705000px;}
.yd2{bottom:204.721500px;}
.y177{bottom:204.738000px;}
.y8b{bottom:204.754500px;}
.y80{bottom:204.771000px;}
.y77{bottom:204.787500px;}
.y1ad{bottom:219.750000px;}
.y37{bottom:220.005000px;}
.yf9{bottom:221.782500px;}
.y132{bottom:221.820000px;}
.y154{bottom:221.886000px;}
.yb6{bottom:221.895000px;}
.yd1{bottom:221.964000px;}
.y176{bottom:221.980500px;}
.y16a{bottom:221.997000px;}
.y7f{bottom:222.013500px;}
.y76{bottom:222.030000px;}
.y8a{bottom:230.626500px;}
.y1a{bottom:230.880000px;}
.y1ac{bottom:235.500000px;}
.y36{bottom:237.247500px;}
.y131{bottom:239.062500px;}
.y153{bottom:239.128500px;}
.yb5{bottom:239.137500px;}
.y113{bottom:239.206500px;}
.yf8{bottom:239.224500px;}
.y169{bottom:239.239500px;}
.y170{bottom:239.256000px;}
.y75{bottom:239.272500px;}
.y1ab{bottom:253.380000px;}
.y35{bottom:254.490000px;}
.y130{bottom:256.305000px;}
.y152{bottom:256.371000px;}
.yb4{bottom:256.380000px;}
.y112{bottom:256.449000px;}
.yd0{bottom:256.465500px;}
.yf7{bottom:256.467000px;}
.y168{bottom:256.482000px;}
.y16f{bottom:256.498500px;}
.y74{bottom:256.515000px;}
.y19{bottom:266.879250px;}
.y1aa{bottom:269.130000px;}
.y34{bottom:271.732500px;}
.y12f{bottom:273.547500px;}
.y151{bottom:273.613500px;}
.yb3{bottom:273.622500px;}
.y111{bottom:273.691500px;}
.ycf{bottom:273.708000px;}
.yf6{bottom:273.709500px;}
.y167{bottom:273.724500px;}
.y16e{bottom:273.741000px;}
.y73{bottom:273.757500px;}
.y1a9{bottom:287.010000px;}
.y33{bottom:288.975000px;}
.y18{bottom:289.442250px;}
.y12e{bottom:290.790000px;}
.y150{bottom:290.856000px;}
.yb2{bottom:290.865000px;}
.y110{bottom:290.934000px;}
.yce{bottom:290.950500px;}
.yf5{bottom:290.952000px;}
.y166{bottom:290.967000px;}
.y16d{bottom:290.983500px;}
.y72{bottom:291.000000px;}
.y1a8{bottom:302.760000px;}
.y17{bottom:305.188500px;}
.y32{bottom:306.217500px;}
.y12d{bottom:308.032500px;}
.y14f{bottom:308.098500px;}
.yb1{bottom:308.107500px;}
.ycd{bottom:308.193000px;}
.y165{bottom:308.209500px;}
.y16c{bottom:308.226000px;}
.y71{bottom:308.242500px;}
.y1a7{bottom:320.625000px;}
.y16{bottom:320.934750px;}
.y31{bottom:323.535000px;}
.y12c{bottom:325.275000px;}
.y14e{bottom:325.341000px;}
.yb0{bottom:325.350000px;}
.ycc{bottom:325.435500px;}
.y164{bottom:325.452000px;}
.yf4{bottom:325.453500px;}
.y16b{bottom:325.468500px;}
.y70{bottom:325.485000px;}
.y1a6{bottom:336.375000px;}
.y15{bottom:336.681000px;}
.y30{bottom:340.777500px;}
.y14d{bottom:342.583500px;}
.yaf{bottom:342.592500px;}
.ycb{bottom:342.678000px;}
.y163{bottom:342.694500px;}
.yf3{bottom:342.696000px;}
.y18e{bottom:342.711000px;}
.y6f{bottom:342.727500px;}
.y12b{bottom:348.975750px;}
.y14{bottom:352.427250px;}
.y1a5{bottom:354.255000px;}
.y2f{bottom:358.020000px;}
.y12a{bottom:359.775000px;}
.y129{bottom:359.779500px;}
.y14c{bottom:359.826000px;}
.yae{bottom:359.835000px;}
.yca{bottom:359.920500px;}
.y162{bottom:359.937000px;}
.yf2{bottom:359.938500px;}
.y18d{bottom:359.953500px;}
.y6e{bottom:359.970000px;}
.y13{bottom:368.173500px;}
.y1a4{bottom:372.135000px;}
.y2e{bottom:375.262500px;}
.yad{bottom:377.077500px;}
.yc9{bottom:377.163000px;}
.y161{bottom:377.179500px;}
.yf1{bottom:377.181000px;}
.y18c{bottom:377.196000px;}
.y6d{bottom:377.212500px;}
.y12{bottom:383.919750px;}
.y1a3{bottom:387.885000px;}
.y2d{bottom:392.505000px;}
.y128{bottom:394.281000px;}
.yac{bottom:394.320000px;}
.y14b{bottom:394.327500px;}
.y10f{bottom:394.405500px;}
.y160{bottom:394.422000px;}
.yf0{bottom:394.423500px;}
.y18b{bottom:394.438500px;}
.y6c{bottom:394.455000px;}
.y11{bottom:399.666000px;}
.y1a2{bottom:403.635000px;}
.y2c{bottom:409.747500px;}
.y127{bottom:411.523500px;}
.yab{bottom:411.562500px;}
.y14a{bottom:411.570000px;}
.yc8{bottom:411.664500px;}
.yef{bottom:411.666000px;}
.y18a{bottom:411.681000px;}
.y6b{bottom:411.697500px;}
.y10{bottom:415.412250px;}
.y1a1{bottom:421.515000px;}
.y2b{bottom:426.990000px;}
.yaa{bottom:428.805000px;}
.y149{bottom:428.812500px;}
.yc7{bottom:428.907000px;}
.yee{bottom:428.908500px;}
.y189{bottom:428.923500px;}
.y6a{bottom:428.940000px;}
.yf{bottom:431.158500px;}
.y126{bottom:435.225750px;}
.y1a0{bottom:437.265000px;}
.y2a{bottom:444.232500px;}
.y125{bottom:446.025000px;}
.ya9{bottom:446.047500px;}
.y148{bottom:446.055000px;}
.yc6{bottom:446.149500px;}
.yed{bottom:446.151000px;}
.y188{bottom:446.166000px;}
.y69{bottom:446.182500px;}
.ye{bottom:446.904750px;}
.y19f{bottom:455.130000px;}
.y29{bottom:461.475000px;}
.yd{bottom:462.651000px;}
.ya8{bottom:463.290000px;}
.y147{bottom:463.297500px;}
.yc5{bottom:463.392000px;}
.yec{bottom:463.393500px;}
.y187{bottom:463.408500px;}
.y68{bottom:463.425000px;}
.y19e{bottom:470.880000px;}
.yc{bottom:478.397250px;}
.y28{bottom:478.717500px;}
.ya7{bottom:480.532500px;}
.y146{bottom:480.540000px;}
.yc4{bottom:480.634500px;}
.yeb{bottom:480.636000px;}
.y186{bottom:480.651000px;}
.y67{bottom:480.667500px;}
.y19d{bottom:488.760000px;}
.yb{bottom:494.143500px;}
.y27{bottom:495.960000px;}
.ya6{bottom:497.775000px;}
.y145{bottom:497.782500px;}
.y124{bottom:497.820000px;}
.yc3{bottom:497.877000px;}
.yea{bottom:497.878500px;}
.y185{bottom:497.893500px;}
.y66{bottom:497.910000px;}
.y19c{bottom:504.510000px;}
.ya{bottom:509.889750px;}
.y123{bottom:515.062500px;}
.y144{bottom:515.070000px;}
.yc2{bottom:515.119500px;}
.ye9{bottom:515.121000px;}
.y184{bottom:515.136000px;}
.y65{bottom:515.152500px;}
.y19b{bottom:522.390000px;}
.y9{bottom:525.636000px;}
.y122{bottom:532.305000px;}
.y143{bottom:532.312500px;}
.y10e{bottom:532.362000px;}
.ye8{bottom:532.363500px;}
.y183{bottom:532.378500px;}
.y64{bottom:532.395000px;}
.y19a{bottom:538.140000px;}
.yc1{bottom:540.991500px;}
.y8{bottom:541.382250px;}
.y47{bottom:545.585250px;}
.y121{bottom:549.547500px;}
.y142{bottom:549.555000px;}
.y10d{bottom:549.604500px;}
.ye7{bottom:549.606000px;}
.y182{bottom:549.621000px;}
.y63{bottom:549.637500px;}
.ya5{bottom:551.775000px;}
.y4c{bottom:554.562750px;}
.y199{bottom:556.020000px;}
.y7{bottom:557.128500px;}
.y46{bottom:566.589750px;}
.y120{bottom:566.790000px;}
.y141{bottom:566.797500px;}
.y10c{bottom:566.847000px;}
.y175{bottom:566.863500px;}
.y62{bottom:566.880000px;}
.y198{bottom:571.770000px;}
.ya4{bottom:573.525000px;}
.y15f{bottom:575.476500px;}
.y4b{bottom:575.567250px;}
.y11f{bottom:584.032500px;}
.y140{bottom:584.040000px;}
.y10b{bottom:584.089500px;}
.y174{bottom:584.106000px;}
.ye6{bottom:584.107500px;}
.y61{bottom:584.122500px;}
.y45{bottom:587.594250px;}
.y6{bottom:587.880000px;}
.ya3{bottom:589.275000px;}
.y197{bottom:589.635000px;}
.y4a{bottom:596.571750px;}
.y13f{bottom:601.282500px;}
.y10a{bottom:601.332000px;}
.y173{bottom:601.348500px;}
.ye5{bottom:601.350000px;}
.y60{bottom:601.365000px;}
.y44{bottom:602.599500px;}
.ya2{bottom:605.025000px;}
.y196{bottom:607.515000px;}
.y49{bottom:617.576250px;}
.y43{bottom:617.604750px;}
.y13e{bottom:618.532500px;}
.y109{bottom:618.574500px;}
.y172{bottom:618.591000px;}
.ye4{bottom:618.592500px;}
.y5f{bottom:618.607500px;}
.ya1{bottom:620.775000px;}
.y195{bottom:623.265000px;}
.y11e{bottom:627.204000px;}
.y48{bottom:632.581500px;}
.y42{bottom:632.610000px;}
.y13d{bottom:635.833500px;}
.ye3{bottom:635.835000px;}
.y5e{bottom:635.850000px;}
.y194{bottom:641.145000px;}
.ya0{bottom:642.525000px;}
.y108{bottom:653.076000px;}
.ye2{bottom:653.077500px;}
.y5d{bottom:653.092500px;}
.y193{bottom:656.895000px;}
.y53{bottom:660.270000px;}
.y9f{bottom:664.275000px;}
.y107{bottom:670.318500px;}
.ye1{bottom:670.320000px;}
.y5c{bottom:670.335000px;}
.y192{bottom:672.645000px;}
.y106{bottom:687.561000px;}
.ye0{bottom:687.562500px;}
.y5b{bottom:687.577500px;}
.y191{bottom:690.525000px;}
.y9e{bottom:695.775000px;}
.y105{bottom:704.803500px;}
.ydf{bottom:704.805000px;}
.y5a{bottom:704.820000px;}
.y190{bottom:706.275000px;}
.y5{bottom:707.208000px;}
.y9d{bottom:717.525000px;}
.y104{bottom:722.046000px;}
.yde{bottom:722.047500px;}
.y59{bottom:722.062500px;}
.y4{bottom:722.206500px;}
.y52{bottom:726.990000px;}
.y18f{bottom:730.659000px;}
.y9c{bottom:733.275000px;}
.y3{bottom:737.205000px;}
.y103{bottom:739.288500px;}
.ydd{bottom:739.290000px;}
.y58{bottom:739.305000px;}
.y9b{bottom:749.025000px;}
.y51{bottom:749.505000px;}
.y2{bottom:755.955000px;}
.y171{bottom:756.531000px;}
.ydc{bottom:756.532500px;}
.y57{bottom:756.547500px;}
.y9a{bottom:764.775000px;}
.y50{bottom:765.251250px;}
.y181{bottom:773.773500px;}
.y56{bottom:773.790000px;}
.y4f{bottom:780.997500px;}
.y99{bottom:786.525000px;}
.y55{bottom:791.032500px;}
.y4e{bottom:796.743750px;}
.y1{bottom:800.955000px;}
.y54{bottom:808.275000px;}
.y4d{bottom:812.490000px;}
.y26{bottom:855.105000px;}
.h7{height:51.216000px;}
.hd{height:53.658000px;}
.h3{height:57.618000px;}
.h4{height:60.819000px;}
.h5{height:61.539000px;}
.h6{height:61.788000px;}
.ha{height:64.020000px;}
.he{height:65.040000px;}
.h8{height:70.422000px;}
.h9{height:71.544000px;}
.h2{height:76.824000px;}
.h1{height:102.432000px;}
.hb{height:113.619000px;}
.hc{height:118.140000px;}
.h0{height:922.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x1{left:53.700000px;}
.x3{left:54.915000px;}
.xe{left:70.480500px;}
.xd{left:76.189500px;}
.x4{left:77.403000px;}
.x10{left:99.937500px;}
.x9{left:103.367250px;}
.x5{left:111.675000px;}
.x7{left:115.109250px;}
.x8{left:126.423750px;}
.xa{left:143.067750px;}
.x6{left:146.872500px;}
.x13{left:258.583500px;}
.x11{left:264.510000px;}
.xc{left:274.245000px;}
.x12{left:284.037000px;}
.xb{left:311.417250px;}
.x15{left:314.712000px;}
.x14{left:316.875000px;}
.xf{left:351.345000px;}
.x2{left:424.755000px;}
@media print{
.v2{vertical-align:-65.360000pt;}
.v1{vertical-align:-11.786667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:38.397333pt;}
.v4{vertical-align:57.317333pt;}
.ls66{letter-spacing:-1.466667pt;}
.ls18{letter-spacing:-1.408000pt;}
.ls30{letter-spacing:-1.349333pt;}
.lsa{letter-spacing:-1.290667pt;}
.ls31{letter-spacing:-1.232000pt;}
.ls26{letter-spacing:-1.173333pt;}
.ls80{letter-spacing:-1.120000pt;}
.ls65{letter-spacing:-1.114667pt;}
.ls27{letter-spacing:-1.056000pt;}
.ls2b{letter-spacing:-0.997333pt;}
.ls2c{letter-spacing:-0.938667pt;}
.ls1d{letter-spacing:-0.880000pt;}
.ls2d{letter-spacing:-0.821333pt;}
.ls15{letter-spacing:-0.762667pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.645333pt;}
.ls64{letter-spacing:-0.616000pt;}
.ls17{letter-spacing:-0.586667pt;}
.ls1e{letter-spacing:-0.528000pt;}
.ls25{letter-spacing:-0.469333pt;}
.ls28{letter-spacing:-0.410667pt;}
.ls1b{letter-spacing:-0.352000pt;}
.ls56{letter-spacing:-0.341333pt;}
.ls7f{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.293333pt;}
.ls84{letter-spacing:-0.266667pt;}
.ls82{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.234667pt;}
.lsd{letter-spacing:-0.220000pt;}
.ls85{letter-spacing:-0.213333pt;}
.ls83{letter-spacing:-0.200000pt;}
.lsb{letter-spacing:-0.176000pt;}
.ls67{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls13{letter-spacing:-0.050667pt;}
.ls55{letter-spacing:-0.044000pt;}
.ls7e{letter-spacing:-0.040000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.010667pt;}
.ls5b{letter-spacing:0.026667pt;}
.ls78{letter-spacing:0.040000pt;}
.ls74{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.058667pt;}
.ls2e{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.117333pt;}
.ls7{letter-spacing:0.176000pt;}
.ls4d{letter-spacing:0.186667pt;}
.ls50{letter-spacing:0.196000pt;}
.ls42{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.234667pt;}
.ls75{letter-spacing:0.240000pt;}
.ls6e{letter-spacing:0.266667pt;}
.ls6f{letter-spacing:0.280000pt;}
.ls4c{letter-spacing:0.282667pt;}
.ls4{letter-spacing:0.293333pt;}
.ls4f{letter-spacing:0.304000pt;}
.ls49{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.341333pt;}
.ls4e{letter-spacing:0.346667pt;}
.ls16{letter-spacing:0.352000pt;}
.ls21{letter-spacing:0.410667pt;}
.ls9{letter-spacing:0.469333pt;}
.ls70{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.528000pt;}
.ls5{letter-spacing:0.586667pt;}
.ls77{letter-spacing:0.600000pt;}
.ls22{letter-spacing:0.645333pt;}
.ls81{letter-spacing:0.680000pt;}
.ls71{letter-spacing:0.693333pt;}
.ls2{letter-spacing:0.704000pt;}
.ls76{letter-spacing:0.720000pt;}
.ls73{letter-spacing:0.746667pt;}
.ls72{letter-spacing:0.760000pt;}
.ls20{letter-spacing:0.762667pt;}
.ls1{letter-spacing:0.821333pt;}
.ls79{letter-spacing:0.853333pt;}
.ls2f{letter-spacing:0.880000pt;}
.ls7a{letter-spacing:0.906667pt;}
.ls6{letter-spacing:0.938667pt;}
.ls44{letter-spacing:0.997333pt;}
.ls7b{letter-spacing:1.013333pt;}
.ls29{letter-spacing:1.056000pt;}
.ls7d{letter-spacing:1.066667pt;}
.ls7c{letter-spacing:1.080000pt;}
.ls57{letter-spacing:1.114667pt;}
.ls14{letter-spacing:1.173333pt;}
.ls61{letter-spacing:1.290667pt;}
.ls62{letter-spacing:1.349333pt;}
.ls1a{letter-spacing:1.466667pt;}
.ls24{letter-spacing:1.525333pt;}
.ls33{letter-spacing:1.584000pt;}
.ls69{letter-spacing:1.760000pt;}
.ls53{letter-spacing:11.000000pt;}
.ls6a{letter-spacing:12.965333pt;}
.ls46{letter-spacing:13.082667pt;}
.ls47{letter-spacing:13.141333pt;}
.ls48{letter-spacing:13.434667pt;}
.ls38{letter-spacing:13.493333pt;}
.ls3c{letter-spacing:13.582667pt;}
.ls3a{letter-spacing:13.728000pt;}
.ls39{letter-spacing:13.786667pt;}
.ls23{letter-spacing:13.845333pt;}
.ls3b{letter-spacing:13.893333pt;}
.ls58{letter-spacing:13.962667pt;}
.ls41{letter-spacing:14.021333pt;}
.ls45{letter-spacing:14.080000pt;}
.ls5d{letter-spacing:14.490667pt;}
.ls60{letter-spacing:14.549333pt;}
.ls5f{letter-spacing:14.608000pt;}
.ls52{letter-spacing:14.666667pt;}
.ls54{letter-spacing:14.677333pt;}
.ls51{letter-spacing:14.725333pt;}
.ls5e{letter-spacing:14.754667pt;}
.ls3d{letter-spacing:14.784000pt;}
.ls40{letter-spacing:14.960000pt;}
.ls3e{letter-spacing:15.312000pt;}
.ls59{letter-spacing:15.781333pt;}
.ls5a{letter-spacing:15.840000pt;}
.ls6c{letter-spacing:15.957333pt;}
.ls3f{letter-spacing:16.074667pt;}
.ls6d{letter-spacing:16.250667pt;}
.ls36{letter-spacing:16.309333pt;}
.ls68{letter-spacing:16.368000pt;}
.ls37{letter-spacing:16.485333pt;}
.ls6b{letter-spacing:16.602667pt;}
.ls43{letter-spacing:16.720000pt;}
.ls34{letter-spacing:16.778667pt;}
.ls4b{letter-spacing:16.954667pt;}
.ls4a{letter-spacing:17.013333pt;}
.ls35{letter-spacing:17.072000pt;}
.ls63{letter-spacing:17.248000pt;}
.ls2a{letter-spacing:21.354667pt;}
.ws40{word-spacing:-16.133333pt;}
.ws8a{word-spacing:-15.957333pt;}
.ws86{word-spacing:-15.781333pt;}
.ws62{word-spacing:-15.722667pt;}
.ws51{word-spacing:-15.605333pt;}
.ws6d{word-spacing:-15.546667pt;}
.ws8d{word-spacing:-15.488000pt;}
.ws52{word-spacing:-15.429333pt;}
.ws57{word-spacing:-15.370667pt;}
.ws73{word-spacing:-15.253333pt;}
.ws8b{word-spacing:-15.194667pt;}
.ws8f{word-spacing:-15.136000pt;}
.ws80{word-spacing:-15.077333pt;}
.ws90{word-spacing:-15.018667pt;}
.ws64{word-spacing:-14.960000pt;}
.ws41{word-spacing:-14.901333pt;}
.ws3e{word-spacing:-14.842667pt;}
.ws68{word-spacing:-14.784000pt;}
.ws63{word-spacing:-14.725333pt;}
.ws1f{word-spacing:-14.666667pt;}
.ws3f{word-spacing:-14.608000pt;}
.ws58{word-spacing:-14.549333pt;}
.ws53{word-spacing:-14.490667pt;}
.ws61{word-spacing:-14.432000pt;}
.wsa7{word-spacing:-14.400000pt;}
.ws3c{word-spacing:-14.373333pt;}
.ws55{word-spacing:-14.314667pt;}
.ws6b{word-spacing:-14.256000pt;}
.wsa4{word-spacing:-14.240000pt;}
.ws70{word-spacing:-14.197333pt;}
.ws85{word-spacing:-14.138667pt;}
.ws3d{word-spacing:-14.080000pt;}
.ws23{word-spacing:-14.021333pt;}
.ws22{word-spacing:-13.962667pt;}
.wsa1{word-spacing:-13.920000pt;}
.ws88{word-spacing:-13.845333pt;}
.ws9b{word-spacing:-13.813333pt;}
.ws74{word-spacing:-13.786667pt;}
.ws91{word-spacing:-13.728000pt;}
.ws8e{word-spacing:-13.610667pt;}
.ws97{word-spacing:-13.600000pt;}
.ws81{word-spacing:-13.376000pt;}
.ws98{word-spacing:-13.333333pt;}
.ws69{word-spacing:-13.317333pt;}
.ws54{word-spacing:-13.258667pt;}
.ws1{word-spacing:-12.920000pt;}
.ws27{word-spacing:-12.666667pt;}
.ws26{word-spacing:-12.616000pt;}
.wsa2{word-spacing:-12.213333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws42{word-spacing:-11.178667pt;}
.wsa6{word-spacing:-11.080000pt;}
.ws6a{word-spacing:-11.008000pt;}
.ws87{word-spacing:-11.000000pt;}
.ws78{word-spacing:-10.880000pt;}
.ws9c{word-spacing:-10.760000pt;}
.ws65{word-spacing:-10.752000pt;}
.ws9f{word-spacing:-10.720000pt;}
.wsa3{word-spacing:-10.680000pt;}
.ws25{word-spacing:-10.666667pt;}
.ws71{word-spacing:-10.648000pt;}
.wsa0{word-spacing:-10.600000pt;}
.ws8c{word-spacing:-10.538667pt;}
.ws89{word-spacing:-10.384000pt;}
.ws82{word-spacing:-10.325333pt;}
.ws96{word-spacing:-10.280000pt;}
.ws99{word-spacing:-10.000000pt;}
.ws9a{word-spacing:-9.960000pt;}
.wsa9{word-spacing:-9.800000pt;}
.wsa8{word-spacing:-9.760000pt;}
.ws9e{word-spacing:-9.680000pt;}
.ws1a{word-spacing:-1.570667pt;}
.ws1b{word-spacing:-1.317333pt;}
.wsa{word-spacing:-0.962667pt;}
.ws4{word-spacing:-0.810667pt;}
.ws28{word-spacing:-0.762667pt;}
.ws2c{word-spacing:-0.704000pt;}
.ws36{word-spacing:-0.645333pt;}
.ws3a{word-spacing:-0.608000pt;}
.ws30{word-spacing:-0.586667pt;}
.ws31{word-spacing:-0.528000pt;}
.wsb3{word-spacing:-0.480000pt;}
.ws49{word-spacing:-0.469333pt;}
.ws44{word-spacing:-0.410667pt;}
.wsf{word-spacing:-0.405333pt;}
.wsad{word-spacing:-0.373333pt;}
.ws33{word-spacing:-0.352000pt;}
.ws2{word-spacing:-0.338667pt;}
.ws4a{word-spacing:-0.293333pt;}
.ws50{word-spacing:-0.234667pt;}
.ws79{word-spacing:-0.220000pt;}
.ws19{word-spacing:-0.202667pt;}
.ws2d{word-spacing:-0.176000pt;}
.ws5b{word-spacing:-0.117333pt;}
.ws10{word-spacing:-0.101333pt;}
.ws4b{word-spacing:-0.058667pt;}
.ws1c{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.ws29{word-spacing:0.058667pt;}
.ws5f{word-spacing:0.117333pt;}
.ws39{word-spacing:0.152000pt;}
.ws4d{word-spacing:0.176000pt;}
.ws7{word-spacing:0.202667pt;}
.ws67{word-spacing:0.234667pt;}
.ws83{word-spacing:0.264000pt;}
.wsb2{word-spacing:0.266667pt;}
.ws4c{word-spacing:0.293333pt;}
.ws84{word-spacing:0.308000pt;}
.ws48{word-spacing:0.352000pt;}
.ws6{word-spacing:0.354667pt;}
.ws5e{word-spacing:0.410667pt;}
.ws76{word-spacing:0.426667pt;}
.ws37{word-spacing:0.469333pt;}
.wsb0{word-spacing:0.480000pt;}
.ws66{word-spacing:0.528000pt;}
.ws2a{word-spacing:0.586667pt;}
.ws11{word-spacing:0.608000pt;}
.wsaf{word-spacing:0.640000pt;}
.ws35{word-spacing:0.645333pt;}
.ws4e{word-spacing:0.704000pt;}
.wsae{word-spacing:0.746667pt;}
.ws2b{word-spacing:0.762667pt;}
.ws45{word-spacing:0.821333pt;}
.wsac{word-spacing:0.853333pt;}
.ws46{word-spacing:0.880000pt;}
.ws5c{word-spacing:0.938667pt;}
.ws34{word-spacing:0.997333pt;}
.ws32{word-spacing:1.056000pt;}
.wsaa{word-spacing:1.066667pt;}
.ws59{word-spacing:1.114667pt;}
.ws38{word-spacing:1.173333pt;}
.ws43{word-spacing:1.232000pt;}
.ws14{word-spacing:1.266667pt;}
.wsb1{word-spacing:1.280000pt;}
.ws5a{word-spacing:1.290667pt;}
.ws3b{word-spacing:1.317333pt;}
.wsab{word-spacing:1.333333pt;}
.ws2e{word-spacing:1.349333pt;}
.ws2f{word-spacing:1.408000pt;}
.wsc{word-spacing:1.418667pt;}
.ws4f{word-spacing:1.466667pt;}
.wsb{word-spacing:1.520000pt;}
.ws1d{word-spacing:1.773333pt;}
.wse{word-spacing:2.026667pt;}
.ws9{word-spacing:2.280000pt;}
.ws15{word-spacing:2.381333pt;}
.ws5{word-spacing:2.432000pt;}
.ws7f{word-spacing:2.773333pt;}
.wsd{word-spacing:2.989333pt;}
.ws20{word-spacing:3.036000pt;}
.ws5d{word-spacing:3.050667pt;}
.ws21{word-spacing:3.173333pt;}
.ws6f{word-spacing:3.637333pt;}
.ws8{word-spacing:3.698667pt;}
.ws95{word-spacing:4.048000pt;}
.ws16{word-spacing:4.205333pt;}
.ws18{word-spacing:4.306667pt;}
.ws17{word-spacing:4.560000pt;}
.wsa5{word-spacing:4.613333pt;}
.ws9d{word-spacing:4.746667pt;}
.ws94{word-spacing:4.928000pt;}
.ws12{word-spacing:5.421333pt;}
.ws13{word-spacing:6.232000pt;}
.ws60{word-spacing:6.688000pt;}
.ws56{word-spacing:7.274667pt;}
.ws1e{word-spacing:7.448000pt;}
.ws47{word-spacing:8.800000pt;}
.ws93{word-spacing:10.032000pt;}
.ws92{word-spacing:14.842667pt;}
.ws7d{word-spacing:18.714667pt;}
.ws75{word-spacing:18.773333pt;}
.ws6e{word-spacing:19.418667pt;}
.ws6c{word-spacing:20.533333pt;}
.ws7b{word-spacing:21.354667pt;}
.ws7c{word-spacing:24.170667pt;}
.ws7a{word-spacing:24.346667pt;}
.ws77{word-spacing:25.578667pt;}
.ws72{word-spacing:26.400000pt;}
.ws7e{word-spacing:30.448000pt;}
.ws24{word-spacing:31.744000pt;}
._b{margin-left:-12.085333pt;}
._2a{margin-left:-9.608000pt;}
._c{margin-left:-7.920000pt;}
._5{margin-left:-6.981333pt;}
._e{margin-left:-5.866667pt;}
._3{margin-left:-4.306667pt;}
._23{margin-left:-3.402667pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-0.938667pt;}
._9{width:0.896000pt;}
._2{width:1.824000pt;}
._d{width:3.168000pt;}
._24{width:5.984000pt;}
._25{width:12.437333pt;}
._26{width:13.434667pt;}
._a{width:14.432000pt;}
._8{width:15.429333pt;}
._29{width:21.354667pt;}
._15{width:26.666667pt;}
._4{width:43.178667pt;}
._1e{width:74.784000pt;}
._10{width:84.160000pt;}
._18{width:87.573333pt;}
._20{width:88.640000pt;}
._1b{width:90.293333pt;}
._12{width:98.133333pt;}
._22{width:99.200000pt;}
._11{width:113.706667pt;}
._13{width:114.773333pt;}
._19{width:115.840000pt;}
._17{width:116.960000pt;}
._1f{width:125.866667pt;}
._14{width:150.826667pt;}
._1d{width:196.085333pt;}
._1c{width:295.200000pt;}
._1a{width:352.224000pt;}
._21{width:378.890667pt;}
._16{width:381.258667pt;}
._27{width:416.853333pt;}
._f{width:426.805333pt;}
._28{width:755.560000pt;}
._7{width:809.770667pt;}
._6{width:1027.157333pt;}
.fs8{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:37.925333pt;}
.y41{bottom:42.293333pt;}
.y102{bottom:43.858667pt;}
.y13c{bottom:43.906667pt;}
.y15e{bottom:43.965333pt;}
.yc0{bottom:43.973333pt;}
.y11d{bottom:44.020000pt;}
.ydb{bottom:44.034667pt;}
.y180{bottom:44.049333pt;}
.y7e{bottom:44.064000pt;}
.y89{bottom:44.078667pt;}
.y98{bottom:44.093333pt;}
.y24{bottom:51.922000pt;}
.y40{bottom:57.620000pt;}
.y101{bottom:59.185333pt;}
.y13b{bottom:59.233333pt;}
.y15d{bottom:59.292000pt;}
.ybf{bottom:59.300000pt;}
.y11c{bottom:59.346667pt;}
.yda{bottom:59.361333pt;}
.y17f{bottom:59.376000pt;}
.y7d{bottom:59.390667pt;}
.y88{bottom:59.405333pt;}
.y97{bottom:59.420000pt;}
.y23{bottom:65.918667pt;}
.y3f{bottom:72.946667pt;}
.y100{bottom:74.512000pt;}
.y13a{bottom:74.560000pt;}
.y15c{bottom:74.618667pt;}
.ybe{bottom:74.626667pt;}
.y11b{bottom:74.673333pt;}
.yd9{bottom:74.688000pt;}
.y17e{bottom:74.702667pt;}
.y7c{bottom:74.717333pt;}
.y87{bottom:74.732000pt;}
.y96{bottom:74.746667pt;}
.y22{bottom:79.915333pt;}
.y3e{bottom:88.273333pt;}
.yff{bottom:89.838667pt;}
.y139{bottom:89.886667pt;}
.y15b{bottom:89.945333pt;}
.ybd{bottom:89.953333pt;}
.y11a{bottom:90.000000pt;}
.yd8{bottom:90.014667pt;}
.y17d{bottom:90.029333pt;}
.y7b{bottom:90.044000pt;}
.y86{bottom:90.058667pt;}
.y95{bottom:90.073333pt;}
.y21{bottom:93.912000pt;}
.y3d{bottom:103.600000pt;}
.yfe{bottom:105.165333pt;}
.y138{bottom:105.213333pt;}
.y15a{bottom:105.272000pt;}
.ybc{bottom:105.280000pt;}
.y119{bottom:105.326667pt;}
.yd7{bottom:105.341333pt;}
.y17c{bottom:105.356000pt;}
.y90{bottom:105.370667pt;}
.y85{bottom:105.385333pt;}
.y94{bottom:105.400000pt;}
.y20{bottom:107.908667pt;}
.y7a{bottom:113.041333pt;}
.y3c{bottom:118.926667pt;}
.yfd{bottom:120.492000pt;}
.y137{bottom:120.540000pt;}
.y159{bottom:120.598667pt;}
.ybb{bottom:120.606667pt;}
.y118{bottom:120.653333pt;}
.yd6{bottom:120.668000pt;}
.y17b{bottom:120.682667pt;}
.y8f{bottom:120.697333pt;}
.y84{bottom:120.712000pt;}
.y93{bottom:120.726667pt;}
.y1f{bottom:121.905333pt;}
.y79{bottom:128.368000pt;}
.y3b{bottom:134.253333pt;}
.y1b1{bottom:135.560000pt;}
.yfc{bottom:135.818667pt;}
.y136{bottom:135.866667pt;}
.y1e{bottom:135.902000pt;}
.y158{bottom:135.925333pt;}
.yba{bottom:135.933333pt;}
.y117{bottom:135.980000pt;}
.yd5{bottom:135.994667pt;}
.y17a{bottom:136.009333pt;}
.y8e{bottom:136.024000pt;}
.y83{bottom:136.038667pt;}
.y92{bottom:136.053333pt;}
.y1b0{bottom:149.560000pt;}
.y3a{bottom:149.580000pt;}
.y1d{bottom:149.898667pt;}
.y135{bottom:151.193333pt;}
.y157{bottom:151.252000pt;}
.yb9{bottom:151.260000pt;}
.y116{bottom:151.306667pt;}
.yd4{bottom:151.321333pt;}
.y179{bottom:151.336000pt;}
.y8d{bottom:151.350667pt;}
.y82{bottom:151.365333pt;}
.y91{bottom:151.380000pt;}
.y1c{bottom:163.895333pt;}
.y39{bottom:164.906667pt;}
.y1af{bottom:165.453333pt;}
.yfb{bottom:166.486667pt;}
.y134{bottom:166.520000pt;}
.y156{bottom:166.578667pt;}
.yb8{bottom:166.586667pt;}
.y115{bottom:166.633333pt;}
.yd3{bottom:166.648000pt;}
.y178{bottom:166.662667pt;}
.y8c{bottom:166.677333pt;}
.y81{bottom:166.692000pt;}
.y78{bottom:166.706667pt;}
.y1b{bottom:177.892000pt;}
.y1ae{bottom:179.453333pt;}
.y38{bottom:180.233333pt;}
.yfa{bottom:181.813333pt;}
.y133{bottom:181.846667pt;}
.y155{bottom:181.905333pt;}
.yb7{bottom:181.913333pt;}
.y114{bottom:181.960000pt;}
.yd2{bottom:181.974667pt;}
.y177{bottom:181.989333pt;}
.y8b{bottom:182.004000pt;}
.y80{bottom:182.018667pt;}
.y77{bottom:182.033333pt;}
.y1ad{bottom:195.333333pt;}
.y37{bottom:195.560000pt;}
.yf9{bottom:197.140000pt;}
.y132{bottom:197.173333pt;}
.y154{bottom:197.232000pt;}
.yb6{bottom:197.240000pt;}
.yd1{bottom:197.301333pt;}
.y176{bottom:197.316000pt;}
.y16a{bottom:197.330667pt;}
.y7f{bottom:197.345333pt;}
.y76{bottom:197.360000pt;}
.y8a{bottom:205.001333pt;}
.y1a{bottom:205.226667pt;}
.y1ac{bottom:209.333333pt;}
.y36{bottom:210.886667pt;}
.y131{bottom:212.500000pt;}
.y153{bottom:212.558667pt;}
.yb5{bottom:212.566667pt;}
.y113{bottom:212.628000pt;}
.yf8{bottom:212.644000pt;}
.y169{bottom:212.657333pt;}
.y170{bottom:212.672000pt;}
.y75{bottom:212.686667pt;}
.y1ab{bottom:225.226667pt;}
.y35{bottom:226.213333pt;}
.y130{bottom:227.826667pt;}
.y152{bottom:227.885333pt;}
.yb4{bottom:227.893333pt;}
.y112{bottom:227.954667pt;}
.yd0{bottom:227.969333pt;}
.yf7{bottom:227.970667pt;}
.y168{bottom:227.984000pt;}
.y16f{bottom:227.998667pt;}
.y74{bottom:228.013333pt;}
.y19{bottom:237.226000pt;}
.y1aa{bottom:239.226667pt;}
.y34{bottom:241.540000pt;}
.y12f{bottom:243.153333pt;}
.y151{bottom:243.212000pt;}
.yb3{bottom:243.220000pt;}
.y111{bottom:243.281333pt;}
.ycf{bottom:243.296000pt;}
.yf6{bottom:243.297333pt;}
.y167{bottom:243.310667pt;}
.y16e{bottom:243.325333pt;}
.y73{bottom:243.340000pt;}
.y1a9{bottom:255.120000pt;}
.y33{bottom:256.866667pt;}
.y18{bottom:257.282000pt;}
.y12e{bottom:258.480000pt;}
.y150{bottom:258.538667pt;}
.yb2{bottom:258.546667pt;}
.y110{bottom:258.608000pt;}
.yce{bottom:258.622667pt;}
.yf5{bottom:258.624000pt;}
.y166{bottom:258.637333pt;}
.y16d{bottom:258.652000pt;}
.y72{bottom:258.666667pt;}
.y1a8{bottom:269.120000pt;}
.y17{bottom:271.278667pt;}
.y32{bottom:272.193333pt;}
.y12d{bottom:273.806667pt;}
.y14f{bottom:273.865333pt;}
.yb1{bottom:273.873333pt;}
.ycd{bottom:273.949333pt;}
.y165{bottom:273.964000pt;}
.y16c{bottom:273.978667pt;}
.y71{bottom:273.993333pt;}
.y1a7{bottom:285.000000pt;}
.y16{bottom:285.275333pt;}
.y31{bottom:287.586667pt;}
.y12c{bottom:289.133333pt;}
.y14e{bottom:289.192000pt;}
.yb0{bottom:289.200000pt;}
.ycc{bottom:289.276000pt;}
.y164{bottom:289.290667pt;}
.yf4{bottom:289.292000pt;}
.y16b{bottom:289.305333pt;}
.y70{bottom:289.320000pt;}
.y1a6{bottom:299.000000pt;}
.y15{bottom:299.272000pt;}
.y30{bottom:302.913333pt;}
.y14d{bottom:304.518667pt;}
.yaf{bottom:304.526667pt;}
.ycb{bottom:304.602667pt;}
.y163{bottom:304.617333pt;}
.yf3{bottom:304.618667pt;}
.y18e{bottom:304.632000pt;}
.y6f{bottom:304.646667pt;}
.y12b{bottom:310.200667pt;}
.y14{bottom:313.268667pt;}
.y1a5{bottom:314.893333pt;}
.y2f{bottom:318.240000pt;}
.y12a{bottom:319.800000pt;}
.y129{bottom:319.804000pt;}
.y14c{bottom:319.845333pt;}
.yae{bottom:319.853333pt;}
.yca{bottom:319.929333pt;}
.y162{bottom:319.944000pt;}
.yf2{bottom:319.945333pt;}
.y18d{bottom:319.958667pt;}
.y6e{bottom:319.973333pt;}
.y13{bottom:327.265333pt;}
.y1a4{bottom:330.786667pt;}
.y2e{bottom:333.566667pt;}
.yad{bottom:335.180000pt;}
.yc9{bottom:335.256000pt;}
.y161{bottom:335.270667pt;}
.yf1{bottom:335.272000pt;}
.y18c{bottom:335.285333pt;}
.y6d{bottom:335.300000pt;}
.y12{bottom:341.262000pt;}
.y1a3{bottom:344.786667pt;}
.y2d{bottom:348.893333pt;}
.y128{bottom:350.472000pt;}
.yac{bottom:350.506667pt;}
.y14b{bottom:350.513333pt;}
.y10f{bottom:350.582667pt;}
.y160{bottom:350.597333pt;}
.yf0{bottom:350.598667pt;}
.y18b{bottom:350.612000pt;}
.y6c{bottom:350.626667pt;}
.y11{bottom:355.258667pt;}
.y1a2{bottom:358.786667pt;}
.y2c{bottom:364.220000pt;}
.y127{bottom:365.798667pt;}
.yab{bottom:365.833333pt;}
.y14a{bottom:365.840000pt;}
.yc8{bottom:365.924000pt;}
.yef{bottom:365.925333pt;}
.y18a{bottom:365.938667pt;}
.y6b{bottom:365.953333pt;}
.y10{bottom:369.255333pt;}
.y1a1{bottom:374.680000pt;}
.y2b{bottom:379.546667pt;}
.yaa{bottom:381.160000pt;}
.y149{bottom:381.166667pt;}
.yc7{bottom:381.250667pt;}
.yee{bottom:381.252000pt;}
.y189{bottom:381.265333pt;}
.y6a{bottom:381.280000pt;}
.yf{bottom:383.252000pt;}
.y126{bottom:386.867333pt;}
.y1a0{bottom:388.680000pt;}
.y2a{bottom:394.873333pt;}
.y125{bottom:396.466667pt;}
.ya9{bottom:396.486667pt;}
.y148{bottom:396.493333pt;}
.yc6{bottom:396.577333pt;}
.yed{bottom:396.578667pt;}
.y188{bottom:396.592000pt;}
.y69{bottom:396.606667pt;}
.ye{bottom:397.248667pt;}
.y19f{bottom:404.560000pt;}
.y29{bottom:410.200000pt;}
.yd{bottom:411.245333pt;}
.ya8{bottom:411.813333pt;}
.y147{bottom:411.820000pt;}
.yc5{bottom:411.904000pt;}
.yec{bottom:411.905333pt;}
.y187{bottom:411.918667pt;}
.y68{bottom:411.933333pt;}
.y19e{bottom:418.560000pt;}
.yc{bottom:425.242000pt;}
.y28{bottom:425.526667pt;}
.ya7{bottom:427.140000pt;}
.y146{bottom:427.146667pt;}
.yc4{bottom:427.230667pt;}
.yeb{bottom:427.232000pt;}
.y186{bottom:427.245333pt;}
.y67{bottom:427.260000pt;}
.y19d{bottom:434.453333pt;}
.yb{bottom:439.238667pt;}
.y27{bottom:440.853333pt;}
.ya6{bottom:442.466667pt;}
.y145{bottom:442.473333pt;}
.y124{bottom:442.506667pt;}
.yc3{bottom:442.557333pt;}
.yea{bottom:442.558667pt;}
.y185{bottom:442.572000pt;}
.y66{bottom:442.586667pt;}
.y19c{bottom:448.453333pt;}
.ya{bottom:453.235333pt;}
.y123{bottom:457.833333pt;}
.y144{bottom:457.840000pt;}
.yc2{bottom:457.884000pt;}
.ye9{bottom:457.885333pt;}
.y184{bottom:457.898667pt;}
.y65{bottom:457.913333pt;}
.y19b{bottom:464.346667pt;}
.y9{bottom:467.232000pt;}
.y122{bottom:473.160000pt;}
.y143{bottom:473.166667pt;}
.y10e{bottom:473.210667pt;}
.ye8{bottom:473.212000pt;}
.y183{bottom:473.225333pt;}
.y64{bottom:473.240000pt;}
.y19a{bottom:478.346667pt;}
.yc1{bottom:480.881333pt;}
.y8{bottom:481.228667pt;}
.y47{bottom:484.964667pt;}
.y121{bottom:488.486667pt;}
.y142{bottom:488.493333pt;}
.y10d{bottom:488.537333pt;}
.ye7{bottom:488.538667pt;}
.y182{bottom:488.552000pt;}
.y63{bottom:488.566667pt;}
.ya5{bottom:490.466667pt;}
.y4c{bottom:492.944667pt;}
.y199{bottom:494.240000pt;}
.y7{bottom:495.225333pt;}
.y46{bottom:503.635333pt;}
.y120{bottom:503.813333pt;}
.y141{bottom:503.820000pt;}
.y10c{bottom:503.864000pt;}
.y175{bottom:503.878667pt;}
.y62{bottom:503.893333pt;}
.y198{bottom:508.240000pt;}
.ya4{bottom:509.800000pt;}
.y15f{bottom:511.534667pt;}
.y4b{bottom:511.615333pt;}
.y11f{bottom:519.140000pt;}
.y140{bottom:519.146667pt;}
.y10b{bottom:519.190667pt;}
.y174{bottom:519.205333pt;}
.ye6{bottom:519.206667pt;}
.y61{bottom:519.220000pt;}
.y45{bottom:522.306000pt;}
.y6{bottom:522.560000pt;}
.ya3{bottom:523.800000pt;}
.y197{bottom:524.120000pt;}
.y4a{bottom:530.286000pt;}
.y13f{bottom:534.473333pt;}
.y10a{bottom:534.517333pt;}
.y173{bottom:534.532000pt;}
.ye5{bottom:534.533333pt;}
.y60{bottom:534.546667pt;}
.y44{bottom:535.644000pt;}
.ya2{bottom:537.800000pt;}
.y196{bottom:540.013333pt;}
.y49{bottom:548.956667pt;}
.y43{bottom:548.982000pt;}
.y13e{bottom:549.806667pt;}
.y109{bottom:549.844000pt;}
.y172{bottom:549.858667pt;}
.ye4{bottom:549.860000pt;}
.y5f{bottom:549.873333pt;}
.ya1{bottom:551.800000pt;}
.y195{bottom:554.013333pt;}
.y11e{bottom:557.514667pt;}
.y48{bottom:562.294667pt;}
.y42{bottom:562.320000pt;}
.y13d{bottom:565.185333pt;}
.ye3{bottom:565.186667pt;}
.y5e{bottom:565.200000pt;}
.y194{bottom:569.906667pt;}
.ya0{bottom:571.133333pt;}
.y108{bottom:580.512000pt;}
.ye2{bottom:580.513333pt;}
.y5d{bottom:580.526667pt;}
.y193{bottom:583.906667pt;}
.y53{bottom:586.906667pt;}
.y9f{bottom:590.466667pt;}
.y107{bottom:595.838667pt;}
.ye1{bottom:595.840000pt;}
.y5c{bottom:595.853333pt;}
.y192{bottom:597.906667pt;}
.y106{bottom:611.165333pt;}
.ye0{bottom:611.166667pt;}
.y5b{bottom:611.180000pt;}
.y191{bottom:613.800000pt;}
.y9e{bottom:618.466667pt;}
.y105{bottom:626.492000pt;}
.ydf{bottom:626.493333pt;}
.y5a{bottom:626.506667pt;}
.y190{bottom:627.800000pt;}
.y5{bottom:628.629333pt;}
.y9d{bottom:637.800000pt;}
.y104{bottom:641.818667pt;}
.yde{bottom:641.820000pt;}
.y59{bottom:641.833333pt;}
.y4{bottom:641.961333pt;}
.y52{bottom:646.213333pt;}
.y18f{bottom:649.474667pt;}
.y9c{bottom:651.800000pt;}
.y3{bottom:655.293333pt;}
.y103{bottom:657.145333pt;}
.ydd{bottom:657.146667pt;}
.y58{bottom:657.160000pt;}
.y9b{bottom:665.800000pt;}
.y51{bottom:666.226667pt;}
.y2{bottom:671.960000pt;}
.y171{bottom:672.472000pt;}
.ydc{bottom:672.473333pt;}
.y57{bottom:672.486667pt;}
.y9a{bottom:679.800000pt;}
.y50{bottom:680.223333pt;}
.y181{bottom:687.798667pt;}
.y56{bottom:687.813333pt;}
.y4f{bottom:694.220000pt;}
.y99{bottom:699.133333pt;}
.y55{bottom:703.140000pt;}
.y4e{bottom:708.216667pt;}
.y1{bottom:711.960000pt;}
.y54{bottom:718.466667pt;}
.y4d{bottom:722.213333pt;}
.y26{bottom:760.093333pt;}
.h7{height:45.525333pt;}
.hd{height:47.696000pt;}
.h3{height:51.216000pt;}
.h4{height:54.061333pt;}
.h5{height:54.701333pt;}
.h6{height:54.922667pt;}
.ha{height:56.906667pt;}
.he{height:57.813333pt;}
.h8{height:62.597333pt;}
.h9{height:63.594667pt;}
.h2{height:68.288000pt;}
.h1{height:91.050667pt;}
.hb{height:100.994667pt;}
.hc{height:105.013333pt;}
.h0{height:820.000000pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x1{left:47.733333pt;}
.x3{left:48.813333pt;}
.xe{left:62.649333pt;}
.xd{left:67.724000pt;}
.x4{left:68.802667pt;}
.x10{left:88.833333pt;}
.x9{left:91.882000pt;}
.x5{left:99.266667pt;}
.x7{left:102.319333pt;}
.x8{left:112.376667pt;}
.xa{left:127.171333pt;}
.x6{left:130.553333pt;}
.x13{left:229.852000pt;}
.x11{left:235.120000pt;}
.xc{left:243.773333pt;}
.x12{left:252.477333pt;}
.xb{left:276.815333pt;}
.x15{left:279.744000pt;}
.x14{left:281.666667pt;}
.xf{left:312.306667pt;}
.x2{left:377.560000pt;}
}




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