
    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_5c29755baa2a45064dd62074.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_d43b345115b349db26afe5aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984333;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_2de1c7570f5a495cf2c6b666.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000048;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_c9288041e97e3b828dfa2b55.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060000;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_22422e486e7230e81d35b878.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:19.800000px;}
.ls7d{letter-spacing:-1.500000px;}
.ls3c{letter-spacing:-1.188000px;}
.ls1f{letter-spacing:-1.140000px;}
.ls3a{letter-spacing:-1.134000px;}
.ls7e{letter-spacing:-1.020000px;}
.ls1c{letter-spacing:-0.726000px;}
.ls9b{letter-spacing:-0.720000px;}
.ls39{letter-spacing:-0.702000px;}
.ls18{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.627000px;}
.ls63{letter-spacing:-0.600000px;}
.ls2a{letter-spacing:-0.594000px;}
.ls1e{letter-spacing:-0.570000px;}
.ls2e{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.528000px;}
.ls46{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.462000px;}
.ls6{letter-spacing:-0.456000px;}
.ls3d{letter-spacing:-0.429000px;}
.ls49{letter-spacing:-0.420000px;}
.ls32{letter-spacing:-0.396000px;}
.ls59{letter-spacing:-0.378000px;}
.ls58{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.342000px;}
.ls1d{letter-spacing:-0.330000px;}
.ls34{letter-spacing:-0.324000px;}
.ls53{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.285000px;}
.ls38{letter-spacing:-0.270000px;}
.ls1b{letter-spacing:-0.264000px;}
.ls40{letter-spacing:-0.240000px;}
.ls2c{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.198000px;}
.ls47{letter-spacing:-0.180000px;}
.ls35{letter-spacing:-0.162000px;}
.ls29{letter-spacing:-0.132000px;}
.ls4e{letter-spacing:-0.120000px;}
.ls2d{letter-spacing:-0.108000px;}
.ls5c{letter-spacing:-0.085800px;}
.ls4f{letter-spacing:-0.078000px;}
.ls1a{letter-spacing:-0.066000px;}
.ls3e{letter-spacing:-0.060000px;}
.ls7{letter-spacing:-0.057000px;}
.ls54{letter-spacing:-0.054000px;}
.ls3f{letter-spacing:-0.039000px;}
.ls5{letter-spacing:0.000000px;}
.ls92{letter-spacing:0.004200px;}
.ls89{letter-spacing:0.011400px;}
.ls28{letter-spacing:0.054000px;}
.ls3{letter-spacing:0.057000px;}
.ls5b{letter-spacing:0.060000px;}
.ls14{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.114000px;}
.ls4a{letter-spacing:0.128700px;}
.ls2f{letter-spacing:0.132000px;}
.ls91{letter-spacing:0.160200px;}
.ls37{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.171000px;}
.ls66{letter-spacing:0.171600px;}
.ls48{letter-spacing:0.180000px;}
.ls8a{letter-spacing:0.187800px;}
.ls23{letter-spacing:0.198000px;}
.ls65{letter-spacing:0.214500px;}
.ls51{letter-spacing:0.216000px;}
.ls5d{letter-spacing:0.240000px;}
.ls31{letter-spacing:0.246000px;}
.ls7b{letter-spacing:0.254400px;}
.ls24{letter-spacing:0.264000px;}
.ls17{letter-spacing:0.270000px;}
.ls95{letter-spacing:0.277800px;}
.ls99{letter-spacing:0.279600px;}
.ls98{letter-spacing:0.285600px;}
.ls6c{letter-spacing:0.300000px;}
.ls8c{letter-spacing:0.301800px;}
.ls6a{letter-spacing:0.303000px;}
.ls6b{letter-spacing:0.315000px;}
.ls15{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.330000px;}
.ls94{letter-spacing:0.332400px;}
.ls93{letter-spacing:0.333000px;}
.ls75{letter-spacing:0.333600px;}
.ls90{letter-spacing:0.352800px;}
.ls72{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.378000px;}
.ls13{letter-spacing:0.396000px;}
.ls1{letter-spacing:0.399000px;}
.ls56{letter-spacing:0.420000px;}
.ls26{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.456000px;}
.lsf{letter-spacing:0.462000px;}
.ls73{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.486000px;}
.ls0{letter-spacing:0.513000px;}
.ls52{letter-spacing:0.514800px;}
.lsd{letter-spacing:0.528000px;}
.ls7c{letter-spacing:0.529200px;}
.ls44{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.565200px;}
.ls22{letter-spacing:0.594000px;}
.ls57{letter-spacing:0.600000px;}
.ls68{letter-spacing:0.619800px;}
.ls69{letter-spacing:0.630000px;}
.ls8f{letter-spacing:0.636600px;}
.ls8e{letter-spacing:0.649200px;}
.ls30{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.702000px;}
.ls8d{letter-spacing:0.708600px;}
.ls4c{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.726000px;}
.ls96{letter-spacing:0.758400px;}
.ls97{letter-spacing:0.765000px;}
.ls9a{letter-spacing:0.766200px;}
.ls45{letter-spacing:0.780000px;}
.ls42{letter-spacing:0.792000px;}
.ls60{letter-spacing:0.810000px;}
.ls74{letter-spacing:0.811800px;}
.ls5a{letter-spacing:0.840000px;}
.ls10{letter-spacing:0.858000px;}
.ls50{letter-spacing:0.918000px;}
.ls21{letter-spacing:0.924000px;}
.ls6e{letter-spacing:0.945000px;}
.ls6f{letter-spacing:0.960000px;}
.ls6d{letter-spacing:0.963000px;}
.ls70{letter-spacing:0.963600px;}
.ls5e{letter-spacing:0.972000px;}
.lse{letter-spacing:0.990000px;}
.ls71{letter-spacing:1.020000px;}
.ls61{letter-spacing:1.026000px;}
.ls36{letter-spacing:1.056000px;}
.ls5f{letter-spacing:1.080000px;}
.ls7a{letter-spacing:1.102800px;}
.ls41{letter-spacing:1.122000px;}
.ls78{letter-spacing:1.140000px;}
.ls79{letter-spacing:1.157400px;}
.ls76{letter-spacing:1.158600px;}
.ls77{letter-spacing:1.170000px;}
.ls55{letter-spacing:1.188000px;}
.ls7f{letter-spacing:1.200000px;}
.ls80{letter-spacing:1.215000px;}
.ls4b{letter-spacing:1.254000px;}
.ls87{letter-spacing:1.260000px;}
.ls85{letter-spacing:1.287000px;}
.ls62{letter-spacing:1.296000px;}
.ls86{letter-spacing:1.305000px;}
.ls43{letter-spacing:1.320000px;}
.lsc{letter-spacing:1.386000px;}
.ls3b{letter-spacing:1.452000px;}
.ls64{letter-spacing:1.518000px;}
.ls82{letter-spacing:1.657800px;}
.ls84{letter-spacing:1.658400px;}
.ls83{letter-spacing:1.665000px;}
.ls81{letter-spacing:1.680000px;}
.ls8b{letter-spacing:1.687800px;}
.ls67{letter-spacing:2.178000px;}
.ls25{letter-spacing:3.155400px;}
.ls88{letter-spacing:3.859800px;}
.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;}
}
.ws31{word-spacing:-17.556000px;}
.ws19{word-spacing:-16.566000px;}
.ws27{word-spacing:-16.500000px;}
.ws28{word-spacing:-16.302000px;}
.ws83{word-spacing:-16.260000px;}
.ws70{word-spacing:-16.020000px;}
.ws30{word-spacing:-15.906000px;}
.ws37{word-spacing:-15.774000px;}
.ws69{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.706000px;}
.wsc{word-spacing:-13.500000px;}
.ws81{word-spacing:-12.915000px;}
.ws82{word-spacing:-12.555000px;}
.ws80{word-spacing:-12.465000px;}
.ws78{word-spacing:-12.420000px;}
.ws4b{word-spacing:-12.375000px;}
.wsa{word-spacing:-12.240000px;}
.ws6f{word-spacing:-12.195000px;}
.ws77{word-spacing:-12.060000px;}
.ws8d{word-spacing:-12.015000px;}
.ws85{word-spacing:-11.970000px;}
.ws68{word-spacing:-11.880000px;}
.ws86{word-spacing:-11.610000px;}
.ws6e{word-spacing:-11.565000px;}
.ws79{word-spacing:-11.520000px;}
.ws84{word-spacing:-11.430000px;}
.ws6a{word-spacing:-11.250000px;}
.ws57{word-spacing:-11.239800px;}
.ws62{word-spacing:-10.939500px;}
.ws63{word-spacing:-10.896600px;}
.ws4d{word-spacing:-10.853700px;}
.ws18{word-spacing:-10.725000px;}
.ws5d{word-spacing:-10.639200px;}
.ws38{word-spacing:-10.296000px;}
.ws39{word-spacing:-9.711000px;}
.ws8{word-spacing:-1.767000px;}
.ws8a{word-spacing:-1.200000px;}
.ws89{word-spacing:-1.020000px;}
.ws61{word-spacing:-0.972000px;}
.wsf{word-spacing:-0.858000px;}
.ws15{word-spacing:-0.792000px;}
.ws41{word-spacing:-0.780000px;}
.ws7{word-spacing:-0.741000px;}
.ws46{word-spacing:-0.726000px;}
.ws40{word-spacing:-0.720000px;}
.ws24{word-spacing:-0.702000px;}
.ws5{word-spacing:-0.684000px;}
.ws14{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.648000px;}
.ws73{word-spacing:-0.600000px;}
.ws4a{word-spacing:-0.594000px;}
.ws6b{word-spacing:-0.540000px;}
.ws1f{word-spacing:-0.528000px;}
.ws67{word-spacing:-0.486000px;}
.ws76{word-spacing:-0.480000px;}
.ws2a{word-spacing:-0.462000px;}
.ws2e{word-spacing:-0.432000px;}
.ws29{word-spacing:-0.396000px;}
.ws50{word-spacing:-0.330000px;}
.ws71{word-spacing:-0.300000px;}
.ws52{word-spacing:-0.270000px;}
.ws21{word-spacing:-0.264000px;}
.ws36{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.198000px;}
.ws43{word-spacing:-0.180000px;}
.ws35{word-spacing:-0.132000px;}
.ws45{word-spacing:-0.108000px;}
.ws1b{word-spacing:-0.066000px;}
.ws7c{word-spacing:-0.060000px;}
.ws6{word-spacing:-0.057000px;}
.ws8e{word-spacing:-0.045000px;}
.ws0{word-spacing:0.000000px;}
.ws6d{word-spacing:0.060000px;}
.ws3b{word-spacing:0.066000px;}
.ws54{word-spacing:0.078000px;}
.ws88{word-spacing:0.120000px;}
.ws33{word-spacing:0.132000px;}
.ws4e{word-spacing:0.180000px;}
.ws34{word-spacing:0.198000px;}
.ws5c{word-spacing:0.240000px;}
.ws2d{word-spacing:0.264000px;}
.ws72{word-spacing:0.300000px;}
.ws20{word-spacing:0.330000px;}
.ws4{word-spacing:0.342000px;}
.ws87{word-spacing:0.360000px;}
.ws26{word-spacing:0.378000px;}
.ws51{word-spacing:0.396000px;}
.ws2c{word-spacing:0.462000px;}
.ws7e{word-spacing:0.480000px;}
.ws6c{word-spacing:0.528000px;}
.ws58{word-spacing:0.540000px;}
.ws3e{word-spacing:0.594000px;}
.ws44{word-spacing:0.600000px;}
.ws3{word-spacing:0.627000px;}
.ws66{word-spacing:0.648000px;}
.ws23{word-spacing:0.660000px;}
.ws8f{word-spacing:0.720000px;}
.ws22{word-spacing:0.726000px;}
.ws47{word-spacing:0.792000px;}
.ws53{word-spacing:0.840000px;}
.ws56{word-spacing:0.858000px;}
.ws3d{word-spacing:0.924000px;}
.ws3f{word-spacing:0.960000px;}
.ws12{word-spacing:0.990000px;}
.ws75{word-spacing:1.020000px;}
.ws7d{word-spacing:1.080000px;}
.ws9{word-spacing:1.083000px;}
.ws48{word-spacing:1.122000px;}
.ws2f{word-spacing:1.134000px;}
.ws1c{word-spacing:1.188000px;}
.wsd{word-spacing:1.197000px;}
.ws2{word-spacing:1.254000px;}
.ws1a{word-spacing:1.320000px;}
.ws17{word-spacing:1.350000px;}
.ws49{word-spacing:1.386000px;}
.ws1{word-spacing:1.425000px;}
.ws55{word-spacing:1.452000px;}
.ws42{word-spacing:1.500000px;}
.ws60{word-spacing:1.518000px;}
.ws4c{word-spacing:1.560000px;}
.ws1d{word-spacing:1.584000px;}
.ws5e{word-spacing:1.620000px;}
.ws10{word-spacing:1.650000px;}
.ws16{word-spacing:1.716000px;}
.ws5f{word-spacing:1.740000px;}
.ws13{word-spacing:1.782000px;}
.ws1e{word-spacing:1.914000px;}
.ws64{word-spacing:1.980000px;}
.ws11{word-spacing:2.046000px;}
.ws7f{word-spacing:2.100000px;}
.ws32{word-spacing:2.178000px;}
.ws59{word-spacing:2.244000px;}
.ws5b{word-spacing:2.310000px;}
.ws7a{word-spacing:2.340000px;}
.ws4f{word-spacing:2.442000px;}
.ws3a{word-spacing:2.508000px;}
.ws8b{word-spacing:2.580000px;}
.ws8c{word-spacing:2.640000px;}
.wse{word-spacing:2.772000px;}
.ws3c{word-spacing:2.838000px;}
.ws5a{word-spacing:2.904000px;}
.ws65{word-spacing:3.036000px;}
.ws90{word-spacing:3.360000px;}
.ws7b{word-spacing:15.000000px;}
.ws74{word-spacing:15.480000px;}
._14{margin-left:-15.637200px;}
._5{margin-left:-5.760000px;}
._0{margin-left:-2.016000px;}
._a{margin-left:-1.008000px;}
._2{width:1.661400px;}
._7{width:3.591600px;}
._11{width:5.238000px;}
._10{width:6.318000px;}
._f{width:7.344000px;}
._e{width:9.126000px;}
._d{width:10.314000px;}
._15{width:11.736000px;}
._13{width:12.780000px;}
._c{width:14.364000px;}
._12{width:16.980000px;}
._8{width:33.534000px;}
._4{width:34.668000px;}
._1{width:35.998200px;}
._9{width:37.638000px;}
._b{width:38.772000px;}
._6{width:291.984000px;}
._3{width:1084.561200px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:39.000000px;}
.fs6{font-size:42.900000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:89.291250px;}
.y7c{bottom:91.417350px;}
.y136{bottom:91.597500px;}
.yad{bottom:92.988150px;}
.y15d{bottom:95.988150px;}
.y23{bottom:97.204800px;}
.y42{bottom:103.541250px;}
.y7b{bottom:105.667350px;}
.y135{bottom:107.347500px;}
.yac{bottom:110.238150px;}
.y15c{bottom:111.738150px;}
.y22{bottom:112.204800px;}
.y41{bottom:117.791250px;}
.y7a{bottom:119.917350px;}
.y134{bottom:123.097500px;}
.y21{bottom:127.204800px;}
.yab{bottom:127.488150px;}
.y40{bottom:132.041250px;}
.y79{bottom:134.167350px;}
.yc2{bottom:137.988150px;}
.y133{bottom:138.847500px;}
.y20{bottom:142.204800px;}
.y15b{bottom:143.238150px;}
.yaa{bottom:144.738150px;}
.y3f{bottom:146.291250px;}
.y78{bottom:148.417350px;}
.y132{bottom:154.597500px;}
.yc1{bottom:155.238150px;}
.y1f{bottom:157.204800px;}
.y15a{bottom:158.988150px;}
.ya9{bottom:161.988150px;}
.y77{bottom:162.667350px;}
.yf9{bottom:167.988150px;}
.y131{bottom:170.347500px;}
.y1e{bottom:172.204800px;}
.yc0{bottom:172.488150px;}
.y159{bottom:174.738150px;}
.y76{bottom:176.917350px;}
.ya8{bottom:179.238150px;}
.y3e{bottom:182.362200px;}
.yf8{bottom:185.238150px;}
.y1d{bottom:187.204800px;}
.ybf{bottom:189.738150px;}
.y158{bottom:190.488150px;}
.y75{bottom:191.167350px;}
.y130{bottom:194.722500px;}
.ya7{bottom:196.488150px;}
.y3d{bottom:199.612200px;}
.y1c{bottom:202.204800px;}
.yf7{bottom:202.488150px;}
.ya5{bottom:202.863150px;}
.y74{bottom:205.417350px;}
.y157{bottom:206.238150px;}
.ybe{bottom:206.988150px;}
.ya6{bottom:213.738150px;}
.y3c{bottom:216.862200px;}
.y1b{bottom:217.204800px;}
.ya4{bottom:218.613150px;}
.y73{bottom:219.667350px;}
.yf6{bottom:219.738150px;}
.y156{bottom:221.988150px;}
.ybd{bottom:224.238150px;}
.y80{bottom:230.988150px;}
.y1a{bottom:232.204800px;}
.y72{bottom:233.917350px;}
.y3b{bottom:234.112200px;}
.ya3{bottom:234.363150px;}
.yf5{bottom:236.988150px;}
.y155{bottom:237.738150px;}
.y102{bottom:238.488150px;}
.ybc{bottom:241.488150px;}
.y12f{bottom:245.988150px;}
.y71{bottom:248.167350px;}
.y7f{bottom:248.238150px;}
.ya2{bottom:250.113150px;}
.y3a{bottom:251.362200px;}
.y154{bottom:253.488150px;}
.yf4{bottom:254.238150px;}
.y101{bottom:255.738150px;}
.y106{bottom:257.238150px;}
.ybb{bottom:258.738150px;}
.y19{bottom:262.204800px;}
.y70{bottom:262.417350px;}
.y12e{bottom:263.238150px;}
.y7e{bottom:265.488150px;}
.ya1{bottom:265.863150px;}
.y39{bottom:268.612200px;}
.y153{bottom:269.238150px;}
.yf3{bottom:271.488150px;}
.y100{bottom:272.988150px;}
.yba{bottom:275.988150px;}
.y18{bottom:277.204800px;}
.y12d{bottom:280.488150px;}
.ya0{bottom:281.613150px;}
.y7d{bottom:282.738150px;}
.y152{bottom:284.988150px;}
.y38{bottom:285.862200px;}
.yf2{bottom:288.738150px;}
.yff{bottom:290.238150px;}
.yb9{bottom:293.238150px;}
.y9f{bottom:297.363150px;}
.y12c{bottom:297.738150px;}
.y6f{bottom:299.988150px;}
.y151{bottom:300.738150px;}
.y37{bottom:303.112200px;}
.y105{bottom:304.488150px;}
.yf1{bottom:305.988150px;}
.yfe{bottom:307.488150px;}
.yb8{bottom:310.488150px;}
.y9e{bottom:313.113150px;}
.y17{bottom:313.204800px;}
.y12b{bottom:314.988150px;}
.y150{bottom:316.488150px;}
.y6e{bottom:317.238150px;}
.y104{bottom:320.238150px;}
.y36{bottom:320.362200px;}
.yf0{bottom:323.238150px;}
.yb7{bottom:327.738150px;}
.y16{bottom:328.204800px;}
.y9d{bottom:328.863150px;}
.y12a{bottom:332.238150px;}
.y6d{bottom:334.488150px;}
.y103{bottom:335.988150px;}
.y35{bottom:337.612200px;}
.yef{bottom:340.488150px;}
.yfd{bottom:341.988150px;}
.y9c{bottom:344.613150px;}
.yb6{bottom:344.988150px;}
.y14f{bottom:347.988150px;}
.y15{bottom:349.204800px;}
.y129{bottom:349.488150px;}
.y6c{bottom:351.738150px;}
.y34{bottom:354.862200px;}
.yee{bottom:357.738150px;}
.yb5{bottom:362.238150px;}
.y14e{bottom:363.738150px;}
.y14{bottom:364.204800px;}
.y128{bottom:366.738150px;}
.y6b{bottom:368.988150px;}
.y10e{bottom:370.863150px;}
.y33{bottom:372.112200px;}
.yfc{bottom:373.488150px;}
.yed{bottom:374.988150px;}
.y9b{bottom:377.613150px;}
.y13{bottom:379.204800px;}
.yd4{bottom:379.488150px;}
.y127{bottom:383.988150px;}
.y6a{bottom:386.238150px;}
.yfb{bottom:389.238150px;}
.y32{bottom:389.362200px;}
.yec{bottom:392.238150px;}
.y12{bottom:394.204800px;}
.y9a{bottom:394.863150px;}
.y14d{bottom:395.238150px;}
.yb4{bottom:396.738150px;}
.y126{bottom:401.238150px;}
.y69{bottom:403.488150px;}
.yfa{bottom:404.988150px;}
.y31{bottom:406.612200px;}
.y11{bottom:409.204800px;}
.yeb{bottom:409.488150px;}
.y14c{bottom:410.988150px;}
.y99{bottom:412.113150px;}
.yb3{bottom:412.488150px;}
.yd3{bottom:413.988150px;}
.y125{bottom:418.488150px;}
.y68{bottom:420.738150px;}
.y30{bottom:423.862200px;}
.y10{bottom:424.204800px;}
.yea{bottom:426.738150px;}
.yb2{bottom:428.238150px;}
.y98{bottom:429.363150px;}
.yd2{bottom:431.238150px;}
.y124{bottom:435.738150px;}
.y67{bottom:437.988150px;}
.yf{bottom:439.204800px;}
.y2f{bottom:441.112200px;}
.y14b{bottom:442.488150px;}
.yb1{bottom:443.988150px;}
.y97{bottom:446.613150px;}
.yd1{bottom:448.488150px;}
.y123{bottom:452.988150px;}
.ye{bottom:454.204800px;}
.y66{bottom:455.238150px;}
.y14a{bottom:458.238150px;}
.y2e{bottom:458.362200px;}
.yb0{bottom:459.738150px;}
.ye9{bottom:461.238150px;}
.y96{bottom:463.863150px;}
.yd0{bottom:465.738150px;}
.yd{bottom:469.204800px;}
.y122{bottom:470.238150px;}
.y65{bottom:472.488150px;}
.y149{bottom:473.988150px;}
.yaf{bottom:475.488150px;}
.y2d{bottom:475.612200px;}
.ye8{bottom:478.488150px;}
.y95{bottom:481.113150px;}
.ycf{bottom:482.988150px;}
.yc{bottom:484.204800px;}
.y121{bottom:487.488150px;}
.y64{bottom:489.738150px;}
.yae{bottom:491.238150px;}
.y2c{bottom:492.862200px;}
.ye7{bottom:495.738150px;}
.y94{bottom:498.363150px;}
.yb{bottom:499.204800px;}
.yce{bottom:500.238150px;}
.y120{bottom:504.738150px;}
.y148{bottom:505.488150px;}
.y63{bottom:506.988150px;}
.y2b{bottom:510.112200px;}
.ye6{bottom:512.988150px;}
.y93{bottom:515.613150px;}
.ycd{bottom:517.488150px;}
.y147{bottom:521.238150px;}
.y11f{bottom:521.988150px;}
.y62{bottom:524.238150px;}
.y2a{bottom:527.362200px;}
.ya{bottom:529.204800px;}
.ye5{bottom:530.238150px;}
.y92{bottom:532.863150px;}
.ycc{bottom:534.738150px;}
.y146{bottom:536.988150px;}
.y11e{bottom:539.238150px;}
.y61{bottom:541.488150px;}
.ye4{bottom:547.488150px;}
.y91{bottom:550.113150px;}
.ycb{bottom:551.988150px;}
.y145{bottom:552.738150px;}
.y11d{bottom:556.488150px;}
.y60{bottom:558.738150px;}
.ye3{bottom:564.738150px;}
.y90{bottom:567.363150px;}
.y144{bottom:568.488150px;}
.yca{bottom:569.238150px;}
.y11c{bottom:573.738150px;}
.y5f{bottom:575.988150px;}
.y111{bottom:580.488150px;}
.ye2{bottom:581.988150px;}
.y4c{bottom:582.835650px;}
.y143{bottom:584.238150px;}
.y8f{bottom:584.613150px;}
.y10d{bottom:586.488150px;}
.y11b{bottom:590.988150px;}
.y4e{bottom:591.835650px;}
.y5e{bottom:593.238150px;}
.y110{bottom:596.238150px;}
.y4b{bottom:597.835650px;}
.ye1{bottom:599.238150px;}
.y142{bottom:599.988150px;}
.y8e{bottom:601.863150px;}
.yc9{bottom:603.738150px;}
.y5d{bottom:610.488150px;}
.y10f{bottom:611.988150px;}
.y4d{bottom:612.835650px;}
.y141{bottom:615.738150px;}
.ye0{bottom:616.488150px;}
.y4a{bottom:618.835650px;}
.y8d{bottom:619.113150px;}
.yc8{bottom:619.488150px;}
.y10c{bottom:620.988150px;}
.y9{bottom:622.204800px;}
.y11a{bottom:625.488150px;}
.y5c{bottom:627.738150px;}
.y140{bottom:631.488150px;}
.ydf{bottom:633.738150px;}
.y49{bottom:633.835650px;}
.yc7{bottom:635.238150px;}
.y8c{bottom:636.363150px;}
.y8{bottom:636.454800px;}
.y10b{bottom:636.738150px;}
.y119{bottom:641.238150px;}
.y5b{bottom:644.988150px;}
.y13f{bottom:647.238150px;}
.y48{bottom:648.835650px;}
.yc6{bottom:650.988150px;}
.y10a{bottom:652.488150px;}
.y8b{bottom:653.613150px;}
.y118{bottom:656.988150px;}
.y5a{bottom:662.238150px;}
.y13e{bottom:662.988150px;}
.y47{bottom:663.835650px;}
.yc5{bottom:666.738150px;}
.yde{bottom:668.238150px;}
.y8a{bottom:670.863150px;}
.y117{bottom:672.738150px;}
.y13d{bottom:678.738150px;}
.y59{bottom:679.488150px;}
.yc4{bottom:682.488150px;}
.y109{bottom:683.988150px;}
.y46{bottom:684.835650px;}
.ydd{bottom:685.488150px;}
.y89{bottom:688.113150px;}
.y116{bottom:688.488150px;}
.y13c{bottom:694.488150px;}
.y58{bottom:696.738150px;}
.yc3{bottom:698.238150px;}
.y108{bottom:699.738150px;}
.y45{bottom:699.835650px;}
.ydc{bottom:702.738150px;}
.y115{bottom:704.238150px;}
.y88{bottom:705.363150px;}
.y13b{bottom:710.238150px;}
.y57{bottom:713.988150px;}
.y107{bottom:715.488150px;}
.ydb{bottom:719.988150px;}
.y7{bottom:721.954800px;}
.y44{bottom:722.212950px;}
.y87{bottom:722.613150px;}
.y13a{bottom:725.988150px;}
.y56{bottom:731.238150px;}
.y114{bottom:735.738150px;}
.y6{bottom:736.204800px;}
.yda{bottom:737.238150px;}
.y86{bottom:739.863150px;}
.y139{bottom:741.738150px;}
.y55{bottom:748.488150px;}
.y113{bottom:751.488150px;}
.y5{bottom:754.204800px;}
.yd9{bottom:754.488150px;}
.y85{bottom:757.113150px;}
.y138{bottom:757.488150px;}
.y54{bottom:765.738150px;}
.y112{bottom:767.238150px;}
.y29{bottom:768.862200px;}
.y137{bottom:773.238150px;}
.y84{bottom:774.363150px;}
.y53{bottom:782.988150px;}
.y28{bottom:783.862200px;}
.yd8{bottom:788.988150px;}
.y83{bottom:791.613150px;}
.y4{bottom:799.204800px;}
.y52{bottom:800.238150px;}
.yd7{bottom:804.738150px;}
.y27{bottom:804.862200px;}
.y82{bottom:808.863150px;}
.y51{bottom:817.488150px;}
.y26{bottom:819.862200px;}
.yd6{bottom:820.488150px;}
.y3{bottom:823.204800px;}
.y81{bottom:826.113150px;}
.y50{bottom:834.738150px;}
.y25{bottom:834.862200px;}
.yd5{bottom:836.238150px;}
.y2{bottom:847.204800px;}
.y24{bottom:849.862200px;}
.y4f{bottom:851.988150px;}
.y1{bottom:897.960300px;}
.he{height:38.612571px;}
.h2{height:40.368000px;}
.h8{height:40.757714px;}
.h6{height:40.774000px;}
.hf{height:42.902857px;}
.h5{height:45.414000px;}
.hb{height:47.212000px;}
.h7{height:47.937000px;}
.hc{height:50.460000px;}
.hd{height:50.799000px;}
.h9{height:55.506000px;}
.ha{height:55.878900px;}
.h4{height:60.552000px;}
.h3{height:80.736000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x2{left:95.669250px;}
.x5{left:118.169250px;}
.xa{left:121.600650px;}
.x9{left:138.062100px;}
.xf{left:140.669250px;}
.xd{left:146.868750px;}
.xb{left:158.225400px;}
.x7{left:167.289000px;}
.xc{left:168.485850px;}
.x8{left:180.697350px;}
.x6{left:315.856650px;}
.xe{left:352.894650px;}
.x1{left:447.534600px;}
.x4{left:466.224900px;}
.x3{left:468.681750px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls7d{letter-spacing:-1.333333pt;}
.ls3c{letter-spacing:-1.056000pt;}
.ls1f{letter-spacing:-1.013333pt;}
.ls3a{letter-spacing:-1.008000pt;}
.ls7e{letter-spacing:-0.906667pt;}
.ls1c{letter-spacing:-0.645333pt;}
.ls9b{letter-spacing:-0.640000pt;}
.ls39{letter-spacing:-0.624000pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.557333pt;}
.ls63{letter-spacing:-0.533333pt;}
.ls2a{letter-spacing:-0.528000pt;}
.ls1e{letter-spacing:-0.506667pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.469333pt;}
.ls46{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.410667pt;}
.ls6{letter-spacing:-0.405333pt;}
.ls3d{letter-spacing:-0.381333pt;}
.ls49{letter-spacing:-0.373333pt;}
.ls32{letter-spacing:-0.352000pt;}
.ls59{letter-spacing:-0.336000pt;}
.ls58{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.304000pt;}
.ls1d{letter-spacing:-0.293333pt;}
.ls34{letter-spacing:-0.288000pt;}
.ls53{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.253333pt;}
.ls38{letter-spacing:-0.240000pt;}
.ls1b{letter-spacing:-0.234667pt;}
.ls40{letter-spacing:-0.213333pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.176000pt;}
.ls47{letter-spacing:-0.160000pt;}
.ls35{letter-spacing:-0.144000pt;}
.ls29{letter-spacing:-0.117333pt;}
.ls4e{letter-spacing:-0.106667pt;}
.ls2d{letter-spacing:-0.096000pt;}
.ls5c{letter-spacing:-0.076267pt;}
.ls4f{letter-spacing:-0.069333pt;}
.ls1a{letter-spacing:-0.058667pt;}
.ls3e{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls54{letter-spacing:-0.048000pt;}
.ls3f{letter-spacing:-0.034667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls92{letter-spacing:0.003733pt;}
.ls89{letter-spacing:0.010133pt;}
.ls28{letter-spacing:0.048000pt;}
.ls3{letter-spacing:0.050667pt;}
.ls5b{letter-spacing:0.053333pt;}
.ls14{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.101333pt;}
.ls4a{letter-spacing:0.114400pt;}
.ls2f{letter-spacing:0.117333pt;}
.ls91{letter-spacing:0.142400pt;}
.ls37{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.152000pt;}
.ls66{letter-spacing:0.152533pt;}
.ls48{letter-spacing:0.160000pt;}
.ls8a{letter-spacing:0.166933pt;}
.ls23{letter-spacing:0.176000pt;}
.ls65{letter-spacing:0.190667pt;}
.ls51{letter-spacing:0.192000pt;}
.ls5d{letter-spacing:0.213333pt;}
.ls31{letter-spacing:0.218667pt;}
.ls7b{letter-spacing:0.226133pt;}
.ls24{letter-spacing:0.234667pt;}
.ls17{letter-spacing:0.240000pt;}
.ls95{letter-spacing:0.246933pt;}
.ls99{letter-spacing:0.248533pt;}
.ls98{letter-spacing:0.253867pt;}
.ls6c{letter-spacing:0.266667pt;}
.ls8c{letter-spacing:0.268267pt;}
.ls6a{letter-spacing:0.269333pt;}
.ls6b{letter-spacing:0.280000pt;}
.ls15{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.293333pt;}
.ls94{letter-spacing:0.295467pt;}
.ls93{letter-spacing:0.296000pt;}
.ls75{letter-spacing:0.296533pt;}
.ls90{letter-spacing:0.313600pt;}
.ls72{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.336000pt;}
.ls13{letter-spacing:0.352000pt;}
.ls1{letter-spacing:0.354667pt;}
.ls56{letter-spacing:0.373333pt;}
.ls26{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.405333pt;}
.lsf{letter-spacing:0.410667pt;}
.ls73{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.432000pt;}
.ls0{letter-spacing:0.456000pt;}
.ls52{letter-spacing:0.457600pt;}
.lsd{letter-spacing:0.469333pt;}
.ls7c{letter-spacing:0.470400pt;}
.ls44{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.502400pt;}
.ls22{letter-spacing:0.528000pt;}
.ls57{letter-spacing:0.533333pt;}
.ls68{letter-spacing:0.550933pt;}
.ls69{letter-spacing:0.560000pt;}
.ls8f{letter-spacing:0.565867pt;}
.ls8e{letter-spacing:0.577067pt;}
.ls30{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.624000pt;}
.ls8d{letter-spacing:0.629867pt;}
.ls4c{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.645333pt;}
.ls96{letter-spacing:0.674133pt;}
.ls97{letter-spacing:0.680000pt;}
.ls9a{letter-spacing:0.681067pt;}
.ls45{letter-spacing:0.693333pt;}
.ls42{letter-spacing:0.704000pt;}
.ls60{letter-spacing:0.720000pt;}
.ls74{letter-spacing:0.721600pt;}
.ls5a{letter-spacing:0.746667pt;}
.ls10{letter-spacing:0.762667pt;}
.ls50{letter-spacing:0.816000pt;}
.ls21{letter-spacing:0.821333pt;}
.ls6e{letter-spacing:0.840000pt;}
.ls6f{letter-spacing:0.853333pt;}
.ls6d{letter-spacing:0.856000pt;}
.ls70{letter-spacing:0.856533pt;}
.ls5e{letter-spacing:0.864000pt;}
.lse{letter-spacing:0.880000pt;}
.ls71{letter-spacing:0.906667pt;}
.ls61{letter-spacing:0.912000pt;}
.ls36{letter-spacing:0.938667pt;}
.ls5f{letter-spacing:0.960000pt;}
.ls7a{letter-spacing:0.980267pt;}
.ls41{letter-spacing:0.997333pt;}
.ls78{letter-spacing:1.013333pt;}
.ls79{letter-spacing:1.028800pt;}
.ls76{letter-spacing:1.029867pt;}
.ls77{letter-spacing:1.040000pt;}
.ls55{letter-spacing:1.056000pt;}
.ls7f{letter-spacing:1.066667pt;}
.ls80{letter-spacing:1.080000pt;}
.ls4b{letter-spacing:1.114667pt;}
.ls87{letter-spacing:1.120000pt;}
.ls85{letter-spacing:1.144000pt;}
.ls62{letter-spacing:1.152000pt;}
.ls86{letter-spacing:1.160000pt;}
.ls43{letter-spacing:1.173333pt;}
.lsc{letter-spacing:1.232000pt;}
.ls3b{letter-spacing:1.290667pt;}
.ls64{letter-spacing:1.349333pt;}
.ls82{letter-spacing:1.473600pt;}
.ls84{letter-spacing:1.474133pt;}
.ls83{letter-spacing:1.480000pt;}
.ls81{letter-spacing:1.493333pt;}
.ls8b{letter-spacing:1.500267pt;}
.ls67{letter-spacing:1.936000pt;}
.ls25{letter-spacing:2.804800pt;}
.ls88{letter-spacing:3.430933pt;}
.ws31{word-spacing:-15.605333pt;}
.ws19{word-spacing:-14.725333pt;}
.ws27{word-spacing:-14.666667pt;}
.ws28{word-spacing:-14.490667pt;}
.ws83{word-spacing:-14.453333pt;}
.ws70{word-spacing:-14.240000pt;}
.ws30{word-spacing:-14.138667pt;}
.ws37{word-spacing:-14.021333pt;}
.ws69{word-spacing:-13.333333pt;}
.wsb{word-spacing:-13.072000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws81{word-spacing:-11.480000pt;}
.ws82{word-spacing:-11.160000pt;}
.ws80{word-spacing:-11.080000pt;}
.ws78{word-spacing:-11.040000pt;}
.ws4b{word-spacing:-11.000000pt;}
.wsa{word-spacing:-10.880000pt;}
.ws6f{word-spacing:-10.840000pt;}
.ws77{word-spacing:-10.720000pt;}
.ws8d{word-spacing:-10.680000pt;}
.ws85{word-spacing:-10.640000pt;}
.ws68{word-spacing:-10.560000pt;}
.ws86{word-spacing:-10.320000pt;}
.ws6e{word-spacing:-10.280000pt;}
.ws79{word-spacing:-10.240000pt;}
.ws84{word-spacing:-10.160000pt;}
.ws6a{word-spacing:-10.000000pt;}
.ws57{word-spacing:-9.990933pt;}
.ws62{word-spacing:-9.724000pt;}
.ws63{word-spacing:-9.685867pt;}
.ws4d{word-spacing:-9.647733pt;}
.ws18{word-spacing:-9.533333pt;}
.ws5d{word-spacing:-9.457067pt;}
.ws38{word-spacing:-9.152000pt;}
.ws39{word-spacing:-8.632000pt;}
.ws8{word-spacing:-1.570667pt;}
.ws8a{word-spacing:-1.066667pt;}
.ws89{word-spacing:-0.906667pt;}
.ws61{word-spacing:-0.864000pt;}
.wsf{word-spacing:-0.762667pt;}
.ws15{word-spacing:-0.704000pt;}
.ws41{word-spacing:-0.693333pt;}
.ws7{word-spacing:-0.658667pt;}
.ws46{word-spacing:-0.645333pt;}
.ws40{word-spacing:-0.640000pt;}
.ws24{word-spacing:-0.624000pt;}
.ws5{word-spacing:-0.608000pt;}
.ws14{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.576000pt;}
.ws73{word-spacing:-0.533333pt;}
.ws4a{word-spacing:-0.528000pt;}
.ws6b{word-spacing:-0.480000pt;}
.ws1f{word-spacing:-0.469333pt;}
.ws67{word-spacing:-0.432000pt;}
.ws76{word-spacing:-0.426667pt;}
.ws2a{word-spacing:-0.410667pt;}
.ws2e{word-spacing:-0.384000pt;}
.ws29{word-spacing:-0.352000pt;}
.ws50{word-spacing:-0.293333pt;}
.ws71{word-spacing:-0.266667pt;}
.ws52{word-spacing:-0.240000pt;}
.ws21{word-spacing:-0.234667pt;}
.ws36{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.176000pt;}
.ws43{word-spacing:-0.160000pt;}
.ws35{word-spacing:-0.117333pt;}
.ws45{word-spacing:-0.096000pt;}
.ws1b{word-spacing:-0.058667pt;}
.ws7c{word-spacing:-0.053333pt;}
.ws6{word-spacing:-0.050667pt;}
.ws8e{word-spacing:-0.040000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.053333pt;}
.ws3b{word-spacing:0.058667pt;}
.ws54{word-spacing:0.069333pt;}
.ws88{word-spacing:0.106667pt;}
.ws33{word-spacing:0.117333pt;}
.ws4e{word-spacing:0.160000pt;}
.ws34{word-spacing:0.176000pt;}
.ws5c{word-spacing:0.213333pt;}
.ws2d{word-spacing:0.234667pt;}
.ws72{word-spacing:0.266667pt;}
.ws20{word-spacing:0.293333pt;}
.ws4{word-spacing:0.304000pt;}
.ws87{word-spacing:0.320000pt;}
.ws26{word-spacing:0.336000pt;}
.ws51{word-spacing:0.352000pt;}
.ws2c{word-spacing:0.410667pt;}
.ws7e{word-spacing:0.426667pt;}
.ws6c{word-spacing:0.469333pt;}
.ws58{word-spacing:0.480000pt;}
.ws3e{word-spacing:0.528000pt;}
.ws44{word-spacing:0.533333pt;}
.ws3{word-spacing:0.557333pt;}
.ws66{word-spacing:0.576000pt;}
.ws23{word-spacing:0.586667pt;}
.ws8f{word-spacing:0.640000pt;}
.ws22{word-spacing:0.645333pt;}
.ws47{word-spacing:0.704000pt;}
.ws53{word-spacing:0.746667pt;}
.ws56{word-spacing:0.762667pt;}
.ws3d{word-spacing:0.821333pt;}
.ws3f{word-spacing:0.853333pt;}
.ws12{word-spacing:0.880000pt;}
.ws75{word-spacing:0.906667pt;}
.ws7d{word-spacing:0.960000pt;}
.ws9{word-spacing:0.962667pt;}
.ws48{word-spacing:0.997333pt;}
.ws2f{word-spacing:1.008000pt;}
.ws1c{word-spacing:1.056000pt;}
.wsd{word-spacing:1.064000pt;}
.ws2{word-spacing:1.114667pt;}
.ws1a{word-spacing:1.173333pt;}
.ws17{word-spacing:1.200000pt;}
.ws49{word-spacing:1.232000pt;}
.ws1{word-spacing:1.266667pt;}
.ws55{word-spacing:1.290667pt;}
.ws42{word-spacing:1.333333pt;}
.ws60{word-spacing:1.349333pt;}
.ws4c{word-spacing:1.386667pt;}
.ws1d{word-spacing:1.408000pt;}
.ws5e{word-spacing:1.440000pt;}
.ws10{word-spacing:1.466667pt;}
.ws16{word-spacing:1.525333pt;}
.ws5f{word-spacing:1.546667pt;}
.ws13{word-spacing:1.584000pt;}
.ws1e{word-spacing:1.701333pt;}
.ws64{word-spacing:1.760000pt;}
.ws11{word-spacing:1.818667pt;}
.ws7f{word-spacing:1.866667pt;}
.ws32{word-spacing:1.936000pt;}
.ws59{word-spacing:1.994667pt;}
.ws5b{word-spacing:2.053333pt;}
.ws7a{word-spacing:2.080000pt;}
.ws4f{word-spacing:2.170667pt;}
.ws3a{word-spacing:2.229333pt;}
.ws8b{word-spacing:2.293333pt;}
.ws8c{word-spacing:2.346667pt;}
.wse{word-spacing:2.464000pt;}
.ws3c{word-spacing:2.522667pt;}
.ws5a{word-spacing:2.581333pt;}
.ws65{word-spacing:2.698667pt;}
.ws90{word-spacing:2.986667pt;}
.ws7b{word-spacing:13.333333pt;}
.ws74{word-spacing:13.760000pt;}
._14{margin-left:-13.899733pt;}
._5{margin-left:-5.120000pt;}
._0{margin-left:-1.792000pt;}
._a{margin-left:-0.896000pt;}
._2{width:1.476800pt;}
._7{width:3.192533pt;}
._11{width:4.656000pt;}
._10{width:5.616000pt;}
._f{width:6.528000pt;}
._e{width:8.112000pt;}
._d{width:9.168000pt;}
._15{width:10.432000pt;}
._13{width:11.360000pt;}
._c{width:12.768000pt;}
._12{width:15.093333pt;}
._8{width:29.808000pt;}
._4{width:30.816000pt;}
._1{width:31.998400pt;}
._9{width:33.456000pt;}
._b{width:34.464000pt;}
._6{width:259.541333pt;}
._3{width:964.054400pt;}
.fs8{font-size:34.666667pt;}
.fs6{font-size:38.133333pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:79.370000pt;}
.y7c{bottom:81.259867pt;}
.y136{bottom:81.420000pt;}
.yad{bottom:82.656133pt;}
.y15d{bottom:85.322800pt;}
.y23{bottom:86.404267pt;}
.y42{bottom:92.036667pt;}
.y7b{bottom:93.926533pt;}
.y135{bottom:95.420000pt;}
.yac{bottom:97.989467pt;}
.y15c{bottom:99.322800pt;}
.y22{bottom:99.737600pt;}
.y41{bottom:104.703333pt;}
.y7a{bottom:106.593200pt;}
.y134{bottom:109.420000pt;}
.y21{bottom:113.070933pt;}
.yab{bottom:113.322800pt;}
.y40{bottom:117.370000pt;}
.y79{bottom:119.259867pt;}
.yc2{bottom:122.656133pt;}
.y133{bottom:123.420000pt;}
.y20{bottom:126.404267pt;}
.y15b{bottom:127.322800pt;}
.yaa{bottom:128.656133pt;}
.y3f{bottom:130.036667pt;}
.y78{bottom:131.926533pt;}
.y132{bottom:137.420000pt;}
.yc1{bottom:137.989467pt;}
.y1f{bottom:139.737600pt;}
.y15a{bottom:141.322800pt;}
.ya9{bottom:143.989467pt;}
.y77{bottom:144.593200pt;}
.yf9{bottom:149.322800pt;}
.y131{bottom:151.420000pt;}
.y1e{bottom:153.070933pt;}
.yc0{bottom:153.322800pt;}
.y159{bottom:155.322800pt;}
.y76{bottom:157.259867pt;}
.ya8{bottom:159.322800pt;}
.y3e{bottom:162.099733pt;}
.yf8{bottom:164.656133pt;}
.y1d{bottom:166.404267pt;}
.ybf{bottom:168.656133pt;}
.y158{bottom:169.322800pt;}
.y75{bottom:169.926533pt;}
.y130{bottom:173.086667pt;}
.ya7{bottom:174.656133pt;}
.y3d{bottom:177.433067pt;}
.y1c{bottom:179.737600pt;}
.yf7{bottom:179.989467pt;}
.ya5{bottom:180.322800pt;}
.y74{bottom:182.593200pt;}
.y157{bottom:183.322800pt;}
.ybe{bottom:183.989467pt;}
.ya6{bottom:189.989467pt;}
.y3c{bottom:192.766400pt;}
.y1b{bottom:193.070933pt;}
.ya4{bottom:194.322800pt;}
.y73{bottom:195.259867pt;}
.yf6{bottom:195.322800pt;}
.y156{bottom:197.322800pt;}
.ybd{bottom:199.322800pt;}
.y80{bottom:205.322800pt;}
.y1a{bottom:206.404267pt;}
.y72{bottom:207.926533pt;}
.y3b{bottom:208.099733pt;}
.ya3{bottom:208.322800pt;}
.yf5{bottom:210.656133pt;}
.y155{bottom:211.322800pt;}
.y102{bottom:211.989467pt;}
.ybc{bottom:214.656133pt;}
.y12f{bottom:218.656133pt;}
.y71{bottom:220.593200pt;}
.y7f{bottom:220.656133pt;}
.ya2{bottom:222.322800pt;}
.y3a{bottom:223.433067pt;}
.y154{bottom:225.322800pt;}
.yf4{bottom:225.989467pt;}
.y101{bottom:227.322800pt;}
.y106{bottom:228.656133pt;}
.ybb{bottom:229.989467pt;}
.y19{bottom:233.070933pt;}
.y70{bottom:233.259867pt;}
.y12e{bottom:233.989467pt;}
.y7e{bottom:235.989467pt;}
.ya1{bottom:236.322800pt;}
.y39{bottom:238.766400pt;}
.y153{bottom:239.322800pt;}
.yf3{bottom:241.322800pt;}
.y100{bottom:242.656133pt;}
.yba{bottom:245.322800pt;}
.y18{bottom:246.404267pt;}
.y12d{bottom:249.322800pt;}
.ya0{bottom:250.322800pt;}
.y7d{bottom:251.322800pt;}
.y152{bottom:253.322800pt;}
.y38{bottom:254.099733pt;}
.yf2{bottom:256.656133pt;}
.yff{bottom:257.989467pt;}
.yb9{bottom:260.656133pt;}
.y9f{bottom:264.322800pt;}
.y12c{bottom:264.656133pt;}
.y6f{bottom:266.656133pt;}
.y151{bottom:267.322800pt;}
.y37{bottom:269.433067pt;}
.y105{bottom:270.656133pt;}
.yf1{bottom:271.989467pt;}
.yfe{bottom:273.322800pt;}
.yb8{bottom:275.989467pt;}
.y9e{bottom:278.322800pt;}
.y17{bottom:278.404267pt;}
.y12b{bottom:279.989467pt;}
.y150{bottom:281.322800pt;}
.y6e{bottom:281.989467pt;}
.y104{bottom:284.656133pt;}
.y36{bottom:284.766400pt;}
.yf0{bottom:287.322800pt;}
.yb7{bottom:291.322800pt;}
.y16{bottom:291.737600pt;}
.y9d{bottom:292.322800pt;}
.y12a{bottom:295.322800pt;}
.y6d{bottom:297.322800pt;}
.y103{bottom:298.656133pt;}
.y35{bottom:300.099733pt;}
.yef{bottom:302.656133pt;}
.yfd{bottom:303.989467pt;}
.y9c{bottom:306.322800pt;}
.yb6{bottom:306.656133pt;}
.y14f{bottom:309.322800pt;}
.y15{bottom:310.404267pt;}
.y129{bottom:310.656133pt;}
.y6c{bottom:312.656133pt;}
.y34{bottom:315.433067pt;}
.yee{bottom:317.989467pt;}
.yb5{bottom:321.989467pt;}
.y14e{bottom:323.322800pt;}
.y14{bottom:323.737600pt;}
.y128{bottom:325.989467pt;}
.y6b{bottom:327.989467pt;}
.y10e{bottom:329.656133pt;}
.y33{bottom:330.766400pt;}
.yfc{bottom:331.989467pt;}
.yed{bottom:333.322800pt;}
.y9b{bottom:335.656133pt;}
.y13{bottom:337.070933pt;}
.yd4{bottom:337.322800pt;}
.y127{bottom:341.322800pt;}
.y6a{bottom:343.322800pt;}
.yfb{bottom:345.989467pt;}
.y32{bottom:346.099733pt;}
.yec{bottom:348.656133pt;}
.y12{bottom:350.404267pt;}
.y9a{bottom:350.989467pt;}
.y14d{bottom:351.322800pt;}
.yb4{bottom:352.656133pt;}
.y126{bottom:356.656133pt;}
.y69{bottom:358.656133pt;}
.yfa{bottom:359.989467pt;}
.y31{bottom:361.433067pt;}
.y11{bottom:363.737600pt;}
.yeb{bottom:363.989467pt;}
.y14c{bottom:365.322800pt;}
.y99{bottom:366.322800pt;}
.yb3{bottom:366.656133pt;}
.yd3{bottom:367.989467pt;}
.y125{bottom:371.989467pt;}
.y68{bottom:373.989467pt;}
.y30{bottom:376.766400pt;}
.y10{bottom:377.070933pt;}
.yea{bottom:379.322800pt;}
.yb2{bottom:380.656133pt;}
.y98{bottom:381.656133pt;}
.yd2{bottom:383.322800pt;}
.y124{bottom:387.322800pt;}
.y67{bottom:389.322800pt;}
.yf{bottom:390.404267pt;}
.y2f{bottom:392.099733pt;}
.y14b{bottom:393.322800pt;}
.yb1{bottom:394.656133pt;}
.y97{bottom:396.989467pt;}
.yd1{bottom:398.656133pt;}
.y123{bottom:402.656133pt;}
.ye{bottom:403.737600pt;}
.y66{bottom:404.656133pt;}
.y14a{bottom:407.322800pt;}
.y2e{bottom:407.433067pt;}
.yb0{bottom:408.656133pt;}
.ye9{bottom:409.989467pt;}
.y96{bottom:412.322800pt;}
.yd0{bottom:413.989467pt;}
.yd{bottom:417.070933pt;}
.y122{bottom:417.989467pt;}
.y65{bottom:419.989467pt;}
.y149{bottom:421.322800pt;}
.yaf{bottom:422.656133pt;}
.y2d{bottom:422.766400pt;}
.ye8{bottom:425.322800pt;}
.y95{bottom:427.656133pt;}
.ycf{bottom:429.322800pt;}
.yc{bottom:430.404267pt;}
.y121{bottom:433.322800pt;}
.y64{bottom:435.322800pt;}
.yae{bottom:436.656133pt;}
.y2c{bottom:438.099733pt;}
.ye7{bottom:440.656133pt;}
.y94{bottom:442.989467pt;}
.yb{bottom:443.737600pt;}
.yce{bottom:444.656133pt;}
.y120{bottom:448.656133pt;}
.y148{bottom:449.322800pt;}
.y63{bottom:450.656133pt;}
.y2b{bottom:453.433067pt;}
.ye6{bottom:455.989467pt;}
.y93{bottom:458.322800pt;}
.ycd{bottom:459.989467pt;}
.y147{bottom:463.322800pt;}
.y11f{bottom:463.989467pt;}
.y62{bottom:465.989467pt;}
.y2a{bottom:468.766400pt;}
.ya{bottom:470.404267pt;}
.ye5{bottom:471.322800pt;}
.y92{bottom:473.656133pt;}
.ycc{bottom:475.322800pt;}
.y146{bottom:477.322800pt;}
.y11e{bottom:479.322800pt;}
.y61{bottom:481.322800pt;}
.ye4{bottom:486.656133pt;}
.y91{bottom:488.989467pt;}
.ycb{bottom:490.656133pt;}
.y145{bottom:491.322800pt;}
.y11d{bottom:494.656133pt;}
.y60{bottom:496.656133pt;}
.ye3{bottom:501.989467pt;}
.y90{bottom:504.322800pt;}
.y144{bottom:505.322800pt;}
.yca{bottom:505.989467pt;}
.y11c{bottom:509.989467pt;}
.y5f{bottom:511.989467pt;}
.y111{bottom:515.989467pt;}
.ye2{bottom:517.322800pt;}
.y4c{bottom:518.076133pt;}
.y143{bottom:519.322800pt;}
.y8f{bottom:519.656133pt;}
.y10d{bottom:521.322800pt;}
.y11b{bottom:525.322800pt;}
.y4e{bottom:526.076133pt;}
.y5e{bottom:527.322800pt;}
.y110{bottom:529.989467pt;}
.y4b{bottom:531.409467pt;}
.ye1{bottom:532.656133pt;}
.y142{bottom:533.322800pt;}
.y8e{bottom:534.989467pt;}
.yc9{bottom:536.656133pt;}
.y5d{bottom:542.656133pt;}
.y10f{bottom:543.989467pt;}
.y4d{bottom:544.742800pt;}
.y141{bottom:547.322800pt;}
.ye0{bottom:547.989467pt;}
.y4a{bottom:550.076133pt;}
.y8d{bottom:550.322800pt;}
.yc8{bottom:550.656133pt;}
.y10c{bottom:551.989467pt;}
.y9{bottom:553.070933pt;}
.y11a{bottom:555.989467pt;}
.y5c{bottom:557.989467pt;}
.y140{bottom:561.322800pt;}
.ydf{bottom:563.322800pt;}
.y49{bottom:563.409467pt;}
.yc7{bottom:564.656133pt;}
.y8c{bottom:565.656133pt;}
.y8{bottom:565.737600pt;}
.y10b{bottom:565.989467pt;}
.y119{bottom:569.989467pt;}
.y5b{bottom:573.322800pt;}
.y13f{bottom:575.322800pt;}
.y48{bottom:576.742800pt;}
.yc6{bottom:578.656133pt;}
.y10a{bottom:579.989467pt;}
.y8b{bottom:580.989467pt;}
.y118{bottom:583.989467pt;}
.y5a{bottom:588.656133pt;}
.y13e{bottom:589.322800pt;}
.y47{bottom:590.076133pt;}
.yc5{bottom:592.656133pt;}
.yde{bottom:593.989467pt;}
.y8a{bottom:596.322800pt;}
.y117{bottom:597.989467pt;}
.y13d{bottom:603.322800pt;}
.y59{bottom:603.989467pt;}
.yc4{bottom:606.656133pt;}
.y109{bottom:607.989467pt;}
.y46{bottom:608.742800pt;}
.ydd{bottom:609.322800pt;}
.y89{bottom:611.656133pt;}
.y116{bottom:611.989467pt;}
.y13c{bottom:617.322800pt;}
.y58{bottom:619.322800pt;}
.yc3{bottom:620.656133pt;}
.y108{bottom:621.989467pt;}
.y45{bottom:622.076133pt;}
.ydc{bottom:624.656133pt;}
.y115{bottom:625.989467pt;}
.y88{bottom:626.989467pt;}
.y13b{bottom:631.322800pt;}
.y57{bottom:634.656133pt;}
.y107{bottom:635.989467pt;}
.ydb{bottom:639.989467pt;}
.y7{bottom:641.737600pt;}
.y44{bottom:641.967067pt;}
.y87{bottom:642.322800pt;}
.y13a{bottom:645.322800pt;}
.y56{bottom:649.989467pt;}
.y114{bottom:653.989467pt;}
.y6{bottom:654.404267pt;}
.yda{bottom:655.322800pt;}
.y86{bottom:657.656133pt;}
.y139{bottom:659.322800pt;}
.y55{bottom:665.322800pt;}
.y113{bottom:667.989467pt;}
.y5{bottom:670.404267pt;}
.yd9{bottom:670.656133pt;}
.y85{bottom:672.989467pt;}
.y138{bottom:673.322800pt;}
.y54{bottom:680.656133pt;}
.y112{bottom:681.989467pt;}
.y29{bottom:683.433067pt;}
.y137{bottom:687.322800pt;}
.y84{bottom:688.322800pt;}
.y53{bottom:695.989467pt;}
.y28{bottom:696.766400pt;}
.yd8{bottom:701.322800pt;}
.y83{bottom:703.656133pt;}
.y4{bottom:710.404267pt;}
.y52{bottom:711.322800pt;}
.yd7{bottom:715.322800pt;}
.y27{bottom:715.433067pt;}
.y82{bottom:718.989467pt;}
.y51{bottom:726.656133pt;}
.y26{bottom:728.766400pt;}
.yd6{bottom:729.322800pt;}
.y3{bottom:731.737600pt;}
.y81{bottom:734.322800pt;}
.y50{bottom:741.989467pt;}
.y25{bottom:742.099733pt;}
.yd5{bottom:743.322800pt;}
.y2{bottom:753.070933pt;}
.y24{bottom:755.433067pt;}
.y4f{bottom:757.322800pt;}
.y1{bottom:798.186933pt;}
.he{height:34.322286pt;}
.h2{height:35.882667pt;}
.h8{height:36.229079pt;}
.h6{height:36.243556pt;}
.hf{height:38.135873pt;}
.h5{height:40.368000pt;}
.hb{height:41.966222pt;}
.h7{height:42.610667pt;}
.hc{height:44.853333pt;}
.hd{height:45.154667pt;}
.h9{height:49.338667pt;}
.ha{height:49.670133pt;}
.h4{height:53.824000pt;}
.h3{height:71.765333pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x2{left:85.039333pt;}
.x5{left:105.039333pt;}
.xa{left:108.089467pt;}
.x9{left:122.721867pt;}
.xf{left:125.039333pt;}
.xd{left:130.550000pt;}
.xb{left:140.644800pt;}
.x7{left:148.701333pt;}
.xc{left:149.765200pt;}
.x8{left:160.619867pt;}
.x6{left:280.761467pt;}
.xe{left:313.684133pt;}
.x1{left:397.808533pt;}
.x4{left:414.422133pt;}
.x3{left:416.606000pt;}
}




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