
    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_3228255600d8bf43ac1cde4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_45bcdd438bb8e8459d2c8e6e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_46940128130fd645cfa47cb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_69c6f7e3ed7cbca9d634e2b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_9e32936d51ddb681cd903bae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.872559;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_03de049cdef11bdb05c63abb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718750;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_3f61c0dbd35d673c507ab93d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0c0ba012a68fea9fde05989d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_3c0b3a865bce93b6ae835a80.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_d1f2c3983f7e2366228e0806.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;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_be5825858a91146229cc74c8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ed09fb393c75ef44dfbef903.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.881836;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_0f6efe43a06063b31f70f669.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf3d9a14efe7a888fdb15391.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939453;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-20.595600px;}
.v2{vertical-align:-16.471800px;}
.v6{vertical-align:-4.176000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v7{vertical-align:3.360000px;}
.v4{vertical-align:20.595600px;}
.v1{vertical-align:22.655400px;}
.ls1c{letter-spacing:-0.720000px;}
.ls41{letter-spacing:-0.240000px;}
.ls8f{letter-spacing:-0.192000px;}
.ls42{letter-spacing:-0.180000px;}
.ls61{letter-spacing:-0.120000px;}
.ls90{letter-spacing:-0.096000px;}
.ls1e{letter-spacing:-0.060000px;}
.ls91{letter-spacing:-0.048000px;}
.ls1b{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.006000px;}
.ls2{letter-spacing:0.048000px;}
.ls17{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.096000px;}
.ls20{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls79{letter-spacing:0.192000px;}
.ls34{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.300000px;}
.ls74{letter-spacing:0.336000px;}
.ls3f{letter-spacing:0.360000px;}
.ls65{letter-spacing:0.384000px;}
.ls1f{letter-spacing:0.420000px;}
.ls58{letter-spacing:0.432000px;}
.ls57{letter-spacing:0.468000px;}
.lsb{letter-spacing:0.480000px;}
.ls6b{letter-spacing:0.528000px;}
.ls32{letter-spacing:0.540000px;}
.ls7a{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.600000px;}
.ls7f{letter-spacing:0.624000px;}
.ls3e{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.720000px;}
.ls6d{letter-spacing:0.768000px;}
.ls2e{letter-spacing:0.780000px;}
.ls4{letter-spacing:0.816000px;}
.ls2a{letter-spacing:0.840000px;}
.ls1d{letter-spacing:0.864000px;}
.ls19{letter-spacing:0.900000px;}
.ls85{letter-spacing:0.912000px;}
.ls4b{letter-spacing:0.960000px;}
.ls67{letter-spacing:1.008000px;}
.ls30{letter-spacing:1.020000px;}
.ls81{letter-spacing:1.056000px;}
.ls35{letter-spacing:1.080000px;}
.ls80{letter-spacing:1.104000px;}
.ls16{letter-spacing:1.140000px;}
.ls73{letter-spacing:1.152000px;}
.ls14{letter-spacing:1.200000px;}
.ls75{letter-spacing:1.248000px;}
.ls1a{letter-spacing:1.260000px;}
.ls7{letter-spacing:1.296000px;}
.ls39{letter-spacing:1.320000px;}
.ls77{letter-spacing:1.344000px;}
.ls4c{letter-spacing:1.380000px;}
.ls6f{letter-spacing:1.392000px;}
.ls8{letter-spacing:1.440000px;}
.ls72{letter-spacing:1.488000px;}
.ls44{letter-spacing:1.500000px;}
.ls83{letter-spacing:1.536000px;}
.lsf{letter-spacing:1.560000px;}
.ls7b{letter-spacing:1.584000px;}
.ls10{letter-spacing:1.620000px;}
.ls6a{letter-spacing:1.632000px;}
.ls2f{letter-spacing:1.680000px;}
.lsa{letter-spacing:1.740000px;}
.ls50{letter-spacing:1.800000px;}
.ls37{letter-spacing:1.860000px;}
.ls69{letter-spacing:1.872000px;}
.ls5d{letter-spacing:1.920000px;}
.ls47{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.040000px;}
.ls8d{letter-spacing:2.064000px;}
.lsc{letter-spacing:2.100000px;}
.ls8e{letter-spacing:2.112000px;}
.ls21{letter-spacing:2.160000px;}
.ls66{letter-spacing:2.208000px;}
.ls15{letter-spacing:2.220000px;}
.ls94{letter-spacing:2.256000px;}
.ls43{letter-spacing:2.280000px;}
.ls6c{letter-spacing:2.304000px;}
.ls36{letter-spacing:2.340000px;}
.ls88{letter-spacing:2.352000px;}
.ls13{letter-spacing:2.400000px;}
.ls70{letter-spacing:2.448000px;}
.ls24{letter-spacing:2.460000px;}
.ls3c{letter-spacing:2.520000px;}
.ls86{letter-spacing:2.544000px;}
.ls56{letter-spacing:2.580000px;}
.ls84{letter-spacing:2.592000px;}
.ls29{letter-spacing:2.640000px;}
.ls93{letter-spacing:2.688000px;}
.ls3b{letter-spacing:2.700000px;}
.ls89{letter-spacing:2.736000px;}
.ls55{letter-spacing:2.760000px;}
.ls8a{letter-spacing:2.784000px;}
.ls5c{letter-spacing:2.820000px;}
.ls2c{letter-spacing:2.880000px;}
.ls4d{letter-spacing:2.940000px;}
.ls8b{letter-spacing:2.976000px;}
.ls46{letter-spacing:3.000000px;}
.ls5a{letter-spacing:3.060000px;}
.ls45{letter-spacing:3.120000px;}
.ls71{letter-spacing:3.168000px;}
.ls49{letter-spacing:3.180000px;}
.ls6e{letter-spacing:3.216000px;}
.ls78{letter-spacing:3.264000px;}
.ls40{letter-spacing:3.300000px;}
.ls28{letter-spacing:3.360000px;}
.ls11{letter-spacing:3.420000px;}
.ls5f{letter-spacing:3.540000px;}
.ls33{letter-spacing:3.600000px;}
.ls26{letter-spacing:3.660000px;}
.ls9{letter-spacing:3.720000px;}
.ls7d{letter-spacing:3.744000px;}
.ls31{letter-spacing:3.780000px;}
.ls48{letter-spacing:3.840000px;}
.ls92{letter-spacing:3.888000px;}
.ls23{letter-spacing:3.900000px;}
.ls4a{letter-spacing:3.960000px;}
.ls38{letter-spacing:4.020000px;}
.ls68{letter-spacing:4.032000px;}
.ls7e{letter-spacing:4.080000px;}
.ls5b{letter-spacing:4.140000px;}
.ls63{letter-spacing:4.200000px;}
.ls60{letter-spacing:4.260000px;}
.ls3d{letter-spacing:4.320000px;}
.ls95{letter-spacing:4.368000px;}
.ls2d{letter-spacing:4.680000px;}
.ls7c{letter-spacing:4.704000px;}
.lsd{letter-spacing:4.740000px;}
.ls54{letter-spacing:4.860000px;}
.ls82{letter-spacing:4.896000px;}
.ls3a{letter-spacing:5.040000px;}
.ls62{letter-spacing:5.160000px;}
.ls52{letter-spacing:5.340000px;}
.ls2b{letter-spacing:5.520000px;}
.ls87{letter-spacing:5.568000px;}
.ls64{letter-spacing:5.640000px;}
.ls51{letter-spacing:5.820000px;}
.ls4f{letter-spacing:5.880000px;}
.ls53{letter-spacing:6.060000px;}
.ls59{letter-spacing:6.240000px;}
.ls76{letter-spacing:6.336000px;}
.ls4e{letter-spacing:6.660000px;}
.ls8c{letter-spacing:6.816000px;}
.ls25{letter-spacing:6.960000px;}
.ls5e{letter-spacing:7.080000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2a{word-spacing:-60.000000px;}
.ws2d{word-spacing:-19.380000px;}
.ws12{word-spacing:-18.300000px;}
.ws42{word-spacing:-18.240000px;}
.ws50{word-spacing:-18.000000px;}
.ws40{word-spacing:-17.880000px;}
.ws51{word-spacing:-17.700000px;}
.ws11{word-spacing:-17.520000px;}
.ws41{word-spacing:-17.460000px;}
.ws14{word-spacing:-17.400000px;}
.ws13{word-spacing:-17.220000px;}
.ws10{word-spacing:-17.100000px;}
.ws7b{word-spacing:-17.088000px;}
.ws15{word-spacing:-16.740000px;}
.ws24{word-spacing:-16.680000px;}
.ws77{word-spacing:-15.792000px;}
.ws76{word-spacing:-15.216000px;}
.ws7e{word-spacing:-14.880000px;}
.ws60{word-spacing:-14.736000px;}
.ws97{word-spacing:-14.688000px;}
.ws5f{word-spacing:-14.640000px;}
.ws78{word-spacing:-14.592000px;}
.ws95{word-spacing:-14.544000px;}
.ws7d{word-spacing:-14.448000px;}
.ws61{word-spacing:-14.352000px;}
.ws99{word-spacing:-14.208000px;}
.ws16{word-spacing:-14.178000px;}
.ws7f{word-spacing:-14.064000px;}
.ws7a{word-spacing:-13.920000px;}
.ws7c{word-spacing:-13.824000px;}
.ws98{word-spacing:-13.776000px;}
.ws79{word-spacing:-13.728000px;}
.ws96{word-spacing:-13.680000px;}
.ws62{word-spacing:-13.392000px;}
.ws1{word-spacing:-13.344000px;}
.ws81{word-spacing:-13.296000px;}
.ws80{word-spacing:-13.248000px;}
.ws0{word-spacing:-11.008800px;}
.ws2c{word-spacing:-10.476000px;}
.ws2b{word-spacing:-10.008000px;}
.ws65{word-spacing:-4.200000px;}
.ws4{word-spacing:-3.630000px;}
.ws1d{word-spacing:-3.600000px;}
.ws18{word-spacing:-3.420000px;}
.ws88{word-spacing:-3.120000px;}
.ws92{word-spacing:-2.736000px;}
.ws3{word-spacing:-2.664000px;}
.ws8f{word-spacing:-2.592000px;}
.ws67{word-spacing:-2.580000px;}
.ws86{word-spacing:-2.448000px;}
.ws1c{word-spacing:-2.220000px;}
.ws6c{word-spacing:-2.208000px;}
.ws9b{word-spacing:-1.392000px;}
.ws9c{word-spacing:-1.344000px;}
.ws57{word-spacing:-1.320000px;}
.ws71{word-spacing:-1.296000px;}
.ws87{word-spacing:-1.248000px;}
.ws45{word-spacing:-1.200000px;}
.ws59{word-spacing:-1.020000px;}
.ws3f{word-spacing:-0.864000px;}
.ws90{word-spacing:-0.768000px;}
.ws5e{word-spacing:-0.600000px;}
.ws53{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.420000px;}
.ws89{word-spacing:-0.384000px;}
.ws23{word-spacing:-0.360000px;}
.ws46{word-spacing:-0.300000px;}
.ws1b{word-spacing:-0.240000px;}
.ws5b{word-spacing:-0.180000px;}
.ws6a{word-spacing:-0.144000px;}
.ws9{word-spacing:-0.096000px;}
.ws3d{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:0.048000px;}
.ws4b{word-spacing:0.180000px;}
.ws91{word-spacing:0.192000px;}
.ws17{word-spacing:0.240000px;}
.ws6b{word-spacing:0.288000px;}
.ws58{word-spacing:0.300000px;}
.ws4d{word-spacing:0.360000px;}
.ws20{word-spacing:0.600000px;}
.ws1f{word-spacing:0.660000px;}
.ws32{word-spacing:0.720000px;}
.ws38{word-spacing:0.780000px;}
.ws3c{word-spacing:0.816000px;}
.ws70{word-spacing:0.912000px;}
.ws26{word-spacing:0.960000px;}
.ws35{word-spacing:1.140000px;}
.ws74{word-spacing:1.200000px;}
.wsa0{word-spacing:1.248000px;}
.ws5d{word-spacing:1.320000px;}
.ws22{word-spacing:1.380000px;}
.ws8a{word-spacing:1.392000px;}
.ws4c{word-spacing:1.500000px;}
.ws8{word-spacing:1.536000px;}
.ws3b{word-spacing:1.560000px;}
.ws28{word-spacing:1.620000px;}
.ws6e{word-spacing:1.728000px;}
.ws72{word-spacing:1.776000px;}
.ws5a{word-spacing:1.800000px;}
.ws9a{word-spacing:1.872000px;}
.ws6f{word-spacing:1.968000px;}
.ws19{word-spacing:2.100000px;}
.ws94{word-spacing:2.208000px;}
.ws1e{word-spacing:2.280000px;}
.wsa{word-spacing:2.352000px;}
.ws54{word-spacing:2.460000px;}
.ws8d{word-spacing:2.496000px;}
.ws9e{word-spacing:2.592000px;}
.ws52{word-spacing:2.640000px;}
.ws68{word-spacing:2.688000px;}
.ws83{word-spacing:2.736000px;}
.ws64{word-spacing:2.760000px;}
.ws9d{word-spacing:2.784000px;}
.wsb{word-spacing:2.880000px;}
.ws49{word-spacing:2.940000px;}
.ws4e{word-spacing:3.000000px;}
.ws5c{word-spacing:3.060000px;}
.ws3a{word-spacing:3.120000px;}
.ws8b{word-spacing:3.168000px;}
.ws63{word-spacing:3.240000px;}
.ws93{word-spacing:3.312000px;}
.ws8c{word-spacing:3.408000px;}
.ws4a{word-spacing:3.540000px;}
.ws73{word-spacing:3.600000px;}
.ws5{word-spacing:3.648000px;}
.ws85{word-spacing:3.696000px;}
.ws4f{word-spacing:3.720000px;}
.wsc{word-spacing:3.744000px;}
.ws9f{word-spacing:3.792000px;}
.ws84{word-spacing:3.840000px;}
.ws34{word-spacing:3.900000px;}
.ws82{word-spacing:3.936000px;}
.ws75{word-spacing:3.984000px;}
.ws37{word-spacing:4.020000px;}
.ws6d{word-spacing:4.032000px;}
.ws69{word-spacing:4.080000px;}
.ws29{word-spacing:4.140000px;}
.ws1a{word-spacing:4.260000px;}
.ws8e{word-spacing:4.272000px;}
.ws3e{word-spacing:4.320000px;}
.ws6{word-spacing:4.368000px;}
.ws66{word-spacing:4.380000px;}
.ws7{word-spacing:4.416000px;}
.ws36{word-spacing:4.500000px;}
.ws55{word-spacing:4.560000px;}
.ws56{word-spacing:4.680000px;}
.ws48{word-spacing:4.920000px;}
.ws25{word-spacing:4.980000px;}
.ws33{word-spacing:5.100000px;}
.ws47{word-spacing:5.160000px;}
.ws27{word-spacing:5.220000px;}
.ws21{word-spacing:5.340000px;}
.wsf{word-spacing:5.460000px;}
.wse{word-spacing:5.520000px;}
.ws43{word-spacing:42.336000px;}
.ws31{word-spacing:121.392000px;}
.ws2e{word-spacing:132.048000px;}
.ws30{word-spacing:660.576000px;}
.ws2f{word-spacing:661.392000px;}
.ws44{word-spacing:666.624000px;}
._b{margin-left:-2898.126000px;}
._c{margin-left:-2874.309000px;}
._7{margin-left:-6.960000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.551400px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.135200px;}
._6{width:1.020000px;}
._18{width:2.220000px;}
._2{width:3.630000px;}
._5{width:5.394000px;}
._a{width:6.432000px;}
._8{width:8.520000px;}
._13{width:44.256000px;}
._9{width:54.840000px;}
._16{width:58.368000px;}
._11{width:60.852000px;}
._14{width:62.064000px;}
._12{width:64.896000px;}
._15{width:75.456000px;}
._10{width:109.316400px;}
._d{width:146.592000px;}
._e{width:150.720000px;}
._f{width:154.800000px;}
._17{width:672.672000px;}
.fc2{color:rgb(4,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsa{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:31.530150px;}
.y2c{bottom:50.517000px;}
.ye8{bottom:59.594250px;}
.y1{bottom:82.406700px;}
.yde{bottom:83.138100px;}
.y62{bottom:83.363850px;}
.y2b{bottom:83.493900px;}
.y6d{bottom:83.513850px;}
.ya2{bottom:83.563200px;}
.ybe{bottom:83.634450px;}
.y90{bottom:84.425400px;}
.y12f{bottom:85.796700px;}
.y16f{bottom:94.938300px;}
.ydd{bottom:98.882100px;}
.ya1{bottom:99.307200px;}
.ybd{bottom:99.378450px;}
.y12e{bottom:100.796700px;}
.yf8{bottom:101.228850px;}
.y61{bottom:101.363850px;}
.y6c{bottom:101.513850px;}
.y16e{bottom:109.938300px;}
.ybc{bottom:115.122450px;}
.y12d{bottom:115.796700px;}
.yf7{bottom:119.228850px;}
.y60{bottom:119.363850px;}
.y6b{bottom:119.513850px;}
.y1b{bottom:121.518300px;}
.ye4{bottom:122.329500px;}
.yb3{bottom:123.205500px;}
.y16d{bottom:124.938300px;}
.ye9{bottom:127.692900px;}
.yb5{bottom:127.722150px;}
.y12c{bottom:130.796700px;}
.ybb{bottom:130.866450px;}
.yf6{bottom:137.228850px;}
.y5f{bottom:137.363850px;}
.y6a{bottom:137.513850px;}
.y16c{bottom:139.938300px;}
.y12b{bottom:145.796700px;}
.yb1{bottom:146.041200px;}
.yba{bottom:146.610450px;}
.ye7{bottom:149.011650px;}
.y16b{bottom:154.938300px;}
.yf5{bottom:155.228850px;}
.y5e{bottom:155.363850px;}
.y69{bottom:155.513850px;}
.yac{bottom:160.381200px;}
.y12a{bottom:160.796700px;}
.ya3{bottom:160.933200px;}
.yb2{bottom:161.191650px;}
.ye5{bottom:163.422150px;}
.ye6{bottom:168.475650px;}
.y16a{bottom:169.938300px;}
.yb6{bottom:172.639050px;}
.yf4{bottom:173.228850px;}
.y5d{bottom:173.363850px;}
.y68{bottom:173.513850px;}
.ya4{bottom:174.865200px;}
.y129{bottom:175.796700px;}
.yb8{bottom:178.256550px;}
.yb9{bottom:178.952550px;}
.yb7{bottom:179.060550px;}
.ydf{bottom:181.471650px;}
.y27{bottom:182.721900px;}
.y169{bottom:184.938300px;}
.yad{bottom:188.245200px;}
.ya5{bottom:188.797200px;}
.y128{bottom:190.796700px;}
.yf3{bottom:191.228850px;}
.y5c{bottom:191.363850px;}
.y67{bottom:191.513850px;}
.y168{bottom:199.938300px;}
.y26{bottom:200.721900px;}
.ye0{bottom:202.339650px;}
.ya6{bottom:202.741200px;}
.y127{bottom:205.796700px;}
.y5b{bottom:209.363850px;}
.y66{bottom:209.513850px;}
.y167{bottom:214.938300px;}
.yec{bottom:215.060550px;}
.yae{bottom:216.121200px;}
.ya7{bottom:216.673200px;}
.y25{bottom:218.721900px;}
.y126{bottom:220.796700px;}
.ye1{bottom:223.195650px;}
.yf2{bottom:227.228850px;}
.y5a{bottom:227.363850px;}
.y166{bottom:229.938300px;}
.ya8{bottom:230.617200px;}
.yeb{bottom:232.109850px;}
.y125{bottom:235.796700px;}
.y24{bottom:236.721900px;}
.yaf{bottom:243.997200px;}
.ye2{bottom:244.039650px;}
.ya9{bottom:244.537200px;}
.y165{bottom:244.938300px;}
.yf1{bottom:245.228850px;}
.y59{bottom:245.363850px;}
.y65{bottom:245.513850px;}
.yea{bottom:249.159150px;}
.y124{bottom:250.796700px;}
.y23{bottom:254.721900px;}
.yaa{bottom:258.481200px;}
.y164{bottom:259.938300px;}
.yf0{bottom:263.228850px;}
.y58{bottom:263.363850px;}
.ye3{bottom:264.895650px;}
.y123{bottom:265.796700px;}
.yb0{bottom:271.873200px;}
.yab{bottom:272.413200px;}
.y22{bottom:272.721900px;}
.y163{bottom:274.938300px;}
.y122{bottom:280.796700px;}
.yef{bottom:281.228850px;}
.y57{bottom:281.363850px;}
.y162{bottom:289.938300px;}
.y21{bottom:290.721900px;}
.y121{bottom:295.796700px;}
.yee{bottom:299.228850px;}
.y56{bottom:299.363850px;}
.y161{bottom:304.938300px;}
.y20{bottom:308.721900px;}
.y120{bottom:310.796700px;}
.yed{bottom:317.228850px;}
.y55{bottom:317.363850px;}
.y160{bottom:319.938300px;}
.y11f{bottom:325.796700px;}
.y1f{bottom:326.721900px;}
.y15f{bottom:334.938300px;}
.ydc{bottom:335.228850px;}
.y54{bottom:335.363850px;}
.ya0{bottom:335.513850px;}
.y11e{bottom:340.796700px;}
.y1e{bottom:344.721900px;}
.y15e{bottom:349.938300px;}
.ydb{bottom:353.228850px;}
.y53{bottom:353.363850px;}
.y9f{bottom:353.513850px;}
.y11d{bottom:355.796700px;}
.y1d{bottom:362.721900px;}
.y15d{bottom:364.938300px;}
.yc2{bottom:366.531600px;}
.y11c{bottom:370.796700px;}
.yda{bottom:371.228850px;}
.y52{bottom:371.363850px;}
.y9e{bottom:371.513850px;}
.y15c{bottom:379.938300px;}
.y28{bottom:380.721900px;}
.y11b{bottom:385.796700px;}
.yd9{bottom:389.228850px;}
.y51{bottom:389.363850px;}
.y9d{bottom:389.513850px;}
.y15b{bottom:394.938300px;}
.y1c{bottom:398.721900px;}
.y11a{bottom:400.796700px;}
.yd8{bottom:407.228850px;}
.y50{bottom:407.363850px;}
.y9c{bottom:407.513850px;}
.y15a{bottom:409.938300px;}
.y119{bottom:415.796700px;}
.y91{bottom:423.402900px;}
.y159{bottom:424.938300px;}
.yd7{bottom:425.228850px;}
.y4f{bottom:425.363850px;}
.y9b{bottom:425.513850px;}
.y118{bottom:430.796700px;}
.y158{bottom:439.938300px;}
.yd6{bottom:443.228850px;}
.y4e{bottom:443.363850px;}
.y9a{bottom:443.513850px;}
.y117{bottom:445.796700px;}
.y157{bottom:454.938300px;}
.y116{bottom:460.796700px;}
.yd5{bottom:461.228850px;}
.y4d{bottom:461.363850px;}
.y8d{bottom:461.367600px;}
.y99{bottom:461.513850px;}
.y156{bottom:469.938300px;}
.y1a{bottom:474.338550px;}
.y115{bottom:475.796700px;}
.yd4{bottom:479.228850px;}
.y4c{bottom:479.363850px;}
.y8c{bottom:479.367600px;}
.y98{bottom:479.513850px;}
.y155{bottom:484.938300px;}
.y114{bottom:490.796700px;}
.yd3{bottom:497.228850px;}
.y4b{bottom:497.363850px;}
.y8b{bottom:497.367600px;}
.y97{bottom:497.513850px;}
.y154{bottom:499.938300px;}
.y113{bottom:505.796700px;}
.y19{bottom:507.194550px;}
.y153{bottom:514.938300px;}
.yd2{bottom:515.228850px;}
.y4a{bottom:515.363850px;}
.y8a{bottom:515.367600px;}
.y96{bottom:515.513850px;}
.y112{bottom:520.796700px;}
.y18{bottom:522.194550px;}
.y152{bottom:529.938300px;}
.yd1{bottom:533.228850px;}
.y64{bottom:533.363850px;}
.y49{bottom:533.367600px;}
.y95{bottom:533.513850px;}
.y111{bottom:535.796700px;}
.y17{bottom:537.194550px;}
.y151{bottom:544.938300px;}
.y110{bottom:550.796700px;}
.yd0{bottom:551.228850px;}
.y48{bottom:551.363850px;}
.y89{bottom:551.367600px;}
.y94{bottom:551.513850px;}
.y16{bottom:552.194550px;}
.y150{bottom:559.938300px;}
.y10f{bottom:565.796700px;}
.y15{bottom:567.194550px;}
.ycf{bottom:569.228850px;}
.y47{bottom:569.363850px;}
.y88{bottom:569.367600px;}
.y93{bottom:569.513850px;}
.y14f{bottom:574.938300px;}
.y10e{bottom:580.796700px;}
.y14{bottom:582.194550px;}
.yce{bottom:587.228850px;}
.y8f{bottom:587.232600px;}
.y46{bottom:587.363850px;}
.y87{bottom:587.367600px;}
.yc1{bottom:588.375600px;}
.y14e{bottom:589.938300px;}
.y10d{bottom:595.796700px;}
.y13{bottom:597.194550px;}
.y14d{bottom:604.938300px;}
.ycd{bottom:605.228850px;}
.y45{bottom:605.363850px;}
.y86{bottom:605.367600px;}
.y92{bottom:605.513850px;}
.y10c{bottom:610.796700px;}
.y12{bottom:612.194550px;}
.y14c{bottom:619.938300px;}
.ycc{bottom:623.228850px;}
.y44{bottom:623.363850px;}
.y85{bottom:623.367600px;}
.y10b{bottom:625.796700px;}
.y11{bottom:627.194550px;}
.y14b{bottom:634.938300px;}
.y10a{bottom:640.796700px;}
.ycb{bottom:641.228850px;}
.y43{bottom:641.363850px;}
.y84{bottom:641.367600px;}
.y10{bottom:642.194550px;}
.y14a{bottom:649.938300px;}
.y109{bottom:655.796700px;}
.yf{bottom:657.194550px;}
.yca{bottom:659.228850px;}
.y42{bottom:659.363850px;}
.y83{bottom:659.367600px;}
.y149{bottom:664.938300px;}
.y108{bottom:670.796700px;}
.ye{bottom:672.194550px;}
.yc9{bottom:677.228850px;}
.y41{bottom:677.363850px;}
.y82{bottom:677.367600px;}
.y148{bottom:679.938300px;}
.y107{bottom:685.796700px;}
.yd{bottom:687.194550px;}
.y147{bottom:694.938300px;}
.yc8{bottom:695.228850px;}
.y40{bottom:695.363850px;}
.y81{bottom:695.367600px;}
.y106{bottom:700.796700px;}
.y146{bottom:709.938300px;}
.yc7{bottom:713.228850px;}
.y3f{bottom:713.363850px;}
.y80{bottom:713.367600px;}
.y105{bottom:715.796700px;}
.y145{bottom:724.938300px;}
.yc6{bottom:731.228850px;}
.y3e{bottom:731.363850px;}
.y7f{bottom:731.367600px;}
.yc{bottom:735.938550px;}
.y144{bottom:739.938300px;}
.yc5{bottom:749.228850px;}
.y104{bottom:749.243850px;}
.y3d{bottom:749.363850px;}
.y7e{bottom:749.367600px;}
.yb{bottom:750.338550px;}
.y143{bottom:754.938300px;}
.yc4{bottom:767.228850px;}
.y3c{bottom:767.363850px;}
.y7d{bottom:767.367600px;}
.y142{bottom:769.938300px;}
.ya{bottom:777.494400px;}
.y141{bottom:784.938300px;}
.y3b{bottom:785.363850px;}
.y7c{bottom:785.367600px;}
.y140{bottom:799.938300px;}
.yc3{bottom:803.228850px;}
.y3a{bottom:803.363850px;}
.y7b{bottom:803.367600px;}
.y103{bottom:803.378850px;}
.yc0{bottom:808.203600px;}
.y9{bottom:811.884900px;}
.y13f{bottom:814.938300px;}
.y63{bottom:821.228850px;}
.y39{bottom:821.363850px;}
.y7a{bottom:821.367600px;}
.y102{bottom:821.378850px;}
.y13e{bottom:829.938300px;}
.y8{bottom:832.612500px;}
.y38{bottom:839.363850px;}
.y79{bottom:839.367600px;}
.y13d{bottom:844.938300px;}
.y7{bottom:844.994550px;}
.y37{bottom:857.363850px;}
.y78{bottom:857.367600px;}
.y101{bottom:857.378850px;}
.y13c{bottom:859.938300px;}
.y6{bottom:865.612500px;}
.y13b{bottom:874.938300px;}
.y36{bottom:875.363850px;}
.y77{bottom:875.367600px;}
.y5{bottom:880.879800px;}
.y13a{bottom:889.938300px;}
.y35{bottom:893.363850px;}
.y76{bottom:893.367600px;}
.y100{bottom:893.378850px;}
.y139{bottom:904.938300px;}
.y4{bottom:908.290200px;}
.y34{bottom:911.363850px;}
.y75{bottom:911.367600px;}
.yff{bottom:911.378850px;}
.y138{bottom:919.938300px;}
.y33{bottom:929.363850px;}
.y74{bottom:929.367600px;}
.yfe{bottom:929.378850px;}
.y137{bottom:934.938300px;}
.y3{bottom:935.275200px;}
.y32{bottom:947.363850px;}
.y73{bottom:947.367600px;}
.yfd{bottom:947.378850px;}
.y136{bottom:949.938300px;}
.y135{bottom:964.938300px;}
.y31{bottom:965.363850px;}
.y72{bottom:965.367600px;}
.yfc{bottom:965.378850px;}
.y134{bottom:979.938300px;}
.y2{bottom:979.943400px;}
.y30{bottom:983.363850px;}
.y71{bottom:983.367600px;}
.yfb{bottom:983.378850px;}
.y133{bottom:994.938300px;}
.y2f{bottom:1001.363850px;}
.y70{bottom:1001.367600px;}
.y132{bottom:1009.938300px;}
.y2e{bottom:1019.363850px;}
.y6f{bottom:1019.367600px;}
.yfa{bottom:1019.378850px;}
.y131{bottom:1024.938300px;}
.ybf{bottom:1031.859600px;}
.y2d{bottom:1037.363850px;}
.y8e{bottom:1037.367600px;}
.yf9{bottom:1037.378850px;}
.y130{bottom:1039.938300px;}
.y2a{bottom:1070.769450px;}
.y6e{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h6{height:20.995312px;}
.h2{height:30.618164px;}
.h8{height:34.945312px;}
.h9{height:34.959187px;}
.h7{height:34.992188px;}
.hc{height:37.179199px;}
.h10{height:38.352188px;}
.h12{height:41.497559px;}
.ha{height:43.681641px;}
.hb{height:43.740234px;}
.hd{height:43.755234px;}
.he{height:46.839741px;}
.h5{height:51.523955px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h11{height:173.713500px;}
.hf{height:182.937000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:450.589500px;}
.w3{width:720.895500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:10.292700px;}
.x26{left:12.225900px;}
.x23{left:23.820600px;}
.x22{left:75.378000px;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x21{left:105.306600px;}
.xb{left:110.551200px;}
.x3{left:125.439600px;}
.x2b{left:127.559100px;}
.x6{left:131.816400px;}
.x1e{left:139.889700px;}
.x24{left:141.738600px;}
.x4{left:161.571600px;}
.x28{left:190.130400px;}
.x20{left:198.875400px;}
.x5{left:212.876400px;}
.x25{left:221.694600px;}
.x19{left:344.527500px;}
.x16{left:367.876950px;}
.x27{left:382.041900px;}
.x1c{left:397.868100px;}
.x17{left:400.240950px;}
.x1d{left:442.892100px;}
.x9{left:455.041500px;}
.xc{left:457.089450px;}
.x1f{left:466.445700px;}
.x11{left:478.351950px;}
.x7{left:480.476400px;}
.x2a{left:486.846750px;}
.xe{left:491.109450px;}
.x2c{left:508.091100px;}
.x13{left:512.371950px;}
.xd{left:525.279450px;}
.x1b{left:531.755700px;}
.x29{left:574.850400px;}
.x12{left:612.916950px;}
.x10{left:663.492300px;}
.x2{left:704.338650px;}
.x2d{left:717.130200px;}
.xf{left:724.221150px;}
.x14{left:745.480950px;}
.x15{left:754.192950px;}
.x18{left:790.600200px;}
@media print{
.v5{vertical-align:-18.307200pt;}
.v2{vertical-align:-14.641600pt;}
.v6{vertical-align:-3.712000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v7{vertical-align:2.986667pt;}
.v4{vertical-align:18.307200pt;}
.v1{vertical-align:20.138133pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls41{letter-spacing:-0.213333pt;}
.ls8f{letter-spacing:-0.170667pt;}
.ls42{letter-spacing:-0.160000pt;}
.ls61{letter-spacing:-0.106667pt;}
.ls90{letter-spacing:-0.085333pt;}
.ls1e{letter-spacing:-0.053333pt;}
.ls91{letter-spacing:-0.042667pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.005333pt;}
.ls2{letter-spacing:0.042667pt;}
.ls17{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.085333pt;}
.ls20{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls79{letter-spacing:0.170667pt;}
.ls34{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.266667pt;}
.ls74{letter-spacing:0.298667pt;}
.ls3f{letter-spacing:0.320000pt;}
.ls65{letter-spacing:0.341333pt;}
.ls1f{letter-spacing:0.373333pt;}
.ls58{letter-spacing:0.384000pt;}
.ls57{letter-spacing:0.416000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls6b{letter-spacing:0.469333pt;}
.ls32{letter-spacing:0.480000pt;}
.ls7a{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.533333pt;}
.ls7f{letter-spacing:0.554667pt;}
.ls3e{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.640000pt;}
.ls6d{letter-spacing:0.682667pt;}
.ls2e{letter-spacing:0.693333pt;}
.ls4{letter-spacing:0.725333pt;}
.ls2a{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls85{letter-spacing:0.810667pt;}
.ls4b{letter-spacing:0.853333pt;}
.ls67{letter-spacing:0.896000pt;}
.ls30{letter-spacing:0.906667pt;}
.ls81{letter-spacing:0.938667pt;}
.ls35{letter-spacing:0.960000pt;}
.ls80{letter-spacing:0.981333pt;}
.ls16{letter-spacing:1.013333pt;}
.ls73{letter-spacing:1.024000pt;}
.ls14{letter-spacing:1.066667pt;}
.ls75{letter-spacing:1.109333pt;}
.ls1a{letter-spacing:1.120000pt;}
.ls7{letter-spacing:1.152000pt;}
.ls39{letter-spacing:1.173333pt;}
.ls77{letter-spacing:1.194667pt;}
.ls4c{letter-spacing:1.226667pt;}
.ls6f{letter-spacing:1.237333pt;}
.ls8{letter-spacing:1.280000pt;}
.ls72{letter-spacing:1.322667pt;}
.ls44{letter-spacing:1.333333pt;}
.ls83{letter-spacing:1.365333pt;}
.lsf{letter-spacing:1.386667pt;}
.ls7b{letter-spacing:1.408000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls6a{letter-spacing:1.450667pt;}
.ls2f{letter-spacing:1.493333pt;}
.lsa{letter-spacing:1.546667pt;}
.ls50{letter-spacing:1.600000pt;}
.ls37{letter-spacing:1.653333pt;}
.ls69{letter-spacing:1.664000pt;}
.ls5d{letter-spacing:1.706667pt;}
.ls47{letter-spacing:1.760000pt;}
.ls12{letter-spacing:1.813333pt;}
.ls8d{letter-spacing:1.834667pt;}
.lsc{letter-spacing:1.866667pt;}
.ls8e{letter-spacing:1.877333pt;}
.ls21{letter-spacing:1.920000pt;}
.ls66{letter-spacing:1.962667pt;}
.ls15{letter-spacing:1.973333pt;}
.ls94{letter-spacing:2.005333pt;}
.ls43{letter-spacing:2.026667pt;}
.ls6c{letter-spacing:2.048000pt;}
.ls36{letter-spacing:2.080000pt;}
.ls88{letter-spacing:2.090667pt;}
.ls13{letter-spacing:2.133333pt;}
.ls70{letter-spacing:2.176000pt;}
.ls24{letter-spacing:2.186667pt;}
.ls3c{letter-spacing:2.240000pt;}
.ls86{letter-spacing:2.261333pt;}
.ls56{letter-spacing:2.293333pt;}
.ls84{letter-spacing:2.304000pt;}
.ls29{letter-spacing:2.346667pt;}
.ls93{letter-spacing:2.389333pt;}
.ls3b{letter-spacing:2.400000pt;}
.ls89{letter-spacing:2.432000pt;}
.ls55{letter-spacing:2.453333pt;}
.ls8a{letter-spacing:2.474667pt;}
.ls5c{letter-spacing:2.506667pt;}
.ls2c{letter-spacing:2.560000pt;}
.ls4d{letter-spacing:2.613333pt;}
.ls8b{letter-spacing:2.645333pt;}
.ls46{letter-spacing:2.666667pt;}
.ls5a{letter-spacing:2.720000pt;}
.ls45{letter-spacing:2.773333pt;}
.ls71{letter-spacing:2.816000pt;}
.ls49{letter-spacing:2.826667pt;}
.ls6e{letter-spacing:2.858667pt;}
.ls78{letter-spacing:2.901333pt;}
.ls40{letter-spacing:2.933333pt;}
.ls28{letter-spacing:2.986667pt;}
.ls11{letter-spacing:3.040000pt;}
.ls5f{letter-spacing:3.146667pt;}
.ls33{letter-spacing:3.200000pt;}
.ls26{letter-spacing:3.253333pt;}
.ls9{letter-spacing:3.306667pt;}
.ls7d{letter-spacing:3.328000pt;}
.ls31{letter-spacing:3.360000pt;}
.ls48{letter-spacing:3.413333pt;}
.ls92{letter-spacing:3.456000pt;}
.ls23{letter-spacing:3.466667pt;}
.ls4a{letter-spacing:3.520000pt;}
.ls38{letter-spacing:3.573333pt;}
.ls68{letter-spacing:3.584000pt;}
.ls7e{letter-spacing:3.626667pt;}
.ls5b{letter-spacing:3.680000pt;}
.ls63{letter-spacing:3.733333pt;}
.ls60{letter-spacing:3.786667pt;}
.ls3d{letter-spacing:3.840000pt;}
.ls95{letter-spacing:3.882667pt;}
.ls2d{letter-spacing:4.160000pt;}
.ls7c{letter-spacing:4.181333pt;}
.lsd{letter-spacing:4.213333pt;}
.ls54{letter-spacing:4.320000pt;}
.ls82{letter-spacing:4.352000pt;}
.ls3a{letter-spacing:4.480000pt;}
.ls62{letter-spacing:4.586667pt;}
.ls52{letter-spacing:4.746667pt;}
.ls2b{letter-spacing:4.906667pt;}
.ls87{letter-spacing:4.949333pt;}
.ls64{letter-spacing:5.013333pt;}
.ls51{letter-spacing:5.173333pt;}
.ls4f{letter-spacing:5.226667pt;}
.ls53{letter-spacing:5.386667pt;}
.ls59{letter-spacing:5.546667pt;}
.ls76{letter-spacing:5.632000pt;}
.ls4e{letter-spacing:5.920000pt;}
.ls8c{letter-spacing:6.058667pt;}
.ls25{letter-spacing:6.186667pt;}
.ls5e{letter-spacing:6.293333pt;}
.ws2a{word-spacing:-53.333333pt;}
.ws2d{word-spacing:-17.226667pt;}
.ws12{word-spacing:-16.266667pt;}
.ws42{word-spacing:-16.213333pt;}
.ws50{word-spacing:-16.000000pt;}
.ws40{word-spacing:-15.893333pt;}
.ws51{word-spacing:-15.733333pt;}
.ws11{word-spacing:-15.573333pt;}
.ws41{word-spacing:-15.520000pt;}
.ws14{word-spacing:-15.466667pt;}
.ws13{word-spacing:-15.306667pt;}
.ws10{word-spacing:-15.200000pt;}
.ws7b{word-spacing:-15.189333pt;}
.ws15{word-spacing:-14.880000pt;}
.ws24{word-spacing:-14.826667pt;}
.ws77{word-spacing:-14.037333pt;}
.ws76{word-spacing:-13.525333pt;}
.ws7e{word-spacing:-13.226667pt;}
.ws60{word-spacing:-13.098667pt;}
.ws97{word-spacing:-13.056000pt;}
.ws5f{word-spacing:-13.013333pt;}
.ws78{word-spacing:-12.970667pt;}
.ws95{word-spacing:-12.928000pt;}
.ws7d{word-spacing:-12.842667pt;}
.ws61{word-spacing:-12.757333pt;}
.ws99{word-spacing:-12.629333pt;}
.ws16{word-spacing:-12.602667pt;}
.ws7f{word-spacing:-12.501333pt;}
.ws7a{word-spacing:-12.373333pt;}
.ws7c{word-spacing:-12.288000pt;}
.ws98{word-spacing:-12.245333pt;}
.ws79{word-spacing:-12.202667pt;}
.ws96{word-spacing:-12.160000pt;}
.ws62{word-spacing:-11.904000pt;}
.ws1{word-spacing:-11.861333pt;}
.ws81{word-spacing:-11.818667pt;}
.ws80{word-spacing:-11.776000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws2c{word-spacing:-9.312000pt;}
.ws2b{word-spacing:-8.896000pt;}
.ws65{word-spacing:-3.733333pt;}
.ws4{word-spacing:-3.226667pt;}
.ws1d{word-spacing:-3.200000pt;}
.ws18{word-spacing:-3.040000pt;}
.ws88{word-spacing:-2.773333pt;}
.ws92{word-spacing:-2.432000pt;}
.ws3{word-spacing:-2.368000pt;}
.ws8f{word-spacing:-2.304000pt;}
.ws67{word-spacing:-2.293333pt;}
.ws86{word-spacing:-2.176000pt;}
.ws1c{word-spacing:-1.973333pt;}
.ws6c{word-spacing:-1.962667pt;}
.ws9b{word-spacing:-1.237333pt;}
.ws9c{word-spacing:-1.194667pt;}
.ws57{word-spacing:-1.173333pt;}
.ws71{word-spacing:-1.152000pt;}
.ws87{word-spacing:-1.109333pt;}
.ws45{word-spacing:-1.066667pt;}
.ws59{word-spacing:-0.906667pt;}
.ws3f{word-spacing:-0.768000pt;}
.ws90{word-spacing:-0.682667pt;}
.ws5e{word-spacing:-0.533333pt;}
.ws53{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.373333pt;}
.ws89{word-spacing:-0.341333pt;}
.ws23{word-spacing:-0.320000pt;}
.ws46{word-spacing:-0.266667pt;}
.ws1b{word-spacing:-0.213333pt;}
.ws5b{word-spacing:-0.160000pt;}
.ws6a{word-spacing:-0.128000pt;}
.ws9{word-spacing:-0.085333pt;}
.ws3d{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.042667pt;}
.ws4b{word-spacing:0.160000pt;}
.ws91{word-spacing:0.170667pt;}
.ws17{word-spacing:0.213333pt;}
.ws6b{word-spacing:0.256000pt;}
.ws58{word-spacing:0.266667pt;}
.ws4d{word-spacing:0.320000pt;}
.ws20{word-spacing:0.533333pt;}
.ws1f{word-spacing:0.586667pt;}
.ws32{word-spacing:0.640000pt;}
.ws38{word-spacing:0.693333pt;}
.ws3c{word-spacing:0.725333pt;}
.ws70{word-spacing:0.810667pt;}
.ws26{word-spacing:0.853333pt;}
.ws35{word-spacing:1.013333pt;}
.ws74{word-spacing:1.066667pt;}
.wsa0{word-spacing:1.109333pt;}
.ws5d{word-spacing:1.173333pt;}
.ws22{word-spacing:1.226667pt;}
.ws8a{word-spacing:1.237333pt;}
.ws4c{word-spacing:1.333333pt;}
.ws8{word-spacing:1.365333pt;}
.ws3b{word-spacing:1.386667pt;}
.ws28{word-spacing:1.440000pt;}
.ws6e{word-spacing:1.536000pt;}
.ws72{word-spacing:1.578667pt;}
.ws5a{word-spacing:1.600000pt;}
.ws9a{word-spacing:1.664000pt;}
.ws6f{word-spacing:1.749333pt;}
.ws19{word-spacing:1.866667pt;}
.ws94{word-spacing:1.962667pt;}
.ws1e{word-spacing:2.026667pt;}
.wsa{word-spacing:2.090667pt;}
.ws54{word-spacing:2.186667pt;}
.ws8d{word-spacing:2.218667pt;}
.ws9e{word-spacing:2.304000pt;}
.ws52{word-spacing:2.346667pt;}
.ws68{word-spacing:2.389333pt;}
.ws83{word-spacing:2.432000pt;}
.ws64{word-spacing:2.453333pt;}
.ws9d{word-spacing:2.474667pt;}
.wsb{word-spacing:2.560000pt;}
.ws49{word-spacing:2.613333pt;}
.ws4e{word-spacing:2.666667pt;}
.ws5c{word-spacing:2.720000pt;}
.ws3a{word-spacing:2.773333pt;}
.ws8b{word-spacing:2.816000pt;}
.ws63{word-spacing:2.880000pt;}
.ws93{word-spacing:2.944000pt;}
.ws8c{word-spacing:3.029333pt;}
.ws4a{word-spacing:3.146667pt;}
.ws73{word-spacing:3.200000pt;}
.ws5{word-spacing:3.242667pt;}
.ws85{word-spacing:3.285333pt;}
.ws4f{word-spacing:3.306667pt;}
.wsc{word-spacing:3.328000pt;}
.ws9f{word-spacing:3.370667pt;}
.ws84{word-spacing:3.413333pt;}
.ws34{word-spacing:3.466667pt;}
.ws82{word-spacing:3.498667pt;}
.ws75{word-spacing:3.541333pt;}
.ws37{word-spacing:3.573333pt;}
.ws6d{word-spacing:3.584000pt;}
.ws69{word-spacing:3.626667pt;}
.ws29{word-spacing:3.680000pt;}
.ws1a{word-spacing:3.786667pt;}
.ws8e{word-spacing:3.797333pt;}
.ws3e{word-spacing:3.840000pt;}
.ws6{word-spacing:3.882667pt;}
.ws66{word-spacing:3.893333pt;}
.ws7{word-spacing:3.925333pt;}
.ws36{word-spacing:4.000000pt;}
.ws55{word-spacing:4.053333pt;}
.ws56{word-spacing:4.160000pt;}
.ws48{word-spacing:4.373333pt;}
.ws25{word-spacing:4.426667pt;}
.ws33{word-spacing:4.533333pt;}
.ws47{word-spacing:4.586667pt;}
.ws27{word-spacing:4.640000pt;}
.ws21{word-spacing:4.746667pt;}
.wsf{word-spacing:4.853333pt;}
.wse{word-spacing:4.906667pt;}
.ws43{word-spacing:37.632000pt;}
.ws31{word-spacing:107.904000pt;}
.ws2e{word-spacing:117.376000pt;}
.ws30{word-spacing:587.178667pt;}
.ws2f{word-spacing:587.904000pt;}
.ws44{word-spacing:592.554667pt;}
._b{margin-left:-2576.112000pt;}
._c{margin-left:-2554.941333pt;}
._7{margin-left:-6.186667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.156800pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.009067pt;}
._6{width:0.906667pt;}
._18{width:1.973333pt;}
._2{width:3.226667pt;}
._5{width:4.794667pt;}
._a{width:5.717333pt;}
._8{width:7.573333pt;}
._13{width:39.338667pt;}
._9{width:48.746667pt;}
._16{width:51.882667pt;}
._11{width:54.090667pt;}
._14{width:55.168000pt;}
._12{width:57.685333pt;}
._15{width:67.072000pt;}
._10{width:97.170133pt;}
._d{width:130.304000pt;}
._e{width:133.973333pt;}
._f{width:137.600000pt;}
._17{width:597.930667pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsa{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:28.026800pt;}
.y2c{bottom:44.904000pt;}
.ye8{bottom:52.972667pt;}
.y1{bottom:73.250400pt;}
.yde{bottom:73.900533pt;}
.y62{bottom:74.101200pt;}
.y2b{bottom:74.216800pt;}
.y6d{bottom:74.234533pt;}
.ya2{bottom:74.278400pt;}
.ybe{bottom:74.341733pt;}
.y90{bottom:75.044800pt;}
.y12f{bottom:76.263733pt;}
.y16f{bottom:84.389600pt;}
.ydd{bottom:87.895200pt;}
.ya1{bottom:88.273067pt;}
.ybd{bottom:88.336400pt;}
.y12e{bottom:89.597067pt;}
.yf8{bottom:89.981200pt;}
.y61{bottom:90.101200pt;}
.y6c{bottom:90.234533pt;}
.y16e{bottom:97.722933pt;}
.ybc{bottom:102.331067pt;}
.y12d{bottom:102.930400pt;}
.yf7{bottom:105.981200pt;}
.y60{bottom:106.101200pt;}
.y6b{bottom:106.234533pt;}
.y1b{bottom:108.016267pt;}
.ye4{bottom:108.737333pt;}
.yb3{bottom:109.516000pt;}
.y16d{bottom:111.056267pt;}
.ye9{bottom:113.504800pt;}
.yb5{bottom:113.530800pt;}
.y12c{bottom:116.263733pt;}
.ybb{bottom:116.325733pt;}
.yf6{bottom:121.981200pt;}
.y5f{bottom:122.101200pt;}
.y6a{bottom:122.234533pt;}
.y16c{bottom:124.389600pt;}
.y12b{bottom:129.597067pt;}
.yb1{bottom:129.814400pt;}
.yba{bottom:130.320400pt;}
.ye7{bottom:132.454800pt;}
.y16b{bottom:137.722933pt;}
.yf5{bottom:137.981200pt;}
.y5e{bottom:138.101200pt;}
.y69{bottom:138.234533pt;}
.yac{bottom:142.561067pt;}
.y12a{bottom:142.930400pt;}
.ya3{bottom:143.051733pt;}
.yb2{bottom:143.281467pt;}
.ye5{bottom:145.264133pt;}
.ye6{bottom:149.756133pt;}
.y16a{bottom:151.056267pt;}
.yb6{bottom:153.456933pt;}
.yf4{bottom:153.981200pt;}
.y5d{bottom:154.101200pt;}
.y68{bottom:154.234533pt;}
.ya4{bottom:155.435733pt;}
.y129{bottom:156.263733pt;}
.yb8{bottom:158.450267pt;}
.yb9{bottom:159.068933pt;}
.yb7{bottom:159.164933pt;}
.ydf{bottom:161.308133pt;}
.y27{bottom:162.419467pt;}
.y169{bottom:164.389600pt;}
.yad{bottom:167.329067pt;}
.ya5{bottom:167.819733pt;}
.y128{bottom:169.597067pt;}
.yf3{bottom:169.981200pt;}
.y5c{bottom:170.101200pt;}
.y67{bottom:170.234533pt;}
.y168{bottom:177.722933pt;}
.y26{bottom:178.419467pt;}
.ye0{bottom:179.857467pt;}
.ya6{bottom:180.214400pt;}
.y127{bottom:182.930400pt;}
.y5b{bottom:186.101200pt;}
.y66{bottom:186.234533pt;}
.y167{bottom:191.056267pt;}
.yec{bottom:191.164933pt;}
.yae{bottom:192.107733pt;}
.ya7{bottom:192.598400pt;}
.y25{bottom:194.419467pt;}
.y126{bottom:196.263733pt;}
.ye1{bottom:198.396133pt;}
.yf2{bottom:201.981200pt;}
.y5a{bottom:202.101200pt;}
.y166{bottom:204.389600pt;}
.ya8{bottom:204.993067pt;}
.yeb{bottom:206.319867pt;}
.y125{bottom:209.597067pt;}
.y24{bottom:210.419467pt;}
.yaf{bottom:216.886400pt;}
.ye2{bottom:216.924133pt;}
.ya9{bottom:217.366400pt;}
.y165{bottom:217.722933pt;}
.yf1{bottom:217.981200pt;}
.y59{bottom:218.101200pt;}
.y65{bottom:218.234533pt;}
.yea{bottom:221.474800pt;}
.y124{bottom:222.930400pt;}
.y23{bottom:226.419467pt;}
.yaa{bottom:229.761067pt;}
.y164{bottom:231.056267pt;}
.yf0{bottom:233.981200pt;}
.y58{bottom:234.101200pt;}
.ye3{bottom:235.462800pt;}
.y123{bottom:236.263733pt;}
.yb0{bottom:241.665067pt;}
.yab{bottom:242.145067pt;}
.y22{bottom:242.419467pt;}
.y163{bottom:244.389600pt;}
.y122{bottom:249.597067pt;}
.yef{bottom:249.981200pt;}
.y57{bottom:250.101200pt;}
.y162{bottom:257.722933pt;}
.y21{bottom:258.419467pt;}
.y121{bottom:262.930400pt;}
.yee{bottom:265.981200pt;}
.y56{bottom:266.101200pt;}
.y161{bottom:271.056267pt;}
.y20{bottom:274.419467pt;}
.y120{bottom:276.263733pt;}
.yed{bottom:281.981200pt;}
.y55{bottom:282.101200pt;}
.y160{bottom:284.389600pt;}
.y11f{bottom:289.597067pt;}
.y1f{bottom:290.419467pt;}
.y15f{bottom:297.722933pt;}
.ydc{bottom:297.981200pt;}
.y54{bottom:298.101200pt;}
.ya0{bottom:298.234533pt;}
.y11e{bottom:302.930400pt;}
.y1e{bottom:306.419467pt;}
.y15e{bottom:311.056267pt;}
.ydb{bottom:313.981200pt;}
.y53{bottom:314.101200pt;}
.y9f{bottom:314.234533pt;}
.y11d{bottom:316.263733pt;}
.y1d{bottom:322.419467pt;}
.y15d{bottom:324.389600pt;}
.yc2{bottom:325.805867pt;}
.y11c{bottom:329.597067pt;}
.yda{bottom:329.981200pt;}
.y52{bottom:330.101200pt;}
.y9e{bottom:330.234533pt;}
.y15c{bottom:337.722933pt;}
.y28{bottom:338.419467pt;}
.y11b{bottom:342.930400pt;}
.yd9{bottom:345.981200pt;}
.y51{bottom:346.101200pt;}
.y9d{bottom:346.234533pt;}
.y15b{bottom:351.056267pt;}
.y1c{bottom:354.419467pt;}
.y11a{bottom:356.263733pt;}
.yd8{bottom:361.981200pt;}
.y50{bottom:362.101200pt;}
.y9c{bottom:362.234533pt;}
.y15a{bottom:364.389600pt;}
.y119{bottom:369.597067pt;}
.y91{bottom:376.358133pt;}
.y159{bottom:377.722933pt;}
.yd7{bottom:377.981200pt;}
.y4f{bottom:378.101200pt;}
.y9b{bottom:378.234533pt;}
.y118{bottom:382.930400pt;}
.y158{bottom:391.056267pt;}
.yd6{bottom:393.981200pt;}
.y4e{bottom:394.101200pt;}
.y9a{bottom:394.234533pt;}
.y117{bottom:396.263733pt;}
.y157{bottom:404.389600pt;}
.y116{bottom:409.597067pt;}
.yd5{bottom:409.981200pt;}
.y4d{bottom:410.101200pt;}
.y8d{bottom:410.104533pt;}
.y99{bottom:410.234533pt;}
.y156{bottom:417.722933pt;}
.y1a{bottom:421.634267pt;}
.y115{bottom:422.930400pt;}
.yd4{bottom:425.981200pt;}
.y4c{bottom:426.101200pt;}
.y8c{bottom:426.104533pt;}
.y98{bottom:426.234533pt;}
.y155{bottom:431.056267pt;}
.y114{bottom:436.263733pt;}
.yd3{bottom:441.981200pt;}
.y4b{bottom:442.101200pt;}
.y8b{bottom:442.104533pt;}
.y97{bottom:442.234533pt;}
.y154{bottom:444.389600pt;}
.y113{bottom:449.597067pt;}
.y19{bottom:450.839600pt;}
.y153{bottom:457.722933pt;}
.yd2{bottom:457.981200pt;}
.y4a{bottom:458.101200pt;}
.y8a{bottom:458.104533pt;}
.y96{bottom:458.234533pt;}
.y112{bottom:462.930400pt;}
.y18{bottom:464.172933pt;}
.y152{bottom:471.056267pt;}
.yd1{bottom:473.981200pt;}
.y64{bottom:474.101200pt;}
.y49{bottom:474.104533pt;}
.y95{bottom:474.234533pt;}
.y111{bottom:476.263733pt;}
.y17{bottom:477.506267pt;}
.y151{bottom:484.389600pt;}
.y110{bottom:489.597067pt;}
.yd0{bottom:489.981200pt;}
.y48{bottom:490.101200pt;}
.y89{bottom:490.104533pt;}
.y94{bottom:490.234533pt;}
.y16{bottom:490.839600pt;}
.y150{bottom:497.722933pt;}
.y10f{bottom:502.930400pt;}
.y15{bottom:504.172933pt;}
.ycf{bottom:505.981200pt;}
.y47{bottom:506.101200pt;}
.y88{bottom:506.104533pt;}
.y93{bottom:506.234533pt;}
.y14f{bottom:511.056267pt;}
.y10e{bottom:516.263733pt;}
.y14{bottom:517.506267pt;}
.yce{bottom:521.981200pt;}
.y8f{bottom:521.984533pt;}
.y46{bottom:522.101200pt;}
.y87{bottom:522.104533pt;}
.yc1{bottom:523.000533pt;}
.y14e{bottom:524.389600pt;}
.y10d{bottom:529.597067pt;}
.y13{bottom:530.839600pt;}
.y14d{bottom:537.722933pt;}
.ycd{bottom:537.981200pt;}
.y45{bottom:538.101200pt;}
.y86{bottom:538.104533pt;}
.y92{bottom:538.234533pt;}
.y10c{bottom:542.930400pt;}
.y12{bottom:544.172933pt;}
.y14c{bottom:551.056267pt;}
.ycc{bottom:553.981200pt;}
.y44{bottom:554.101200pt;}
.y85{bottom:554.104533pt;}
.y10b{bottom:556.263733pt;}
.y11{bottom:557.506267pt;}
.y14b{bottom:564.389600pt;}
.y10a{bottom:569.597067pt;}
.ycb{bottom:569.981200pt;}
.y43{bottom:570.101200pt;}
.y84{bottom:570.104533pt;}
.y10{bottom:570.839600pt;}
.y14a{bottom:577.722933pt;}
.y109{bottom:582.930400pt;}
.yf{bottom:584.172933pt;}
.yca{bottom:585.981200pt;}
.y42{bottom:586.101200pt;}
.y83{bottom:586.104533pt;}
.y149{bottom:591.056267pt;}
.y108{bottom:596.263733pt;}
.ye{bottom:597.506267pt;}
.yc9{bottom:601.981200pt;}
.y41{bottom:602.101200pt;}
.y82{bottom:602.104533pt;}
.y148{bottom:604.389600pt;}
.y107{bottom:609.597067pt;}
.yd{bottom:610.839600pt;}
.y147{bottom:617.722933pt;}
.yc8{bottom:617.981200pt;}
.y40{bottom:618.101200pt;}
.y81{bottom:618.104533pt;}
.y106{bottom:622.930400pt;}
.y146{bottom:631.056267pt;}
.yc7{bottom:633.981200pt;}
.y3f{bottom:634.101200pt;}
.y80{bottom:634.104533pt;}
.y105{bottom:636.263733pt;}
.y145{bottom:644.389600pt;}
.yc6{bottom:649.981200pt;}
.y3e{bottom:650.101200pt;}
.y7f{bottom:650.104533pt;}
.yc{bottom:654.167600pt;}
.y144{bottom:657.722933pt;}
.yc5{bottom:665.981200pt;}
.y104{bottom:665.994533pt;}
.y3d{bottom:666.101200pt;}
.y7e{bottom:666.104533pt;}
.yb{bottom:666.967600pt;}
.y143{bottom:671.056267pt;}
.yc4{bottom:681.981200pt;}
.y3c{bottom:682.101200pt;}
.y7d{bottom:682.104533pt;}
.y142{bottom:684.389600pt;}
.ya{bottom:691.106133pt;}
.y141{bottom:697.722933pt;}
.y3b{bottom:698.101200pt;}
.y7c{bottom:698.104533pt;}
.y140{bottom:711.056267pt;}
.yc3{bottom:713.981200pt;}
.y3a{bottom:714.101200pt;}
.y7b{bottom:714.104533pt;}
.y103{bottom:714.114533pt;}
.yc0{bottom:718.403200pt;}
.y9{bottom:721.675467pt;}
.y13f{bottom:724.389600pt;}
.y63{bottom:729.981200pt;}
.y39{bottom:730.101200pt;}
.y7a{bottom:730.104533pt;}
.y102{bottom:730.114533pt;}
.y13e{bottom:737.722933pt;}
.y8{bottom:740.100000pt;}
.y38{bottom:746.101200pt;}
.y79{bottom:746.104533pt;}
.y13d{bottom:751.056267pt;}
.y7{bottom:751.106267pt;}
.y37{bottom:762.101200pt;}
.y78{bottom:762.104533pt;}
.y101{bottom:762.114533pt;}
.y13c{bottom:764.389600pt;}
.y6{bottom:769.433333pt;}
.y13b{bottom:777.722933pt;}
.y36{bottom:778.101200pt;}
.y77{bottom:778.104533pt;}
.y5{bottom:783.004267pt;}
.y13a{bottom:791.056267pt;}
.y35{bottom:794.101200pt;}
.y76{bottom:794.104533pt;}
.y100{bottom:794.114533pt;}
.y139{bottom:804.389600pt;}
.y4{bottom:807.369067pt;}
.y34{bottom:810.101200pt;}
.y75{bottom:810.104533pt;}
.yff{bottom:810.114533pt;}
.y138{bottom:817.722933pt;}
.y33{bottom:826.101200pt;}
.y74{bottom:826.104533pt;}
.yfe{bottom:826.114533pt;}
.y137{bottom:831.056267pt;}
.y3{bottom:831.355733pt;}
.y32{bottom:842.101200pt;}
.y73{bottom:842.104533pt;}
.yfd{bottom:842.114533pt;}
.y136{bottom:844.389600pt;}
.y135{bottom:857.722933pt;}
.y31{bottom:858.101200pt;}
.y72{bottom:858.104533pt;}
.yfc{bottom:858.114533pt;}
.y134{bottom:871.056267pt;}
.y2{bottom:871.060800pt;}
.y30{bottom:874.101200pt;}
.y71{bottom:874.104533pt;}
.yfb{bottom:874.114533pt;}
.y133{bottom:884.389600pt;}
.y2f{bottom:890.101200pt;}
.y70{bottom:890.104533pt;}
.y132{bottom:897.722933pt;}
.y2e{bottom:906.101200pt;}
.y6f{bottom:906.104533pt;}
.yfa{bottom:906.114533pt;}
.y131{bottom:911.056267pt;}
.ybf{bottom:917.208533pt;}
.y2d{bottom:922.101200pt;}
.y8e{bottom:922.104533pt;}
.yf9{bottom:922.114533pt;}
.y130{bottom:924.389600pt;}
.y2a{bottom:951.795067pt;}
.y6e{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h6{height:18.662500pt;}
.h2{height:27.216146pt;}
.h8{height:31.062500pt;}
.h9{height:31.074833pt;}
.h7{height:31.104167pt;}
.hc{height:33.048177pt;}
.h10{height:34.090833pt;}
.h12{height:36.886719pt;}
.ha{height:38.828125pt;}
.hb{height:38.880208pt;}
.hd{height:38.893542pt;}
.he{height:41.635325pt;}
.h5{height:45.799071pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h11{height:154.412000pt;}
.hf{height:162.610667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:400.524000pt;}
.w3{width:640.796000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:9.149067pt;}
.x26{left:10.867467pt;}
.x23{left:21.173867pt;}
.x22{left:67.002667pt;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x21{left:93.605867pt;}
.xb{left:98.267733pt;}
.x3{left:111.501867pt;}
.x2b{left:113.385867pt;}
.x6{left:117.170133pt;}
.x1e{left:124.346400pt;}
.x24{left:125.989867pt;}
.x4{left:143.619200pt;}
.x28{left:169.004800pt;}
.x20{left:176.778133pt;}
.x5{left:189.223467pt;}
.x25{left:197.061867pt;}
.x19{left:306.246667pt;}
.x16{left:327.001733pt;}
.x27{left:339.592800pt;}
.x1c{left:353.660533pt;}
.x17{left:355.769733pt;}
.x1d{left:393.681867pt;}
.x9{left:404.481333pt;}
.xc{left:406.301733pt;}
.x1f{left:414.618400pt;}
.x11{left:425.201733pt;}
.x7{left:427.090133pt;}
.x2a{left:432.752667pt;}
.xe{left:436.541733pt;}
.x2c{left:451.636533pt;}
.x13{left:455.441733pt;}
.xd{left:466.915067pt;}
.x1b{left:472.671733pt;}
.x29{left:510.978133pt;}
.x12{left:544.815067pt;}
.x10{left:589.770933pt;}
.x2{left:626.078800pt;}
.x2d{left:637.449067pt;}
.xf{left:643.752133pt;}
.x14{left:662.649733pt;}
.x15{left:670.393733pt;}
.x18{left:702.755733pt;}
}




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