
    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_55d40fcb14016280cc10d9b7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_4b688ecac3d654fd255177ea.woff')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_92ef8d2623bc51146d52832d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-1.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.080000px;}
.ls24{letter-spacing:-0.702000px;}
.ls26{letter-spacing:-0.540000px;}
.ls67{letter-spacing:-0.526680px;}
.ls16{letter-spacing:-0.486000px;}
.ls65{letter-spacing:-0.383040px;}
.ls14{letter-spacing:-0.378000px;}
.ls64{letter-spacing:-0.335160px;}
.ls25{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.300600px;}
.ls15{letter-spacing:-0.216000px;}
.ls66{letter-spacing:-0.191520px;}
.ls23{letter-spacing:-0.162000px;}
.ls12{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.078120px;}
.lsd{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.005400px;}
.ls45{letter-spacing:0.037800px;}
.ls35{letter-spacing:0.091800px;}
.ls13{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.156240px;}
.ls1{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.180360px;}
.ls0{letter-spacing:0.191520px;}
.ls22{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.378000px;}
.ls1a{letter-spacing:0.486000px;}
.ls17{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.702000px;}
.ls68{letter-spacing:0.739800px;}
.ls1c{letter-spacing:0.756000px;}
.ls36{letter-spacing:0.858600px;}
.ls18{letter-spacing:0.864000px;}
.ls29{letter-spacing:0.918000px;}
.ls2b{letter-spacing:0.972000px;}
.ls39{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.242000px;}
.ls34{letter-spacing:1.620000px;}
.ls3f{letter-spacing:1.998000px;}
.ls1b{letter-spacing:2.322000px;}
.ls48{letter-spacing:2.700000px;}
.ls2a{letter-spacing:3.078000px;}
.ls6d{letter-spacing:3.704400px;}
.ls8{letter-spacing:4.158000px;}
.ls28{letter-spacing:4.298400px;}
.lsa{letter-spacing:4.860000px;}
.ls44{letter-spacing:5.238000px;}
.ls3c{letter-spacing:5.400000px;}
.ls6a{letter-spacing:5.486400px;}
.ls1f{letter-spacing:6.318000px;}
.ls37{letter-spacing:6.642000px;}
.ls3a{letter-spacing:7.020000px;}
.ls47{letter-spacing:7.090200px;}
.lsc{letter-spacing:7.398000px;}
.lsb{letter-spacing:8.100000px;}
.ls6c{letter-spacing:8.461800px;}
.ls3d{letter-spacing:8.694000px;}
.ls33{letter-spacing:8.802000px;}
.ls3{letter-spacing:10.260000px;}
.ls1d{letter-spacing:10.330200px;}
.ls2{letter-spacing:10.638000px;}
.ls40{letter-spacing:11.718000px;}
.ls2e{letter-spacing:13.500000px;}
.ls2d{letter-spacing:14.202000px;}
.ls31{letter-spacing:14.958000px;}
.ls6b{letter-spacing:16.038000px;}
.ls43{letter-spacing:16.329600px;}
.ls42{letter-spacing:16.723800px;}
.ls41{letter-spacing:16.740000px;}
.ls46{letter-spacing:18.522000px;}
.ls6{letter-spacing:19.980000px;}
.ls30{letter-spacing:20.736000px;}
.ls2f{letter-spacing:21.060000px;}
.ls3e{letter-spacing:23.220000px;}
.ls32{letter-spacing:24.300000px;}
.ls1e{letter-spacing:25.380000px;}
.ls27{letter-spacing:28.998000px;}
.ls21{letter-spacing:31.158000px;}
.ls4{letter-spacing:31.482000px;}
.ls3b{letter-spacing:33.642000px;}
.ls69{letter-spacing:33.858000px;}
.ls2c{letter-spacing:41.202000px;}
.ls5{letter-spacing:50.506200px;}
.ls6e{letter-spacing:57.078000px;}
.ls61{letter-spacing:149.672880px;}
.ls4d{letter-spacing:163.366560px;}
.ls54{letter-spacing:188.906400px;}
.ls50{letter-spacing:218.065320px;}
.ls5d{letter-spacing:257.307120px;}
.ls5f{letter-spacing:265.207320px;}
.ls5e{letter-spacing:285.767640px;}
.ls4c{letter-spacing:286.466040px;}
.ls53{letter-spacing:290.057040px;}
.ls4b{letter-spacing:290.440080px;}
.ls57{letter-spacing:310.985388px;}
.ls52{letter-spacing:313.853400px;}
.ls56{letter-spacing:314.959428px;}
.ls5b{letter-spacing:315.624960px;}
.ls60{letter-spacing:341.547840px;}
.ls5a{letter-spacing:361.350360px;}
.ls5c{letter-spacing:368.915400px;}
.ls59{letter-spacing:372.889440px;}
.ls4a{letter-spacing:388.689840px;}
.ls62{letter-spacing:410.686560px;}
.ls4e{letter-spacing:420.741360px;}
.ls58{letter-spacing:426.515040px;}
.ls63{letter-spacing:438.006240px;}
.ls51{letter-spacing:454.251924px;}
.ls55{letter-spacing:460.701360px;}
.ls4f{letter-spacing:516.864600px;}
.ls49{letter-spacing:519.737400px;}
.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;}
}
.ws1{word-spacing:-19.530000px;}
.ws2{word-spacing:-19.451880px;}
.ws3{word-spacing:-15.030000px;}
.ws86{word-spacing:-14.742000px;}
.ws4{word-spacing:-14.729400px;}
.ws85{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.364000px;}
.wsa{word-spacing:-14.202000px;}
.ws84{word-spacing:-14.094000px;}
.wsc{word-spacing:-13.986000px;}
.wsd{word-spacing:-13.878000px;}
.ws7{word-spacing:-13.662000px;}
.ws4a{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.284000px;}
.wsa0{word-spacing:-13.176000px;}
.ws8{word-spacing:-13.122000px;}
.ws0{word-spacing:-12.161520px;}
.wsd4{word-spacing:-11.970000px;}
.wsd2{word-spacing:-11.778480px;}
.wsd1{word-spacing:-11.634840px;}
.wsd3{word-spacing:-11.586960px;}
.ws50{word-spacing:-3.780000px;}
.wsad{word-spacing:-3.564000px;}
.wsb2{word-spacing:-3.240000px;}
.ws51{word-spacing:-3.078000px;}
.ws56{word-spacing:-2.862000px;}
.ws55{word-spacing:-2.700000px;}
.ws8c{word-spacing:-2.484000px;}
.wsdc{word-spacing:-2.322000px;}
.ws8b{word-spacing:-2.160000px;}
.ws96{word-spacing:-2.106000px;}
.ws20{word-spacing:-1.998000px;}
.ws36{word-spacing:-1.782000px;}
.ws37{word-spacing:-1.620000px;}
.wsa1{word-spacing:-1.404000px;}
.ws16{word-spacing:-1.242000px;}
.ws4d{word-spacing:-1.134000px;}
.ws98{word-spacing:-1.080000px;}
.ws2b{word-spacing:-1.026000px;}
.ws7a{word-spacing:-0.918000px;}
.ws3f{word-spacing:-0.864000px;}
.ws79{word-spacing:-0.756000px;}
.ws1c{word-spacing:-0.702000px;}
.ws2a{word-spacing:-0.648000px;}
.ws1b{word-spacing:-0.540000px;}
.ws48{word-spacing:-0.486000px;}
.ws12{word-spacing:-0.420840px;}
.ws4e{word-spacing:-0.378000px;}
.ws27{word-spacing:-0.324000px;}
.ws26{word-spacing:-0.270000px;}
.wsd6{word-spacing:-0.239400px;}
.ws2f{word-spacing:-0.162000px;}
.ws11{word-spacing:-0.156240px;}
.ws1e{word-spacing:-0.108000px;}
.wsf{word-spacing:-0.095760px;}
.wsc6{word-spacing:-0.054000px;}
.wsd5{word-spacing:-0.047880px;}
.wse{word-spacing:0.000000px;}
.ws9c{word-spacing:0.054000px;}
.wsd7{word-spacing:0.095760px;}
.ws5d{word-spacing:0.108000px;}
.ws1a{word-spacing:0.162000px;}
.ws32{word-spacing:0.216000px;}
.wse0{word-spacing:0.270000px;}
.ws6d{word-spacing:0.324000px;}
.ws33{word-spacing:0.378000px;}
.wsd8{word-spacing:0.383040px;}
.ws34{word-spacing:0.486000px;}
.ws6e{word-spacing:0.540000px;}
.ws6c{word-spacing:0.702000px;}
.ws6f{word-spacing:0.756000px;}
.ws7e{word-spacing:0.918000px;}
.wsf3{word-spacing:1.080000px;}
.ws24{word-spacing:1.134000px;}
.ws23{word-spacing:1.242000px;}
.ws87{word-spacing:1.404000px;}
.ws4c{word-spacing:1.458000px;}
.ws25{word-spacing:1.620000px;}
.wsb1{word-spacing:1.836000px;}
.ws31{word-spacing:1.998000px;}
.ws4b{word-spacing:2.160000px;}
.ws92{word-spacing:2.214000px;}
.ws8a{word-spacing:2.538000px;}
.wse3{word-spacing:2.592000px;}
.wsb4{word-spacing:2.700000px;}
.wsec{word-spacing:2.808000px;}
.ws58{word-spacing:2.916000px;}
.ws88{word-spacing:2.970000px;}
.ws19{word-spacing:3.078000px;}
.ws18{word-spacing:3.186000px;}
.ws82{word-spacing:3.240000px;}
.ws89{word-spacing:3.294000px;}
.ws22{word-spacing:3.402000px;}
.ws83{word-spacing:3.456000px;}
.ws45{word-spacing:3.618000px;}
.wsdb{word-spacing:3.686760px;}
.ws28{word-spacing:3.780000px;}
.ws2e{word-spacing:4.050000px;}
.ws44{word-spacing:4.104000px;}
.ws15{word-spacing:4.158000px;}
.wsbf{word-spacing:4.320000px;}
.wsc5{word-spacing:4.374000px;}
.ws67{word-spacing:4.482000px;}
.ws62{word-spacing:4.698000px;}
.wsbe{word-spacing:4.860000px;}
.wsbd{word-spacing:5.076000px;}
.ws57{word-spacing:5.238000px;}
.wsc2{word-spacing:5.454000px;}
.ws17{word-spacing:5.562000px;}
.wsa8{word-spacing:5.778000px;}
.ws61{word-spacing:5.940000px;}
.ws9e{word-spacing:6.156000px;}
.wsb5{word-spacing:6.318000px;}
.ws9f{word-spacing:6.480000px;}
.wse4{word-spacing:6.534000px;}
.ws9d{word-spacing:6.642000px;}
.ws49{word-spacing:6.858000px;}
.wsaa{word-spacing:7.020000px;}
.wsa5{word-spacing:7.236000px;}
.ws47{word-spacing:7.344000px;}
.wsac{word-spacing:7.398000px;}
.ws46{word-spacing:7.560000px;}
.wsea{word-spacing:7.614000px;}
.ws14{word-spacing:7.722000px;}
.wsc0{word-spacing:7.884000px;}
.ws97{word-spacing:7.938000px;}
.ws21{word-spacing:8.100000px;}
.ws99{word-spacing:8.316000px;}
.wsaf{word-spacing:8.478000px;}
.ws9b{word-spacing:8.802000px;}
.wsb0{word-spacing:9.018000px;}
.ws80{word-spacing:9.180000px;}
.wscd{word-spacing:9.720000px;}
.wsce{word-spacing:9.774000px;}
.ws5c{word-spacing:9.882000px;}
.ws75{word-spacing:10.098000px;}
.wsb7{word-spacing:10.260000px;}
.ws2c{word-spacing:10.638000px;}
.ws81{word-spacing:10.800000px;}
.ws54{word-spacing:10.962000px;}
.ws52{word-spacing:11.178000px;}
.wsed{word-spacing:11.232000px;}
.ws53{word-spacing:11.340000px;}
.ws1d{word-spacing:11.718000px;}
.wsf4{word-spacing:11.880000px;}
.wsf5{word-spacing:11.934000px;}
.ws13{word-spacing:12.042000px;}
.wsb6{word-spacing:12.150000px;}
.ws3c{word-spacing:12.420000px;}
.wsc3{word-spacing:12.528000px;}
.ws90{word-spacing:12.636000px;}
.ws8f{word-spacing:12.798000px;}
.wsf2{word-spacing:12.960000px;}
.ws1f{word-spacing:13.122000px;}
.ws8e{word-spacing:13.338000px;}
.ws70{word-spacing:13.500000px;}
.ws93{word-spacing:14.094000px;}
.ws69{word-spacing:14.202000px;}
.ws6a{word-spacing:14.580000px;}
.ws5a{word-spacing:14.688000px;}
.ws4f{word-spacing:14.796000px;}
.ws30{word-spacing:14.958000px;}
.ws59{word-spacing:15.120000px;}
.ws5b{word-spacing:15.174000px;}
.wsde{word-spacing:15.282000px;}
.wsdf{word-spacing:15.498000px;}
.wscb{word-spacing:15.660000px;}
.ws41{word-spacing:15.876000px;}
.wseb{word-spacing:16.038000px;}
.ws10{word-spacing:16.170840px;}
.ws5e{word-spacing:16.200000px;}
.ws5f{word-spacing:16.362000px;}
.ws40{word-spacing:16.740000px;}
.wsca{word-spacing:16.956000px;}
.wsc1{word-spacing:17.010000px;}
.ws7d{word-spacing:17.118000px;}
.ws71{word-spacing:17.442000px;}
.wsbc{word-spacing:17.496000px;}
.ws7f{word-spacing:17.820000px;}
.wse2{word-spacing:18.090000px;}
.ws29{word-spacing:18.522000px;}
.wsc7{word-spacing:18.738000px;}
.ws42{word-spacing:18.900000px;}
.ws43{word-spacing:19.440000px;}
.ws3b{word-spacing:19.602000px;}
.ws91{word-spacing:19.818000px;}
.ws9a{word-spacing:19.980000px;}
.ws77{word-spacing:21.060000px;}
.ws76{word-spacing:21.276000px;}
.ws2d{word-spacing:21.438000px;}
.wse6{word-spacing:21.654000px;}
.wse7{word-spacing:21.762000px;}
.wsd0{word-spacing:22.140000px;}
.wsae{word-spacing:22.680000px;}
.ws95{word-spacing:23.058000px;}
.ws94{word-spacing:23.220000px;}
.wscc{word-spacing:23.490000px;}
.ws64{word-spacing:24.138000px;}
.ws60{word-spacing:25.380000px;}
.wsb3{word-spacing:25.758000px;}
.wse5{word-spacing:25.974000px;}
.ws3e{word-spacing:26.298000px;}
.wsda{word-spacing:26.573400px;}
.ws3d{word-spacing:26.622000px;}
.wse1{word-spacing:27.378000px;}
.ws3a{word-spacing:28.080000px;}
.wsab{word-spacing:28.458000px;}
.ws74{word-spacing:28.836000px;}
.ws7b{word-spacing:28.890000px;}
.ws7c{word-spacing:28.998000px;}
.ws73{word-spacing:29.322000px;}
.ws78{word-spacing:31.158000px;}
.ws35{word-spacing:31.482000px;}
.wsba{word-spacing:31.860000px;}
.wsa6{word-spacing:32.076000px;}
.wsc4{word-spacing:32.940000px;}
.wsc8{word-spacing:33.210000px;}
.wsc9{word-spacing:33.480000px;}
.ws68{word-spacing:33.642000px;}
.wsa9{word-spacing:33.858000px;}
.wsdd{word-spacing:34.236000px;}
.wsd9{word-spacing:35.574840px;}
.ws72{word-spacing:36.180000px;}
.wscf{word-spacing:38.178000px;}
.wsa2{word-spacing:38.556000px;}
.wsa3{word-spacing:38.718000px;}
.wsa4{word-spacing:38.934000px;}
.ws8d{word-spacing:40.338000px;}
.wsf1{word-spacing:41.580000px;}
.wsa7{word-spacing:43.740000px;}
.ws63{word-spacing:46.278000px;}
.wse8{word-spacing:48.438000px;}
.ws39{word-spacing:50.598000px;}
.ws38{word-spacing:50.706000px;}
.wsb8{word-spacing:51.300000px;}
.wsb9{word-spacing:51.678000px;}
.wse9{word-spacing:52.380000px;}
.wsf6{word-spacing:55.242000px;}
.wsf7{word-spacing:55.620000px;}
.wsee{word-spacing:56.538000px;}
.wsef{word-spacing:57.078000px;}
.wsbb{word-spacing:58.482000px;}
.wsf0{word-spacing:59.940000px;}
.ws66{word-spacing:61.938000px;}
.ws65{word-spacing:62.478000px;}
.ws6b{word-spacing:66.042000px;}
._15{margin-left:-12.811176px;}
._18{margin-left:-3.510000px;}
._5{margin-left:-2.451888px;}
._1{margin-left:-1.015056px;}
._0{width:1.120392px;}
._2{width:3.337056px;}
._b{width:5.184432px;}
._17{width:6.534000px;}
._c{width:7.695216px;}
._d{width:9.450000px;}
._12{width:10.594944px;}
._9{width:11.815056px;}
._f{width:14.634000px;}
._a{width:16.491168px;}
._4{width:18.414000px;}
._13{width:21.397608px;}
._14{width:23.976000px;}
._1c{width:25.639056px;}
._7{width:26.827056px;}
._8{width:28.242000px;}
._11{width:29.376000px;}
._3{width:31.158000px;}
._1a{width:33.426000px;}
._10{width:36.018000px;}
._16{width:43.178112px;}
._1d{width:48.492000px;}
._6{width:50.706000px;}
._19{width:51.786000px;}
._e{width:65.826000px;}
._1f{width:83.354112px;}
._1e{width:84.585888px;}
._1b{width:170.941176px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y12c{bottom:3.600000px;}
.y146{bottom:21.600000px;}
.y3{bottom:33.660000px;}
.y42{bottom:39.960000px;}
.y2{bottom:53.190000px;}
.y14f{bottom:56.970000px;}
.y85{bottom:88.411500px;}
.y16c{bottom:89.702850px;}
.y61{bottom:89.883000px;}
.y123{bottom:92.398500px;}
.y18c{bottom:92.970000px;}
.ybe{bottom:95.535000px;}
.y124{bottom:98.730000px;}
.y41{bottom:101.380500px;}
.y33{bottom:101.394000px;}
.y84{bottom:104.166000px;}
.y16b{bottom:105.362850px;}
.y60{bottom:105.637500px;}
.y9b{bottom:107.068350px;}
.y18b{bottom:108.751350px;}
.ybd{bottom:111.289500px;}
.yef{bottom:113.876850px;}
.y122{bottom:115.524000px;}
.y40{bottom:117.040500px;}
.y32{bottom:117.054000px;}
.y1bf{bottom:120.069000px;}
.y16a{bottom:121.022850px;}
.y5f{bottom:121.297500px;}
.y18a{bottom:124.411350px;}
.ybc{bottom:127.044000px;}
.y14e{bottom:129.690000px;}
.yee{bottom:129.712350px;}
.y9a{bottom:130.193850px;}
.y121{bottom:131.359500px;}
.y3f{bottom:132.700500px;}
.y31{bottom:132.714000px;}
.y1be{bottom:135.823500px;}
.y169{bottom:136.777350px;}
.y5e{bottom:137.052000px;}
.ybb{bottom:142.704000px;}
.y14d{bottom:144.810000px;}
.yed{bottom:145.372350px;}
.y99{bottom:146.029350px;}
.y120{bottom:147.019500px;}
.y189{bottom:147.536850px;}
.y3e{bottom:148.455000px;}
.y30{bottom:148.468500px;}
.y1bd{bottom:151.483500px;}
.y168{bottom:152.437350px;}
.y5d{bottom:152.712000px;}
.yec{bottom:161.126850px;}
.y98{bottom:161.689350px;}
.y11f{bottom:162.679500px;}
.y188{bottom:163.291350px;}
.y3d{bottom:164.115000px;}
.y2f{bottom:164.128500px;}
.y14c{bottom:166.410000px;}
.y1bc{bottom:167.143500px;}
.y167{bottom:168.097350px;}
.y5c{bottom:168.372000px;}
.yeb{bottom:176.786850px;}
.y97{bottom:177.443850px;}
.y11e{bottom:178.434000px;}
.y187{bottom:178.951350px;}
.y3c{bottom:179.869500px;}
.y2e{bottom:179.883000px;}
.y1bb{bottom:182.898000px;}
.y5b{bottom:184.126500px;}
.y14b{bottom:188.280000px;}
.y166{bottom:191.222850px;}
.yea{bottom:192.446850px;}
.y11d{bottom:194.094000px;}
.y186{bottom:194.705850px;}
.y3b{bottom:195.529500px;}
.y2d{bottom:195.543000px;}
.y1ba{bottom:198.558000px;}
.y5a{bottom:199.786500px;}
.y165{bottom:207.058350px;}
.ye9{bottom:208.201350px;}
.y11c{bottom:209.848500px;}
.y14a{bottom:210.240000px;}
.y185{bottom:210.365850px;}
.y3a{bottom:211.189500px;}
.y1b9{bottom:214.312500px;}
.y59{bottom:215.446500px;}
.y2c{bottom:218.668500px;}
.y164{bottom:222.718350px;}
.ye8{bottom:223.861350px;}
.y148{bottom:225.360000px;}
.y11b{bottom:225.508500px;}
.y184{bottom:226.120350px;}
.y1b8{bottom:229.972500px;}
.y58{bottom:231.201000px;}
.y39{bottom:234.315000px;}
.y2b{bottom:234.423000px;}
.y163{bottom:238.378350px;}
.ye7{bottom:239.521350px;}
.y11a{bottom:241.168500px;}
.y1b7{bottom:245.632500px;}
.y149{bottom:246.960000px;}
.y183{bottom:248.894850px;}
.y38{bottom:250.069500px;}
.y2a{bottom:250.083000px;}
.y57{bottom:254.056500px;}
.y162{bottom:254.132850px;}
.ye6{bottom:255.275850px;}
.y119{bottom:256.923000px;}
.y1b6{bottom:261.387000px;}
.y145{bottom:262.080000px;}
.y37{bottom:265.824000px;}
.y29{bottom:265.837500px;}
.y161{bottom:269.792850px;}
.ye5{bottom:270.935850px;}
.y118{bottom:272.583000px;}
.y1b5{bottom:277.047000px;}
.y36{bottom:281.484000px;}
.y28{bottom:281.497500px;}
.y147{bottom:283.680000px;}
.y160{bottom:285.452850px;}
.y182{bottom:285.884850px;}
.ye4{bottom:286.690350px;}
.y56{bottom:287.982000px;}
.y117{bottom:288.243000px;}
.y1b4{bottom:292.707000px;}
.y35{bottom:297.238500px;}
.y27{bottom:297.252000px;}
.y144{bottom:298.890000px;}
.y15f{bottom:301.207350px;}
.y181{bottom:301.639350px;}
.y55{bottom:303.736500px;}
.y116{bottom:303.997500px;}
.y1b3{bottom:308.461500px;}
.ye3{bottom:309.734850px;}
.y34{bottom:312.898500px;}
.y26{bottom:312.912000px;}
.y180{bottom:317.393850px;}
.y54{bottom:319.491000px;}
.y115{bottom:319.657500px;}
.y143{bottom:320.490000px;}
.y15e{bottom:323.981850px;}
.y1b2{bottom:324.121500px;}
.ye2{bottom:325.570350px;}
.y17f{bottom:333.053850px;}
.y53{bottom:335.151000px;}
.y114{bottom:335.412000px;}
.y25{bottom:335.767500px;}
.y1b1{bottom:339.876000px;}
.ye1{bottom:341.230350px;}
.y142{bottom:342.360000px;}
.y83{bottom:346.356000px;}
.y17e{bottom:348.713850px;}
.y52{bottom:350.811000px;}
.y113{bottom:351.072000px;}
.y15d{bottom:351.967350px;}
.y1b0{bottom:355.536000px;}
.ye0{bottom:356.890350px;}
.y141{bottom:357.480000px;}
.y51{bottom:366.565500px;}
.y112{bottom:366.732000px;}
.y15c{bottom:367.802850px;}
.y82{bottom:369.481500px;}
.y24{bottom:369.693000px;}
.y1af{bottom:371.196000px;}
.y17d{bottom:371.839350px;}
.ydf{bottom:372.644850px;}
.y140{bottom:379.080000px;}
.y50{bottom:382.225500px;}
.y111{bottom:382.486500px;}
.y15b{bottom:383.462850px;}
.y81{bottom:385.317000px;}
.y1ae{bottom:386.950500px;}
.y17c{bottom:387.674850px;}
.yde{bottom:388.304850px;}
.y23{bottom:392.643000px;}
.y15a{bottom:399.122850px;}
.y80{bottom:400.977000px;}
.y13f{bottom:401.040000px;}
.y1ad{bottom:402.610500px;}
.y17b{bottom:403.334850px;}
.ydd{bottom:403.964850px;}
.y4f{bottom:405.351000px;}
.y110{bottom:405.531000px;}
.y22{bottom:408.667500px;}
.y159{bottom:414.877350px;}
.y7f{bottom:416.731500px;}
.y1ac{bottom:418.270500px;}
.y17a{bottom:418.994850px;}
.ydc{bottom:419.719350px;}
.y4e{bottom:421.105500px;}
.y10f{bottom:421.366500px;}
.y13e{bottom:422.910000px;}
.y21{bottom:424.327500px;}
.y158{bottom:430.537350px;}
.y7e{bottom:432.391500px;}
.y1ab{bottom:434.025000px;}
.y179{bottom:434.749350px;}
.ydb{bottom:435.379350px;}
.y4d{bottom:436.860000px;}
.y10e{bottom:437.026500px;}
.y20{bottom:440.082000px;}
.y13d{bottom:444.780000px;}
.y157{bottom:446.197350px;}
.y7d{bottom:448.051500px;}
.y1aa{bottom:449.685000px;}
.y178{bottom:450.409350px;}
.y10d{bottom:452.781000px;}
.y1f{bottom:455.742000px;}
.yda{bottom:458.329350px;}
.y156{bottom:461.951850px;}
.y7c{bottom:463.806000px;}
.y1a9{bottom:465.439500px;}
.y177{bottom:466.069350px;}
.y13c{bottom:466.740000px;}
.y10c{bottom:468.441000px;}
.y1e{bottom:471.496500px;}
.y155{bottom:477.611850px;}
.yba{bottom:477.949500px;}
.yac{bottom:477.963000px;}
.y1a8{bottom:481.099500px;}
.y176{bottom:481.823850px;}
.y10b{bottom:484.101000px;}
.y7b{bottom:486.850500px;}
.y1d{bottom:487.156500px;}
.y13b{bottom:488.610000px;}
.yd9{bottom:492.173850px;}
.y154{bottom:493.366350px;}
.yb9{bottom:493.609500px;}
.yab{bottom:493.623000px;}
.y1a7{bottom:496.759500px;}
.y175{bottom:497.483850px;}
.y10a{bottom:499.855500px;}
.y7a{bottom:502.686000px;}
.y1c{bottom:502.816500px;}
.yd8{bottom:508.009350px;}
.yb8{bottom:509.269500px;}
.yaa{bottom:509.283000px;}
.y13a{bottom:510.480000px;}
.y1a6{bottom:512.514000px;}
.y174{bottom:513.238350px;}
.y109{bottom:515.515500px;}
.y79{bottom:518.346000px;}
.y1b{bottom:518.571000px;}
.yd7{bottom:523.669350px;}
.yb7{bottom:525.024000px;}
.ya9{bottom:525.037500px;}
.y1a5{bottom:528.174000px;}
.y173{bottom:528.898350px;}
.y108{bottom:531.175500px;}
.y139{bottom:532.440000px;}
.y78{bottom:534.006000px;}
.y1a{bottom:534.231000px;}
.yd6{bottom:539.329350px;}
.yb6{bottom:540.684000px;}
.ya8{bottom:540.697500px;}
.y1a4{bottom:543.834000px;}
.y172{bottom:544.558350px;}
.y107{bottom:546.930000px;}
.y77{bottom:549.760500px;}
.y19{bottom:549.891000px;}
.y138{bottom:554.310000px;}
.yd5{bottom:555.083850px;}
.ya7{bottom:556.452000px;}
.y1a3{bottom:559.588500px;}
.y171{bottom:560.312850px;}
.y106{bottom:562.590000px;}
.yb5{bottom:563.809500px;}
.y76{bottom:565.420500px;}
.y18{bottom:565.645500px;}
.y137{bottom:569.430000px;}
.yd4{bottom:570.743850px;}
.ya6{bottom:572.112000px;}
.y1a2{bottom:575.248500px;}
.y105{bottom:578.250000px;}
.yb4{bottom:579.564000px;}
.y75{bottom:581.175000px;}
.y17{bottom:581.305500px;}
.y170{bottom:583.357350px;}
.yd3{bottom:586.498350px;}
.ya5{bottom:587.772000px;}
.y1a1{bottom:591.003000px;}
.y136{bottom:591.030000px;}
.y104{bottom:594.004500px;}
.yb3{bottom:595.318500px;}
.y74{bottom:596.835000px;}
.y16{bottom:597.060000px;}
.y16f{bottom:599.192850px;}
.yd2{bottom:602.158350px;}
.y1a0{bottom:606.663000px;}
.ya4{bottom:610.897500px;}
.yb2{bottom:610.978500px;}
.y73{bottom:612.495000px;}
.y15{bottom:612.720000px;}
.y135{bottom:612.990000px;}
.y103{bottom:617.130000px;}
.yd1{bottom:617.818350px;}
.y16e{bottom:622.237350px;}
.y19f{bottom:622.323000px;}
.yb1{bottom:626.638500px;}
.ya3{bottom:626.652000px;}
.y134{bottom:628.110000px;}
.y72{bottom:628.249500px;}
.y14{bottom:628.380000px;}
.y102{bottom:632.789850px;}
.yd0{bottom:633.572850px;}
.y16d{bottom:638.072850px;}
.y19e{bottom:638.077500px;}
.yb0{bottom:642.393000px;}
.ya2{bottom:642.406500px;}
.y71{bottom:643.909500px;}
.y13{bottom:644.134500px;}
.y101{bottom:648.449850px;}
.y133{bottom:649.710000px;}
.y19d{bottom:653.737500px;}
.ycf{bottom:656.617350px;}
.yaf{bottom:658.053000px;}
.ya1{bottom:658.066500px;}
.y70{bottom:659.569500px;}
.y12{bottom:659.794500px;}
.y100{bottom:664.204350px;}
.y153{bottom:665.720850px;}
.y19c{bottom:669.397500px;}
.y132{bottom:671.580000px;}
.yce{bottom:672.452850px;}
.yae{bottom:673.807500px;}
.ya0{bottom:673.821000px;}
.y6f{bottom:675.324000px;}
.y11{bottom:675.454500px;}
.yff{bottom:679.864350px;}
.y152{bottom:681.475350px;}
.y19b{bottom:685.152000px;}
.ycd{bottom:688.112850px;}
.yad{bottom:689.467500px;}
.y9f{bottom:689.481000px;}
.y6e{bottom:690.984000px;}
.y131{bottom:693.540000px;}
.yfe{bottom:695.524350px;}
.y151{bottom:697.135350px;}
.y10{bottom:698.310000px;}
.y19a{bottom:700.812000px;}
.ycc{bottom:703.772850px;}
.y6d{bottom:706.738500px;}
.yfd{bottom:711.278850px;}
.y150{bottom:712.889850px;}
.y130{bottom:715.410000px;}
.y199{bottom:716.566500px;}
.y9e{bottom:717.115500px;}
.ycb{bottom:719.527350px;}
.y6c{bottom:722.398500px;}
.yfc{bottom:726.938850px;}
.y12f{bottom:730.530000px;}
.yf{bottom:732.059190px;}
.y198{bottom:732.226500px;}
.y9d{bottom:732.870000px;}
.yca{bottom:735.187350px;}
.y6b{bottom:738.058500px;}
.ye{bottom:746.100000px;}
.y197{bottom:747.886500px;}
.y9c{bottom:748.530000px;}
.yfb{bottom:750.064350px;}
.yc9{bottom:750.941850px;}
.y12e{bottom:752.130000px;}
.y6a{bottom:753.813000px;}
.yd{bottom:760.410000px;}
.y196{bottom:763.641000px;}
.yfa{bottom:765.818850px;}
.yc8{bottom:766.601850px;}
.y69{bottom:769.473000px;}
.y4c{bottom:773.995500px;}
.y12d{bottom:774.089850px;}
.yc{bottom:778.688940px;}
.y195{bottom:779.301000px;}
.yf9{bottom:781.573350px;}
.yc7{bottom:782.261850px;}
.y68{bottom:785.133000px;}
.y12b{bottom:789.210000px;}
.y4b{bottom:789.831000px;}
.y194{bottom:794.961000px;}
.y8d{bottom:796.391850px;}
.y96{bottom:797.188350px;}
.yf8{bottom:797.233350px;}
.yc6{bottom:798.016350px;}
.yb{bottom:801.089850px;}
.y4a{bottom:805.491000px;}
.y67{bottom:808.083000px;}
.y193{bottom:810.715500px;}
.y12a{bottom:810.810000px;}
.y8c{bottom:812.146350px;}
.yf7{bottom:812.893350px;}
.y95{bottom:812.942850px;}
.yc5{bottom:813.676350px;}
.y49{bottom:821.151000px;}
.ya{bottom:825.062790px;}
.y192{bottom:826.375500px;}
.y8b{bottom:827.900850px;}
.yf6{bottom:828.647850px;}
.y94{bottom:828.697350px;}
.yc4{bottom:829.336350px;}
.y129{bottom:832.680000px;}
.y48{bottom:836.905500px;}
.y9{bottom:841.617300px;}
.y66{bottom:841.738500px;}
.y191{bottom:842.130000px;}
.y8a{bottom:843.560850px;}
.yf5{bottom:844.307850px;}
.y93{bottom:844.357350px;}
.yc3{bottom:845.090850px;}
.y128{bottom:854.639850px;}
.y190{bottom:857.790000px;}
.y8{bottom:858.171810px;}
.y89{bottom:859.315350px;}
.y47{bottom:860.031000px;}
.yf4{bottom:860.062350px;}
.y92{bottom:860.111850px;}
.yc2{bottom:860.750850px;}
.y18f{bottom:873.450000px;}
.y7{bottom:874.726320px;}
.y88{bottom:874.975350px;}
.y65{bottom:875.664000px;}
.yf3{bottom:875.722350px;}
.y91{bottom:875.771850px;}
.y46{bottom:875.785500px;}
.yc1{bottom:876.505350px;}
.y127{bottom:876.510000px;}
.y18e{bottom:889.204500px;}
.y87{bottom:890.635350px;}
.y6{bottom:891.280830px;}
.yf2{bottom:891.382350px;}
.y64{bottom:891.418500px;}
.y90{bottom:891.431850px;}
.y45{bottom:891.445500px;}
.y126{bottom:898.380000px;}
.yc0{bottom:899.279850px;}
.yf1{bottom:907.136850px;}
.y63{bottom:907.173000px;}
.y8f{bottom:907.186350px;}
.y44{bottom:907.200000px;}
.y5{bottom:907.835340px;}
.y18d{bottom:912.060000px;}
.y125{bottom:920.339850px;}
.ybf{bottom:922.499850px;}
.y86{bottom:922.589850px;}
.yf0{bottom:922.796850px;}
.y62{bottom:922.833000px;}
.y8e{bottom:922.846350px;}
.y43{bottom:922.860000px;}
.y4{bottom:924.389850px;}
.y1{bottom:950.580000px;}
.hc{height:35.998500px;}
.hb{height:36.000000px;}
.h3{height:42.011895px;}
.h4{height:42.128789px;}
.h8{height:47.381836px;}
.ha{height:47.513672px;}
.h7{height:48.120117px;}
.h9{height:48.461836px;}
.h6{height:53.573730px;}
.h2{height:63.175781px;}
.h5{height:69.613770px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:181.530000px;}
.w2{width:386.640000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x10{left:57.690000px;}
.x8{left:59.400000px;}
.xd{left:65.790000px;}
.x12{left:79.555500px;}
.x1{left:97.650000px;}
.xe{left:239.220000px;}
.x11{left:247.320000px;}
.x3{left:276.210000px;}
.x9{left:330.210000px;}
.x4{left:345.420540px;}
.xa{left:359.401500px;}
.x2{left:368.460000px;}
.x7{left:380.624310px;}
.x6{left:397.717470px;}
.xc{left:407.313000px;}
.xb{left:589.927500px;}
.x5{left:663.391620px;}
@media print{
.v2{vertical-align:-0.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.960000pt;}
.ls24{letter-spacing:-0.624000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls67{letter-spacing:-0.468160pt;}
.ls16{letter-spacing:-0.432000pt;}
.ls65{letter-spacing:-0.340480pt;}
.ls14{letter-spacing:-0.336000pt;}
.ls64{letter-spacing:-0.297920pt;}
.ls25{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.267200pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls66{letter-spacing:-0.170240pt;}
.ls23{letter-spacing:-0.144000pt;}
.ls12{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.069440pt;}
.lsd{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.004800pt;}
.ls45{letter-spacing:0.033600pt;}
.ls35{letter-spacing:0.081600pt;}
.ls13{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.138880pt;}
.ls1{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.160320pt;}
.ls0{letter-spacing:0.170240pt;}
.ls22{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.336000pt;}
.ls1a{letter-spacing:0.432000pt;}
.ls17{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.624000pt;}
.ls68{letter-spacing:0.657600pt;}
.ls1c{letter-spacing:0.672000pt;}
.ls36{letter-spacing:0.763200pt;}
.ls18{letter-spacing:0.768000pt;}
.ls29{letter-spacing:0.816000pt;}
.ls2b{letter-spacing:0.864000pt;}
.ls39{letter-spacing:0.960000pt;}
.ls20{letter-spacing:1.104000pt;}
.ls34{letter-spacing:1.440000pt;}
.ls3f{letter-spacing:1.776000pt;}
.ls1b{letter-spacing:2.064000pt;}
.ls48{letter-spacing:2.400000pt;}
.ls2a{letter-spacing:2.736000pt;}
.ls6d{letter-spacing:3.292800pt;}
.ls8{letter-spacing:3.696000pt;}
.ls28{letter-spacing:3.820800pt;}
.lsa{letter-spacing:4.320000pt;}
.ls44{letter-spacing:4.656000pt;}
.ls3c{letter-spacing:4.800000pt;}
.ls6a{letter-spacing:4.876800pt;}
.ls1f{letter-spacing:5.616000pt;}
.ls37{letter-spacing:5.904000pt;}
.ls3a{letter-spacing:6.240000pt;}
.ls47{letter-spacing:6.302400pt;}
.lsc{letter-spacing:6.576000pt;}
.lsb{letter-spacing:7.200000pt;}
.ls6c{letter-spacing:7.521600pt;}
.ls3d{letter-spacing:7.728000pt;}
.ls33{letter-spacing:7.824000pt;}
.ls3{letter-spacing:9.120000pt;}
.ls1d{letter-spacing:9.182400pt;}
.ls2{letter-spacing:9.456000pt;}
.ls40{letter-spacing:10.416000pt;}
.ls2e{letter-spacing:12.000000pt;}
.ls2d{letter-spacing:12.624000pt;}
.ls31{letter-spacing:13.296000pt;}
.ls6b{letter-spacing:14.256000pt;}
.ls43{letter-spacing:14.515200pt;}
.ls42{letter-spacing:14.865600pt;}
.ls41{letter-spacing:14.880000pt;}
.ls46{letter-spacing:16.464000pt;}
.ls6{letter-spacing:17.760000pt;}
.ls30{letter-spacing:18.432000pt;}
.ls2f{letter-spacing:18.720000pt;}
.ls3e{letter-spacing:20.640000pt;}
.ls32{letter-spacing:21.600000pt;}
.ls1e{letter-spacing:22.560000pt;}
.ls27{letter-spacing:25.776000pt;}
.ls21{letter-spacing:27.696000pt;}
.ls4{letter-spacing:27.984000pt;}
.ls3b{letter-spacing:29.904000pt;}
.ls69{letter-spacing:30.096000pt;}
.ls2c{letter-spacing:36.624000pt;}
.ls5{letter-spacing:44.894400pt;}
.ls6e{letter-spacing:50.736000pt;}
.ls61{letter-spacing:133.042560pt;}
.ls4d{letter-spacing:145.214720pt;}
.ls54{letter-spacing:167.916800pt;}
.ls50{letter-spacing:193.835840pt;}
.ls5d{letter-spacing:228.717440pt;}
.ls5f{letter-spacing:235.739840pt;}
.ls5e{letter-spacing:254.015680pt;}
.ls4c{letter-spacing:254.636480pt;}
.ls53{letter-spacing:257.828480pt;}
.ls4b{letter-spacing:258.168960pt;}
.ls57{letter-spacing:276.431456pt;}
.ls52{letter-spacing:278.980800pt;}
.ls56{letter-spacing:279.963936pt;}
.ls5b{letter-spacing:280.555520pt;}
.ls60{letter-spacing:303.598080pt;}
.ls5a{letter-spacing:321.200320pt;}
.ls5c{letter-spacing:327.924800pt;}
.ls59{letter-spacing:331.457280pt;}
.ls4a{letter-spacing:345.502080pt;}
.ls62{letter-spacing:365.054720pt;}
.ls4e{letter-spacing:373.992320pt;}
.ls58{letter-spacing:379.124480pt;}
.ls63{letter-spacing:389.338880pt;}
.ls51{letter-spacing:403.779488pt;}
.ls55{letter-spacing:409.512320pt;}
.ls4f{letter-spacing:459.435200pt;}
.ls49{letter-spacing:461.988800pt;}
.ws1{word-spacing:-17.360000pt;}
.ws2{word-spacing:-17.290560pt;}
.ws3{word-spacing:-13.360000pt;}
.ws86{word-spacing:-13.104000pt;}
.ws4{word-spacing:-13.092800pt;}
.ws85{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.768000pt;}
.wsa{word-spacing:-12.624000pt;}
.ws84{word-spacing:-12.528000pt;}
.wsc{word-spacing:-12.432000pt;}
.wsd{word-spacing:-12.336000pt;}
.ws7{word-spacing:-12.144000pt;}
.ws4a{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.808000pt;}
.wsa0{word-spacing:-11.712000pt;}
.ws8{word-spacing:-11.664000pt;}
.ws0{word-spacing:-10.810240pt;}
.wsd4{word-spacing:-10.640000pt;}
.wsd2{word-spacing:-10.469760pt;}
.wsd1{word-spacing:-10.342080pt;}
.wsd3{word-spacing:-10.299520pt;}
.ws50{word-spacing:-3.360000pt;}
.wsad{word-spacing:-3.168000pt;}
.wsb2{word-spacing:-2.880000pt;}
.ws51{word-spacing:-2.736000pt;}
.ws56{word-spacing:-2.544000pt;}
.ws55{word-spacing:-2.400000pt;}
.ws8c{word-spacing:-2.208000pt;}
.wsdc{word-spacing:-2.064000pt;}
.ws8b{word-spacing:-1.920000pt;}
.ws96{word-spacing:-1.872000pt;}
.ws20{word-spacing:-1.776000pt;}
.ws36{word-spacing:-1.584000pt;}
.ws37{word-spacing:-1.440000pt;}
.wsa1{word-spacing:-1.248000pt;}
.ws16{word-spacing:-1.104000pt;}
.ws4d{word-spacing:-1.008000pt;}
.ws98{word-spacing:-0.960000pt;}
.ws2b{word-spacing:-0.912000pt;}
.ws7a{word-spacing:-0.816000pt;}
.ws3f{word-spacing:-0.768000pt;}
.ws79{word-spacing:-0.672000pt;}
.ws1c{word-spacing:-0.624000pt;}
.ws2a{word-spacing:-0.576000pt;}
.ws1b{word-spacing:-0.480000pt;}
.ws48{word-spacing:-0.432000pt;}
.ws12{word-spacing:-0.374080pt;}
.ws4e{word-spacing:-0.336000pt;}
.ws27{word-spacing:-0.288000pt;}
.ws26{word-spacing:-0.240000pt;}
.wsd6{word-spacing:-0.212800pt;}
.ws2f{word-spacing:-0.144000pt;}
.ws11{word-spacing:-0.138880pt;}
.ws1e{word-spacing:-0.096000pt;}
.wsf{word-spacing:-0.085120pt;}
.wsc6{word-spacing:-0.048000pt;}
.wsd5{word-spacing:-0.042560pt;}
.wse{word-spacing:0.000000pt;}
.ws9c{word-spacing:0.048000pt;}
.wsd7{word-spacing:0.085120pt;}
.ws5d{word-spacing:0.096000pt;}
.ws1a{word-spacing:0.144000pt;}
.ws32{word-spacing:0.192000pt;}
.wse0{word-spacing:0.240000pt;}
.ws6d{word-spacing:0.288000pt;}
.ws33{word-spacing:0.336000pt;}
.wsd8{word-spacing:0.340480pt;}
.ws34{word-spacing:0.432000pt;}
.ws6e{word-spacing:0.480000pt;}
.ws6c{word-spacing:0.624000pt;}
.ws6f{word-spacing:0.672000pt;}
.ws7e{word-spacing:0.816000pt;}
.wsf3{word-spacing:0.960000pt;}
.ws24{word-spacing:1.008000pt;}
.ws23{word-spacing:1.104000pt;}
.ws87{word-spacing:1.248000pt;}
.ws4c{word-spacing:1.296000pt;}
.ws25{word-spacing:1.440000pt;}
.wsb1{word-spacing:1.632000pt;}
.ws31{word-spacing:1.776000pt;}
.ws4b{word-spacing:1.920000pt;}
.ws92{word-spacing:1.968000pt;}
.ws8a{word-spacing:2.256000pt;}
.wse3{word-spacing:2.304000pt;}
.wsb4{word-spacing:2.400000pt;}
.wsec{word-spacing:2.496000pt;}
.ws58{word-spacing:2.592000pt;}
.ws88{word-spacing:2.640000pt;}
.ws19{word-spacing:2.736000pt;}
.ws18{word-spacing:2.832000pt;}
.ws82{word-spacing:2.880000pt;}
.ws89{word-spacing:2.928000pt;}
.ws22{word-spacing:3.024000pt;}
.ws83{word-spacing:3.072000pt;}
.ws45{word-spacing:3.216000pt;}
.wsdb{word-spacing:3.277120pt;}
.ws28{word-spacing:3.360000pt;}
.ws2e{word-spacing:3.600000pt;}
.ws44{word-spacing:3.648000pt;}
.ws15{word-spacing:3.696000pt;}
.wsbf{word-spacing:3.840000pt;}
.wsc5{word-spacing:3.888000pt;}
.ws67{word-spacing:3.984000pt;}
.ws62{word-spacing:4.176000pt;}
.wsbe{word-spacing:4.320000pt;}
.wsbd{word-spacing:4.512000pt;}
.ws57{word-spacing:4.656000pt;}
.wsc2{word-spacing:4.848000pt;}
.ws17{word-spacing:4.944000pt;}
.wsa8{word-spacing:5.136000pt;}
.ws61{word-spacing:5.280000pt;}
.ws9e{word-spacing:5.472000pt;}
.wsb5{word-spacing:5.616000pt;}
.ws9f{word-spacing:5.760000pt;}
.wse4{word-spacing:5.808000pt;}
.ws9d{word-spacing:5.904000pt;}
.ws49{word-spacing:6.096000pt;}
.wsaa{word-spacing:6.240000pt;}
.wsa5{word-spacing:6.432000pt;}
.ws47{word-spacing:6.528000pt;}
.wsac{word-spacing:6.576000pt;}
.ws46{word-spacing:6.720000pt;}
.wsea{word-spacing:6.768000pt;}
.ws14{word-spacing:6.864000pt;}
.wsc0{word-spacing:7.008000pt;}
.ws97{word-spacing:7.056000pt;}
.ws21{word-spacing:7.200000pt;}
.ws99{word-spacing:7.392000pt;}
.wsaf{word-spacing:7.536000pt;}
.ws9b{word-spacing:7.824000pt;}
.wsb0{word-spacing:8.016000pt;}
.ws80{word-spacing:8.160000pt;}
.wscd{word-spacing:8.640000pt;}
.wsce{word-spacing:8.688000pt;}
.ws5c{word-spacing:8.784000pt;}
.ws75{word-spacing:8.976000pt;}
.wsb7{word-spacing:9.120000pt;}
.ws2c{word-spacing:9.456000pt;}
.ws81{word-spacing:9.600000pt;}
.ws54{word-spacing:9.744000pt;}
.ws52{word-spacing:9.936000pt;}
.wsed{word-spacing:9.984000pt;}
.ws53{word-spacing:10.080000pt;}
.ws1d{word-spacing:10.416000pt;}
.wsf4{word-spacing:10.560000pt;}
.wsf5{word-spacing:10.608000pt;}
.ws13{word-spacing:10.704000pt;}
.wsb6{word-spacing:10.800000pt;}
.ws3c{word-spacing:11.040000pt;}
.wsc3{word-spacing:11.136000pt;}
.ws90{word-spacing:11.232000pt;}
.ws8f{word-spacing:11.376000pt;}
.wsf2{word-spacing:11.520000pt;}
.ws1f{word-spacing:11.664000pt;}
.ws8e{word-spacing:11.856000pt;}
.ws70{word-spacing:12.000000pt;}
.ws93{word-spacing:12.528000pt;}
.ws69{word-spacing:12.624000pt;}
.ws6a{word-spacing:12.960000pt;}
.ws5a{word-spacing:13.056000pt;}
.ws4f{word-spacing:13.152000pt;}
.ws30{word-spacing:13.296000pt;}
.ws59{word-spacing:13.440000pt;}
.ws5b{word-spacing:13.488000pt;}
.wsde{word-spacing:13.584000pt;}
.wsdf{word-spacing:13.776000pt;}
.wscb{word-spacing:13.920000pt;}
.ws41{word-spacing:14.112000pt;}
.wseb{word-spacing:14.256000pt;}
.ws10{word-spacing:14.374080pt;}
.ws5e{word-spacing:14.400000pt;}
.ws5f{word-spacing:14.544000pt;}
.ws40{word-spacing:14.880000pt;}
.wsca{word-spacing:15.072000pt;}
.wsc1{word-spacing:15.120000pt;}
.ws7d{word-spacing:15.216000pt;}
.ws71{word-spacing:15.504000pt;}
.wsbc{word-spacing:15.552000pt;}
.ws7f{word-spacing:15.840000pt;}
.wse2{word-spacing:16.080000pt;}
.ws29{word-spacing:16.464000pt;}
.wsc7{word-spacing:16.656000pt;}
.ws42{word-spacing:16.800000pt;}
.ws43{word-spacing:17.280000pt;}
.ws3b{word-spacing:17.424000pt;}
.ws91{word-spacing:17.616000pt;}
.ws9a{word-spacing:17.760000pt;}
.ws77{word-spacing:18.720000pt;}
.ws76{word-spacing:18.912000pt;}
.ws2d{word-spacing:19.056000pt;}
.wse6{word-spacing:19.248000pt;}
.wse7{word-spacing:19.344000pt;}
.wsd0{word-spacing:19.680000pt;}
.wsae{word-spacing:20.160000pt;}
.ws95{word-spacing:20.496000pt;}
.ws94{word-spacing:20.640000pt;}
.wscc{word-spacing:20.880000pt;}
.ws64{word-spacing:21.456000pt;}
.ws60{word-spacing:22.560000pt;}
.wsb3{word-spacing:22.896000pt;}
.wse5{word-spacing:23.088000pt;}
.ws3e{word-spacing:23.376000pt;}
.wsda{word-spacing:23.620800pt;}
.ws3d{word-spacing:23.664000pt;}
.wse1{word-spacing:24.336000pt;}
.ws3a{word-spacing:24.960000pt;}
.wsab{word-spacing:25.296000pt;}
.ws74{word-spacing:25.632000pt;}
.ws7b{word-spacing:25.680000pt;}
.ws7c{word-spacing:25.776000pt;}
.ws73{word-spacing:26.064000pt;}
.ws78{word-spacing:27.696000pt;}
.ws35{word-spacing:27.984000pt;}
.wsba{word-spacing:28.320000pt;}
.wsa6{word-spacing:28.512000pt;}
.wsc4{word-spacing:29.280000pt;}
.wsc8{word-spacing:29.520000pt;}
.wsc9{word-spacing:29.760000pt;}
.ws68{word-spacing:29.904000pt;}
.wsa9{word-spacing:30.096000pt;}
.wsdd{word-spacing:30.432000pt;}
.wsd9{word-spacing:31.622080pt;}
.ws72{word-spacing:32.160000pt;}
.wscf{word-spacing:33.936000pt;}
.wsa2{word-spacing:34.272000pt;}
.wsa3{word-spacing:34.416000pt;}
.wsa4{word-spacing:34.608000pt;}
.ws8d{word-spacing:35.856000pt;}
.wsf1{word-spacing:36.960000pt;}
.wsa7{word-spacing:38.880000pt;}
.ws63{word-spacing:41.136000pt;}
.wse8{word-spacing:43.056000pt;}
.ws39{word-spacing:44.976000pt;}
.ws38{word-spacing:45.072000pt;}
.wsb8{word-spacing:45.600000pt;}
.wsb9{word-spacing:45.936000pt;}
.wse9{word-spacing:46.560000pt;}
.wsf6{word-spacing:49.104000pt;}
.wsf7{word-spacing:49.440000pt;}
.wsee{word-spacing:50.256000pt;}
.wsef{word-spacing:50.736000pt;}
.wsbb{word-spacing:51.984000pt;}
.wsf0{word-spacing:53.280000pt;}
.ws66{word-spacing:55.056000pt;}
.ws65{word-spacing:55.536000pt;}
.ws6b{word-spacing:58.704000pt;}
._15{margin-left:-11.387712pt;}
._18{margin-left:-3.120000pt;}
._5{margin-left:-2.179456pt;}
._1{margin-left:-0.902272pt;}
._0{width:0.995904pt;}
._2{width:2.966272pt;}
._b{width:4.608384pt;}
._17{width:5.808000pt;}
._c{width:6.840192pt;}
._d{width:8.400000pt;}
._12{width:9.417728pt;}
._9{width:10.502272pt;}
._f{width:13.008000pt;}
._a{width:14.658816pt;}
._4{width:16.368000pt;}
._13{width:19.020096pt;}
._14{width:21.312000pt;}
._1c{width:22.790272pt;}
._7{width:23.846272pt;}
._8{width:25.104000pt;}
._11{width:26.112000pt;}
._3{width:27.696000pt;}
._1a{width:29.712000pt;}
._10{width:32.016000pt;}
._16{width:38.380544pt;}
._1d{width:43.104000pt;}
._6{width:45.072000pt;}
._19{width:46.032000pt;}
._e{width:58.512000pt;}
._1f{width:74.092544pt;}
._1e{width:75.187456pt;}
._1b{width:151.947712pt;}
.fs1{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:3.200000pt;}
.y146{bottom:19.200000pt;}
.y3{bottom:29.920000pt;}
.y42{bottom:35.520000pt;}
.y2{bottom:47.280000pt;}
.y14f{bottom:50.640000pt;}
.y85{bottom:78.588000pt;}
.y16c{bottom:79.735867pt;}
.y61{bottom:79.896000pt;}
.y123{bottom:82.132000pt;}
.y18c{bottom:82.640000pt;}
.ybe{bottom:84.920000pt;}
.y124{bottom:87.760000pt;}
.y41{bottom:90.116000pt;}
.y33{bottom:90.128000pt;}
.y84{bottom:92.592000pt;}
.y16b{bottom:93.655867pt;}
.y60{bottom:93.900000pt;}
.y9b{bottom:95.171867pt;}
.y18b{bottom:96.667867pt;}
.ybd{bottom:98.924000pt;}
.yef{bottom:101.223867pt;}
.y122{bottom:102.688000pt;}
.y40{bottom:104.036000pt;}
.y32{bottom:104.048000pt;}
.y1bf{bottom:106.728000pt;}
.y16a{bottom:107.575867pt;}
.y5f{bottom:107.820000pt;}
.y18a{bottom:110.587867pt;}
.ybc{bottom:112.928000pt;}
.y14e{bottom:115.280000pt;}
.yee{bottom:115.299867pt;}
.y9a{bottom:115.727867pt;}
.y121{bottom:116.764000pt;}
.y3f{bottom:117.956000pt;}
.y31{bottom:117.968000pt;}
.y1be{bottom:120.732000pt;}
.y169{bottom:121.579867pt;}
.y5e{bottom:121.824000pt;}
.ybb{bottom:126.848000pt;}
.y14d{bottom:128.720000pt;}
.yed{bottom:129.219867pt;}
.y99{bottom:129.803867pt;}
.y120{bottom:130.684000pt;}
.y189{bottom:131.143867pt;}
.y3e{bottom:131.960000pt;}
.y30{bottom:131.972000pt;}
.y1bd{bottom:134.652000pt;}
.y168{bottom:135.499867pt;}
.y5d{bottom:135.744000pt;}
.yec{bottom:143.223867pt;}
.y98{bottom:143.723867pt;}
.y11f{bottom:144.604000pt;}
.y188{bottom:145.147867pt;}
.y3d{bottom:145.880000pt;}
.y2f{bottom:145.892000pt;}
.y14c{bottom:147.920000pt;}
.y1bc{bottom:148.572000pt;}
.y167{bottom:149.419867pt;}
.y5c{bottom:149.664000pt;}
.yeb{bottom:157.143867pt;}
.y97{bottom:157.727867pt;}
.y11e{bottom:158.608000pt;}
.y187{bottom:159.067867pt;}
.y3c{bottom:159.884000pt;}
.y2e{bottom:159.896000pt;}
.y1bb{bottom:162.576000pt;}
.y5b{bottom:163.668000pt;}
.y14b{bottom:167.360000pt;}
.y166{bottom:169.975867pt;}
.yea{bottom:171.063867pt;}
.y11d{bottom:172.528000pt;}
.y186{bottom:173.071867pt;}
.y3b{bottom:173.804000pt;}
.y2d{bottom:173.816000pt;}
.y1ba{bottom:176.496000pt;}
.y5a{bottom:177.588000pt;}
.y165{bottom:184.051867pt;}
.ye9{bottom:185.067867pt;}
.y11c{bottom:186.532000pt;}
.y14a{bottom:186.880000pt;}
.y185{bottom:186.991867pt;}
.y3a{bottom:187.724000pt;}
.y1b9{bottom:190.500000pt;}
.y59{bottom:191.508000pt;}
.y2c{bottom:194.372000pt;}
.y164{bottom:197.971867pt;}
.ye8{bottom:198.987867pt;}
.y148{bottom:200.320000pt;}
.y11b{bottom:200.452000pt;}
.y184{bottom:200.995867pt;}
.y1b8{bottom:204.420000pt;}
.y58{bottom:205.512000pt;}
.y39{bottom:208.280000pt;}
.y2b{bottom:208.376000pt;}
.y163{bottom:211.891867pt;}
.ye7{bottom:212.907867pt;}
.y11a{bottom:214.372000pt;}
.y1b7{bottom:218.340000pt;}
.y149{bottom:219.520000pt;}
.y183{bottom:221.239867pt;}
.y38{bottom:222.284000pt;}
.y2a{bottom:222.296000pt;}
.y57{bottom:225.828000pt;}
.y162{bottom:225.895867pt;}
.ye6{bottom:226.911867pt;}
.y119{bottom:228.376000pt;}
.y1b6{bottom:232.344000pt;}
.y145{bottom:232.960000pt;}
.y37{bottom:236.288000pt;}
.y29{bottom:236.300000pt;}
.y161{bottom:239.815867pt;}
.ye5{bottom:240.831867pt;}
.y118{bottom:242.296000pt;}
.y1b5{bottom:246.264000pt;}
.y36{bottom:250.208000pt;}
.y28{bottom:250.220000pt;}
.y147{bottom:252.160000pt;}
.y160{bottom:253.735867pt;}
.y182{bottom:254.119867pt;}
.ye4{bottom:254.835867pt;}
.y56{bottom:255.984000pt;}
.y117{bottom:256.216000pt;}
.y1b4{bottom:260.184000pt;}
.y35{bottom:264.212000pt;}
.y27{bottom:264.224000pt;}
.y144{bottom:265.680000pt;}
.y15f{bottom:267.739867pt;}
.y181{bottom:268.123867pt;}
.y55{bottom:269.988000pt;}
.y116{bottom:270.220000pt;}
.y1b3{bottom:274.188000pt;}
.ye3{bottom:275.319867pt;}
.y34{bottom:278.132000pt;}
.y26{bottom:278.144000pt;}
.y180{bottom:282.127867pt;}
.y54{bottom:283.992000pt;}
.y115{bottom:284.140000pt;}
.y143{bottom:284.880000pt;}
.y15e{bottom:287.983867pt;}
.y1b2{bottom:288.108000pt;}
.ye2{bottom:289.395867pt;}
.y17f{bottom:296.047867pt;}
.y53{bottom:297.912000pt;}
.y114{bottom:298.144000pt;}
.y25{bottom:298.460000pt;}
.y1b1{bottom:302.112000pt;}
.ye1{bottom:303.315867pt;}
.y142{bottom:304.320000pt;}
.y83{bottom:307.872000pt;}
.y17e{bottom:309.967867pt;}
.y52{bottom:311.832000pt;}
.y113{bottom:312.064000pt;}
.y15d{bottom:312.859867pt;}
.y1b0{bottom:316.032000pt;}
.ye0{bottom:317.235867pt;}
.y141{bottom:317.760000pt;}
.y51{bottom:325.836000pt;}
.y112{bottom:325.984000pt;}
.y15c{bottom:326.935867pt;}
.y82{bottom:328.428000pt;}
.y24{bottom:328.616000pt;}
.y1af{bottom:329.952000pt;}
.y17d{bottom:330.523867pt;}
.ydf{bottom:331.239867pt;}
.y140{bottom:336.960000pt;}
.y50{bottom:339.756000pt;}
.y111{bottom:339.988000pt;}
.y15b{bottom:340.855867pt;}
.y81{bottom:342.504000pt;}
.y1ae{bottom:343.956000pt;}
.y17c{bottom:344.599867pt;}
.yde{bottom:345.159867pt;}
.y23{bottom:349.016000pt;}
.y15a{bottom:354.775867pt;}
.y80{bottom:356.424000pt;}
.y13f{bottom:356.480000pt;}
.y1ad{bottom:357.876000pt;}
.y17b{bottom:358.519867pt;}
.ydd{bottom:359.079867pt;}
.y4f{bottom:360.312000pt;}
.y110{bottom:360.472000pt;}
.y22{bottom:363.260000pt;}
.y159{bottom:368.779867pt;}
.y7f{bottom:370.428000pt;}
.y1ac{bottom:371.796000pt;}
.y17a{bottom:372.439867pt;}
.ydc{bottom:373.083867pt;}
.y4e{bottom:374.316000pt;}
.y10f{bottom:374.548000pt;}
.y13e{bottom:375.920000pt;}
.y21{bottom:377.180000pt;}
.y158{bottom:382.699867pt;}
.y7e{bottom:384.348000pt;}
.y1ab{bottom:385.800000pt;}
.y179{bottom:386.443867pt;}
.ydb{bottom:387.003867pt;}
.y4d{bottom:388.320000pt;}
.y10e{bottom:388.468000pt;}
.y20{bottom:391.184000pt;}
.y13d{bottom:395.360000pt;}
.y157{bottom:396.619867pt;}
.y7d{bottom:398.268000pt;}
.y1aa{bottom:399.720000pt;}
.y178{bottom:400.363867pt;}
.y10d{bottom:402.472000pt;}
.y1f{bottom:405.104000pt;}
.yda{bottom:407.403867pt;}
.y156{bottom:410.623867pt;}
.y7c{bottom:412.272000pt;}
.y1a9{bottom:413.724000pt;}
.y177{bottom:414.283867pt;}
.y13c{bottom:414.880000pt;}
.y10c{bottom:416.392000pt;}
.y1e{bottom:419.108000pt;}
.y155{bottom:424.543867pt;}
.yba{bottom:424.844000pt;}
.yac{bottom:424.856000pt;}
.y1a8{bottom:427.644000pt;}
.y176{bottom:428.287867pt;}
.y10b{bottom:430.312000pt;}
.y7b{bottom:432.756000pt;}
.y1d{bottom:433.028000pt;}
.y13b{bottom:434.320000pt;}
.yd9{bottom:437.487867pt;}
.y154{bottom:438.547867pt;}
.yb9{bottom:438.764000pt;}
.yab{bottom:438.776000pt;}
.y1a7{bottom:441.564000pt;}
.y175{bottom:442.207867pt;}
.y10a{bottom:444.316000pt;}
.y7a{bottom:446.832000pt;}
.y1c{bottom:446.948000pt;}
.yd8{bottom:451.563867pt;}
.yb8{bottom:452.684000pt;}
.yaa{bottom:452.696000pt;}
.y13a{bottom:453.760000pt;}
.y1a6{bottom:455.568000pt;}
.y174{bottom:456.211867pt;}
.y109{bottom:458.236000pt;}
.y79{bottom:460.752000pt;}
.y1b{bottom:460.952000pt;}
.yd7{bottom:465.483867pt;}
.yb7{bottom:466.688000pt;}
.ya9{bottom:466.700000pt;}
.y1a5{bottom:469.488000pt;}
.y173{bottom:470.131867pt;}
.y108{bottom:472.156000pt;}
.y139{bottom:473.280000pt;}
.y78{bottom:474.672000pt;}
.y1a{bottom:474.872000pt;}
.yd6{bottom:479.403867pt;}
.yb6{bottom:480.608000pt;}
.ya8{bottom:480.620000pt;}
.y1a4{bottom:483.408000pt;}
.y172{bottom:484.051867pt;}
.y107{bottom:486.160000pt;}
.y77{bottom:488.676000pt;}
.y19{bottom:488.792000pt;}
.y138{bottom:492.720000pt;}
.yd5{bottom:493.407867pt;}
.ya7{bottom:494.624000pt;}
.y1a3{bottom:497.412000pt;}
.y171{bottom:498.055867pt;}
.y106{bottom:500.080000pt;}
.yb5{bottom:501.164000pt;}
.y76{bottom:502.596000pt;}
.y18{bottom:502.796000pt;}
.y137{bottom:506.160000pt;}
.yd4{bottom:507.327867pt;}
.ya6{bottom:508.544000pt;}
.y1a2{bottom:511.332000pt;}
.y105{bottom:514.000000pt;}
.yb4{bottom:515.168000pt;}
.y75{bottom:516.600000pt;}
.y17{bottom:516.716000pt;}
.y170{bottom:518.539867pt;}
.yd3{bottom:521.331867pt;}
.ya5{bottom:522.464000pt;}
.y1a1{bottom:525.336000pt;}
.y136{bottom:525.360000pt;}
.y104{bottom:528.004000pt;}
.yb3{bottom:529.172000pt;}
.y74{bottom:530.520000pt;}
.y16{bottom:530.720000pt;}
.y16f{bottom:532.615867pt;}
.yd2{bottom:535.251867pt;}
.y1a0{bottom:539.256000pt;}
.ya4{bottom:543.020000pt;}
.yb2{bottom:543.092000pt;}
.y73{bottom:544.440000pt;}
.y15{bottom:544.640000pt;}
.y135{bottom:544.880000pt;}
.y103{bottom:548.560000pt;}
.yd1{bottom:549.171867pt;}
.y16e{bottom:553.099867pt;}
.y19f{bottom:553.176000pt;}
.yb1{bottom:557.012000pt;}
.ya3{bottom:557.024000pt;}
.y134{bottom:558.320000pt;}
.y72{bottom:558.444000pt;}
.y14{bottom:558.560000pt;}
.y102{bottom:562.479867pt;}
.yd0{bottom:563.175867pt;}
.y16d{bottom:567.175867pt;}
.y19e{bottom:567.180000pt;}
.yb0{bottom:571.016000pt;}
.ya2{bottom:571.028000pt;}
.y71{bottom:572.364000pt;}
.y13{bottom:572.564000pt;}
.y101{bottom:576.399867pt;}
.y133{bottom:577.520000pt;}
.y19d{bottom:581.100000pt;}
.ycf{bottom:583.659867pt;}
.yaf{bottom:584.936000pt;}
.ya1{bottom:584.948000pt;}
.y70{bottom:586.284000pt;}
.y12{bottom:586.484000pt;}
.y100{bottom:590.403867pt;}
.y153{bottom:591.751867pt;}
.y19c{bottom:595.020000pt;}
.y132{bottom:596.960000pt;}
.yce{bottom:597.735867pt;}
.yae{bottom:598.940000pt;}
.ya0{bottom:598.952000pt;}
.y6f{bottom:600.288000pt;}
.y11{bottom:600.404000pt;}
.yff{bottom:604.323867pt;}
.y152{bottom:605.755867pt;}
.y19b{bottom:609.024000pt;}
.ycd{bottom:611.655867pt;}
.yad{bottom:612.860000pt;}
.y9f{bottom:612.872000pt;}
.y6e{bottom:614.208000pt;}
.y131{bottom:616.480000pt;}
.yfe{bottom:618.243867pt;}
.y151{bottom:619.675867pt;}
.y10{bottom:620.720000pt;}
.y19a{bottom:622.944000pt;}
.ycc{bottom:625.575867pt;}
.y6d{bottom:628.212000pt;}
.yfd{bottom:632.247867pt;}
.y150{bottom:633.679867pt;}
.y130{bottom:635.920000pt;}
.y199{bottom:636.948000pt;}
.y9e{bottom:637.436000pt;}
.ycb{bottom:639.579867pt;}
.y6c{bottom:642.132000pt;}
.yfc{bottom:646.167867pt;}
.y12f{bottom:649.360000pt;}
.yf{bottom:650.719280pt;}
.y198{bottom:650.868000pt;}
.y9d{bottom:651.440000pt;}
.yca{bottom:653.499867pt;}
.y6b{bottom:656.052000pt;}
.ye{bottom:663.200000pt;}
.y197{bottom:664.788000pt;}
.y9c{bottom:665.360000pt;}
.yfb{bottom:666.723867pt;}
.yc9{bottom:667.503867pt;}
.y12e{bottom:668.560000pt;}
.y6a{bottom:670.056000pt;}
.yd{bottom:675.920000pt;}
.y196{bottom:678.792000pt;}
.yfa{bottom:680.727867pt;}
.yc8{bottom:681.423867pt;}
.y69{bottom:683.976000pt;}
.y4c{bottom:687.996000pt;}
.y12d{bottom:688.079867pt;}
.yc{bottom:692.167947pt;}
.y195{bottom:692.712000pt;}
.yf9{bottom:694.731867pt;}
.yc7{bottom:695.343867pt;}
.y68{bottom:697.896000pt;}
.y12b{bottom:701.520000pt;}
.y4b{bottom:702.072000pt;}
.y194{bottom:706.632000pt;}
.y8d{bottom:707.903867pt;}
.y96{bottom:708.611867pt;}
.yf8{bottom:708.651867pt;}
.yc6{bottom:709.347867pt;}
.yb{bottom:712.079867pt;}
.y4a{bottom:715.992000pt;}
.y67{bottom:718.296000pt;}
.y193{bottom:720.636000pt;}
.y12a{bottom:720.720000pt;}
.y8c{bottom:721.907867pt;}
.yf7{bottom:722.571867pt;}
.y95{bottom:722.615867pt;}
.yc5{bottom:723.267867pt;}
.y49{bottom:729.912000pt;}
.ya{bottom:733.389147pt;}
.y192{bottom:734.556000pt;}
.y8b{bottom:735.911867pt;}
.yf6{bottom:736.575867pt;}
.y94{bottom:736.619867pt;}
.yc4{bottom:737.187867pt;}
.y129{bottom:740.160000pt;}
.y48{bottom:743.916000pt;}
.y9{bottom:748.104267pt;}
.y66{bottom:748.212000pt;}
.y191{bottom:748.560000pt;}
.y8a{bottom:749.831867pt;}
.yf5{bottom:750.495867pt;}
.y93{bottom:750.539867pt;}
.yc3{bottom:751.191867pt;}
.y128{bottom:759.679867pt;}
.y190{bottom:762.480000pt;}
.y8{bottom:762.819387pt;}
.y89{bottom:763.835867pt;}
.y47{bottom:764.472000pt;}
.yf4{bottom:764.499867pt;}
.y92{bottom:764.543867pt;}
.yc2{bottom:765.111867pt;}
.y18f{bottom:776.400000pt;}
.y7{bottom:777.534507pt;}
.y88{bottom:777.755867pt;}
.y65{bottom:778.368000pt;}
.yf3{bottom:778.419867pt;}
.y91{bottom:778.463867pt;}
.y46{bottom:778.476000pt;}
.yc1{bottom:779.115867pt;}
.y127{bottom:779.120000pt;}
.y18e{bottom:790.404000pt;}
.y87{bottom:791.675867pt;}
.y6{bottom:792.249627pt;}
.yf2{bottom:792.339867pt;}
.y64{bottom:792.372000pt;}
.y90{bottom:792.383867pt;}
.y45{bottom:792.396000pt;}
.y126{bottom:798.560000pt;}
.yc0{bottom:799.359867pt;}
.yf1{bottom:806.343867pt;}
.y63{bottom:806.376000pt;}
.y8f{bottom:806.387867pt;}
.y44{bottom:806.400000pt;}
.y5{bottom:806.964747pt;}
.y18d{bottom:810.720000pt;}
.y125{bottom:818.079867pt;}
.ybf{bottom:819.999867pt;}
.y86{bottom:820.079867pt;}
.yf0{bottom:820.263867pt;}
.y62{bottom:820.296000pt;}
.y8e{bottom:820.307867pt;}
.y43{bottom:820.320000pt;}
.y4{bottom:821.679867pt;}
.y1{bottom:844.960000pt;}
.hc{height:31.998667pt;}
.hb{height:32.000000pt;}
.h3{height:37.343906pt;}
.h4{height:37.447813pt;}
.h8{height:42.117188pt;}
.ha{height:42.234375pt;}
.h7{height:42.773438pt;}
.h9{height:43.077187pt;}
.h6{height:47.621094pt;}
.h2{height:56.156250pt;}
.h5{height:61.878906pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:161.360000pt;}
.w2{width:343.680000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x10{left:51.280000pt;}
.x8{left:52.800000pt;}
.xd{left:58.480000pt;}
.x12{left:70.716000pt;}
.x1{left:86.800000pt;}
.xe{left:212.640000pt;}
.x11{left:219.840000pt;}
.x3{left:245.520000pt;}
.x9{left:293.520000pt;}
.x4{left:307.040480pt;}
.xa{left:319.468000pt;}
.x2{left:327.520000pt;}
.x7{left:338.332720pt;}
.x6{left:353.526640pt;}
.xc{left:362.056000pt;}
.xb{left:524.380000pt;}
.x5{left:589.681440pt;}
}




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