
    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_be8a230570083001ef8daf5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096000;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_77176613b6b5e27c832ba606.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.077000;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_eb7607d56ac025ded4179e20.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_59a6796dc5075ce6eefce010.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab22fd693ea371f0b59c7dbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4434c23cf0e08cd3e2f6ebad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_211c8546ca2f0a354148f895.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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);}
.v1{vertical-align:-1.404000px;}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-3.780000px;}
.ls23{letter-spacing:-1.584000px;}
.ls24{letter-spacing:-1.200000px;}
.ls26{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.966000px;}
.lsd{letter-spacing:-0.864000px;}
.ls2d{letter-spacing:-0.714000px;}
.lsc{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.432000px;}
.ls2f{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.384000px;}
.ls16{letter-spacing:-0.336000px;}
.ls2c{letter-spacing:-0.294000px;}
.ls14{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.252000px;}
.lse{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.336000px;}
.ls2e{letter-spacing:0.546000px;}
.ls25{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.585600px;}
.ls21{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.684200px;}
.lsf{letter-spacing:1.722000px;}
.ls5{letter-spacing:2.003400px;}
.ls19{letter-spacing:2.268000px;}
.ls1{letter-spacing:2.448000px;}
.ls12{letter-spacing:3.192000px;}
.ls11{letter-spacing:3.234000px;}
.ls13{letter-spacing:3.238200px;}
.ls2b{letter-spacing:3.318000px;}
.ls2{letter-spacing:5.145600px;}
.ls20{letter-spacing:6.701400px;}
.ls2a{letter-spacing:6.972000px;}
.ls3{letter-spacing:8.064000px;}
.ls1b{letter-spacing:9.135000px;}
.ls8{letter-spacing:9.487800px;}
.ls7{letter-spacing:10.157400px;}
.ls27{letter-spacing:11.592000px;}
.ls1c{letter-spacing:12.936000px;}
.ls1f{letter-spacing:13.230000px;}
.ls28{letter-spacing:13.356000px;}
.ls29{letter-spacing:19.908000px;}
.ls6{letter-spacing:20.304000px;}
.ls17{letter-spacing:22.420800px;}
.ls1d{letter-spacing:25.920000px;}
.ls1e{letter-spacing:31.320000px;}
.ls18{letter-spacing:82.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;}
}
.ws4{word-spacing:-16.344000px;}
.ws6{word-spacing:-12.690000px;}
.ws44{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.258000px;}
.ws7{word-spacing:-12.150000px;}
.ws56{word-spacing:-11.856000px;}
.ws57{word-spacing:-11.718000px;}
.ws3{word-spacing:-11.616000px;}
.ws2{word-spacing:-11.280000px;}
.ws1{word-spacing:-10.896000px;}
.wsa7{word-spacing:-10.416000px;}
.ws58{word-spacing:-10.122000px;}
.ws47{word-spacing:-9.870000px;}
.ws55{word-spacing:-9.696000px;}
.wsa5{word-spacing:-9.576000px;}
.ws46{word-spacing:-9.534000px;}
.wsa6{word-spacing:-9.156000px;}
.ws45{word-spacing:-8.904000px;}
.ws35{word-spacing:-2.970000px;}
.wsa3{word-spacing:-2.948400px;}
.wsb2{word-spacing:-2.700000px;}
.ws25{word-spacing:-2.592000px;}
.wsa2{word-spacing:-2.457000px;}
.wse{word-spacing:-2.400000px;}
.wsbc{word-spacing:-2.106000px;}
.ws50{word-spacing:-2.052000px;}
.wsa1{word-spacing:-1.998000px;}
.wsf{word-spacing:-1.968000px;}
.wse6{word-spacing:-1.806000px;}
.wsa0{word-spacing:-1.782000px;}
.wsc3{word-spacing:-1.620000px;}
.ws4f{word-spacing:-1.512000px;}
.wsfd{word-spacing:-1.386000px;}
.wsfe{word-spacing:-1.260000px;}
.wsc8{word-spacing:-1.176000px;}
.ws72{word-spacing:-1.092000px;}
.ws12{word-spacing:-1.008000px;}
.ws8d{word-spacing:-0.972000px;}
.ws27{word-spacing:-0.918000px;}
.ws4e{word-spacing:-0.810000px;}
.wsfb{word-spacing:-0.798000px;}
.wsc9{word-spacing:-0.756000px;}
.wsc1{word-spacing:-0.648000px;}
.ws26{word-spacing:-0.594000px;}
.ws13{word-spacing:-0.576000px;}
.ws41{word-spacing:-0.540000px;}
.ws7d{word-spacing:-0.432000px;}
.ws93{word-spacing:-0.378000px;}
.ws51{word-spacing:-0.324000px;}
.wsf8{word-spacing:-0.294000px;}
.ws91{word-spacing:-0.270000px;}
.ws4d{word-spacing:-0.162000px;}
.wse5{word-spacing:-0.126000px;}
.ws102{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws8e{word-spacing:0.108000px;}
.ws29{word-spacing:0.162000px;}
.ws105{word-spacing:0.210000px;}
.ws82{word-spacing:0.252000px;}
.ws69{word-spacing:0.270000px;}
.wsee{word-spacing:0.294000px;}
.ws28{word-spacing:0.324000px;}
.wsec{word-spacing:0.336000px;}
.ws8b{word-spacing:0.378000px;}
.wsc{word-spacing:0.384000px;}
.ws43{word-spacing:0.432000px;}
.ws90{word-spacing:0.486000px;}
.ws68{word-spacing:0.540000px;}
.ws11{word-spacing:0.576000px;}
.wsbf{word-spacing:0.648000px;}
.wse7{word-spacing:0.714000px;}
.ws6b{word-spacing:0.798000px;}
.ws38{word-spacing:0.810000px;}
.ws21{word-spacing:0.918000px;}
.ws9{word-spacing:0.982800px;}
.ws8f{word-spacing:1.080000px;}
.ws85{word-spacing:1.176000px;}
.ws2a{word-spacing:1.188000px;}
.ws7c{word-spacing:1.350000px;}
.ws22{word-spacing:1.404000px;}
.ws2b{word-spacing:1.512000px;}
.ws76{word-spacing:1.554000px;}
.ws7b{word-spacing:1.566000px;}
.ws5e{word-spacing:1.584000px;}
.ws53{word-spacing:1.722000px;}
.ws96{word-spacing:1.890000px;}
.ws2c{word-spacing:1.944000px;}
.ws14{word-spacing:1.998000px;}
.wsc7{word-spacing:2.058000px;}
.ws66{word-spacing:2.268000px;}
.wscd{word-spacing:2.352000px;}
.ws9e{word-spacing:2.430000px;}
.wsb{word-spacing:2.448000px;}
.ws42{word-spacing:2.592000px;}
.ws80{word-spacing:2.970000px;}
.ws59{word-spacing:3.070200px;}
.ws52{word-spacing:3.078000px;}
.ws54{word-spacing:3.234000px;}
.ws31{word-spacing:3.294000px;}
.wse1{word-spacing:3.318000px;}
.wsb0{word-spacing:3.510000px;}
.ws36{word-spacing:3.780000px;}
.wsfc{word-spacing:3.990000px;}
.ws39{word-spacing:4.104000px;}
.ws3a{word-spacing:4.158000px;}
.wscf{word-spacing:4.200000px;}
.wsd2{word-spacing:4.242000px;}
.ws32{word-spacing:4.266000px;}
.ws81{word-spacing:4.536000px;}
.wsa{word-spacing:4.704000px;}
.ws88{word-spacing:4.746000px;}
.ws94{word-spacing:4.752000px;}
.ws9b{word-spacing:4.860000px;}
.ws89{word-spacing:4.968000px;}
.ws7a{word-spacing:5.022000px;}
.wsd{word-spacing:5.136000px;}
.ws74{word-spacing:5.334000px;}
.ws79{word-spacing:5.400000px;}
.ws67{word-spacing:5.562000px;}
.wsb5{word-spacing:5.670000px;}
.ws23{word-spacing:5.724000px;}
.wsb1{word-spacing:5.778000px;}
.wse2{word-spacing:5.880000px;}
.wse8{word-spacing:5.922000px;}
.wsd4{word-spacing:5.964000px;}
.ws9c{word-spacing:6.048000px;}
.ws61{word-spacing:6.240000px;}
.wsd5{word-spacing:6.300000px;}
.ws1a{word-spacing:6.318000px;}
.ws71{word-spacing:6.342000px;}
.wsce{word-spacing:6.468000px;}
.ws1b{word-spacing:6.534000px;}
.ws60{word-spacing:6.624000px;}
.wsaf{word-spacing:6.642000px;}
.ws17{word-spacing:6.750000px;}
.ws83{word-spacing:6.888000px;}
.wsc6{word-spacing:6.930000px;}
.wse0{word-spacing:6.972000px;}
.wsb6{word-spacing:7.344000px;}
.ws2d{word-spacing:7.398000px;}
.ws8a{word-spacing:7.722000px;}
.wse9{word-spacing:7.896000px;}
.ws30{word-spacing:7.938000px;}
.ws8{word-spacing:7.992000px;}
.ws10{word-spacing:8.064000px;}
.ws5d{word-spacing:8.160000px;}
.wsbe{word-spacing:8.694000px;}
.wsf9{word-spacing:8.736000px;}
.ws78{word-spacing:8.802000px;}
.wsf1{word-spacing:8.946000px;}
.ws95{word-spacing:8.964000px;}
.ws48{word-spacing:9.018000px;}
.wsd0{word-spacing:9.030000px;}
.ws73{word-spacing:9.114000px;}
.ws98{word-spacing:9.180000px;}
.wsc4{word-spacing:9.366000px;}
.ws24{word-spacing:9.450000px;}
.ws97{word-spacing:9.612000px;}
.wsb9{word-spacing:9.720000px;}
.wsf0{word-spacing:9.786000px;}
.ws99{word-spacing:9.828000px;}
.wsef{word-spacing:9.870000px;}
.ws16{word-spacing:9.882000px;}
.wsaa{word-spacing:9.996000px;}
.ws2e{word-spacing:10.044000px;}
.ws1e{word-spacing:10.152000px;}
.wsbd{word-spacing:10.206000px;}
.wsae{word-spacing:10.260000px;}
.wsdc{word-spacing:10.374000px;}
.wsa4{word-spacing:10.530000px;}
.ws1d{word-spacing:10.962000px;}
.ws3b{word-spacing:11.016000px;}
.ws4b{word-spacing:11.178000px;}
.wsea{word-spacing:11.214000px;}
.wsff{word-spacing:11.298000px;}
.wsd1{word-spacing:11.340000px;}
.ws100{word-spacing:11.550000px;}
.wsa9{word-spacing:11.592000px;}
.ws104{word-spacing:11.634000px;}
.ws7f{word-spacing:12.420000px;}
.ws103{word-spacing:12.684000px;}
.ws40{word-spacing:12.744000px;}
.wsf4{word-spacing:12.894000px;}
.ws75{word-spacing:12.936000px;}
.ws49{word-spacing:13.068000px;}
.wsf3{word-spacing:13.146000px;}
.wsc5{word-spacing:13.188000px;}
.ws87{word-spacing:13.230000px;}
.ws9d{word-spacing:13.284000px;}
.ws5b{word-spacing:13.344000px;}
.wsab{word-spacing:13.356000px;}
.ws2f{word-spacing:13.392000px;}
.ws33{word-spacing:13.500000px;}
.ws37{word-spacing:13.716000px;}
.ws84{word-spacing:13.734000px;}
.wsd7{word-spacing:13.818000px;}
.wsd8{word-spacing:14.070000px;}
.ws19{word-spacing:14.148000px;}
.ws101{word-spacing:14.280000px;}
.wsbb{word-spacing:14.634000px;}
.wsb8{word-spacing:14.688000px;}
.ws9f{word-spacing:14.796000px;}
.ws92{word-spacing:14.850000px;}
.ws70{word-spacing:14.952000px;}
.wsfa{word-spacing:15.036000px;}
.ws3c{word-spacing:15.174000px;}
.wsb3{word-spacing:15.390000px;}
.wsba{word-spacing:15.444000px;}
.ws6f{word-spacing:15.666000px;}
.ws3e{word-spacing:16.416000px;}
.ws86{word-spacing:16.422000px;}
.wsf5{word-spacing:16.464000px;}
.wsda{word-spacing:16.506000px;}
.ws3d{word-spacing:16.848000px;}
.wsdb{word-spacing:16.926000px;}
.ws6e{word-spacing:17.304000px;}
.wsac{word-spacing:17.766000px;}
.ws4a{word-spacing:17.928000px;}
.ws1f{word-spacing:18.090000px;}
.wscb{word-spacing:18.396000px;}
.wsa8{word-spacing:18.438000px;}
.ws20{word-spacing:18.792000px;}
.ws64{word-spacing:18.816000px;}
.ws63{word-spacing:19.236000px;}
.ws9a{word-spacing:19.494000px;}
.wsf2{word-spacing:19.656000px;}
.wsd3{word-spacing:19.866000px;}
.wsd9{word-spacing:19.908000px;}
.wsf6{word-spacing:20.034000px;}
.ws15{word-spacing:20.304000px;}
.ws34{word-spacing:20.682000px;}
.ws18{word-spacing:21.330000px;}
.wsdf{word-spacing:21.588000px;}
.wscc{word-spacing:21.630000px;}
.wsb4{word-spacing:21.978000px;}
.ws5a{word-spacing:22.224000px;}
.ws62{word-spacing:22.464000px;}
.wsc0{word-spacing:23.220000px;}
.wsca{word-spacing:23.394000px;}
.wseb{word-spacing:23.478000px;}
.wsb7{word-spacing:23.814000px;}
.wse4{word-spacing:23.856000px;}
.wse3{word-spacing:24.570000px;}
.ws3f{word-spacing:24.840000px;}
.ws5f{word-spacing:25.248000px;}
.ws77{word-spacing:25.920000px;}
.ws6c{word-spacing:25.956000px;}
.wsdd{word-spacing:26.502000px;}
.wsf7{word-spacing:27.048000px;}
.wsc2{word-spacing:27.432000px;}
.ws8c{word-spacing:27.864000px;}
.ws6d{word-spacing:28.350000px;}
.wsad{word-spacing:28.512000px;}
.ws7e{word-spacing:31.320000px;}
.ws6a{word-spacing:34.188000px;}
.wsed{word-spacing:35.070000px;}
.ws5c{word-spacing:35.184000px;}
.ws4c{word-spacing:35.802000px;}
.wsd6{word-spacing:36.708000px;}
.wsde{word-spacing:47.880000px;}
.ws1c{word-spacing:58.752000px;}
.ws65{word-spacing:82.080000px;}
._1c{margin-left:-24.791400px;}
._0{margin-left:-15.408000px;}
._1b{margin-left:-12.006000px;}
._2{margin-left:-10.512000px;}
._9{margin-left:-7.704000px;}
._1{margin-left:-5.760000px;}
._5{margin-left:-3.672000px;}
._b{margin-left:-2.492400px;}
._6{margin-left:-1.184400px;}
._4{width:1.296000px;}
._7{width:2.360400px;}
._3{width:3.441600px;}
._a{width:5.028000px;}
._e{width:6.145200px;}
._d{width:7.680000px;}
._c{width:8.832000px;}
._f{width:10.152000px;}
._1f{width:11.322600px;}
._1a{width:12.798600px;}
._18{width:14.366400px;}
._17{width:15.653400px;}
._16{width:17.824800px;}
._10{width:19.404000px;}
._1d{width:24.570000px;}
._14{width:26.726400px;}
._15{width:28.455000px;}
._19{width:30.618000px;}
._13{width:33.852000px;}
._1e{width:36.000000px;}
._11{width:79.488000px;}
._12{width:81.864000px;}
._8{width:488.160000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y56{bottom:82.055250px;}
.y57{bottom:96.633000px;}
.y10d{bottom:125.208300px;}
.y158{bottom:125.659050px;}
.y5{bottom:128.222700px;}
.ya8{bottom:129.641550px;}
.ye3{bottom:130.177500px;}
.y6e{bottom:131.924400px;}
.y157{bottom:138.364050px;}
.y55{bottom:138.960300px;}
.y3a{bottom:139.219950px;}
.y10c{bottom:140.206800px;}
.y6d{bottom:144.524400px;}
.ya7{bottom:145.841550px;}
.ye2{bottom:146.283000px;}
.y156{bottom:151.069050px;}
.y4{bottom:153.548700px;}
.y54{bottom:155.160300px;}
.y10b{bottom:155.205300px;}
.y39{bottom:155.419950px;}
.y6c{bottom:157.124400px;}
.ya6{bottom:162.041550px;}
.ye1{bottom:162.388500px;}
.y155{bottom:163.774050px;}
.y6b{bottom:169.724400px;}
.y53{bottom:171.360300px;}
.y38{bottom:171.619950px;}
.y154{bottom:176.479050px;}
.ya5{bottom:178.241550px;}
.ye0{bottom:178.494000px;}
.y6a{bottom:182.324400px;}
.y10a{bottom:186.405300px;}
.y52{bottom:187.560300px;}
.y37{bottom:187.671450px;}
.y153{bottom:189.184050px;}
.ya4{bottom:194.441550px;}
.ydf{bottom:194.622000px;}
.y69{bottom:194.924400px;}
.y152{bottom:201.889050px;}
.y36{bottom:203.722950px;}
.y51{bottom:203.760300px;}
.ya3{bottom:210.641550px;}
.yde{bottom:210.727500px;}
.y151{bottom:214.594050px;}
.y35{bottom:219.774450px;}
.y50{bottom:219.960300px;}
.y109{bottom:224.127300px;}
.ydd{bottom:226.833000px;}
.ya2{bottom:226.841550px;}
.y150{bottom:227.299050px;}
.y34{bottom:235.825950px;}
.y4f{bottom:236.160300px;}
.ya1{bottom:239.441550px;}
.y14f{bottom:240.004050px;}
.y108{bottom:240.030300px;}
.ydc{bottom:242.938500px;}
.y33{bottom:251.877450px;}
.ya0{bottom:252.041550px;}
.y4e{bottom:252.360300px;}
.y14e{bottom:252.709050px;}
.y107{bottom:255.933300px;}
.ydb{bottom:259.044000px;}
.y9f{bottom:264.641550px;}
.y14d{bottom:265.414050px;}
.y32{bottom:267.928950px;}
.y4d{bottom:268.560300px;}
.y106{bottom:271.836300px;}
.yda{bottom:275.176500px;}
.y9e{bottom:277.241550px;}
.y14c{bottom:278.119050px;}
.y31{bottom:283.980450px;}
.y4c{bottom:284.760300px;}
.y105{bottom:287.739300px;}
.y9d{bottom:289.841550px;}
.y14b{bottom:290.824050px;}
.yd9{bottom:291.282000px;}
.y30{bottom:300.031950px;}
.y4b{bottom:300.960300px;}
.y9c{bottom:302.441550px;}
.y14a{bottom:303.529050px;}
.y104{bottom:303.642300px;}
.yd8{bottom:307.387500px;}
.y9b{bottom:315.041550px;}
.y2f{bottom:316.083450px;}
.y149{bottom:316.234050px;}
.y4a{bottom:317.160300px;}
.y103{bottom:319.545300px;}
.yd7{bottom:323.493000px;}
.y9a{bottom:327.641550px;}
.y148{bottom:328.939050px;}
.y2e{bottom:332.134950px;}
.y49{bottom:333.322950px;}
.y102{bottom:335.448300px;}
.yd6{bottom:339.598500px;}
.y99{bottom:340.241550px;}
.y147{bottom:341.644050px;}
.y2d{bottom:348.186450px;}
.y48{bottom:349.522950px;}
.y101{bottom:351.351300px;}
.y98{bottom:352.841550px;}
.y146{bottom:354.349050px;}
.yd5{bottom:355.704000px;}
.y2c{bottom:364.237950px;}
.y97{bottom:365.441550px;}
.y47{bottom:365.722950px;}
.y145{bottom:367.054050px;}
.y100{bottom:367.254300px;}
.yd4{bottom:371.823900px;}
.y96{bottom:378.041550px;}
.y144{bottom:379.759050px;}
.y2b{bottom:380.289450px;}
.y46{bottom:381.922950px;}
.yff{bottom:383.157300px;}
.y95{bottom:390.641550px;}
.y143{bottom:392.464050px;}
.y2a{bottom:396.340950px;}
.y45{bottom:398.122950px;}
.yfe{bottom:399.060300px;}
.y94{bottom:403.241550px;}
.yd3{bottom:404.048400px;}
.y142{bottom:405.169050px;}
.y29{bottom:412.392450px;}
.y44{bottom:414.322950px;}
.yfd{bottom:414.963300px;}
.y93{bottom:415.841550px;}
.y2{bottom:416.116950px;}
.y141{bottom:417.874050px;}
.yd2{bottom:420.153900px;}
.y28{bottom:428.443950px;}
.y43{bottom:430.522950px;}
.y140{bottom:430.579050px;}
.yfc{bottom:430.866300px;}
.yd1{bottom:436.259400px;}
.y13f{bottom:443.284050px;}
.y27{bottom:444.495450px;}
.y42{bottom:446.722950px;}
.yfb{bottom:446.769300px;}
.y92{bottom:446.771550px;}
.y13e{bottom:455.989050px;}
.y26{bottom:460.546950px;}
.yfa{bottom:462.523800px;}
.y41{bottom:462.922950px;}
.y91{bottom:463.268550px;}
.y1{bottom:466.768950px;}
.yd0{bottom:468.483900px;}
.y13d{bottom:468.694050px;}
.y25{bottom:476.598450px;}
.yf9{bottom:478.278300px;}
.y40{bottom:479.122950px;}
.y13c{bottom:481.399050px;}
.ycf{bottom:484.589400px;}
.y24{bottom:492.649950px;}
.y13b{bottom:494.104050px;}
.yf8{bottom:494.181300px;}
.y3f{bottom:495.322950px;}
.y90{bottom:496.262550px;}
.yce{bottom:500.694900px;}
.y13a{bottom:506.809050px;}
.y23{bottom:508.701450px;}
.yf7{bottom:510.084300px;}
.y3e{bottom:511.522950px;}
.y8f{bottom:512.759550px;}
.ycd{bottom:516.800400px;}
.y139{bottom:519.514050px;}
.y22{bottom:524.752950px;}
.yf6{bottom:525.987300px;}
.y3d{bottom:527.722950px;}
.y8e{bottom:529.256550px;}
.y138{bottom:532.219050px;}
.ycc{bottom:532.905900px;}
.yf5{bottom:541.890300px;}
.y3c{bottom:543.922950px;}
.y137{bottom:544.924050px;}
.y8d{bottom:545.753550px;}
.ycb{bottom:549.011400px;}
.y21{bottom:556.852950px;}
.y136{bottom:557.629050px;}
.yf4{bottom:557.793300px;}
.y3b{bottom:560.122950px;}
.y8c{bottom:562.250550px;}
.yca{bottom:565.116900px;}
.y135{bottom:570.334050px;}
.yf3{bottom:573.696300px;}
.y8b{bottom:578.747550px;}
.y134{bottom:583.039050px;}
.yc9{bottom:585.474900px;}
.yf2{bottom:589.599300px;}
.y8a{bottom:595.244550px;}
.y133{bottom:595.744050px;}
.yc8{bottom:601.526400px;}
.yf1{bottom:605.502300px;}
.y20{bottom:606.529050px;}
.y132{bottom:608.449050px;}
.y89{bottom:611.741550px;}
.yc7{bottom:617.577900px;}
.y131{bottom:621.154050px;}
.yf0{bottom:621.405300px;}
.y88{bottom:628.241550px;}
.yc6{bottom:633.629400px;}
.y130{bottom:633.859050px;}
.y1f{bottom:635.329050px;}
.y87{bottom:640.841550px;}
.y12f{bottom:646.564050px;}
.yc5{bottom:649.680900px;}
.y1e{bottom:649.729050px;}
.y3{bottom:649.840500px;}
.y86{bottom:653.441550px;}
.yef{bottom:653.505300px;}
.y12e{bottom:659.269050px;}
.y1d{bottom:664.129050px;}
.yc4{bottom:665.732400px;}
.y85{bottom:666.041550px;}
.y12d{bottom:671.974050px;}
.y1c{bottom:678.529050px;}
.y84{bottom:680.441550px;}
.yc3{bottom:681.783900px;}
.y12c{bottom:684.679050px;}
.yee{bottom:690.993300px;}
.y1b{bottom:692.929050px;}
.y83{bottom:694.841550px;}
.y12b{bottom:697.384050px;}
.yc2{bottom:697.835400px;}
.yed{bottom:706.896300px;}
.y82{bottom:709.241550px;}
.y12a{bottom:710.089050px;}
.yc1{bottom:713.886900px;}
.y129{bottom:722.794050px;}
.yec{bottom:722.799300px;}
.y1a{bottom:723.529050px;}
.y81{bottom:723.641550px;}
.yc0{bottom:729.938400px;}
.y128{bottom:735.499050px;}
.y80{bottom:738.041550px;}
.yeb{bottom:738.702300px;}
.ybf{bottom:745.989900px;}
.y127{bottom:748.204050px;}
.y19{bottom:752.329200px;}
.y7f{bottom:752.441550px;}
.yea{bottom:754.605300px;}
.y126{bottom:760.909050px;}
.ybe{bottom:762.041400px;}
.y7e{bottom:766.841550px;}
.y125{bottom:773.614050px;}
.ybd{bottom:778.088550px;}
.y18{bottom:784.729200px;}
.y124{bottom:786.319050px;}
.ybc{bottom:794.140050px;}
.y7d{bottom:797.441550px;}
.y123{bottom:799.024050px;}
.ye9{bottom:799.050750px;}
.y17{bottom:800.929200px;}
.ybb{bottom:810.191550px;}
.ye8{bottom:811.052250px;}
.y122{bottom:811.729050px;}
.y7c{bottom:813.641550px;}
.ye7{bottom:823.053750px;}
.y121{bottom:824.434050px;}
.yba{bottom:826.241400px;}
.y16{bottom:833.329050px;}
.ye6{bottom:835.055250px;}
.y120{bottom:837.139050px;}
.yb9{bottom:838.841400px;}
.y7b{bottom:846.041550px;}
.ye5{bottom:847.056750px;}
.y11f{bottom:849.844050px;}
.yb8{bottom:851.441400px;}
.ye4{bottom:859.058250px;}
.y7a{bottom:860.441550px;}
.y15{bottom:862.129050px;}
.y11e{bottom:862.549050px;}
.yb7{bottom:864.041400px;}
.y79{bottom:874.841550px;}
.y11d{bottom:875.254050px;}
.y14{bottom:876.529050px;}
.yb6{bottom:876.641400px;}
.y11c{bottom:887.959050px;}
.yb5{bottom:889.241400px;}
.y78{bottom:889.241550px;}
.y13{bottom:890.929050px;}
.y11b{bottom:900.664050px;}
.yb4{bottom:901.841400px;}
.y77{bottom:903.641550px;}
.y12{bottom:905.329050px;}
.y11a{bottom:913.369050px;}
.yb3{bottom:914.441400px;}
.y76{bottom:918.041550px;}
.y11{bottom:919.729050px;}
.y119{bottom:926.074050px;}
.yb2{bottom:927.041400px;}
.y75{bottom:932.441400px;}
.y118{bottom:938.779050px;}
.yb1{bottom:939.641550px;}
.y163{bottom:946.407600px;}
.y74{bottom:946.841400px;}
.y10{bottom:950.329200px;}
.y117{bottom:951.484050px;}
.y162{bottom:958.407600px;}
.y73{bottom:961.241400px;}
.yf{bottom:962.929200px;}
.y116{bottom:964.189050px;}
.y5f{bottom:966.934050px;}
.y68{bottom:970.241550px;}
.yb0{bottom:970.246050px;}
.y161{bottom:970.407600px;}
.y72{bottom:975.641550px;}
.y115{bottom:976.894050px;}
.y5e{bottom:983.134050px;}
.y67{bottom:986.441550px;}
.yaf{bottom:986.446050px;}
.y114{bottom:989.599050px;}
.y71{bottom:990.041550px;}
.ye{bottom:997.129050px;}
.y5d{bottom:999.334050px;}
.y113{bottom:1002.304050px;}
.y66{bottom:1002.641550px;}
.y70{bottom:1004.441550px;}
.y160{bottom:1013.846400px;}
.y112{bottom:1015.009050px;}
.y5c{bottom:1015.534050px;}
.y9{bottom:1015.577700px;}
.y65{bottom:1018.841550px;}
.yae{bottom:1018.846050px;}
.y15f{bottom:1026.446400px;}
.y111{bottom:1027.714050px;}
.y5b{bottom:1031.734050px;}
.y64{bottom:1035.041550px;}
.yad{bottom:1035.046050px;}
.y8{bottom:1036.577700px;}
.y15e{bottom:1039.046400px;}
.y110{bottom:1040.419050px;}
.yd{bottom:1043.929050px;}
.y5a{bottom:1047.934050px;}
.y63{bottom:1051.241550px;}
.yac{bottom:1051.246050px;}
.y15d{bottom:1051.646400px;}
.y10f{bottom:1053.124050px;}
.y59{bottom:1064.134050px;}
.y15c{bottom:1064.246400px;}
.y10e{bottom:1065.829050px;}
.y62{bottom:1067.441550px;}
.yab{bottom:1067.446050px;}
.yc{bottom:1069.129050px;}
.y7{bottom:1073.327700px;}
.y15b{bottom:1076.846400px;}
.y61{bottom:1083.641550px;}
.yaa{bottom:1083.646050px;}
.y15a{bottom:1089.446400px;}
.y6{bottom:1094.327700px;}
.yb{bottom:1094.329050px;}
.y58{bottom:1096.534050px;}
.y60{bottom:1099.841550px;}
.ya9{bottom:1099.846050px;}
.y159{bottom:1102.046400px;}
.ya{bottom:1150.865100px;}
.y6f{bottom:1151.967600px;}
.h8{height:35.742000px;}
.h9{height:40.848000px;}
.hc{height:40.848600px;}
.ha{height:45.630000px;}
.h5{height:45.954000px;}
.hb{height:46.103400px;}
.h7{height:60.840000px;}
.h4{height:70.980000px;}
.h6{height:71.484000px;}
.h3{height:91.260000px;}
.h2{height:122.544000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.299150px;}
.x2{left:122.286450px;}
.xe{left:133.074150px;}
.xa{left:134.888250px;}
.x1{left:136.063050px;}
.x14{left:144.321000px;}
.x13{left:151.827000px;}
.x18{left:153.196950px;}
.x15{left:158.253000px;}
.x17{left:164.760000px;}
.x16{left:174.453000px;}
.xb{left:182.096250px;}
.xf{left:196.071600px;}
.x1a{left:217.692150px;}
.x19{left:230.983950px;}
.x5{left:269.483550px;}
.x7{left:272.423550px;}
.x1f{left:277.363200px;}
.x8{left:322.823550px;}
.x6{left:330.215550px;}
.xc{left:365.699250px;}
.xd{left:380.596350px;}
.x3{left:383.030550px;}
.x10{left:396.533100px;}
.x4{left:438.617550px;}
.x11{left:457.087650px;}
.x12{left:483.858150px;}
.x1d{left:489.324450px;}
.x1b{left:502.852650px;}
.x22{left:515.479200px;}
.x1e{left:569.865450px;}
.x1c{left:575.010150px;}
.x20{left:614.575200px;}
.x21{left:630.151200px;}
@media print{
.v1{vertical-align:-1.248000pt;}
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-3.360000pt;}
.ls23{letter-spacing:-1.408000pt;}
.ls24{letter-spacing:-1.066667pt;}
.ls26{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.858667pt;}
.lsd{letter-spacing:-0.768000pt;}
.ls2d{letter-spacing:-0.634667pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls2f{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.341333pt;}
.ls16{letter-spacing:-0.298667pt;}
.ls2c{letter-spacing:-0.261333pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.224000pt;}
.lse{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.298667pt;}
.ls2e{letter-spacing:0.485333pt;}
.ls25{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.520533pt;}
.ls21{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.497067pt;}
.lsf{letter-spacing:1.530667pt;}
.ls5{letter-spacing:1.780800pt;}
.ls19{letter-spacing:2.016000pt;}
.ls1{letter-spacing:2.176000pt;}
.ls12{letter-spacing:2.837333pt;}
.ls11{letter-spacing:2.874667pt;}
.ls13{letter-spacing:2.878400pt;}
.ls2b{letter-spacing:2.949333pt;}
.ls2{letter-spacing:4.573867pt;}
.ls20{letter-spacing:5.956800pt;}
.ls2a{letter-spacing:6.197333pt;}
.ls3{letter-spacing:7.168000pt;}
.ls1b{letter-spacing:8.120000pt;}
.ls8{letter-spacing:8.433600pt;}
.ls7{letter-spacing:9.028800pt;}
.ls27{letter-spacing:10.304000pt;}
.ls1c{letter-spacing:11.498667pt;}
.ls1f{letter-spacing:11.760000pt;}
.ls28{letter-spacing:11.872000pt;}
.ls29{letter-spacing:17.696000pt;}
.ls6{letter-spacing:18.048000pt;}
.ls17{letter-spacing:19.929600pt;}
.ls1d{letter-spacing:23.040000pt;}
.ls1e{letter-spacing:27.840000pt;}
.ls18{letter-spacing:72.960000pt;}
.ws4{word-spacing:-14.528000pt;}
.ws6{word-spacing:-11.280000pt;}
.ws44{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.896000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws56{word-spacing:-10.538667pt;}
.ws57{word-spacing:-10.416000pt;}
.ws3{word-spacing:-10.325333pt;}
.ws2{word-spacing:-10.026667pt;}
.ws1{word-spacing:-9.685333pt;}
.wsa7{word-spacing:-9.258667pt;}
.ws58{word-spacing:-8.997333pt;}
.ws47{word-spacing:-8.773333pt;}
.ws55{word-spacing:-8.618667pt;}
.wsa5{word-spacing:-8.512000pt;}
.ws46{word-spacing:-8.474667pt;}
.wsa6{word-spacing:-8.138667pt;}
.ws45{word-spacing:-7.914667pt;}
.ws35{word-spacing:-2.640000pt;}
.wsa3{word-spacing:-2.620800pt;}
.wsb2{word-spacing:-2.400000pt;}
.ws25{word-spacing:-2.304000pt;}
.wsa2{word-spacing:-2.184000pt;}
.wse{word-spacing:-2.133333pt;}
.wsbc{word-spacing:-1.872000pt;}
.ws50{word-spacing:-1.824000pt;}
.wsa1{word-spacing:-1.776000pt;}
.wsf{word-spacing:-1.749333pt;}
.wse6{word-spacing:-1.605333pt;}
.wsa0{word-spacing:-1.584000pt;}
.wsc3{word-spacing:-1.440000pt;}
.ws4f{word-spacing:-1.344000pt;}
.wsfd{word-spacing:-1.232000pt;}
.wsfe{word-spacing:-1.120000pt;}
.wsc8{word-spacing:-1.045333pt;}
.ws72{word-spacing:-0.970667pt;}
.ws12{word-spacing:-0.896000pt;}
.ws8d{word-spacing:-0.864000pt;}
.ws27{word-spacing:-0.816000pt;}
.ws4e{word-spacing:-0.720000pt;}
.wsfb{word-spacing:-0.709333pt;}
.wsc9{word-spacing:-0.672000pt;}
.wsc1{word-spacing:-0.576000pt;}
.ws26{word-spacing:-0.528000pt;}
.ws13{word-spacing:-0.512000pt;}
.ws41{word-spacing:-0.480000pt;}
.ws7d{word-spacing:-0.384000pt;}
.ws93{word-spacing:-0.336000pt;}
.ws51{word-spacing:-0.288000pt;}
.wsf8{word-spacing:-0.261333pt;}
.ws91{word-spacing:-0.240000pt;}
.ws4d{word-spacing:-0.144000pt;}
.wse5{word-spacing:-0.112000pt;}
.ws102{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.096000pt;}
.ws29{word-spacing:0.144000pt;}
.ws105{word-spacing:0.186667pt;}
.ws82{word-spacing:0.224000pt;}
.ws69{word-spacing:0.240000pt;}
.wsee{word-spacing:0.261333pt;}
.ws28{word-spacing:0.288000pt;}
.wsec{word-spacing:0.298667pt;}
.ws8b{word-spacing:0.336000pt;}
.wsc{word-spacing:0.341333pt;}
.ws43{word-spacing:0.384000pt;}
.ws90{word-spacing:0.432000pt;}
.ws68{word-spacing:0.480000pt;}
.ws11{word-spacing:0.512000pt;}
.wsbf{word-spacing:0.576000pt;}
.wse7{word-spacing:0.634667pt;}
.ws6b{word-spacing:0.709333pt;}
.ws38{word-spacing:0.720000pt;}
.ws21{word-spacing:0.816000pt;}
.ws9{word-spacing:0.873600pt;}
.ws8f{word-spacing:0.960000pt;}
.ws85{word-spacing:1.045333pt;}
.ws2a{word-spacing:1.056000pt;}
.ws7c{word-spacing:1.200000pt;}
.ws22{word-spacing:1.248000pt;}
.ws2b{word-spacing:1.344000pt;}
.ws76{word-spacing:1.381333pt;}
.ws7b{word-spacing:1.392000pt;}
.ws5e{word-spacing:1.408000pt;}
.ws53{word-spacing:1.530667pt;}
.ws96{word-spacing:1.680000pt;}
.ws2c{word-spacing:1.728000pt;}
.ws14{word-spacing:1.776000pt;}
.wsc7{word-spacing:1.829333pt;}
.ws66{word-spacing:2.016000pt;}
.wscd{word-spacing:2.090667pt;}
.ws9e{word-spacing:2.160000pt;}
.wsb{word-spacing:2.176000pt;}
.ws42{word-spacing:2.304000pt;}
.ws80{word-spacing:2.640000pt;}
.ws59{word-spacing:2.729067pt;}
.ws52{word-spacing:2.736000pt;}
.ws54{word-spacing:2.874667pt;}
.ws31{word-spacing:2.928000pt;}
.wse1{word-spacing:2.949333pt;}
.wsb0{word-spacing:3.120000pt;}
.ws36{word-spacing:3.360000pt;}
.wsfc{word-spacing:3.546667pt;}
.ws39{word-spacing:3.648000pt;}
.ws3a{word-spacing:3.696000pt;}
.wscf{word-spacing:3.733333pt;}
.wsd2{word-spacing:3.770667pt;}
.ws32{word-spacing:3.792000pt;}
.ws81{word-spacing:4.032000pt;}
.wsa{word-spacing:4.181333pt;}
.ws88{word-spacing:4.218667pt;}
.ws94{word-spacing:4.224000pt;}
.ws9b{word-spacing:4.320000pt;}
.ws89{word-spacing:4.416000pt;}
.ws7a{word-spacing:4.464000pt;}
.wsd{word-spacing:4.565333pt;}
.ws74{word-spacing:4.741333pt;}
.ws79{word-spacing:4.800000pt;}
.ws67{word-spacing:4.944000pt;}
.wsb5{word-spacing:5.040000pt;}
.ws23{word-spacing:5.088000pt;}
.wsb1{word-spacing:5.136000pt;}
.wse2{word-spacing:5.226667pt;}
.wse8{word-spacing:5.264000pt;}
.wsd4{word-spacing:5.301333pt;}
.ws9c{word-spacing:5.376000pt;}
.ws61{word-spacing:5.546667pt;}
.wsd5{word-spacing:5.600000pt;}
.ws1a{word-spacing:5.616000pt;}
.ws71{word-spacing:5.637333pt;}
.wsce{word-spacing:5.749333pt;}
.ws1b{word-spacing:5.808000pt;}
.ws60{word-spacing:5.888000pt;}
.wsaf{word-spacing:5.904000pt;}
.ws17{word-spacing:6.000000pt;}
.ws83{word-spacing:6.122667pt;}
.wsc6{word-spacing:6.160000pt;}
.wse0{word-spacing:6.197333pt;}
.wsb6{word-spacing:6.528000pt;}
.ws2d{word-spacing:6.576000pt;}
.ws8a{word-spacing:6.864000pt;}
.wse9{word-spacing:7.018667pt;}
.ws30{word-spacing:7.056000pt;}
.ws8{word-spacing:7.104000pt;}
.ws10{word-spacing:7.168000pt;}
.ws5d{word-spacing:7.253333pt;}
.wsbe{word-spacing:7.728000pt;}
.wsf9{word-spacing:7.765333pt;}
.ws78{word-spacing:7.824000pt;}
.wsf1{word-spacing:7.952000pt;}
.ws95{word-spacing:7.968000pt;}
.ws48{word-spacing:8.016000pt;}
.wsd0{word-spacing:8.026667pt;}
.ws73{word-spacing:8.101333pt;}
.ws98{word-spacing:8.160000pt;}
.wsc4{word-spacing:8.325333pt;}
.ws24{word-spacing:8.400000pt;}
.ws97{word-spacing:8.544000pt;}
.wsb9{word-spacing:8.640000pt;}
.wsf0{word-spacing:8.698667pt;}
.ws99{word-spacing:8.736000pt;}
.wsef{word-spacing:8.773333pt;}
.ws16{word-spacing:8.784000pt;}
.wsaa{word-spacing:8.885333pt;}
.ws2e{word-spacing:8.928000pt;}
.ws1e{word-spacing:9.024000pt;}
.wsbd{word-spacing:9.072000pt;}
.wsae{word-spacing:9.120000pt;}
.wsdc{word-spacing:9.221333pt;}
.wsa4{word-spacing:9.360000pt;}
.ws1d{word-spacing:9.744000pt;}
.ws3b{word-spacing:9.792000pt;}
.ws4b{word-spacing:9.936000pt;}
.wsea{word-spacing:9.968000pt;}
.wsff{word-spacing:10.042667pt;}
.wsd1{word-spacing:10.080000pt;}
.ws100{word-spacing:10.266667pt;}
.wsa9{word-spacing:10.304000pt;}
.ws104{word-spacing:10.341333pt;}
.ws7f{word-spacing:11.040000pt;}
.ws103{word-spacing:11.274667pt;}
.ws40{word-spacing:11.328000pt;}
.wsf4{word-spacing:11.461333pt;}
.ws75{word-spacing:11.498667pt;}
.ws49{word-spacing:11.616000pt;}
.wsf3{word-spacing:11.685333pt;}
.wsc5{word-spacing:11.722667pt;}
.ws87{word-spacing:11.760000pt;}
.ws9d{word-spacing:11.808000pt;}
.ws5b{word-spacing:11.861333pt;}
.wsab{word-spacing:11.872000pt;}
.ws2f{word-spacing:11.904000pt;}
.ws33{word-spacing:12.000000pt;}
.ws37{word-spacing:12.192000pt;}
.ws84{word-spacing:12.208000pt;}
.wsd7{word-spacing:12.282667pt;}
.wsd8{word-spacing:12.506667pt;}
.ws19{word-spacing:12.576000pt;}
.ws101{word-spacing:12.693333pt;}
.wsbb{word-spacing:13.008000pt;}
.wsb8{word-spacing:13.056000pt;}
.ws9f{word-spacing:13.152000pt;}
.ws92{word-spacing:13.200000pt;}
.ws70{word-spacing:13.290667pt;}
.wsfa{word-spacing:13.365333pt;}
.ws3c{word-spacing:13.488000pt;}
.wsb3{word-spacing:13.680000pt;}
.wsba{word-spacing:13.728000pt;}
.ws6f{word-spacing:13.925333pt;}
.ws3e{word-spacing:14.592000pt;}
.ws86{word-spacing:14.597333pt;}
.wsf5{word-spacing:14.634667pt;}
.wsda{word-spacing:14.672000pt;}
.ws3d{word-spacing:14.976000pt;}
.wsdb{word-spacing:15.045333pt;}
.ws6e{word-spacing:15.381333pt;}
.wsac{word-spacing:15.792000pt;}
.ws4a{word-spacing:15.936000pt;}
.ws1f{word-spacing:16.080000pt;}
.wscb{word-spacing:16.352000pt;}
.wsa8{word-spacing:16.389333pt;}
.ws20{word-spacing:16.704000pt;}
.ws64{word-spacing:16.725333pt;}
.ws63{word-spacing:17.098667pt;}
.ws9a{word-spacing:17.328000pt;}
.wsf2{word-spacing:17.472000pt;}
.wsd3{word-spacing:17.658667pt;}
.wsd9{word-spacing:17.696000pt;}
.wsf6{word-spacing:17.808000pt;}
.ws15{word-spacing:18.048000pt;}
.ws34{word-spacing:18.384000pt;}
.ws18{word-spacing:18.960000pt;}
.wsdf{word-spacing:19.189333pt;}
.wscc{word-spacing:19.226667pt;}
.wsb4{word-spacing:19.536000pt;}
.ws5a{word-spacing:19.754667pt;}
.ws62{word-spacing:19.968000pt;}
.wsc0{word-spacing:20.640000pt;}
.wsca{word-spacing:20.794667pt;}
.wseb{word-spacing:20.869333pt;}
.wsb7{word-spacing:21.168000pt;}
.wse4{word-spacing:21.205333pt;}
.wse3{word-spacing:21.840000pt;}
.ws3f{word-spacing:22.080000pt;}
.ws5f{word-spacing:22.442667pt;}
.ws77{word-spacing:23.040000pt;}
.ws6c{word-spacing:23.072000pt;}
.wsdd{word-spacing:23.557333pt;}
.wsf7{word-spacing:24.042667pt;}
.wsc2{word-spacing:24.384000pt;}
.ws8c{word-spacing:24.768000pt;}
.ws6d{word-spacing:25.200000pt;}
.wsad{word-spacing:25.344000pt;}
.ws7e{word-spacing:27.840000pt;}
.ws6a{word-spacing:30.389333pt;}
.wsed{word-spacing:31.173333pt;}
.ws5c{word-spacing:31.274667pt;}
.ws4c{word-spacing:31.824000pt;}
.wsd6{word-spacing:32.629333pt;}
.wsde{word-spacing:42.560000pt;}
.ws1c{word-spacing:52.224000pt;}
.ws65{word-spacing:72.960000pt;}
._1c{margin-left:-22.036800pt;}
._0{margin-left:-13.696000pt;}
._1b{margin-left:-10.672000pt;}
._2{margin-left:-9.344000pt;}
._9{margin-left:-6.848000pt;}
._1{margin-left:-5.120000pt;}
._5{margin-left:-3.264000pt;}
._b{margin-left:-2.215467pt;}
._6{margin-left:-1.052800pt;}
._4{width:1.152000pt;}
._7{width:2.098133pt;}
._3{width:3.059200pt;}
._a{width:4.469333pt;}
._e{width:5.462400pt;}
._d{width:6.826667pt;}
._c{width:7.850667pt;}
._f{width:9.024000pt;}
._1f{width:10.064533pt;}
._1a{width:11.376533pt;}
._18{width:12.770133pt;}
._17{width:13.914133pt;}
._16{width:15.844267pt;}
._10{width:17.248000pt;}
._1d{width:21.840000pt;}
._14{width:23.756800pt;}
._15{width:25.293333pt;}
._19{width:27.216000pt;}
._13{width:30.090667pt;}
._1e{width:32.000000pt;}
._11{width:70.656000pt;}
._12{width:72.768000pt;}
._8{width:433.920000pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:72.938000pt;}
.y57{bottom:85.896000pt;}
.y10d{bottom:111.296267pt;}
.y158{bottom:111.696933pt;}
.y5{bottom:113.975733pt;}
.ya8{bottom:115.236933pt;}
.ye3{bottom:115.713333pt;}
.y6e{bottom:117.266133pt;}
.y157{bottom:122.990267pt;}
.y55{bottom:123.520267pt;}
.y3a{bottom:123.751067pt;}
.y10c{bottom:124.628267pt;}
.y6d{bottom:128.466133pt;}
.ya7{bottom:129.636933pt;}
.ye2{bottom:130.029333pt;}
.y156{bottom:134.283600pt;}
.y4{bottom:136.487733pt;}
.y54{bottom:137.920267pt;}
.y10b{bottom:137.960267pt;}
.y39{bottom:138.151067pt;}
.y6c{bottom:139.666133pt;}
.ya6{bottom:144.036933pt;}
.ye1{bottom:144.345333pt;}
.y155{bottom:145.576933pt;}
.y6b{bottom:150.866133pt;}
.y53{bottom:152.320267pt;}
.y38{bottom:152.551067pt;}
.y154{bottom:156.870267pt;}
.ya5{bottom:158.436933pt;}
.ye0{bottom:158.661333pt;}
.y6a{bottom:162.066133pt;}
.y10a{bottom:165.693600pt;}
.y52{bottom:166.720267pt;}
.y37{bottom:166.819067pt;}
.y153{bottom:168.163600pt;}
.ya4{bottom:172.836933pt;}
.ydf{bottom:172.997333pt;}
.y69{bottom:173.266133pt;}
.y152{bottom:179.456933pt;}
.y36{bottom:181.087067pt;}
.y51{bottom:181.120267pt;}
.ya3{bottom:187.236933pt;}
.yde{bottom:187.313333pt;}
.y151{bottom:190.750267pt;}
.y35{bottom:195.355067pt;}
.y50{bottom:195.520267pt;}
.y109{bottom:199.224267pt;}
.ydd{bottom:201.629333pt;}
.ya2{bottom:201.636933pt;}
.y150{bottom:202.043600pt;}
.y34{bottom:209.623067pt;}
.y4f{bottom:209.920267pt;}
.ya1{bottom:212.836933pt;}
.y14f{bottom:213.336933pt;}
.y108{bottom:213.360267pt;}
.ydc{bottom:215.945333pt;}
.y33{bottom:223.891067pt;}
.ya0{bottom:224.036933pt;}
.y4e{bottom:224.320267pt;}
.y14e{bottom:224.630267pt;}
.y107{bottom:227.496267pt;}
.ydb{bottom:230.261333pt;}
.y9f{bottom:235.236933pt;}
.y14d{bottom:235.923600pt;}
.y32{bottom:238.159067pt;}
.y4d{bottom:238.720267pt;}
.y106{bottom:241.632267pt;}
.yda{bottom:244.601333pt;}
.y9e{bottom:246.436933pt;}
.y14c{bottom:247.216933pt;}
.y31{bottom:252.427067pt;}
.y4c{bottom:253.120267pt;}
.y105{bottom:255.768267pt;}
.y9d{bottom:257.636933pt;}
.y14b{bottom:258.510267pt;}
.yd9{bottom:258.917333pt;}
.y30{bottom:266.695067pt;}
.y4b{bottom:267.520267pt;}
.y9c{bottom:268.836933pt;}
.y14a{bottom:269.803600pt;}
.y104{bottom:269.904267pt;}
.yd8{bottom:273.233333pt;}
.y9b{bottom:280.036933pt;}
.y2f{bottom:280.963067pt;}
.y149{bottom:281.096933pt;}
.y4a{bottom:281.920267pt;}
.y103{bottom:284.040267pt;}
.yd7{bottom:287.549333pt;}
.y9a{bottom:291.236933pt;}
.y148{bottom:292.390267pt;}
.y2e{bottom:295.231067pt;}
.y49{bottom:296.287067pt;}
.y102{bottom:298.176267pt;}
.yd6{bottom:301.865333pt;}
.y99{bottom:302.436933pt;}
.y147{bottom:303.683600pt;}
.y2d{bottom:309.499067pt;}
.y48{bottom:310.687067pt;}
.y101{bottom:312.312267pt;}
.y98{bottom:313.636933pt;}
.y146{bottom:314.976933pt;}
.yd5{bottom:316.181333pt;}
.y2c{bottom:323.767067pt;}
.y97{bottom:324.836933pt;}
.y47{bottom:325.087067pt;}
.y145{bottom:326.270267pt;}
.y100{bottom:326.448267pt;}
.yd4{bottom:330.510133pt;}
.y96{bottom:336.036933pt;}
.y144{bottom:337.563600pt;}
.y2b{bottom:338.035067pt;}
.y46{bottom:339.487067pt;}
.yff{bottom:340.584267pt;}
.y95{bottom:347.236933pt;}
.y143{bottom:348.856933pt;}
.y2a{bottom:352.303067pt;}
.y45{bottom:353.887067pt;}
.yfe{bottom:354.720267pt;}
.y94{bottom:358.436933pt;}
.yd3{bottom:359.154133pt;}
.y142{bottom:360.150267pt;}
.y29{bottom:366.571067pt;}
.y44{bottom:368.287067pt;}
.yfd{bottom:368.856267pt;}
.y93{bottom:369.636933pt;}
.y2{bottom:369.881733pt;}
.y141{bottom:371.443600pt;}
.yd2{bottom:373.470133pt;}
.y28{bottom:380.839067pt;}
.y43{bottom:382.687067pt;}
.y140{bottom:382.736933pt;}
.yfc{bottom:382.992267pt;}
.yd1{bottom:387.786133pt;}
.y13f{bottom:394.030267pt;}
.y27{bottom:395.107067pt;}
.y42{bottom:397.087067pt;}
.yfb{bottom:397.128267pt;}
.y92{bottom:397.130267pt;}
.y13e{bottom:405.323600pt;}
.y26{bottom:409.375067pt;}
.yfa{bottom:411.132267pt;}
.y41{bottom:411.487067pt;}
.y91{bottom:411.794267pt;}
.y1{bottom:414.905733pt;}
.yd0{bottom:416.430133pt;}
.y13d{bottom:416.616933pt;}
.y25{bottom:423.643067pt;}
.yf9{bottom:425.136267pt;}
.y40{bottom:425.887067pt;}
.y13c{bottom:427.910267pt;}
.ycf{bottom:430.746133pt;}
.y24{bottom:437.911067pt;}
.y13b{bottom:439.203600pt;}
.yf8{bottom:439.272267pt;}
.y3f{bottom:440.287067pt;}
.y90{bottom:441.122267pt;}
.yce{bottom:445.062133pt;}
.y13a{bottom:450.496933pt;}
.y23{bottom:452.179067pt;}
.yf7{bottom:453.408267pt;}
.y3e{bottom:454.687067pt;}
.y8f{bottom:455.786267pt;}
.ycd{bottom:459.378133pt;}
.y139{bottom:461.790267pt;}
.y22{bottom:466.447067pt;}
.yf6{bottom:467.544267pt;}
.y3d{bottom:469.087067pt;}
.y8e{bottom:470.450267pt;}
.y138{bottom:473.083600pt;}
.ycc{bottom:473.694133pt;}
.yf5{bottom:481.680267pt;}
.y3c{bottom:483.487067pt;}
.y137{bottom:484.376933pt;}
.y8d{bottom:485.114267pt;}
.ycb{bottom:488.010133pt;}
.y21{bottom:494.980400pt;}
.y136{bottom:495.670267pt;}
.yf4{bottom:495.816267pt;}
.y3b{bottom:497.887067pt;}
.y8c{bottom:499.778267pt;}
.yca{bottom:502.326133pt;}
.y135{bottom:506.963600pt;}
.yf3{bottom:509.952267pt;}
.y8b{bottom:514.442267pt;}
.y134{bottom:518.256933pt;}
.yc9{bottom:520.422133pt;}
.yf2{bottom:524.088267pt;}
.y8a{bottom:529.106267pt;}
.y133{bottom:529.550267pt;}
.yc8{bottom:534.690133pt;}
.yf1{bottom:538.224267pt;}
.y20{bottom:539.136933pt;}
.y132{bottom:540.843600pt;}
.y89{bottom:543.770267pt;}
.yc7{bottom:548.958133pt;}
.y131{bottom:552.136933pt;}
.yf0{bottom:552.360267pt;}
.y88{bottom:558.436933pt;}
.yc6{bottom:563.226133pt;}
.y130{bottom:563.430267pt;}
.y1f{bottom:564.736933pt;}
.y87{bottom:569.636933pt;}
.y12f{bottom:574.723600pt;}
.yc5{bottom:577.494133pt;}
.y1e{bottom:577.536933pt;}
.y3{bottom:577.636000pt;}
.y86{bottom:580.836933pt;}
.yef{bottom:580.893600pt;}
.y12e{bottom:586.016933pt;}
.y1d{bottom:590.336933pt;}
.yc4{bottom:591.762133pt;}
.y85{bottom:592.036933pt;}
.y12d{bottom:597.310267pt;}
.y1c{bottom:603.136933pt;}
.y84{bottom:604.836933pt;}
.yc3{bottom:606.030133pt;}
.y12c{bottom:608.603600pt;}
.yee{bottom:614.216267pt;}
.y1b{bottom:615.936933pt;}
.y83{bottom:617.636933pt;}
.y12b{bottom:619.896933pt;}
.yc2{bottom:620.298133pt;}
.yed{bottom:628.352267pt;}
.y82{bottom:630.436933pt;}
.y12a{bottom:631.190267pt;}
.yc1{bottom:634.566133pt;}
.y129{bottom:642.483600pt;}
.yec{bottom:642.488267pt;}
.y1a{bottom:643.136933pt;}
.y81{bottom:643.236933pt;}
.yc0{bottom:648.834133pt;}
.y128{bottom:653.776933pt;}
.y80{bottom:656.036933pt;}
.yeb{bottom:656.624267pt;}
.ybf{bottom:663.102133pt;}
.y127{bottom:665.070267pt;}
.y19{bottom:668.737067pt;}
.y7f{bottom:668.836933pt;}
.yea{bottom:670.760267pt;}
.y126{bottom:676.363600pt;}
.ybe{bottom:677.370133pt;}
.y7e{bottom:681.636933pt;}
.y125{bottom:687.656933pt;}
.ybd{bottom:691.634267pt;}
.y18{bottom:697.537067pt;}
.y124{bottom:698.950267pt;}
.ybc{bottom:705.902267pt;}
.y7d{bottom:708.836933pt;}
.y123{bottom:710.243600pt;}
.ye9{bottom:710.267333pt;}
.y17{bottom:711.937067pt;}
.ybb{bottom:720.170267pt;}
.ye8{bottom:720.935333pt;}
.y122{bottom:721.536933pt;}
.y7c{bottom:723.236933pt;}
.ye7{bottom:731.603333pt;}
.y121{bottom:732.830267pt;}
.yba{bottom:734.436800pt;}
.y16{bottom:740.736933pt;}
.ye6{bottom:742.271333pt;}
.y120{bottom:744.123600pt;}
.yb9{bottom:745.636800pt;}
.y7b{bottom:752.036933pt;}
.ye5{bottom:752.939333pt;}
.y11f{bottom:755.416933pt;}
.yb8{bottom:756.836800pt;}
.ye4{bottom:763.607333pt;}
.y7a{bottom:764.836933pt;}
.y15{bottom:766.336933pt;}
.y11e{bottom:766.710267pt;}
.yb7{bottom:768.036800pt;}
.y79{bottom:777.636933pt;}
.y11d{bottom:778.003600pt;}
.y14{bottom:779.136933pt;}
.yb6{bottom:779.236800pt;}
.y11c{bottom:789.296933pt;}
.yb5{bottom:790.436800pt;}
.y78{bottom:790.436933pt;}
.y13{bottom:791.936933pt;}
.y11b{bottom:800.590267pt;}
.yb4{bottom:801.636800pt;}
.y77{bottom:803.236933pt;}
.y12{bottom:804.736933pt;}
.y11a{bottom:811.883600pt;}
.yb3{bottom:812.836800pt;}
.y76{bottom:816.036933pt;}
.y11{bottom:817.536933pt;}
.y119{bottom:823.176933pt;}
.yb2{bottom:824.036800pt;}
.y75{bottom:828.836800pt;}
.y118{bottom:834.470267pt;}
.yb1{bottom:835.236933pt;}
.y163{bottom:841.251200pt;}
.y74{bottom:841.636800pt;}
.y10{bottom:844.737067pt;}
.y117{bottom:845.763600pt;}
.y162{bottom:851.917867pt;}
.y73{bottom:854.436800pt;}
.yf{bottom:855.937067pt;}
.y116{bottom:857.056933pt;}
.y5f{bottom:859.496933pt;}
.y68{bottom:862.436933pt;}
.yb0{bottom:862.440933pt;}
.y161{bottom:862.584533pt;}
.y72{bottom:867.236933pt;}
.y115{bottom:868.350267pt;}
.y5e{bottom:873.896933pt;}
.y67{bottom:876.836933pt;}
.yaf{bottom:876.840933pt;}
.y114{bottom:879.643600pt;}
.y71{bottom:880.036933pt;}
.ye{bottom:886.336933pt;}
.y5d{bottom:888.296933pt;}
.y113{bottom:890.936933pt;}
.y66{bottom:891.236933pt;}
.y70{bottom:892.836933pt;}
.y160{bottom:901.196800pt;}
.y112{bottom:902.230267pt;}
.y5c{bottom:902.696933pt;}
.y9{bottom:902.735733pt;}
.y65{bottom:905.636933pt;}
.yae{bottom:905.640933pt;}
.y15f{bottom:912.396800pt;}
.y111{bottom:913.523600pt;}
.y5b{bottom:917.096933pt;}
.y64{bottom:920.036933pt;}
.yad{bottom:920.040933pt;}
.y8{bottom:921.402400pt;}
.y15e{bottom:923.596800pt;}
.y110{bottom:924.816933pt;}
.yd{bottom:927.936933pt;}
.y5a{bottom:931.496933pt;}
.y63{bottom:934.436933pt;}
.yac{bottom:934.440933pt;}
.y15d{bottom:934.796800pt;}
.y10f{bottom:936.110267pt;}
.y59{bottom:945.896933pt;}
.y15c{bottom:945.996800pt;}
.y10e{bottom:947.403600pt;}
.y62{bottom:948.836933pt;}
.yab{bottom:948.840933pt;}
.yc{bottom:950.336933pt;}
.y7{bottom:954.069067pt;}
.y15b{bottom:957.196800pt;}
.y61{bottom:963.236933pt;}
.yaa{bottom:963.240933pt;}
.y15a{bottom:968.396800pt;}
.y6{bottom:972.735733pt;}
.yb{bottom:972.736933pt;}
.y58{bottom:974.696933pt;}
.y60{bottom:977.636933pt;}
.ya9{bottom:977.640933pt;}
.y159{bottom:979.596800pt;}
.ya{bottom:1022.991200pt;}
.y6f{bottom:1023.971200pt;}
.h8{height:31.770667pt;}
.h9{height:36.309333pt;}
.hc{height:36.309867pt;}
.ha{height:40.560000pt;}
.h5{height:40.848000pt;}
.hb{height:40.980800pt;}
.h7{height:54.080000pt;}
.h4{height:63.093333pt;}
.h6{height:63.541333pt;}
.h3{height:81.120000pt;}
.h2{height:108.928000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.488133pt;}
.x2{left:108.699067pt;}
.xe{left:118.288133pt;}
.xa{left:119.900667pt;}
.x1{left:120.944933pt;}
.x14{left:128.285333pt;}
.x13{left:134.957333pt;}
.x18{left:136.175067pt;}
.x15{left:140.669333pt;}
.x17{left:146.453333pt;}
.x16{left:155.069333pt;}
.xb{left:161.863333pt;}
.xf{left:174.285867pt;}
.x1a{left:193.504133pt;}
.x19{left:205.319067pt;}
.x5{left:239.540933pt;}
.x7{left:242.154267pt;}
.x1f{left:246.545067pt;}
.x8{left:286.954267pt;}
.x6{left:293.524933pt;}
.xc{left:325.066000pt;}
.xd{left:338.307867pt;}
.x3{left:340.471600pt;}
.x10{left:352.473867pt;}
.x4{left:389.882267pt;}
.x11{left:406.300133pt;}
.x12{left:430.096133pt;}
.x1d{left:434.955067pt;}
.x1b{left:446.980133pt;}
.x22{left:458.203733pt;}
.x1e{left:506.547067pt;}
.x1c{left:511.120133pt;}
.x20{left:546.289067pt;}
.x21{left:560.134400pt;}
}




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