
    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_cac6abd39f5515713e3da023.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_82e1bc81ee25d4aa7414b72e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_150d6a0e1d4ca184ca847622.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_94cf716197dfd51177320bf6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1cacb285a85f54ef87a3aec1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_e047b84d3ad4fada0d1a8f0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_f047ff8aa7227a84ebe595ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765000;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:ff8;src:url('chunks/assets/font_3f6d44992861fb88f9204c68.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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:ff9;src:url('chunks/assets/font_2807476c9d94f6cd39aa25da.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ebdceb5ce6745baa2d195fd8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989000;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:ffb;src:url('chunks/assets/font_73370d7e0c22a83f2a499362.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935547;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:ffc;src:url('chunks/assets/font_2807476c9d94f6cd39aa25da.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0f65551fe06a47d4412a937d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.965200px;}
.v5{vertical-align:-4.372200px;}
.v3{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v1{vertical-align:17.982000px;}
.ls25{letter-spacing:-4.512000px;}
.ls19{letter-spacing:-4.272000px;}
.ls1c{letter-spacing:-3.552000px;}
.ls12{letter-spacing:-2.112000px;}
.ls1f{letter-spacing:-1.872000px;}
.ls1d{letter-spacing:-1.824000px;}
.ls11{letter-spacing:-1.584000px;}
.ls21{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.344000px;}
.ls27{letter-spacing:-1.152000px;}
.ls28{letter-spacing:-1.104000px;}
.ls1b{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.189000px;}
.ls10{letter-spacing:-0.132000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006000px;}
.ls2c{letter-spacing:0.096000px;}
.ls23{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.189000px;}
.ls26{letter-spacing:0.192000px;}
.lse{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.336000px;}
.ls20{letter-spacing:0.384000px;}
.ls29{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.528000px;}
.ls14{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.624000px;}
.ls13{letter-spacing:0.672000px;}
.ls18{letter-spacing:1.152000px;}
.ls3{letter-spacing:17.932800px;}
.lsa{letter-spacing:99.597000px;}
.lsd{letter-spacing:102.901800px;}
.ls9{letter-spacing:129.597000px;}
.lsb{letter-spacing:156.292800px;}
.ls8{letter-spacing:275.456400px;}
.lsc{letter-spacing:317.472000px;}
.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;}
}
.wsc0{word-spacing:-18.546000px;}
.ws0{word-spacing:-15.012000px;}
.wsc1{word-spacing:-14.016000px;}
.wsc3{word-spacing:-13.968000px;}
.wsc2{word-spacing:-13.920000px;}
.ws103{word-spacing:-13.872000px;}
.ws102{word-spacing:-13.824000px;}
.wsc5{word-spacing:-13.632000px;}
.wsc7{word-spacing:-13.536000px;}
.wsc6{word-spacing:-13.488000px;}
.wsaa{word-spacing:-10.697400px;}
.ws3{word-spacing:-10.508400px;}
.ws2{word-spacing:-10.319400px;}
.wsc4{word-spacing:-9.792000px;}
.ws82{word-spacing:-5.130000px;}
.wsdc{word-spacing:-5.040000px;}
.ws14{word-spacing:-4.698000px;}
.wsf5{word-spacing:-4.368000px;}
.ws1a{word-spacing:-4.104000px;}
.ws74{word-spacing:-4.050000px;}
.ws8e{word-spacing:-3.888000px;}
.wsa0{word-spacing:-3.834000px;}
.wsf{word-spacing:-3.672000px;}
.wsab{word-spacing:-3.348000px;}
.ws33{word-spacing:-3.240000px;}
.ws118{word-spacing:-3.216000px;}
.wsac{word-spacing:-3.132000px;}
.ws2a{word-spacing:-2.970000px;}
.wsa3{word-spacing:-2.916000px;}
.wsd8{word-spacing:-2.880000px;}
.ws10a{word-spacing:-2.784000px;}
.ws6f{word-spacing:-2.592000px;}
.ws84{word-spacing:-2.430000px;}
.ws57{word-spacing:-2.376000px;}
.wsb0{word-spacing:-2.268000px;}
.wsad{word-spacing:-2.214000px;}
.ws90{word-spacing:-2.052000px;}
.ws44{word-spacing:-1.998000px;}
.wse0{word-spacing:-1.968000px;}
.ws16{word-spacing:-1.944000px;}
.ws1d{word-spacing:-1.836000px;}
.wsa4{word-spacing:-1.782000px;}
.wsbb{word-spacing:-1.728000px;}
.wsdf{word-spacing:-1.680000px;}
.ws67{word-spacing:-1.674000px;}
.wsd6{word-spacing:-1.632000px;}
.ws88{word-spacing:-1.620000px;}
.ws111{word-spacing:-1.536000px;}
.wsec{word-spacing:-1.488000px;}
.ws69{word-spacing:-1.458000px;}
.ws42{word-spacing:-1.404000px;}
.wse7{word-spacing:-1.392000px;}
.ws6a{word-spacing:-1.242000px;}
.wsfc{word-spacing:-1.200000px;}
.ws73{word-spacing:-1.188000px;}
.ws1f{word-spacing:-1.134000px;}
.ws59{word-spacing:-1.080000px;}
.wsfb{word-spacing:-1.056000px;}
.ws60{word-spacing:-0.972000px;}
.wsf6{word-spacing:-0.960000px;}
.ws83{word-spacing:-0.918000px;}
.ws5c{word-spacing:-0.864000px;}
.ws23{word-spacing:-0.810000px;}
.ws114{word-spacing:-0.672000px;}
.ws13{word-spacing:-0.648000px;}
.wse2{word-spacing:-0.624000px;}
.wsee{word-spacing:-0.576000px;}
.ws2f{word-spacing:-0.480000px;}
.ws22{word-spacing:-0.432000px;}
.ws10e{word-spacing:-0.384000px;}
.ws5f{word-spacing:-0.378000px;}
.ws21{word-spacing:-0.324000px;}
.ws64{word-spacing:-0.270000px;}
.ws2c{word-spacing:-0.216000px;}
.ws79{word-spacing:-0.192000px;}
.ws26{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.wsf1{word-spacing:0.048000px;}
.ws54{word-spacing:0.054000px;}
.wsb7{word-spacing:0.108000px;}
.ws2b{word-spacing:0.189000px;}
.wsed{word-spacing:0.192000px;}
.ws113{word-spacing:0.240000px;}
.ws80{word-spacing:0.270000px;}
.ws81{word-spacing:0.324000px;}
.wse9{word-spacing:0.336000px;}
.ws58{word-spacing:0.432000px;}
.wsdb{word-spacing:0.480000px;}
.ws8b{word-spacing:0.486000px;}
.ws6{word-spacing:0.540000px;}
.ws105{word-spacing:0.576000px;}
.ws89{word-spacing:0.594000px;}
.wsca{word-spacing:0.648000px;}
.wsb8{word-spacing:0.702000px;}
.wsd7{word-spacing:0.720000px;}
.ws4b{word-spacing:0.756000px;}
.ws110{word-spacing:0.768000px;}
.ws38{word-spacing:0.810000px;}
.wsda{word-spacing:0.864000px;}
.ws10{word-spacing:0.918000px;}
.ws119{word-spacing:0.960000px;}
.ws71{word-spacing:1.026000px;}
.ws53{word-spacing:1.080000px;}
.wsf9{word-spacing:1.104000px;}
.wsfe{word-spacing:1.152000px;}
.ws18{word-spacing:1.188000px;}
.ws95{word-spacing:1.242000px;}
.wsf7{word-spacing:1.344000px;}
.wsbe{word-spacing:1.350000px;}
.ws101{word-spacing:1.392000px;}
.wsf2{word-spacing:1.440000px;}
.ws52{word-spacing:1.458000px;}
.ws62{word-spacing:1.512000px;}
.wsd2{word-spacing:1.536000px;}
.wsce{word-spacing:1.566000px;}
.wsd3{word-spacing:1.584000px;}
.ws65{word-spacing:1.674000px;}
.wsa9{word-spacing:1.728000px;}
.wsdd{word-spacing:1.776000px;}
.ws8a{word-spacing:1.782000px;}
.wseb{word-spacing:1.824000px;}
.wsef{word-spacing:1.872000px;}
.ws7e{word-spacing:1.890000px;}
.wsb9{word-spacing:1.944000px;}
.wse5{word-spacing:1.968000px;}
.ws1c{word-spacing:2.052000px;}
.wsd4{word-spacing:2.112000px;}
.ws61{word-spacing:2.160000px;}
.wse6{word-spacing:2.208000px;}
.ws8c{word-spacing:2.214000px;}
.ws27{word-spacing:2.268000px;}
.wsb5{word-spacing:2.322000px;}
.wsd0{word-spacing:2.352000px;}
.ws43{word-spacing:2.376000px;}
.wsd1{word-spacing:2.448000px;}
.ws51{word-spacing:2.538000px;}
.wse3{word-spacing:2.544000px;}
.ws7f{word-spacing:2.592000px;}
.wsb{word-spacing:2.646000px;}
.wse{word-spacing:2.700000px;}
.wsd5{word-spacing:2.736000px;}
.ws50{word-spacing:2.754000px;}
.ws109{word-spacing:2.880000px;}
.ws68{word-spacing:3.024000px;}
.ws100{word-spacing:3.072000px;}
.wsa7{word-spacing:3.078000px;}
.ws3d{word-spacing:3.132000px;}
.wsea{word-spacing:3.360000px;}
.wsb6{word-spacing:3.402000px;}
.wsfd{word-spacing:3.408000px;}
.ws3c{word-spacing:3.456000px;}
.ws17{word-spacing:3.510000px;}
.wse8{word-spacing:3.552000px;}
.wsa2{word-spacing:3.564000px;}
.ws93{word-spacing:3.672000px;}
.ws115{word-spacing:3.744000px;}
.ws7{word-spacing:3.780000px;}
.ws86{word-spacing:3.888000px;}
.wsf8{word-spacing:3.936000px;}
.ws9{word-spacing:3.942000px;}
.ws47{word-spacing:3.996000px;}
.ws104{word-spacing:4.032000px;}
.ws4f{word-spacing:4.104000px;}
.ws9c{word-spacing:4.158000px;}
.ws76{word-spacing:4.212000px;}
.wse1{word-spacing:4.272000px;}
.ws94{word-spacing:4.320000px;}
.ws112{word-spacing:4.368000px;}
.wsa{word-spacing:4.374000px;}
.ws49{word-spacing:4.428000px;}
.wsfa{word-spacing:4.512000px;}
.ws1b{word-spacing:4.536000px;}
.wsf0{word-spacing:4.560000px;}
.wsa1{word-spacing:4.590000px;}
.ws87{word-spacing:4.644000px;}
.wsc8{word-spacing:4.698000px;}
.wsf3{word-spacing:4.704000px;}
.ws97{word-spacing:4.752000px;}
.ws116{word-spacing:4.848000px;}
.ws8{word-spacing:4.914000px;}
.ws4d{word-spacing:4.968000px;}
.ws41{word-spacing:5.022000px;}
.wsd9{word-spacing:5.040000px;}
.wsbf{word-spacing:5.076000px;}
.ws75{word-spacing:5.238000px;}
.ws7c{word-spacing:5.292000px;}
.wsff{word-spacing:5.376000px;}
.ws15{word-spacing:5.400000px;}
.wsa6{word-spacing:5.454000px;}
.ws5d{word-spacing:5.562000px;}
.wsa8{word-spacing:5.616000px;}
.ws3f{word-spacing:5.670000px;}
.wsde{word-spacing:5.808000px;}
.wsd{word-spacing:6.048000px;}
.ws39{word-spacing:6.102000px;}
.wsb2{word-spacing:6.264000px;}
.ws4c{word-spacing:6.372000px;}
.wscb{word-spacing:6.426000px;}
.ws11a{word-spacing:6.432000px;}
.ws92{word-spacing:6.480000px;}
.ws35{word-spacing:6.534000px;}
.ws66{word-spacing:6.588000px;}
.wsae{word-spacing:6.804000px;}
.ws10f{word-spacing:6.816000px;}
.ws10c{word-spacing:6.864000px;}
.wsbd{word-spacing:6.912000px;}
.ws107{word-spacing:7.056000px;}
.ws78{word-spacing:7.074000px;}
.wsa5{word-spacing:7.182000px;}
.ws106{word-spacing:7.200000px;}
.ws5a{word-spacing:7.290000px;}
.ws37{word-spacing:7.398000px;}
.ws36{word-spacing:7.452000px;}
.ws11{word-spacing:7.560000px;}
.ws24{word-spacing:7.668000px;}
.ws12{word-spacing:7.722000px;}
.ws19{word-spacing:7.776000px;}
.wsba{word-spacing:7.884000px;}
.wscd{word-spacing:7.938000px;}
.ws40{word-spacing:7.992000px;}
.wsb3{word-spacing:8.046000px;}
.ws70{word-spacing:8.100000px;}
.ws45{word-spacing:8.154000px;}
.ws56{word-spacing:8.208000px;}
.ws63{word-spacing:8.316000px;}
.ws25{word-spacing:8.370000px;}
.wsaf{word-spacing:8.424000px;}
.ws4a{word-spacing:8.640000px;}
.ws29{word-spacing:8.694000px;}
.ws117{word-spacing:8.736000px;}
.ws4e{word-spacing:8.748000px;}
.wsbc{word-spacing:9.018000px;}
.ws85{word-spacing:9.072000px;}
.ws9d{word-spacing:9.126000px;}
.ws98{word-spacing:9.396000px;}
.ws77{word-spacing:9.450000px;}
.ws34{word-spacing:9.504000px;}
.ws108{word-spacing:9.552000px;}
.ws99{word-spacing:9.558000px;}
.ws5b{word-spacing:9.774000px;}
.ws3a{word-spacing:9.882000px;}
.ws8f{word-spacing:9.990000px;}
.ws8d{word-spacing:10.044000px;}
.wse4{word-spacing:10.128000px;}
.ws30{word-spacing:10.176000px;}
.ws48{word-spacing:10.260000px;}
.wsc{word-spacing:10.368000px;}
.ws46{word-spacing:10.422000px;}
.ws1e{word-spacing:10.476000px;}
.wsb4{word-spacing:10.530000px;}
.ws91{word-spacing:10.638000px;}
.ws7a{word-spacing:10.692000px;}
.wsc9{word-spacing:10.746000px;}
.ws9a{word-spacing:10.854000px;}
.ws72{word-spacing:11.556000px;}
.ws32{word-spacing:11.568000px;}
.ws3b{word-spacing:11.718000px;}
.ws2d{word-spacing:11.988000px;}
.ws3e{word-spacing:12.150000px;}
.ws6b{word-spacing:12.474000px;}
.wscf{word-spacing:13.176000px;}
.ws31{word-spacing:13.200000px;}
.ws7d{word-spacing:13.770000px;}
.ws10b{word-spacing:13.968000px;}
.ws9e{word-spacing:14.472000px;}
.ws9f{word-spacing:15.552000px;}
.wsb1{word-spacing:15.930000px;}
.ws9b{word-spacing:16.200000px;}
.ws7b{word-spacing:16.902000px;}
.ws2e{word-spacing:17.472000px;}
.ws20{word-spacing:17.820000px;}
.ws28{word-spacing:17.874000px;}
.ws55{word-spacing:18.522000px;}
.ws5e{word-spacing:18.684000px;}
.ws96{word-spacing:20.466000px;}
.wscc{word-spacing:21.600000px;}
.wsf4{word-spacing:26.736000px;}
.ws10d{word-spacing:40.128000px;}
.ws4{word-spacing:105.456000px;}
.ws6c{word-spacing:162.844200px;}
.ws6d{word-spacing:277.440000px;}
.ws6e{word-spacing:304.128000px;}
.ws1{word-spacing:1242.054000px;}
._9{margin-left:-28.717200px;}
._c{margin-left:-25.920000px;}
._a{margin-left:-19.440000px;}
._6{margin-left:-6.993000px;}
._4{margin-left:-5.216400px;}
._2{margin-left:-3.947400px;}
._26{margin-left:-2.905200px;}
._1{margin-left:-1.890000px;}
._8{width:1.069200px;}
._3{width:2.100600px;}
._0{width:3.969000px;}
._5{width:5.778000px;}
._f{width:6.836400px;}
._10{width:7.911000px;}
._e{width:9.973800px;}
._25{width:11.188800px;}
._7{width:13.748400px;}
._27{width:16.917000px;}
._b{width:17.923200px;}
._2f{width:26.866800px;}
._2d{width:27.936000px;}
._2b{width:29.458800px;}
._2e{width:31.307400px;}
._2c{width:33.553800px;}
._1c{width:35.007000px;}
._29{width:55.584000px;}
._28{width:56.722800px;}
._2a{width:59.199000px;}
._1e{width:196.423200px;}
._19{width:263.103000px;}
._1a{width:273.855000px;}
._18{width:303.079200px;}
._1d{width:345.807000px;}
._20{width:372.487200px;}
._13{width:380.545800px;}
._15{width:388.527000px;}
._14{width:393.855000px;}
._1b{width:396.495000px;}
._16{width:407.199000px;}
._17{width:412.527000px;}
._12{width:433.806000px;}
._1f{width:436.519200px;}
._22{width:473.878200px;}
._24{width:487.215000px;}
._21{width:521.871000px;}
._23{width:535.207200px;}
._11{width:943.429800px;}
._d{width:1361.538600px;}
.fc8{color:rgb(16,15,13);}
.fc7{color:rgb(35,73,74);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:17.301750px;}
.y38{bottom:41.074650px;}
.y3e{bottom:46.967550px;}
.y3f{bottom:47.167950px;}
.y9c{bottom:47.171700px;}
.y9b{bottom:47.916000px;}
.y37{bottom:59.074650px;}
.y3c{bottom:59.194650px;}
.y36{bottom:77.074650px;}
.y3b{bottom:77.194650px;}
.y1a1{bottom:85.329900px;}
.y1bf{bottom:85.713900px;}
.y113{bottom:92.268750px;}
.y17c{bottom:92.291250px;}
.y9a{bottom:92.295750px;}
.y70{bottom:92.300250px;}
.y35{bottom:95.074650px;}
.y3a{bottom:95.194650px;}
.ycc{bottom:95.739600px;}
.y1a0{bottom:101.829900px;}
.y1be{bottom:102.213900px;}
.y112{bottom:111.020250px;}
.y6f{bottom:111.038250px;}
.y17b{bottom:111.042750px;}
.y99{bottom:111.047250px;}
.y145{bottom:111.050250px;}
.y34{bottom:113.074650px;}
.y39{bottom:113.194650px;}
.ycb{bottom:114.071850px;}
.y19f{bottom:118.329900px;}
.y1bd{bottom:118.713900px;}
.y6e{bottom:129.789750px;}
.y17a{bottom:129.794250px;}
.y98{bottom:129.798750px;}
.y144{bottom:129.801750px;}
.yca{bottom:132.400500px;}
.y19e{bottom:134.829900px;}
.y1bc{bottom:135.213900px;}
.y111{bottom:148.523250px;}
.y143{bottom:148.536750px;}
.y6d{bottom:148.541250px;}
.y179{bottom:148.545750px;}
.y97{bottom:148.550250px;}
.yc9{bottom:149.644500px;}
.y19d{bottom:151.329900px;}
.y1bb{bottom:151.713900px;}
.y2c{bottom:159.373050px;}
.y110{bottom:167.274750px;}
.y142{bottom:167.288250px;}
.y6c{bottom:167.292750px;}
.y178{bottom:167.297250px;}
.y154{bottom:167.300250px;}
.y96{bottom:167.301750px;}
.y19c{bottom:167.829900px;}
.yc8{bottom:167.976750px;}
.y1ba{bottom:168.213900px;}
.y19b{bottom:184.329900px;}
.y1b9{bottom:184.713900px;}
.y10f{bottom:186.026250px;}
.y95{bottom:186.032250px;}
.y141{bottom:186.039750px;}
.y177{bottom:186.048750px;}
.y153{bottom:186.051750px;}
.yc7{bottom:186.305400px;}
.y19a{bottom:200.829900px;}
.y1b8{bottom:201.213900px;}
.yc6{bottom:203.549400px;}
.y10e{bottom:204.777750px;}
.y94{bottom:204.783750px;}
.y140{bottom:204.791250px;}
.y6b{bottom:204.795750px;}
.y176{bottom:204.800250px;}
.yf0{bottom:204.801750px;}
.y199{bottom:217.329900px;}
.y1b7{bottom:217.713900px;}
.y30{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.yc5{bottom:221.881650px;}
.y10d{bottom:223.529250px;}
.y13f{bottom:223.542750px;}
.y6a{bottom:223.547250px;}
.y152{bottom:223.548750px;}
.y175{bottom:223.551750px;}
.y198{bottom:233.829900px;}
.y1b6{bottom:234.213900px;}
.y2f{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.yc4{bottom:240.213900px;}
.y10c{bottom:242.280750px;}
.y93{bottom:242.286750px;}
.y13e{bottom:242.294250px;}
.y69{bottom:242.298750px;}
.y151{bottom:242.300250px;}
.y197{bottom:250.329900px;}
.y1b5{bottom:250.713900px;}
.y2e{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.yc3{bottom:258.546300px;}
.yef{bottom:260.985750px;}
.y10b{bottom:261.032250px;}
.y92{bottom:261.038250px;}
.y13d{bottom:261.045750px;}
.y68{bottom:261.050250px;}
.y174{bottom:261.051750px;}
.y196{bottom:266.829900px;}
.y1b4{bottom:267.213900px;}
.y2d{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.yc2{bottom:276.878550px;}
.yee{bottom:279.737250px;}
.y10a{bottom:279.783750px;}
.y91{bottom:279.789750px;}
.y13c{bottom:279.797250px;}
.y67{bottom:279.801750px;}
.y195{bottom:283.329900px;}
.y1b3{bottom:283.713900px;}
.yc1{bottom:295.210950px;}
.yed{bottom:298.488750px;}
.y109{bottom:298.535250px;}
.y66{bottom:298.536750px;}
.y90{bottom:298.541250px;}
.y13b{bottom:298.548750px;}
.y194{bottom:299.829900px;}
.y1b2{bottom:300.213900px;}
.yc0{bottom:313.543200px;}
.y193{bottom:316.329900px;}
.y1b1{bottom:316.713900px;}
.yec{bottom:317.240250px;}
.y173{bottom:317.282250px;}
.y150{bottom:317.286750px;}
.y65{bottom:317.288250px;}
.y8f{bottom:317.292750px;}
.y13a{bottom:317.300250px;}
.y33{bottom:325.473450px;}
.ybf{bottom:331.875450px;}
.y192{bottom:332.829900px;}
.y1b0{bottom:333.213900px;}
.yeb{bottom:335.991750px;}
.y172{bottom:336.033750px;}
.y108{bottom:336.038250px;}
.y64{bottom:336.039750px;}
.y8e{bottom:336.044250px;}
.y139{bottom:336.045750px;}
.y191{bottom:349.329900px;}
.y1af{bottom:349.713900px;}
.ybe{bottom:350.207850px;}
.yea{bottom:354.743250px;}
.y171{bottom:354.785250px;}
.y107{bottom:354.789750px;}
.y63{bottom:354.791250px;}
.y8d{bottom:354.795750px;}
.y138{bottom:354.797250px;}
.y190{bottom:365.829900px;}
.y1ae{bottom:366.213900px;}
.ybd{bottom:368.540100px;}
.ye9{bottom:373.494750px;}
.y170{bottom:373.536750px;}
.y106{bottom:373.541250px;}
.y62{bottom:373.542750px;}
.y8c{bottom:373.547250px;}
.y137{bottom:373.548750px;}
.y18f{bottom:382.329900px;}
.y1ad{bottom:382.713900px;}
.ybc{bottom:386.868600px;}
.ye8{bottom:392.246250px;}
.y16f{bottom:392.288250px;}
.y105{bottom:392.292750px;}
.y8b{bottom:392.298750px;}
.y136{bottom:392.300250px;}
.y18e{bottom:398.829900px;}
.y1ac{bottom:399.213900px;}
.ybb{bottom:404.112600px;}
.ye7{bottom:410.997750px;}
.y135{bottom:411.012750px;}
.y16e{bottom:411.039750px;}
.y104{bottom:411.044250px;}
.y61{bottom:411.045750px;}
.y8a{bottom:411.050250px;}
.y18d{bottom:415.329900px;}
.y1ab{bottom:415.713900px;}
.yba{bottom:422.445000px;}
.y134{bottom:429.764250px;}
.y16d{bottom:429.791250px;}
.y103{bottom:429.795750px;}
.y60{bottom:429.797250px;}
.y89{bottom:429.801750px;}
.y18c{bottom:431.829900px;}
.y1aa{bottom:432.213900px;}
.yb9{bottom:440.777250px;}
.y2b{bottom:442.474800px;}
.y18b{bottom:448.329900px;}
.ye6{bottom:448.500750px;}
.y133{bottom:448.515750px;}
.y16c{bottom:448.542750px;}
.y102{bottom:448.547250px;}
.y5f{bottom:448.548750px;}
.y1a9{bottom:448.713900px;}
.yb8{bottom:459.109650px;}
.y2a{bottom:461.964600px;}
.y18a{bottom:464.829900px;}
.y1a8{bottom:465.213900px;}
.ye5{bottom:467.252250px;}
.y101{bottom:467.298750px;}
.y5e{bottom:467.300250px;}
.y88{bottom:467.301750px;}
.yb7{bottom:477.438150px;}
.y189{bottom:481.329900px;}
.y1a7{bottom:481.713900px;}
.y21{bottom:483.765450px;}
.ye4{bottom:486.003750px;}
.y132{bottom:486.018750px;}
.y16b{bottom:486.045750px;}
.y5d{bottom:486.048750px;}
.y100{bottom:486.050250px;}
.yb6{bottom:494.682150px;}
.y188{bottom:497.829900px;}
.y1a6{bottom:498.213900px;}
.y20{bottom:498.763950px;}
.ye3{bottom:504.755250px;}
.y131{bottom:504.770250px;}
.yff{bottom:504.780750px;}
.y16a{bottom:504.797250px;}
.y5c{bottom:504.800250px;}
.yb5{bottom:513.014400px;}
.y1f{bottom:513.762450px;}
.y187{bottom:514.329900px;}
.y1a5{bottom:514.713900px;}
.ye2{bottom:523.506750px;}
.y130{bottom:523.521750px;}
.yfe{bottom:523.532250px;}
.y87{bottom:523.535250px;}
.y5b{bottom:523.547250px;}
.y169{bottom:523.548750px;}
.y1e{bottom:528.760950px;}
.y186{bottom:530.829900px;}
.y1a4{bottom:531.213900px;}
.yb4{bottom:531.351450px;}
.ye1{bottom:542.258250px;}
.y12f{bottom:542.273250px;}
.yfd{bottom:542.283750px;}
.y86{bottom:542.286750px;}
.y5a{bottom:542.298750px;}
.y168{bottom:542.300250px;}
.y1d{bottom:543.759450px;}
.y1a3{bottom:547.713900px;}
.yb3{bottom:548.595450px;}
.y1c{bottom:558.757950px;}
.y12e{bottom:561.024750px;}
.yfc{bottom:561.035250px;}
.y85{bottom:561.038250px;}
.y167{bottom:561.039750px;}
.y59{bottom:561.050250px;}
.y185{bottom:563.829900px;}
.y1a2{bottom:564.213900px;}
.yb2{bottom:567.579450px;}
.y1b{bottom:573.756450px;}
.ye0{bottom:579.761250px;}
.y12d{bottom:579.776250px;}
.yfb{bottom:579.786750px;}
.y84{bottom:579.789750px;}
.y166{bottom:579.791250px;}
.y58{bottom:579.801750px;}
.yb0{bottom:584.079450px;}
.y1a{bottom:588.754950px;}
.ydf{bottom:598.512750px;}
.y12c{bottom:598.527750px;}
.y83{bottom:598.541250px;}
.y165{bottom:598.542750px;}
.yb1{bottom:600.579450px;}
.y19{bottom:603.753450px;}
.yde{bottom:617.264250px;}
.y14f{bottom:617.279250px;}
.yfa{bottom:617.289750px;}
.y57{bottom:617.292750px;}
.y164{bottom:617.294250px;}
.y18{bottom:618.751950px;}
.yaf{bottom:621.315450px;}
.y17{bottom:633.750450px;}
.ydd{bottom:636.015750px;}
.y12b{bottom:636.030750px;}
.yf9{bottom:636.041250px;}
.y56{bottom:636.044250px;}
.y184{bottom:638.543850px;}
.y16{bottom:648.748950px;}
.ydc{bottom:654.767250px;}
.y12a{bottom:654.782250px;}
.yf8{bottom:654.792750px;}
.y55{bottom:654.795750px;}
.y163{bottom:654.797250px;}
.y183{bottom:655.043850px;}
.y15{bottom:663.747450px;}
.y182{bottom:671.543850px;}
.ydb{bottom:673.518750px;}
.yae{bottom:673.532250px;}
.y129{bottom:673.533750px;}
.yf7{bottom:673.544250px;}
.y54{bottom:673.547250px;}
.y162{bottom:673.548750px;}
.y14{bottom:678.745950px;}
.y181{bottom:688.043850px;}
.yda{bottom:692.270250px;}
.yad{bottom:692.283750px;}
.y128{bottom:692.285250px;}
.yf6{bottom:692.295750px;}
.y53{bottom:692.298750px;}
.y161{bottom:692.300250px;}
.y13{bottom:693.744450px;}
.y180{bottom:704.543850px;}
.y12{bottom:708.742950px;}
.y160{bottom:711.018750px;}
.y17d{bottom:711.021750px;}
.yac{bottom:711.035250px;}
.y127{bottom:711.036750px;}
.yf5{bottom:711.047250px;}
.y52{bottom:711.050250px;}
.y11{bottom:723.741450px;}
.y15f{bottom:729.770250px;}
.yd9{bottom:729.773250px;}
.yab{bottom:729.786750px;}
.y126{bottom:729.788250px;}
.y51{bottom:729.791250px;}
.yf4{bottom:729.798750px;}
.y82{bottom:729.801750px;}
.y10{bottom:738.739950px;}
.y15e{bottom:748.521750px;}
.yd8{bottom:748.524750px;}
.yaa{bottom:748.538250px;}
.y125{bottom:748.539750px;}
.y50{bottom:748.542750px;}
.yf3{bottom:748.550250px;}
.yf{bottom:753.738450px;}
.y1d4{bottom:766.065450px;}
.y15d{bottom:767.273250px;}
.yd7{bottom:767.276250px;}
.y81{bottom:767.288250px;}
.y124{bottom:767.291250px;}
.y4f{bottom:767.294250px;}
.ye{bottom:768.736950px;}
.y1d3{bottom:782.565450px;}
.yd{bottom:783.735450px;}
.yd6{bottom:786.027750px;}
.y80{bottom:786.039750px;}
.ya9{bottom:786.041250px;}
.y14e{bottom:786.042750px;}
.y4e{bottom:786.045750px;}
.yc{bottom:798.733950px;}
.y1d2{bottom:799.065450px;}
.y15c{bottom:804.776250px;}
.yd5{bottom:804.779250px;}
.y7f{bottom:804.791250px;}
.ya8{bottom:804.792750px;}
.y123{bottom:804.794250px;}
.y4d{bottom:804.797250px;}
.yb{bottom:813.732450px;}
.y1d1{bottom:815.565450px;}
.y15b{bottom:823.527750px;}
.yd4{bottom:823.530750px;}
.y7e{bottom:823.542750px;}
.ya7{bottom:823.544250px;}
.y122{bottom:823.545750px;}
.y4c{bottom:823.548750px;}
.ya{bottom:828.730950px;}
.y1d0{bottom:832.065450px;}
.y15a{bottom:842.279250px;}
.yd3{bottom:842.282250px;}
.y7d{bottom:842.294250px;}
.ya6{bottom:842.295750px;}
.y121{bottom:842.297250px;}
.y4b{bottom:842.300250px;}
.y9{bottom:843.729450px;}
.y1cf{bottom:848.565450px;}
.y8{bottom:858.727950px;}
.y159{bottom:861.030750px;}
.yf2{bottom:861.033750px;}
.y7c{bottom:861.045750px;}
.ya5{bottom:861.047250px;}
.y120{bottom:861.048750px;}
.y4a{bottom:861.051750px;}
.y1ce{bottom:865.065450px;}
.y7{bottom:873.726450px;}
.y158{bottom:879.782250px;}
.yd2{bottom:879.785250px;}
.y7b{bottom:879.797250px;}
.ya4{bottom:879.798750px;}
.y11f{bottom:879.800250px;}
.y1cd{bottom:881.565450px;}
.y6{bottom:888.724950px;}
.y1cc{bottom:898.065450px;}
.y11e{bottom:898.502250px;}
.y157{bottom:898.533750px;}
.yd1{bottom:898.536750px;}
.y14d{bottom:898.538250px;}
.y49{bottom:898.539750px;}
.y7a{bottom:898.548750px;}
.ya3{bottom:898.550250px;}
.y5{bottom:903.723450px;}
.y1cb{bottom:914.565450px;}
.y11d{bottom:917.253750px;}
.y156{bottom:917.285250px;}
.yd0{bottom:917.288250px;}
.y14c{bottom:917.289750px;}
.y48{bottom:917.291250px;}
.y79{bottom:917.300250px;}
.ya2{bottom:917.301750px;}
.y22{bottom:923.289300px;}
.y1ca{bottom:931.065450px;}
.y11c{bottom:936.005250px;}
.y78{bottom:936.036750px;}
.ycf{bottom:936.039750px;}
.y14b{bottom:936.041250px;}
.y47{bottom:936.042750px;}
.y17f{bottom:936.051750px;}
.y1c9{bottom:947.565450px;}
.y11b{bottom:954.756750px;}
.y77{bottom:954.788250px;}
.yce{bottom:954.791250px;}
.y46{bottom:954.794250px;}
.ya1{bottom:954.801750px;}
.y1c8{bottom:964.065450px;}
.y11a{bottom:973.508250px;}
.y76{bottom:973.539750px;}
.yf1{bottom:973.542750px;}
.y14a{bottom:973.544250px;}
.y45{bottom:973.545750px;}
.y17e{bottom:973.551750px;}
.y1c7{bottom:980.565450px;}
.y29{bottom:982.473300px;}
.y119{bottom:992.259750px;}
.y75{bottom:992.291250px;}
.ycd{bottom:992.294250px;}
.y149{bottom:992.295750px;}
.y44{bottom:992.297250px;}
.y1c6{bottom:997.065450px;}
.y118{bottom:1011.011250px;}
.y155{bottom:1011.042750px;}
.ya0{bottom:1011.045750px;}
.y148{bottom:1011.047250px;}
.y43{bottom:1011.048750px;}
.y1c5{bottom:1013.565450px;}
.y32{bottom:1021.700700px;}
.y117{bottom:1029.762750px;}
.y74{bottom:1029.794250px;}
.y9f{bottom:1029.797250px;}
.y147{bottom:1029.798750px;}
.y42{bottom:1029.800250px;}
.y1c4{bottom:1030.065450px;}
.y31{bottom:1043.300700px;}
.y1c3{bottom:1046.565450px;}
.y116{bottom:1048.514250px;}
.y73{bottom:1048.545750px;}
.y9e{bottom:1048.548750px;}
.y146{bottom:1048.550250px;}
.y41{bottom:1048.551750px;}
.y1c2{bottom:1063.065450px;}
.y115{bottom:1067.265750px;}
.y72{bottom:1067.297250px;}
.y9d{bottom:1067.300250px;}
.y25{bottom:1071.552600px;}
.y1c1{bottom:1079.565450px;}
.y28{bottom:1082.937000px;}
.y114{bottom:1086.017250px;}
.y71{bottom:1086.048750px;}
.y40{bottom:1086.051750px;}
.y1c0{bottom:1096.065450px;}
.y27{bottom:1097.937000px;}
.y24{bottom:1103.952600px;}
.y26{bottom:1112.937000px;}
.y23{bottom:1136.352600px;}
.ha{height:33.887109px;}
.h2{height:34.945312px;}
.h2a{height:34.968750px;}
.he{height:35.616000px;}
.hd{height:36.336000px;}
.hf{height:37.652344px;}
.h5{height:39.339844px;}
.h3{height:43.031250px;}
.h1b{height:44.037956px;}
.h1e{height:44.056556px;}
.h1c{height:44.057156px;}
.h1f{height:44.071556px;}
.h1d{height:44.072156px;}
.h8{height:44.520000px;}
.h6{height:47.244141px;}
.h4{height:48.410156px;}
.h10{height:48.455756px;}
.h1a{height:51.387356px;}
.hc{height:51.868509px;}
.h9{height:51.869109px;}
.h26{height:51.875109px;}
.h16{height:51.881109px;}
.h15{height:51.887109px;}
.h25{height:51.893109px;}
.h21{height:51.899109px;}
.h14{height:51.905109px;}
.h13{height:51.911109px;}
.h12{height:51.917109px;}
.h18{height:51.923109px;}
.h17{height:51.929109px;}
.h20{height:51.941109px;}
.h29{height:51.942000px;}
.h19{height:51.947109px;}
.h22{height:51.953109px;}
.h27{height:51.995109px;}
.h28{height:52.001109px;}
.h24{height:52.025109px;}
.h23{height:52.067109px;}
.hb{height:54.504000px;}
.h11{height:56.664000px;}
.h7{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x12{left:88.365900px;}
.x18{left:91.601850px;}
.x17{left:103.039350px;}
.x13{left:107.291250px;}
.x21{left:112.039350px;}
.x1f{left:116.291250px;}
.x10{left:139.339200px;}
.x9{left:227.928900px;}
.xd{left:268.446600px;}
.x6{left:270.660900px;}
.x19{left:277.505850px;}
.xe{left:279.474600px;}
.x1a{left:292.853850px;}
.x3{left:311.576400px;}
.xc{left:322.290600px;}
.x8{left:323.340900px;}
.x4{left:338.468400px;}
.x7{left:356.676900px;}
.xa{left:359.558700px;}
.xf{left:361.302600px;}
.x1b{left:364.049850px;}
.x1c{left:374.393850px;}
.x1d{left:384.401850px;}
.xb{left:386.900700px;}
.x5{left:403.295400px;}
.x16{left:451.325100px;}
.x11{left:455.592300px;}
.x1{left:469.770150px;}
.x14{left:474.097950px;}
.x1e{left:487.837950px;}
.x15{left:492.093450px;}
.x22{left:496.843350px;}
.x20{left:501.095250px;}
@media print{
.v2{vertical-align:-15.969067pt;}
.v5{vertical-align:-3.886400pt;}
.v3{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v1{vertical-align:15.984000pt;}
.ls25{letter-spacing:-4.010667pt;}
.ls19{letter-spacing:-3.797333pt;}
.ls1c{letter-spacing:-3.157333pt;}
.ls12{letter-spacing:-1.877333pt;}
.ls1f{letter-spacing:-1.664000pt;}
.ls1d{letter-spacing:-1.621333pt;}
.ls11{letter-spacing:-1.408000pt;}
.ls21{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.194667pt;}
.ls27{letter-spacing:-1.024000pt;}
.ls28{letter-spacing:-0.981333pt;}
.ls1b{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.168000pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005333pt;}
.ls2c{letter-spacing:0.085333pt;}
.ls23{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.168000pt;}
.ls26{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.298667pt;}
.ls20{letter-spacing:0.341333pt;}
.ls29{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.469333pt;}
.ls14{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.554667pt;}
.ls13{letter-spacing:0.597333pt;}
.ls18{letter-spacing:1.024000pt;}
.ls3{letter-spacing:15.940267pt;}
.lsa{letter-spacing:88.530667pt;}
.lsd{letter-spacing:91.468267pt;}
.ls9{letter-spacing:115.197333pt;}
.lsb{letter-spacing:138.926933pt;}
.ls8{letter-spacing:244.850133pt;}
.lsc{letter-spacing:282.197333pt;}
.wsc0{word-spacing:-16.485333pt;}
.ws0{word-spacing:-13.344000pt;}
.wsc1{word-spacing:-12.458667pt;}
.wsc3{word-spacing:-12.416000pt;}
.wsc2{word-spacing:-12.373333pt;}
.ws103{word-spacing:-12.330667pt;}
.ws102{word-spacing:-12.288000pt;}
.wsc5{word-spacing:-12.117333pt;}
.wsc7{word-spacing:-12.032000pt;}
.wsc6{word-spacing:-11.989333pt;}
.wsaa{word-spacing:-9.508800pt;}
.ws3{word-spacing:-9.340800pt;}
.ws2{word-spacing:-9.172800pt;}
.wsc4{word-spacing:-8.704000pt;}
.ws82{word-spacing:-4.560000pt;}
.wsdc{word-spacing:-4.480000pt;}
.ws14{word-spacing:-4.176000pt;}
.wsf5{word-spacing:-3.882667pt;}
.ws1a{word-spacing:-3.648000pt;}
.ws74{word-spacing:-3.600000pt;}
.ws8e{word-spacing:-3.456000pt;}
.wsa0{word-spacing:-3.408000pt;}
.wsf{word-spacing:-3.264000pt;}
.wsab{word-spacing:-2.976000pt;}
.ws33{word-spacing:-2.880000pt;}
.ws118{word-spacing:-2.858667pt;}
.wsac{word-spacing:-2.784000pt;}
.ws2a{word-spacing:-2.640000pt;}
.wsa3{word-spacing:-2.592000pt;}
.wsd8{word-spacing:-2.560000pt;}
.ws10a{word-spacing:-2.474667pt;}
.ws6f{word-spacing:-2.304000pt;}
.ws84{word-spacing:-2.160000pt;}
.ws57{word-spacing:-2.112000pt;}
.wsb0{word-spacing:-2.016000pt;}
.wsad{word-spacing:-1.968000pt;}
.ws90{word-spacing:-1.824000pt;}
.ws44{word-spacing:-1.776000pt;}
.wse0{word-spacing:-1.749333pt;}
.ws16{word-spacing:-1.728000pt;}
.ws1d{word-spacing:-1.632000pt;}
.wsa4{word-spacing:-1.584000pt;}
.wsbb{word-spacing:-1.536000pt;}
.wsdf{word-spacing:-1.493333pt;}
.ws67{word-spacing:-1.488000pt;}
.wsd6{word-spacing:-1.450667pt;}
.ws88{word-spacing:-1.440000pt;}
.ws111{word-spacing:-1.365333pt;}
.wsec{word-spacing:-1.322667pt;}
.ws69{word-spacing:-1.296000pt;}
.ws42{word-spacing:-1.248000pt;}
.wse7{word-spacing:-1.237333pt;}
.ws6a{word-spacing:-1.104000pt;}
.wsfc{word-spacing:-1.066667pt;}
.ws73{word-spacing:-1.056000pt;}
.ws1f{word-spacing:-1.008000pt;}
.ws59{word-spacing:-0.960000pt;}
.wsfb{word-spacing:-0.938667pt;}
.ws60{word-spacing:-0.864000pt;}
.wsf6{word-spacing:-0.853333pt;}
.ws83{word-spacing:-0.816000pt;}
.ws5c{word-spacing:-0.768000pt;}
.ws23{word-spacing:-0.720000pt;}
.ws114{word-spacing:-0.597333pt;}
.ws13{word-spacing:-0.576000pt;}
.wse2{word-spacing:-0.554667pt;}
.wsee{word-spacing:-0.512000pt;}
.ws2f{word-spacing:-0.426667pt;}
.ws22{word-spacing:-0.384000pt;}
.ws10e{word-spacing:-0.341333pt;}
.ws5f{word-spacing:-0.336000pt;}
.ws21{word-spacing:-0.288000pt;}
.ws64{word-spacing:-0.240000pt;}
.ws2c{word-spacing:-0.192000pt;}
.ws79{word-spacing:-0.170667pt;}
.ws26{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.wsf1{word-spacing:0.042667pt;}
.ws54{word-spacing:0.048000pt;}
.wsb7{word-spacing:0.096000pt;}
.ws2b{word-spacing:0.168000pt;}
.wsed{word-spacing:0.170667pt;}
.ws113{word-spacing:0.213333pt;}
.ws80{word-spacing:0.240000pt;}
.ws81{word-spacing:0.288000pt;}
.wse9{word-spacing:0.298667pt;}
.ws58{word-spacing:0.384000pt;}
.wsdb{word-spacing:0.426667pt;}
.ws8b{word-spacing:0.432000pt;}
.ws6{word-spacing:0.480000pt;}
.ws105{word-spacing:0.512000pt;}
.ws89{word-spacing:0.528000pt;}
.wsca{word-spacing:0.576000pt;}
.wsb8{word-spacing:0.624000pt;}
.wsd7{word-spacing:0.640000pt;}
.ws4b{word-spacing:0.672000pt;}
.ws110{word-spacing:0.682667pt;}
.ws38{word-spacing:0.720000pt;}
.wsda{word-spacing:0.768000pt;}
.ws10{word-spacing:0.816000pt;}
.ws119{word-spacing:0.853333pt;}
.ws71{word-spacing:0.912000pt;}
.ws53{word-spacing:0.960000pt;}
.wsf9{word-spacing:0.981333pt;}
.wsfe{word-spacing:1.024000pt;}
.ws18{word-spacing:1.056000pt;}
.ws95{word-spacing:1.104000pt;}
.wsf7{word-spacing:1.194667pt;}
.wsbe{word-spacing:1.200000pt;}
.ws101{word-spacing:1.237333pt;}
.wsf2{word-spacing:1.280000pt;}
.ws52{word-spacing:1.296000pt;}
.ws62{word-spacing:1.344000pt;}
.wsd2{word-spacing:1.365333pt;}
.wsce{word-spacing:1.392000pt;}
.wsd3{word-spacing:1.408000pt;}
.ws65{word-spacing:1.488000pt;}
.wsa9{word-spacing:1.536000pt;}
.wsdd{word-spacing:1.578667pt;}
.ws8a{word-spacing:1.584000pt;}
.wseb{word-spacing:1.621333pt;}
.wsef{word-spacing:1.664000pt;}
.ws7e{word-spacing:1.680000pt;}
.wsb9{word-spacing:1.728000pt;}
.wse5{word-spacing:1.749333pt;}
.ws1c{word-spacing:1.824000pt;}
.wsd4{word-spacing:1.877333pt;}
.ws61{word-spacing:1.920000pt;}
.wse6{word-spacing:1.962667pt;}
.ws8c{word-spacing:1.968000pt;}
.ws27{word-spacing:2.016000pt;}
.wsb5{word-spacing:2.064000pt;}
.wsd0{word-spacing:2.090667pt;}
.ws43{word-spacing:2.112000pt;}
.wsd1{word-spacing:2.176000pt;}
.ws51{word-spacing:2.256000pt;}
.wse3{word-spacing:2.261333pt;}
.ws7f{word-spacing:2.304000pt;}
.wsb{word-spacing:2.352000pt;}
.wse{word-spacing:2.400000pt;}
.wsd5{word-spacing:2.432000pt;}
.ws50{word-spacing:2.448000pt;}
.ws109{word-spacing:2.560000pt;}
.ws68{word-spacing:2.688000pt;}
.ws100{word-spacing:2.730667pt;}
.wsa7{word-spacing:2.736000pt;}
.ws3d{word-spacing:2.784000pt;}
.wsea{word-spacing:2.986667pt;}
.wsb6{word-spacing:3.024000pt;}
.wsfd{word-spacing:3.029333pt;}
.ws3c{word-spacing:3.072000pt;}
.ws17{word-spacing:3.120000pt;}
.wse8{word-spacing:3.157333pt;}
.wsa2{word-spacing:3.168000pt;}
.ws93{word-spacing:3.264000pt;}
.ws115{word-spacing:3.328000pt;}
.ws7{word-spacing:3.360000pt;}
.ws86{word-spacing:3.456000pt;}
.wsf8{word-spacing:3.498667pt;}
.ws9{word-spacing:3.504000pt;}
.ws47{word-spacing:3.552000pt;}
.ws104{word-spacing:3.584000pt;}
.ws4f{word-spacing:3.648000pt;}
.ws9c{word-spacing:3.696000pt;}
.ws76{word-spacing:3.744000pt;}
.wse1{word-spacing:3.797333pt;}
.ws94{word-spacing:3.840000pt;}
.ws112{word-spacing:3.882667pt;}
.wsa{word-spacing:3.888000pt;}
.ws49{word-spacing:3.936000pt;}
.wsfa{word-spacing:4.010667pt;}
.ws1b{word-spacing:4.032000pt;}
.wsf0{word-spacing:4.053333pt;}
.wsa1{word-spacing:4.080000pt;}
.ws87{word-spacing:4.128000pt;}
.wsc8{word-spacing:4.176000pt;}
.wsf3{word-spacing:4.181333pt;}
.ws97{word-spacing:4.224000pt;}
.ws116{word-spacing:4.309333pt;}
.ws8{word-spacing:4.368000pt;}
.ws4d{word-spacing:4.416000pt;}
.ws41{word-spacing:4.464000pt;}
.wsd9{word-spacing:4.480000pt;}
.wsbf{word-spacing:4.512000pt;}
.ws75{word-spacing:4.656000pt;}
.ws7c{word-spacing:4.704000pt;}
.wsff{word-spacing:4.778667pt;}
.ws15{word-spacing:4.800000pt;}
.wsa6{word-spacing:4.848000pt;}
.ws5d{word-spacing:4.944000pt;}
.wsa8{word-spacing:4.992000pt;}
.ws3f{word-spacing:5.040000pt;}
.wsde{word-spacing:5.162667pt;}
.wsd{word-spacing:5.376000pt;}
.ws39{word-spacing:5.424000pt;}
.wsb2{word-spacing:5.568000pt;}
.ws4c{word-spacing:5.664000pt;}
.wscb{word-spacing:5.712000pt;}
.ws11a{word-spacing:5.717333pt;}
.ws92{word-spacing:5.760000pt;}
.ws35{word-spacing:5.808000pt;}
.ws66{word-spacing:5.856000pt;}
.wsae{word-spacing:6.048000pt;}
.ws10f{word-spacing:6.058667pt;}
.ws10c{word-spacing:6.101333pt;}
.wsbd{word-spacing:6.144000pt;}
.ws107{word-spacing:6.272000pt;}
.ws78{word-spacing:6.288000pt;}
.wsa5{word-spacing:6.384000pt;}
.ws106{word-spacing:6.400000pt;}
.ws5a{word-spacing:6.480000pt;}
.ws37{word-spacing:6.576000pt;}
.ws36{word-spacing:6.624000pt;}
.ws11{word-spacing:6.720000pt;}
.ws24{word-spacing:6.816000pt;}
.ws12{word-spacing:6.864000pt;}
.ws19{word-spacing:6.912000pt;}
.wsba{word-spacing:7.008000pt;}
.wscd{word-spacing:7.056000pt;}
.ws40{word-spacing:7.104000pt;}
.wsb3{word-spacing:7.152000pt;}
.ws70{word-spacing:7.200000pt;}
.ws45{word-spacing:7.248000pt;}
.ws56{word-spacing:7.296000pt;}
.ws63{word-spacing:7.392000pt;}
.ws25{word-spacing:7.440000pt;}
.wsaf{word-spacing:7.488000pt;}
.ws4a{word-spacing:7.680000pt;}
.ws29{word-spacing:7.728000pt;}
.ws117{word-spacing:7.765333pt;}
.ws4e{word-spacing:7.776000pt;}
.wsbc{word-spacing:8.016000pt;}
.ws85{word-spacing:8.064000pt;}
.ws9d{word-spacing:8.112000pt;}
.ws98{word-spacing:8.352000pt;}
.ws77{word-spacing:8.400000pt;}
.ws34{word-spacing:8.448000pt;}
.ws108{word-spacing:8.490667pt;}
.ws99{word-spacing:8.496000pt;}
.ws5b{word-spacing:8.688000pt;}
.ws3a{word-spacing:8.784000pt;}
.ws8f{word-spacing:8.880000pt;}
.ws8d{word-spacing:8.928000pt;}
.wse4{word-spacing:9.002667pt;}
.ws30{word-spacing:9.045333pt;}
.ws48{word-spacing:9.120000pt;}
.wsc{word-spacing:9.216000pt;}
.ws46{word-spacing:9.264000pt;}
.ws1e{word-spacing:9.312000pt;}
.wsb4{word-spacing:9.360000pt;}
.ws91{word-spacing:9.456000pt;}
.ws7a{word-spacing:9.504000pt;}
.wsc9{word-spacing:9.552000pt;}
.ws9a{word-spacing:9.648000pt;}
.ws72{word-spacing:10.272000pt;}
.ws32{word-spacing:10.282667pt;}
.ws3b{word-spacing:10.416000pt;}
.ws2d{word-spacing:10.656000pt;}
.ws3e{word-spacing:10.800000pt;}
.ws6b{word-spacing:11.088000pt;}
.wscf{word-spacing:11.712000pt;}
.ws31{word-spacing:11.733333pt;}
.ws7d{word-spacing:12.240000pt;}
.ws10b{word-spacing:12.416000pt;}
.ws9e{word-spacing:12.864000pt;}
.ws9f{word-spacing:13.824000pt;}
.wsb1{word-spacing:14.160000pt;}
.ws9b{word-spacing:14.400000pt;}
.ws7b{word-spacing:15.024000pt;}
.ws2e{word-spacing:15.530667pt;}
.ws20{word-spacing:15.840000pt;}
.ws28{word-spacing:15.888000pt;}
.ws55{word-spacing:16.464000pt;}
.ws5e{word-spacing:16.608000pt;}
.ws96{word-spacing:18.192000pt;}
.wscc{word-spacing:19.200000pt;}
.wsf4{word-spacing:23.765333pt;}
.ws10d{word-spacing:35.669333pt;}
.ws4{word-spacing:93.738667pt;}
.ws6c{word-spacing:144.750400pt;}
.ws6d{word-spacing:246.613333pt;}
.ws6e{word-spacing:270.336000pt;}
.ws1{word-spacing:1104.048000pt;}
._9{margin-left:-25.526400pt;}
._c{margin-left:-23.040000pt;}
._a{margin-left:-17.280000pt;}
._6{margin-left:-6.216000pt;}
._4{margin-left:-4.636800pt;}
._2{margin-left:-3.508800pt;}
._26{margin-left:-2.582400pt;}
._1{margin-left:-1.680000pt;}
._8{width:0.950400pt;}
._3{width:1.867200pt;}
._0{width:3.528000pt;}
._5{width:5.136000pt;}
._f{width:6.076800pt;}
._10{width:7.032000pt;}
._e{width:8.865600pt;}
._25{width:9.945600pt;}
._7{width:12.220800pt;}
._27{width:15.037333pt;}
._b{width:15.931733pt;}
._2f{width:23.881600pt;}
._2d{width:24.832000pt;}
._2b{width:26.185600pt;}
._2e{width:27.828800pt;}
._2c{width:29.825600pt;}
._1c{width:31.117333pt;}
._29{width:49.408000pt;}
._28{width:50.420267pt;}
._2a{width:52.621333pt;}
._1e{width:174.598400pt;}
._19{width:233.869333pt;}
._1a{width:243.426667pt;}
._18{width:269.403733pt;}
._1d{width:307.384000pt;}
._20{width:331.099733pt;}
._13{width:338.262933pt;}
._15{width:345.357333pt;}
._14{width:350.093333pt;}
._1b{width:352.440000pt;}
._16{width:361.954667pt;}
._17{width:366.690667pt;}
._12{width:385.605333pt;}
._1f{width:388.017067pt;}
._22{width:421.225067pt;}
._24{width:433.080000pt;}
._21{width:463.885333pt;}
._23{width:475.739733pt;}
._11{width:838.604267pt;}
._d{width:1210.256533pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:15.379333pt;}
.y38{bottom:36.510800pt;}
.y3e{bottom:41.748933pt;}
.y3f{bottom:41.927067pt;}
.y9c{bottom:41.930400pt;}
.y9b{bottom:42.592000pt;}
.y37{bottom:52.510800pt;}
.y3c{bottom:52.617467pt;}
.y36{bottom:68.510800pt;}
.y3b{bottom:68.617467pt;}
.y1a1{bottom:75.848800pt;}
.y1bf{bottom:76.190133pt;}
.y113{bottom:82.016667pt;}
.y17c{bottom:82.036667pt;}
.y9a{bottom:82.040667pt;}
.y70{bottom:82.044667pt;}
.y35{bottom:84.510800pt;}
.y3a{bottom:84.617467pt;}
.ycc{bottom:85.101867pt;}
.y1a0{bottom:90.515467pt;}
.y1be{bottom:90.856800pt;}
.y112{bottom:98.684667pt;}
.y6f{bottom:98.700667pt;}
.y17b{bottom:98.704667pt;}
.y99{bottom:98.708667pt;}
.y145{bottom:98.711333pt;}
.y34{bottom:100.510800pt;}
.y39{bottom:100.617467pt;}
.ycb{bottom:101.397200pt;}
.y19f{bottom:105.182133pt;}
.y1bd{bottom:105.523467pt;}
.y6e{bottom:115.368667pt;}
.y17a{bottom:115.372667pt;}
.y98{bottom:115.376667pt;}
.y144{bottom:115.379333pt;}
.yca{bottom:117.689333pt;}
.y19e{bottom:119.848800pt;}
.y1bc{bottom:120.190133pt;}
.y111{bottom:132.020667pt;}
.y143{bottom:132.032667pt;}
.y6d{bottom:132.036667pt;}
.y179{bottom:132.040667pt;}
.y97{bottom:132.044667pt;}
.yc9{bottom:133.017333pt;}
.y19d{bottom:134.515467pt;}
.y1bb{bottom:134.856800pt;}
.y2c{bottom:141.664933pt;}
.y110{bottom:148.688667pt;}
.y142{bottom:148.700667pt;}
.y6c{bottom:148.704667pt;}
.y178{bottom:148.708667pt;}
.y154{bottom:148.711333pt;}
.y96{bottom:148.712667pt;}
.y19c{bottom:149.182133pt;}
.yc8{bottom:149.312667pt;}
.y1ba{bottom:149.523467pt;}
.y19b{bottom:163.848800pt;}
.y1b9{bottom:164.190133pt;}
.y10f{bottom:165.356667pt;}
.y95{bottom:165.362000pt;}
.y141{bottom:165.368667pt;}
.y177{bottom:165.376667pt;}
.y153{bottom:165.379333pt;}
.yc7{bottom:165.604800pt;}
.y19a{bottom:178.515467pt;}
.y1b8{bottom:178.856800pt;}
.yc6{bottom:180.932800pt;}
.y10e{bottom:182.024667pt;}
.y94{bottom:182.030000pt;}
.y140{bottom:182.036667pt;}
.y6b{bottom:182.040667pt;}
.y176{bottom:182.044667pt;}
.yf0{bottom:182.046000pt;}
.y199{bottom:193.182133pt;}
.y1b7{bottom:193.523467pt;}
.y30{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.yc5{bottom:197.228133pt;}
.y10d{bottom:198.692667pt;}
.y13f{bottom:198.704667pt;}
.y6a{bottom:198.708667pt;}
.y152{bottom:198.710000pt;}
.y175{bottom:198.712667pt;}
.y198{bottom:207.848800pt;}
.y1b6{bottom:208.190133pt;}
.y2f{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.yc4{bottom:213.523467pt;}
.y10c{bottom:215.360667pt;}
.y93{bottom:215.366000pt;}
.y13e{bottom:215.372667pt;}
.y69{bottom:215.376667pt;}
.y151{bottom:215.378000pt;}
.y197{bottom:222.515467pt;}
.y1b5{bottom:222.856800pt;}
.y2e{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.yc3{bottom:229.818933pt;}
.yef{bottom:231.987333pt;}
.y10b{bottom:232.028667pt;}
.y92{bottom:232.034000pt;}
.y13d{bottom:232.040667pt;}
.y68{bottom:232.044667pt;}
.y174{bottom:232.046000pt;}
.y196{bottom:237.182133pt;}
.y1b4{bottom:237.523467pt;}
.y2d{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.yc2{bottom:246.114267pt;}
.yee{bottom:248.655333pt;}
.y10a{bottom:248.696667pt;}
.y91{bottom:248.702000pt;}
.y13c{bottom:248.708667pt;}
.y67{bottom:248.712667pt;}
.y195{bottom:251.848800pt;}
.y1b3{bottom:252.190133pt;}
.yc1{bottom:262.409733pt;}
.yed{bottom:265.323333pt;}
.y109{bottom:265.364667pt;}
.y66{bottom:265.366000pt;}
.y90{bottom:265.370000pt;}
.y13b{bottom:265.376667pt;}
.y194{bottom:266.515467pt;}
.y1b2{bottom:266.856800pt;}
.yc0{bottom:278.705067pt;}
.y193{bottom:281.182133pt;}
.y1b1{bottom:281.523467pt;}
.yec{bottom:281.991333pt;}
.y173{bottom:282.028667pt;}
.y150{bottom:282.032667pt;}
.y65{bottom:282.034000pt;}
.y8f{bottom:282.038000pt;}
.y13a{bottom:282.044667pt;}
.y33{bottom:289.309733pt;}
.ybf{bottom:295.000400pt;}
.y192{bottom:295.848800pt;}
.y1b0{bottom:296.190133pt;}
.yeb{bottom:298.659333pt;}
.y172{bottom:298.696667pt;}
.y108{bottom:298.700667pt;}
.y64{bottom:298.702000pt;}
.y8e{bottom:298.706000pt;}
.y139{bottom:298.707333pt;}
.y191{bottom:310.515467pt;}
.y1af{bottom:310.856800pt;}
.ybe{bottom:311.295867pt;}
.yea{bottom:315.327333pt;}
.y171{bottom:315.364667pt;}
.y107{bottom:315.368667pt;}
.y63{bottom:315.370000pt;}
.y8d{bottom:315.374000pt;}
.y138{bottom:315.375333pt;}
.y190{bottom:325.182133pt;}
.y1ae{bottom:325.523467pt;}
.ybd{bottom:327.591200pt;}
.ye9{bottom:331.995333pt;}
.y170{bottom:332.032667pt;}
.y106{bottom:332.036667pt;}
.y62{bottom:332.038000pt;}
.y8c{bottom:332.042000pt;}
.y137{bottom:332.043333pt;}
.y18f{bottom:339.848800pt;}
.y1ad{bottom:340.190133pt;}
.ybc{bottom:343.883200pt;}
.ye8{bottom:348.663333pt;}
.y16f{bottom:348.700667pt;}
.y105{bottom:348.704667pt;}
.y8b{bottom:348.710000pt;}
.y136{bottom:348.711333pt;}
.y18e{bottom:354.515467pt;}
.y1ac{bottom:354.856800pt;}
.ybb{bottom:359.211200pt;}
.ye7{bottom:365.331333pt;}
.y135{bottom:365.344667pt;}
.y16e{bottom:365.368667pt;}
.y104{bottom:365.372667pt;}
.y61{bottom:365.374000pt;}
.y8a{bottom:365.378000pt;}
.y18d{bottom:369.182133pt;}
.y1ab{bottom:369.523467pt;}
.yba{bottom:375.506667pt;}
.y134{bottom:382.012667pt;}
.y16d{bottom:382.036667pt;}
.y103{bottom:382.040667pt;}
.y60{bottom:382.042000pt;}
.y89{bottom:382.046000pt;}
.y18c{bottom:383.848800pt;}
.y1aa{bottom:384.190133pt;}
.yb9{bottom:391.802000pt;}
.y2b{bottom:393.310933pt;}
.y18b{bottom:398.515467pt;}
.ye6{bottom:398.667333pt;}
.y133{bottom:398.680667pt;}
.y16c{bottom:398.704667pt;}
.y102{bottom:398.708667pt;}
.y5f{bottom:398.710000pt;}
.y1a9{bottom:398.856800pt;}
.yb8{bottom:408.097467pt;}
.y2a{bottom:410.635200pt;}
.y18a{bottom:413.182133pt;}
.y1a8{bottom:413.523467pt;}
.ye5{bottom:415.335333pt;}
.y101{bottom:415.376667pt;}
.y5e{bottom:415.378000pt;}
.y88{bottom:415.379333pt;}
.yb7{bottom:424.389467pt;}
.y189{bottom:427.848800pt;}
.y1a7{bottom:428.190133pt;}
.y21{bottom:430.013733pt;}
.ye4{bottom:432.003333pt;}
.y132{bottom:432.016667pt;}
.y16b{bottom:432.040667pt;}
.y5d{bottom:432.043333pt;}
.y100{bottom:432.044667pt;}
.yb6{bottom:439.717467pt;}
.y188{bottom:442.515467pt;}
.y1a6{bottom:442.856800pt;}
.y20{bottom:443.345733pt;}
.ye3{bottom:448.671333pt;}
.y131{bottom:448.684667pt;}
.yff{bottom:448.694000pt;}
.y16a{bottom:448.708667pt;}
.y5c{bottom:448.711333pt;}
.yb5{bottom:456.012800pt;}
.y1f{bottom:456.677733pt;}
.y187{bottom:457.182133pt;}
.y1a5{bottom:457.523467pt;}
.ye2{bottom:465.339333pt;}
.y130{bottom:465.352667pt;}
.yfe{bottom:465.362000pt;}
.y87{bottom:465.364667pt;}
.y5b{bottom:465.375333pt;}
.y169{bottom:465.376667pt;}
.y1e{bottom:470.009733pt;}
.y186{bottom:471.848800pt;}
.y1a4{bottom:472.190133pt;}
.yb4{bottom:472.312400pt;}
.ye1{bottom:482.007333pt;}
.y12f{bottom:482.020667pt;}
.yfd{bottom:482.030000pt;}
.y86{bottom:482.032667pt;}
.y5a{bottom:482.043333pt;}
.y168{bottom:482.044667pt;}
.y1d{bottom:483.341733pt;}
.y1a3{bottom:486.856800pt;}
.yb3{bottom:487.640400pt;}
.y1c{bottom:496.673733pt;}
.y12e{bottom:498.688667pt;}
.yfc{bottom:498.698000pt;}
.y85{bottom:498.700667pt;}
.y167{bottom:498.702000pt;}
.y59{bottom:498.711333pt;}
.y185{bottom:501.182133pt;}
.y1a2{bottom:501.523467pt;}
.yb2{bottom:504.515067pt;}
.y1b{bottom:510.005733pt;}
.ye0{bottom:515.343333pt;}
.y12d{bottom:515.356667pt;}
.yfb{bottom:515.366000pt;}
.y84{bottom:515.368667pt;}
.y166{bottom:515.370000pt;}
.y58{bottom:515.379333pt;}
.yb0{bottom:519.181733pt;}
.y1a{bottom:523.337733pt;}
.ydf{bottom:532.011333pt;}
.y12c{bottom:532.024667pt;}
.y83{bottom:532.036667pt;}
.y165{bottom:532.038000pt;}
.yb1{bottom:533.848400pt;}
.y19{bottom:536.669733pt;}
.yde{bottom:548.679333pt;}
.y14f{bottom:548.692667pt;}
.yfa{bottom:548.702000pt;}
.y57{bottom:548.704667pt;}
.y164{bottom:548.706000pt;}
.y18{bottom:550.001733pt;}
.yaf{bottom:552.280400pt;}
.y17{bottom:563.333733pt;}
.ydd{bottom:565.347333pt;}
.y12b{bottom:565.360667pt;}
.yf9{bottom:565.370000pt;}
.y56{bottom:565.372667pt;}
.y184{bottom:567.594533pt;}
.y16{bottom:576.665733pt;}
.ydc{bottom:582.015333pt;}
.y12a{bottom:582.028667pt;}
.yf8{bottom:582.038000pt;}
.y55{bottom:582.040667pt;}
.y163{bottom:582.042000pt;}
.y183{bottom:582.261200pt;}
.y15{bottom:589.997733pt;}
.y182{bottom:596.927867pt;}
.ydb{bottom:598.683333pt;}
.yae{bottom:598.695333pt;}
.y129{bottom:598.696667pt;}
.yf7{bottom:598.706000pt;}
.y54{bottom:598.708667pt;}
.y162{bottom:598.710000pt;}
.y14{bottom:603.329733pt;}
.y181{bottom:611.594533pt;}
.yda{bottom:615.351333pt;}
.yad{bottom:615.363333pt;}
.y128{bottom:615.364667pt;}
.yf6{bottom:615.374000pt;}
.y53{bottom:615.376667pt;}
.y161{bottom:615.378000pt;}
.y13{bottom:616.661733pt;}
.y180{bottom:626.261200pt;}
.y12{bottom:629.993733pt;}
.y160{bottom:632.016667pt;}
.y17d{bottom:632.019333pt;}
.yac{bottom:632.031333pt;}
.y127{bottom:632.032667pt;}
.yf5{bottom:632.042000pt;}
.y52{bottom:632.044667pt;}
.y11{bottom:643.325733pt;}
.y15f{bottom:648.684667pt;}
.yd9{bottom:648.687333pt;}
.yab{bottom:648.699333pt;}
.y126{bottom:648.700667pt;}
.y51{bottom:648.703333pt;}
.yf4{bottom:648.710000pt;}
.y82{bottom:648.712667pt;}
.y10{bottom:656.657733pt;}
.y15e{bottom:665.352667pt;}
.yd8{bottom:665.355333pt;}
.yaa{bottom:665.367333pt;}
.y125{bottom:665.368667pt;}
.y50{bottom:665.371333pt;}
.yf3{bottom:665.378000pt;}
.yf{bottom:669.989733pt;}
.y1d4{bottom:680.947067pt;}
.y15d{bottom:682.020667pt;}
.yd7{bottom:682.023333pt;}
.y81{bottom:682.034000pt;}
.y124{bottom:682.036667pt;}
.y4f{bottom:682.039333pt;}
.ye{bottom:683.321733pt;}
.y1d3{bottom:695.613733pt;}
.yd{bottom:696.653733pt;}
.yd6{bottom:698.691333pt;}
.y80{bottom:698.702000pt;}
.ya9{bottom:698.703333pt;}
.y14e{bottom:698.704667pt;}
.y4e{bottom:698.707333pt;}
.yc{bottom:709.985733pt;}
.y1d2{bottom:710.280400pt;}
.y15c{bottom:715.356667pt;}
.yd5{bottom:715.359333pt;}
.y7f{bottom:715.370000pt;}
.ya8{bottom:715.371333pt;}
.y123{bottom:715.372667pt;}
.y4d{bottom:715.375333pt;}
.yb{bottom:723.317733pt;}
.y1d1{bottom:724.947067pt;}
.y15b{bottom:732.024667pt;}
.yd4{bottom:732.027333pt;}
.y7e{bottom:732.038000pt;}
.ya7{bottom:732.039333pt;}
.y122{bottom:732.040667pt;}
.y4c{bottom:732.043333pt;}
.ya{bottom:736.649733pt;}
.y1d0{bottom:739.613733pt;}
.y15a{bottom:748.692667pt;}
.yd3{bottom:748.695333pt;}
.y7d{bottom:748.706000pt;}
.ya6{bottom:748.707333pt;}
.y121{bottom:748.708667pt;}
.y4b{bottom:748.711333pt;}
.y9{bottom:749.981733pt;}
.y1cf{bottom:754.280400pt;}
.y8{bottom:763.313733pt;}
.y159{bottom:765.360667pt;}
.yf2{bottom:765.363333pt;}
.y7c{bottom:765.374000pt;}
.ya5{bottom:765.375333pt;}
.y120{bottom:765.376667pt;}
.y4a{bottom:765.379333pt;}
.y1ce{bottom:768.947067pt;}
.y7{bottom:776.645733pt;}
.y158{bottom:782.028667pt;}
.yd2{bottom:782.031333pt;}
.y7b{bottom:782.042000pt;}
.ya4{bottom:782.043333pt;}
.y11f{bottom:782.044667pt;}
.y1cd{bottom:783.613733pt;}
.y6{bottom:789.977733pt;}
.y1cc{bottom:798.280400pt;}
.y11e{bottom:798.668667pt;}
.y157{bottom:798.696667pt;}
.yd1{bottom:798.699333pt;}
.y14d{bottom:798.700667pt;}
.y49{bottom:798.702000pt;}
.y7a{bottom:798.710000pt;}
.ya3{bottom:798.711333pt;}
.y5{bottom:803.309733pt;}
.y1cb{bottom:812.947067pt;}
.y11d{bottom:815.336667pt;}
.y156{bottom:815.364667pt;}
.yd0{bottom:815.367333pt;}
.y14c{bottom:815.368667pt;}
.y48{bottom:815.370000pt;}
.y79{bottom:815.378000pt;}
.ya2{bottom:815.379333pt;}
.y22{bottom:820.701600pt;}
.y1ca{bottom:827.613733pt;}
.y11c{bottom:832.004667pt;}
.y78{bottom:832.032667pt;}
.ycf{bottom:832.035333pt;}
.y14b{bottom:832.036667pt;}
.y47{bottom:832.038000pt;}
.y17f{bottom:832.046000pt;}
.y1c9{bottom:842.280400pt;}
.y11b{bottom:848.672667pt;}
.y77{bottom:848.700667pt;}
.yce{bottom:848.703333pt;}
.y46{bottom:848.706000pt;}
.ya1{bottom:848.712667pt;}
.y1c8{bottom:856.947067pt;}
.y11a{bottom:865.340667pt;}
.y76{bottom:865.368667pt;}
.yf1{bottom:865.371333pt;}
.y14a{bottom:865.372667pt;}
.y45{bottom:865.374000pt;}
.y17e{bottom:865.379333pt;}
.y1c7{bottom:871.613733pt;}
.y29{bottom:873.309600pt;}
.y119{bottom:882.008667pt;}
.y75{bottom:882.036667pt;}
.ycd{bottom:882.039333pt;}
.y149{bottom:882.040667pt;}
.y44{bottom:882.042000pt;}
.y1c6{bottom:886.280400pt;}
.y118{bottom:898.676667pt;}
.y155{bottom:898.704667pt;}
.ya0{bottom:898.707333pt;}
.y148{bottom:898.708667pt;}
.y43{bottom:898.710000pt;}
.y1c5{bottom:900.947067pt;}
.y32{bottom:908.178400pt;}
.y117{bottom:915.344667pt;}
.y74{bottom:915.372667pt;}
.y9f{bottom:915.375333pt;}
.y147{bottom:915.376667pt;}
.y42{bottom:915.378000pt;}
.y1c4{bottom:915.613733pt;}
.y31{bottom:927.378400pt;}
.y1c3{bottom:930.280400pt;}
.y116{bottom:932.012667pt;}
.y73{bottom:932.040667pt;}
.y9e{bottom:932.043333pt;}
.y146{bottom:932.044667pt;}
.y41{bottom:932.046000pt;}
.y1c2{bottom:944.947067pt;}
.y115{bottom:948.680667pt;}
.y72{bottom:948.708667pt;}
.y9d{bottom:948.711333pt;}
.y25{bottom:952.491200pt;}
.y1c1{bottom:959.613733pt;}
.y28{bottom:962.610667pt;}
.y114{bottom:965.348667pt;}
.y71{bottom:965.376667pt;}
.y40{bottom:965.379333pt;}
.y1c0{bottom:974.280400pt;}
.y27{bottom:975.944000pt;}
.y24{bottom:981.291200pt;}
.y26{bottom:989.277333pt;}
.y23{bottom:1010.091200pt;}
.ha{height:30.121875pt;}
.h2{height:31.062500pt;}
.h2a{height:31.083333pt;}
.he{height:31.658667pt;}
.hd{height:32.298667pt;}
.hf{height:33.468750pt;}
.h5{height:34.968750pt;}
.h3{height:38.250000pt;}
.h1b{height:39.144850pt;}
.h1e{height:39.161383pt;}
.h1c{height:39.161917pt;}
.h1f{height:39.174717pt;}
.h1d{height:39.175250pt;}
.h8{height:39.573333pt;}
.h6{height:41.994792pt;}
.h4{height:43.031250pt;}
.h10{height:43.071783pt;}
.h1a{height:45.677650pt;}
.hc{height:46.105342pt;}
.h9{height:46.105875pt;}
.h26{height:46.111208pt;}
.h16{height:46.116542pt;}
.h15{height:46.121875pt;}
.h25{height:46.127208pt;}
.h21{height:46.132542pt;}
.h14{height:46.137875pt;}
.h13{height:46.143208pt;}
.h12{height:46.148542pt;}
.h18{height:46.153875pt;}
.h17{height:46.159208pt;}
.h20{height:46.169875pt;}
.h29{height:46.170667pt;}
.h19{height:46.175208pt;}
.h22{height:46.180542pt;}
.h27{height:46.217875pt;}
.h28{height:46.223208pt;}
.h24{height:46.244542pt;}
.h23{height:46.281875pt;}
.hb{height:48.448000pt;}
.h11{height:50.368000pt;}
.h7{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x12{left:78.547467pt;}
.x18{left:81.423867pt;}
.x17{left:91.590533pt;}
.x13{left:95.370000pt;}
.x21{left:99.590533pt;}
.x1f{left:103.370000pt;}
.x10{left:123.857067pt;}
.x9{left:202.603467pt;}
.xd{left:238.619200pt;}
.x6{left:240.587467pt;}
.x19{left:246.671867pt;}
.xe{left:248.421867pt;}
.x1a{left:260.314533pt;}
.x3{left:276.956800pt;}
.xc{left:286.480533pt;}
.x8{left:287.414133pt;}
.x4{left:300.860800pt;}
.x7{left:317.046133pt;}
.xa{left:319.607733pt;}
.xf{left:321.157867pt;}
.x1b{left:323.599867pt;}
.x1c{left:332.794533pt;}
.x1d{left:341.690533pt;}
.xb{left:343.911733pt;}
.x5{left:358.484800pt;}
.x16{left:401.177867pt;}
.x11{left:404.970933pt;}
.x1{left:417.573467pt;}
.x14{left:421.420400pt;}
.x1e{left:433.633733pt;}
.x15{left:437.416400pt;}
.x22{left:441.638533pt;}
.x20{left:445.418000pt;}
}




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