
    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_ed4e3561d6e0ecbe854abd03.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_f1312f002861cd0b5e5633ae.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_63410f961f70646e78848045.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab9a7bf4998cf62627350953.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_4ec26b7c9567a421bdd0715a.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_c4cc1093afb2bb3c21c896a8.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_38ac0b0af8bf0636f3f90483.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8b7b03159f5c19890f75ab21.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6eb39885facf06cc0530aead.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_693c57519bfb8cb868047225.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0f2f6c7de72e9adb0aeeacdd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_693c57519bfb8cb868047225.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_e20df5eb5e2c82bb033b8a69.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.689453;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:ffe;src:url('chunks/assets/font_11f2123451aa9a1edc4ede96.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_94dafe996759e2d01b67055f.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.965200px;}
.v5{vertical-align:-4.370400px;}
.v3{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v1{vertical-align:17.982000px;}
.ls31{letter-spacing:-4.512000px;}
.ls1d{letter-spacing:-4.272000px;}
.lsc{letter-spacing:-3.552000px;}
.ls30{letter-spacing:-2.592000px;}
.ls21{letter-spacing:-2.304000px;}
.ls25{letter-spacing:-2.112000px;}
.ls2c{letter-spacing:-2.064000px;}
.ls16{letter-spacing:-1.584000px;}
.ls27{letter-spacing:-1.440000px;}
.ls20{letter-spacing:-1.344000px;}
.ls23{letter-spacing:-1.248000px;}
.ls2a{letter-spacing:-1.152000px;}
.ls29{letter-spacing:-0.864000px;}
.ls22{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.270000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.189000px;}
.ls24{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.132000px;}
.ls2d{letter-spacing:-0.096000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls2b{letter-spacing:0.096000px;}
.ls2e{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.192000px;}
.ls1b{letter-spacing:0.240000px;}
.ls1e{letter-spacing:0.336000px;}
.ls1c{letter-spacing:0.384000px;}
.ls32{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.480000px;}
.ls28{letter-spacing:0.528000px;}
.lsa{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.624000px;}
.ls17{letter-spacing:0.672000px;}
.ls1f{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.972600px;}
.ls12{letter-spacing:4.277400px;}
.ls2{letter-spacing:8.208000px;}
.lsd{letter-spacing:9.597000px;}
.ls13{letter-spacing:9.597600px;}
.ls14{letter-spacing:15.597000px;}
.ls10{letter-spacing:15.597600px;}
.ls11{letter-spacing:36.292200px;}
.lse{letter-spacing:48.292800px;}
.ls8{letter-spacing:275.456400px;}
.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;}
}
.wsac{word-spacing:-18.546000px;}
.ws0{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.472000px;}
.wsb0{word-spacing:-14.064000px;}
.wsad{word-spacing:-14.016000px;}
.wsae{word-spacing:-13.824000px;}
.wsea{word-spacing:-13.776000px;}
.wsaf{word-spacing:-13.680000px;}
.wsb1{word-spacing:-13.536000px;}
.wse9{word-spacing:-10.752000px;}
.ws4{word-spacing:-10.508400px;}
.ws3{word-spacing:-10.319400px;}
.wse8{word-spacing:-9.792000px;}
.ws99{word-spacing:-5.130000px;}
.ws8a{word-spacing:-4.968000px;}
.ws3a{word-spacing:-4.416000px;}
.wsca{word-spacing:-4.032000px;}
.ws95{word-spacing:-3.600000px;}
.ws9c{word-spacing:-3.348000px;}
.ws67{word-spacing:-2.970000px;}
.ws73{word-spacing:-2.916000px;}
.ws2b{word-spacing:-2.862000px;}
.ws65{word-spacing:-2.646000px;}
.ws53{word-spacing:-2.592000px;}
.wse0{word-spacing:-2.544000px;}
.ws10{word-spacing:-2.268000px;}
.wsb3{word-spacing:-2.214000px;}
.wscb{word-spacing:-2.160000px;}
.wsbf{word-spacing:-2.064000px;}
.ws60{word-spacing:-2.052000px;}
.ws18{word-spacing:-1.944000px;}
.ws13{word-spacing:-1.890000px;}
.ws8b{word-spacing:-1.836000px;}
.wsc2{word-spacing:-1.824000px;}
.ws30{word-spacing:-1.782000px;}
.wsc5{word-spacing:-1.776000px;}
.ws22{word-spacing:-1.674000px;}
.ws40{word-spacing:-1.620000px;}
.wscd{word-spacing:-1.536000px;}
.ws105{word-spacing:-1.440000px;}
.wsd0{word-spacing:-1.392000px;}
.ws2c{word-spacing:-1.350000px;}
.wsf2{word-spacing:-1.200000px;}
.ws32{word-spacing:-1.188000px;}
.wsc0{word-spacing:-1.152000px;}
.wsba{word-spacing:-1.104000px;}
.ws4e{word-spacing:-0.972000px;}
.wsd8{word-spacing:-0.912000px;}
.ws29{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.810000px;}
.ws24{word-spacing:-0.756000px;}
.wsd5{word-spacing:-0.720000px;}
.wscc{word-spacing:-0.672000px;}
.wsc4{word-spacing:-0.624000px;}
.wsb{word-spacing:-0.594000px;}
.wsc7{word-spacing:-0.576000px;}
.ws86{word-spacing:-0.540000px;}
.ws5d{word-spacing:-0.486000px;}
.ws38{word-spacing:-0.480000px;}
.ws6d{word-spacing:-0.378000px;}
.ws7a{word-spacing:-0.270000px;}
.ws39{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.wse4{word-spacing:-0.144000px;}
.ws6{word-spacing:0.000000px;}
.wsc8{word-spacing:0.048000px;}
.ws63{word-spacing:0.054000px;}
.wsf6{word-spacing:0.096000px;}
.ws79{word-spacing:0.108000px;}
.wsd4{word-spacing:0.144000px;}
.ws34{word-spacing:0.189000px;}
.ws9a{word-spacing:0.216000px;}
.wsc1{word-spacing:0.240000px;}
.ws1f{word-spacing:0.324000px;}
.ws35{word-spacing:0.378000px;}
.ws46{word-spacing:0.432000px;}
.wsbe{word-spacing:0.480000px;}
.ws4c{word-spacing:0.486000px;}
.ws1e{word-spacing:0.540000px;}
.wsde{word-spacing:0.576000px;}
.ws8c{word-spacing:0.594000px;}
.wsd6{word-spacing:0.672000px;}
.ws9e{word-spacing:0.702000px;}
.ws5e{word-spacing:0.756000px;}
.ws4d{word-spacing:0.810000px;}
.ws87{word-spacing:0.864000px;}
.ws45{word-spacing:0.918000px;}
.wsd1{word-spacing:1.008000px;}
.ws68{word-spacing:1.026000px;}
.wsfe{word-spacing:1.104000px;}
.wsc3{word-spacing:1.152000px;}
.wse{word-spacing:1.188000px;}
.ws88{word-spacing:1.242000px;}
.wscf{word-spacing:1.248000px;}
.ws61{word-spacing:1.296000px;}
.wsd2{word-spacing:1.344000px;}
.ws17{word-spacing:1.350000px;}
.ws25{word-spacing:1.404000px;}
.wsdd{word-spacing:1.440000px;}
.wsc6{word-spacing:1.488000px;}
.ws5a{word-spacing:1.512000px;}
.wsb8{word-spacing:1.536000px;}
.wsb9{word-spacing:1.584000px;}
.wsf9{word-spacing:1.632000px;}
.ws9b{word-spacing:1.674000px;}
.wse7{word-spacing:1.728000px;}
.ws4f{word-spacing:1.836000px;}
.wsa5{word-spacing:1.890000px;}
.wsaa{word-spacing:2.052000px;}
.wsf5{word-spacing:2.064000px;}
.ws9f{word-spacing:2.106000px;}
.wsda{word-spacing:2.112000px;}
.ws69{word-spacing:2.214000px;}
.wsfc{word-spacing:2.256000px;}
.wsd7{word-spacing:2.304000px;}
.ws28{word-spacing:2.322000px;}
.wsb6{word-spacing:2.352000px;}
.ws76{word-spacing:2.376000px;}
.ws80{word-spacing:2.430000px;}
.wsb7{word-spacing:2.448000px;}
.ws15{word-spacing:2.484000px;}
.wse2{word-spacing:2.592000px;}
.wsb2{word-spacing:2.700000px;}
.wsfd{word-spacing:2.736000px;}
.ws1b{word-spacing:2.754000px;}
.wsef{word-spacing:2.784000px;}
.ws11{word-spacing:2.862000px;}
.ws14{word-spacing:2.916000px;}
.ws4b{word-spacing:3.024000px;}
.wse1{word-spacing:3.072000px;}
.wsa6{word-spacing:3.078000px;}
.ws7e{word-spacing:3.294000px;}
.wsd3{word-spacing:3.312000px;}
.wsf3{word-spacing:3.360000px;}
.ws54{word-spacing:3.402000px;}
.ws103{word-spacing:3.408000px;}
.ws16{word-spacing:3.456000px;}
.wsa{word-spacing:3.510000px;}
.ws8d{word-spacing:3.552000px;}
.wsc{word-spacing:3.564000px;}
.wse3{word-spacing:3.648000px;}
.ws78{word-spacing:3.672000px;}
.ws5f{word-spacing:3.780000px;}
.wsa1{word-spacing:3.888000px;}
.ws1c{word-spacing:3.942000px;}
.ws5c{word-spacing:3.996000px;}
.wsdf{word-spacing:4.032000px;}
.ws8{word-spacing:4.050000px;}
.ws100{word-spacing:4.080000px;}
.ws3c{word-spacing:4.158000px;}
.wsff{word-spacing:4.176000px;}
.ws64{word-spacing:4.212000px;}
.wsc9{word-spacing:4.272000px;}
.ws31{word-spacing:4.320000px;}
.wsce{word-spacing:4.368000px;}
.ws41{word-spacing:4.374000px;}
.ws102{word-spacing:4.512000px;}
.ws58{word-spacing:4.590000px;}
.wsf8{word-spacing:4.752000px;}
.wsd9{word-spacing:4.800000px;}
.ws1d{word-spacing:4.806000px;}
.ws7d{word-spacing:4.860000px;}
.ws5b{word-spacing:4.914000px;}
.ws47{word-spacing:5.022000px;}
.ws6c{word-spacing:5.076000px;}
.ws55{word-spacing:5.130000px;}
.ws2f{word-spacing:5.238000px;}
.ws77{word-spacing:5.292000px;}
.wsf{word-spacing:5.400000px;}
.wsa7{word-spacing:5.508000px;}
.ws66{word-spacing:5.616000px;}
.ws19{word-spacing:5.724000px;}
.ws23{word-spacing:5.886000px;}
.ws44{word-spacing:6.048000px;}
.wsfa{word-spacing:6.096000px;}
.ws104{word-spacing:6.144000px;}
.ws89{word-spacing:6.318000px;}
.wsbd{word-spacing:6.336000px;}
.ws70{word-spacing:6.372000px;}
.ws52{word-spacing:6.426000px;}
.wse6{word-spacing:6.432000px;}
.wsa8{word-spacing:6.480000px;}
.ws48{word-spacing:6.588000px;}
.wsf7{word-spacing:6.624000px;}
.ws3d{word-spacing:6.696000px;}
.ws3f{word-spacing:6.804000px;}
.wsf1{word-spacing:6.816000px;}
.ws4a{word-spacing:6.912000px;}
.ws6a{word-spacing:6.966000px;}
.wsf4{word-spacing:7.056000px;}
.ws3e{word-spacing:7.074000px;}
.wsed{word-spacing:7.104000px;}
.ws81{word-spacing:7.182000px;}
.ws101{word-spacing:7.248000px;}
.ws2d{word-spacing:7.290000px;}
.ws43{word-spacing:7.344000px;}
.wsbb{word-spacing:7.392000px;}
.ws6b{word-spacing:7.560000px;}
.wseb{word-spacing:7.632000px;}
.ws51{word-spacing:7.668000px;}
.ws56{word-spacing:7.722000px;}
.ws37{word-spacing:7.728000px;}
.ws97{word-spacing:7.776000px;}
.wsab{word-spacing:7.884000px;}
.ws98{word-spacing:7.992000px;}
.ws49{word-spacing:8.046000px;}
.ws3b{word-spacing:8.208000px;}
.ws27{word-spacing:8.262000px;}
.ws7c{word-spacing:8.316000px;}
.ws75{word-spacing:8.694000px;}
.ws2e{word-spacing:8.802000px;}
.wsdc{word-spacing:8.880000px;}
.ws57{word-spacing:9.018000px;}
.ws50{word-spacing:9.072000px;}
.wsa4{word-spacing:9.234000px;}
.wse5{word-spacing:9.264000px;}
.ws1a{word-spacing:9.288000px;}
.ws84{word-spacing:9.558000px;}
.ws20{word-spacing:9.720000px;}
.ws6f{word-spacing:9.882000px;}
.ws2a{word-spacing:10.044000px;}
.wsa9{word-spacing:10.098000px;}
.ws74{word-spacing:10.152000px;}
.wsa2{word-spacing:10.260000px;}
.ws26{word-spacing:10.962000px;}
.wsa3{word-spacing:11.178000px;}
.wsee{word-spacing:11.472000px;}
.wsfb{word-spacing:11.520000px;}
.ws59{word-spacing:11.556000px;}
.wsb4{word-spacing:11.664000px;}
.wsec{word-spacing:11.760000px;}
.ws33{word-spacing:11.880000px;}
.ws36{word-spacing:11.988000px;}
.wsbc{word-spacing:12.384000px;}
.ws7b{word-spacing:12.582000px;}
.ws62{word-spacing:12.690000px;}
.ws9{word-spacing:12.852000px;}
.ws42{word-spacing:13.338000px;}
.ws83{word-spacing:13.392000px;}
.ws85{word-spacing:13.554000px;}
.wsf0{word-spacing:13.920000px;}
.wsa0{word-spacing:13.932000px;}
.ws7{word-spacing:14.202000px;}
.wsdb{word-spacing:14.928000px;}
.ws9d{word-spacing:15.066000px;}
.ws6e{word-spacing:16.092000px;}
.ws7f{word-spacing:16.254000px;}
.ws96{word-spacing:17.280000px;}
.ws82{word-spacing:17.604000px;}
.wsb5{word-spacing:18.900000px;}
.ws21{word-spacing:25.758000px;}
.ws90{word-spacing:49.132200px;}
.ws92{word-spacing:78.432000px;}
.ws94{word-spacing:89.164800px;}
.ws5{word-spacing:105.456000px;}
.ws8e{word-spacing:145.776000px;}
.ws71{word-spacing:199.734600px;}
.ws91{word-spacing:272.435400px;}
.ws8f{word-spacing:291.213000px;}
.ws93{word-spacing:339.155400px;}
.ws72{word-spacing:449.520000px;}
.ws1{word-spacing:1242.054000px;}
._7{margin-left:-20.082600px;}
._21{margin-left:-17.266800px;}
._20{margin-left:-15.019800px;}
._1e{margin-left:-13.716000px;}
._9{margin-left:-11.859000px;}
._6{margin-left:-6.976800px;}
._2{margin-left:-5.049000px;}
._0{margin-left:-4.006800px;}
._4{margin-left:-2.991600px;}
._1{margin-left:-1.949400px;}
._3{width:1.296000px;}
._c{width:2.503800px;}
._d{width:4.397400px;}
._e{width:5.524200px;}
._f{width:6.598800px;}
._8{width:8.256000px;}
._b{width:9.909600px;}
._11{width:11.280000px;}
._2f{width:13.106400px;}
._12{width:16.308000px;}
._5{width:19.326600px;}
._2e{width:20.530800px;}
._36{width:27.936000px;}
._35{width:29.664000px;}
._33{width:30.672000px;}
._34{width:32.898600px;}
._37{width:35.058600px;}
._31{width:54.624000px;}
._30{width:56.496000px;}
._32{width:58.770600px;}
._22{width:78.460200px;}
._1f{width:89.156400px;}
._1c{width:143.328000px;}
._1d{width:176.592000px;}
._14{width:240.240000px;}
._15{width:269.952000px;}
._24{width:342.288000px;}
._25{width:346.368000px;}
._23{width:391.584000px;}
._18{width:485.904000px;}
._1b{width:523.152000px;}
._27{width:536.544000px;}
._2a{width:548.976000px;}
._2b{width:575.520000px;}
._2d{width:579.552000px;}
._16{width:582.288000px;}
._13{width:595.680000px;}
._26{width:627.600000px;}
._28{width:707.664000px;}
._17{width:736.272000px;}
._1a{width:804.048000px;}
._29{width:831.648000px;}
._2c{width:892.752000px;}
._10{width:943.429800px;}
._19{width:970.368000px;}
._a{width:1361.538600px;}
.fc8{color:rgb(16,15,13);}
.fc9{color:rgb(29,27,25);}
.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;}
.yeb{bottom:3.310950px;}
.y3d{bottom:17.301750px;}
.y3e{bottom:46.967550px;}
.y3f{bottom:47.167950px;}
.ya3{bottom:47.171700px;}
.ya2{bottom:47.916000px;}
.y38{bottom:59.074650px;}
.y3c{bottom:59.194650px;}
.y37{bottom:77.074650px;}
.y3b{bottom:77.194650px;}
.yea{bottom:80.788500px;}
.y179{bottom:92.079900px;}
.ycf{bottom:92.247750px;}
.ya1{bottom:92.264250px;}
.y71{bottom:92.297250px;}
.y19a{bottom:92.554650px;}
.y36{bottom:95.074650px;}
.y3a{bottom:95.194650px;}
.y12a{bottom:95.871150px;}
.y178{bottom:108.579900px;}
.y199{bottom:109.054650px;}
.yce{bottom:110.999250px;}
.ya0{bottom:111.015750px;}
.yed{bottom:111.042300px;}
.y70{bottom:111.048750px;}
.y129{bottom:112.371150px;}
.y35{bottom:113.074650px;}
.y39{bottom:113.194650px;}
.yef{bottom:122.595600px;}
.y177{bottom:125.079900px;}
.y198{bottom:125.554650px;}
.yee{bottom:127.524600px;}
.ycd{bottom:129.750750px;}
.y9f{bottom:129.767250px;}
.y6f{bottom:129.800250px;}
.y128{bottom:133.107150px;}
.yf0{bottom:139.251600px;}
.y176{bottom:141.579900px;}
.y197{bottom:142.054650px;}
.ycc{bottom:148.502250px;}
.y9e{bottom:148.518750px;}
.y6e{bottom:148.544250px;}
.y127{bottom:153.843150px;}
.yf1{bottom:154.023600px;}
.y175{bottom:158.079900px;}
.y196{bottom:158.554650px;}
.y2d{bottom:159.373050px;}
.yf2{bottom:167.235600px;}
.ycb{bottom:167.253750px;}
.y9d{bottom:167.270250px;}
.y6d{bottom:167.295750px;}
.y126{bottom:174.579150px;}
.y174{bottom:174.579900px;}
.y195{bottom:175.054650px;}
.yf3{bottom:182.391600px;}
.yca{bottom:186.005250px;}
.y9c{bottom:186.021750px;}
.y6c{bottom:186.047250px;}
.y173{bottom:191.079900px;}
.y194{bottom:191.554650px;}
.y125{bottom:195.315150px;}
.yf4{bottom:197.115600px;}
.yc9{bottom:204.756750px;}
.y9b{bottom:204.773250px;}
.y6b{bottom:204.798750px;}
.y172{bottom:207.579900px;}
.y193{bottom:208.054650px;}
.yf5{bottom:211.311600px;}
.y124{bottom:216.051150px;}
.y31{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.yc8{bottom:223.508250px;}
.y9a{bottom:223.524750px;}
.y6a{bottom:223.550250px;}
.y171{bottom:224.079900px;}
.y192{bottom:224.554650px;}
.yf6{bottom:224.967600px;}
.y30{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.yf7{bottom:239.739600px;}
.y170{bottom:240.579900px;}
.y191{bottom:241.054650px;}
.yc7{bottom:242.259750px;}
.y99{bottom:242.276250px;}
.y69{bottom:242.291250px;}
.y2f{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.yf8{bottom:254.451600px;}
.y16f{bottom:257.079900px;}
.y190{bottom:257.554650px;}
.yc6{bottom:261.011250px;}
.y98{bottom:261.027750px;}
.y68{bottom:261.042750px;}
.y123{bottom:261.044250px;}
.yf9{bottom:268.107600px;}
.y2e{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y16e{bottom:273.579900px;}
.y18f{bottom:274.054650px;}
.yc5{bottom:279.762750px;}
.y97{bottom:279.779250px;}
.y67{bottom:279.794250px;}
.y122{bottom:279.795750px;}
.yfa{bottom:282.831600px;}
.y16d{bottom:290.079900px;}
.y18e{bottom:290.554650px;}
.yfb{bottom:297.447600px;}
.yc4{bottom:298.514250px;}
.y96{bottom:298.530750px;}
.y66{bottom:298.545750px;}
.y121{bottom:298.547250px;}
.y16c{bottom:306.579900px;}
.y18d{bottom:307.054650px;}
.yfc{bottom:312.171600px;}
.y95{bottom:317.282250px;}
.y65{bottom:317.297250px;}
.y120{bottom:317.298750px;}
.y16b{bottom:323.079900px;}
.y18c{bottom:323.554650px;}
.y34{bottom:325.473450px;}
.yfd{bottom:326.055600px;}
.yc3{bottom:336.017250px;}
.y64{bottom:336.048750px;}
.y11f{bottom:336.050250px;}
.yec{bottom:338.275350px;}
.y16a{bottom:339.579900px;}
.y18b{bottom:340.054650px;}
.yfe{bottom:340.779600px;}
.yc2{bottom:354.768750px;}
.y94{bottom:354.785250px;}
.y142{bottom:354.800250px;}
.y11e{bottom:354.801750px;}
.yff{bottom:355.395600px;}
.y169{bottom:356.079900px;}
.y18a{bottom:356.554650px;}
.y100{bottom:370.119600px;}
.y168{bottom:372.579900px;}
.y189{bottom:373.054650px;}
.yc1{bottom:373.520250px;}
.y93{bottom:373.536750px;}
.y63{bottom:373.544250px;}
.y141{bottom:373.545750px;}
.y101{bottom:384.111600px;}
.y167{bottom:389.079900px;}
.y188{bottom:389.554650px;}
.y11d{bottom:392.274750px;}
.y92{bottom:392.288250px;}
.y62{bottom:392.295750px;}
.y140{bottom:392.297250px;}
.y102{bottom:398.835600px;}
.y166{bottom:405.579900px;}
.y187{bottom:406.054650px;}
.yc0{bottom:411.023250px;}
.y11c{bottom:411.026250px;}
.y91{bottom:411.039750px;}
.y61{bottom:411.047250px;}
.y13f{bottom:411.048750px;}
.y2c{bottom:412.474800px;}
.y165{bottom:422.079900px;}
.y186{bottom:422.554650px;}
.ybf{bottom:429.774750px;}
.y11b{bottom:429.777750px;}
.y60{bottom:429.798750px;}
.y13e{bottom:429.800250px;}
.y2b{bottom:431.968800px;}
.y164{bottom:438.579900px;}
.y185{bottom:439.054650px;}
.y2a{bottom:442.474800px;}
.ybe{bottom:448.526250px;}
.y11a{bottom:448.529250px;}
.y90{bottom:448.542750px;}
.y5f{bottom:448.550250px;}
.y13d{bottom:448.551750px;}
.y163{bottom:455.079900px;}
.y184{bottom:455.554650px;}
.ye9{bottom:458.565600px;}
.y29{bottom:461.964600px;}
.ybd{bottom:467.277750px;}
.y119{bottom:467.280750px;}
.y8f{bottom:467.294250px;}
.y5e{bottom:467.297250px;}
.y162{bottom:471.579900px;}
.y183{bottom:472.054650px;}
.y22{bottom:483.765450px;}
.ybc{bottom:486.029250px;}
.y118{bottom:486.032250px;}
.y8e{bottom:486.045750px;}
.y13c{bottom:486.047250px;}
.y5d{bottom:486.048750px;}
.y161{bottom:488.079900px;}
.y182{bottom:488.554650px;}
.y20{bottom:498.763950px;}
.y160{bottom:504.579900px;}
.ye8{bottom:504.768750px;}
.ybb{bottom:504.780750px;}
.y117{bottom:504.783750px;}
.y8d{bottom:504.797250px;}
.y13b{bottom:504.798750px;}
.y5c{bottom:504.800250px;}
.y181{bottom:505.054650px;}
.y1f{bottom:513.762450px;}
.y15f{bottom:521.079900px;}
.y180{bottom:521.554650px;}
.ye7{bottom:523.520250px;}
.yba{bottom:523.532250px;}
.y116{bottom:523.535250px;}
.y8c{bottom:523.548750px;}
.y13a{bottom:523.550250px;}
.y5b{bottom:523.551750px;}
.y1e{bottom:528.760950px;}
.y15e{bottom:537.579900px;}
.y17f{bottom:538.054650px;}
.ye6{bottom:542.271750px;}
.yb9{bottom:542.283750px;}
.y115{bottom:542.286750px;}
.y8b{bottom:542.300250px;}
.y139{bottom:542.301750px;}
.y1d{bottom:543.759450px;}
.y15d{bottom:554.079900px;}
.y17e{bottom:554.554650px;}
.y1c{bottom:558.757950px;}
.yb8{bottom:561.035250px;}
.y114{bottom:561.038250px;}
.y138{bottom:561.044250px;}
.y5a{bottom:561.045750px;}
.y8a{bottom:561.051750px;}
.y15c{bottom:570.579900px;}
.y17d{bottom:571.054650px;}
.y1b{bottom:573.756450px;}
.ye5{bottom:579.774750px;}
.yb7{bottom:579.786750px;}
.y137{bottom:579.795750px;}
.y59{bottom:579.797250px;}
.y15b{bottom:587.079900px;}
.y17c{bottom:587.554650px;}
.y1a{bottom:588.754950px;}
.ye4{bottom:598.526250px;}
.yb6{bottom:598.538250px;}
.y113{bottom:598.541250px;}
.y136{bottom:598.547250px;}
.y58{bottom:598.548750px;}
.y89{bottom:598.551750px;}
.y19{bottom:603.753450px;}
.y17b{bottom:604.054650px;}
.ye3{bottom:617.277750px;}
.yb5{bottom:617.289750px;}
.y112{bottom:617.292750px;}
.y135{bottom:617.298750px;}
.y57{bottom:617.300250px;}
.y18{bottom:618.751950px;}
.y15a{bottom:620.079900px;}
.y17a{bottom:620.554650px;}
.y17{bottom:633.750450px;}
.yb4{bottom:636.041250px;}
.y111{bottom:636.044250px;}
.y56{bottom:636.048750px;}
.y134{bottom:636.050250px;}
.y16{bottom:648.748950px;}
.ye2{bottom:654.780750px;}
.yb3{bottom:654.792750px;}
.y88{bottom:654.795750px;}
.y55{bottom:654.800250px;}
.y133{bottom:654.801750px;}
.y15{bottom:663.747450px;}
.ye1{bottom:673.532250px;}
.yb2{bottom:673.544250px;}
.y87{bottom:673.547250px;}
.y54{bottom:673.551750px;}
.y14{bottom:678.745950px;}
.y14f{bottom:692.282250px;}
.y53{bottom:692.291250px;}
.y132{bottom:692.292750px;}
.yb1{bottom:692.295750px;}
.y86{bottom:692.298750px;}
.y13{bottom:693.744450px;}
.y159{bottom:694.793850px;}
.y12{bottom:708.742950px;}
.y14e{bottom:711.033750px;}
.ye0{bottom:711.035250px;}
.y52{bottom:711.042750px;}
.y131{bottom:711.044250px;}
.yb0{bottom:711.047250px;}
.y85{bottom:711.050250px;}
.y158{bottom:711.293850px;}
.y1b2{bottom:716.565450px;}
.y11{bottom:723.741450px;}
.y157{bottom:727.793850px;}
.y14d{bottom:729.785250px;}
.ydf{bottom:729.786750px;}
.y51{bottom:729.794250px;}
.y84{bottom:729.795750px;}
.yaf{bottom:729.798750px;}
.y110{bottom:729.801750px;}
.y1b1{bottom:733.065450px;}
.y10{bottom:738.739950px;}
.y156{bottom:744.293850px;}
.y14c{bottom:748.536750px;}
.yde{bottom:748.538250px;}
.y50{bottom:748.545750px;}
.y83{bottom:748.547250px;}
.yae{bottom:748.550250px;}
.y1b0{bottom:749.565450px;}
.yf{bottom:753.738450px;}
.y155{bottom:760.793850px;}
.y1af{bottom:766.065450px;}
.yad{bottom:767.282250px;}
.y14b{bottom:767.288250px;}
.ydd{bottom:767.289750px;}
.y4f{bottom:767.297250px;}
.y82{bottom:767.298750px;}
.y10f{bottom:767.301750px;}
.ye{bottom:768.736950px;}
.y1ae{bottom:782.565450px;}
.yd{bottom:783.735450px;}
.yac{bottom:786.033750px;}
.y14a{bottom:786.039750px;}
.ydc{bottom:786.041250px;}
.y4e{bottom:786.048750px;}
.y81{bottom:786.050250px;}
.yc{bottom:798.733950px;}
.y1ad{bottom:799.065450px;}
.yab{bottom:804.785250px;}
.ydb{bottom:804.792750px;}
.y4d{bottom:804.800250px;}
.y80{bottom:804.801750px;}
.yb{bottom:813.732450px;}
.y1ac{bottom:815.565450px;}
.yaa{bottom:823.536750px;}
.y149{bottom:823.542750px;}
.y4c{bottom:823.548750px;}
.ya{bottom:828.730950px;}
.y1ab{bottom:832.065450px;}
.y10e{bottom:833.107800px;}
.y7f{bottom:842.286750px;}
.ya9{bottom:842.288250px;}
.y148{bottom:842.294250px;}
.yda{bottom:842.295750px;}
.y130{bottom:842.297250px;}
.y4b{bottom:842.300250px;}
.y9{bottom:843.729450px;}
.y1aa{bottom:848.565450px;}
.y10d{bottom:854.936100px;}
.y8{bottom:858.727950px;}
.y7e{bottom:861.038250px;}
.y4a{bottom:861.039750px;}
.y147{bottom:861.045750px;}
.yd9{bottom:861.047250px;}
.y12f{bottom:861.048750px;}
.y154{bottom:861.051750px;}
.y1a9{bottom:865.065450px;}
.y7{bottom:873.726450px;}
.y10c{bottom:876.764550px;}
.y7d{bottom:879.789750px;}
.y49{bottom:879.791250px;}
.y146{bottom:879.797250px;}
.yd8{bottom:879.798750px;}
.y12e{bottom:879.800250px;}
.y1a8{bottom:881.565450px;}
.y6{bottom:888.724950px;}
.y1a7{bottom:898.065450px;}
.y7c{bottom:898.541250px;}
.y48{bottom:898.542750px;}
.y12d{bottom:898.548750px;}
.yd7{bottom:898.550250px;}
.y153{bottom:898.551750px;}
.y10b{bottom:898.593150px;}
.y5{bottom:903.723450px;}
.y1a6{bottom:914.565450px;}
.y7b{bottom:917.292750px;}
.y47{bottom:917.294250px;}
.y12c{bottom:917.300250px;}
.yd6{bottom:917.301750px;}
.y10a{bottom:919.329150px;}
.y21{bottom:923.289300px;}
.y1a5{bottom:931.065450px;}
.y7a{bottom:936.044250px;}
.y46{bottom:936.045750px;}
.y12b{bottom:936.051750px;}
.y109{bottom:940.065150px;}
.y1a4{bottom:947.565450px;}
.y152{bottom:954.794250px;}
.y79{bottom:954.795750px;}
.y45{bottom:954.797250px;}
.yd5{bottom:954.801750px;}
.y1a3{bottom:964.065450px;}
.y145{bottom:973.542750px;}
.y151{bottom:973.545750px;}
.y78{bottom:973.547250px;}
.y44{bottom:973.548750px;}
.y1a2{bottom:980.565450px;}
.y28{bottom:982.473300px;}
.y108{bottom:990.621450px;}
.y144{bottom:992.294250px;}
.y150{bottom:992.297250px;}
.y77{bottom:992.298750px;}
.ya8{bottom:992.300250px;}
.y1a1{bottom:997.065450px;}
.y107{bottom:1007.121450px;}
.yd4{bottom:1010.990250px;}
.y143{bottom:1011.045750px;}
.y43{bottom:1011.048750px;}
.y76{bottom:1011.050250px;}
.ya7{bottom:1011.051750px;}
.y1a0{bottom:1013.565450px;}
.y33{bottom:1021.700700px;}
.y106{bottom:1027.857450px;}
.yd3{bottom:1029.741750px;}
.y75{bottom:1029.791250px;}
.ya6{bottom:1029.797250px;}
.y42{bottom:1029.800250px;}
.y19f{bottom:1030.065450px;}
.y32{bottom:1043.300700px;}
.y19e{bottom:1046.565450px;}
.yd2{bottom:1048.493250px;}
.y74{bottom:1048.542750px;}
.ya5{bottom:1048.548750px;}
.y41{bottom:1048.551750px;}
.y105{bottom:1048.593450px;}
.y19d{bottom:1063.065450px;}
.yd1{bottom:1067.244750px;}
.y73{bottom:1067.294250px;}
.ya4{bottom:1067.300250px;}
.y104{bottom:1069.329450px;}
.y24{bottom:1072.903050px;}
.y19c{bottom:1079.565450px;}
.y27{bottom:1082.937000px;}
.yd0{bottom:1085.996250px;}
.y72{bottom:1086.045750px;}
.y40{bottom:1086.051750px;}
.y103{bottom:1090.065450px;}
.y19b{bottom:1096.065450px;}
.y26{bottom:1097.937000px;}
.y23{bottom:1105.303050px;}
.y25{bottom:1112.937000px;}
.h1c{height:32.648438px;}
.h9{height:33.887109px;}
.h2{height:34.945312px;}
.h1e{height:34.968750px;}
.hd{height:35.616000px;}
.hc{height:36.336000px;}
.he{height:37.652344px;}
.h11{height:39.339844px;}
.h3{height:43.031250px;}
.h1f{height:44.039756px;}
.h20{height:44.040356px;}
.h21{height:44.040956px;}
.h7{height:44.520000px;}
.h1d{height:45.815250px;}
.h5{height:47.244141px;}
.h4{height:48.410156px;}
.hf{height:48.455756px;}
.h19{height:51.387356px;}
.hb{height:51.868509px;}
.h8{height:51.869109px;}
.h12{height:51.881109px;}
.h16{height:51.887109px;}
.h15{height:51.893109px;}
.h17{height:51.899109px;}
.h23{height:51.905109px;}
.h14{height:51.911109px;}
.h13{height:51.917109px;}
.h18{height:51.929109px;}
.h24{height:51.942000px;}
.h1a{height:51.947109px;}
.h22{height:51.977109px;}
.ha{height:54.504000px;}
.h10{height:56.664000px;}
.h6{height:81.756000px;}
.h1b{height:349.012500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:355.041000px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x1d{left:10.471200px;}
.x1b{left:78.105900px;}
.x2{left:85.039500px;}
.x12{left:88.365900px;}
.x13{left:89.425200px;}
.x20{left:95.853750px;}
.x18{left:103.034850px;}
.x14{left:107.425200px;}
.x21{left:112.039350px;}
.x23{left:116.291250px;}
.x10{left:139.339200px;}
.x1a{left:165.454500px;}
.xe{left:232.518600px;}
.xd{left:258.810600px;}
.x3{left:263.815050px;}
.x9{left:266.640900px;}
.x5{left:270.660900px;}
.x4{left:286.657050px;}
.xc{left:322.290600px;}
.x6{left:356.676900px;}
.xf{left:360.390600px;}
.x7{left:382.032900px;}
.x8{left:388.704900px;}
.xa{left:445.130100px;}
.x17{left:451.325100px;}
.x11{left:455.592300px;}
.x1{left:469.770150px;}
.x15{left:474.091800px;}
.xb{left:484.478100px;}
.x19{left:487.836600px;}
.x16{left:492.094350px;}
.x1f{left:494.026650px;}
.x22{left:496.842450px;}
.x1e{left:500.698650px;}
.x1c{left:565.912050px;}
@media print{
.v2{vertical-align:-15.969067pt;}
.v5{vertical-align:-3.884800pt;}
.v3{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v1{vertical-align:15.984000pt;}
.ls31{letter-spacing:-4.010667pt;}
.ls1d{letter-spacing:-3.797333pt;}
.lsc{letter-spacing:-3.157333pt;}
.ls30{letter-spacing:-2.304000pt;}
.ls21{letter-spacing:-2.048000pt;}
.ls25{letter-spacing:-1.877333pt;}
.ls2c{letter-spacing:-1.834667pt;}
.ls16{letter-spacing:-1.408000pt;}
.ls27{letter-spacing:-1.280000pt;}
.ls20{letter-spacing:-1.194667pt;}
.ls23{letter-spacing:-1.109333pt;}
.ls2a{letter-spacing:-1.024000pt;}
.ls29{letter-spacing:-0.768000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.168000pt;}
.ls24{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.117333pt;}
.ls2d{letter-spacing:-0.085333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls2b{letter-spacing:0.085333pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.170667pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls1e{letter-spacing:0.298667pt;}
.ls1c{letter-spacing:0.341333pt;}
.ls32{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls28{letter-spacing:0.469333pt;}
.lsa{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.554667pt;}
.ls17{letter-spacing:0.597333pt;}
.ls1f{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.864533pt;}
.ls12{letter-spacing:3.802133pt;}
.ls2{letter-spacing:7.296000pt;}
.lsd{letter-spacing:8.530667pt;}
.ls13{letter-spacing:8.531200pt;}
.ls14{letter-spacing:13.864000pt;}
.ls10{letter-spacing:13.864533pt;}
.ls11{letter-spacing:32.259733pt;}
.lse{letter-spacing:42.926933pt;}
.ls8{letter-spacing:244.850133pt;}
.wsac{word-spacing:-16.485333pt;}
.ws0{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.864000pt;}
.wsb0{word-spacing:-12.501333pt;}
.wsad{word-spacing:-12.458667pt;}
.wsae{word-spacing:-12.288000pt;}
.wsea{word-spacing:-12.245333pt;}
.wsaf{word-spacing:-12.160000pt;}
.wsb1{word-spacing:-12.032000pt;}
.wse9{word-spacing:-9.557333pt;}
.ws4{word-spacing:-9.340800pt;}
.ws3{word-spacing:-9.172800pt;}
.wse8{word-spacing:-8.704000pt;}
.ws99{word-spacing:-4.560000pt;}
.ws8a{word-spacing:-4.416000pt;}
.ws3a{word-spacing:-3.925333pt;}
.wsca{word-spacing:-3.584000pt;}
.ws95{word-spacing:-3.200000pt;}
.ws9c{word-spacing:-2.976000pt;}
.ws67{word-spacing:-2.640000pt;}
.ws73{word-spacing:-2.592000pt;}
.ws2b{word-spacing:-2.544000pt;}
.ws65{word-spacing:-2.352000pt;}
.ws53{word-spacing:-2.304000pt;}
.wse0{word-spacing:-2.261333pt;}
.ws10{word-spacing:-2.016000pt;}
.wsb3{word-spacing:-1.968000pt;}
.wscb{word-spacing:-1.920000pt;}
.wsbf{word-spacing:-1.834667pt;}
.ws60{word-spacing:-1.824000pt;}
.ws18{word-spacing:-1.728000pt;}
.ws13{word-spacing:-1.680000pt;}
.ws8b{word-spacing:-1.632000pt;}
.wsc2{word-spacing:-1.621333pt;}
.ws30{word-spacing:-1.584000pt;}
.wsc5{word-spacing:-1.578667pt;}
.ws22{word-spacing:-1.488000pt;}
.ws40{word-spacing:-1.440000pt;}
.wscd{word-spacing:-1.365333pt;}
.ws105{word-spacing:-1.280000pt;}
.wsd0{word-spacing:-1.237333pt;}
.ws2c{word-spacing:-1.200000pt;}
.wsf2{word-spacing:-1.066667pt;}
.ws32{word-spacing:-1.056000pt;}
.wsc0{word-spacing:-1.024000pt;}
.wsba{word-spacing:-0.981333pt;}
.ws4e{word-spacing:-0.864000pt;}
.wsd8{word-spacing:-0.810667pt;}
.ws29{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.720000pt;}
.ws24{word-spacing:-0.672000pt;}
.wsd5{word-spacing:-0.640000pt;}
.wscc{word-spacing:-0.597333pt;}
.wsc4{word-spacing:-0.554667pt;}
.wsb{word-spacing:-0.528000pt;}
.wsc7{word-spacing:-0.512000pt;}
.ws86{word-spacing:-0.480000pt;}
.ws5d{word-spacing:-0.432000pt;}
.ws38{word-spacing:-0.426667pt;}
.ws6d{word-spacing:-0.336000pt;}
.ws7a{word-spacing:-0.240000pt;}
.ws39{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.wse4{word-spacing:-0.128000pt;}
.ws6{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.042667pt;}
.ws63{word-spacing:0.048000pt;}
.wsf6{word-spacing:0.085333pt;}
.ws79{word-spacing:0.096000pt;}
.wsd4{word-spacing:0.128000pt;}
.ws34{word-spacing:0.168000pt;}
.ws9a{word-spacing:0.192000pt;}
.wsc1{word-spacing:0.213333pt;}
.ws1f{word-spacing:0.288000pt;}
.ws35{word-spacing:0.336000pt;}
.ws46{word-spacing:0.384000pt;}
.wsbe{word-spacing:0.426667pt;}
.ws4c{word-spacing:0.432000pt;}
.ws1e{word-spacing:0.480000pt;}
.wsde{word-spacing:0.512000pt;}
.ws8c{word-spacing:0.528000pt;}
.wsd6{word-spacing:0.597333pt;}
.ws9e{word-spacing:0.624000pt;}
.ws5e{word-spacing:0.672000pt;}
.ws4d{word-spacing:0.720000pt;}
.ws87{word-spacing:0.768000pt;}
.ws45{word-spacing:0.816000pt;}
.wsd1{word-spacing:0.896000pt;}
.ws68{word-spacing:0.912000pt;}
.wsfe{word-spacing:0.981333pt;}
.wsc3{word-spacing:1.024000pt;}
.wse{word-spacing:1.056000pt;}
.ws88{word-spacing:1.104000pt;}
.wscf{word-spacing:1.109333pt;}
.ws61{word-spacing:1.152000pt;}
.wsd2{word-spacing:1.194667pt;}
.ws17{word-spacing:1.200000pt;}
.ws25{word-spacing:1.248000pt;}
.wsdd{word-spacing:1.280000pt;}
.wsc6{word-spacing:1.322667pt;}
.ws5a{word-spacing:1.344000pt;}
.wsb8{word-spacing:1.365333pt;}
.wsb9{word-spacing:1.408000pt;}
.wsf9{word-spacing:1.450667pt;}
.ws9b{word-spacing:1.488000pt;}
.wse7{word-spacing:1.536000pt;}
.ws4f{word-spacing:1.632000pt;}
.wsa5{word-spacing:1.680000pt;}
.wsaa{word-spacing:1.824000pt;}
.wsf5{word-spacing:1.834667pt;}
.ws9f{word-spacing:1.872000pt;}
.wsda{word-spacing:1.877333pt;}
.ws69{word-spacing:1.968000pt;}
.wsfc{word-spacing:2.005333pt;}
.wsd7{word-spacing:2.048000pt;}
.ws28{word-spacing:2.064000pt;}
.wsb6{word-spacing:2.090667pt;}
.ws76{word-spacing:2.112000pt;}
.ws80{word-spacing:2.160000pt;}
.wsb7{word-spacing:2.176000pt;}
.ws15{word-spacing:2.208000pt;}
.wse2{word-spacing:2.304000pt;}
.wsb2{word-spacing:2.400000pt;}
.wsfd{word-spacing:2.432000pt;}
.ws1b{word-spacing:2.448000pt;}
.wsef{word-spacing:2.474667pt;}
.ws11{word-spacing:2.544000pt;}
.ws14{word-spacing:2.592000pt;}
.ws4b{word-spacing:2.688000pt;}
.wse1{word-spacing:2.730667pt;}
.wsa6{word-spacing:2.736000pt;}
.ws7e{word-spacing:2.928000pt;}
.wsd3{word-spacing:2.944000pt;}
.wsf3{word-spacing:2.986667pt;}
.ws54{word-spacing:3.024000pt;}
.ws103{word-spacing:3.029333pt;}
.ws16{word-spacing:3.072000pt;}
.wsa{word-spacing:3.120000pt;}
.ws8d{word-spacing:3.157333pt;}
.wsc{word-spacing:3.168000pt;}
.wse3{word-spacing:3.242667pt;}
.ws78{word-spacing:3.264000pt;}
.ws5f{word-spacing:3.360000pt;}
.wsa1{word-spacing:3.456000pt;}
.ws1c{word-spacing:3.504000pt;}
.ws5c{word-spacing:3.552000pt;}
.wsdf{word-spacing:3.584000pt;}
.ws8{word-spacing:3.600000pt;}
.ws100{word-spacing:3.626667pt;}
.ws3c{word-spacing:3.696000pt;}
.wsff{word-spacing:3.712000pt;}
.ws64{word-spacing:3.744000pt;}
.wsc9{word-spacing:3.797333pt;}
.ws31{word-spacing:3.840000pt;}
.wsce{word-spacing:3.882667pt;}
.ws41{word-spacing:3.888000pt;}
.ws102{word-spacing:4.010667pt;}
.ws58{word-spacing:4.080000pt;}
.wsf8{word-spacing:4.224000pt;}
.wsd9{word-spacing:4.266667pt;}
.ws1d{word-spacing:4.272000pt;}
.ws7d{word-spacing:4.320000pt;}
.ws5b{word-spacing:4.368000pt;}
.ws47{word-spacing:4.464000pt;}
.ws6c{word-spacing:4.512000pt;}
.ws55{word-spacing:4.560000pt;}
.ws2f{word-spacing:4.656000pt;}
.ws77{word-spacing:4.704000pt;}
.wsf{word-spacing:4.800000pt;}
.wsa7{word-spacing:4.896000pt;}
.ws66{word-spacing:4.992000pt;}
.ws19{word-spacing:5.088000pt;}
.ws23{word-spacing:5.232000pt;}
.ws44{word-spacing:5.376000pt;}
.wsfa{word-spacing:5.418667pt;}
.ws104{word-spacing:5.461333pt;}
.ws89{word-spacing:5.616000pt;}
.wsbd{word-spacing:5.632000pt;}
.ws70{word-spacing:5.664000pt;}
.ws52{word-spacing:5.712000pt;}
.wse6{word-spacing:5.717333pt;}
.wsa8{word-spacing:5.760000pt;}
.ws48{word-spacing:5.856000pt;}
.wsf7{word-spacing:5.888000pt;}
.ws3d{word-spacing:5.952000pt;}
.ws3f{word-spacing:6.048000pt;}
.wsf1{word-spacing:6.058667pt;}
.ws4a{word-spacing:6.144000pt;}
.ws6a{word-spacing:6.192000pt;}
.wsf4{word-spacing:6.272000pt;}
.ws3e{word-spacing:6.288000pt;}
.wsed{word-spacing:6.314667pt;}
.ws81{word-spacing:6.384000pt;}
.ws101{word-spacing:6.442667pt;}
.ws2d{word-spacing:6.480000pt;}
.ws43{word-spacing:6.528000pt;}
.wsbb{word-spacing:6.570667pt;}
.ws6b{word-spacing:6.720000pt;}
.wseb{word-spacing:6.784000pt;}
.ws51{word-spacing:6.816000pt;}
.ws56{word-spacing:6.864000pt;}
.ws37{word-spacing:6.869333pt;}
.ws97{word-spacing:6.912000pt;}
.wsab{word-spacing:7.008000pt;}
.ws98{word-spacing:7.104000pt;}
.ws49{word-spacing:7.152000pt;}
.ws3b{word-spacing:7.296000pt;}
.ws27{word-spacing:7.344000pt;}
.ws7c{word-spacing:7.392000pt;}
.ws75{word-spacing:7.728000pt;}
.ws2e{word-spacing:7.824000pt;}
.wsdc{word-spacing:7.893333pt;}
.ws57{word-spacing:8.016000pt;}
.ws50{word-spacing:8.064000pt;}
.wsa4{word-spacing:8.208000pt;}
.wse5{word-spacing:8.234667pt;}
.ws1a{word-spacing:8.256000pt;}
.ws84{word-spacing:8.496000pt;}
.ws20{word-spacing:8.640000pt;}
.ws6f{word-spacing:8.784000pt;}
.ws2a{word-spacing:8.928000pt;}
.wsa9{word-spacing:8.976000pt;}
.ws74{word-spacing:9.024000pt;}
.wsa2{word-spacing:9.120000pt;}
.ws26{word-spacing:9.744000pt;}
.wsa3{word-spacing:9.936000pt;}
.wsee{word-spacing:10.197333pt;}
.wsfb{word-spacing:10.240000pt;}
.ws59{word-spacing:10.272000pt;}
.wsb4{word-spacing:10.368000pt;}
.wsec{word-spacing:10.453333pt;}
.ws33{word-spacing:10.560000pt;}
.ws36{word-spacing:10.656000pt;}
.wsbc{word-spacing:11.008000pt;}
.ws7b{word-spacing:11.184000pt;}
.ws62{word-spacing:11.280000pt;}
.ws9{word-spacing:11.424000pt;}
.ws42{word-spacing:11.856000pt;}
.ws83{word-spacing:11.904000pt;}
.ws85{word-spacing:12.048000pt;}
.wsf0{word-spacing:12.373333pt;}
.wsa0{word-spacing:12.384000pt;}
.ws7{word-spacing:12.624000pt;}
.wsdb{word-spacing:13.269333pt;}
.ws9d{word-spacing:13.392000pt;}
.ws6e{word-spacing:14.304000pt;}
.ws7f{word-spacing:14.448000pt;}
.ws96{word-spacing:15.360000pt;}
.ws82{word-spacing:15.648000pt;}
.wsb5{word-spacing:16.800000pt;}
.ws21{word-spacing:22.896000pt;}
.ws90{word-spacing:43.673067pt;}
.ws92{word-spacing:69.717333pt;}
.ws94{word-spacing:79.257600pt;}
.ws5{word-spacing:93.738667pt;}
.ws8e{word-spacing:129.578667pt;}
.ws71{word-spacing:177.541867pt;}
.ws91{word-spacing:242.164800pt;}
.ws8f{word-spacing:258.856000pt;}
.ws93{word-spacing:301.471467pt;}
.ws72{word-spacing:399.573333pt;}
.ws1{word-spacing:1104.048000pt;}
._7{margin-left:-17.851200pt;}
._21{margin-left:-15.348267pt;}
._20{margin-left:-13.350933pt;}
._1e{margin-left:-12.192000pt;}
._9{margin-left:-10.541333pt;}
._6{margin-left:-6.201600pt;}
._2{margin-left:-4.488000pt;}
._0{margin-left:-3.561600pt;}
._4{margin-left:-2.659200pt;}
._1{margin-left:-1.732800pt;}
._3{width:1.152000pt;}
._c{width:2.225600pt;}
._d{width:3.908800pt;}
._e{width:4.910400pt;}
._f{width:5.865600pt;}
._8{width:7.338667pt;}
._b{width:8.808533pt;}
._11{width:10.026667pt;}
._2f{width:11.650133pt;}
._12{width:14.496000pt;}
._5{width:17.179200pt;}
._2e{width:18.249600pt;}
._36{width:24.832000pt;}
._35{width:26.368000pt;}
._33{width:27.264000pt;}
._34{width:29.243200pt;}
._37{width:31.163200pt;}
._31{width:48.554667pt;}
._30{width:50.218667pt;}
._32{width:52.240533pt;}
._22{width:69.742400pt;}
._1f{width:79.250133pt;}
._1c{width:127.402667pt;}
._1d{width:156.970667pt;}
._14{width:213.546667pt;}
._15{width:239.957333pt;}
._24{width:304.256000pt;}
._25{width:307.882667pt;}
._23{width:348.074667pt;}
._18{width:431.914667pt;}
._1b{width:465.024000pt;}
._27{width:476.928000pt;}
._2a{width:487.978667pt;}
._2b{width:511.573333pt;}
._2d{width:515.157333pt;}
._16{width:517.589333pt;}
._13{width:529.493333pt;}
._26{width:557.866667pt;}
._28{width:629.034667pt;}
._17{width:654.464000pt;}
._1a{width:714.709333pt;}
._29{width:739.242667pt;}
._2c{width:793.557333pt;}
._10{width:838.604267pt;}
._19{width:862.549333pt;}
._a{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;}
.yeb{bottom:2.943067pt;}
.y3d{bottom:15.379333pt;}
.y3e{bottom:41.748933pt;}
.y3f{bottom:41.927067pt;}
.ya3{bottom:41.930400pt;}
.ya2{bottom:42.592000pt;}
.y38{bottom:52.510800pt;}
.y3c{bottom:52.617467pt;}
.y37{bottom:68.510800pt;}
.y3b{bottom:68.617467pt;}
.yea{bottom:71.812000pt;}
.y179{bottom:81.848800pt;}
.ycf{bottom:81.998000pt;}
.ya1{bottom:82.012667pt;}
.y71{bottom:82.042000pt;}
.y19a{bottom:82.270800pt;}
.y36{bottom:84.510800pt;}
.y3a{bottom:84.617467pt;}
.y12a{bottom:85.218800pt;}
.y178{bottom:96.515467pt;}
.y199{bottom:96.937467pt;}
.yce{bottom:98.666000pt;}
.ya0{bottom:98.680667pt;}
.yed{bottom:98.704267pt;}
.y70{bottom:98.710000pt;}
.y129{bottom:99.885467pt;}
.y35{bottom:100.510800pt;}
.y39{bottom:100.617467pt;}
.yef{bottom:108.973867pt;}
.y177{bottom:111.182133pt;}
.y198{bottom:111.604133pt;}
.yee{bottom:113.355200pt;}
.ycd{bottom:115.334000pt;}
.y9f{bottom:115.348667pt;}
.y6f{bottom:115.378000pt;}
.y128{bottom:118.317467pt;}
.yf0{bottom:123.779200pt;}
.y176{bottom:125.848800pt;}
.y197{bottom:126.270800pt;}
.ycc{bottom:132.002000pt;}
.y9e{bottom:132.016667pt;}
.y6e{bottom:132.039333pt;}
.y127{bottom:136.749467pt;}
.yf1{bottom:136.909867pt;}
.y175{bottom:140.515467pt;}
.y196{bottom:140.937467pt;}
.y2d{bottom:141.664933pt;}
.yf2{bottom:148.653867pt;}
.ycb{bottom:148.670000pt;}
.y9d{bottom:148.684667pt;}
.y6d{bottom:148.707333pt;}
.y126{bottom:155.181467pt;}
.y174{bottom:155.182133pt;}
.y195{bottom:155.604133pt;}
.yf3{bottom:162.125867pt;}
.yca{bottom:165.338000pt;}
.y9c{bottom:165.352667pt;}
.y6c{bottom:165.375333pt;}
.y173{bottom:169.848800pt;}
.y194{bottom:170.270800pt;}
.y125{bottom:173.613467pt;}
.yf4{bottom:175.213867pt;}
.yc9{bottom:182.006000pt;}
.y9b{bottom:182.020667pt;}
.y6b{bottom:182.043333pt;}
.y172{bottom:184.515467pt;}
.y193{bottom:184.937467pt;}
.yf5{bottom:187.832533pt;}
.y124{bottom:192.045467pt;}
.y31{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.yc8{bottom:198.674000pt;}
.y9a{bottom:198.688667pt;}
.y6a{bottom:198.711333pt;}
.y171{bottom:199.182133pt;}
.y192{bottom:199.604133pt;}
.yf6{bottom:199.971200pt;}
.y30{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.yf7{bottom:213.101867pt;}
.y170{bottom:213.848800pt;}
.y191{bottom:214.270800pt;}
.yc7{bottom:215.342000pt;}
.y99{bottom:215.356667pt;}
.y69{bottom:215.370000pt;}
.y2f{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.yf8{bottom:226.179200pt;}
.y16f{bottom:228.515467pt;}
.y190{bottom:228.937467pt;}
.yc6{bottom:232.010000pt;}
.y98{bottom:232.024667pt;}
.y68{bottom:232.038000pt;}
.y123{bottom:232.039333pt;}
.yf9{bottom:238.317867pt;}
.y2e{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y16e{bottom:243.182133pt;}
.y18f{bottom:243.604133pt;}
.yc5{bottom:248.678000pt;}
.y97{bottom:248.692667pt;}
.y67{bottom:248.706000pt;}
.y122{bottom:248.707333pt;}
.yfa{bottom:251.405867pt;}
.y16d{bottom:257.848800pt;}
.y18e{bottom:258.270800pt;}
.yfb{bottom:264.397867pt;}
.yc4{bottom:265.346000pt;}
.y96{bottom:265.360667pt;}
.y66{bottom:265.374000pt;}
.y121{bottom:265.375333pt;}
.y16c{bottom:272.515467pt;}
.y18d{bottom:272.937467pt;}
.yfc{bottom:277.485867pt;}
.y95{bottom:282.028667pt;}
.y65{bottom:282.042000pt;}
.y120{bottom:282.043333pt;}
.y16b{bottom:287.182133pt;}
.y18c{bottom:287.604133pt;}
.y34{bottom:289.309733pt;}
.yfd{bottom:289.827200pt;}
.yc3{bottom:298.682000pt;}
.y64{bottom:298.710000pt;}
.y11f{bottom:298.711333pt;}
.yec{bottom:300.689200pt;}
.y16a{bottom:301.848800pt;}
.y18b{bottom:302.270800pt;}
.yfe{bottom:302.915200pt;}
.yc2{bottom:315.350000pt;}
.y94{bottom:315.364667pt;}
.y142{bottom:315.378000pt;}
.y11e{bottom:315.379333pt;}
.yff{bottom:315.907200pt;}
.y169{bottom:316.515467pt;}
.y18a{bottom:316.937467pt;}
.y100{bottom:328.995200pt;}
.y168{bottom:331.182133pt;}
.y189{bottom:331.604133pt;}
.yc1{bottom:332.018000pt;}
.y93{bottom:332.032667pt;}
.y63{bottom:332.039333pt;}
.y141{bottom:332.040667pt;}
.y101{bottom:341.432533pt;}
.y167{bottom:345.848800pt;}
.y188{bottom:346.270800pt;}
.y11d{bottom:348.688667pt;}
.y92{bottom:348.700667pt;}
.y62{bottom:348.707333pt;}
.y140{bottom:348.708667pt;}
.y102{bottom:354.520533pt;}
.y166{bottom:360.515467pt;}
.y187{bottom:360.937467pt;}
.yc0{bottom:365.354000pt;}
.y11c{bottom:365.356667pt;}
.y91{bottom:365.368667pt;}
.y61{bottom:365.375333pt;}
.y13f{bottom:365.376667pt;}
.y2c{bottom:366.644267pt;}
.y165{bottom:375.182133pt;}
.y186{bottom:375.604133pt;}
.ybf{bottom:382.022000pt;}
.y11b{bottom:382.024667pt;}
.y60{bottom:382.043333pt;}
.y13e{bottom:382.044667pt;}
.y2b{bottom:383.972267pt;}
.y164{bottom:389.848800pt;}
.y185{bottom:390.270800pt;}
.y2a{bottom:393.310933pt;}
.ybe{bottom:398.690000pt;}
.y11a{bottom:398.692667pt;}
.y90{bottom:398.704667pt;}
.y5f{bottom:398.711333pt;}
.y13d{bottom:398.712667pt;}
.y163{bottom:404.515467pt;}
.y184{bottom:404.937467pt;}
.ye9{bottom:407.613867pt;}
.y29{bottom:410.635200pt;}
.ybd{bottom:415.358000pt;}
.y119{bottom:415.360667pt;}
.y8f{bottom:415.372667pt;}
.y5e{bottom:415.375333pt;}
.y162{bottom:419.182133pt;}
.y183{bottom:419.604133pt;}
.y22{bottom:430.013733pt;}
.ybc{bottom:432.026000pt;}
.y118{bottom:432.028667pt;}
.y8e{bottom:432.040667pt;}
.y13c{bottom:432.042000pt;}
.y5d{bottom:432.043333pt;}
.y161{bottom:433.848800pt;}
.y182{bottom:434.270800pt;}
.y20{bottom:443.345733pt;}
.y160{bottom:448.515467pt;}
.ye8{bottom:448.683333pt;}
.ybb{bottom:448.694000pt;}
.y117{bottom:448.696667pt;}
.y8d{bottom:448.708667pt;}
.y13b{bottom:448.710000pt;}
.y5c{bottom:448.711333pt;}
.y181{bottom:448.937467pt;}
.y1f{bottom:456.677733pt;}
.y15f{bottom:463.182133pt;}
.y180{bottom:463.604133pt;}
.ye7{bottom:465.351333pt;}
.yba{bottom:465.362000pt;}
.y116{bottom:465.364667pt;}
.y8c{bottom:465.376667pt;}
.y13a{bottom:465.378000pt;}
.y5b{bottom:465.379333pt;}
.y1e{bottom:470.009733pt;}
.y15e{bottom:477.848800pt;}
.y17f{bottom:478.270800pt;}
.ye6{bottom:482.019333pt;}
.yb9{bottom:482.030000pt;}
.y115{bottom:482.032667pt;}
.y8b{bottom:482.044667pt;}
.y139{bottom:482.046000pt;}
.y1d{bottom:483.341733pt;}
.y15d{bottom:492.515467pt;}
.y17e{bottom:492.937467pt;}
.y1c{bottom:496.673733pt;}
.yb8{bottom:498.698000pt;}
.y114{bottom:498.700667pt;}
.y138{bottom:498.706000pt;}
.y5a{bottom:498.707333pt;}
.y8a{bottom:498.712667pt;}
.y15c{bottom:507.182133pt;}
.y17d{bottom:507.604133pt;}
.y1b{bottom:510.005733pt;}
.ye5{bottom:515.355333pt;}
.yb7{bottom:515.366000pt;}
.y137{bottom:515.374000pt;}
.y59{bottom:515.375333pt;}
.y15b{bottom:521.848800pt;}
.y17c{bottom:522.270800pt;}
.y1a{bottom:523.337733pt;}
.ye4{bottom:532.023333pt;}
.yb6{bottom:532.034000pt;}
.y113{bottom:532.036667pt;}
.y136{bottom:532.042000pt;}
.y58{bottom:532.043333pt;}
.y89{bottom:532.046000pt;}
.y19{bottom:536.669733pt;}
.y17b{bottom:536.937467pt;}
.ye3{bottom:548.691333pt;}
.yb5{bottom:548.702000pt;}
.y112{bottom:548.704667pt;}
.y135{bottom:548.710000pt;}
.y57{bottom:548.711333pt;}
.y18{bottom:550.001733pt;}
.y15a{bottom:551.182133pt;}
.y17a{bottom:551.604133pt;}
.y17{bottom:563.333733pt;}
.yb4{bottom:565.370000pt;}
.y111{bottom:565.372667pt;}
.y56{bottom:565.376667pt;}
.y134{bottom:565.378000pt;}
.y16{bottom:576.665733pt;}
.ye2{bottom:582.027333pt;}
.yb3{bottom:582.038000pt;}
.y88{bottom:582.040667pt;}
.y55{bottom:582.044667pt;}
.y133{bottom:582.046000pt;}
.y15{bottom:589.997733pt;}
.ye1{bottom:598.695333pt;}
.yb2{bottom:598.706000pt;}
.y87{bottom:598.708667pt;}
.y54{bottom:598.712667pt;}
.y14{bottom:603.329733pt;}
.y14f{bottom:615.362000pt;}
.y53{bottom:615.370000pt;}
.y132{bottom:615.371333pt;}
.yb1{bottom:615.374000pt;}
.y86{bottom:615.376667pt;}
.y13{bottom:616.661733pt;}
.y159{bottom:617.594533pt;}
.y12{bottom:629.993733pt;}
.y14e{bottom:632.030000pt;}
.ye0{bottom:632.031333pt;}
.y52{bottom:632.038000pt;}
.y131{bottom:632.039333pt;}
.yb0{bottom:632.042000pt;}
.y85{bottom:632.044667pt;}
.y158{bottom:632.261200pt;}
.y1b2{bottom:636.947067pt;}
.y11{bottom:643.325733pt;}
.y157{bottom:646.927867pt;}
.y14d{bottom:648.698000pt;}
.ydf{bottom:648.699333pt;}
.y51{bottom:648.706000pt;}
.y84{bottom:648.707333pt;}
.yaf{bottom:648.710000pt;}
.y110{bottom:648.712667pt;}
.y1b1{bottom:651.613733pt;}
.y10{bottom:656.657733pt;}
.y156{bottom:661.594533pt;}
.y14c{bottom:665.366000pt;}
.yde{bottom:665.367333pt;}
.y50{bottom:665.374000pt;}
.y83{bottom:665.375333pt;}
.yae{bottom:665.378000pt;}
.y1b0{bottom:666.280400pt;}
.yf{bottom:669.989733pt;}
.y155{bottom:676.261200pt;}
.y1af{bottom:680.947067pt;}
.yad{bottom:682.028667pt;}
.y14b{bottom:682.034000pt;}
.ydd{bottom:682.035333pt;}
.y4f{bottom:682.042000pt;}
.y82{bottom:682.043333pt;}
.y10f{bottom:682.046000pt;}
.ye{bottom:683.321733pt;}
.y1ae{bottom:695.613733pt;}
.yd{bottom:696.653733pt;}
.yac{bottom:698.696667pt;}
.y14a{bottom:698.702000pt;}
.ydc{bottom:698.703333pt;}
.y4e{bottom:698.710000pt;}
.y81{bottom:698.711333pt;}
.yc{bottom:709.985733pt;}
.y1ad{bottom:710.280400pt;}
.yab{bottom:715.364667pt;}
.ydb{bottom:715.371333pt;}
.y4d{bottom:715.378000pt;}
.y80{bottom:715.379333pt;}
.yb{bottom:723.317733pt;}
.y1ac{bottom:724.947067pt;}
.yaa{bottom:732.032667pt;}
.y149{bottom:732.038000pt;}
.y4c{bottom:732.043333pt;}
.ya{bottom:736.649733pt;}
.y1ab{bottom:739.613733pt;}
.y10e{bottom:740.540267pt;}
.y7f{bottom:748.699333pt;}
.ya9{bottom:748.700667pt;}
.y148{bottom:748.706000pt;}
.yda{bottom:748.707333pt;}
.y130{bottom:748.708667pt;}
.y4b{bottom:748.711333pt;}
.y9{bottom:749.981733pt;}
.y1aa{bottom:754.280400pt;}
.y10d{bottom:759.943200pt;}
.y8{bottom:763.313733pt;}
.y7e{bottom:765.367333pt;}
.y4a{bottom:765.368667pt;}
.y147{bottom:765.374000pt;}
.yd9{bottom:765.375333pt;}
.y12f{bottom:765.376667pt;}
.y154{bottom:765.379333pt;}
.y1a9{bottom:768.947067pt;}
.y7{bottom:776.645733pt;}
.y10c{bottom:779.346267pt;}
.y7d{bottom:782.035333pt;}
.y49{bottom:782.036667pt;}
.y146{bottom:782.042000pt;}
.yd8{bottom:782.043333pt;}
.y12e{bottom:782.044667pt;}
.y1a8{bottom:783.613733pt;}
.y6{bottom:789.977733pt;}
.y1a7{bottom:798.280400pt;}
.y7c{bottom:798.703333pt;}
.y48{bottom:798.704667pt;}
.y12d{bottom:798.710000pt;}
.yd7{bottom:798.711333pt;}
.y153{bottom:798.712667pt;}
.y10b{bottom:798.749467pt;}
.y5{bottom:803.309733pt;}
.y1a6{bottom:812.947067pt;}
.y7b{bottom:815.371333pt;}
.y47{bottom:815.372667pt;}
.y12c{bottom:815.378000pt;}
.yd6{bottom:815.379333pt;}
.y10a{bottom:817.181467pt;}
.y21{bottom:820.701600pt;}
.y1a5{bottom:827.613733pt;}
.y7a{bottom:832.039333pt;}
.y46{bottom:832.040667pt;}
.y12b{bottom:832.046000pt;}
.y109{bottom:835.613467pt;}
.y1a4{bottom:842.280400pt;}
.y152{bottom:848.706000pt;}
.y79{bottom:848.707333pt;}
.y45{bottom:848.708667pt;}
.yd5{bottom:848.712667pt;}
.y1a3{bottom:856.947067pt;}
.y145{bottom:865.371333pt;}
.y151{bottom:865.374000pt;}
.y78{bottom:865.375333pt;}
.y44{bottom:865.376667pt;}
.y1a2{bottom:871.613733pt;}
.y28{bottom:873.309600pt;}
.y108{bottom:880.552400pt;}
.y144{bottom:882.039333pt;}
.y150{bottom:882.042000pt;}
.y77{bottom:882.043333pt;}
.ya8{bottom:882.044667pt;}
.y1a1{bottom:886.280400pt;}
.y107{bottom:895.219067pt;}
.yd4{bottom:898.658000pt;}
.y143{bottom:898.707333pt;}
.y43{bottom:898.710000pt;}
.y76{bottom:898.711333pt;}
.ya7{bottom:898.712667pt;}
.y1a0{bottom:900.947067pt;}
.y33{bottom:908.178400pt;}
.y106{bottom:913.651067pt;}
.yd3{bottom:915.326000pt;}
.y75{bottom:915.370000pt;}
.ya6{bottom:915.375333pt;}
.y42{bottom:915.378000pt;}
.y19f{bottom:915.613733pt;}
.y32{bottom:927.378400pt;}
.y19e{bottom:930.280400pt;}
.yd2{bottom:931.994000pt;}
.y74{bottom:932.038000pt;}
.ya5{bottom:932.043333pt;}
.y41{bottom:932.046000pt;}
.y105{bottom:932.083067pt;}
.y19d{bottom:944.947067pt;}
.yd1{bottom:948.662000pt;}
.y73{bottom:948.706000pt;}
.ya4{bottom:948.711333pt;}
.y104{bottom:950.515067pt;}
.y24{bottom:953.691600pt;}
.y19c{bottom:959.613733pt;}
.y27{bottom:962.610667pt;}
.yd0{bottom:965.330000pt;}
.y72{bottom:965.374000pt;}
.y40{bottom:965.379333pt;}
.y103{bottom:968.947067pt;}
.y19b{bottom:974.280400pt;}
.y26{bottom:975.944000pt;}
.y23{bottom:982.491600pt;}
.y25{bottom:989.277333pt;}
.h1c{height:29.020833pt;}
.h9{height:30.121875pt;}
.h2{height:31.062500pt;}
.h1e{height:31.083333pt;}
.hd{height:31.658667pt;}
.hc{height:32.298667pt;}
.he{height:33.468750pt;}
.h11{height:34.968750pt;}
.h3{height:38.250000pt;}
.h1f{height:39.146450pt;}
.h20{height:39.146983pt;}
.h21{height:39.147517pt;}
.h7{height:39.573333pt;}
.h1d{height:40.724667pt;}
.h5{height:41.994792pt;}
.h4{height:43.031250pt;}
.hf{height:43.071783pt;}
.h19{height:45.677650pt;}
.hb{height:46.105342pt;}
.h8{height:46.105875pt;}
.h12{height:46.116542pt;}
.h16{height:46.121875pt;}
.h15{height:46.127208pt;}
.h17{height:46.132542pt;}
.h23{height:46.137875pt;}
.h14{height:46.143208pt;}
.h13{height:46.148542pt;}
.h18{height:46.159208pt;}
.h24{height:46.170667pt;}
.h1a{height:46.175208pt;}
.h22{height:46.201875pt;}
.ha{height:48.448000pt;}
.h10{height:50.368000pt;}
.h6{height:72.672000pt;}
.h1b{height:310.233333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:315.592000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:9.307733pt;}
.x1b{left:69.427467pt;}
.x2{left:75.590667pt;}
.x12{left:78.547467pt;}
.x13{left:79.489067pt;}
.x20{left:85.203333pt;}
.x18{left:91.586533pt;}
.x14{left:95.489067pt;}
.x21{left:99.590533pt;}
.x23{left:103.370000pt;}
.x10{left:123.857067pt;}
.x1a{left:147.070667pt;}
.xe{left:206.683200pt;}
.xd{left:230.053867pt;}
.x3{left:234.502267pt;}
.x9{left:237.014133pt;}
.x5{left:240.587467pt;}
.x4{left:254.806267pt;}
.xc{left:286.480533pt;}
.x6{left:317.046133pt;}
.xf{left:320.347200pt;}
.x7{left:339.584800pt;}
.x8{left:345.515467pt;}
.xa{left:395.671200pt;}
.x17{left:401.177867pt;}
.x11{left:404.970933pt;}
.x1{left:417.573467pt;}
.x15{left:421.414933pt;}
.xb{left:430.647200pt;}
.x19{left:433.632533pt;}
.x16{left:437.417200pt;}
.x1f{left:439.134800pt;}
.x22{left:441.637733pt;}
.x1e{left:445.065467pt;}
.x1c{left:503.032933pt;}
}




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