
    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_2bab7ed3252f3f42c29e0296.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dbc91b140cc9409751a71243.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_94af8b8b74c5259d039cd085.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_b3493de2273e3b3fa05c6045.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_da8c4a312c462eb30aad6e7a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1a4e6e53f01c15b9955900ce.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9a4d4c4d324fa2bcc8d02753.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_3db5089a898de8be3e3f86d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_1d93d7c4ddd3d6ddc6403c80.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091309;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_7f83e67cd1c45dbfb2d41295.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_adc1483e53cc0ba5363999e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_610b291541cfbbef31495895.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls47{letter-spacing:-1.332000px;}
.ls11{letter-spacing:-1.320000px;}
.ls40{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.780000px;}
.ls55{letter-spacing:-0.540000px;}
.ls5e{letter-spacing:-0.420000px;}
.ls46{letter-spacing:-0.300000px;}
.ls41{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.225000px;}
.ls4d{letter-spacing:-0.180000px;}
.ls56{letter-spacing:-0.144000px;}
.ls42{letter-spacing:-0.120000px;}
.ls4e{letter-spacing:-0.096000px;}
.ls45{letter-spacing:-0.060000px;}
.ls4f{letter-spacing:-0.048000px;}
.lse{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls64{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.069000px;}
.ls6b{letter-spacing:0.096000px;}
.ls22{letter-spacing:0.120000px;}
.ls72{letter-spacing:0.144000px;}
.ls43{letter-spacing:0.180000px;}
.ls48{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.240000px;}
.ls68{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.300000px;}
.ls73{letter-spacing:0.336000px;}
.ls26{letter-spacing:0.360000px;}
.ls7d{letter-spacing:0.384000px;}
.ls3c{letter-spacing:0.420000px;}
.ls75{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.480000px;}
.ls31{letter-spacing:0.540000px;}
.ls78{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.600000px;}
.ls69{letter-spacing:0.624000px;}
.ls19{letter-spacing:0.660000px;}
.ls66{letter-spacing:0.672000px;}
.ls28{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.780000px;}
.ls85{letter-spacing:0.816000px;}
.ls36{letter-spacing:0.840000px;}
.ls12{letter-spacing:0.900000px;}
.ls6f{letter-spacing:0.912000px;}
.ls34{letter-spacing:0.960000px;}
.ls4a{letter-spacing:1.020000px;}
.ls74{letter-spacing:1.056000px;}
.ls23{letter-spacing:1.080000px;}
.ls76{letter-spacing:1.104000px;}
.ls3f{letter-spacing:1.140000px;}
.ls70{letter-spacing:1.152000px;}
.ls16{letter-spacing:1.200000px;}
.ls81{letter-spacing:1.248000px;}
.ls6{letter-spacing:1.260000px;}
.ls7a{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.320000px;}
.ls3d{letter-spacing:1.380000px;}
.ls7b{letter-spacing:1.392000px;}
.ls32{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.500000px;}
.ls80{letter-spacing:1.536000px;}
.lsb{letter-spacing:1.560000px;}
.ls8{letter-spacing:1.620000px;}
.ls7c{letter-spacing:1.632000px;}
.ls25{letter-spacing:1.680000px;}
.ls27{letter-spacing:1.740000px;}
.ls30{letter-spacing:1.800000px;}
.ls6c{letter-spacing:1.824000px;}
.ls1f{letter-spacing:1.860000px;}
.ls83{letter-spacing:1.872000px;}
.ls4{letter-spacing:1.920000px;}
.ls67{letter-spacing:1.968000px;}
.ls3e{letter-spacing:1.980000px;}
.ls13{letter-spacing:2.040000px;}
.ls2c{letter-spacing:2.100000px;}
.ls1e{letter-spacing:2.160000px;}
.ls77{letter-spacing:2.208000px;}
.ls3b{letter-spacing:2.220000px;}
.ls3a{letter-spacing:2.280000px;}
.ls7e{letter-spacing:2.304000px;}
.ls29{letter-spacing:2.340000px;}
.ls2d{letter-spacing:2.400000px;}
.ls79{letter-spacing:2.448000px;}
.ls38{letter-spacing:2.460000px;}
.ls5d{letter-spacing:2.520000px;}
.ls6d{letter-spacing:2.544000px;}
.ls54{letter-spacing:2.580000px;}
.ls49{letter-spacing:2.640000px;}
.ls2b{letter-spacing:2.700000px;}
.ls4b{letter-spacing:2.760000px;}
.ls2e{letter-spacing:2.820000px;}
.ls5{letter-spacing:2.880000px;}
.ls33{letter-spacing:2.940000px;}
.ls4c{letter-spacing:3.000000px;}
.ls58{letter-spacing:3.060000px;}
.ls53{letter-spacing:3.120000px;}
.ls35{letter-spacing:3.180000px;}
.ls87{letter-spacing:3.216000px;}
.ls1c{letter-spacing:3.300000px;}
.ls5b{letter-spacing:3.360000px;}
.ls52{letter-spacing:3.480000px;}
.ls61{letter-spacing:3.540000px;}
.ls6a{letter-spacing:3.552000px;}
.ls5a{letter-spacing:3.600000px;}
.ls51{letter-spacing:3.660000px;}
.ls15{letter-spacing:3.720000px;}
.ls71{letter-spacing:3.744000px;}
.ls1a{letter-spacing:3.780000px;}
.ls9{letter-spacing:3.840000px;}
.ls50{letter-spacing:3.900000px;}
.ls63{letter-spacing:3.960000px;}
.ls2f{letter-spacing:4.140000px;}
.ls14{letter-spacing:4.200000px;}
.ls86{letter-spacing:4.272000px;}
.ls24{letter-spacing:4.320000px;}
.ls82{letter-spacing:4.416000px;}
.lsc{letter-spacing:4.740000px;}
.ls1b{letter-spacing:4.800000px;}
.ls17{letter-spacing:4.860000px;}
.ls65{letter-spacing:5.040000px;}
.ls59{letter-spacing:5.100000px;}
.ls37{letter-spacing:5.160000px;}
.ls60{letter-spacing:5.760000px;}
.ls84{letter-spacing:5.856000px;}
.ls57{letter-spacing:5.880000px;}
.ls7f{letter-spacing:6.288000px;}
.ls39{letter-spacing:6.300000px;}
.ls6e{letter-spacing:6.480000px;}
.ls5f{letter-spacing:7.200000px;}
.ls5c{letter-spacing:7.740000px;}
.ls62{letter-spacing:7.980000px;}
.ls0{letter-spacing:59.532876px;}
.ls1{letter-spacing:59.533476px;}
.ls44{letter-spacing:84.060000px;}
.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;}
}
.ws42{word-spacing:-93.060000px;}
.ws0{word-spacing:-35.194800px;}
.ws80{word-spacing:-20.100000px;}
.ws12{word-spacing:-19.200000px;}
.ws91{word-spacing:-18.960000px;}
.ws81{word-spacing:-18.360000px;}
.ws2{word-spacing:-17.514000px;}
.ws40{word-spacing:-17.340000px;}
.ws28{word-spacing:-17.040000px;}
.ws2b{word-spacing:-16.800000px;}
.ws82{word-spacing:-16.740000px;}
.ws4{word-spacing:-16.680000px;}
.ws2a{word-spacing:-16.440000px;}
.ws83{word-spacing:-16.380000px;}
.ws27{word-spacing:-16.320000px;}
.ws13{word-spacing:-16.200000px;}
.ws2c{word-spacing:-16.140000px;}
.ws15{word-spacing:-16.080000px;}
.ws41{word-spacing:-15.960000px;}
.ws68{word-spacing:-15.780000px;}
.ws98{word-spacing:-15.744000px;}
.ws26{word-spacing:-15.660000px;}
.wsae{word-spacing:-15.600000px;}
.ws5{word-spacing:-15.240000px;}
.ws14{word-spacing:-15.120000px;}
.ws29{word-spacing:-15.000000px;}
.ws96{word-spacing:-13.968000px;}
.wsb0{word-spacing:-13.872000px;}
.ws95{word-spacing:-13.824000px;}
.ws94{word-spacing:-13.680000px;}
.ws3f{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.344000px;}
.wsad{word-spacing:-13.200000px;}
.ws97{word-spacing:-13.152000px;}
.ws92{word-spacing:-12.960000px;}
.wsac{word-spacing:-12.576000px;}
.ws6{word-spacing:-12.510000px;}
.wsb1{word-spacing:-12.432000px;}
.wsaf{word-spacing:-12.336000px;}
.wsb2{word-spacing:-12.288000px;}
.ws93{word-spacing:-12.096000px;}
.ws16{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.210662px;}
.ws46{word-spacing:-9.000000px;}
.ws25{word-spacing:-8.745000px;}
.ws3{word-spacing:-7.293330px;}
.ws9e{word-spacing:-5.760000px;}
.ws65{word-spacing:-5.160000px;}
.ws22{word-spacing:-4.320000px;}
.ws19{word-spacing:-4.200000px;}
.ws2f{word-spacing:-4.140000px;}
.ws1b{word-spacing:-3.780000px;}
.ws89{word-spacing:-3.660000px;}
.ws84{word-spacing:-3.600000px;}
.wsb6{word-spacing:-3.216000px;}
.ws9f{word-spacing:-3.000000px;}
.ws9{word-spacing:-2.886000px;}
.ws33{word-spacing:-2.880000px;}
.ws8f{word-spacing:-2.700000px;}
.ws99{word-spacing:-2.580000px;}
.wsa6{word-spacing:-2.544000px;}
.ws8d{word-spacing:-2.520000px;}
.ws8c{word-spacing:-2.460000px;}
.wsa4{word-spacing:-2.400000px;}
.ws4c{word-spacing:-2.340000px;}
.wsa{word-spacing:-2.331000px;}
.wsb9{word-spacing:-2.304000px;}
.ws36{word-spacing:-2.280000px;}
.ws21{word-spacing:-2.220000px;}
.ws2e{word-spacing:-2.100000px;}
.wsa5{word-spacing:-1.968000px;}
.ws8b{word-spacing:-1.920000px;}
.ws35{word-spacing:-1.860000px;}
.wsa1{word-spacing:-1.680000px;}
.ws34{word-spacing:-1.620000px;}
.ws1e{word-spacing:-1.560000px;}
.ws30{word-spacing:-1.440000px;}
.ws39{word-spacing:-1.380000px;}
.ws31{word-spacing:-1.320000px;}
.ws37{word-spacing:-1.260000px;}
.wsbc{word-spacing:-1.248000px;}
.wsa8{word-spacing:-1.152000px;}
.wsab{word-spacing:-1.104000px;}
.wsaa{word-spacing:-1.056000px;}
.ws17{word-spacing:-0.900000px;}
.wsc2{word-spacing:-0.816000px;}
.ws69{word-spacing:-0.780000px;}
.ws86{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.540000px;}
.ws1f{word-spacing:-0.480000px;}
.wsc0{word-spacing:-0.432000px;}
.ws5d{word-spacing:-0.420000px;}
.ws23{word-spacing:-0.360000px;}
.wsa2{word-spacing:-0.336000px;}
.ws9c{word-spacing:-0.300000px;}
.wsbf{word-spacing:-0.288000px;}
.ws1c{word-spacing:-0.240000px;}
.ws47{word-spacing:-0.180000px;}
.ws7d{word-spacing:-0.144000px;}
.ws20{word-spacing:-0.120000px;}
.ws66{word-spacing:-0.096000px;}
.ws3d{word-spacing:-0.060000px;}
.ws67{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws51{word-spacing:0.060000px;}
.wsbe{word-spacing:0.096000px;}
.ws38{word-spacing:0.120000px;}
.wsa3{word-spacing:0.144000px;}
.ws7b{word-spacing:0.180000px;}
.wsb{word-spacing:0.225000px;}
.ws5c{word-spacing:0.240000px;}
.ws6c{word-spacing:0.300000px;}
.wsb8{word-spacing:0.336000px;}
.ws9a{word-spacing:0.420000px;}
.wsc1{word-spacing:0.432000px;}
.ws10{word-spacing:0.480000px;}
.wsb7{word-spacing:0.528000px;}
.ws55{word-spacing:0.540000px;}
.wsb3{word-spacing:0.576000px;}
.ws71{word-spacing:0.600000px;}
.ws11{word-spacing:0.660000px;}
.ws61{word-spacing:0.720000px;}
.wsb4{word-spacing:0.768000px;}
.ws50{word-spacing:0.780000px;}
.ws57{word-spacing:0.840000px;}
.ws78{word-spacing:0.912000px;}
.wsbb{word-spacing:1.008000px;}
.ws4b{word-spacing:1.020000px;}
.ws4f{word-spacing:1.080000px;}
.ws56{word-spacing:1.140000px;}
.wsa7{word-spacing:1.296000px;}
.ws77{word-spacing:1.320000px;}
.wsbd{word-spacing:1.344000px;}
.ws5a{word-spacing:1.380000px;}
.ws63{word-spacing:1.440000px;}
.ws76{word-spacing:1.500000px;}
.ws64{word-spacing:1.560000px;}
.ws79{word-spacing:1.620000px;}
.ws1d{word-spacing:1.680000px;}
.wsa9{word-spacing:1.728000px;}
.ws49{word-spacing:1.800000px;}
.wsa0{word-spacing:1.824000px;}
.ws7c{word-spacing:1.860000px;}
.wsb5{word-spacing:1.872000px;}
.ws70{word-spacing:2.040000px;}
.ws5b{word-spacing:2.100000px;}
.ws74{word-spacing:2.160000px;}
.ws8e{word-spacing:2.220000px;}
.ws3e{word-spacing:2.256000px;}
.ws5f{word-spacing:2.280000px;}
.wsba{word-spacing:2.304000px;}
.ws87{word-spacing:2.340000px;}
.ws3b{word-spacing:2.400000px;}
.ws48{word-spacing:2.460000px;}
.ws3a{word-spacing:2.520000px;}
.ws8a{word-spacing:2.580000px;}
.ws6b{word-spacing:2.640000px;}
.ws72{word-spacing:2.700000px;}
.ws75{word-spacing:2.820000px;}
.ws4a{word-spacing:2.880000px;}
.ws54{word-spacing:3.060000px;}
.ws73{word-spacing:3.120000px;}
.ws59{word-spacing:3.216000px;}
.ws5e{word-spacing:3.240000px;}
.ws4d{word-spacing:3.300000px;}
.ws6f{word-spacing:3.360000px;}
.ws88{word-spacing:3.420000px;}
.wsf{word-spacing:3.480000px;}
.ws7a{word-spacing:3.648000px;}
.ws18{word-spacing:3.720000px;}
.ws2d{word-spacing:3.780000px;}
.ws58{word-spacing:3.900000px;}
.ws52{word-spacing:3.936000px;}
.wsc{word-spacing:3.960000px;}
.ws7e{word-spacing:3.984000px;}
.ws32{word-spacing:4.080000px;}
.ws53{word-spacing:4.128000px;}
.ws1a{word-spacing:4.140000px;}
.ws7f{word-spacing:4.176000px;}
.ws6e{word-spacing:4.380000px;}
.ws24{word-spacing:4.440000px;}
.ws85{word-spacing:4.500000px;}
.ws6a{word-spacing:4.560000px;}
.ws60{word-spacing:4.620000px;}
.ws62{word-spacing:4.680000px;}
.ws6d{word-spacing:4.740000px;}
.ws3c{word-spacing:4.800000px;}
.wse{word-spacing:4.920000px;}
.wsd{word-spacing:4.980000px;}
.ws9b{word-spacing:5.460000px;}
.ws9d{word-spacing:5.520000px;}
.ws90{word-spacing:7.680000px;}
.ws45{word-spacing:30.060000px;}
.ws44{word-spacing:57.060000px;}
.ws43{word-spacing:60.372000px;}
._c{margin-left:-2898.096000px;}
._10{margin-left:-2874.288000px;}
._11{margin-left:-83.691600px;}
._12{margin-left:-17.352000px;}
._3b{margin-left:-14.640000px;}
._2{margin-left:-9.368400px;}
._39{margin-left:-7.935000px;}
._d{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.207260px;}
._f{width:1.056000px;}
._3{width:2.286600px;}
._b{width:3.525000px;}
._8{width:4.800000px;}
._7{width:5.880000px;}
._e{width:6.960000px;}
._a{width:7.980000px;}
._9{width:9.120000px;}
._38{width:10.125000px;}
._3a{width:11.160000px;}
._26{width:19.337400px;}
._16{width:21.060000px;}
._19{width:22.392000px;}
._20{width:38.688000px;}
._1b{width:40.038000px;}
._17{width:42.012000px;}
._14{width:49.032000px;}
._13{width:57.528000px;}
._5{width:59.484414px;}
._1a{width:72.648000px;}
._1c{width:81.072000px;}
._2b{width:84.930000px;}
._1e{width:123.438000px;}
._29{width:124.567260px;}
._33{width:127.271400px;}
._35{width:130.537860px;}
._18{width:141.257586px;}
._31{width:144.925260px;}
._15{width:165.384000px;}
._2f{width:185.910000px;}
._34{width:187.596000px;}
._2a{width:194.550000px;}
._37{width:213.882000px;}
._36{width:215.604000px;}
._2c{width:244.548000px;}
._28{width:251.568000px;}
._25{width:257.580000px;}
._30{width:261.576000px;}
._1f{width:263.556000px;}
._27{width:267.882000px;}
._2d{width:281.592000px;}
._2e{width:298.224000px;}
._23{width:301.572000px;}
._32{width:303.588000px;}
._1d{width:307.548000px;}
._22{width:334.224000px;}
._21{width:335.556000px;}
._24{width:347.580000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fsc{font-size:36.000000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.ya5{bottom:83.770350px;}
.ya8{bottom:83.779200px;}
.y73{bottom:83.920350px;}
.yf6{bottom:84.523350px;}
.y48{bottom:84.641400px;}
.y2b{bottom:88.026750px;}
.y167{bottom:89.263500px;}
.yf4{bottom:90.644100px;}
.y11e{bottom:91.253850px;}
.ya7{bottom:99.523200px;}
.yf5{bottom:100.267350px;}
.ya4{bottom:101.770350px;}
.y72{bottom:101.920350px;}
.y2a{bottom:103.023000px;}
.yf3{bottom:103.892100px;}
.y166{bottom:104.263500px;}
.y120{bottom:104.720100px;}
.y11d{bottom:109.253850px;}
.yf2{bottom:117.140100px;}
.y165{bottom:119.263500px;}
.y114{bottom:119.770350px;}
.ya3{bottom:119.785350px;}
.y71{bottom:119.920350px;}
.y11f{bottom:120.464100px;}
.yf1{bottom:130.388100px;}
.y164{bottom:134.263500px;}
.y113{bottom:137.770350px;}
.ya2{bottom:137.785350px;}
.y70{bottom:137.920350px;}
.yf0{bottom:143.659950px;}
.y11c{bottom:144.094500px;}
.y163{bottom:149.263500px;}
.y112{bottom:155.770350px;}
.ya1{bottom:155.785350px;}
.y6f{bottom:155.920350px;}
.yef{bottom:156.907950px;}
.y11b{bottom:159.700500px;}
.y162{bottom:164.263500px;}
.yee{bottom:170.155950px;}
.y27{bottom:170.794050px;}
.y111{bottom:173.770350px;}
.ya0{bottom:173.785350px;}
.y6e{bottom:173.920350px;}
.y11a{bottom:174.070350px;}
.y161{bottom:179.263500px;}
.yed{bottom:183.403950px;}
.y26{bottom:188.794050px;}
.y128{bottom:191.365350px;}
.y119{bottom:191.665350px;}
.y110{bottom:191.770350px;}
.y9f{bottom:191.785350px;}
.y6d{bottom:191.920350px;}
.y160{bottom:194.263500px;}
.yec{bottom:196.651950px;}
.y25{bottom:206.794050px;}
.y15f{bottom:209.263500px;}
.y10f{bottom:209.770350px;}
.y9e{bottom:209.785350px;}
.yeb{bottom:209.899950px;}
.y6c{bottom:209.920350px;}
.yea{bottom:223.167750px;}
.y15e{bottom:224.263500px;}
.y24{bottom:224.794050px;}
.y127{bottom:227.365350px;}
.y118{bottom:227.515350px;}
.y10e{bottom:227.770350px;}
.y9d{bottom:227.785350px;}
.y6b{bottom:227.920350px;}
.ye9{bottom:236.415750px;}
.y15d{bottom:239.263500px;}
.y23{bottom:242.794050px;}
.y117{bottom:245.515350px;}
.y10d{bottom:245.770350px;}
.y9c{bottom:245.785350px;}
.y6a{bottom:245.920350px;}
.ye8{bottom:249.663750px;}
.y15c{bottom:254.263500px;}
.y22{bottom:260.794050px;}
.ye7{bottom:262.911750px;}
.y116{bottom:263.515350px;}
.y10c{bottom:263.770350px;}
.y9b{bottom:263.785350px;}
.y69{bottom:263.920350px;}
.y15b{bottom:269.263500px;}
.ye6{bottom:276.159750px;}
.y21{bottom:278.794050px;}
.y115{bottom:281.515350px;}
.y10b{bottom:281.770350px;}
.y9a{bottom:281.785350px;}
.y68{bottom:281.920350px;}
.y15a{bottom:284.263500px;}
.ye5{bottom:289.427700px;}
.y20{bottom:296.794050px;}
.y159{bottom:299.263500px;}
.y126{bottom:299.365350px;}
.y10a{bottom:299.770350px;}
.y99{bottom:299.785350px;}
.y67{bottom:299.920350px;}
.ye4{bottom:302.675700px;}
.y158{bottom:314.263500px;}
.y29{bottom:314.794050px;}
.ye3{bottom:315.923700px;}
.y109{bottom:317.770350px;}
.y98{bottom:317.785350px;}
.y66{bottom:317.920350px;}
.ye2{bottom:329.171700px;}
.y157{bottom:329.263500px;}
.y1f{bottom:332.391150px;}
.y28{bottom:332.794050px;}
.y108{bottom:335.770350px;}
.y97{bottom:335.785350px;}
.y65{bottom:335.920350px;}
.ye1{bottom:342.419700px;}
.y156{bottom:344.263500px;}
.y125{bottom:353.365350px;}
.y107{bottom:353.770350px;}
.y96{bottom:353.785350px;}
.y64{bottom:353.920350px;}
.ye0{bottom:355.680300px;}
.y155{bottom:359.263500px;}
.ydf{bottom:368.928300px;}
.y106{bottom:371.770350px;}
.y95{bottom:371.785350px;}
.y63{bottom:371.920350px;}
.y154{bottom:374.263500px;}
.yde{bottom:382.176300px;}
.y153{bottom:389.263500px;}
.y105{bottom:389.770350px;}
.y94{bottom:389.785350px;}
.y62{bottom:389.920350px;}
.ydd{bottom:395.424300px;}
.y152{bottom:404.263500px;}
.y1e{bottom:405.058500px;}
.y104{bottom:407.770350px;}
.y93{bottom:407.785350px;}
.y61{bottom:407.920350px;}
.ydc{bottom:408.672300px;}
.y151{bottom:419.263500px;}
.y1d{bottom:423.064200px;}
.y103{bottom:425.770350px;}
.y92{bottom:425.785350px;}
.y60{bottom:425.920350px;}
.y150{bottom:434.263500px;}
.ydb{bottom:438.687300px;}
.y102{bottom:443.770350px;}
.y91{bottom:443.785350px;}
.y5f{bottom:443.920350px;}
.y14f{bottom:449.263500px;}
.y1c{bottom:450.409200px;}
.y101{bottom:461.770350px;}
.y90{bottom:461.785350px;}
.y5e{bottom:461.920350px;}
.y14e{bottom:464.263500px;}
.y1b{bottom:468.409200px;}
.yda{bottom:472.583850px;}
.y14d{bottom:479.263500px;}
.y124{bottom:479.365350px;}
.y100{bottom:479.770350px;}
.y8f{bottom:479.785350px;}
.y5d{bottom:479.920350px;}
.y1a{bottom:486.409200px;}
.yd9{bottom:492.083850px;}
.y14c{bottom:494.263500px;}
.y122{bottom:497.380350px;}
.yff{bottom:497.770350px;}
.y8e{bottom:497.785350px;}
.y5c{bottom:497.920350px;}
.y19{bottom:504.409200px;}
.y14b{bottom:509.263500px;}
.yd8{bottom:511.583850px;}
.y18c{bottom:515.263500px;}
.yfe{bottom:515.770350px;}
.y8d{bottom:515.785350px;}
.y5b{bottom:515.920350px;}
.y18{bottom:522.409200px;}
.y14a{bottom:524.263500px;}
.y18b{bottom:530.263500px;}
.yfd{bottom:533.770350px;}
.y8c{bottom:533.785350px;}
.y5a{bottom:533.920350px;}
.y149{bottom:539.263500px;}
.y17{bottom:540.409200px;}
.y18a{bottom:545.263500px;}
.yfc{bottom:551.770350px;}
.y8b{bottom:551.785350px;}
.y59{bottom:551.920350px;}
.y148{bottom:554.263500px;}
.y16{bottom:558.409200px;}
.ybc{bottom:559.253850px;}
.y189{bottom:560.263500px;}
.y147{bottom:569.263500px;}
.yd7{bottom:569.768850px;}
.yfb{bottom:569.770350px;}
.y58{bottom:569.920350px;}
.y188{bottom:575.263500px;}
.y15{bottom:576.409200px;}
.ybb{bottom:577.253850px;}
.y146{bottom:584.263500px;}
.y8a{bottom:587.380350px;}
.yd6{bottom:587.768850px;}
.yfa{bottom:587.770350px;}
.y57{bottom:587.920350px;}
.y187{bottom:590.263500px;}
.y14{bottom:594.409200px;}
.yba{bottom:595.253850px;}
.y145{bottom:599.263500px;}
.y186{bottom:605.263500px;}
.y89{bottom:605.380350px;}
.yd5{bottom:605.768850px;}
.yf9{bottom:605.770350px;}
.y56{bottom:605.920350px;}
.y13{bottom:612.409200px;}
.yb9{bottom:613.253850px;}
.y144{bottom:614.263500px;}
.y185{bottom:620.263500px;}
.yd4{bottom:623.768850px;}
.yf8{bottom:623.770350px;}
.y55{bottom:623.920350px;}
.y143{bottom:629.263500px;}
.yb8{bottom:631.253850px;}
.y184{bottom:635.263500px;}
.y88{bottom:641.245350px;}
.y123{bottom:641.365350px;}
.yd3{bottom:641.768850px;}
.y45{bottom:641.770350px;}
.y54{bottom:641.920350px;}
.y142{bottom:644.263500px;}
.yb7{bottom:649.253850px;}
.y183{bottom:650.263500px;}
.y12{bottom:657.567300px;}
.y141{bottom:659.263500px;}
.yd2{bottom:659.768850px;}
.y44{bottom:659.770350px;}
.y53{bottom:659.920350px;}
.y182{bottom:665.263500px;}
.yb6{bottom:667.253850px;}
.y11{bottom:670.018050px;}
.y140{bottom:674.263500px;}
.yd1{bottom:677.768850px;}
.y43{bottom:677.770350px;}
.y52{bottom:677.920350px;}
.y181{bottom:680.263500px;}
.yb5{bottom:685.253850px;}
.y13f{bottom:689.263500px;}
.y180{bottom:695.263500px;}
.yd0{bottom:695.768850px;}
.y42{bottom:695.770350px;}
.y87{bottom:695.785350px;}
.y51{bottom:695.920350px;}
.y10{bottom:701.733600px;}
.yb4{bottom:703.253850px;}
.y13e{bottom:704.263500px;}
.y17f{bottom:710.263500px;}
.ycf{bottom:713.768850px;}
.y41{bottom:713.770350px;}
.y86{bottom:713.785350px;}
.y50{bottom:713.920350px;}
.y13d{bottom:719.263500px;}
.yf{bottom:720.658800px;}
.yb3{bottom:721.253850px;}
.y17e{bottom:725.263500px;}
.ye{bottom:728.733600px;}
.yce{bottom:731.768850px;}
.y40{bottom:731.770350px;}
.y85{bottom:731.785350px;}
.y4f{bottom:731.920350px;}
.y13c{bottom:734.263500px;}
.yb2{bottom:739.253850px;}
.y17d{bottom:740.263500px;}
.yd{bottom:747.658800px;}
.y13b{bottom:749.263500px;}
.ycd{bottom:749.768850px;}
.y3f{bottom:749.770350px;}
.y84{bottom:749.785350px;}
.y4e{bottom:749.920350px;}
.y17c{bottom:755.263500px;}
.yc{bottom:755.733600px;}
.y13a{bottom:764.263500px;}
.ycc{bottom:767.768850px;}
.y3e{bottom:767.770350px;}
.y83{bottom:767.785350px;}
.y4d{bottom:767.920350px;}
.y17b{bottom:770.263500px;}
.yb1{bottom:774.094350px;}
.yb{bottom:774.658950px;}
.y139{bottom:779.263500px;}
.ya{bottom:782.733600px;}
.y17a{bottom:785.263500px;}
.y47{bottom:785.365350px;}
.ycb{bottom:785.768850px;}
.y3d{bottom:785.770350px;}
.y82{bottom:785.785350px;}
.y4c{bottom:785.920350px;}
.yb0{bottom:789.700350px;}
.y138{bottom:794.263500px;}
.y179{bottom:800.263500px;}
.y9{bottom:801.658950px;}
.yca{bottom:803.768850px;}
.y3c{bottom:803.770350px;}
.y81{bottom:803.785350px;}
.y4b{bottom:803.920350px;}
.yaf{bottom:804.070350px;}
.y137{bottom:809.263500px;}
.y178{bottom:815.263500px;}
.y46{bottom:821.230350px;}
.yae{bottom:821.665350px;}
.yc9{bottom:821.768850px;}
.y3b{bottom:821.770350px;}
.y80{bottom:821.785350px;}
.y136{bottom:824.263500px;}
.y177{bottom:830.263500px;}
.y8{bottom:830.386200px;}
.y135{bottom:839.263500px;}
.y4a{bottom:839.515350px;}
.yc8{bottom:839.768850px;}
.y3a{bottom:839.770350px;}
.y7f{bottom:839.785350px;}
.y176{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y134{bottom:854.263500px;}
.yad{bottom:857.515350px;}
.yc7{bottom:857.768850px;}
.y39{bottom:857.770350px;}
.y7e{bottom:857.785350px;}
.y175{bottom:860.263500px;}
.y133{bottom:869.263500px;}
.y174{bottom:875.263500px;}
.yac{bottom:875.515350px;}
.yc6{bottom:875.768850px;}
.y38{bottom:875.770350px;}
.y7d{bottom:875.785350px;}
.y132{bottom:884.263500px;}
.y173{bottom:890.263500px;}
.yab{bottom:893.515350px;}
.yc5{bottom:893.768850px;}
.y37{bottom:893.770350px;}
.y7c{bottom:893.785350px;}
.y6{bottom:897.575250px;}
.y131{bottom:899.263500px;}
.y172{bottom:905.263500px;}
.yaa{bottom:911.515350px;}
.yc4{bottom:911.768850px;}
.y36{bottom:911.770350px;}
.y7b{bottom:911.785350px;}
.y130{bottom:914.263500px;}
.y171{bottom:920.263500px;}
.y12f{bottom:929.263500px;}
.yc3{bottom:929.768850px;}
.y35{bottom:929.770350px;}
.y7a{bottom:929.785350px;}
.y5{bottom:934.036050px;}
.y170{bottom:935.263500px;}
.y12e{bottom:944.263500px;}
.yc2{bottom:947.768850px;}
.y34{bottom:947.770350px;}
.y79{bottom:947.785350px;}
.y16f{bottom:950.263500px;}
.y12d{bottom:959.263500px;}
.y16e{bottom:965.263500px;}
.yc1{bottom:965.768850px;}
.y33{bottom:965.770350px;}
.y78{bottom:965.785350px;}
.y4{bottom:970.496850px;}
.y12c{bottom:974.263500px;}
.y16d{bottom:980.263500px;}
.yc0{bottom:983.768850px;}
.y32{bottom:983.770350px;}
.y77{bottom:983.785350px;}
.y12b{bottom:989.263500px;}
.y16c{bottom:995.263500px;}
.ybf{bottom:1001.768850px;}
.y31{bottom:1001.770350px;}
.y76{bottom:1001.785350px;}
.y12a{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y16b{bottom:1010.263500px;}
.ybe{bottom:1019.768850px;}
.y30{bottom:1019.770350px;}
.y75{bottom:1019.785350px;}
.y16a{bottom:1025.263500px;}
.y129{bottom:1037.365350px;}
.ybd{bottom:1037.768850px;}
.y2f{bottom:1037.770350px;}
.y74{bottom:1037.785350px;}
.y169{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.ya6{bottom:1132.418700px;}
.y49{bottom:1132.421400px;}
.ya9{bottom:1132.423200px;}
.yf7{bottom:1132.423350px;}
.y168{bottom:1132.423500px;}
.y121{bottom:1132.424100px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.h15{height:31.587891px;}
.hf{height:32.761230px;}
.h8{height:32.805176px;}
.h11{height:34.945312px;}
.h10{height:34.992188px;}
.h16{height:42.023438px;}
.h12{height:42.117188px;}
.hb{height:43.681641px;}
.hc{height:43.717434px;}
.ha{height:43.740234px;}
.h14{height:47.381836px;}
.he{height:52.529297px;}
.hd{height:52.646484px;}
.h17{height:54.149297px;}
.h18{height:54.266484px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h13{height:58.955900px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x18{left:100.495350px;}
.x2b{left:102.047250px;}
.x4{left:106.299150px;}
.xd{left:110.555400px;}
.x3{left:125.427900px;}
.x7{left:131.811000px;}
.x19{left:140.515350px;}
.x1a{left:149.695350px;}
.x17{left:151.630350px;}
.x5{left:191.338500px;}
.x28{left:198.875400px;}
.x6{left:212.876400px;}
.x1c{left:223.685400px;}
.x1d{left:231.608250px;}
.x1b{left:233.905350px;}
.xb{left:455.041500px;}
.xe{left:457.100400px;}
.x1f{left:459.785400px;}
.x24{left:475.674150px;}
.x13{left:478.366800px;}
.x8{left:480.471000px;}
.x2c{left:482.615250px;}
.x10{left:491.135400px;}
.x20{left:499.805400px;}
.x22{left:502.055400px;}
.x2a{left:503.858400px;}
.x21{left:508.985400px;}
.x1e{left:510.920400px;}
.x15{left:512.386800px;}
.x9{left:514.491000px;}
.xf{left:525.305400px;}
.x25{left:581.095650px;}
.x23{left:589.445400px;}
.x29{left:596.110350px;}
.x14{left:612.931800px;}
.x12{left:663.492300px;}
.x2{left:693.365400px;}
.x26{left:721.727400px;}
.x11{left:728.399400px;}
.x27{left:743.868150px;}
.x16{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls47{letter-spacing:-1.184000pt;}
.ls11{letter-spacing:-1.173333pt;}
.ls40{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls55{letter-spacing:-0.480000pt;}
.ls5e{letter-spacing:-0.373333pt;}
.ls46{letter-spacing:-0.266667pt;}
.ls41{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.200000pt;}
.ls4d{letter-spacing:-0.160000pt;}
.ls56{letter-spacing:-0.128000pt;}
.ls42{letter-spacing:-0.106667pt;}
.ls4e{letter-spacing:-0.085333pt;}
.ls45{letter-spacing:-0.053333pt;}
.ls4f{letter-spacing:-0.042667pt;}
.lse{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls64{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.061333pt;}
.ls6b{letter-spacing:0.085333pt;}
.ls22{letter-spacing:0.106667pt;}
.ls72{letter-spacing:0.128000pt;}
.ls43{letter-spacing:0.160000pt;}
.ls48{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.213333pt;}
.ls68{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls73{letter-spacing:0.298667pt;}
.ls26{letter-spacing:0.320000pt;}
.ls7d{letter-spacing:0.341333pt;}
.ls3c{letter-spacing:0.373333pt;}
.ls75{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls31{letter-spacing:0.480000pt;}
.ls78{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.533333pt;}
.ls69{letter-spacing:0.554667pt;}
.ls19{letter-spacing:0.586667pt;}
.ls66{letter-spacing:0.597333pt;}
.ls28{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.693333pt;}
.ls85{letter-spacing:0.725333pt;}
.ls36{letter-spacing:0.746667pt;}
.ls12{letter-spacing:0.800000pt;}
.ls6f{letter-spacing:0.810667pt;}
.ls34{letter-spacing:0.853333pt;}
.ls4a{letter-spacing:0.906667pt;}
.ls74{letter-spacing:0.938667pt;}
.ls23{letter-spacing:0.960000pt;}
.ls76{letter-spacing:0.981333pt;}
.ls3f{letter-spacing:1.013333pt;}
.ls70{letter-spacing:1.024000pt;}
.ls16{letter-spacing:1.066667pt;}
.ls81{letter-spacing:1.109333pt;}
.ls6{letter-spacing:1.120000pt;}
.ls7a{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.173333pt;}
.ls3d{letter-spacing:1.226667pt;}
.ls7b{letter-spacing:1.237333pt;}
.ls32{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.333333pt;}
.ls80{letter-spacing:1.365333pt;}
.lsb{letter-spacing:1.386667pt;}
.ls8{letter-spacing:1.440000pt;}
.ls7c{letter-spacing:1.450667pt;}
.ls25{letter-spacing:1.493333pt;}
.ls27{letter-spacing:1.546667pt;}
.ls30{letter-spacing:1.600000pt;}
.ls6c{letter-spacing:1.621333pt;}
.ls1f{letter-spacing:1.653333pt;}
.ls83{letter-spacing:1.664000pt;}
.ls4{letter-spacing:1.706667pt;}
.ls67{letter-spacing:1.749333pt;}
.ls3e{letter-spacing:1.760000pt;}
.ls13{letter-spacing:1.813333pt;}
.ls2c{letter-spacing:1.866667pt;}
.ls1e{letter-spacing:1.920000pt;}
.ls77{letter-spacing:1.962667pt;}
.ls3b{letter-spacing:1.973333pt;}
.ls3a{letter-spacing:2.026667pt;}
.ls7e{letter-spacing:2.048000pt;}
.ls29{letter-spacing:2.080000pt;}
.ls2d{letter-spacing:2.133333pt;}
.ls79{letter-spacing:2.176000pt;}
.ls38{letter-spacing:2.186667pt;}
.ls5d{letter-spacing:2.240000pt;}
.ls6d{letter-spacing:2.261333pt;}
.ls54{letter-spacing:2.293333pt;}
.ls49{letter-spacing:2.346667pt;}
.ls2b{letter-spacing:2.400000pt;}
.ls4b{letter-spacing:2.453333pt;}
.ls2e{letter-spacing:2.506667pt;}
.ls5{letter-spacing:2.560000pt;}
.ls33{letter-spacing:2.613333pt;}
.ls4c{letter-spacing:2.666667pt;}
.ls58{letter-spacing:2.720000pt;}
.ls53{letter-spacing:2.773333pt;}
.ls35{letter-spacing:2.826667pt;}
.ls87{letter-spacing:2.858667pt;}
.ls1c{letter-spacing:2.933333pt;}
.ls5b{letter-spacing:2.986667pt;}
.ls52{letter-spacing:3.093333pt;}
.ls61{letter-spacing:3.146667pt;}
.ls6a{letter-spacing:3.157333pt;}
.ls5a{letter-spacing:3.200000pt;}
.ls51{letter-spacing:3.253333pt;}
.ls15{letter-spacing:3.306667pt;}
.ls71{letter-spacing:3.328000pt;}
.ls1a{letter-spacing:3.360000pt;}
.ls9{letter-spacing:3.413333pt;}
.ls50{letter-spacing:3.466667pt;}
.ls63{letter-spacing:3.520000pt;}
.ls2f{letter-spacing:3.680000pt;}
.ls14{letter-spacing:3.733333pt;}
.ls86{letter-spacing:3.797333pt;}
.ls24{letter-spacing:3.840000pt;}
.ls82{letter-spacing:3.925333pt;}
.lsc{letter-spacing:4.213333pt;}
.ls1b{letter-spacing:4.266667pt;}
.ls17{letter-spacing:4.320000pt;}
.ls65{letter-spacing:4.480000pt;}
.ls59{letter-spacing:4.533333pt;}
.ls37{letter-spacing:4.586667pt;}
.ls60{letter-spacing:5.120000pt;}
.ls84{letter-spacing:5.205333pt;}
.ls57{letter-spacing:5.226667pt;}
.ls7f{letter-spacing:5.589333pt;}
.ls39{letter-spacing:5.600000pt;}
.ls6e{letter-spacing:5.760000pt;}
.ls5f{letter-spacing:6.400000pt;}
.ls5c{letter-spacing:6.880000pt;}
.ls62{letter-spacing:7.093333pt;}
.ls0{letter-spacing:52.918112pt;}
.ls1{letter-spacing:52.918645pt;}
.ls44{letter-spacing:74.720000pt;}
.ws42{word-spacing:-82.720000pt;}
.ws0{word-spacing:-31.284267pt;}
.ws80{word-spacing:-17.866667pt;}
.ws12{word-spacing:-17.066667pt;}
.ws91{word-spacing:-16.853333pt;}
.ws81{word-spacing:-16.320000pt;}
.ws2{word-spacing:-15.568000pt;}
.ws40{word-spacing:-15.413333pt;}
.ws28{word-spacing:-15.146667pt;}
.ws2b{word-spacing:-14.933333pt;}
.ws82{word-spacing:-14.880000pt;}
.ws4{word-spacing:-14.826667pt;}
.ws2a{word-spacing:-14.613333pt;}
.ws83{word-spacing:-14.560000pt;}
.ws27{word-spacing:-14.506667pt;}
.ws13{word-spacing:-14.400000pt;}
.ws2c{word-spacing:-14.346667pt;}
.ws15{word-spacing:-14.293333pt;}
.ws41{word-spacing:-14.186667pt;}
.ws68{word-spacing:-14.026667pt;}
.ws98{word-spacing:-13.994667pt;}
.ws26{word-spacing:-13.920000pt;}
.wsae{word-spacing:-13.866667pt;}
.ws5{word-spacing:-13.546667pt;}
.ws14{word-spacing:-13.440000pt;}
.ws29{word-spacing:-13.333333pt;}
.ws96{word-spacing:-12.416000pt;}
.wsb0{word-spacing:-12.330667pt;}
.ws95{word-spacing:-12.288000pt;}
.ws94{word-spacing:-12.160000pt;}
.ws3f{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.861333pt;}
.wsad{word-spacing:-11.733333pt;}
.ws97{word-spacing:-11.690667pt;}
.ws92{word-spacing:-11.520000pt;}
.wsac{word-spacing:-11.178667pt;}
.ws6{word-spacing:-11.120000pt;}
.wsb1{word-spacing:-11.050667pt;}
.wsaf{word-spacing:-10.965333pt;}
.wsb2{word-spacing:-10.922667pt;}
.ws93{word-spacing:-10.752000pt;}
.ws16{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.076144pt;}
.ws46{word-spacing:-8.000000pt;}
.ws25{word-spacing:-7.773333pt;}
.ws3{word-spacing:-6.482960pt;}
.ws9e{word-spacing:-5.120000pt;}
.ws65{word-spacing:-4.586667pt;}
.ws22{word-spacing:-3.840000pt;}
.ws19{word-spacing:-3.733333pt;}
.ws2f{word-spacing:-3.680000pt;}
.ws1b{word-spacing:-3.360000pt;}
.ws89{word-spacing:-3.253333pt;}
.ws84{word-spacing:-3.200000pt;}
.wsb6{word-spacing:-2.858667pt;}
.ws9f{word-spacing:-2.666667pt;}
.ws9{word-spacing:-2.565333pt;}
.ws33{word-spacing:-2.560000pt;}
.ws8f{word-spacing:-2.400000pt;}
.ws99{word-spacing:-2.293333pt;}
.wsa6{word-spacing:-2.261333pt;}
.ws8d{word-spacing:-2.240000pt;}
.ws8c{word-spacing:-2.186667pt;}
.wsa4{word-spacing:-2.133333pt;}
.ws4c{word-spacing:-2.080000pt;}
.wsa{word-spacing:-2.072000pt;}
.wsb9{word-spacing:-2.048000pt;}
.ws36{word-spacing:-2.026667pt;}
.ws21{word-spacing:-1.973333pt;}
.ws2e{word-spacing:-1.866667pt;}
.wsa5{word-spacing:-1.749333pt;}
.ws8b{word-spacing:-1.706667pt;}
.ws35{word-spacing:-1.653333pt;}
.wsa1{word-spacing:-1.493333pt;}
.ws34{word-spacing:-1.440000pt;}
.ws1e{word-spacing:-1.386667pt;}
.ws30{word-spacing:-1.280000pt;}
.ws39{word-spacing:-1.226667pt;}
.ws31{word-spacing:-1.173333pt;}
.ws37{word-spacing:-1.120000pt;}
.wsbc{word-spacing:-1.109333pt;}
.wsa8{word-spacing:-1.024000pt;}
.wsab{word-spacing:-0.981333pt;}
.wsaa{word-spacing:-0.938667pt;}
.ws17{word-spacing:-0.800000pt;}
.wsc2{word-spacing:-0.725333pt;}
.ws69{word-spacing:-0.693333pt;}
.ws86{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.480000pt;}
.ws1f{word-spacing:-0.426667pt;}
.wsc0{word-spacing:-0.384000pt;}
.ws5d{word-spacing:-0.373333pt;}
.ws23{word-spacing:-0.320000pt;}
.wsa2{word-spacing:-0.298667pt;}
.ws9c{word-spacing:-0.266667pt;}
.wsbf{word-spacing:-0.256000pt;}
.ws1c{word-spacing:-0.213333pt;}
.ws47{word-spacing:-0.160000pt;}
.ws7d{word-spacing:-0.128000pt;}
.ws20{word-spacing:-0.106667pt;}
.ws66{word-spacing:-0.085333pt;}
.ws3d{word-spacing:-0.053333pt;}
.ws67{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws51{word-spacing:0.053333pt;}
.wsbe{word-spacing:0.085333pt;}
.ws38{word-spacing:0.106667pt;}
.wsa3{word-spacing:0.128000pt;}
.ws7b{word-spacing:0.160000pt;}
.wsb{word-spacing:0.200000pt;}
.ws5c{word-spacing:0.213333pt;}
.ws6c{word-spacing:0.266667pt;}
.wsb8{word-spacing:0.298667pt;}
.ws9a{word-spacing:0.373333pt;}
.wsc1{word-spacing:0.384000pt;}
.ws10{word-spacing:0.426667pt;}
.wsb7{word-spacing:0.469333pt;}
.ws55{word-spacing:0.480000pt;}
.wsb3{word-spacing:0.512000pt;}
.ws71{word-spacing:0.533333pt;}
.ws11{word-spacing:0.586667pt;}
.ws61{word-spacing:0.640000pt;}
.wsb4{word-spacing:0.682667pt;}
.ws50{word-spacing:0.693333pt;}
.ws57{word-spacing:0.746667pt;}
.ws78{word-spacing:0.810667pt;}
.wsbb{word-spacing:0.896000pt;}
.ws4b{word-spacing:0.906667pt;}
.ws4f{word-spacing:0.960000pt;}
.ws56{word-spacing:1.013333pt;}
.wsa7{word-spacing:1.152000pt;}
.ws77{word-spacing:1.173333pt;}
.wsbd{word-spacing:1.194667pt;}
.ws5a{word-spacing:1.226667pt;}
.ws63{word-spacing:1.280000pt;}
.ws76{word-spacing:1.333333pt;}
.ws64{word-spacing:1.386667pt;}
.ws79{word-spacing:1.440000pt;}
.ws1d{word-spacing:1.493333pt;}
.wsa9{word-spacing:1.536000pt;}
.ws49{word-spacing:1.600000pt;}
.wsa0{word-spacing:1.621333pt;}
.ws7c{word-spacing:1.653333pt;}
.wsb5{word-spacing:1.664000pt;}
.ws70{word-spacing:1.813333pt;}
.ws5b{word-spacing:1.866667pt;}
.ws74{word-spacing:1.920000pt;}
.ws8e{word-spacing:1.973333pt;}
.ws3e{word-spacing:2.005333pt;}
.ws5f{word-spacing:2.026667pt;}
.wsba{word-spacing:2.048000pt;}
.ws87{word-spacing:2.080000pt;}
.ws3b{word-spacing:2.133333pt;}
.ws48{word-spacing:2.186667pt;}
.ws3a{word-spacing:2.240000pt;}
.ws8a{word-spacing:2.293333pt;}
.ws6b{word-spacing:2.346667pt;}
.ws72{word-spacing:2.400000pt;}
.ws75{word-spacing:2.506667pt;}
.ws4a{word-spacing:2.560000pt;}
.ws54{word-spacing:2.720000pt;}
.ws73{word-spacing:2.773333pt;}
.ws59{word-spacing:2.858667pt;}
.ws5e{word-spacing:2.880000pt;}
.ws4d{word-spacing:2.933333pt;}
.ws6f{word-spacing:2.986667pt;}
.ws88{word-spacing:3.040000pt;}
.wsf{word-spacing:3.093333pt;}
.ws7a{word-spacing:3.242667pt;}
.ws18{word-spacing:3.306667pt;}
.ws2d{word-spacing:3.360000pt;}
.ws58{word-spacing:3.466667pt;}
.ws52{word-spacing:3.498667pt;}
.wsc{word-spacing:3.520000pt;}
.ws7e{word-spacing:3.541333pt;}
.ws32{word-spacing:3.626667pt;}
.ws53{word-spacing:3.669333pt;}
.ws1a{word-spacing:3.680000pt;}
.ws7f{word-spacing:3.712000pt;}
.ws6e{word-spacing:3.893333pt;}
.ws24{word-spacing:3.946667pt;}
.ws85{word-spacing:4.000000pt;}
.ws6a{word-spacing:4.053333pt;}
.ws60{word-spacing:4.106667pt;}
.ws62{word-spacing:4.160000pt;}
.ws6d{word-spacing:4.213333pt;}
.ws3c{word-spacing:4.266667pt;}
.wse{word-spacing:4.373333pt;}
.wsd{word-spacing:4.426667pt;}
.ws9b{word-spacing:4.853333pt;}
.ws9d{word-spacing:4.906667pt;}
.ws90{word-spacing:6.826667pt;}
.ws45{word-spacing:26.720000pt;}
.ws44{word-spacing:50.720000pt;}
.ws43{word-spacing:53.664000pt;}
._c{margin-left:-2576.085333pt;}
._10{margin-left:-2554.922667pt;}
._11{margin-left:-74.392533pt;}
._12{margin-left:-15.424000pt;}
._3b{margin-left:-13.013333pt;}
._2{margin-left:-8.327467pt;}
._39{margin-left:-7.053333pt;}
._d{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-1.073120pt;}
._f{width:0.938667pt;}
._3{width:2.032533pt;}
._b{width:3.133333pt;}
._8{width:4.266667pt;}
._7{width:5.226667pt;}
._e{width:6.186667pt;}
._a{width:7.093333pt;}
._9{width:8.106667pt;}
._38{width:9.000000pt;}
._3a{width:9.920000pt;}
._26{width:17.188800pt;}
._16{width:18.720000pt;}
._19{width:19.904000pt;}
._20{width:34.389333pt;}
._1b{width:35.589333pt;}
._17{width:37.344000pt;}
._14{width:43.584000pt;}
._13{width:51.136000pt;}
._5{width:52.875035pt;}
._1a{width:64.576000pt;}
._1c{width:72.064000pt;}
._2b{width:75.493333pt;}
._1e{width:109.722667pt;}
._29{width:110.726453pt;}
._33{width:113.130133pt;}
._35{width:116.033653pt;}
._18{width:125.562299pt;}
._31{width:128.822453pt;}
._15{width:147.008000pt;}
._2f{width:165.253333pt;}
._34{width:166.752000pt;}
._2a{width:172.933333pt;}
._37{width:190.117333pt;}
._36{width:191.648000pt;}
._2c{width:217.376000pt;}
._28{width:223.616000pt;}
._25{width:228.960000pt;}
._30{width:232.512000pt;}
._1f{width:234.272000pt;}
._27{width:238.117333pt;}
._2d{width:250.304000pt;}
._2e{width:265.088000pt;}
._23{width:268.064000pt;}
._32{width:269.856000pt;}
._1d{width:273.376000pt;}
._22{width:297.088000pt;}
._21{width:298.272000pt;}
._24{width:308.960000pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fsc{font-size:32.000000pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.ya5{bottom:74.462533pt;}
.ya8{bottom:74.470400pt;}
.y73{bottom:74.595867pt;}
.yf6{bottom:75.131867pt;}
.y48{bottom:75.236800pt;}
.y2b{bottom:78.246000pt;}
.y167{bottom:79.345333pt;}
.yf4{bottom:80.572533pt;}
.y11e{bottom:81.114533pt;}
.ya7{bottom:88.465067pt;}
.yf5{bottom:89.126533pt;}
.ya4{bottom:90.462533pt;}
.y72{bottom:90.595867pt;}
.y2a{bottom:91.576000pt;}
.yf3{bottom:92.348533pt;}
.y166{bottom:92.678667pt;}
.y120{bottom:93.084533pt;}
.y11d{bottom:97.114533pt;}
.yf2{bottom:104.124533pt;}
.y165{bottom:106.012000pt;}
.y114{bottom:106.462533pt;}
.ya3{bottom:106.475867pt;}
.y71{bottom:106.595867pt;}
.y11f{bottom:107.079200pt;}
.yf1{bottom:115.900533pt;}
.y164{bottom:119.345333pt;}
.y113{bottom:122.462533pt;}
.ya2{bottom:122.475867pt;}
.y70{bottom:122.595867pt;}
.yf0{bottom:127.697733pt;}
.y11c{bottom:128.084000pt;}
.y163{bottom:132.678667pt;}
.y112{bottom:138.462533pt;}
.ya1{bottom:138.475867pt;}
.y6f{bottom:138.595867pt;}
.yef{bottom:139.473733pt;}
.y11b{bottom:141.956000pt;}
.y162{bottom:146.012000pt;}
.yee{bottom:151.249733pt;}
.y27{bottom:151.816933pt;}
.y111{bottom:154.462533pt;}
.ya0{bottom:154.475867pt;}
.y6e{bottom:154.595867pt;}
.y11a{bottom:154.729200pt;}
.y161{bottom:159.345333pt;}
.yed{bottom:163.025733pt;}
.y26{bottom:167.816933pt;}
.y128{bottom:170.102533pt;}
.y119{bottom:170.369200pt;}
.y110{bottom:170.462533pt;}
.y9f{bottom:170.475867pt;}
.y6d{bottom:170.595867pt;}
.y160{bottom:172.678667pt;}
.yec{bottom:174.801733pt;}
.y25{bottom:183.816933pt;}
.y15f{bottom:186.012000pt;}
.y10f{bottom:186.462533pt;}
.y9e{bottom:186.475867pt;}
.yeb{bottom:186.577733pt;}
.y6c{bottom:186.595867pt;}
.yea{bottom:198.371333pt;}
.y15e{bottom:199.345333pt;}
.y24{bottom:199.816933pt;}
.y127{bottom:202.102533pt;}
.y118{bottom:202.235867pt;}
.y10e{bottom:202.462533pt;}
.y9d{bottom:202.475867pt;}
.y6b{bottom:202.595867pt;}
.ye9{bottom:210.147333pt;}
.y15d{bottom:212.678667pt;}
.y23{bottom:215.816933pt;}
.y117{bottom:218.235867pt;}
.y10d{bottom:218.462533pt;}
.y9c{bottom:218.475867pt;}
.y6a{bottom:218.595867pt;}
.ye8{bottom:221.923333pt;}
.y15c{bottom:226.012000pt;}
.y22{bottom:231.816933pt;}
.ye7{bottom:233.699333pt;}
.y116{bottom:234.235867pt;}
.y10c{bottom:234.462533pt;}
.y9b{bottom:234.475867pt;}
.y69{bottom:234.595867pt;}
.y15b{bottom:239.345333pt;}
.ye6{bottom:245.475333pt;}
.y21{bottom:247.816933pt;}
.y115{bottom:250.235867pt;}
.y10b{bottom:250.462533pt;}
.y9a{bottom:250.475867pt;}
.y68{bottom:250.595867pt;}
.y15a{bottom:252.678667pt;}
.ye5{bottom:257.269067pt;}
.y20{bottom:263.816933pt;}
.y159{bottom:266.012000pt;}
.y126{bottom:266.102533pt;}
.y10a{bottom:266.462533pt;}
.y99{bottom:266.475867pt;}
.y67{bottom:266.595867pt;}
.ye4{bottom:269.045067pt;}
.y158{bottom:279.345333pt;}
.y29{bottom:279.816933pt;}
.ye3{bottom:280.821067pt;}
.y109{bottom:282.462533pt;}
.y98{bottom:282.475867pt;}
.y66{bottom:282.595867pt;}
.ye2{bottom:292.597067pt;}
.y157{bottom:292.678667pt;}
.y1f{bottom:295.458800pt;}
.y28{bottom:295.816933pt;}
.y108{bottom:298.462533pt;}
.y97{bottom:298.475867pt;}
.y65{bottom:298.595867pt;}
.ye1{bottom:304.373067pt;}
.y156{bottom:306.012000pt;}
.y125{bottom:314.102533pt;}
.y107{bottom:314.462533pt;}
.y96{bottom:314.475867pt;}
.y64{bottom:314.595867pt;}
.ye0{bottom:316.160267pt;}
.y155{bottom:319.345333pt;}
.ydf{bottom:327.936267pt;}
.y106{bottom:330.462533pt;}
.y95{bottom:330.475867pt;}
.y63{bottom:330.595867pt;}
.y154{bottom:332.678667pt;}
.yde{bottom:339.712267pt;}
.y153{bottom:346.012000pt;}
.y105{bottom:346.462533pt;}
.y94{bottom:346.475867pt;}
.y62{bottom:346.595867pt;}
.ydd{bottom:351.488267pt;}
.y152{bottom:359.345333pt;}
.y1e{bottom:360.052000pt;}
.y104{bottom:362.462533pt;}
.y93{bottom:362.475867pt;}
.y61{bottom:362.595867pt;}
.ydc{bottom:363.264267pt;}
.y151{bottom:372.678667pt;}
.y1d{bottom:376.057067pt;}
.y103{bottom:378.462533pt;}
.y92{bottom:378.475867pt;}
.y60{bottom:378.595867pt;}
.y150{bottom:386.012000pt;}
.ydb{bottom:389.944267pt;}
.y102{bottom:394.462533pt;}
.y91{bottom:394.475867pt;}
.y5f{bottom:394.595867pt;}
.y14f{bottom:399.345333pt;}
.y1c{bottom:400.363733pt;}
.y101{bottom:410.462533pt;}
.y90{bottom:410.475867pt;}
.y5e{bottom:410.595867pt;}
.y14e{bottom:412.678667pt;}
.y1b{bottom:416.363733pt;}
.yda{bottom:420.074533pt;}
.y14d{bottom:426.012000pt;}
.y124{bottom:426.102533pt;}
.y100{bottom:426.462533pt;}
.y8f{bottom:426.475867pt;}
.y5d{bottom:426.595867pt;}
.y1a{bottom:432.363733pt;}
.yd9{bottom:437.407867pt;}
.y14c{bottom:439.345333pt;}
.y122{bottom:442.115867pt;}
.yff{bottom:442.462533pt;}
.y8e{bottom:442.475867pt;}
.y5c{bottom:442.595867pt;}
.y19{bottom:448.363733pt;}
.y14b{bottom:452.678667pt;}
.yd8{bottom:454.741200pt;}
.y18c{bottom:458.012000pt;}
.yfe{bottom:458.462533pt;}
.y8d{bottom:458.475867pt;}
.y5b{bottom:458.595867pt;}
.y18{bottom:464.363733pt;}
.y14a{bottom:466.012000pt;}
.y18b{bottom:471.345333pt;}
.yfd{bottom:474.462533pt;}
.y8c{bottom:474.475867pt;}
.y5a{bottom:474.595867pt;}
.y149{bottom:479.345333pt;}
.y17{bottom:480.363733pt;}
.y18a{bottom:484.678667pt;}
.yfc{bottom:490.462533pt;}
.y8b{bottom:490.475867pt;}
.y59{bottom:490.595867pt;}
.y148{bottom:492.678667pt;}
.y16{bottom:496.363733pt;}
.ybc{bottom:497.114533pt;}
.y189{bottom:498.012000pt;}
.y147{bottom:506.012000pt;}
.yd7{bottom:506.461200pt;}
.yfb{bottom:506.462533pt;}
.y58{bottom:506.595867pt;}
.y188{bottom:511.345333pt;}
.y15{bottom:512.363733pt;}
.ybb{bottom:513.114533pt;}
.y146{bottom:519.345333pt;}
.y8a{bottom:522.115867pt;}
.yd6{bottom:522.461200pt;}
.yfa{bottom:522.462533pt;}
.y57{bottom:522.595867pt;}
.y187{bottom:524.678667pt;}
.y14{bottom:528.363733pt;}
.yba{bottom:529.114533pt;}
.y145{bottom:532.678667pt;}
.y186{bottom:538.012000pt;}
.y89{bottom:538.115867pt;}
.yd5{bottom:538.461200pt;}
.yf9{bottom:538.462533pt;}
.y56{bottom:538.595867pt;}
.y13{bottom:544.363733pt;}
.yb9{bottom:545.114533pt;}
.y144{bottom:546.012000pt;}
.y185{bottom:551.345333pt;}
.yd4{bottom:554.461200pt;}
.yf8{bottom:554.462533pt;}
.y55{bottom:554.595867pt;}
.y143{bottom:559.345333pt;}
.yb8{bottom:561.114533pt;}
.y184{bottom:564.678667pt;}
.y88{bottom:569.995867pt;}
.y123{bottom:570.102533pt;}
.yd3{bottom:570.461200pt;}
.y45{bottom:570.462533pt;}
.y54{bottom:570.595867pt;}
.y142{bottom:572.678667pt;}
.yb7{bottom:577.114533pt;}
.y183{bottom:578.012000pt;}
.y12{bottom:584.504267pt;}
.y141{bottom:586.012000pt;}
.yd2{bottom:586.461200pt;}
.y44{bottom:586.462533pt;}
.y53{bottom:586.595867pt;}
.y182{bottom:591.345333pt;}
.yb6{bottom:593.114533pt;}
.y11{bottom:595.571600pt;}
.y140{bottom:599.345333pt;}
.yd1{bottom:602.461200pt;}
.y43{bottom:602.462533pt;}
.y52{bottom:602.595867pt;}
.y181{bottom:604.678667pt;}
.yb5{bottom:609.114533pt;}
.y13f{bottom:612.678667pt;}
.y180{bottom:618.012000pt;}
.yd0{bottom:618.461200pt;}
.y42{bottom:618.462533pt;}
.y87{bottom:618.475867pt;}
.y51{bottom:618.595867pt;}
.y10{bottom:623.763200pt;}
.yb4{bottom:625.114533pt;}
.y13e{bottom:626.012000pt;}
.y17f{bottom:631.345333pt;}
.ycf{bottom:634.461200pt;}
.y41{bottom:634.462533pt;}
.y86{bottom:634.475867pt;}
.y50{bottom:634.595867pt;}
.y13d{bottom:639.345333pt;}
.yf{bottom:640.585600pt;}
.yb3{bottom:641.114533pt;}
.y17e{bottom:644.678667pt;}
.ye{bottom:647.763200pt;}
.yce{bottom:650.461200pt;}
.y40{bottom:650.462533pt;}
.y85{bottom:650.475867pt;}
.y4f{bottom:650.595867pt;}
.y13c{bottom:652.678667pt;}
.yb2{bottom:657.114533pt;}
.y17d{bottom:658.012000pt;}
.yd{bottom:664.585600pt;}
.y13b{bottom:666.012000pt;}
.ycd{bottom:666.461200pt;}
.y3f{bottom:666.462533pt;}
.y84{bottom:666.475867pt;}
.y4e{bottom:666.595867pt;}
.y17c{bottom:671.345333pt;}
.yc{bottom:671.763200pt;}
.y13a{bottom:679.345333pt;}
.ycc{bottom:682.461200pt;}
.y3e{bottom:682.462533pt;}
.y83{bottom:682.475867pt;}
.y4d{bottom:682.595867pt;}
.y17b{bottom:684.678667pt;}
.yb1{bottom:688.083867pt;}
.yb{bottom:688.585733pt;}
.y139{bottom:692.678667pt;}
.ya{bottom:695.763200pt;}
.y17a{bottom:698.012000pt;}
.y47{bottom:698.102533pt;}
.ycb{bottom:698.461200pt;}
.y3d{bottom:698.462533pt;}
.y82{bottom:698.475867pt;}
.y4c{bottom:698.595867pt;}
.yb0{bottom:701.955867pt;}
.y138{bottom:706.012000pt;}
.y179{bottom:711.345333pt;}
.y9{bottom:712.585733pt;}
.yca{bottom:714.461200pt;}
.y3c{bottom:714.462533pt;}
.y81{bottom:714.475867pt;}
.y4b{bottom:714.595867pt;}
.yaf{bottom:714.729200pt;}
.y137{bottom:719.345333pt;}
.y178{bottom:724.678667pt;}
.y46{bottom:729.982533pt;}
.yae{bottom:730.369200pt;}
.yc9{bottom:730.461200pt;}
.y3b{bottom:730.462533pt;}
.y80{bottom:730.475867pt;}
.y136{bottom:732.678667pt;}
.y177{bottom:738.012000pt;}
.y8{bottom:738.121067pt;}
.y135{bottom:746.012000pt;}
.y4a{bottom:746.235867pt;}
.yc8{bottom:746.461200pt;}
.y3a{bottom:746.462533pt;}
.y7f{bottom:746.475867pt;}
.y176{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y134{bottom:759.345333pt;}
.yad{bottom:762.235867pt;}
.yc7{bottom:762.461200pt;}
.y39{bottom:762.462533pt;}
.y7e{bottom:762.475867pt;}
.y175{bottom:764.678667pt;}
.y133{bottom:772.678667pt;}
.y174{bottom:778.012000pt;}
.yac{bottom:778.235867pt;}
.yc6{bottom:778.461200pt;}
.y38{bottom:778.462533pt;}
.y7d{bottom:778.475867pt;}
.y132{bottom:786.012000pt;}
.y173{bottom:791.345333pt;}
.yab{bottom:794.235867pt;}
.yc5{bottom:794.461200pt;}
.y37{bottom:794.462533pt;}
.y7c{bottom:794.475867pt;}
.y6{bottom:797.844667pt;}
.y131{bottom:799.345333pt;}
.y172{bottom:804.678667pt;}
.yaa{bottom:810.235867pt;}
.yc4{bottom:810.461200pt;}
.y36{bottom:810.462533pt;}
.y7b{bottom:810.475867pt;}
.y130{bottom:812.678667pt;}
.y171{bottom:818.012000pt;}
.y12f{bottom:826.012000pt;}
.yc3{bottom:826.461200pt;}
.y35{bottom:826.462533pt;}
.y7a{bottom:826.475867pt;}
.y5{bottom:830.254267pt;}
.y170{bottom:831.345333pt;}
.y12e{bottom:839.345333pt;}
.yc2{bottom:842.461200pt;}
.y34{bottom:842.462533pt;}
.y79{bottom:842.475867pt;}
.y16f{bottom:844.678667pt;}
.y12d{bottom:852.678667pt;}
.y16e{bottom:858.012000pt;}
.yc1{bottom:858.461200pt;}
.y33{bottom:858.462533pt;}
.y78{bottom:858.475867pt;}
.y4{bottom:862.663867pt;}
.y12c{bottom:866.012000pt;}
.y16d{bottom:871.345333pt;}
.yc0{bottom:874.461200pt;}
.y32{bottom:874.462533pt;}
.y77{bottom:874.475867pt;}
.y12b{bottom:879.345333pt;}
.y16c{bottom:884.678667pt;}
.ybf{bottom:890.461200pt;}
.y31{bottom:890.462533pt;}
.y76{bottom:890.475867pt;}
.y12a{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y16b{bottom:898.012000pt;}
.ybe{bottom:906.461200pt;}
.y30{bottom:906.462533pt;}
.y75{bottom:906.475867pt;}
.y16a{bottom:911.345333pt;}
.y129{bottom:922.102533pt;}
.ybd{bottom:922.461200pt;}
.y2f{bottom:922.462533pt;}
.y74{bottom:922.475867pt;}
.y169{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.ya6{bottom:1006.594400pt;}
.y49{bottom:1006.596800pt;}
.ya9{bottom:1006.598400pt;}
.yf7{bottom:1006.598533pt;}
.y168{bottom:1006.598667pt;}
.y121{bottom:1006.599200pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.h15{height:28.078125pt;}
.hf{height:29.121094pt;}
.h8{height:29.160156pt;}
.h11{height:31.062500pt;}
.h10{height:31.104167pt;}
.h16{height:37.354167pt;}
.h12{height:37.437500pt;}
.hb{height:38.828125pt;}
.hc{height:38.859942pt;}
.ha{height:38.880208pt;}
.h14{height:42.117188pt;}
.he{height:46.692708pt;}
.hd{height:46.796875pt;}
.h17{height:48.132708pt;}
.h18{height:48.236875pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h13{height:52.405245pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x18{left:89.329200pt;}
.x2b{left:90.708667pt;}
.x4{left:94.488133pt;}
.xd{left:98.271467pt;}
.x3{left:111.491467pt;}
.x7{left:117.165333pt;}
.x19{left:124.902533pt;}
.x1a{left:133.062533pt;}
.x17{left:134.782533pt;}
.x5{left:170.078667pt;}
.x28{left:176.778133pt;}
.x6{left:189.223467pt;}
.x1c{left:198.831467pt;}
.x1d{left:205.874000pt;}
.x1b{left:207.915867pt;}
.xb{left:404.481333pt;}
.xe{left:406.311467pt;}
.x1f{left:408.698133pt;}
.x24{left:422.821467pt;}
.x13{left:425.214933pt;}
.x8{left:427.085333pt;}
.x2c{left:428.991333pt;}
.x10{left:436.564800pt;}
.x20{left:444.271467pt;}
.x22{left:446.271467pt;}
.x2a{left:447.874133pt;}
.x21{left:452.431467pt;}
.x1e{left:454.151467pt;}
.x15{left:455.454933pt;}
.x9{left:457.325333pt;}
.xf{left:466.938133pt;}
.x25{left:516.529467pt;}
.x23{left:523.951467pt;}
.x29{left:529.875867pt;}
.x14{left:544.828267pt;}
.x12{left:589.770933pt;}
.x2{left:616.324800pt;}
.x26{left:641.535467pt;}
.x11{left:647.466133pt;}
.x27{left:661.216133pt;}
.x16{left:666.356800pt;}
}




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