
    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_9c6e7442213434b9e9123cc4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_9aaf7d981b95498e52244497.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_2d06628402787ae9bcd643a2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_405d53f7988614dccd3643a7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_b7f1755f0eaaaa46dfe9fbfa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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_8d1ecf751e54f95c8baf69b1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.822000;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_ffb4131c392b92468f3c98cc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_6a9c697be56e8c6490bd4a6f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_982f4a5c244639c8ad7fabbc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_f015a3ee10e13397c7daba42.woff')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_e6a69cc34d67ccadb6b7b57d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.902344;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_c4cd6dcce33ee2888a56bb25.woff')format("woff");}.ffc{font-family:ffc;line-height:0.904297;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_7d41513a7e014751f17feeb7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666992;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_36e4a71de61ebda279510832.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_d1027dd26c69da17c1d189e6.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.800000px;}
.v2{vertical-align:24.264000px;}
.v1{vertical-align:178.800000px;}
.ls50{letter-spacing:-7.632000px;}
.ls37{letter-spacing:-6.768000px;}
.ls73{letter-spacing:-3.240000px;}
.ls47{letter-spacing:-2.880000px;}
.ls5a{letter-spacing:-1.800000px;}
.ls63{letter-spacing:-1.224000px;}
.ls6d{letter-spacing:-0.864000px;}
.ls4f{letter-spacing:-0.720000px;}
.ls6c{letter-spacing:-0.648000px;}
.ls78{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.504000px;}
.ls77{letter-spacing:-0.480000px;}
.ls36{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.288000px;}
.ls38{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000600px;}
.ls16{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.165600px;}
.ls18{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.ls41{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.360000px;}
.ls42{letter-spacing:0.381600px;}
.ls2d{letter-spacing:0.388800px;}
.ls2c{letter-spacing:0.396000px;}
.ls12{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.705600px;}
.ls5{letter-spacing:0.720000px;}
.ls3d{letter-spacing:0.792000px;}
.ls68{letter-spacing:0.864000px;}
.ls3f{letter-spacing:0.936000px;}
.ls3b{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.152000px;}
.lse{letter-spacing:1.224000px;}
.ls10{letter-spacing:1.296000px;}
.ls26{letter-spacing:1.368000px;}
.ls64{letter-spacing:1.440000px;}
.ls1f{letter-spacing:1.512000px;}
.ls5b{letter-spacing:2.304000px;}
.ls2b{letter-spacing:2.376000px;}
.ls51{letter-spacing:2.592000px;}
.ls60{letter-spacing:2.772000px;}
.ls3e{letter-spacing:2.880000px;}
.ls76{letter-spacing:2.899200px;}
.ls22{letter-spacing:3.024000px;}
.ls5f{letter-spacing:3.528000px;}
.ls4a{letter-spacing:4.032000px;}
.ls35{letter-spacing:4.104000px;}
.ls71{letter-spacing:4.190400px;}
.ls43{letter-spacing:4.392000px;}
.ls2{letter-spacing:4.416000px;}
.ls40{letter-spacing:4.464000px;}
.ls48{letter-spacing:4.680000px;}
.ls75{letter-spacing:4.752000px;}
.ls72{letter-spacing:4.968000px;}
.ls3a{letter-spacing:5.040000px;}
.ls6b{letter-spacing:5.119200px;}
.ls46{letter-spacing:5.616000px;}
.ls6f{letter-spacing:5.760000px;}
.ls53{letter-spacing:5.904000px;}
.ls54{letter-spacing:5.918400px;}
.ls21{letter-spacing:5.976000px;}
.ls59{letter-spacing:6.480000px;}
.ls4e{letter-spacing:6.768000px;}
.ls4c{letter-spacing:6.840000px;}
.ls52{letter-spacing:7.128000px;}
.ls49{letter-spacing:7.200000px;}
.ls2a{letter-spacing:7.272000px;}
.ls1e{letter-spacing:7.560000px;}
.ls1c{letter-spacing:7.704000px;}
.ls1b{letter-spacing:7.920000px;}
.ls23{letter-spacing:8.160000px;}
.ls0{letter-spacing:8.436000px;}
.ls66{letter-spacing:8.460000px;}
.ls25{letter-spacing:8.568000px;}
.ls70{letter-spacing:8.784000px;}
.ls34{letter-spacing:9.043200px;}
.ls15{letter-spacing:9.432000px;}
.ls56{letter-spacing:9.576000px;}
.ls55{letter-spacing:9.648000px;}
.ls6e{letter-spacing:10.080000px;}
.ls4d{letter-spacing:10.152000px;}
.ls74{letter-spacing:10.368000px;}
.ls45{letter-spacing:10.440000px;}
.ls61{letter-spacing:10.512000px;}
.ls3{letter-spacing:10.534363px;}
.ls39{letter-spacing:10.584000px;}
.ls20{letter-spacing:10.656000px;}
.ls32{letter-spacing:10.728000px;}
.ls1{letter-spacing:10.740000px;}
.ls31{letter-spacing:10.756800px;}
.ls5c{letter-spacing:10.764000px;}
.ls67{letter-spacing:10.771200px;}
.ls69{letter-spacing:10.785600px;}
.ls24{letter-spacing:10.800000px;}
.ls5d{letter-spacing:10.836000px;}
.ls6a{letter-spacing:10.857600px;}
.ls2f{letter-spacing:10.872000px;}
.ls57{letter-spacing:11.016000px;}
.ls3c{letter-spacing:11.088000px;}
.ls4b{letter-spacing:11.160000px;}
.ls2e{letter-spacing:11.232000px;}
.ls58{letter-spacing:11.376000px;}
.ls65{letter-spacing:11.448000px;}
.ls5e{letter-spacing:11.808000px;}
.ls29{letter-spacing:11.880000px;}
.ls27{letter-spacing:12.024000px;}
.ls62{letter-spacing:14.760000px;}
.ls44{letter-spacing:15.192000px;}
.ls33{letter-spacing:19.994400px;}
.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;}
}
.ws4b{word-spacing:-60.000000px;}
.ws67{word-spacing:-29.592000px;}
.ws30{word-spacing:-29.016000px;}
.ws52{word-spacing:-28.944000px;}
.ws5d{word-spacing:-28.656000px;}
.ws42{word-spacing:-28.584000px;}
.ws82{word-spacing:-28.512000px;}
.ws7f{word-spacing:-28.224000px;}
.ws83{word-spacing:-28.152000px;}
.ws77{word-spacing:-27.864000px;}
.ws5e{word-spacing:-27.432000px;}
.ws21{word-spacing:-25.704000px;}
.ws22{word-spacing:-25.488000px;}
.ws23{word-spacing:-25.344000px;}
.ws84{word-spacing:-25.320000px;}
.ws53{word-spacing:-24.552000px;}
.ws1{word-spacing:-20.952000px;}
.ws73{word-spacing:-20.808000px;}
.ws7c{word-spacing:-20.736000px;}
.ws2c{word-spacing:-20.592000px;}
.ws5f{word-spacing:-20.520000px;}
.ws32{word-spacing:-20.376000px;}
.ws31{word-spacing:-20.304000px;}
.ws2e{word-spacing:-20.232000px;}
.ws51{word-spacing:-19.872000px;}
.ws11{word-spacing:-18.504000px;}
.ws60{word-spacing:-18.360000px;}
.ws2f{word-spacing:-18.216000px;}
.ws43{word-spacing:-18.144000px;}
.ws20{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.784000px;}
.ws44{word-spacing:-17.424000px;}
.ws4d{word-spacing:-17.352000px;}
.ws80{word-spacing:-16.992000px;}
.ws8a{word-spacing:-16.860000px;}
.ws89{word-spacing:-14.820000px;}
.ws6a{word-spacing:-14.760000px;}
.ws8b{word-spacing:-14.520000px;}
.ws2d{word-spacing:-14.162400px;}
.ws3{word-spacing:-13.488000px;}
.ws2{word-spacing:-11.856000px;}
.ws88{word-spacing:-11.802000px;}
.ws71{word-spacing:-11.448000px;}
.ws7b{word-spacing:-11.376000px;}
.ws6d{word-spacing:-11.160000px;}
.ws48{word-spacing:-11.088000px;}
.ws66{word-spacing:-11.016000px;}
.ws3c{word-spacing:-10.872000px;}
.ws35{word-spacing:-10.800000px;}
.ws40{word-spacing:-10.728000px;}
.ws27{word-spacing:-10.656000px;}
.ws3e{word-spacing:-10.584000px;}
.ws4f{word-spacing:-10.440000px;}
.ws65{word-spacing:-9.648000px;}
.ws1b{word-spacing:-9.432000px;}
.ws7e{word-spacing:-8.784000px;}
.ws0{word-spacing:-8.496000px;}
.ws74{word-spacing:-8.460000px;}
.ws33{word-spacing:-8.160000px;}
.ws70{word-spacing:-7.992000px;}
.ws5c{word-spacing:-7.128000px;}
.ws54{word-spacing:-6.840000px;}
.ws62{word-spacing:-6.480000px;}
.ws76{word-spacing:-6.336000px;}
.ws29{word-spacing:-5.976000px;}
.ws7a{word-spacing:-5.760000px;}
.ws50{word-spacing:-5.616000px;}
.ws41{word-spacing:-5.040000px;}
.ws81{word-spacing:-4.968000px;}
.ws4e{word-spacing:-4.680000px;}
.ws4a{word-spacing:-4.464000px;}
.ws63{word-spacing:-4.320000px;}
.ws34{word-spacing:-4.104000px;}
.ws7d{word-spacing:-3.096000px;}
.ws2a{word-spacing:-3.024000px;}
.ws45{word-spacing:-2.880000px;}
.ws61{word-spacing:-2.808000px;}
.ws5b{word-spacing:-2.592000px;}
.ws64{word-spacing:-2.304000px;}
.ws2b{word-spacing:-1.512000px;}
.ws6c{word-spacing:-1.440000px;}
.ws37{word-spacing:-1.368000px;}
.ws16{word-spacing:-1.296000px;}
.ws14{word-spacing:-1.224000px;}
.ws15{word-spacing:-1.152000px;}
.ws13{word-spacing:-1.080000px;}
.ws46{word-spacing:-1.008000px;}
.ws47{word-spacing:-0.936000px;}
.ws75{word-spacing:-0.864000px;}
.ws49{word-spacing:-0.792000px;}
.wsf{word-spacing:-0.720000px;}
.ws26{word-spacing:-0.648000px;}
.ws17{word-spacing:-0.576000px;}
.ws18{word-spacing:-0.504000px;}
.ws8{word-spacing:-0.480000px;}
.ws1f{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.360000px;}
.wse{word-spacing:-0.288000px;}
.ws25{word-spacing:-0.216000px;}
.ws24{word-spacing:-0.144000px;}
.ws1e{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws1a{word-spacing:0.072000px;}
.wsb{word-spacing:0.144000px;}
.ws3d{word-spacing:0.216000px;}
.wsc{word-spacing:0.288000px;}
.ws9{word-spacing:0.300000px;}
.wsa{word-spacing:0.360000px;}
.ws39{word-spacing:0.432000px;}
.ws87{word-spacing:0.480000px;}
.ws19{word-spacing:0.504000px;}
.wsd{word-spacing:0.576000px;}
.ws8c{word-spacing:0.600000px;}
.ws79{word-spacing:0.648000px;}
.ws58{word-spacing:0.720000px;}
.ws57{word-spacing:0.864000px;}
.ws6b{word-spacing:1.224000px;}
.ws85{word-spacing:1.440000px;}
.ws6{word-spacing:1.800000px;}
.ws72{word-spacing:2.232000px;}
.ws1d{word-spacing:2.520000px;}
.ws5a{word-spacing:2.592000px;}
.ws1c{word-spacing:2.736000px;}
.ws86{word-spacing:2.976000px;}
.ws6e{word-spacing:3.024000px;}
.ws69{word-spacing:3.456000px;}
.ws8d{word-spacing:3.720000px;}
.ws4{word-spacing:4.200000px;}
.ws4c{word-spacing:4.320000px;}
.ws7{word-spacing:4.464000px;}
.ws6f{word-spacing:4.896000px;}
.ws68{word-spacing:6.048000px;}
.ws3f{word-spacing:6.120000px;}
.ws78{word-spacing:6.336000px;}
.ws3b{word-spacing:6.768000px;}
.ws59{word-spacing:7.632000px;}
.ws55{word-spacing:7.992000px;}
.ws56{word-spacing:8.064000px;}
.ws36{word-spacing:8.640000px;}
.ws3a{word-spacing:8.856000px;}
.ws38{word-spacing:10.512000px;}
.ws10{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._1c{margin-left:-20.232000px;}
._1b{margin-left:-15.337800px;}
._12{margin-left:-14.311800px;}
._17{margin-left:-12.352800px;}
._16{margin-left:-10.684800px;}
._14{margin-left:-9.450000px;}
._d{margin-left:-7.767600px;}
._1{margin-left:-5.964000px;}
._8{margin-left:-3.984000px;}
._9{margin-left:-2.412600px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._b{width:2.896800px;}
._4{width:3.912000px;}
._a{width:5.208000px;}
._e{width:6.249600px;}
._10{width:7.383000px;}
._5{width:8.448000px;}
._c{width:9.741600px;}
._f{width:11.047800px;}
._13{width:12.237000px;}
._15{width:13.521600px;}
._1a{width:15.120000px;}
._19{width:16.572600px;}
._1e{width:18.177000px;}
._1d{width:20.304000px;}
._18{width:21.655800px;}
._11{width:31.646100px;}
._6{width:52.608000px;}
._7{width:56.280000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:421.602600px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y1f{bottom:117.000000px;}
.y1d8{bottom:117.930000px;}
.y153{bottom:118.770000px;}
.y109{bottom:119.652000px;}
.y19b{bottom:120.672000px;}
.yc8{bottom:121.056000px;}
.y66{bottom:121.207500px;}
.y12f{bottom:121.650000px;}
.y177{bottom:122.004000px;}
.yed{bottom:122.334000px;}
.ya3{bottom:123.192000px;}
.y43{bottom:123.300000px;}
.y1d7{bottom:132.786000px;}
.y1e{bottom:136.207500px;}
.y80{bottom:139.500000px;}
.y152{bottom:141.864000px;}
.y108{bottom:142.008000px;}
.y12e{bottom:143.250000px;}
.yc7{bottom:143.412000px;}
.y19a{bottom:143.622000px;}
.y65{bottom:143.707500px;}
.y176{bottom:144.054000px;}
.yec{bottom:144.690000px;}
.ya2{bottom:145.692000px;}
.y42{bottom:146.250000px;}
.y1d6{bottom:147.630000px;}
.y7f{bottom:162.000000px;}
.y1d5{bottom:162.486000px;}
.y107{bottom:164.364000px;}
.y12d{bottom:164.850000px;}
.y151{bottom:164.958000px;}
.yc6{bottom:165.768000px;}
.y175{bottom:166.104000px;}
.y199{bottom:166.572000px;}
.yeb{bottom:167.046000px;}
.ya1{bottom:168.336000px;}
.y41{bottom:169.200000px;}
.y1d{bottom:172.442550px;}
.y7e{bottom:173.250000px;}
.y1b6{bottom:176.976000px;}
.y1d4{bottom:177.330000px;}
.y64{bottom:184.500000px;}
.y12c{bottom:186.450000px;}
.y106{bottom:186.720000px;}
.y150{bottom:188.052000px;}
.yc5{bottom:188.124000px;}
.y174{bottom:188.154000px;}
.yea{bottom:189.402000px;}
.y198{bottom:189.522000px;}
.ya0{bottom:190.980000px;}
.y40{bottom:192.150000px;}
.y1d3{bottom:192.174000px;}
.y1c{bottom:194.798550px;}
.y7d{bottom:195.750000px;}
.y1b5{bottom:199.332000px;}
.y63{bottom:207.000000px;}
.y1d2{bottom:207.018000px;}
.y12b{bottom:208.050000px;}
.y105{bottom:209.076000px;}
.yc4{bottom:209.868000px;}
.y173{bottom:210.204000px;}
.y14f{bottom:211.146000px;}
.ye9{bottom:211.758000px;}
.y197{bottom:212.472000px;}
.y9f{bottom:213.624000px;}
.y3f{bottom:215.100000px;}
.y1b{bottom:217.154550px;}
.y7c{bottom:218.250000px;}
.y1b4{bottom:221.688000px;}
.y1d1{bottom:221.862000px;}
.y62{bottom:229.500000px;}
.y12a{bottom:229.650000px;}
.y1fb{bottom:230.622000px;}
.y104{bottom:231.432000px;}
.yc3{bottom:231.612000px;}
.y172{bottom:232.254000px;}
.ye8{bottom:234.114000px;}
.y14e{bottom:234.240000px;}
.y196{bottom:235.422000px;}
.y9e{bottom:236.268000px;}
.y1d0{bottom:236.706000px;}
.y3e{bottom:238.050000px;}
.y1a{bottom:239.510550px;}
.y7b{bottom:240.750000px;}
.y1b3{bottom:244.044000px;}
.y1fa{bottom:249.372000px;}
.y129{bottom:251.208000px;}
.y1cf{bottom:251.562000px;}
.y61{bottom:252.000000px;}
.yc2{bottom:253.356000px;}
.y103{bottom:253.788000px;}
.y171{bottom:254.304000px;}
.ye7{bottom:256.470000px;}
.y14d{bottom:257.334000px;}
.y195{bottom:258.372000px;}
.y9d{bottom:258.912000px;}
.y3d{bottom:261.000000px;}
.y19{bottom:261.866550px;}
.y7a{bottom:263.250000px;}
.y1b2{bottom:266.400000px;}
.y1ce{bottom:266.406000px;}
.y1f9{bottom:268.122000px;}
.y128{bottom:273.114000px;}
.y60{bottom:274.500000px;}
.yc1{bottom:275.100000px;}
.y102{bottom:276.144000px;}
.y170{bottom:276.210000px;}
.ye6{bottom:278.826000px;}
.y14c{bottom:280.140000px;}
.y1cd{bottom:281.250000px;}
.y194{bottom:281.322000px;}
.y9c{bottom:281.556000px;}
.y3c{bottom:283.950000px;}
.y18{bottom:284.222550px;}
.y1f8{bottom:286.872000px;}
.y1b1{bottom:288.750000px;}
.y127{bottom:295.020000px;}
.y1cc{bottom:296.094000px;}
.yc0{bottom:296.844000px;}
.y5f{bottom:297.000000px;}
.y101{bottom:298.500000px;}
.y16f{bottom:298.566000px;}
.ye5{bottom:301.182000px;}
.y14b{bottom:302.946000px;}
.y193{bottom:303.966000px;}
.y9b{bottom:304.200000px;}
.y17{bottom:306.578550px;}
.y3b{bottom:306.900000px;}
.y79{bottom:308.250000px;}
.y1cb{bottom:310.938000px;}
.y1f7{bottom:316.872000px;}
.y126{bottom:316.926000px;}
.ybf{bottom:318.588000px;}
.y5e{bottom:319.500000px;}
.y16e{bottom:320.922000px;}
.y100{bottom:321.000000px;}
.ye4{bottom:323.538000px;}
.y14a{bottom:325.590000px;}
.y1ca{bottom:325.794000px;}
.y192{bottom:326.610000px;}
.y9a{bottom:326.844000px;}
.y16{bottom:328.934550px;}
.y3a{bottom:329.850000px;}
.y78{bottom:330.750000px;}
.y1b0{bottom:333.798000px;}
.y125{bottom:338.832000px;}
.ybe{bottom:340.332000px;}
.y1c9{bottom:340.638000px;}
.y5d{bottom:342.000000px;}
.y16d{bottom:343.278000px;}
.yff{bottom:343.500000px;}
.ye3{bottom:345.894000px;}
.y149{bottom:348.234000px;}
.y191{bottom:349.254000px;}
.y99{bottom:349.488000px;}
.y15{bottom:351.290550px;}
.y39{bottom:352.800000px;}
.y77{bottom:353.250000px;}
.y1c8{bottom:355.482000px;}
.y1af{bottom:356.604000px;}
.y1f6{bottom:358.122000px;}
.y124{bottom:360.738000px;}
.y5c{bottom:364.500000px;}
.y16c{bottom:365.634000px;}
.yfe{bottom:366.000000px;}
.ye2{bottom:368.250000px;}
.y1c7{bottom:370.326000px;}
.y148{bottom:370.878000px;}
.y190{bottom:371.898000px;}
.y98{bottom:372.132000px;}
.y14{bottom:373.646550px;}
.y38{bottom:375.750000px;}
.y1f5{bottom:376.872000px;}
.y1ae{bottom:379.410000px;}
.y123{bottom:382.644000px;}
.ybd{bottom:383.838000px;}
.y1c6{bottom:385.170000px;}
.y5b{bottom:387.000000px;}
.y16b{bottom:387.990000px;}
.yfd{bottom:388.500000px;}
.ye1{bottom:390.606000px;}
.y147{bottom:393.522000px;}
.y97{bottom:394.776000px;}
.y1f4{bottom:395.622000px;}
.y13{bottom:396.002550px;}
.y76{bottom:398.250000px;}
.y37{bottom:398.700000px;}
.y1c5{bottom:400.026000px;}
.y1ad{bottom:402.216000px;}
.y122{bottom:404.550000px;}
.ybc{bottom:405.582000px;}
.y18f{bottom:405.954000px;}
.y5a{bottom:409.500000px;}
.y16a{bottom:410.346000px;}
.yfc{bottom:411.000000px;}
.ye0{bottom:412.962000px;}
.y1f3{bottom:414.372000px;}
.y1c4{bottom:414.870000px;}
.y146{bottom:416.166000px;}
.y96{bottom:417.420000px;}
.y12{bottom:418.358550px;}
.y75{bottom:420.750000px;}
.y36{bottom:421.650000px;}
.y1ac{bottom:425.022000px;}
.y121{bottom:426.414000px;}
.ybb{bottom:427.326000px;}
.y18e{bottom:428.598000px;}
.y1c3{bottom:429.714000px;}
.y59{bottom:432.000000px;}
.y169{bottom:432.702000px;}
.y1f2{bottom:433.122000px;}
.yfb{bottom:433.500000px;}
.ydf{bottom:435.318000px;}
.y145{bottom:438.810000px;}
.y95{bottom:440.064000px;}
.y11{bottom:440.714550px;}
.y74{bottom:443.250000px;}
.y1c2{bottom:444.558000px;}
.y35{bottom:444.600000px;}
.y1ab{bottom:447.828000px;}
.y120{bottom:448.320000px;}
.yba{bottom:449.070000px;}
.y18d{bottom:451.242000px;}
.y1f1{bottom:451.872000px;}
.y58{bottom:454.500000px;}
.y168{bottom:455.058000px;}
.yfa{bottom:456.000000px;}
.yde{bottom:457.674000px;}
.y1c1{bottom:459.402000px;}
.y144{bottom:461.454000px;}
.y94{bottom:462.708000px;}
.y10{bottom:463.070550px;}
.y73{bottom:465.750000px;}
.y34{bottom:467.550000px;}
.y11f{bottom:470.226000px;}
.y1f0{bottom:470.622000px;}
.y1aa{bottom:470.634000px;}
.yb9{bottom:470.814000px;}
.y18c{bottom:473.886000px;}
.y1c0{bottom:474.258000px;}
.y57{bottom:477.000000px;}
.y167{bottom:477.414000px;}
.yf9{bottom:478.500000px;}
.ydd{bottom:480.030000px;}
.y143{bottom:484.098000px;}
.y93{bottom:485.352000px;}
.yf{bottom:485.426550px;}
.y72{bottom:488.250000px;}
.y1bf{bottom:489.102000px;}
.y1ef{bottom:489.372000px;}
.y33{bottom:490.500000px;}
.y11e{bottom:492.132000px;}
.yb8{bottom:492.558000px;}
.y1a9{bottom:493.440000px;}
.y18b{bottom:496.530000px;}
.y56{bottom:499.500000px;}
.y166{bottom:499.770000px;}
.yf8{bottom:501.000000px;}
.ydc{bottom:502.386000px;}
.y1be{bottom:503.946000px;}
.y142{bottom:506.742000px;}
.ye{bottom:507.782550px;}
.y92{bottom:507.996000px;}
.y1ee{bottom:508.122000px;}
.y71{bottom:510.750000px;}
.y32{bottom:513.450000px;}
.y11d{bottom:514.038000px;}
.yb7{bottom:514.302000px;}
.y1a8{bottom:516.246000px;}
.y1bd{bottom:518.790000px;}
.y18a{bottom:519.174000px;}
.y55{bottom:522.000000px;}
.y165{bottom:522.126000px;}
.yf7{bottom:523.500000px;}
.ydb{bottom:524.742000px;}
.y1ed{bottom:526.872000px;}
.y141{bottom:529.386000px;}
.yd{bottom:530.138550px;}
.y91{bottom:530.640000px;}
.y70{bottom:533.250000px;}
.y1bc{bottom:533.634000px;}
.y11c{bottom:535.944000px;}
.yb6{bottom:536.046000px;}
.y31{bottom:536.400000px;}
.y1a7{bottom:539.052000px;}
.y189{bottom:541.818000px;}
.y164{bottom:544.482000px;}
.y54{bottom:544.500000px;}
.y1ec{bottom:545.622000px;}
.yf6{bottom:546.000000px;}
.yda{bottom:547.098000px;}
.y1bb{bottom:548.490000px;}
.y140{bottom:552.030000px;}
.yc{bottom:552.494550px;}
.y90{bottom:553.284000px;}
.y6f{bottom:555.750000px;}
.yb5{bottom:557.790000px;}
.y11b{bottom:557.850000px;}
.y30{bottom:559.350000px;}
.y1a6{bottom:561.858000px;}
.y1ba{bottom:563.334000px;}
.y1eb{bottom:564.372000px;}
.y188{bottom:564.462000px;}
.y163{bottom:566.838000px;}
.y53{bottom:567.000000px;}
.yf5{bottom:568.500000px;}
.yd9{bottom:569.454000px;}
.y13f{bottom:574.674000px;}
.yb{bottom:574.850550px;}
.y8f{bottom:575.928000px;}
.y1b9{bottom:578.178000px;}
.y6e{bottom:578.250000px;}
.yb4{bottom:579.534000px;}
.y11a{bottom:579.828000px;}
.y2f{bottom:582.300000px;}
.y1ea{bottom:583.122000px;}
.y1a5{bottom:584.664000px;}
.y187{bottom:587.106000px;}
.y162{bottom:589.194000px;}
.y52{bottom:589.500000px;}
.yf4{bottom:591.000000px;}
.yd8{bottom:591.810000px;}
.y1b8{bottom:593.022000px;}
.ya{bottom:597.206550px;}
.y8{bottom:597.218550px;}
.y13e{bottom:597.318000px;}
.y8e{bottom:598.572000px;}
.y6d{bottom:600.750000px;}
.yb3{bottom:601.278000px;}
.y119{bottom:601.572000px;}
.y1e9{bottom:601.872000px;}
.y2e{bottom:605.250000px;}
.y1a4{bottom:607.470000px;}
.y186{bottom:609.750000px;}
.y161{bottom:611.550000px;}
.y51{bottom:612.000000px;}
.yf3{bottom:613.500000px;}
.yd7{bottom:614.166000px;}
.y1b7{bottom:614.250000px;}
.y9{bottom:619.562550px;}
.y13d{bottom:619.962000px;}
.y1e8{bottom:620.622000px;}
.y8d{bottom:621.216000px;}
.yb2{bottom:623.022000px;}
.y6c{bottom:623.250000px;}
.y118{bottom:623.316000px;}
.y2d{bottom:628.200000px;}
.y1a3{bottom:630.276000px;}
.y185{bottom:632.424000px;}
.y160{bottom:633.900000px;}
.y50{bottom:634.500000px;}
.yf2{bottom:636.000000px;}
.yd6{bottom:636.522000px;}
.y1e7{bottom:639.372000px;}
.y13c{bottom:642.606000px;}
.y8c{bottom:643.860000px;}
.yb1{bottom:644.766000px;}
.y117{bottom:645.060000px;}
.y6b{bottom:645.750000px;}
.y2c{bottom:651.150000px;}
.y1a2{bottom:653.082000px;}
.y184{bottom:655.068000px;}
.y15f{bottom:656.400000px;}
.y4f{bottom:657.000000px;}
.y1e6{bottom:658.122000px;}
.yf1{bottom:658.500000px;}
.yd5{bottom:658.878000px;}
.y13b{bottom:665.250000px;}
.y8b{bottom:666.504000px;}
.yb0{bottom:666.510000px;}
.y116{bottom:666.804000px;}
.y6a{bottom:668.250000px;}
.y2b{bottom:674.100000px;}
.y1a1{bottom:675.888000px;}
.y1e5{bottom:676.872000px;}
.y183{bottom:677.712000px;}
.y15e{bottom:678.900000px;}
.y4e{bottom:679.500000px;}
.yf0{bottom:681.000000px;}
.yd4{bottom:681.234000px;}
.y13a{bottom:687.894000px;}
.yaf{bottom:688.254000px;}
.y115{bottom:688.548000px;}
.y8a{bottom:689.148000px;}
.y69{bottom:690.750000px;}
.y1e4{bottom:695.622000px;}
.y2a{bottom:697.050000px;}
.y1a0{bottom:698.694000px;}
.y182{bottom:700.356000px;}
.y15d{bottom:701.400000px;}
.y4d{bottom:702.000000px;}
.yef{bottom:703.500000px;}
.yd3{bottom:703.590000px;}
.y7{bottom:708.968550px;}
.yae{bottom:709.998000px;}
.y114{bottom:710.292000px;}
.y139{bottom:710.538000px;}
.y68{bottom:713.250000px;}
.y1e3{bottom:714.372000px;}
.y29{bottom:720.000000px;}
.y19f{bottom:721.446000px;}
.y181{bottom:723.000000px;}
.y89{bottom:723.204000px;}
.y15c{bottom:723.900000px;}
.y4c{bottom:724.500000px;}
.yd2{bottom:725.946000px;}
.yee{bottom:726.000000px;}
.y6{bottom:727.718550px;}
.yad{bottom:731.742000px;}
.y113{bottom:732.036000px;}
.y1e2{bottom:733.122000px;}
.y138{bottom:733.182000px;}
.y67{bottom:735.750000px;}
.y28{bottom:742.950000px;}
.y19e{bottom:744.252000px;}
.y180{bottom:745.674000px;}
.y88{bottom:745.848000px;}
.y15b{bottom:746.400000px;}
.y4b{bottom:747.000000px;}
.yd1{bottom:748.302000px;}
.y1e1{bottom:751.872000px;}
.yac{bottom:753.486000px;}
.y112{bottom:753.780000px;}
.y137{bottom:755.826000px;}
.y27{bottom:765.900000px;}
.y19d{bottom:767.058000px;}
.y17f{bottom:768.318000px;}
.y87{bottom:768.492000px;}
.y15a{bottom:768.900000px;}
.y4a{bottom:769.500000px;}
.y5{bottom:769.854300px;}
.y1e0{bottom:770.622000px;}
.yd0{bottom:770.658000px;}
.yab{bottom:775.230000px;}
.y111{bottom:775.524000px;}
.y136{bottom:778.470000px;}
.y26{bottom:788.850000px;}
.y1df{bottom:789.372000px;}
.y19c{bottom:789.864000px;}
.y17e{bottom:790.962000px;}
.y86{bottom:791.136000px;}
.y159{bottom:791.400000px;}
.y49{bottom:792.000000px;}
.y4{bottom:792.354300px;}
.ycf{bottom:793.014000px;}
.yaa{bottom:796.974000px;}
.y110{bottom:797.268000px;}
.y1de{bottom:808.122000px;}
.y25{bottom:811.800000px;}
.y135{bottom:812.670000px;}
.y17d{bottom:813.606000px;}
.y85{bottom:813.780000px;}
.y158{bottom:813.900000px;}
.y48{bottom:814.500000px;}
.yce{bottom:815.370000px;}
.ya9{bottom:818.718000px;}
.y10f{bottom:819.012000px;}
.y1dd{bottom:826.872000px;}
.y24{bottom:834.750000px;}
.y134{bottom:835.476000px;}
.y17c{bottom:836.250000px;}
.y84{bottom:836.424000px;}
.y47{bottom:837.000000px;}
.ycd{bottom:837.726000px;}
.ya8{bottom:840.462000px;}
.y10e{bottom:840.756000px;}
.y1dc{bottom:845.622000px;}
.y23{bottom:857.700000px;}
.y133{bottom:858.282000px;}
.y157{bottom:858.900000px;}
.y17b{bottom:858.918000px;}
.y83{bottom:859.068000px;}
.y3{bottom:859.500000px;}
.ycc{bottom:860.082000px;}
.ya7{bottom:862.206000px;}
.y10d{bottom:862.500000px;}
.y1db{bottom:864.372000px;}
.y22{bottom:880.650000px;}
.y132{bottom:881.088000px;}
.y156{bottom:881.400000px;}
.y17a{bottom:881.562000px;}
.y82{bottom:881.712000px;}
.y46{bottom:882.000000px;}
.ycb{bottom:882.438000px;}
.y1da{bottom:883.122000px;}
.ya6{bottom:883.950000px;}
.y10c{bottom:884.262000px;}
.y2{bottom:889.500000px;}
.y1d9{bottom:901.872000px;}
.y21{bottom:903.600000px;}
.y131{bottom:903.894000px;}
.y155{bottom:903.900000px;}
.y179{bottom:904.206000px;}
.y81{bottom:904.356000px;}
.y45{bottom:904.500000px;}
.yca{bottom:904.794000px;}
.ya5{bottom:905.694000px;}
.y10b{bottom:906.006000px;}
.y154{bottom:926.400000px;}
.y20{bottom:926.550000px;}
.y130{bottom:926.700000px;}
.y178{bottom:926.850000px;}
.y44{bottom:927.000000px;}
.yc9{bottom:927.150000px;}
.ya4{bottom:927.600000px;}
.y10a{bottom:927.750000px;}
.h9{height:30.313623px;}
.hd{height:39.072000px;}
.h1{height:40.283203px;}
.ha{height:40.757812px;}
.h4{height:47.988281px;}
.h3{height:50.580000px;}
.h5{height:50.947266px;}
.he{height:55.463086px;}
.h7{height:61.136719px;}
.hb{height:66.555703px;}
.hc{height:66.771703px;}
.h8{height:67.059703px;}
.h2{height:101.894531px;}
.h6{height:295.121820px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x6{left:82.386000px;}
.x9{left:97.255350px;}
.x7{left:103.621950px;}
.x2{left:112.500000px;}
.x4{left:127.398450px;}
.xb{left:135.526050px;}
.xa{left:142.263750px;}
.x8{left:148.641750px;}
.x3{left:157.188450px;}
.x1{left:625.781250px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.600000pt;}
.v2{vertical-align:21.568000pt;}
.v1{vertical-align:158.933333pt;}
.ls50{letter-spacing:-6.784000pt;}
.ls37{letter-spacing:-6.016000pt;}
.ls73{letter-spacing:-2.880000pt;}
.ls47{letter-spacing:-2.560000pt;}
.ls5a{letter-spacing:-1.600000pt;}
.ls63{letter-spacing:-1.088000pt;}
.ls6d{letter-spacing:-0.768000pt;}
.ls4f{letter-spacing:-0.640000pt;}
.ls6c{letter-spacing:-0.576000pt;}
.ls78{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls77{letter-spacing:-0.426667pt;}
.ls36{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls38{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000533pt;}
.ls16{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.147200pt;}
.ls18{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls41{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls42{letter-spacing:0.339200pt;}
.ls2d{letter-spacing:0.345600pt;}
.ls2c{letter-spacing:0.352000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.627200pt;}
.ls5{letter-spacing:0.640000pt;}
.ls3d{letter-spacing:0.704000pt;}
.ls68{letter-spacing:0.768000pt;}
.ls3f{letter-spacing:0.832000pt;}
.ls3b{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.024000pt;}
.lse{letter-spacing:1.088000pt;}
.ls10{letter-spacing:1.152000pt;}
.ls26{letter-spacing:1.216000pt;}
.ls64{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.344000pt;}
.ls5b{letter-spacing:2.048000pt;}
.ls2b{letter-spacing:2.112000pt;}
.ls51{letter-spacing:2.304000pt;}
.ls60{letter-spacing:2.464000pt;}
.ls3e{letter-spacing:2.560000pt;}
.ls76{letter-spacing:2.577067pt;}
.ls22{letter-spacing:2.688000pt;}
.ls5f{letter-spacing:3.136000pt;}
.ls4a{letter-spacing:3.584000pt;}
.ls35{letter-spacing:3.648000pt;}
.ls71{letter-spacing:3.724800pt;}
.ls43{letter-spacing:3.904000pt;}
.ls2{letter-spacing:3.925333pt;}
.ls40{letter-spacing:3.968000pt;}
.ls48{letter-spacing:4.160000pt;}
.ls75{letter-spacing:4.224000pt;}
.ls72{letter-spacing:4.416000pt;}
.ls3a{letter-spacing:4.480000pt;}
.ls6b{letter-spacing:4.550400pt;}
.ls46{letter-spacing:4.992000pt;}
.ls6f{letter-spacing:5.120000pt;}
.ls53{letter-spacing:5.248000pt;}
.ls54{letter-spacing:5.260800pt;}
.ls21{letter-spacing:5.312000pt;}
.ls59{letter-spacing:5.760000pt;}
.ls4e{letter-spacing:6.016000pt;}
.ls4c{letter-spacing:6.080000pt;}
.ls52{letter-spacing:6.336000pt;}
.ls49{letter-spacing:6.400000pt;}
.ls2a{letter-spacing:6.464000pt;}
.ls1e{letter-spacing:6.720000pt;}
.ls1c{letter-spacing:6.848000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls23{letter-spacing:7.253333pt;}
.ls0{letter-spacing:7.498667pt;}
.ls66{letter-spacing:7.520000pt;}
.ls25{letter-spacing:7.616000pt;}
.ls70{letter-spacing:7.808000pt;}
.ls34{letter-spacing:8.038400pt;}
.ls15{letter-spacing:8.384000pt;}
.ls56{letter-spacing:8.512000pt;}
.ls55{letter-spacing:8.576000pt;}
.ls6e{letter-spacing:8.960000pt;}
.ls4d{letter-spacing:9.024000pt;}
.ls74{letter-spacing:9.216000pt;}
.ls45{letter-spacing:9.280000pt;}
.ls61{letter-spacing:9.344000pt;}
.ls3{letter-spacing:9.363878pt;}
.ls39{letter-spacing:9.408000pt;}
.ls20{letter-spacing:9.472000pt;}
.ls32{letter-spacing:9.536000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls31{letter-spacing:9.561600pt;}
.ls5c{letter-spacing:9.568000pt;}
.ls67{letter-spacing:9.574400pt;}
.ls69{letter-spacing:9.587200pt;}
.ls24{letter-spacing:9.600000pt;}
.ls5d{letter-spacing:9.632000pt;}
.ls6a{letter-spacing:9.651200pt;}
.ls2f{letter-spacing:9.664000pt;}
.ls57{letter-spacing:9.792000pt;}
.ls3c{letter-spacing:9.856000pt;}
.ls4b{letter-spacing:9.920000pt;}
.ls2e{letter-spacing:9.984000pt;}
.ls58{letter-spacing:10.112000pt;}
.ls65{letter-spacing:10.176000pt;}
.ls5e{letter-spacing:10.496000pt;}
.ls29{letter-spacing:10.560000pt;}
.ls27{letter-spacing:10.688000pt;}
.ls62{letter-spacing:13.120000pt;}
.ls44{letter-spacing:13.504000pt;}
.ls33{letter-spacing:17.772800pt;}
.ws4b{word-spacing:-53.333333pt;}
.ws67{word-spacing:-26.304000pt;}
.ws30{word-spacing:-25.792000pt;}
.ws52{word-spacing:-25.728000pt;}
.ws5d{word-spacing:-25.472000pt;}
.ws42{word-spacing:-25.408000pt;}
.ws82{word-spacing:-25.344000pt;}
.ws7f{word-spacing:-25.088000pt;}
.ws83{word-spacing:-25.024000pt;}
.ws77{word-spacing:-24.768000pt;}
.ws5e{word-spacing:-24.384000pt;}
.ws21{word-spacing:-22.848000pt;}
.ws22{word-spacing:-22.656000pt;}
.ws23{word-spacing:-22.528000pt;}
.ws84{word-spacing:-22.506667pt;}
.ws53{word-spacing:-21.824000pt;}
.ws1{word-spacing:-18.624000pt;}
.ws73{word-spacing:-18.496000pt;}
.ws7c{word-spacing:-18.432000pt;}
.ws2c{word-spacing:-18.304000pt;}
.ws5f{word-spacing:-18.240000pt;}
.ws32{word-spacing:-18.112000pt;}
.ws31{word-spacing:-18.048000pt;}
.ws2e{word-spacing:-17.984000pt;}
.ws51{word-spacing:-17.664000pt;}
.ws11{word-spacing:-16.448000pt;}
.ws60{word-spacing:-16.320000pt;}
.ws2f{word-spacing:-16.192000pt;}
.ws43{word-spacing:-16.128000pt;}
.ws20{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws44{word-spacing:-15.488000pt;}
.ws4d{word-spacing:-15.424000pt;}
.ws80{word-spacing:-15.104000pt;}
.ws8a{word-spacing:-14.986667pt;}
.ws89{word-spacing:-13.173333pt;}
.ws6a{word-spacing:-13.120000pt;}
.ws8b{word-spacing:-12.906667pt;}
.ws2d{word-spacing:-12.588800pt;}
.ws3{word-spacing:-11.989333pt;}
.ws2{word-spacing:-10.538667pt;}
.ws88{word-spacing:-10.490667pt;}
.ws71{word-spacing:-10.176000pt;}
.ws7b{word-spacing:-10.112000pt;}
.ws6d{word-spacing:-9.920000pt;}
.ws48{word-spacing:-9.856000pt;}
.ws66{word-spacing:-9.792000pt;}
.ws3c{word-spacing:-9.664000pt;}
.ws35{word-spacing:-9.600000pt;}
.ws40{word-spacing:-9.536000pt;}
.ws27{word-spacing:-9.472000pt;}
.ws3e{word-spacing:-9.408000pt;}
.ws4f{word-spacing:-9.280000pt;}
.ws65{word-spacing:-8.576000pt;}
.ws1b{word-spacing:-8.384000pt;}
.ws7e{word-spacing:-7.808000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws74{word-spacing:-7.520000pt;}
.ws33{word-spacing:-7.253333pt;}
.ws70{word-spacing:-7.104000pt;}
.ws5c{word-spacing:-6.336000pt;}
.ws54{word-spacing:-6.080000pt;}
.ws62{word-spacing:-5.760000pt;}
.ws76{word-spacing:-5.632000pt;}
.ws29{word-spacing:-5.312000pt;}
.ws7a{word-spacing:-5.120000pt;}
.ws50{word-spacing:-4.992000pt;}
.ws41{word-spacing:-4.480000pt;}
.ws81{word-spacing:-4.416000pt;}
.ws4e{word-spacing:-4.160000pt;}
.ws4a{word-spacing:-3.968000pt;}
.ws63{word-spacing:-3.840000pt;}
.ws34{word-spacing:-3.648000pt;}
.ws7d{word-spacing:-2.752000pt;}
.ws2a{word-spacing:-2.688000pt;}
.ws45{word-spacing:-2.560000pt;}
.ws61{word-spacing:-2.496000pt;}
.ws5b{word-spacing:-2.304000pt;}
.ws64{word-spacing:-2.048000pt;}
.ws2b{word-spacing:-1.344000pt;}
.ws6c{word-spacing:-1.280000pt;}
.ws37{word-spacing:-1.216000pt;}
.ws16{word-spacing:-1.152000pt;}
.ws14{word-spacing:-1.088000pt;}
.ws15{word-spacing:-1.024000pt;}
.ws13{word-spacing:-0.960000pt;}
.ws46{word-spacing:-0.896000pt;}
.ws47{word-spacing:-0.832000pt;}
.ws75{word-spacing:-0.768000pt;}
.ws49{word-spacing:-0.704000pt;}
.wsf{word-spacing:-0.640000pt;}
.ws26{word-spacing:-0.576000pt;}
.ws17{word-spacing:-0.512000pt;}
.ws18{word-spacing:-0.448000pt;}
.ws8{word-spacing:-0.426667pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.320000pt;}
.wse{word-spacing:-0.256000pt;}
.ws25{word-spacing:-0.192000pt;}
.ws24{word-spacing:-0.128000pt;}
.ws1e{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.064000pt;}
.wsb{word-spacing:0.128000pt;}
.ws3d{word-spacing:0.192000pt;}
.wsc{word-spacing:0.256000pt;}
.ws9{word-spacing:0.266667pt;}
.wsa{word-spacing:0.320000pt;}
.ws39{word-spacing:0.384000pt;}
.ws87{word-spacing:0.426667pt;}
.ws19{word-spacing:0.448000pt;}
.wsd{word-spacing:0.512000pt;}
.ws8c{word-spacing:0.533333pt;}
.ws79{word-spacing:0.576000pt;}
.ws58{word-spacing:0.640000pt;}
.ws57{word-spacing:0.768000pt;}
.ws6b{word-spacing:1.088000pt;}
.ws85{word-spacing:1.280000pt;}
.ws6{word-spacing:1.600000pt;}
.ws72{word-spacing:1.984000pt;}
.ws1d{word-spacing:2.240000pt;}
.ws5a{word-spacing:2.304000pt;}
.ws1c{word-spacing:2.432000pt;}
.ws86{word-spacing:2.645333pt;}
.ws6e{word-spacing:2.688000pt;}
.ws69{word-spacing:3.072000pt;}
.ws8d{word-spacing:3.306667pt;}
.ws4{word-spacing:3.733333pt;}
.ws4c{word-spacing:3.840000pt;}
.ws7{word-spacing:3.968000pt;}
.ws6f{word-spacing:4.352000pt;}
.ws68{word-spacing:5.376000pt;}
.ws3f{word-spacing:5.440000pt;}
.ws78{word-spacing:5.632000pt;}
.ws3b{word-spacing:6.016000pt;}
.ws59{word-spacing:6.784000pt;}
.ws55{word-spacing:7.104000pt;}
.ws56{word-spacing:7.168000pt;}
.ws36{word-spacing:7.680000pt;}
.ws3a{word-spacing:7.872000pt;}
.ws38{word-spacing:9.344000pt;}
.ws10{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._1c{margin-left:-17.984000pt;}
._1b{margin-left:-13.633600pt;}
._12{margin-left:-12.721600pt;}
._17{margin-left:-10.980267pt;}
._16{margin-left:-9.497600pt;}
._14{margin-left:-8.400000pt;}
._d{margin-left:-6.904533pt;}
._1{margin-left:-5.301333pt;}
._8{margin-left:-3.541333pt;}
._9{margin-left:-2.144533pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._b{width:2.574933pt;}
._4{width:3.477333pt;}
._a{width:4.629333pt;}
._e{width:5.555200pt;}
._10{width:6.562667pt;}
._5{width:7.509333pt;}
._c{width:8.659200pt;}
._f{width:9.820267pt;}
._13{width:10.877333pt;}
._15{width:12.019200pt;}
._1a{width:13.440000pt;}
._19{width:14.731200pt;}
._1e{width:16.157333pt;}
._1d{width:18.048000pt;}
._18{width:19.249600pt;}
._11{width:28.129867pt;}
._6{width:46.762667pt;}
._7{width:50.026667pt;}
.fs6{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:374.757867pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y1f{bottom:104.000000pt;}
.y1d8{bottom:104.826667pt;}
.y153{bottom:105.573333pt;}
.y109{bottom:106.357333pt;}
.y19b{bottom:107.264000pt;}
.yc8{bottom:107.605333pt;}
.y66{bottom:107.740000pt;}
.y12f{bottom:108.133333pt;}
.y177{bottom:108.448000pt;}
.yed{bottom:108.741333pt;}
.ya3{bottom:109.504000pt;}
.y43{bottom:109.600000pt;}
.y1d7{bottom:118.032000pt;}
.y1e{bottom:121.073333pt;}
.y80{bottom:124.000000pt;}
.y152{bottom:126.101333pt;}
.y108{bottom:126.229333pt;}
.y12e{bottom:127.333333pt;}
.yc7{bottom:127.477333pt;}
.y19a{bottom:127.664000pt;}
.y65{bottom:127.740000pt;}
.y176{bottom:128.048000pt;}
.yec{bottom:128.613333pt;}
.ya2{bottom:129.504000pt;}
.y42{bottom:130.000000pt;}
.y1d6{bottom:131.226667pt;}
.y7f{bottom:144.000000pt;}
.y1d5{bottom:144.432000pt;}
.y107{bottom:146.101333pt;}
.y12d{bottom:146.533333pt;}
.y151{bottom:146.629333pt;}
.yc6{bottom:147.349333pt;}
.y175{bottom:147.648000pt;}
.y199{bottom:148.064000pt;}
.yeb{bottom:148.485333pt;}
.ya1{bottom:149.632000pt;}
.y41{bottom:150.400000pt;}
.y1d{bottom:153.282267pt;}
.y7e{bottom:154.000000pt;}
.y1b6{bottom:157.312000pt;}
.y1d4{bottom:157.626667pt;}
.y64{bottom:164.000000pt;}
.y12c{bottom:165.733333pt;}
.y106{bottom:165.973333pt;}
.y150{bottom:167.157333pt;}
.yc5{bottom:167.221333pt;}
.y174{bottom:167.248000pt;}
.yea{bottom:168.357333pt;}
.y198{bottom:168.464000pt;}
.ya0{bottom:169.760000pt;}
.y40{bottom:170.800000pt;}
.y1d3{bottom:170.821333pt;}
.y1c{bottom:173.154267pt;}
.y7d{bottom:174.000000pt;}
.y1b5{bottom:177.184000pt;}
.y63{bottom:184.000000pt;}
.y1d2{bottom:184.016000pt;}
.y12b{bottom:184.933333pt;}
.y105{bottom:185.845333pt;}
.yc4{bottom:186.549333pt;}
.y173{bottom:186.848000pt;}
.y14f{bottom:187.685333pt;}
.ye9{bottom:188.229333pt;}
.y197{bottom:188.864000pt;}
.y9f{bottom:189.888000pt;}
.y3f{bottom:191.200000pt;}
.y1b{bottom:193.026267pt;}
.y7c{bottom:194.000000pt;}
.y1b4{bottom:197.056000pt;}
.y1d1{bottom:197.210667pt;}
.y62{bottom:204.000000pt;}
.y12a{bottom:204.133333pt;}
.y1fb{bottom:204.997333pt;}
.y104{bottom:205.717333pt;}
.yc3{bottom:205.877333pt;}
.y172{bottom:206.448000pt;}
.ye8{bottom:208.101333pt;}
.y14e{bottom:208.213333pt;}
.y196{bottom:209.264000pt;}
.y9e{bottom:210.016000pt;}
.y1d0{bottom:210.405333pt;}
.y3e{bottom:211.600000pt;}
.y1a{bottom:212.898267pt;}
.y7b{bottom:214.000000pt;}
.y1b3{bottom:216.928000pt;}
.y1fa{bottom:221.664000pt;}
.y129{bottom:223.296000pt;}
.y1cf{bottom:223.610667pt;}
.y61{bottom:224.000000pt;}
.yc2{bottom:225.205333pt;}
.y103{bottom:225.589333pt;}
.y171{bottom:226.048000pt;}
.ye7{bottom:227.973333pt;}
.y14d{bottom:228.741333pt;}
.y195{bottom:229.664000pt;}
.y9d{bottom:230.144000pt;}
.y3d{bottom:232.000000pt;}
.y19{bottom:232.770267pt;}
.y7a{bottom:234.000000pt;}
.y1b2{bottom:236.800000pt;}
.y1ce{bottom:236.805333pt;}
.y1f9{bottom:238.330667pt;}
.y128{bottom:242.768000pt;}
.y60{bottom:244.000000pt;}
.yc1{bottom:244.533333pt;}
.y102{bottom:245.461333pt;}
.y170{bottom:245.520000pt;}
.ye6{bottom:247.845333pt;}
.y14c{bottom:249.013333pt;}
.y1cd{bottom:250.000000pt;}
.y194{bottom:250.064000pt;}
.y9c{bottom:250.272000pt;}
.y3c{bottom:252.400000pt;}
.y18{bottom:252.642267pt;}
.y1f8{bottom:254.997333pt;}
.y1b1{bottom:256.666667pt;}
.y127{bottom:262.240000pt;}
.y1cc{bottom:263.194667pt;}
.yc0{bottom:263.861333pt;}
.y5f{bottom:264.000000pt;}
.y101{bottom:265.333333pt;}
.y16f{bottom:265.392000pt;}
.ye5{bottom:267.717333pt;}
.y14b{bottom:269.285333pt;}
.y193{bottom:270.192000pt;}
.y9b{bottom:270.400000pt;}
.y17{bottom:272.514267pt;}
.y3b{bottom:272.800000pt;}
.y79{bottom:274.000000pt;}
.y1cb{bottom:276.389333pt;}
.y1f7{bottom:281.664000pt;}
.y126{bottom:281.712000pt;}
.ybf{bottom:283.189333pt;}
.y5e{bottom:284.000000pt;}
.y16e{bottom:285.264000pt;}
.y100{bottom:285.333333pt;}
.ye4{bottom:287.589333pt;}
.y14a{bottom:289.413333pt;}
.y1ca{bottom:289.594667pt;}
.y192{bottom:290.320000pt;}
.y9a{bottom:290.528000pt;}
.y16{bottom:292.386267pt;}
.y3a{bottom:293.200000pt;}
.y78{bottom:294.000000pt;}
.y1b0{bottom:296.709333pt;}
.y125{bottom:301.184000pt;}
.ybe{bottom:302.517333pt;}
.y1c9{bottom:302.789333pt;}
.y5d{bottom:304.000000pt;}
.y16d{bottom:305.136000pt;}
.yff{bottom:305.333333pt;}
.ye3{bottom:307.461333pt;}
.y149{bottom:309.541333pt;}
.y191{bottom:310.448000pt;}
.y99{bottom:310.656000pt;}
.y15{bottom:312.258267pt;}
.y39{bottom:313.600000pt;}
.y77{bottom:314.000000pt;}
.y1c8{bottom:315.984000pt;}
.y1af{bottom:316.981333pt;}
.y1f6{bottom:318.330667pt;}
.y124{bottom:320.656000pt;}
.y5c{bottom:324.000000pt;}
.y16c{bottom:325.008000pt;}
.yfe{bottom:325.333333pt;}
.ye2{bottom:327.333333pt;}
.y1c7{bottom:329.178667pt;}
.y148{bottom:329.669333pt;}
.y190{bottom:330.576000pt;}
.y98{bottom:330.784000pt;}
.y14{bottom:332.130267pt;}
.y38{bottom:334.000000pt;}
.y1f5{bottom:334.997333pt;}
.y1ae{bottom:337.253333pt;}
.y123{bottom:340.128000pt;}
.ybd{bottom:341.189333pt;}
.y1c6{bottom:342.373333pt;}
.y5b{bottom:344.000000pt;}
.y16b{bottom:344.880000pt;}
.yfd{bottom:345.333333pt;}
.ye1{bottom:347.205333pt;}
.y147{bottom:349.797333pt;}
.y97{bottom:350.912000pt;}
.y1f4{bottom:351.664000pt;}
.y13{bottom:352.002267pt;}
.y76{bottom:354.000000pt;}
.y37{bottom:354.400000pt;}
.y1c5{bottom:355.578667pt;}
.y1ad{bottom:357.525333pt;}
.y122{bottom:359.600000pt;}
.ybc{bottom:360.517333pt;}
.y18f{bottom:360.848000pt;}
.y5a{bottom:364.000000pt;}
.y16a{bottom:364.752000pt;}
.yfc{bottom:365.333333pt;}
.ye0{bottom:367.077333pt;}
.y1f3{bottom:368.330667pt;}
.y1c4{bottom:368.773333pt;}
.y146{bottom:369.925333pt;}
.y96{bottom:371.040000pt;}
.y12{bottom:371.874267pt;}
.y75{bottom:374.000000pt;}
.y36{bottom:374.800000pt;}
.y1ac{bottom:377.797333pt;}
.y121{bottom:379.034667pt;}
.ybb{bottom:379.845333pt;}
.y18e{bottom:380.976000pt;}
.y1c3{bottom:381.968000pt;}
.y59{bottom:384.000000pt;}
.y169{bottom:384.624000pt;}
.y1f2{bottom:384.997333pt;}
.yfb{bottom:385.333333pt;}
.ydf{bottom:386.949333pt;}
.y145{bottom:390.053333pt;}
.y95{bottom:391.168000pt;}
.y11{bottom:391.746267pt;}
.y74{bottom:394.000000pt;}
.y1c2{bottom:395.162667pt;}
.y35{bottom:395.200000pt;}
.y1ab{bottom:398.069333pt;}
.y120{bottom:398.506667pt;}
.yba{bottom:399.173333pt;}
.y18d{bottom:401.104000pt;}
.y1f1{bottom:401.664000pt;}
.y58{bottom:404.000000pt;}
.y168{bottom:404.496000pt;}
.yfa{bottom:405.333333pt;}
.yde{bottom:406.821333pt;}
.y1c1{bottom:408.357333pt;}
.y144{bottom:410.181333pt;}
.y94{bottom:411.296000pt;}
.y10{bottom:411.618267pt;}
.y73{bottom:414.000000pt;}
.y34{bottom:415.600000pt;}
.y11f{bottom:417.978667pt;}
.y1f0{bottom:418.330667pt;}
.y1aa{bottom:418.341333pt;}
.yb9{bottom:418.501333pt;}
.y18c{bottom:421.232000pt;}
.y1c0{bottom:421.562667pt;}
.y57{bottom:424.000000pt;}
.y167{bottom:424.368000pt;}
.yf9{bottom:425.333333pt;}
.ydd{bottom:426.693333pt;}
.y143{bottom:430.309333pt;}
.y93{bottom:431.424000pt;}
.yf{bottom:431.490267pt;}
.y72{bottom:434.000000pt;}
.y1bf{bottom:434.757333pt;}
.y1ef{bottom:434.997333pt;}
.y33{bottom:436.000000pt;}
.y11e{bottom:437.450667pt;}
.yb8{bottom:437.829333pt;}
.y1a9{bottom:438.613333pt;}
.y18b{bottom:441.360000pt;}
.y56{bottom:444.000000pt;}
.y166{bottom:444.240000pt;}
.yf8{bottom:445.333333pt;}
.ydc{bottom:446.565333pt;}
.y1be{bottom:447.952000pt;}
.y142{bottom:450.437333pt;}
.ye{bottom:451.362267pt;}
.y92{bottom:451.552000pt;}
.y1ee{bottom:451.664000pt;}
.y71{bottom:454.000000pt;}
.y32{bottom:456.400000pt;}
.y11d{bottom:456.922667pt;}
.yb7{bottom:457.157333pt;}
.y1a8{bottom:458.885333pt;}
.y1bd{bottom:461.146667pt;}
.y18a{bottom:461.488000pt;}
.y55{bottom:464.000000pt;}
.y165{bottom:464.112000pt;}
.yf7{bottom:465.333333pt;}
.ydb{bottom:466.437333pt;}
.y1ed{bottom:468.330667pt;}
.y141{bottom:470.565333pt;}
.yd{bottom:471.234267pt;}
.y91{bottom:471.680000pt;}
.y70{bottom:474.000000pt;}
.y1bc{bottom:474.341333pt;}
.y11c{bottom:476.394667pt;}
.yb6{bottom:476.485333pt;}
.y31{bottom:476.800000pt;}
.y1a7{bottom:479.157333pt;}
.y189{bottom:481.616000pt;}
.y164{bottom:483.984000pt;}
.y54{bottom:484.000000pt;}
.y1ec{bottom:484.997333pt;}
.yf6{bottom:485.333333pt;}
.yda{bottom:486.309333pt;}
.y1bb{bottom:487.546667pt;}
.y140{bottom:490.693333pt;}
.yc{bottom:491.106267pt;}
.y90{bottom:491.808000pt;}
.y6f{bottom:494.000000pt;}
.yb5{bottom:495.813333pt;}
.y11b{bottom:495.866667pt;}
.y30{bottom:497.200000pt;}
.y1a6{bottom:499.429333pt;}
.y1ba{bottom:500.741333pt;}
.y1eb{bottom:501.664000pt;}
.y188{bottom:501.744000pt;}
.y163{bottom:503.856000pt;}
.y53{bottom:504.000000pt;}
.yf5{bottom:505.333333pt;}
.yd9{bottom:506.181333pt;}
.y13f{bottom:510.821333pt;}
.yb{bottom:510.978267pt;}
.y8f{bottom:511.936000pt;}
.y1b9{bottom:513.936000pt;}
.y6e{bottom:514.000000pt;}
.yb4{bottom:515.141333pt;}
.y11a{bottom:515.402667pt;}
.y2f{bottom:517.600000pt;}
.y1ea{bottom:518.330667pt;}
.y1a5{bottom:519.701333pt;}
.y187{bottom:521.872000pt;}
.y162{bottom:523.728000pt;}
.y52{bottom:524.000000pt;}
.yf4{bottom:525.333333pt;}
.yd8{bottom:526.053333pt;}
.y1b8{bottom:527.130667pt;}
.ya{bottom:530.850267pt;}
.y8{bottom:530.860933pt;}
.y13e{bottom:530.949333pt;}
.y8e{bottom:532.064000pt;}
.y6d{bottom:534.000000pt;}
.yb3{bottom:534.469333pt;}
.y119{bottom:534.730667pt;}
.y1e9{bottom:534.997333pt;}
.y2e{bottom:538.000000pt;}
.y1a4{bottom:539.973333pt;}
.y186{bottom:542.000000pt;}
.y161{bottom:543.600000pt;}
.y51{bottom:544.000000pt;}
.yf3{bottom:545.333333pt;}
.yd7{bottom:545.925333pt;}
.y1b7{bottom:546.000000pt;}
.y9{bottom:550.722267pt;}
.y13d{bottom:551.077333pt;}
.y1e8{bottom:551.664000pt;}
.y8d{bottom:552.192000pt;}
.yb2{bottom:553.797333pt;}
.y6c{bottom:554.000000pt;}
.y118{bottom:554.058667pt;}
.y2d{bottom:558.400000pt;}
.y1a3{bottom:560.245333pt;}
.y185{bottom:562.154667pt;}
.y160{bottom:563.466667pt;}
.y50{bottom:564.000000pt;}
.yf2{bottom:565.333333pt;}
.yd6{bottom:565.797333pt;}
.y1e7{bottom:568.330667pt;}
.y13c{bottom:571.205333pt;}
.y8c{bottom:572.320000pt;}
.yb1{bottom:573.125333pt;}
.y117{bottom:573.386667pt;}
.y6b{bottom:574.000000pt;}
.y2c{bottom:578.800000pt;}
.y1a2{bottom:580.517333pt;}
.y184{bottom:582.282667pt;}
.y15f{bottom:583.466667pt;}
.y4f{bottom:584.000000pt;}
.y1e6{bottom:584.997333pt;}
.yf1{bottom:585.333333pt;}
.yd5{bottom:585.669333pt;}
.y13b{bottom:591.333333pt;}
.y8b{bottom:592.448000pt;}
.yb0{bottom:592.453333pt;}
.y116{bottom:592.714667pt;}
.y6a{bottom:594.000000pt;}
.y2b{bottom:599.200000pt;}
.y1a1{bottom:600.789333pt;}
.y1e5{bottom:601.664000pt;}
.y183{bottom:602.410667pt;}
.y15e{bottom:603.466667pt;}
.y4e{bottom:604.000000pt;}
.yf0{bottom:605.333333pt;}
.yd4{bottom:605.541333pt;}
.y13a{bottom:611.461333pt;}
.yaf{bottom:611.781333pt;}
.y115{bottom:612.042667pt;}
.y8a{bottom:612.576000pt;}
.y69{bottom:614.000000pt;}
.y1e4{bottom:618.330667pt;}
.y2a{bottom:619.600000pt;}
.y1a0{bottom:621.061333pt;}
.y182{bottom:622.538667pt;}
.y15d{bottom:623.466667pt;}
.y4d{bottom:624.000000pt;}
.yef{bottom:625.333333pt;}
.yd3{bottom:625.413333pt;}
.y7{bottom:630.194267pt;}
.yae{bottom:631.109333pt;}
.y114{bottom:631.370667pt;}
.y139{bottom:631.589333pt;}
.y68{bottom:634.000000pt;}
.y1e3{bottom:634.997333pt;}
.y29{bottom:640.000000pt;}
.y19f{bottom:641.285333pt;}
.y181{bottom:642.666667pt;}
.y89{bottom:642.848000pt;}
.y15c{bottom:643.466667pt;}
.y4c{bottom:644.000000pt;}
.yd2{bottom:645.285333pt;}
.yee{bottom:645.333333pt;}
.y6{bottom:646.860933pt;}
.yad{bottom:650.437333pt;}
.y113{bottom:650.698667pt;}
.y1e2{bottom:651.664000pt;}
.y138{bottom:651.717333pt;}
.y67{bottom:654.000000pt;}
.y28{bottom:660.400000pt;}
.y19e{bottom:661.557333pt;}
.y180{bottom:662.821333pt;}
.y88{bottom:662.976000pt;}
.y15b{bottom:663.466667pt;}
.y4b{bottom:664.000000pt;}
.yd1{bottom:665.157333pt;}
.y1e1{bottom:668.330667pt;}
.yac{bottom:669.765333pt;}
.y112{bottom:670.026667pt;}
.y137{bottom:671.845333pt;}
.y27{bottom:680.800000pt;}
.y19d{bottom:681.829333pt;}
.y17f{bottom:682.949333pt;}
.y87{bottom:683.104000pt;}
.y15a{bottom:683.466667pt;}
.y4a{bottom:684.000000pt;}
.y5{bottom:684.314933pt;}
.y1e0{bottom:684.997333pt;}
.yd0{bottom:685.029333pt;}
.yab{bottom:689.093333pt;}
.y111{bottom:689.354667pt;}
.y136{bottom:691.973333pt;}
.y26{bottom:701.200000pt;}
.y1df{bottom:701.664000pt;}
.y19c{bottom:702.101333pt;}
.y17e{bottom:703.077333pt;}
.y86{bottom:703.232000pt;}
.y159{bottom:703.466667pt;}
.y49{bottom:704.000000pt;}
.y4{bottom:704.314933pt;}
.ycf{bottom:704.901333pt;}
.yaa{bottom:708.421333pt;}
.y110{bottom:708.682667pt;}
.y1de{bottom:718.330667pt;}
.y25{bottom:721.600000pt;}
.y135{bottom:722.373333pt;}
.y17d{bottom:723.205333pt;}
.y85{bottom:723.360000pt;}
.y158{bottom:723.466667pt;}
.y48{bottom:724.000000pt;}
.yce{bottom:724.773333pt;}
.ya9{bottom:727.749333pt;}
.y10f{bottom:728.010667pt;}
.y1dd{bottom:734.997333pt;}
.y24{bottom:742.000000pt;}
.y134{bottom:742.645333pt;}
.y17c{bottom:743.333333pt;}
.y84{bottom:743.488000pt;}
.y47{bottom:744.000000pt;}
.ycd{bottom:744.645333pt;}
.ya8{bottom:747.077333pt;}
.y10e{bottom:747.338667pt;}
.y1dc{bottom:751.664000pt;}
.y23{bottom:762.400000pt;}
.y133{bottom:762.917333pt;}
.y157{bottom:763.466667pt;}
.y17b{bottom:763.482667pt;}
.y83{bottom:763.616000pt;}
.y3{bottom:764.000000pt;}
.ycc{bottom:764.517333pt;}
.ya7{bottom:766.405333pt;}
.y10d{bottom:766.666667pt;}
.y1db{bottom:768.330667pt;}
.y22{bottom:782.800000pt;}
.y132{bottom:783.189333pt;}
.y156{bottom:783.466667pt;}
.y17a{bottom:783.610667pt;}
.y82{bottom:783.744000pt;}
.y46{bottom:784.000000pt;}
.ycb{bottom:784.389333pt;}
.y1da{bottom:784.997333pt;}
.ya6{bottom:785.733333pt;}
.y10c{bottom:786.010667pt;}
.y2{bottom:790.666667pt;}
.y1d9{bottom:801.664000pt;}
.y21{bottom:803.200000pt;}
.y131{bottom:803.461333pt;}
.y155{bottom:803.466667pt;}
.y179{bottom:803.738667pt;}
.y81{bottom:803.872000pt;}
.y45{bottom:804.000000pt;}
.yca{bottom:804.261333pt;}
.ya5{bottom:805.061333pt;}
.y10b{bottom:805.338667pt;}
.y154{bottom:823.466667pt;}
.y20{bottom:823.600000pt;}
.y130{bottom:823.733333pt;}
.y178{bottom:823.866667pt;}
.y44{bottom:824.000000pt;}
.yc9{bottom:824.133333pt;}
.ya4{bottom:824.533333pt;}
.y10a{bottom:824.666667pt;}
.h9{height:26.945443pt;}
.hd{height:34.730667pt;}
.h1{height:35.807292pt;}
.ha{height:36.229167pt;}
.h4{height:42.656250pt;}
.h3{height:44.960000pt;}
.h5{height:45.286458pt;}
.he{height:49.300521pt;}
.h7{height:54.343750pt;}
.hb{height:59.160625pt;}
.hc{height:59.352625pt;}
.h8{height:59.608625pt;}
.h2{height:90.572917pt;}
.h6{height:262.330507pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x6{left:73.232000pt;}
.x9{left:86.449200pt;}
.x7{left:92.108400pt;}
.x2{left:100.000000pt;}
.x4{left:113.243067pt;}
.xb{left:120.467600pt;}
.xa{left:126.456667pt;}
.x8{left:132.126000pt;}
.x3{left:139.723067pt;}
.x1{left:556.250000pt;}
}




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