
    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_c83cdae5f7a3ad21662f4ac0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_f069920478f6f6d1197f886d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_4843701935471c856064e033.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;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_97eff0c07b18937b83a20295.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_0b3abf2fc30b27eda344eb82.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_01353656add6decda837545f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aa2a1a6e7cecd852cafd9d34.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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:-16.471800px;}
.v4{vertical-align:-3.404400px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.272000px;}
.v5{vertical-align:16.272000px;}
.v3{vertical-align:20.595600px;}
.v1{vertical-align:22.655400px;}
.v7{vertical-align:32.976000px;}
.ls8f{letter-spacing:-3.696000px;}
.ls51{letter-spacing:-3.552000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls47{letter-spacing:-0.432000px;}
.ls60{letter-spacing:-0.240000px;}
.ls40{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.168000px;}
.ls82{letter-spacing:-0.144000px;}
.ls58{letter-spacing:-0.120000px;}
.ls59{letter-spacing:-0.096000px;}
.ls1f{letter-spacing:-0.048000px;}
.ls1c{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls56{letter-spacing:0.014400px;}
.ls57{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.048000px;}
.ls41{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.096000px;}
.ls30{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.180000px;}
.ls8b{letter-spacing:0.192000px;}
.ls55{letter-spacing:0.204600px;}
.ls26{letter-spacing:0.240000px;}
.ls33{letter-spacing:0.300000px;}
.ls78{letter-spacing:0.336000px;}
.ls63{letter-spacing:0.360000px;}
.ls8e{letter-spacing:0.384000px;}
.ls54{letter-spacing:0.396000px;}
.ls2d{letter-spacing:0.420000px;}
.ls6c{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.576000px;}
.ls3c{letter-spacing:0.600000px;}
.ls83{letter-spacing:0.624000px;}
.ls48{letter-spacing:0.660000px;}
.ls6d{letter-spacing:0.672000px;}
.ls53{letter-spacing:0.676800px;}
.ls52{letter-spacing:0.687000px;}
.lsd{letter-spacing:0.720000px;}
.ls72{letter-spacing:0.768000px;}
.lsc{letter-spacing:0.780000px;}
.ls79{letter-spacing:0.816000px;}
.ls42{letter-spacing:0.840000px;}
.ls87{letter-spacing:0.864000px;}
.lsf{letter-spacing:0.900000px;}
.ls49{letter-spacing:0.936000px;}
.ls3f{letter-spacing:0.944400px;}
.ls23{letter-spacing:0.960000px;}
.ls50{letter-spacing:1.008000px;}
.lse{letter-spacing:1.020000px;}
.ls7d{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.080000px;}
.ls7c{letter-spacing:1.104000px;}
.lsa{letter-spacing:1.140000px;}
.ls81{letter-spacing:1.152000px;}
.ls4c{letter-spacing:1.184400px;}
.ls4b{letter-spacing:1.185000px;}
.ls2c{letter-spacing:1.200000px;}
.ls1a{letter-spacing:1.260000px;}
.ls75{letter-spacing:1.296000px;}
.ls19{letter-spacing:1.320000px;}
.ls2b{letter-spacing:1.380000px;}
.ls73{letter-spacing:1.392000px;}
.ls4e{letter-spacing:1.440000px;}
.ls5d{letter-spacing:1.500000px;}
.ls80{letter-spacing:1.536000px;}
.ls16{letter-spacing:1.560000px;}
.ls6e{letter-spacing:1.584000px;}
.ls2e{letter-spacing:1.620000px;}
.ls21{letter-spacing:1.680000px;}
.ls7a{letter-spacing:1.728000px;}
.ls4f{letter-spacing:1.735800px;}
.ls11{letter-spacing:1.740000px;}
.ls7e{letter-spacing:1.776000px;}
.ls32{letter-spacing:1.800000px;}
.ls84{letter-spacing:1.824000px;}
.ls7f{letter-spacing:1.872000px;}
.ls13{letter-spacing:1.920000px;}
.ls67{letter-spacing:1.968000px;}
.ls24{letter-spacing:1.980000px;}
.ls4a{letter-spacing:1.996200px;}
.ls69{letter-spacing:2.016000px;}
.ls31{letter-spacing:2.040000px;}
.ls8a{letter-spacing:2.064000px;}
.ls35{letter-spacing:2.100000px;}
.ls7b{letter-spacing:2.112000px;}
.ls28{letter-spacing:2.160000px;}
.ls2f{letter-spacing:2.220000px;}
.ls4{letter-spacing:2.256000px;}
.ls38{letter-spacing:2.280000px;}
.ls6a{letter-spacing:2.304000px;}
.ls29{letter-spacing:2.340000px;}
.ls85{letter-spacing:2.352000px;}
.ls6f{letter-spacing:2.400000px;}
.ls18{letter-spacing:2.460000px;}
.ls76{letter-spacing:2.496000px;}
.lsb{letter-spacing:2.520000px;}
.ls5f{letter-spacing:2.580000px;}
.ls6b{letter-spacing:2.592000px;}
.ls3d{letter-spacing:2.640000px;}
.ls71{letter-spacing:2.688000px;}
.ls3e{letter-spacing:2.700000px;}
.ls12{letter-spacing:2.760000px;}
.ls77{letter-spacing:2.784000px;}
.ls14{letter-spacing:2.820000px;}
.ls86{letter-spacing:2.928000px;}
.ls9{letter-spacing:2.940000px;}
.ls17{letter-spacing:3.000000px;}
.ls10{letter-spacing:3.060000px;}
.ls8c{letter-spacing:3.072000px;}
.ls2a{letter-spacing:3.120000px;}
.ls8d{letter-spacing:3.168000px;}
.ls20{letter-spacing:3.180000px;}
.ls74{letter-spacing:3.312000px;}
.ls44{letter-spacing:3.360000px;}
.ls89{letter-spacing:3.456000px;}
.ls3a{letter-spacing:3.480000px;}
.ls65{letter-spacing:3.540000px;}
.ls46{letter-spacing:3.600000px;}
.ls5b{letter-spacing:3.660000px;}
.ls25{letter-spacing:3.720000px;}
.ls64{letter-spacing:3.780000px;}
.ls62{letter-spacing:3.840000px;}
.ls68{letter-spacing:3.888000px;}
.ls61{letter-spacing:3.900000px;}
.ls5c{letter-spacing:4.020000px;}
.ls22{letter-spacing:4.080000px;}
.ls88{letter-spacing:4.128000px;}
.ls45{letter-spacing:4.140000px;}
.ls15{letter-spacing:4.380000px;}
.ls43{letter-spacing:4.440000px;}
.ls5a{letter-spacing:4.500000px;}
.ls4d{letter-spacing:4.560000px;}
.ls3b{letter-spacing:4.860000px;}
.ls36{letter-spacing:5.100000px;}
.ls66{letter-spacing:5.220000px;}
.ls70{letter-spacing:5.376000px;}
.ls1b{letter-spacing:6.120000px;}
.ls37{letter-spacing:6.240000px;}
.ls5e{letter-spacing:7.440000px;}
.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;}
}
.ws4b{word-spacing:-20.520000px;}
.ws1{word-spacing:-19.680000px;}
.ws43{word-spacing:-19.320000px;}
.ws42{word-spacing:-18.900000px;}
.ws4c{word-spacing:-18.840000px;}
.ws62{word-spacing:-18.720000px;}
.ws4d{word-spacing:-17.340000px;}
.ws30{word-spacing:-16.680000px;}
.ws64{word-spacing:-16.656000px;}
.ws81{word-spacing:-16.416000px;}
.ws66{word-spacing:-16.128000px;}
.ws61{word-spacing:-15.744000px;}
.ws65{word-spacing:-15.360000px;}
.ws67{word-spacing:-14.928000px;}
.ws63{word-spacing:-14.736000px;}
.ws7e{word-spacing:-14.208000px;}
.ws12{word-spacing:-14.178000px;}
.ws68{word-spacing:-14.160000px;}
.ws60{word-spacing:-14.064000px;}
.ws7f{word-spacing:-14.016000px;}
.ws80{word-spacing:-13.824000px;}
.ws5e{word-spacing:-13.584000px;}
.ws31{word-spacing:-13.344000px;}
.ws5f{word-spacing:-13.296000px;}
.ws7c{word-spacing:-13.248000px;}
.ws5d{word-spacing:-13.200000px;}
.ws41{word-spacing:-12.708000px;}
.ws0{word-spacing:-11.008800px;}
.ws2f{word-spacing:-10.944000px;}
.ws7d{word-spacing:-9.648000px;}
.ws48{word-spacing:-7.440000px;}
.ws11{word-spacing:-6.120000px;}
.ws4e{word-spacing:-3.900000px;}
.ws84{word-spacing:-3.456000px;}
.ws38{word-spacing:-3.360000px;}
.ws6c{word-spacing:-3.120000px;}
.ws87{word-spacing:-2.928000px;}
.ws25{word-spacing:-2.700000px;}
.ws3{word-spacing:-2.664000px;}
.ws6d{word-spacing:-2.640000px;}
.ws4a{word-spacing:-2.580000px;}
.ws6f{word-spacing:-2.304000px;}
.ws1f{word-spacing:-2.220000px;}
.ws85{word-spacing:-2.064000px;}
.ws75{word-spacing:-1.920000px;}
.ws6b{word-spacing:-1.740000px;}
.ws72{word-spacing:-1.584000px;}
.ws21{word-spacing:-1.560000px;}
.ws73{word-spacing:-1.296000px;}
.ws77{word-spacing:-1.104000px;}
.ws47{word-spacing:-1.080000px;}
.wse{word-spacing:-1.020000px;}
.ws86{word-spacing:-0.816000px;}
.ws6a{word-spacing:-0.720000px;}
.ws71{word-spacing:-0.672000px;}
.ws53{word-spacing:-0.660000px;}
.ws7a{word-spacing:-0.624000px;}
.ws1a{word-spacing:-0.480000px;}
.ws76{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.420000px;}
.ws88{word-spacing:-0.384000px;}
.ws5a{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.300000px;}
.ws24{word-spacing:-0.240000px;}
.ws5c{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.144000px;}
.ws57{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws83{word-spacing:0.048000px;}
.ws3e{word-spacing:0.060000px;}
.ws6e{word-spacing:0.096000px;}
.ws55{word-spacing:0.120000px;}
.ws82{word-spacing:0.144000px;}
.ws18{word-spacing:0.180000px;}
.ws7{word-spacing:0.240000px;}
.ws79{word-spacing:0.384000px;}
.ws23{word-spacing:0.480000px;}
.ws37{word-spacing:0.540000px;}
.ws22{word-spacing:0.600000px;}
.ws19{word-spacing:0.660000px;}
.ws78{word-spacing:0.672000px;}
.ws26{word-spacing:0.720000px;}
.ws3b{word-spacing:0.780000px;}
.ws40{word-spacing:0.864000px;}
.ws49{word-spacing:0.900000px;}
.ws1e{word-spacing:1.140000px;}
.ws2d{word-spacing:1.200000px;}
.ws3c{word-spacing:1.440000px;}
.ws8{word-spacing:1.536000px;}
.ws58{word-spacing:1.560000px;}
.ws28{word-spacing:1.620000px;}
.ws5b{word-spacing:1.680000px;}
.ws74{word-spacing:1.776000px;}
.ws52{word-spacing:1.860000px;}
.ws35{word-spacing:2.160000px;}
.ws7b{word-spacing:2.208000px;}
.ws51{word-spacing:2.220000px;}
.ws70{word-spacing:2.400000px;}
.ws14{word-spacing:2.460000px;}
.wsc{word-spacing:2.580000px;}
.ws69{word-spacing:2.700000px;}
.ws59{word-spacing:3.000000px;}
.ws56{word-spacing:3.060000px;}
.ws13{word-spacing:3.120000px;}
.ws3f{word-spacing:3.276000px;}
.ws39{word-spacing:3.312000px;}
.ws27{word-spacing:3.480000px;}
.ws6{word-spacing:3.504000px;}
.ws50{word-spacing:3.540000px;}
.ws20{word-spacing:3.600000px;}
.ws4f{word-spacing:3.660000px;}
.ws89{word-spacing:3.780000px;}
.wsf{word-spacing:3.960000px;}
.ws17{word-spacing:4.080000px;}
.ws1d{word-spacing:4.140000px;}
.ws10{word-spacing:4.200000px;}
.ws54{word-spacing:4.320000px;}
.ws4{word-spacing:4.368000px;}
.ws5{word-spacing:4.416000px;}
.ws16{word-spacing:4.440000px;}
.ws1c{word-spacing:4.500000px;}
.ws45{word-spacing:4.560000px;}
.ws3d{word-spacing:4.680000px;}
.ws36{word-spacing:4.800000px;}
.ws44{word-spacing:4.980000px;}
.ws46{word-spacing:5.100000px;}
.ws3a{word-spacing:5.340000px;}
.wsb{word-spacing:5.460000px;}
.wsd{word-spacing:5.520000px;}
.ws34{word-spacing:7.080000px;}
.ws33{word-spacing:221.952000px;}
.ws32{word-spacing:291.408000px;}
.ws2c{word-spacing:361.440000px;}
.ws2b{word-spacing:401.472000px;}
.ws2a{word-spacing:412.128000px;}
.ws29{word-spacing:637.728000px;}
.ws2e{word-spacing:1408.512000px;}
._d{margin-left:-2898.126000px;}
._24{margin-left:-2874.309000px;}
._36{margin-left:-7.860000px;}
._9{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.990000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.186800px;}
._4{width:1.008000px;}
._7{width:2.064000px;}
._5{width:3.120000px;}
._6{width:4.128000px;}
._8{width:5.232000px;}
._a{width:6.480000px;}
._c{width:7.680000px;}
._29{width:8.940000px;}
._b{width:11.580000px;}
._33{width:66.720000px;}
._30{width:236.064000px;}
._2b{width:237.456000px;}
._2d{width:239.088000px;}
._34{width:240.672000px;}
._23{width:243.936000px;}
._35{width:248.688000px;}
._2f{width:255.072000px;}
._32{width:267.360000px;}
._2c{width:270.384000px;}
._31{width:271.776000px;}
._2e{width:274.374000px;}
._12{width:293.472000px;}
._11{width:301.440000px;}
._10{width:316.128000px;}
._2a{width:320.784000px;}
._22{width:394.704000px;}
._1b{width:434.784000px;}
._14{width:442.848000px;}
._18{width:448.128000px;}
._1f{width:454.752000px;}
._e{width:457.488000px;}
._1e{width:460.128000px;}
._1d{width:465.456000px;}
._15{width:470.832000px;}
._28{width:487.248000px;}
._f{width:489.504000px;}
._1a{width:494.784000px;}
._17{width:501.456000px;}
._21{width:558.864000px;}
._19{width:571.008000px;}
._16{width:575.040000px;}
._1c{width:577.632000px;}
._20{width:669.744000px;}
._13{width:691.056000px;}
._26{width:729.984000px;}
._27{width:804.672000px;}
._25{width:1593.552000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.ya7{bottom:83.169300px;}
.yef{bottom:83.228850px;}
.y62{bottom:83.363850px;}
.ya8{bottom:83.490300px;}
.y2b{bottom:83.493900px;}
.y103{bottom:88.796700px;}
.ya3{bottom:91.837650px;}
.y6d{bottom:92.168400px;}
.y77{bottom:92.187750px;}
.y143{bottom:94.938300px;}
.ya6{bottom:98.913300px;}
.yee{bottom:101.228850px;}
.y61{bottom:101.363850px;}
.y102{bottom:103.796700px;}
.ya2{bottom:108.085650px;}
.y76{bottom:108.435750px;}
.y142{bottom:109.938300px;}
.y6c{bottom:112.412400px;}
.y101{bottom:118.796700px;}
.yed{bottom:119.228850px;}
.y60{bottom:119.363850px;}
.y19{bottom:121.513200px;}
.ya1{bottom:124.333650px;}
.y75{bottom:124.683750px;}
.y141{bottom:124.938300px;}
.y6b{bottom:132.656400px;}
.y100{bottom:133.796700px;}
.yec{bottom:137.228850px;}
.y5f{bottom:137.363850px;}
.y140{bottom:139.938300px;}
.ya0{bottom:140.581650px;}
.yff{bottom:148.796700px;}
.y6a{bottom:152.900400px;}
.y13f{bottom:154.938300px;}
.yeb{bottom:155.228850px;}
.y5e{bottom:155.363850px;}
.y74{bottom:156.195750px;}
.y9f{bottom:156.829650px;}
.yfe{bottom:163.796700px;}
.y69{bottom:169.148400px;}
.y13e{bottom:169.938300px;}
.y9e{bottom:173.077650px;}
.yea{bottom:173.228850px;}
.y5d{bottom:173.363850px;}
.y27{bottom:175.954200px;}
.yfd{bottom:178.796700px;}
.y13d{bottom:184.938300px;}
.y9d{bottom:189.325650px;}
.y73{bottom:191.013300px;}
.ye9{bottom:191.228850px;}
.y5c{bottom:191.363850px;}
.yfc{bottom:193.796700px;}
.y26{bottom:193.954200px;}
.y68{bottom:198.152400px;}
.y13c{bottom:199.938300px;}
.y9c{bottom:205.573650px;}
.yfb{bottom:208.796700px;}
.ye8{bottom:209.228850px;}
.y5b{bottom:209.363850px;}
.y25{bottom:211.954200px;}
.y13b{bottom:214.938300px;}
.y9b{bottom:221.821650px;}
.yfa{bottom:223.796700px;}
.y67{bottom:227.156400px;}
.ye7{bottom:227.228850px;}
.y5a{bottom:227.363850px;}
.y13a{bottom:229.938300px;}
.y24{bottom:229.954200px;}
.y72{bottom:235.193100px;}
.y9a{bottom:238.069650px;}
.yf9{bottom:238.796700px;}
.y139{bottom:244.938300px;}
.ye6{bottom:245.228850px;}
.y59{bottom:245.363850px;}
.y23{bottom:247.954200px;}
.y71{bottom:250.937100px;}
.yf8{bottom:253.796700px;}
.y99{bottom:254.317650px;}
.y66{bottom:259.470000px;}
.y138{bottom:259.938300px;}
.ye5{bottom:263.228850px;}
.y58{bottom:263.363850px;}
.y22{bottom:265.954200px;}
.y70{bottom:266.693100px;}
.yf7{bottom:268.796700px;}
.y98{bottom:270.565650px;}
.y137{bottom:274.938300px;}
.ye4{bottom:281.228850px;}
.y57{bottom:281.363850px;}
.yf6{bottom:283.796700px;}
.y21{bottom:283.954200px;}
.y136{bottom:289.938300px;}
.yf5{bottom:298.796700px;}
.ye3{bottom:299.228850px;}
.y56{bottom:299.363850px;}
.y97{bottom:299.581650px;}
.y20{bottom:301.954200px;}
.y135{bottom:304.938300px;}
.y65{bottom:311.480550px;}
.yf4{bottom:313.796700px;}
.y96{bottom:316.081650px;}
.ye2{bottom:317.228850px;}
.y55{bottom:317.363850px;}
.y134{bottom:319.938300px;}
.y1f{bottom:319.954200px;}
.yf3{bottom:328.796700px;}
.y133{bottom:334.938300px;}
.ye1{bottom:335.228850px;}
.y54{bottom:335.363850px;}
.y1e{bottom:337.954200px;}
.yf2{bottom:343.796700px;}
.y95{bottom:348.395100px;}
.y132{bottom:349.938300px;}
.ye0{bottom:353.228850px;}
.y53{bottom:353.363850px;}
.y1d{bottom:355.954200px;}
.yf1{bottom:358.796700px;}
.y131{bottom:364.938300px;}
.y94{bottom:367.895100px;}
.ydf{bottom:371.228850px;}
.y52{bottom:371.363850px;}
.yf0{bottom:373.796700px;}
.y1c{bottom:373.954200px;}
.y130{bottom:379.938300px;}
.yde{bottom:389.228850px;}
.y51{bottom:389.363850px;}
.y1b{bottom:391.954200px;}
.y12f{bottom:394.938300px;}
.ydd{bottom:407.228850px;}
.y50{bottom:407.363850px;}
.y12e{bottom:409.938300px;}
.y28{bottom:409.954200px;}
.y93{bottom:419.038500px;}
.y12d{bottom:424.938300px;}
.y4f{bottom:425.363850px;}
.y1a{bottom:427.954200px;}
.y92{bottom:435.286500px;}
.y12c{bottom:439.938300px;}
.ydc{bottom:443.228850px;}
.y4e{bottom:443.363850px;}
.y91{bottom:451.534500px;}
.y12b{bottom:454.938300px;}
.y4d{bottom:461.363850px;}
.y90{bottom:467.782500px;}
.y12a{bottom:469.938300px;}
.ya5{bottom:477.945300px;}
.y4c{bottom:479.363850px;}
.y8f{bottom:484.030500px;}
.y129{bottom:484.938300px;}
.ya4{bottom:493.689300px;}
.y4b{bottom:497.363850px;}
.y128{bottom:499.938300px;}
.y8e{bottom:500.278500px;}
.y78{bottom:503.340000px;}
.y18{bottom:504.338550px;}
.y127{bottom:514.938300px;}
.y4a{bottom:515.363850px;}
.y8d{bottom:516.526500px;}
.y166{bottom:529.938300px;}
.y126{bottom:529.940700px;}
.y8c{bottom:532.774500px;}
.y49{bottom:533.363850px;}
.yda{bottom:533.385600px;}
.ybd{bottom:533.520600px;}
.y17{bottom:537.194550px;}
.y165{bottom:544.938300px;}
.y125{bottom:544.940700px;}
.y8b{bottom:549.022500px;}
.y48{bottom:551.363850px;}
.yd9{bottom:551.385600px;}
.ybc{bottom:551.520600px;}
.y16{bottom:552.194550px;}
.y6f{bottom:555.437100px;}
.y164{bottom:559.938300px;}
.y124{bottom:559.940700px;}
.y8a{bottom:565.270500px;}
.y15{bottom:567.194550px;}
.y47{bottom:569.363850px;}
.yd8{bottom:569.385600px;}
.ybb{bottom:569.520600px;}
.y163{bottom:574.938300px;}
.y123{bottom:574.940700px;}
.y89{bottom:581.518500px;}
.y14{bottom:582.194550px;}
.y46{bottom:587.363850px;}
.yd7{bottom:587.385600px;}
.y162{bottom:589.938300px;}
.y122{bottom:589.940700px;}
.y13{bottom:597.194550px;}
.y88{bottom:597.766500px;}
.y161{bottom:604.938300px;}
.y121{bottom:604.940700px;}
.y45{bottom:605.363850px;}
.yd6{bottom:605.385600px;}
.yba{bottom:605.520600px;}
.y12{bottom:612.194550px;}
.y160{bottom:619.938300px;}
.y120{bottom:619.940700px;}
.y44{bottom:623.363850px;}
.yd5{bottom:623.385600px;}
.y86{bottom:626.770500px;}
.y11{bottom:627.194550px;}
.y15f{bottom:634.938300px;}
.y11f{bottom:634.940700px;}
.y87{bottom:638.902500px;}
.y43{bottom:641.363850px;}
.yd4{bottom:641.385600px;}
.y10{bottom:642.194550px;}
.y85{bottom:643.270500px;}
.y15e{bottom:649.938300px;}
.y11e{bottom:649.940700px;}
.yf{bottom:657.194550px;}
.y42{bottom:659.363850px;}
.yd3{bottom:659.385600px;}
.yb9{bottom:659.655600px;}
.y15d{bottom:664.938300px;}
.y11d{bottom:664.940700px;}
.ye{bottom:672.194550px;}
.y84{bottom:675.578850px;}
.y41{bottom:677.363850px;}
.yd2{bottom:677.385600px;}
.yb8{bottom:677.655600px;}
.y15c{bottom:679.938300px;}
.y11c{bottom:679.940700px;}
.yd{bottom:687.194550px;}
.y15b{bottom:694.938300px;}
.y11b{bottom:694.940700px;}
.y83{bottom:695.078850px;}
.y63{bottom:695.228850px;}
.y40{bottom:695.363850px;}
.yd1{bottom:695.385600px;}
.yb7{bottom:695.655600px;}
.y15a{bottom:709.938300px;}
.y11a{bottom:709.940700px;}
.y3f{bottom:713.363850px;}
.y177{bottom:713.367600px;}
.yd0{bottom:713.385600px;}
.yb6{bottom:713.655600px;}
.y159{bottom:724.938300px;}
.y119{bottom:724.940700px;}
.y3e{bottom:731.363850px;}
.y176{bottom:731.367600px;}
.ycf{bottom:731.385600px;}
.yb5{bottom:731.655600px;}
.yc{bottom:735.903000px;}
.y158{bottom:739.938300px;}
.y118{bottom:739.940700px;}
.y3d{bottom:749.363850px;}
.y175{bottom:749.367600px;}
.y82{bottom:749.378850px;}
.yce{bottom:749.385600px;}
.yb{bottom:750.339000px;}
.y157{bottom:754.938300px;}
.y117{bottom:754.940700px;}
.y3c{bottom:767.363850px;}
.y174{bottom:767.367600px;}
.y81{bottom:767.378850px;}
.ycd{bottom:767.385600px;}
.yb4{bottom:767.655600px;}
.y156{bottom:769.938300px;}
.y116{bottom:769.940700px;}
.ya{bottom:777.494550px;}
.y155{bottom:784.938300px;}
.y115{bottom:784.940700px;}
.y3b{bottom:785.363850px;}
.y173{bottom:785.367600px;}
.y80{bottom:785.378850px;}
.ycc{bottom:785.385600px;}
.y154{bottom:799.938300px;}
.y114{bottom:799.940700px;}
.y3a{bottom:803.363850px;}
.y172{bottom:803.367600px;}
.y7f{bottom:803.378850px;}
.ycb{bottom:803.385600px;}
.yb3{bottom:803.505600px;}
.y153{bottom:814.938300px;}
.y113{bottom:814.940700px;}
.y9{bottom:816.112500px;}
.y39{bottom:821.363850px;}
.y171{bottom:821.367600px;}
.y7e{bottom:821.378850px;}
.yca{bottom:821.385600px;}
.yb2{bottom:821.505600px;}
.y152{bottom:829.938300px;}
.y112{bottom:829.940700px;}
.y8{bottom:832.612500px;}
.y38{bottom:839.363850px;}
.y170{bottom:839.367600px;}
.yc9{bottom:839.385600px;}
.yb1{bottom:839.505600px;}
.y151{bottom:844.938300px;}
.y111{bottom:844.940700px;}
.y7{bottom:849.112500px;}
.y37{bottom:857.363850px;}
.y7d{bottom:857.378850px;}
.yc8{bottom:857.385600px;}
.yb0{bottom:857.505600px;}
.y150{bottom:859.938300px;}
.y110{bottom:859.940700px;}
.y6{bottom:865.612500px;}
.y14f{bottom:874.938300px;}
.y10f{bottom:874.940700px;}
.y36{bottom:875.363850px;}
.y16f{bottom:875.367600px;}
.yc7{bottom:875.385600px;}
.yaf{bottom:875.505600px;}
.y5{bottom:880.879800px;}
.y6e{bottom:884.316450px;}
.y14e{bottom:889.938300px;}
.y10e{bottom:889.940700px;}
.y7c{bottom:893.228850px;}
.y35{bottom:893.363850px;}
.y16e{bottom:893.367600px;}
.yc6{bottom:893.385600px;}
.yae{bottom:893.505600px;}
.y14d{bottom:904.938300px;}
.y10d{bottom:904.940700px;}
.y4{bottom:908.269200px;}
.y7b{bottom:911.228850px;}
.y34{bottom:911.363850px;}
.y16d{bottom:911.367600px;}
.yc5{bottom:911.385600px;}
.yad{bottom:911.505600px;}
.y14c{bottom:919.938300px;}
.y10c{bottom:919.940700px;}
.y7a{bottom:929.228850px;}
.y33{bottom:929.363850px;}
.y16c{bottom:929.367600px;}
.yc4{bottom:929.385600px;}
.yac{bottom:929.505600px;}
.y14b{bottom:934.938300px;}
.y10b{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.y32{bottom:947.363850px;}
.y16b{bottom:947.367600px;}
.yc3{bottom:947.385600px;}
.yab{bottom:947.513850px;}
.y14a{bottom:949.938300px;}
.y10a{bottom:949.940700px;}
.y149{bottom:964.938300px;}
.y109{bottom:964.940700px;}
.y79{bottom:965.228850px;}
.y31{bottom:965.363850px;}
.y16a{bottom:965.367600px;}
.yc2{bottom:965.385600px;}
.yaa{bottom:965.513850px;}
.y148{bottom:979.938300px;}
.y108{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y30{bottom:983.363850px;}
.y169{bottom:983.367600px;}
.yc1{bottom:983.385600px;}
.y147{bottom:994.938300px;}
.y107{bottom:994.940700px;}
.y2f{bottom:1001.363850px;}
.y168{bottom:1001.367600px;}
.yc0{bottom:1001.385600px;}
.ya9{bottom:1001.513850px;}
.y146{bottom:1009.938300px;}
.y106{bottom:1009.940700px;}
.y2e{bottom:1019.363850px;}
.ybf{bottom:1019.385600px;}
.y145{bottom:1024.938300px;}
.y105{bottom:1024.940700px;}
.y2d{bottom:1037.363850px;}
.y167{bottom:1037.367600px;}
.ybe{bottom:1037.385600px;}
.y144{bottom:1039.938300px;}
.y104{bottom:1039.940700px;}
.y2a{bottom:1070.769450px;}
.y64{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.ydb{bottom:1086.069600px;}
.h6{height:20.967187px;}
.h2{height:30.618164px;}
.h7{height:34.945312px;}
.h9{height:34.968750px;}
.h8{height:34.992188px;}
.hd{height:37.179199px;}
.h10{height:39.264187px;}
.ha{height:43.681641px;}
.hc{height:43.710938px;}
.hb{height:43.740234px;}
.he{height:46.839741px;}
.hf{height:51.264187px;}
.h5{height:51.523955px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h11{height:67.968188px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:76.535400px;}
.x16{left:78.661350px;}
.x17{left:86.952750px;}
.x7{left:96.094500px;}
.x1{left:97.795200px;}
.x12{left:99.921300px;}
.x28{left:106.299150px;}
.xa{left:110.555400px;}
.x14{left:115.876200px;}
.x26{left:127.555200px;}
.x5{left:131.816400px;}
.x3{left:161.571600px;}
.x19{left:180.789300px;}
.x4{left:212.876400px;}
.x25{left:215.545200px;}
.x23{left:220.119150px;}
.x1a{left:232.773300px;}
.x1b{left:265.797300px;}
.x13{left:283.017300px;}
.x1c{left:360.321300px;}
.x1d{left:393.345300px;}
.x8{left:455.041500px;}
.xb{left:457.070400px;}
.x10{left:478.345350px;}
.x6{left:480.476400px;}
.xd{left:491.090400px;}
.x1e{left:498.549300px;}
.x27{left:508.111200px;}
.x11{left:512.365350px;}
.x1f{left:520.905300px;}
.xc{left:525.260400px;}
.x24{left:570.695400px;}
.x18{left:612.916950px;}
.x20{left:626.109300px;}
.x21{left:648.465300px;}
.xf{left:663.492300px;}
.x2{left:704.338650px;}
.x29{left:717.130200px;}
.xe{left:724.221150px;}
.x15{left:745.480950px;}
.x22{left:753.957300px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v4{vertical-align:-3.026133pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.797333pt;}
.v5{vertical-align:14.464000pt;}
.v3{vertical-align:18.307200pt;}
.v1{vertical-align:20.138133pt;}
.v7{vertical-align:29.312000pt;}
.ls8f{letter-spacing:-3.285333pt;}
.ls51{letter-spacing:-3.157333pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls47{letter-spacing:-0.384000pt;}
.ls60{letter-spacing:-0.213333pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.149333pt;}
.ls82{letter-spacing:-0.128000pt;}
.ls58{letter-spacing:-0.106667pt;}
.ls59{letter-spacing:-0.085333pt;}
.ls1f{letter-spacing:-0.042667pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls56{letter-spacing:0.012800pt;}
.ls57{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.042667pt;}
.ls41{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.085333pt;}
.ls30{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.160000pt;}
.ls8b{letter-spacing:0.170667pt;}
.ls55{letter-spacing:0.181867pt;}
.ls26{letter-spacing:0.213333pt;}
.ls33{letter-spacing:0.266667pt;}
.ls78{letter-spacing:0.298667pt;}
.ls63{letter-spacing:0.320000pt;}
.ls8e{letter-spacing:0.341333pt;}
.ls54{letter-spacing:0.352000pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls6c{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.512000pt;}
.ls3c{letter-spacing:0.533333pt;}
.ls83{letter-spacing:0.554667pt;}
.ls48{letter-spacing:0.586667pt;}
.ls6d{letter-spacing:0.597333pt;}
.ls53{letter-spacing:0.601600pt;}
.ls52{letter-spacing:0.610667pt;}
.lsd{letter-spacing:0.640000pt;}
.ls72{letter-spacing:0.682667pt;}
.lsc{letter-spacing:0.693333pt;}
.ls79{letter-spacing:0.725333pt;}
.ls42{letter-spacing:0.746667pt;}
.ls87{letter-spacing:0.768000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls49{letter-spacing:0.832000pt;}
.ls3f{letter-spacing:0.839467pt;}
.ls23{letter-spacing:0.853333pt;}
.ls50{letter-spacing:0.896000pt;}
.lse{letter-spacing:0.906667pt;}
.ls7d{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls7c{letter-spacing:0.981333pt;}
.lsa{letter-spacing:1.013333pt;}
.ls81{letter-spacing:1.024000pt;}
.ls4c{letter-spacing:1.052800pt;}
.ls4b{letter-spacing:1.053333pt;}
.ls2c{letter-spacing:1.066667pt;}
.ls1a{letter-spacing:1.120000pt;}
.ls75{letter-spacing:1.152000pt;}
.ls19{letter-spacing:1.173333pt;}
.ls2b{letter-spacing:1.226667pt;}
.ls73{letter-spacing:1.237333pt;}
.ls4e{letter-spacing:1.280000pt;}
.ls5d{letter-spacing:1.333333pt;}
.ls80{letter-spacing:1.365333pt;}
.ls16{letter-spacing:1.386667pt;}
.ls6e{letter-spacing:1.408000pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls21{letter-spacing:1.493333pt;}
.ls7a{letter-spacing:1.536000pt;}
.ls4f{letter-spacing:1.542933pt;}
.ls11{letter-spacing:1.546667pt;}
.ls7e{letter-spacing:1.578667pt;}
.ls32{letter-spacing:1.600000pt;}
.ls84{letter-spacing:1.621333pt;}
.ls7f{letter-spacing:1.664000pt;}
.ls13{letter-spacing:1.706667pt;}
.ls67{letter-spacing:1.749333pt;}
.ls24{letter-spacing:1.760000pt;}
.ls4a{letter-spacing:1.774400pt;}
.ls69{letter-spacing:1.792000pt;}
.ls31{letter-spacing:1.813333pt;}
.ls8a{letter-spacing:1.834667pt;}
.ls35{letter-spacing:1.866667pt;}
.ls7b{letter-spacing:1.877333pt;}
.ls28{letter-spacing:1.920000pt;}
.ls2f{letter-spacing:1.973333pt;}
.ls4{letter-spacing:2.005333pt;}
.ls38{letter-spacing:2.026667pt;}
.ls6a{letter-spacing:2.048000pt;}
.ls29{letter-spacing:2.080000pt;}
.ls85{letter-spacing:2.090667pt;}
.ls6f{letter-spacing:2.133333pt;}
.ls18{letter-spacing:2.186667pt;}
.ls76{letter-spacing:2.218667pt;}
.lsb{letter-spacing:2.240000pt;}
.ls5f{letter-spacing:2.293333pt;}
.ls6b{letter-spacing:2.304000pt;}
.ls3d{letter-spacing:2.346667pt;}
.ls71{letter-spacing:2.389333pt;}
.ls3e{letter-spacing:2.400000pt;}
.ls12{letter-spacing:2.453333pt;}
.ls77{letter-spacing:2.474667pt;}
.ls14{letter-spacing:2.506667pt;}
.ls86{letter-spacing:2.602667pt;}
.ls9{letter-spacing:2.613333pt;}
.ls17{letter-spacing:2.666667pt;}
.ls10{letter-spacing:2.720000pt;}
.ls8c{letter-spacing:2.730667pt;}
.ls2a{letter-spacing:2.773333pt;}
.ls8d{letter-spacing:2.816000pt;}
.ls20{letter-spacing:2.826667pt;}
.ls74{letter-spacing:2.944000pt;}
.ls44{letter-spacing:2.986667pt;}
.ls89{letter-spacing:3.072000pt;}
.ls3a{letter-spacing:3.093333pt;}
.ls65{letter-spacing:3.146667pt;}
.ls46{letter-spacing:3.200000pt;}
.ls5b{letter-spacing:3.253333pt;}
.ls25{letter-spacing:3.306667pt;}
.ls64{letter-spacing:3.360000pt;}
.ls62{letter-spacing:3.413333pt;}
.ls68{letter-spacing:3.456000pt;}
.ls61{letter-spacing:3.466667pt;}
.ls5c{letter-spacing:3.573333pt;}
.ls22{letter-spacing:3.626667pt;}
.ls88{letter-spacing:3.669333pt;}
.ls45{letter-spacing:3.680000pt;}
.ls15{letter-spacing:3.893333pt;}
.ls43{letter-spacing:3.946667pt;}
.ls5a{letter-spacing:4.000000pt;}
.ls4d{letter-spacing:4.053333pt;}
.ls3b{letter-spacing:4.320000pt;}
.ls36{letter-spacing:4.533333pt;}
.ls66{letter-spacing:4.640000pt;}
.ls70{letter-spacing:4.778667pt;}
.ls1b{letter-spacing:5.440000pt;}
.ls37{letter-spacing:5.546667pt;}
.ls5e{letter-spacing:6.613333pt;}
.ws4b{word-spacing:-18.240000pt;}
.ws1{word-spacing:-17.493333pt;}
.ws43{word-spacing:-17.173333pt;}
.ws42{word-spacing:-16.800000pt;}
.ws4c{word-spacing:-16.746667pt;}
.ws62{word-spacing:-16.640000pt;}
.ws4d{word-spacing:-15.413333pt;}
.ws30{word-spacing:-14.826667pt;}
.ws64{word-spacing:-14.805333pt;}
.ws81{word-spacing:-14.592000pt;}
.ws66{word-spacing:-14.336000pt;}
.ws61{word-spacing:-13.994667pt;}
.ws65{word-spacing:-13.653333pt;}
.ws67{word-spacing:-13.269333pt;}
.ws63{word-spacing:-13.098667pt;}
.ws7e{word-spacing:-12.629333pt;}
.ws12{word-spacing:-12.602667pt;}
.ws68{word-spacing:-12.586667pt;}
.ws60{word-spacing:-12.501333pt;}
.ws7f{word-spacing:-12.458667pt;}
.ws80{word-spacing:-12.288000pt;}
.ws5e{word-spacing:-12.074667pt;}
.ws31{word-spacing:-11.861333pt;}
.ws5f{word-spacing:-11.818667pt;}
.ws7c{word-spacing:-11.776000pt;}
.ws5d{word-spacing:-11.733333pt;}
.ws41{word-spacing:-11.296000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws2f{word-spacing:-9.728000pt;}
.ws7d{word-spacing:-8.576000pt;}
.ws48{word-spacing:-6.613333pt;}
.ws11{word-spacing:-5.440000pt;}
.ws4e{word-spacing:-3.466667pt;}
.ws84{word-spacing:-3.072000pt;}
.ws38{word-spacing:-2.986667pt;}
.ws6c{word-spacing:-2.773333pt;}
.ws87{word-spacing:-2.602667pt;}
.ws25{word-spacing:-2.400000pt;}
.ws3{word-spacing:-2.368000pt;}
.ws6d{word-spacing:-2.346667pt;}
.ws4a{word-spacing:-2.293333pt;}
.ws6f{word-spacing:-2.048000pt;}
.ws1f{word-spacing:-1.973333pt;}
.ws85{word-spacing:-1.834667pt;}
.ws75{word-spacing:-1.706667pt;}
.ws6b{word-spacing:-1.546667pt;}
.ws72{word-spacing:-1.408000pt;}
.ws21{word-spacing:-1.386667pt;}
.ws73{word-spacing:-1.152000pt;}
.ws77{word-spacing:-0.981333pt;}
.ws47{word-spacing:-0.960000pt;}
.wse{word-spacing:-0.906667pt;}
.ws86{word-spacing:-0.725333pt;}
.ws6a{word-spacing:-0.640000pt;}
.ws71{word-spacing:-0.597333pt;}
.ws53{word-spacing:-0.586667pt;}
.ws7a{word-spacing:-0.554667pt;}
.ws1a{word-spacing:-0.426667pt;}
.ws76{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.373333pt;}
.ws88{word-spacing:-0.341333pt;}
.ws5a{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.266667pt;}
.ws24{word-spacing:-0.213333pt;}
.ws5c{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws57{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws83{word-spacing:0.042667pt;}
.ws3e{word-spacing:0.053333pt;}
.ws6e{word-spacing:0.085333pt;}
.ws55{word-spacing:0.106667pt;}
.ws82{word-spacing:0.128000pt;}
.ws18{word-spacing:0.160000pt;}
.ws7{word-spacing:0.213333pt;}
.ws79{word-spacing:0.341333pt;}
.ws23{word-spacing:0.426667pt;}
.ws37{word-spacing:0.480000pt;}
.ws22{word-spacing:0.533333pt;}
.ws19{word-spacing:0.586667pt;}
.ws78{word-spacing:0.597333pt;}
.ws26{word-spacing:0.640000pt;}
.ws3b{word-spacing:0.693333pt;}
.ws40{word-spacing:0.768000pt;}
.ws49{word-spacing:0.800000pt;}
.ws1e{word-spacing:1.013333pt;}
.ws2d{word-spacing:1.066667pt;}
.ws3c{word-spacing:1.280000pt;}
.ws8{word-spacing:1.365333pt;}
.ws58{word-spacing:1.386667pt;}
.ws28{word-spacing:1.440000pt;}
.ws5b{word-spacing:1.493333pt;}
.ws74{word-spacing:1.578667pt;}
.ws52{word-spacing:1.653333pt;}
.ws35{word-spacing:1.920000pt;}
.ws7b{word-spacing:1.962667pt;}
.ws51{word-spacing:1.973333pt;}
.ws70{word-spacing:2.133333pt;}
.ws14{word-spacing:2.186667pt;}
.wsc{word-spacing:2.293333pt;}
.ws69{word-spacing:2.400000pt;}
.ws59{word-spacing:2.666667pt;}
.ws56{word-spacing:2.720000pt;}
.ws13{word-spacing:2.773333pt;}
.ws3f{word-spacing:2.912000pt;}
.ws39{word-spacing:2.944000pt;}
.ws27{word-spacing:3.093333pt;}
.ws6{word-spacing:3.114667pt;}
.ws50{word-spacing:3.146667pt;}
.ws20{word-spacing:3.200000pt;}
.ws4f{word-spacing:3.253333pt;}
.ws89{word-spacing:3.360000pt;}
.wsf{word-spacing:3.520000pt;}
.ws17{word-spacing:3.626667pt;}
.ws1d{word-spacing:3.680000pt;}
.ws10{word-spacing:3.733333pt;}
.ws54{word-spacing:3.840000pt;}
.ws4{word-spacing:3.882667pt;}
.ws5{word-spacing:3.925333pt;}
.ws16{word-spacing:3.946667pt;}
.ws1c{word-spacing:4.000000pt;}
.ws45{word-spacing:4.053333pt;}
.ws3d{word-spacing:4.160000pt;}
.ws36{word-spacing:4.266667pt;}
.ws44{word-spacing:4.426667pt;}
.ws46{word-spacing:4.533333pt;}
.ws3a{word-spacing:4.746667pt;}
.wsb{word-spacing:4.853333pt;}
.wsd{word-spacing:4.906667pt;}
.ws34{word-spacing:6.293333pt;}
.ws33{word-spacing:197.290667pt;}
.ws32{word-spacing:259.029333pt;}
.ws2c{word-spacing:321.280000pt;}
.ws2b{word-spacing:356.864000pt;}
.ws2a{word-spacing:366.336000pt;}
.ws29{word-spacing:566.869333pt;}
.ws2e{word-spacing:1252.010667pt;}
._d{margin-left:-2576.112000pt;}
._24{margin-left:-2554.941333pt;}
._36{margin-left:-6.986667pt;}
._9{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.546667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.054933pt;}
._4{width:0.896000pt;}
._7{width:1.834667pt;}
._5{width:2.773333pt;}
._6{width:3.669333pt;}
._8{width:4.650667pt;}
._a{width:5.760000pt;}
._c{width:6.826667pt;}
._29{width:7.946667pt;}
._b{width:10.293333pt;}
._33{width:59.306667pt;}
._30{width:209.834667pt;}
._2b{width:211.072000pt;}
._2d{width:212.522667pt;}
._34{width:213.930667pt;}
._23{width:216.832000pt;}
._35{width:221.056000pt;}
._2f{width:226.730667pt;}
._32{width:237.653333pt;}
._2c{width:240.341333pt;}
._31{width:241.578667pt;}
._2e{width:243.888000pt;}
._12{width:260.864000pt;}
._11{width:267.946667pt;}
._10{width:281.002667pt;}
._2a{width:285.141333pt;}
._22{width:350.848000pt;}
._1b{width:386.474667pt;}
._14{width:393.642667pt;}
._18{width:398.336000pt;}
._1f{width:404.224000pt;}
._e{width:406.656000pt;}
._1e{width:409.002667pt;}
._1d{width:413.738667pt;}
._15{width:418.517333pt;}
._28{width:433.109333pt;}
._f{width:435.114667pt;}
._1a{width:439.808000pt;}
._17{width:445.738667pt;}
._21{width:496.768000pt;}
._19{width:507.562667pt;}
._16{width:511.146667pt;}
._1c{width:513.450667pt;}
._20{width:595.328000pt;}
._13{width:614.272000pt;}
._26{width:648.874667pt;}
._27{width:715.264000pt;}
._25{width:1416.490667pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.ya7{bottom:73.928267pt;}
.yef{bottom:73.981200pt;}
.y62{bottom:74.101200pt;}
.ya8{bottom:74.213600pt;}
.y2b{bottom:74.216800pt;}
.y103{bottom:78.930400pt;}
.ya3{bottom:81.633467pt;}
.y6d{bottom:81.927467pt;}
.y77{bottom:81.944667pt;}
.y143{bottom:84.389600pt;}
.ya6{bottom:87.922933pt;}
.yee{bottom:89.981200pt;}
.y61{bottom:90.101200pt;}
.y102{bottom:92.263733pt;}
.ya2{bottom:96.076133pt;}
.y76{bottom:96.387333pt;}
.y142{bottom:97.722933pt;}
.y6c{bottom:99.922133pt;}
.y101{bottom:105.597067pt;}
.yed{bottom:105.981200pt;}
.y60{bottom:106.101200pt;}
.y19{bottom:108.011733pt;}
.ya1{bottom:110.518800pt;}
.y75{bottom:110.830000pt;}
.y141{bottom:111.056267pt;}
.y6b{bottom:117.916800pt;}
.y100{bottom:118.930400pt;}
.yec{bottom:121.981200pt;}
.y5f{bottom:122.101200pt;}
.y140{bottom:124.389600pt;}
.ya0{bottom:124.961467pt;}
.yff{bottom:132.263733pt;}
.y6a{bottom:135.911467pt;}
.y13f{bottom:137.722933pt;}
.yeb{bottom:137.981200pt;}
.y5e{bottom:138.101200pt;}
.y74{bottom:138.840667pt;}
.y9f{bottom:139.404133pt;}
.yfe{bottom:145.597067pt;}
.y69{bottom:150.354133pt;}
.y13e{bottom:151.056267pt;}
.y9e{bottom:153.846800pt;}
.yea{bottom:153.981200pt;}
.y5d{bottom:154.101200pt;}
.y27{bottom:156.403733pt;}
.yfd{bottom:158.930400pt;}
.y13d{bottom:164.389600pt;}
.y9d{bottom:168.289467pt;}
.y73{bottom:169.789600pt;}
.ye9{bottom:169.981200pt;}
.y5c{bottom:170.101200pt;}
.yfc{bottom:172.263733pt;}
.y26{bottom:172.403733pt;}
.y68{bottom:176.135467pt;}
.y13c{bottom:177.722933pt;}
.y9c{bottom:182.732133pt;}
.yfb{bottom:185.597067pt;}
.ye8{bottom:185.981200pt;}
.y5b{bottom:186.101200pt;}
.y25{bottom:188.403733pt;}
.y13b{bottom:191.056267pt;}
.y9b{bottom:197.174800pt;}
.yfa{bottom:198.930400pt;}
.y67{bottom:201.916800pt;}
.ye7{bottom:201.981200pt;}
.y5a{bottom:202.101200pt;}
.y13a{bottom:204.389600pt;}
.y24{bottom:204.403733pt;}
.y72{bottom:209.060533pt;}
.y9a{bottom:211.617467pt;}
.yf9{bottom:212.263733pt;}
.y139{bottom:217.722933pt;}
.ye6{bottom:217.981200pt;}
.y59{bottom:218.101200pt;}
.y23{bottom:220.403733pt;}
.y71{bottom:223.055200pt;}
.yf8{bottom:225.597067pt;}
.y99{bottom:226.060133pt;}
.y66{bottom:230.640000pt;}
.y138{bottom:231.056267pt;}
.ye5{bottom:233.981200pt;}
.y58{bottom:234.101200pt;}
.y22{bottom:236.403733pt;}
.y70{bottom:237.060533pt;}
.yf7{bottom:238.930400pt;}
.y98{bottom:240.502800pt;}
.y137{bottom:244.389600pt;}
.ye4{bottom:249.981200pt;}
.y57{bottom:250.101200pt;}
.yf6{bottom:252.263733pt;}
.y21{bottom:252.403733pt;}
.y136{bottom:257.722933pt;}
.yf5{bottom:265.597067pt;}
.ye3{bottom:265.981200pt;}
.y56{bottom:266.101200pt;}
.y97{bottom:266.294800pt;}
.y20{bottom:268.403733pt;}
.y135{bottom:271.056267pt;}
.y65{bottom:276.871600pt;}
.yf4{bottom:278.930400pt;}
.y96{bottom:280.961467pt;}
.ye2{bottom:281.981200pt;}
.y55{bottom:282.101200pt;}
.y134{bottom:284.389600pt;}
.y1f{bottom:284.403733pt;}
.yf3{bottom:292.263733pt;}
.y133{bottom:297.722933pt;}
.ye1{bottom:297.981200pt;}
.y54{bottom:298.101200pt;}
.y1e{bottom:300.403733pt;}
.yf2{bottom:305.597067pt;}
.y95{bottom:309.684533pt;}
.y132{bottom:311.056267pt;}
.ye0{bottom:313.981200pt;}
.y53{bottom:314.101200pt;}
.y1d{bottom:316.403733pt;}
.yf1{bottom:318.930400pt;}
.y131{bottom:324.389600pt;}
.y94{bottom:327.017867pt;}
.ydf{bottom:329.981200pt;}
.y52{bottom:330.101200pt;}
.yf0{bottom:332.263733pt;}
.y1c{bottom:332.403733pt;}
.y130{bottom:337.722933pt;}
.yde{bottom:345.981200pt;}
.y51{bottom:346.101200pt;}
.y1b{bottom:348.403733pt;}
.y12f{bottom:351.056267pt;}
.ydd{bottom:361.981200pt;}
.y50{bottom:362.101200pt;}
.y12e{bottom:364.389600pt;}
.y28{bottom:364.403733pt;}
.y93{bottom:372.478667pt;}
.y12d{bottom:377.722933pt;}
.y4f{bottom:378.101200pt;}
.y1a{bottom:380.403733pt;}
.y92{bottom:386.921333pt;}
.y12c{bottom:391.056267pt;}
.ydc{bottom:393.981200pt;}
.y4e{bottom:394.101200pt;}
.y91{bottom:401.364000pt;}
.y12b{bottom:404.389600pt;}
.y4d{bottom:410.101200pt;}
.y90{bottom:415.806667pt;}
.y12a{bottom:417.722933pt;}
.ya5{bottom:424.840267pt;}
.y4c{bottom:426.101200pt;}
.y8f{bottom:430.249333pt;}
.y129{bottom:431.056267pt;}
.ya4{bottom:438.834933pt;}
.y4b{bottom:442.101200pt;}
.y128{bottom:444.389600pt;}
.y8e{bottom:444.692000pt;}
.y78{bottom:447.413333pt;}
.y18{bottom:448.300933pt;}
.y127{bottom:457.722933pt;}
.y4a{bottom:458.101200pt;}
.y8d{bottom:459.134667pt;}
.y166{bottom:471.056267pt;}
.y126{bottom:471.058400pt;}
.y8c{bottom:473.577333pt;}
.y49{bottom:474.101200pt;}
.yda{bottom:474.120533pt;}
.ybd{bottom:474.240533pt;}
.y17{bottom:477.506267pt;}
.y165{bottom:484.389600pt;}
.y125{bottom:484.391733pt;}
.y8b{bottom:488.020000pt;}
.y48{bottom:490.101200pt;}
.yd9{bottom:490.120533pt;}
.ybc{bottom:490.240533pt;}
.y16{bottom:490.839600pt;}
.y6f{bottom:493.721867pt;}
.y164{bottom:497.722933pt;}
.y124{bottom:497.725067pt;}
.y8a{bottom:502.462667pt;}
.y15{bottom:504.172933pt;}
.y47{bottom:506.101200pt;}
.yd8{bottom:506.120533pt;}
.ybb{bottom:506.240533pt;}
.y163{bottom:511.056267pt;}
.y123{bottom:511.058400pt;}
.y89{bottom:516.905333pt;}
.y14{bottom:517.506267pt;}
.y46{bottom:522.101200pt;}
.yd7{bottom:522.120533pt;}
.y162{bottom:524.389600pt;}
.y122{bottom:524.391733pt;}
.y13{bottom:530.839600pt;}
.y88{bottom:531.348000pt;}
.y161{bottom:537.722933pt;}
.y121{bottom:537.725067pt;}
.y45{bottom:538.101200pt;}
.yd6{bottom:538.120533pt;}
.yba{bottom:538.240533pt;}
.y12{bottom:544.172933pt;}
.y160{bottom:551.056267pt;}
.y120{bottom:551.058400pt;}
.y44{bottom:554.101200pt;}
.yd5{bottom:554.120533pt;}
.y86{bottom:557.129333pt;}
.y11{bottom:557.506267pt;}
.y15f{bottom:564.389600pt;}
.y11f{bottom:564.391733pt;}
.y87{bottom:567.913333pt;}
.y43{bottom:570.101200pt;}
.yd4{bottom:570.120533pt;}
.y10{bottom:570.839600pt;}
.y85{bottom:571.796000pt;}
.y15e{bottom:577.722933pt;}
.y11e{bottom:577.725067pt;}
.yf{bottom:584.172933pt;}
.y42{bottom:586.101200pt;}
.yd3{bottom:586.120533pt;}
.yb9{bottom:586.360533pt;}
.y15d{bottom:591.056267pt;}
.y11d{bottom:591.058400pt;}
.ye{bottom:597.506267pt;}
.y84{bottom:600.514533pt;}
.y41{bottom:602.101200pt;}
.yd2{bottom:602.120533pt;}
.yb8{bottom:602.360533pt;}
.y15c{bottom:604.389600pt;}
.y11c{bottom:604.391733pt;}
.yd{bottom:610.839600pt;}
.y15b{bottom:617.722933pt;}
.y11b{bottom:617.725067pt;}
.y83{bottom:617.847867pt;}
.y63{bottom:617.981200pt;}
.y40{bottom:618.101200pt;}
.yd1{bottom:618.120533pt;}
.yb7{bottom:618.360533pt;}
.y15a{bottom:631.056267pt;}
.y11a{bottom:631.058400pt;}
.y3f{bottom:634.101200pt;}
.y177{bottom:634.104533pt;}
.yd0{bottom:634.120533pt;}
.yb6{bottom:634.360533pt;}
.y159{bottom:644.389600pt;}
.y119{bottom:644.391733pt;}
.y3e{bottom:650.101200pt;}
.y176{bottom:650.104533pt;}
.ycf{bottom:650.120533pt;}
.yb5{bottom:650.360533pt;}
.yc{bottom:654.136000pt;}
.y158{bottom:657.722933pt;}
.y118{bottom:657.725067pt;}
.y3d{bottom:666.101200pt;}
.y175{bottom:666.104533pt;}
.y82{bottom:666.114533pt;}
.yce{bottom:666.120533pt;}
.yb{bottom:666.968000pt;}
.y157{bottom:671.056267pt;}
.y117{bottom:671.058400pt;}
.y3c{bottom:682.101200pt;}
.y174{bottom:682.104533pt;}
.y81{bottom:682.114533pt;}
.ycd{bottom:682.120533pt;}
.yb4{bottom:682.360533pt;}
.y156{bottom:684.389600pt;}
.y116{bottom:684.391733pt;}
.ya{bottom:691.106267pt;}
.y155{bottom:697.722933pt;}
.y115{bottom:697.725067pt;}
.y3b{bottom:698.101200pt;}
.y173{bottom:698.104533pt;}
.y80{bottom:698.114533pt;}
.ycc{bottom:698.120533pt;}
.y154{bottom:711.056267pt;}
.y114{bottom:711.058400pt;}
.y3a{bottom:714.101200pt;}
.y172{bottom:714.104533pt;}
.y7f{bottom:714.114533pt;}
.ycb{bottom:714.120533pt;}
.yb3{bottom:714.227200pt;}
.y153{bottom:724.389600pt;}
.y113{bottom:724.391733pt;}
.y9{bottom:725.433333pt;}
.y39{bottom:730.101200pt;}
.y171{bottom:730.104533pt;}
.y7e{bottom:730.114533pt;}
.yca{bottom:730.120533pt;}
.yb2{bottom:730.227200pt;}
.y152{bottom:737.722933pt;}
.y112{bottom:737.725067pt;}
.y8{bottom:740.100000pt;}
.y38{bottom:746.101200pt;}
.y170{bottom:746.104533pt;}
.yc9{bottom:746.120533pt;}
.yb1{bottom:746.227200pt;}
.y151{bottom:751.056267pt;}
.y111{bottom:751.058400pt;}
.y7{bottom:754.766667pt;}
.y37{bottom:762.101200pt;}
.y7d{bottom:762.114533pt;}
.yc8{bottom:762.120533pt;}
.yb0{bottom:762.227200pt;}
.y150{bottom:764.389600pt;}
.y110{bottom:764.391733pt;}
.y6{bottom:769.433333pt;}
.y14f{bottom:777.722933pt;}
.y10f{bottom:777.725067pt;}
.y36{bottom:778.101200pt;}
.y16f{bottom:778.104533pt;}
.yc7{bottom:778.120533pt;}
.yaf{bottom:778.227200pt;}
.y5{bottom:783.004267pt;}
.y6e{bottom:786.059067pt;}
.y14e{bottom:791.056267pt;}
.y10e{bottom:791.058400pt;}
.y7c{bottom:793.981200pt;}
.y35{bottom:794.101200pt;}
.y16e{bottom:794.104533pt;}
.yc6{bottom:794.120533pt;}
.yae{bottom:794.227200pt;}
.y14d{bottom:804.389600pt;}
.y10d{bottom:804.391733pt;}
.y4{bottom:807.350400pt;}
.y7b{bottom:809.981200pt;}
.y34{bottom:810.101200pt;}
.y16d{bottom:810.104533pt;}
.yc5{bottom:810.120533pt;}
.yad{bottom:810.227200pt;}
.y14c{bottom:817.722933pt;}
.y10c{bottom:817.725067pt;}
.y7a{bottom:825.981200pt;}
.y33{bottom:826.101200pt;}
.y16c{bottom:826.104533pt;}
.yc4{bottom:826.120533pt;}
.yac{bottom:826.227200pt;}
.y14b{bottom:831.056267pt;}
.y10b{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.y32{bottom:842.101200pt;}
.y16b{bottom:842.104533pt;}
.yc3{bottom:842.120533pt;}
.yab{bottom:842.234533pt;}
.y14a{bottom:844.389600pt;}
.y10a{bottom:844.391733pt;}
.y149{bottom:857.722933pt;}
.y109{bottom:857.725067pt;}
.y79{bottom:857.981200pt;}
.y31{bottom:858.101200pt;}
.y16a{bottom:858.104533pt;}
.yc2{bottom:858.120533pt;}
.yaa{bottom:858.234533pt;}
.y148{bottom:871.056267pt;}
.y108{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y30{bottom:874.101200pt;}
.y169{bottom:874.104533pt;}
.yc1{bottom:874.120533pt;}
.y147{bottom:884.389600pt;}
.y107{bottom:884.391733pt;}
.y2f{bottom:890.101200pt;}
.y168{bottom:890.104533pt;}
.yc0{bottom:890.120533pt;}
.ya9{bottom:890.234533pt;}
.y146{bottom:897.722933pt;}
.y106{bottom:897.725067pt;}
.y2e{bottom:906.101200pt;}
.ybf{bottom:906.120533pt;}
.y145{bottom:911.056267pt;}
.y105{bottom:911.058400pt;}
.y2d{bottom:922.101200pt;}
.y167{bottom:922.104533pt;}
.ybe{bottom:922.120533pt;}
.y144{bottom:924.389600pt;}
.y104{bottom:924.391733pt;}
.y2a{bottom:951.795067pt;}
.y64{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.ydb{bottom:965.395200pt;}
.h6{height:18.637500pt;}
.h2{height:27.216146pt;}
.h7{height:31.062500pt;}
.h9{height:31.083333pt;}
.h8{height:31.104167pt;}
.hd{height:33.048177pt;}
.h10{height:34.901500pt;}
.ha{height:38.828125pt;}
.hc{height:38.854167pt;}
.hb{height:38.880208pt;}
.he{height:41.635325pt;}
.hf{height:45.568167pt;}
.h5{height:45.799071pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h11{height:60.416167pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:68.031467pt;}
.x16{left:69.921200pt;}
.x17{left:77.291333pt;}
.x7{left:85.417333pt;}
.x1{left:86.929067pt;}
.x12{left:88.818933pt;}
.x28{left:94.488133pt;}
.xa{left:98.271467pt;}
.x14{left:103.001067pt;}
.x26{left:113.382400pt;}
.x5{left:117.170133pt;}
.x3{left:143.619200pt;}
.x19{left:160.701600pt;}
.x4{left:189.223467pt;}
.x25{left:191.595733pt;}
.x23{left:195.661467pt;}
.x1a{left:206.909600pt;}
.x1b{left:236.264267pt;}
.x13{left:251.570933pt;}
.x1c{left:320.285600pt;}
.x1d{left:349.640267pt;}
.x8{left:404.481333pt;}
.xb{left:406.284800pt;}
.x10{left:425.195867pt;}
.x6{left:427.090133pt;}
.xd{left:436.524800pt;}
.x1e{left:443.154933pt;}
.x27{left:451.654400pt;}
.x11{left:455.435867pt;}
.x1f{left:463.026933pt;}
.xc{left:466.898133pt;}
.x24{left:507.284800pt;}
.x18{left:544.815067pt;}
.x20{left:556.541600pt;}
.x21{left:576.413600pt;}
.xf{left:589.770933pt;}
.x2{left:626.078800pt;}
.x29{left:637.449067pt;}
.xe{left:643.752133pt;}
.x15{left:662.649733pt;}
.x22{left:670.184267pt;}
}




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