
    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_5e2f1d0861f0d87df43b624d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.098000;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_51f41e8d0c61a9907e28bf35.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_e2016a72f96e456fc48c90f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050000;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;}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:17.982000px;}
.lsb{letter-spacing:-1.440000px;}
.ls1{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.629640px;}
.lsa{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.314820px;}
.ls9{letter-spacing:0.472230px;}
.ls3{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.810000px;}
.ls5{letter-spacing:1.080000px;}
.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;}
}
.ws1d{word-spacing:-11.988000px;}
.wsb4{word-spacing:-11.448000px;}
.ws1{word-spacing:-11.178000px;}
.ws6d{word-spacing:-10.368000px;}
.ws3{word-spacing:-9.936000px;}
.wsdd{word-spacing:-9.456000px;}
.ws4{word-spacing:-8.694000px;}
.wsdc{word-spacing:-8.496000px;}
.ws96{word-spacing:-7.146414px;}
.ws1c{word-spacing:-6.989004px;}
.ws97{word-spacing:-6.674184px;}
.ws2{word-spacing:-6.044544px;}
.ws0{word-spacing:-5.976000px;}
.wsdb{word-spacing:-3.216000px;}
.wsa9{word-spacing:-2.970000px;}
.ws49{word-spacing:-2.754000px;}
.ws18{word-spacing:-2.592000px;}
.ws9f{word-spacing:-2.376000px;}
.wsf7{word-spacing:-2.304000px;}
.ws5a{word-spacing:-2.268000px;}
.wsd5{word-spacing:-2.064000px;}
.ws9{word-spacing:-1.998000px;}
.wsb5{word-spacing:-1.944000px;}
.wse9{word-spacing:-1.920000px;}
.ws2a{word-spacing:-1.890000px;}
.ws5b{word-spacing:-1.728000px;}
.wsb2{word-spacing:-1.680000px;}
.ws58{word-spacing:-1.674000px;}
.wsb1{word-spacing:-1.632000px;}
.ws29{word-spacing:-1.620000px;}
.wsb{word-spacing:-1.566000px;}
.wse{word-spacing:-1.512000px;}
.wse3{word-spacing:-1.488000px;}
.ws1f{word-spacing:-1.458000px;}
.wsf3{word-spacing:-1.440000px;}
.ws4c{word-spacing:-1.404000px;}
.wsd7{word-spacing:-1.392000px;}
.ws51{word-spacing:-1.350000px;}
.wsd6{word-spacing:-1.344000px;}
.ws8f{word-spacing:-1.296000px;}
.wse5{word-spacing:-1.248000px;}
.ws9d{word-spacing:-1.242000px;}
.ws6e{word-spacing:-1.188000px;}
.wse1{word-spacing:-1.152000px;}
.ws81{word-spacing:-1.134000px;}
.ws16{word-spacing:-1.104000px;}
.ws6f{word-spacing:-1.026000px;}
.ws83{word-spacing:-0.972000px;}
.wse8{word-spacing:-0.960000px;}
.wsc8{word-spacing:-0.918000px;}
.ws21{word-spacing:-0.864000px;}
.wse2{word-spacing:-0.816000px;}
.ws4a{word-spacing:-0.810000px;}
.ws8a{word-spacing:-0.756000px;}
.wsae{word-spacing:-0.724086px;}
.wsed{word-spacing:-0.720000px;}
.wscc{word-spacing:-0.702000px;}
.wsa{word-spacing:-0.648000px;}
.ws41{word-spacing:-0.540000px;}
.wse4{word-spacing:-0.528000px;}
.ws8e{word-spacing:-0.486000px;}
.wsf4{word-spacing:-0.480000px;}
.ws37{word-spacing:-0.432000px;}
.ws9e{word-spacing:-0.378000px;}
.wsb6{word-spacing:-0.324000px;}
.wsf5{word-spacing:-0.288000px;}
.ws78{word-spacing:-0.270000px;}
.wsaf{word-spacing:-0.251856px;}
.ws59{word-spacing:-0.216000px;}
.wsda{word-spacing:-0.192000px;}
.ws7b{word-spacing:-0.162000px;}
.ws73{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.wsbc{word-spacing:0.054000px;}
.ws6{word-spacing:0.108000px;}
.ws50{word-spacing:0.162000px;}
.ws5f{word-spacing:0.216000px;}
.ws2c{word-spacing:0.270000px;}
.wse7{word-spacing:0.288000px;}
.wsbb{word-spacing:0.324000px;}
.ws17{word-spacing:0.336000px;}
.ws27{word-spacing:0.378000px;}
.wsad{word-spacing:0.432000px;}
.ws12{word-spacing:0.480000px;}
.ws8d{word-spacing:0.486000px;}
.ws100{word-spacing:0.528000px;}
.ws52{word-spacing:0.540000px;}
.wsf8{word-spacing:0.576000px;}
.wsaa{word-spacing:0.594000px;}
.wse0{word-spacing:0.624000px;}
.ws38{word-spacing:0.648000px;}
.ws13{word-spacing:0.672000px;}
.ws54{word-spacing:0.702000px;}
.wsfc{word-spacing:0.720000px;}
.ws53{word-spacing:0.756000px;}
.ws2d{word-spacing:0.810000px;}
.wsd{word-spacing:0.850014px;}
.ws1b{word-spacing:0.864000px;}
.wsb8{word-spacing:0.918000px;}
.ws46{word-spacing:0.972000px;}
.wseb{word-spacing:1.008000px;}
.ws8{word-spacing:1.080000px;}
.wsd8{word-spacing:1.104000px;}
.ws45{word-spacing:1.134000px;}
.wsd9{word-spacing:1.152000px;}
.ws69{word-spacing:1.188000px;}
.ws14{word-spacing:1.200000px;}
.ws1a{word-spacing:1.296000px;}
.ws94{word-spacing:1.344000px;}
.ws75{word-spacing:1.350000px;}
.wsfa{word-spacing:1.392000px;}
.wsb7{word-spacing:1.404000px;}
.ws3a{word-spacing:1.416690px;}
.ws7{word-spacing:1.458000px;}
.wse6{word-spacing:1.488000px;}
.wsa3{word-spacing:1.512000px;}
.wsb9{word-spacing:1.566000px;}
.ws47{word-spacing:1.620000px;}
.ws15{word-spacing:1.632000px;}
.wsd1{word-spacing:1.674000px;}
.wsa2{word-spacing:1.728000px;}
.ws89{word-spacing:1.836000px;}
.wsbe{word-spacing:1.944000px;}
.ws36{word-spacing:1.998000px;}
.wsa8{word-spacing:2.052000px;}
.wsf{word-spacing:2.064000px;}
.ws10{word-spacing:2.112000px;}
.ws33{word-spacing:2.140776px;}
.wsc7{word-spacing:2.160000px;}
.ws71{word-spacing:2.214000px;}
.wsca{word-spacing:2.268000px;}
.wscb{word-spacing:2.322000px;}
.ws57{word-spacing:2.376000px;}
.ws39{word-spacing:2.430000px;}
.wsfb{word-spacing:2.448000px;}
.ws34{word-spacing:2.484000px;}
.wsac{word-spacing:2.518560px;}
.wsc{word-spacing:2.538000px;}
.wsb0{word-spacing:2.592000px;}
.wsbf{word-spacing:2.646000px;}
.wsf6{word-spacing:2.688000px;}
.ws31{word-spacing:2.700000px;}
.ws80{word-spacing:2.754000px;}
.ws7a{word-spacing:2.808000px;}
.ws42{word-spacing:2.862000px;}
.ws6a{word-spacing:2.916000px;}
.ws68{word-spacing:2.970000px;}
.wsa1{word-spacing:3.024000px;}
.ws60{word-spacing:3.078000px;}
.ws7d{word-spacing:3.132000px;}
.wsb3{word-spacing:3.168000px;}
.ws5d{word-spacing:3.186000px;}
.ws9a{word-spacing:3.294000px;}
.ws48{word-spacing:3.348000px;}
.ws56{word-spacing:3.402000px;}
.ws5c{word-spacing:3.456000px;}
.wsc3{word-spacing:3.564000px;}
.ws82{word-spacing:3.618000px;}
.ws32{word-spacing:3.672000px;}
.ws3f{word-spacing:3.726000px;}
.ws9c{word-spacing:3.780000px;}
.ws25{word-spacing:3.888000px;}
.wsba{word-spacing:3.942000px;}
.wsd4{word-spacing:3.984000px;}
.ws11{word-spacing:4.032000px;}
.wsd0{word-spacing:4.050000px;}
.wsf9{word-spacing:4.080000px;}
.ws7c{word-spacing:4.104000px;}
.ws79{word-spacing:4.158000px;}
.wsff{word-spacing:4.176000px;}
.ws66{word-spacing:4.212000px;}
.ws35{word-spacing:4.320000px;}
.ws6b{word-spacing:4.428000px;}
.wsd2{word-spacing:4.464000px;}
.wsc2{word-spacing:4.482000px;}
.ws3d{word-spacing:4.536000px;}
.wsd3{word-spacing:4.560000px;}
.ws43{word-spacing:4.644000px;}
.ws55{word-spacing:4.752000px;}
.wsf1{word-spacing:4.896000px;}
.wsc4{word-spacing:4.968000px;}
.wsc1{word-spacing:5.022000px;}
.ws95{word-spacing:5.088000px;}
.ws2e{word-spacing:5.130000px;}
.ws72{word-spacing:5.184000px;}
.wsfd{word-spacing:5.232000px;}
.ws90{word-spacing:5.292000px;}
.ws64{word-spacing:5.346000px;}
.wscf{word-spacing:5.400000px;}
.ws62{word-spacing:5.562000px;}
.ws86{word-spacing:5.616000px;}
.wsf2{word-spacing:5.664000px;}
.ws5e{word-spacing:5.670000px;}
.ws20{word-spacing:5.724000px;}
.wsbd{word-spacing:5.778000px;}
.ws4e{word-spacing:5.886000px;}
.ws63{word-spacing:5.940000px;}
.ws26{word-spacing:6.048000px;}
.wsde{word-spacing:6.096000px;}
.wsec{word-spacing:6.144000px;}
.ws99{word-spacing:6.156000px;}
.ws2f{word-spacing:6.210000px;}
.wsdf{word-spacing:6.240000px;}
.ws67{word-spacing:6.318000px;}
.ws3b{word-spacing:6.372000px;}
.ws98{word-spacing:6.426000px;}
.ws88{word-spacing:6.480000px;}
.ws102{word-spacing:6.576000px;}
.wsc9{word-spacing:6.588000px;}
.ws28{word-spacing:6.696000px;}
.ws19{word-spacing:6.720000px;}
.ws3c{word-spacing:6.750000px;}
.wsc5{word-spacing:6.804000px;}
.ws101{word-spacing:6.816000px;}
.wsc0{word-spacing:6.858000px;}
.wsab{word-spacing:6.912000px;}
.ws7e{word-spacing:7.020000px;}
.ws40{word-spacing:7.074000px;}
.ws2b{word-spacing:7.128000px;}
.ws8b{word-spacing:7.182000px;}
.ws77{word-spacing:7.236000px;}
.wsa0{word-spacing:7.344000px;}
.ws9b{word-spacing:7.398000px;}
.ws74{word-spacing:7.452000px;}
.ws44{word-spacing:7.830000px;}
.ws70{word-spacing:7.884000px;}
.wsef{word-spacing:7.968000px;}
.ws103{word-spacing:8.016000px;}
.wscd{word-spacing:8.046000px;}
.ws7f{word-spacing:8.100000px;}
.ws6c{word-spacing:8.208000px;}
.ws85{word-spacing:8.262000px;}
.ws3e{word-spacing:8.532000px;}
.ws4d{word-spacing:8.586000px;}
.ws61{word-spacing:8.640000px;}
.wsea{word-spacing:8.784000px;}
.wsc6{word-spacing:9.072000px;}
.ws87{word-spacing:9.234000px;}
.wsce{word-spacing:9.288000px;}
.ws4b{word-spacing:9.342000px;}
.ws84{word-spacing:9.612000px;}
.ws23{word-spacing:10.098000px;}
.wsfe{word-spacing:10.272000px;}
.ws65{word-spacing:10.476000px;}
.ws24{word-spacing:10.584000px;}
.ws76{word-spacing:10.800000px;}
.ws8c{word-spacing:12.096000px;}
.ws30{word-spacing:12.312000px;}
.ws4f{word-spacing:12.582000px;}
.wsf0{word-spacing:12.864000px;}
.ws22{word-spacing:14.148000px;}
.wsee{word-spacing:40.080000px;}
.wsa7{word-spacing:119.952000px;}
.wsa6{word-spacing:193.392000px;}
.wsa5{word-spacing:205.728000px;}
.wsa4{word-spacing:258.240000px;}
.ws93{word-spacing:348.672000px;}
.ws92{word-spacing:361.008000px;}
.ws91{word-spacing:385.584000px;}
._1c{margin-left:-258.240000px;}
._19{margin-left:-44.256000px;}
._1d{margin-left:-37.152000px;}
._1e{margin-left:-24.642000px;}
._1b{margin-left:-18.048000px;}
._54{margin-left:-9.936000px;}
._1a{margin-left:-8.634000px;}
._63{margin-left:-7.627200px;}
._9{margin-left:-6.576000px;}
._a{margin-left:-5.238000px;}
._2{margin-left:-3.888000px;}
._3{margin-left:-2.646000px;}
._1{margin-left:-1.566000px;}
._0{width:1.074600px;}
._4{width:2.970000px;}
._5{width:4.360200px;}
._5f{width:5.952000px;}
._30{width:10.944000px;}
._20{width:18.288000px;}
._67{width:19.824000px;}
._5a{width:23.232000px;}
._65{width:26.544000px;}
._68{width:27.792000px;}
._2d{width:30.624000px;}
._69{width:32.112000px;}
._66{width:33.552000px;}
._60{width:35.328000px;}
._23{width:41.760000px;}
._22{width:47.904000px;}
._8{width:50.226000px;}
._6{width:51.385200px;}
._7{width:53.913600px;}
._34{width:56.972400px;}
._21{width:59.568000px;}
._2e{width:61.008000px;}
._64{width:62.784000px;}
._57{width:66.960000px;}
._58{width:72.288000px;}
._31{width:73.296000px;}
._5b{width:78.624000px;}
._c{width:81.888000px;}
._4c{width:84.300000px;}
._53{width:108.336000px;}
._45{width:115.008000px;}
._32{width:120.528000px;}
._40{width:127.296000px;}
._37{width:138.864000px;}
._47{width:140.400000px;}
._2f{width:165.456000px;}
._5e{width:169.776000px;}
._24{width:183.168000px;}
._2c{width:194.400000px;}
._61{width:198.336000px;}
._25{width:204.336000px;}
._1f{width:205.680000px;}
._59{width:210.672000px;}
._5c{width:214.086000px;}
._2b{width:216.624000px;}
._55{width:218.964000px;}
._5d{width:224.592000px;}
._2a{width:227.262000px;}
._3f{width:240.576000px;}
._f{width:243.216000px;}
._52{width:247.026000px;}
._42{width:252.096000px;}
._27{width:253.632000px;}
._43{width:255.708000px;}
._62{width:259.584000px;}
._26{width:265.344000px;}
._56{width:266.592000px;}
._28{width:272.688000px;}
._29{width:278.016000px;}
._b{width:287.136000px;}
._16{width:302.064000px;}
._15{width:308.064000px;}
._10{width:329.568000px;}
._17{width:332.064000px;}
._18{width:350.064000px;}
._44{width:360.240000px;}
._11{width:366.318000px;}
._39{width:372.576000px;}
._3e{width:378.576000px;}
._e{width:385.632000px;}
._3a{width:390.912000px;}
._4a{width:397.200000px;}
._36{width:402.480000px;}
._12{width:409.632000px;}
._48{width:443.694000px;}
._13{width:470.208000px;}
._3c{width:577.998000px;}
._14{width:602.064000px;}
._d{width:636.720000px;}
._50{width:714.720000px;}
._38{width:748.014000px;}
._4e{width:759.035400px;}
._46{width:801.246000px;}
._35{width:819.600000px;}
._4b{width:870.126000px;}
._4d{width:1049.616000px;}
._41{width:1060.926000px;}
._49{width:1093.776000px;}
._3b{width:1102.848000px;}
._3d{width:1109.741400px;}
._4f{width:1203.936000px;}
._33{width:1327.134000px;}
._51{width:1416.288000px;}
.fc3{color:rgb(237,28,36);}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(145,143,143);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:24.000000px;}
.fs4{font-size:31.482000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:24.032550px;}
.y86{bottom:24.049800px;}
.y6c{bottom:24.059100px;}
.y10{bottom:24.255600px;}
.y31{bottom:36.782550px;}
.y29{bottom:38.908500px;}
.y30{bottom:49.532550px;}
.y28{bottom:55.910400px;}
.y2f{bottom:85.547250px;}
.y69{bottom:86.334900px;}
.ya2{bottom:103.628100px;}
.ycc{bottom:103.644000px;}
.y68{bottom:103.869750px;}
.y8d{bottom:110.588850px;}
.yf{bottom:115.189950px;}
.y10b{bottom:118.120800px;}
.ya1{bottom:120.921150px;}
.ycb{bottom:120.953100px;}
.y67{bottom:121.404450px;}
.ye{bottom:132.518850px;}
.y10a{bottom:134.013750px;}
.y8c{bottom:134.842800px;}
.ya0{bottom:138.214200px;}
.yca{bottom:138.262050px;}
.y66{bottom:138.939300px;}
.yd{bottom:149.847750px;}
.y9f{bottom:155.507400px;}
.yc9{bottom:155.571150px;}
.y65{bottom:156.474150px;}
.y8b{bottom:159.096750px;}
.y109{bottom:165.799650px;}
.yc{bottom:167.176650px;}
.y9e{bottom:172.800450px;}
.yc8{bottom:172.880100px;}
.y64{bottom:174.009000px;}
.y108{bottom:181.692750px;}
.y8a{bottom:183.350700px;}
.yb{bottom:184.505550px;}
.y9d{bottom:190.093500px;}
.yc7{bottom:190.189200px;}
.y63{bottom:191.543850px;}
.y107{bottom:197.585700px;}
.ya{bottom:201.834450px;}
.y9c{bottom:207.386550px;}
.yc6{bottom:207.498300px;}
.y89{bottom:207.604650px;}
.y62{bottom:209.078700px;}
.y106{bottom:213.478650px;}
.y9{bottom:219.163350px;}
.y9b{bottom:224.679600px;}
.yc5{bottom:224.807250px;}
.y6b{bottom:226.613550px;}
.y88{bottom:231.858600px;}
.y8{bottom:236.492400px;}
.y9a{bottom:241.972800px;}
.yc4{bottom:242.116350px;}
.y61{bottom:244.148400px;}
.y105{bottom:245.264550px;}
.y7{bottom:253.821300px;}
.y87{bottom:258.433350px;}
.y99{bottom:259.265850px;}
.yc3{bottom:259.425450px;}
.y60{bottom:261.683100px;}
.y6{bottom:271.150200px;}
.y98{bottom:276.558900px;}
.yc2{bottom:276.734400px;}
.y104{bottom:277.050450px;}
.y5f{bottom:279.217950px;}
.y91{bottom:284.881950px;}
.y5{bottom:288.479100px;}
.y103{bottom:292.943550px;}
.y97{bottom:293.851950px;}
.yc1{bottom:294.043350px;}
.y5e{bottom:296.752800px;}
.y90{bottom:299.281950px;}
.y4{bottom:305.808000px;}
.y96{bottom:311.145150px;}
.yc0{bottom:311.352450px;}
.y8f{bottom:313.681950px;}
.y5d{bottom:314.287650px;}
.y3{bottom:323.136900px;}
.y102{bottom:324.729450px;}
.y8e{bottom:328.081950px;}
.y95{bottom:328.438200px;}
.y5c{bottom:331.822500px;}
.yd9{bottom:338.485200px;}
.y101{bottom:340.622400px;}
.ya3{bottom:345.731250px;}
.y5b{bottom:349.357200px;}
.yd8{bottom:352.885350px;}
.y100{bottom:356.515350px;}
.y94{bottom:363.024300px;}
.y5a{bottom:366.892050px;}
.yd7{bottom:367.285200px;}
.y20{bottom:370.820850px;}
.y93{bottom:380.317350px;}
.yd6{bottom:381.685200px;}
.y59{bottom:384.426900px;}
.yff{bottom:389.951250px;}
.y1f{bottom:392.948850px;}
.y92{bottom:397.610400px;}
.y58{bottom:401.961750px;}
.yfe{bottom:407.494200px;}
.y1e{bottom:408.698850px;}
.y57{bottom:419.496600px;}
.ybf{bottom:424.743300px;}
.yfd{bottom:424.887150px;}
.y1d{bottom:430.826850px;}
.y56{bottom:437.031300px;}
.yfc{bottom:442.280100px;}
.y1c{bottom:446.576850px;}
.ybe{bottom:448.997250px;}
.y55{bottom:454.566150px;}
.yfb{bottom:459.673050px;}
.y1b{bottom:462.326850px;}
.y54{bottom:472.101000px;}
.ybd{bottom:473.251200px;}
.yfa{bottom:477.066000px;}
.y1a{bottom:478.076850px;}
.y53{bottom:489.635850px;}
.y19{bottom:493.826850px;}
.yf9{bottom:494.458950px;}
.ybc{bottom:497.505150px;}
.y153{bottom:503.760000px;}
.y12e{bottom:503.760150px;}
.y52{bottom:507.170700px;}
.y18{bottom:509.576850px;}
.yf8{bottom:511.851900px;}
.y152{bottom:519.521850px;}
.y12d{bottom:519.918150px;}
.ybb{bottom:521.759100px;}
.y51{bottom:524.705400px;}
.y17{bottom:525.326850px;}
.yf7{bottom:529.245000px;}
.y151{bottom:535.283550px;}
.y12c{bottom:536.076000px;}
.y16{bottom:541.076850px;}
.y50{bottom:542.240250px;}
.yba{bottom:546.013050px;}
.yf6{bottom:546.637950px;}
.y150{bottom:551.045250px;}
.y12b{bottom:552.234000px;}
.y4f{bottom:559.775100px;}
.y15{bottom:563.204700px;}
.yf5{bottom:564.030900px;}
.y14f{bottom:566.807100px;}
.y12a{bottom:568.391850px;}
.yb9{bottom:570.267000px;}
.y4e{bottom:577.309950px;}
.y14{bottom:578.954700px;}
.y14e{bottom:582.568800px;}
.y129{bottom:584.549850px;}
.yb8{bottom:594.520800px;}
.y4d{bottom:594.844800px;}
.y14d{bottom:598.330500px;}
.yf4{bottom:598.816800px;}
.y128{bottom:600.707700px;}
.y13{bottom:601.082700px;}
.y4c{bottom:612.379650px;}
.y14c{bottom:614.092350px;}
.yf3{bottom:616.209750px;}
.y127{bottom:616.865550px;}
.yb7{bottom:618.774750px;}
.y14b{bottom:629.854050px;}
.y4b{bottom:629.914500px;}
.y85{bottom:630.862950px;}
.y126{bottom:633.023550px;}
.yf2{bottom:633.602700px;}
.yb6{bottom:643.028850px;}
.y14a{bottom:645.615750px;}
.y4a{bottom:647.449200px;}
.y84{bottom:648.361350px;}
.y125{bottom:649.181400px;}
.yf1{bottom:650.995650px;}
.y2e{bottom:658.275300px;}
.y149{bottom:661.377600px;}
.y49{bottom:664.984050px;}
.y124{bottom:665.339250px;}
.y83{bottom:665.859600px;}
.yb5{bottom:667.282650px;}
.yf0{bottom:668.388600px;}
.y2d{bottom:674.025300px;}
.y148{bottom:677.139300px;}
.y123{bottom:681.497250px;}
.y48{bottom:682.518900px;}
.yef{bottom:685.781550px;}
.yd5{bottom:687.399600px;}
.yb4{bottom:691.536600px;}
.y147{bottom:692.901000px;}
.y122{bottom:697.655100px;}
.y47{bottom:700.053750px;}
.y82{bottom:700.856250px;}
.yee{bottom:703.174650px;}
.y146{bottom:708.662850px;}
.yd4{bottom:711.653550px;}
.y121{bottom:713.813100px;}
.yb3{bottom:715.790550px;}
.y6a{bottom:717.588600px;}
.y2c{bottom:717.787050px;}
.y81{bottom:718.354650px;}
.yed{bottom:720.567600px;}
.y145{bottom:724.424550px;}
.y120{bottom:729.970950px;}
.y2b{bottom:733.537050px;}
.y46{bottom:735.123300px;}
.y80{bottom:735.853050px;}
.yd3{bottom:735.907500px;}
.yec{bottom:737.960550px;}
.yb2{bottom:740.044500px;}
.y144{bottom:740.186250px;}
.y11f{bottom:746.128950px;}
.y45{bottom:752.658150px;}
.y7f{bottom:753.351450px;}
.yeb{bottom:755.353500px;}
.y143{bottom:755.948100px;}
.yd2{bottom:760.161450px;}
.y11e{bottom:762.286800px;}
.yb1{bottom:764.298450px;}
.y27{bottom:766.970100px;}
.y44{bottom:770.193000px;}
.y7e{bottom:770.849700px;}
.y142{bottom:771.709800px;}
.yea{bottom:772.746450px;}
.y11d{bottom:778.444650px;}
.y26{bottom:781.369950px;}
.yd1{bottom:784.415250px;}
.y141{bottom:787.471500px;}
.y43{bottom:787.727850px;}
.y7d{bottom:788.348100px;}
.yb0{bottom:788.552400px;}
.ye9{bottom:790.139400px;}
.y11c{bottom:794.602650px;}
.y25{bottom:795.770100px;}
.y140{bottom:803.233350px;}
.y42{bottom:805.262700px;}
.y7c{bottom:805.846350px;}
.ye8{bottom:807.532350px;}
.yd0{bottom:808.669350px;}
.y24{bottom:810.169950px;}
.y11b{bottom:810.760500px;}
.yaf{bottom:812.806200px;}
.y13f{bottom:818.995050px;}
.y41{bottom:822.797400px;}
.y7b{bottom:823.344750px;}
.y23{bottom:824.570100px;}
.ye7{bottom:824.925450px;}
.y11a{bottom:826.918350px;}
.y13e{bottom:834.756750px;}
.ycf{bottom:836.312400px;}
.yae{bottom:837.060300px;}
.y22{bottom:838.970100px;}
.y40{bottom:840.332400px;}
.y7a{bottom:840.843000px;}
.ye6{bottom:842.318250px;}
.y119{bottom:843.076200px;}
.y13d{bottom:850.518600px;}
.y3f{bottom:857.867250px;}
.y79{bottom:858.341400px;}
.y118{bottom:859.234200px;}
.y21{bottom:861.874050px;}
.yad{bottom:864.703350px;}
.yce{bottom:865.270350px;}
.y13c{bottom:866.280300px;}
.y117{bottom:875.392050px;}
.y3e{bottom:875.402100px;}
.y78{bottom:875.839800px;}
.ye5{bottom:877.104150px;}
.y13b{bottom:882.042150px;}
.ycd{bottom:889.524150px;}
.y116{bottom:891.549900px;}
.yac{bottom:891.774150px;}
.y3d{bottom:892.936950px;}
.y77{bottom:893.338200px;}
.ye4{bottom:894.497250px;}
.y13a{bottom:897.803850px;}
.y12{bottom:906.119550px;}
.y115{bottom:907.707900px;}
.y3c{bottom:910.471650px;}
.y76{bottom:910.836600px;}
.ye3{bottom:911.890200px;}
.y139{bottom:913.565550px;}
.yab{bottom:913.778100px;}
.y114{bottom:923.865750px;}
.y3b{bottom:928.006500px;}
.y75{bottom:928.334850px;}
.ye2{bottom:929.283150px;}
.y138{bottom:929.327250px;}
.yaa{bottom:938.032050px;}
.y113{bottom:940.023750px;}
.y11{bottom:940.319550px;}
.y137{bottom:945.089100px;}
.y3a{bottom:945.541350px;}
.ye1{bottom:946.676100px;}
.y112{bottom:956.181600px;}
.y136{bottom:960.850800px;}
.ya9{bottom:962.286000px;}
.y39{bottom:963.076200px;}
.y74{bottom:963.331500px;}
.ye0{bottom:964.069200px;}
.y111{bottom:972.339600px;}
.y135{bottom:976.612650px;}
.y38{bottom:980.611050px;}
.y73{bottom:980.829900px;}
.ydf{bottom:981.462150px;}
.ya8{bottom:986.539950px;}
.y110{bottom:988.497450px;}
.y2{bottom:990.338700px;}
.y134{bottom:992.374350px;}
.y37{bottom:998.145750px;}
.y72{bottom:998.328150px;}
.yde{bottom:998.855100px;}
.y10f{bottom:1004.655450px;}
.y133{bottom:1008.136200px;}
.ya7{bottom:1010.793900px;}
.y36{bottom:1015.680600px;}
.y71{bottom:1015.826550px;}
.ydd{bottom:1016.248050px;}
.y10e{bottom:1020.813300px;}
.y132{bottom:1023.897900px;}
.y35{bottom:1033.215450px;}
.y70{bottom:1033.324800px;}
.ydc{bottom:1033.641000px;}
.ya6{bottom:1035.047850px;}
.y10d{bottom:1036.971150px;}
.y131{bottom:1039.659600px;}
.y34{bottom:1050.750300px;}
.y6f{bottom:1050.823200px;}
.ydb{bottom:1051.033950px;}
.y130{bottom:1055.421450px;}
.ya5{bottom:1059.301800px;}
.y33{bottom:1068.285150px;}
.y6e{bottom:1068.321600px;}
.yda{bottom:1068.426900px;}
.y10c{bottom:1070.787000px;}
.y12f{bottom:1071.183150px;}
.y32{bottom:1085.819850px;}
.ya4{bottom:1086.944850px;}
.y6d{bottom:1118.403150px;}
.y1{bottom:1121.337000px;}
.hc{height:34.818000px;}
.hb{height:35.196000px;}
.h2{height:38.220000px;}
.h9{height:39.792000px;}
.h8{height:40.224000px;}
.h5{height:44.766000px;}
.h4{height:45.252000px;}
.h6{height:59.688000px;}
.h3{height:60.060000px;}
.ha{height:60.336000px;}
.h7{height:103.740000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.xb{left:27.717600px;}
.x7{left:63.779550px;}
.xf{left:89.291250px;}
.x2{left:123.307050px;}
.x8{left:342.230250px;}
.xe{left:343.599150px;}
.x9{left:347.586000px;}
.xa{left:467.716500px;}
.x10{left:493.228350px;}
.x1{left:560.169300px;}
.xd{left:563.297100px;}
.x5{left:642.380400px;}
.x4{left:669.754500px;}
.x6{left:741.930750px;}
.xc{left:859.294350px;}
.x3{left:873.640200px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:15.984000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.559680pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.279840pt;}
.ls9{letter-spacing:0.419760pt;}
.ls3{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.720000pt;}
.ls5{letter-spacing:0.960000pt;}
.ws1d{word-spacing:-10.656000pt;}
.wsb4{word-spacing:-10.176000pt;}
.ws1{word-spacing:-9.936000pt;}
.ws6d{word-spacing:-9.216000pt;}
.ws3{word-spacing:-8.832000pt;}
.wsdd{word-spacing:-8.405333pt;}
.ws4{word-spacing:-7.728000pt;}
.wsdc{word-spacing:-7.552000pt;}
.ws96{word-spacing:-6.352368pt;}
.ws1c{word-spacing:-6.212448pt;}
.ws97{word-spacing:-5.932608pt;}
.ws2{word-spacing:-5.372928pt;}
.ws0{word-spacing:-5.312000pt;}
.wsdb{word-spacing:-2.858667pt;}
.wsa9{word-spacing:-2.640000pt;}
.ws49{word-spacing:-2.448000pt;}
.ws18{word-spacing:-2.304000pt;}
.ws9f{word-spacing:-2.112000pt;}
.wsf7{word-spacing:-2.048000pt;}
.ws5a{word-spacing:-2.016000pt;}
.wsd5{word-spacing:-1.834667pt;}
.ws9{word-spacing:-1.776000pt;}
.wsb5{word-spacing:-1.728000pt;}
.wse9{word-spacing:-1.706667pt;}
.ws2a{word-spacing:-1.680000pt;}
.ws5b{word-spacing:-1.536000pt;}
.wsb2{word-spacing:-1.493333pt;}
.ws58{word-spacing:-1.488000pt;}
.wsb1{word-spacing:-1.450667pt;}
.ws29{word-spacing:-1.440000pt;}
.wsb{word-spacing:-1.392000pt;}
.wse{word-spacing:-1.344000pt;}
.wse3{word-spacing:-1.322667pt;}
.ws1f{word-spacing:-1.296000pt;}
.wsf3{word-spacing:-1.280000pt;}
.ws4c{word-spacing:-1.248000pt;}
.wsd7{word-spacing:-1.237333pt;}
.ws51{word-spacing:-1.200000pt;}
.wsd6{word-spacing:-1.194667pt;}
.ws8f{word-spacing:-1.152000pt;}
.wse5{word-spacing:-1.109333pt;}
.ws9d{word-spacing:-1.104000pt;}
.ws6e{word-spacing:-1.056000pt;}
.wse1{word-spacing:-1.024000pt;}
.ws81{word-spacing:-1.008000pt;}
.ws16{word-spacing:-0.981333pt;}
.ws6f{word-spacing:-0.912000pt;}
.ws83{word-spacing:-0.864000pt;}
.wse8{word-spacing:-0.853333pt;}
.wsc8{word-spacing:-0.816000pt;}
.ws21{word-spacing:-0.768000pt;}
.wse2{word-spacing:-0.725333pt;}
.ws4a{word-spacing:-0.720000pt;}
.ws8a{word-spacing:-0.672000pt;}
.wsae{word-spacing:-0.643632pt;}
.wsed{word-spacing:-0.640000pt;}
.wscc{word-spacing:-0.624000pt;}
.wsa{word-spacing:-0.576000pt;}
.ws41{word-spacing:-0.480000pt;}
.wse4{word-spacing:-0.469333pt;}
.ws8e{word-spacing:-0.432000pt;}
.wsf4{word-spacing:-0.426667pt;}
.ws37{word-spacing:-0.384000pt;}
.ws9e{word-spacing:-0.336000pt;}
.wsb6{word-spacing:-0.288000pt;}
.wsf5{word-spacing:-0.256000pt;}
.ws78{word-spacing:-0.240000pt;}
.wsaf{word-spacing:-0.223872pt;}
.ws59{word-spacing:-0.192000pt;}
.wsda{word-spacing:-0.170667pt;}
.ws7b{word-spacing:-0.144000pt;}
.ws73{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.wsbc{word-spacing:0.048000pt;}
.ws6{word-spacing:0.096000pt;}
.ws50{word-spacing:0.144000pt;}
.ws5f{word-spacing:0.192000pt;}
.ws2c{word-spacing:0.240000pt;}
.wse7{word-spacing:0.256000pt;}
.wsbb{word-spacing:0.288000pt;}
.ws17{word-spacing:0.298667pt;}
.ws27{word-spacing:0.336000pt;}
.wsad{word-spacing:0.384000pt;}
.ws12{word-spacing:0.426667pt;}
.ws8d{word-spacing:0.432000pt;}
.ws100{word-spacing:0.469333pt;}
.ws52{word-spacing:0.480000pt;}
.wsf8{word-spacing:0.512000pt;}
.wsaa{word-spacing:0.528000pt;}
.wse0{word-spacing:0.554667pt;}
.ws38{word-spacing:0.576000pt;}
.ws13{word-spacing:0.597333pt;}
.ws54{word-spacing:0.624000pt;}
.wsfc{word-spacing:0.640000pt;}
.ws53{word-spacing:0.672000pt;}
.ws2d{word-spacing:0.720000pt;}
.wsd{word-spacing:0.755568pt;}
.ws1b{word-spacing:0.768000pt;}
.wsb8{word-spacing:0.816000pt;}
.ws46{word-spacing:0.864000pt;}
.wseb{word-spacing:0.896000pt;}
.ws8{word-spacing:0.960000pt;}
.wsd8{word-spacing:0.981333pt;}
.ws45{word-spacing:1.008000pt;}
.wsd9{word-spacing:1.024000pt;}
.ws69{word-spacing:1.056000pt;}
.ws14{word-spacing:1.066667pt;}
.ws1a{word-spacing:1.152000pt;}
.ws94{word-spacing:1.194667pt;}
.ws75{word-spacing:1.200000pt;}
.wsfa{word-spacing:1.237333pt;}
.wsb7{word-spacing:1.248000pt;}
.ws3a{word-spacing:1.259280pt;}
.ws7{word-spacing:1.296000pt;}
.wse6{word-spacing:1.322667pt;}
.wsa3{word-spacing:1.344000pt;}
.wsb9{word-spacing:1.392000pt;}
.ws47{word-spacing:1.440000pt;}
.ws15{word-spacing:1.450667pt;}
.wsd1{word-spacing:1.488000pt;}
.wsa2{word-spacing:1.536000pt;}
.ws89{word-spacing:1.632000pt;}
.wsbe{word-spacing:1.728000pt;}
.ws36{word-spacing:1.776000pt;}
.wsa8{word-spacing:1.824000pt;}
.wsf{word-spacing:1.834667pt;}
.ws10{word-spacing:1.877333pt;}
.ws33{word-spacing:1.902912pt;}
.wsc7{word-spacing:1.920000pt;}
.ws71{word-spacing:1.968000pt;}
.wsca{word-spacing:2.016000pt;}
.wscb{word-spacing:2.064000pt;}
.ws57{word-spacing:2.112000pt;}
.ws39{word-spacing:2.160000pt;}
.wsfb{word-spacing:2.176000pt;}
.ws34{word-spacing:2.208000pt;}
.wsac{word-spacing:2.238720pt;}
.wsc{word-spacing:2.256000pt;}
.wsb0{word-spacing:2.304000pt;}
.wsbf{word-spacing:2.352000pt;}
.wsf6{word-spacing:2.389333pt;}
.ws31{word-spacing:2.400000pt;}
.ws80{word-spacing:2.448000pt;}
.ws7a{word-spacing:2.496000pt;}
.ws42{word-spacing:2.544000pt;}
.ws6a{word-spacing:2.592000pt;}
.ws68{word-spacing:2.640000pt;}
.wsa1{word-spacing:2.688000pt;}
.ws60{word-spacing:2.736000pt;}
.ws7d{word-spacing:2.784000pt;}
.wsb3{word-spacing:2.816000pt;}
.ws5d{word-spacing:2.832000pt;}
.ws9a{word-spacing:2.928000pt;}
.ws48{word-spacing:2.976000pt;}
.ws56{word-spacing:3.024000pt;}
.ws5c{word-spacing:3.072000pt;}
.wsc3{word-spacing:3.168000pt;}
.ws82{word-spacing:3.216000pt;}
.ws32{word-spacing:3.264000pt;}
.ws3f{word-spacing:3.312000pt;}
.ws9c{word-spacing:3.360000pt;}
.ws25{word-spacing:3.456000pt;}
.wsba{word-spacing:3.504000pt;}
.wsd4{word-spacing:3.541333pt;}
.ws11{word-spacing:3.584000pt;}
.wsd0{word-spacing:3.600000pt;}
.wsf9{word-spacing:3.626667pt;}
.ws7c{word-spacing:3.648000pt;}
.ws79{word-spacing:3.696000pt;}
.wsff{word-spacing:3.712000pt;}
.ws66{word-spacing:3.744000pt;}
.ws35{word-spacing:3.840000pt;}
.ws6b{word-spacing:3.936000pt;}
.wsd2{word-spacing:3.968000pt;}
.wsc2{word-spacing:3.984000pt;}
.ws3d{word-spacing:4.032000pt;}
.wsd3{word-spacing:4.053333pt;}
.ws43{word-spacing:4.128000pt;}
.ws55{word-spacing:4.224000pt;}
.wsf1{word-spacing:4.352000pt;}
.wsc4{word-spacing:4.416000pt;}
.wsc1{word-spacing:4.464000pt;}
.ws95{word-spacing:4.522667pt;}
.ws2e{word-spacing:4.560000pt;}
.ws72{word-spacing:4.608000pt;}
.wsfd{word-spacing:4.650667pt;}
.ws90{word-spacing:4.704000pt;}
.ws64{word-spacing:4.752000pt;}
.wscf{word-spacing:4.800000pt;}
.ws62{word-spacing:4.944000pt;}
.ws86{word-spacing:4.992000pt;}
.wsf2{word-spacing:5.034667pt;}
.ws5e{word-spacing:5.040000pt;}
.ws20{word-spacing:5.088000pt;}
.wsbd{word-spacing:5.136000pt;}
.ws4e{word-spacing:5.232000pt;}
.ws63{word-spacing:5.280000pt;}
.ws26{word-spacing:5.376000pt;}
.wsde{word-spacing:5.418667pt;}
.wsec{word-spacing:5.461333pt;}
.ws99{word-spacing:5.472000pt;}
.ws2f{word-spacing:5.520000pt;}
.wsdf{word-spacing:5.546667pt;}
.ws67{word-spacing:5.616000pt;}
.ws3b{word-spacing:5.664000pt;}
.ws98{word-spacing:5.712000pt;}
.ws88{word-spacing:5.760000pt;}
.ws102{word-spacing:5.845333pt;}
.wsc9{word-spacing:5.856000pt;}
.ws28{word-spacing:5.952000pt;}
.ws19{word-spacing:5.973333pt;}
.ws3c{word-spacing:6.000000pt;}
.wsc5{word-spacing:6.048000pt;}
.ws101{word-spacing:6.058667pt;}
.wsc0{word-spacing:6.096000pt;}
.wsab{word-spacing:6.144000pt;}
.ws7e{word-spacing:6.240000pt;}
.ws40{word-spacing:6.288000pt;}
.ws2b{word-spacing:6.336000pt;}
.ws8b{word-spacing:6.384000pt;}
.ws77{word-spacing:6.432000pt;}
.wsa0{word-spacing:6.528000pt;}
.ws9b{word-spacing:6.576000pt;}
.ws74{word-spacing:6.624000pt;}
.ws44{word-spacing:6.960000pt;}
.ws70{word-spacing:7.008000pt;}
.wsef{word-spacing:7.082667pt;}
.ws103{word-spacing:7.125333pt;}
.wscd{word-spacing:7.152000pt;}
.ws7f{word-spacing:7.200000pt;}
.ws6c{word-spacing:7.296000pt;}
.ws85{word-spacing:7.344000pt;}
.ws3e{word-spacing:7.584000pt;}
.ws4d{word-spacing:7.632000pt;}
.ws61{word-spacing:7.680000pt;}
.wsea{word-spacing:7.808000pt;}
.wsc6{word-spacing:8.064000pt;}
.ws87{word-spacing:8.208000pt;}
.wsce{word-spacing:8.256000pt;}
.ws4b{word-spacing:8.304000pt;}
.ws84{word-spacing:8.544000pt;}
.ws23{word-spacing:8.976000pt;}
.wsfe{word-spacing:9.130667pt;}
.ws65{word-spacing:9.312000pt;}
.ws24{word-spacing:9.408000pt;}
.ws76{word-spacing:9.600000pt;}
.ws8c{word-spacing:10.752000pt;}
.ws30{word-spacing:10.944000pt;}
.ws4f{word-spacing:11.184000pt;}
.wsf0{word-spacing:11.434667pt;}
.ws22{word-spacing:12.576000pt;}
.wsee{word-spacing:35.626667pt;}
.wsa7{word-spacing:106.624000pt;}
.wsa6{word-spacing:171.904000pt;}
.wsa5{word-spacing:182.869333pt;}
.wsa4{word-spacing:229.546667pt;}
.ws93{word-spacing:309.930667pt;}
.ws92{word-spacing:320.896000pt;}
.ws91{word-spacing:342.741333pt;}
._1c{margin-left:-229.546667pt;}
._19{margin-left:-39.338667pt;}
._1d{margin-left:-33.024000pt;}
._1e{margin-left:-21.904000pt;}
._1b{margin-left:-16.042667pt;}
._54{margin-left:-8.832000pt;}
._1a{margin-left:-7.674667pt;}
._63{margin-left:-6.779733pt;}
._9{margin-left:-5.845333pt;}
._a{margin-left:-4.656000pt;}
._2{margin-left:-3.456000pt;}
._3{margin-left:-2.352000pt;}
._1{margin-left:-1.392000pt;}
._0{width:0.955200pt;}
._4{width:2.640000pt;}
._5{width:3.875733pt;}
._5f{width:5.290667pt;}
._30{width:9.728000pt;}
._20{width:16.256000pt;}
._67{width:17.621333pt;}
._5a{width:20.650667pt;}
._65{width:23.594667pt;}
._68{width:24.704000pt;}
._2d{width:27.221333pt;}
._69{width:28.544000pt;}
._66{width:29.824000pt;}
._60{width:31.402667pt;}
._23{width:37.120000pt;}
._22{width:42.581333pt;}
._8{width:44.645333pt;}
._6{width:45.675733pt;}
._7{width:47.923200pt;}
._34{width:50.642133pt;}
._21{width:52.949333pt;}
._2e{width:54.229333pt;}
._64{width:55.808000pt;}
._57{width:59.520000pt;}
._58{width:64.256000pt;}
._31{width:65.152000pt;}
._5b{width:69.888000pt;}
._c{width:72.789333pt;}
._4c{width:74.933333pt;}
._53{width:96.298667pt;}
._45{width:102.229333pt;}
._32{width:107.136000pt;}
._40{width:113.152000pt;}
._37{width:123.434667pt;}
._47{width:124.800000pt;}
._2f{width:147.072000pt;}
._5e{width:150.912000pt;}
._24{width:162.816000pt;}
._2c{width:172.800000pt;}
._61{width:176.298667pt;}
._25{width:181.632000pt;}
._1f{width:182.826667pt;}
._59{width:187.264000pt;}
._5c{width:190.298667pt;}
._2b{width:192.554667pt;}
._55{width:194.634667pt;}
._5d{width:199.637333pt;}
._2a{width:202.010667pt;}
._3f{width:213.845333pt;}
._f{width:216.192000pt;}
._52{width:219.578667pt;}
._42{width:224.085333pt;}
._27{width:225.450667pt;}
._43{width:227.296000pt;}
._62{width:230.741333pt;}
._26{width:235.861333pt;}
._56{width:236.970667pt;}
._28{width:242.389333pt;}
._29{width:247.125333pt;}
._b{width:255.232000pt;}
._16{width:268.501333pt;}
._15{width:273.834667pt;}
._10{width:292.949333pt;}
._17{width:295.168000pt;}
._18{width:311.168000pt;}
._44{width:320.213333pt;}
._11{width:325.616000pt;}
._39{width:331.178667pt;}
._3e{width:336.512000pt;}
._e{width:342.784000pt;}
._3a{width:347.477333pt;}
._4a{width:353.066667pt;}
._36{width:357.760000pt;}
._12{width:364.117333pt;}
._48{width:394.394667pt;}
._13{width:417.962667pt;}
._3c{width:513.776000pt;}
._14{width:535.168000pt;}
._d{width:565.973333pt;}
._50{width:635.306667pt;}
._38{width:664.901333pt;}
._4e{width:674.698133pt;}
._46{width:712.218667pt;}
._35{width:728.533333pt;}
._4b{width:773.445333pt;}
._4d{width:932.992000pt;}
._41{width:943.045333pt;}
._49{width:972.245333pt;}
._3b{width:980.309333pt;}
._3d{width:986.436800pt;}
._4f{width:1070.165333pt;}
._33{width:1179.674667pt;}
._51{width:1258.922667pt;}
.fs1{font-size:21.333333pt;}
.fs4{font-size:27.984000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:21.362267pt;}
.y86{bottom:21.377600pt;}
.y6c{bottom:21.385867pt;}
.y10{bottom:21.560533pt;}
.y31{bottom:32.695600pt;}
.y29{bottom:34.585333pt;}
.y30{bottom:44.028933pt;}
.y28{bottom:49.698133pt;}
.y2f{bottom:76.042000pt;}
.y69{bottom:76.742133pt;}
.ya2{bottom:92.113867pt;}
.ycc{bottom:92.128000pt;}
.y68{bottom:92.328667pt;}
.y8d{bottom:98.301200pt;}
.yf{bottom:102.391067pt;}
.y10b{bottom:104.996267pt;}
.ya1{bottom:107.485467pt;}
.ycb{bottom:107.513867pt;}
.y67{bottom:107.915067pt;}
.ye{bottom:117.794533pt;}
.y10a{bottom:119.123333pt;}
.y8c{bottom:119.860267pt;}
.ya0{bottom:122.857067pt;}
.yca{bottom:122.899600pt;}
.y66{bottom:123.501600pt;}
.yd{bottom:133.198000pt;}
.y9f{bottom:138.228800pt;}
.yc9{bottom:138.285467pt;}
.y65{bottom:139.088133pt;}
.y8b{bottom:141.419333pt;}
.y109{bottom:147.377467pt;}
.yc{bottom:148.601467pt;}
.y9e{bottom:153.600400pt;}
.yc8{bottom:153.671200pt;}
.y64{bottom:154.674667pt;}
.y108{bottom:161.504667pt;}
.y8a{bottom:162.978400pt;}
.yb{bottom:164.004933pt;}
.y9d{bottom:168.972000pt;}
.yc7{bottom:169.057067pt;}
.y63{bottom:170.261200pt;}
.y107{bottom:175.631733pt;}
.ya{bottom:179.408400pt;}
.y9c{bottom:184.343600pt;}
.yc6{bottom:184.442933pt;}
.y89{bottom:184.537467pt;}
.y62{bottom:185.847733pt;}
.y106{bottom:189.758800pt;}
.y9{bottom:194.811867pt;}
.y9b{bottom:199.715200pt;}
.yc5{bottom:199.828667pt;}
.y6b{bottom:201.434267pt;}
.y88{bottom:206.096533pt;}
.y8{bottom:210.215467pt;}
.y9a{bottom:215.086933pt;}
.yc4{bottom:215.214533pt;}
.y61{bottom:217.020800pt;}
.y105{bottom:218.012933pt;}
.y7{bottom:225.618933pt;}
.y87{bottom:229.718533pt;}
.y99{bottom:230.458533pt;}
.yc3{bottom:230.600400pt;}
.y60{bottom:232.607200pt;}
.y6{bottom:241.022400pt;}
.y98{bottom:245.830133pt;}
.yc2{bottom:245.986133pt;}
.y104{bottom:246.267067pt;}
.y5f{bottom:248.193733pt;}
.y91{bottom:253.228400pt;}
.y5{bottom:256.425867pt;}
.y103{bottom:260.394267pt;}
.y97{bottom:261.201733pt;}
.yc1{bottom:261.371867pt;}
.y5e{bottom:263.780267pt;}
.y90{bottom:266.028400pt;}
.y4{bottom:271.829333pt;}
.y96{bottom:276.573467pt;}
.yc0{bottom:276.757733pt;}
.y8f{bottom:278.828400pt;}
.y5d{bottom:279.366800pt;}
.y3{bottom:287.232800pt;}
.y102{bottom:288.648400pt;}
.y8e{bottom:291.628400pt;}
.y95{bottom:291.945067pt;}
.y5c{bottom:294.953333pt;}
.yd9{bottom:300.875733pt;}
.y101{bottom:302.775467pt;}
.ya3{bottom:307.316667pt;}
.y5b{bottom:310.539733pt;}
.yd8{bottom:313.675867pt;}
.y100{bottom:316.902533pt;}
.y94{bottom:322.688267pt;}
.y5a{bottom:326.126267pt;}
.yd7{bottom:326.475733pt;}
.y20{bottom:329.618533pt;}
.y93{bottom:338.059867pt;}
.yd6{bottom:339.275733pt;}
.y59{bottom:341.712800pt;}
.yff{bottom:346.623333pt;}
.y1f{bottom:349.287867pt;}
.y92{bottom:353.431467pt;}
.y58{bottom:357.299333pt;}
.yfe{bottom:362.217067pt;}
.y1e{bottom:363.287867pt;}
.y57{bottom:372.885867pt;}
.ybf{bottom:377.549600pt;}
.yfd{bottom:377.677467pt;}
.y1d{bottom:382.957200pt;}
.y56{bottom:388.472267pt;}
.yfc{bottom:393.137867pt;}
.y1c{bottom:396.957200pt;}
.ybe{bottom:399.108667pt;}
.y55{bottom:404.058800pt;}
.yfb{bottom:408.598267pt;}
.y1b{bottom:410.957200pt;}
.y54{bottom:419.645333pt;}
.ybd{bottom:420.667733pt;}
.yfa{bottom:424.058667pt;}
.y1a{bottom:424.957200pt;}
.y53{bottom:435.231867pt;}
.y19{bottom:438.957200pt;}
.yf9{bottom:439.519067pt;}
.ybc{bottom:442.226800pt;}
.y153{bottom:447.786667pt;}
.y12e{bottom:447.786800pt;}
.y52{bottom:450.818400pt;}
.y18{bottom:452.957200pt;}
.yf8{bottom:454.979467pt;}
.y152{bottom:461.797200pt;}
.y12d{bottom:462.149467pt;}
.ybb{bottom:463.785867pt;}
.y51{bottom:466.404800pt;}
.y17{bottom:466.957200pt;}
.yf7{bottom:470.440000pt;}
.y151{bottom:475.807600pt;}
.y12c{bottom:476.512000pt;}
.y16{bottom:480.957200pt;}
.y50{bottom:481.991333pt;}
.yba{bottom:485.344933pt;}
.yf6{bottom:485.900400pt;}
.y150{bottom:489.818000pt;}
.y12b{bottom:490.874667pt;}
.y4f{bottom:497.577867pt;}
.y15{bottom:500.626400pt;}
.yf5{bottom:501.360800pt;}
.y14f{bottom:503.828533pt;}
.y12a{bottom:505.237200pt;}
.yb9{bottom:506.904000pt;}
.y4e{bottom:513.164400pt;}
.y14{bottom:514.626400pt;}
.y14e{bottom:517.838933pt;}
.y129{bottom:519.599867pt;}
.yb8{bottom:528.462933pt;}
.y4d{bottom:528.750933pt;}
.y14d{bottom:531.849333pt;}
.yf4{bottom:532.281600pt;}
.y128{bottom:533.962400pt;}
.y13{bottom:534.295733pt;}
.y4c{bottom:544.337467pt;}
.y14c{bottom:545.859867pt;}
.yf3{bottom:547.742000pt;}
.y127{bottom:548.324933pt;}
.yb7{bottom:550.022000pt;}
.y14b{bottom:559.870267pt;}
.y4b{bottom:559.924000pt;}
.y85{bottom:560.767067pt;}
.y126{bottom:562.687600pt;}
.yf2{bottom:563.202400pt;}
.yb6{bottom:571.581200pt;}
.y14a{bottom:573.880667pt;}
.y4a{bottom:575.510400pt;}
.y84{bottom:576.321200pt;}
.y125{bottom:577.050133pt;}
.yf1{bottom:578.662800pt;}
.y2e{bottom:585.133600pt;}
.y149{bottom:587.891200pt;}
.y49{bottom:591.096933pt;}
.y124{bottom:591.412667pt;}
.y83{bottom:591.875200pt;}
.yb5{bottom:593.140133pt;}
.yf0{bottom:594.123200pt;}
.y2d{bottom:599.133600pt;}
.y148{bottom:601.901600pt;}
.y123{bottom:605.775333pt;}
.y48{bottom:606.683467pt;}
.yef{bottom:609.583600pt;}
.yd5{bottom:611.021867pt;}
.yb4{bottom:614.699200pt;}
.y147{bottom:615.912000pt;}
.y122{bottom:620.137867pt;}
.y47{bottom:622.270000pt;}
.y82{bottom:622.983333pt;}
.yee{bottom:625.044133pt;}
.y146{bottom:629.922533pt;}
.yd4{bottom:632.580933pt;}
.y121{bottom:634.500533pt;}
.yb3{bottom:636.258267pt;}
.y6a{bottom:637.856533pt;}
.y2c{bottom:638.032933pt;}
.y81{bottom:638.537467pt;}
.yed{bottom:640.504533pt;}
.y145{bottom:643.932933pt;}
.y120{bottom:648.863067pt;}
.y2b{bottom:652.032933pt;}
.y46{bottom:653.442933pt;}
.y80{bottom:654.091600pt;}
.yd3{bottom:654.140000pt;}
.yec{bottom:655.964933pt;}
.yb2{bottom:657.817333pt;}
.y144{bottom:657.943333pt;}
.y11f{bottom:663.225733pt;}
.y45{bottom:669.029467pt;}
.y7f{bottom:669.645733pt;}
.yeb{bottom:671.425333pt;}
.y143{bottom:671.953867pt;}
.yd2{bottom:675.699067pt;}
.y11e{bottom:677.588267pt;}
.yb1{bottom:679.376400pt;}
.y27{bottom:681.751200pt;}
.y44{bottom:684.616000pt;}
.y7e{bottom:685.199733pt;}
.y142{bottom:685.964267pt;}
.yea{bottom:686.885733pt;}
.y11d{bottom:691.950800pt;}
.y26{bottom:694.551067pt;}
.yd1{bottom:697.258000pt;}
.y141{bottom:699.974667pt;}
.y43{bottom:700.202533pt;}
.y7d{bottom:700.753867pt;}
.yb0{bottom:700.935467pt;}
.ye9{bottom:702.346133pt;}
.y11c{bottom:706.313467pt;}
.y25{bottom:707.351200pt;}
.y140{bottom:713.985200pt;}
.y42{bottom:715.789067pt;}
.y7c{bottom:716.307867pt;}
.ye8{bottom:717.806533pt;}
.yd0{bottom:718.817200pt;}
.y24{bottom:720.151067pt;}
.y11b{bottom:720.676000pt;}
.yaf{bottom:722.494400pt;}
.y13f{bottom:727.995600pt;}
.y41{bottom:731.375467pt;}
.y7b{bottom:731.862000pt;}
.y23{bottom:732.951200pt;}
.ye7{bottom:733.267067pt;}
.y11a{bottom:735.038533pt;}
.y13e{bottom:742.006000pt;}
.ycf{bottom:743.388800pt;}
.yae{bottom:744.053600pt;}
.y22{bottom:745.751200pt;}
.y40{bottom:746.962133pt;}
.y7a{bottom:747.416000pt;}
.ye6{bottom:748.727333pt;}
.y119{bottom:749.401067pt;}
.y13d{bottom:756.016533pt;}
.y3f{bottom:762.548667pt;}
.y79{bottom:762.970133pt;}
.y118{bottom:763.763733pt;}
.y21{bottom:766.110267pt;}
.yad{bottom:768.625200pt;}
.yce{bottom:769.129200pt;}
.y13c{bottom:770.026933pt;}
.y117{bottom:778.126267pt;}
.y3e{bottom:778.135200pt;}
.y78{bottom:778.524267pt;}
.ye5{bottom:779.648133pt;}
.y13b{bottom:784.037467pt;}
.ycd{bottom:790.688133pt;}
.y116{bottom:792.488800pt;}
.yac{bottom:792.688133pt;}
.y3d{bottom:793.721733pt;}
.y77{bottom:794.078400pt;}
.ye4{bottom:795.108667pt;}
.y13a{bottom:798.047867pt;}
.y12{bottom:805.439600pt;}
.y115{bottom:806.851467pt;}
.y3c{bottom:809.308133pt;}
.y76{bottom:809.632533pt;}
.ye3{bottom:810.569067pt;}
.y139{bottom:812.058267pt;}
.yab{bottom:812.247200pt;}
.y114{bottom:821.214000pt;}
.y3b{bottom:824.894667pt;}
.y75{bottom:825.186533pt;}
.ye2{bottom:826.029467pt;}
.y138{bottom:826.068667pt;}
.yaa{bottom:833.806267pt;}
.y113{bottom:835.576667pt;}
.y11{bottom:835.839600pt;}
.y137{bottom:840.079200pt;}
.y3a{bottom:840.481200pt;}
.ye1{bottom:841.489867pt;}
.y112{bottom:849.939200pt;}
.y136{bottom:854.089600pt;}
.ya9{bottom:855.365333pt;}
.y39{bottom:856.067733pt;}
.y74{bottom:856.294667pt;}
.ye0{bottom:856.950400pt;}
.y111{bottom:864.301867pt;}
.y135{bottom:868.100133pt;}
.y38{bottom:871.654267pt;}
.y73{bottom:871.848800pt;}
.ydf{bottom:872.410800pt;}
.ya8{bottom:876.924400pt;}
.y110{bottom:878.664400pt;}
.y2{bottom:880.301067pt;}
.y134{bottom:882.110533pt;}
.y37{bottom:887.240667pt;}
.y72{bottom:887.402800pt;}
.yde{bottom:887.871200pt;}
.y10f{bottom:893.027067pt;}
.y133{bottom:896.121067pt;}
.ya7{bottom:898.483467pt;}
.y36{bottom:902.827200pt;}
.y71{bottom:902.956933pt;}
.ydd{bottom:903.331600pt;}
.y10e{bottom:907.389600pt;}
.y132{bottom:910.131467pt;}
.y35{bottom:918.413733pt;}
.y70{bottom:918.510933pt;}
.ydc{bottom:918.792000pt;}
.ya6{bottom:920.042533pt;}
.y10d{bottom:921.752133pt;}
.y131{bottom:924.141867pt;}
.y34{bottom:934.000267pt;}
.y6f{bottom:934.065067pt;}
.ydb{bottom:934.252400pt;}
.y130{bottom:938.152400pt;}
.ya5{bottom:941.601600pt;}
.y33{bottom:949.586800pt;}
.y6e{bottom:949.619200pt;}
.yda{bottom:949.712800pt;}
.y10c{bottom:951.810667pt;}
.y12f{bottom:952.162800pt;}
.y32{bottom:965.173200pt;}
.ya4{bottom:966.173200pt;}
.y6d{bottom:994.136133pt;}
.y1{bottom:996.744000pt;}
.hc{height:30.949333pt;}
.hb{height:31.285333pt;}
.h2{height:33.973333pt;}
.h9{height:35.370667pt;}
.h8{height:35.754667pt;}
.h5{height:39.792000pt;}
.h4{height:40.224000pt;}
.h6{height:53.056000pt;}
.h3{height:53.386667pt;}
.ha{height:53.632000pt;}
.h7{height:92.213333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.xb{left:24.637867pt;}
.x7{left:56.692933pt;}
.xf{left:79.370000pt;}
.x2{left:109.606267pt;}
.x8{left:304.204667pt;}
.xe{left:305.421467pt;}
.x9{left:308.965333pt;}
.xa{left:415.748000pt;}
.x10{left:438.425200pt;}
.x1{left:497.928267pt;}
.xd{left:500.708533pt;}
.x5{left:571.004800pt;}
.x4{left:595.337333pt;}
.x6{left:659.494000pt;}
.xc{left:763.817200pt;}
.x3{left:776.569067pt;}
}




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