
    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_221489e2bc4c4ff23c8673e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_851af970b04084376484d6de.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_dce94a461565565554654857.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740723;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_ad50410284dda806fea1e64a.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_784ba698c8dbf9fe5b577c4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740234;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_3ab7b8da7c5fe6ed09f1d9a6.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_9b3e1d789afafd7204f0f0ef.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_b5a055b814a59a8f2ec83b49.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_36fe54d619e11a0987001361.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_976af3d2dfad71f84807f9f4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ff03a65f5fc5c6befe661ae7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:22.610400px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls60{letter-spacing:-1.776000px;}
.ls9{letter-spacing:-0.780000px;}
.ls35{letter-spacing:-0.660000px;}
.ls32{letter-spacing:-0.600000px;}
.ls34{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.360000px;}
.ls5d{letter-spacing:-0.288000px;}
.ls69{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.225000px;}
.ls50{letter-spacing:-0.192000px;}
.ls7a{letter-spacing:-0.180000px;}
.ls7b{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.120000px;}
.ls5b{letter-spacing:-0.096000px;}
.lsb{letter-spacing:-0.060000px;}
.ls4f{letter-spacing:-0.048000px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003540px;}
.ls0{letter-spacing:0.005676px;}
.ls5f{letter-spacing:0.015600px;}
.ls57{letter-spacing:0.048000px;}
.ls4{letter-spacing:0.060000px;}
.ls72{letter-spacing:0.096000px;}
.lsf{letter-spacing:0.120000px;}
.ls39{letter-spacing:0.180000px;}
.ls4d{letter-spacing:0.192000px;}
.ls46{letter-spacing:0.238800px;}
.ls10{letter-spacing:0.240000px;}
.ls48{letter-spacing:0.279840px;}
.ls5c{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.ls74{letter-spacing:0.336000px;}
.ls1f{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.384000px;}
.ls49{letter-spacing:0.384780px;}
.ls26{letter-spacing:0.420000px;}
.ls76{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.480000px;}
.ls7f{letter-spacing:0.528000px;}
.ls36{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.600000px;}
.ls54{letter-spacing:0.624000px;}
.ls28{letter-spacing:0.660000px;}
.ls58{letter-spacing:0.672000px;}
.ls21{letter-spacing:0.720000px;}
.ls8b{letter-spacing:0.768000px;}
.ls3c{letter-spacing:0.780000px;}
.ls4e{letter-spacing:0.816000px;}
.ls1e{letter-spacing:0.840000px;}
.ls78{letter-spacing:0.864000px;}
.ls13{letter-spacing:0.873000px;}
.ls4b{letter-spacing:0.874500px;}
.ls2c{letter-spacing:0.900000px;}
.ls55{letter-spacing:0.912000px;}
.ls16{letter-spacing:0.960000px;}
.ls81{letter-spacing:1.008000px;}
.ls2a{letter-spacing:1.020000px;}
.ls52{letter-spacing:1.056000px;}
.ls11{letter-spacing:1.080000px;}
.ls53{letter-spacing:1.104000px;}
.ls15{letter-spacing:1.140000px;}
.ls19{letter-spacing:1.200000px;}
.ls4a{letter-spacing:1.224300px;}
.ls75{letter-spacing:1.248000px;}
.ls6d{letter-spacing:1.260000px;}
.ls1c{letter-spacing:1.320000px;}
.ls85{letter-spacing:1.344000px;}
.ls2e{letter-spacing:1.380000px;}
.ls79{letter-spacing:1.392000px;}
.ls2f{letter-spacing:1.440000px;}
.ls56{letter-spacing:1.488000px;}
.ls12{letter-spacing:1.500000px;}
.ls89{letter-spacing:1.536000px;}
.ls1d{letter-spacing:1.560000px;}
.ls5{letter-spacing:1.620000px;}
.ls51{letter-spacing:1.680000px;}
.ls59{letter-spacing:1.728000px;}
.ls14{letter-spacing:1.740000px;}
.ls88{letter-spacing:1.776000px;}
.ls2{letter-spacing:1.800000px;}
.ls77{letter-spacing:1.824000px;}
.ls7{letter-spacing:1.860000px;}
.ls7e{letter-spacing:1.872000px;}
.ls1b{letter-spacing:1.920000px;}
.ls5a{letter-spacing:1.968000px;}
.ls17{letter-spacing:1.980000px;}
.ls37{letter-spacing:2.040000px;}
.ls2d{letter-spacing:2.100000px;}
.ls38{letter-spacing:2.160000px;}
.ls70{letter-spacing:2.208000px;}
.ls3a{letter-spacing:2.220000px;}
.ls73{letter-spacing:2.256000px;}
.ls31{letter-spacing:2.280000px;}
.ls8c{letter-spacing:2.304000px;}
.lse{letter-spacing:2.340000px;}
.ls5e{letter-spacing:2.400000px;}
.ls6c{letter-spacing:2.460000px;}
.ls86{letter-spacing:2.496000px;}
.ls27{letter-spacing:2.520000px;}
.ls23{letter-spacing:2.580000px;}
.ls43{letter-spacing:2.640000px;}
.ls7d{letter-spacing:2.688000px;}
.ls6a{letter-spacing:2.700000px;}
.ls3b{letter-spacing:2.760000px;}
.ls6b{letter-spacing:2.784000px;}
.ls25{letter-spacing:2.820000px;}
.ls71{letter-spacing:2.832000px;}
.ls29{letter-spacing:2.880000px;}
.ls83{letter-spacing:2.928000px;}
.ls44{letter-spacing:2.940000px;}
.ls8a{letter-spacing:2.976000px;}
.ls3e{letter-spacing:3.000000px;}
.ls82{letter-spacing:3.024000px;}
.ls30{letter-spacing:3.060000px;}
.ls2b{letter-spacing:3.120000px;}
.ls20{letter-spacing:3.180000px;}
.ls6f{letter-spacing:3.216000px;}
.ls6{letter-spacing:3.240000px;}
.ls1a{letter-spacing:3.300000px;}
.ls8d{letter-spacing:3.312000px;}
.ls67{letter-spacing:3.360000px;}
.ls6e{letter-spacing:3.420000px;}
.ls68{letter-spacing:3.480000px;}
.ls7c{letter-spacing:3.504000px;}
.ls65{letter-spacing:3.540000px;}
.lsd{letter-spacing:3.600000px;}
.ls42{letter-spacing:3.660000px;}
.ls24{letter-spacing:3.780000px;}
.ls64{letter-spacing:3.840000px;}
.ls66{letter-spacing:3.900000px;}
.ls40{letter-spacing:3.960000px;}
.ls47{letter-spacing:4.200000px;}
.ls84{letter-spacing:4.368000px;}
.ls61{letter-spacing:4.440000px;}
.ls41{letter-spacing:4.980000px;}
.ls3f{letter-spacing:5.100000px;}
.ls62{letter-spacing:5.280000px;}
.ls63{letter-spacing:5.400000px;}
.ls87{letter-spacing:5.616000px;}
.ls3d{letter-spacing:5.640000px;}
.ls80{letter-spacing:5.712000px;}
.ls45{letter-spacing:5.880000px;}
.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;}
}
.ws1{word-spacing:-17.514000px;}
.ws29{word-spacing:-16.680000px;}
.ws57{word-spacing:-16.620000px;}
.ws91{word-spacing:-16.368000px;}
.wsd{word-spacing:-15.660000px;}
.wse{word-spacing:-15.480000px;}
.ws2a{word-spacing:-15.420000px;}
.ws6a{word-spacing:-15.360000px;}
.ws77{word-spacing:-15.216000px;}
.ws69{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.400000px;}
.ws78{word-spacing:-13.824000px;}
.ws4{word-spacing:-13.344000px;}
.ws79{word-spacing:-13.248000px;}
.ws94{word-spacing:-12.720000px;}
.ws92{word-spacing:-12.672000px;}
.ws95{word-spacing:-12.624000px;}
.ws96{word-spacing:-12.480000px;}
.ws90{word-spacing:-12.336000px;}
.ws93{word-spacing:-12.288000px;}
.ws3{word-spacing:-12.285000px;}
.ws7a{word-spacing:-12.240000px;}
.ws58{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.ws27{word-spacing:-9.969300px;}
.ws28{word-spacing:-9.619500px;}
.ws26{word-spacing:-9.129780px;}
.ws25{word-spacing:-9.024840px;}
.ws2{word-spacing:-8.745000px;}
.ws9c{word-spacing:-4.368000px;}
.ws6d{word-spacing:-3.900000px;}
.ws97{word-spacing:-3.504000px;}
.ws6{word-spacing:-2.886000px;}
.ws88{word-spacing:-2.640000px;}
.ws23{word-spacing:-2.220000px;}
.ws1e{word-spacing:-2.160000px;}
.ws7c{word-spacing:-2.100000px;}
.ws9d{word-spacing:-1.728000px;}
.ws98{word-spacing:-1.440000px;}
.ws67{word-spacing:-1.080000px;}
.ws15{word-spacing:-0.960000px;}
.ws41{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.840000px;}
.wsa2{word-spacing:-0.672000px;}
.ws87{word-spacing:-0.624000px;}
.ws99{word-spacing:-0.528000px;}
.ws8a{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.420000px;}
.ws86{word-spacing:-0.384000px;}
.ws6c{word-spacing:-0.360000px;}
.ws89{word-spacing:-0.336000px;}
.ws7d{word-spacing:-0.300000px;}
.ws8f{word-spacing:-0.288000px;}
.ws2b{word-spacing:-0.240000px;}
.ws3f{word-spacing:-0.192000px;}
.ws1d{word-spacing:-0.120000px;}
.ws2c{word-spacing:-0.060000px;}
.ws84{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws8b{word-spacing:0.048000px;}
.wsf{word-spacing:0.060000px;}
.ws9b{word-spacing:0.144000px;}
.ws72{word-spacing:0.180000px;}
.wsb{word-spacing:0.225000px;}
.ws6f{word-spacing:0.240000px;}
.ws4b{word-spacing:0.288000px;}
.ws6b{word-spacing:0.420000px;}
.ws31{word-spacing:0.480000px;}
.ws52{word-spacing:0.576000px;}
.ws10{word-spacing:0.600000px;}
.ws6e{word-spacing:0.672000px;}
.ws47{word-spacing:0.720000px;}
.ws12{word-spacing:0.780000px;}
.ws4a{word-spacing:0.816000px;}
.ws21{word-spacing:0.840000px;}
.ws76{word-spacing:1.008000px;}
.ws8c{word-spacing:1.056000px;}
.ws7b{word-spacing:1.140000px;}
.ws42{word-spacing:1.152000px;}
.ws56{word-spacing:1.248000px;}
.ws16{word-spacing:1.260000px;}
.ws49{word-spacing:1.296000px;}
.ws54{word-spacing:1.440000px;}
.ws51{word-spacing:1.536000px;}
.ws11{word-spacing:1.560000px;}
.ws24{word-spacing:1.584000px;}
.ws55{word-spacing:1.632000px;}
.ws40{word-spacing:1.776000px;}
.ws20{word-spacing:1.800000px;}
.wsa0{word-spacing:1.824000px;}
.ws34{word-spacing:1.860000px;}
.ws4e{word-spacing:1.920000px;}
.ws85{word-spacing:1.968000px;}
.ws22{word-spacing:1.980000px;}
.ws8e{word-spacing:2.064000px;}
.ws38{word-spacing:2.100000px;}
.ws4c{word-spacing:2.160000px;}
.ws68{word-spacing:2.280000px;}
.ws71{word-spacing:2.340000px;}
.ws3e{word-spacing:2.352000px;}
.ws65{word-spacing:2.400000px;}
.ws4d{word-spacing:2.448000px;}
.ws32{word-spacing:2.460000px;}
.ws36{word-spacing:2.520000px;}
.wsa{word-spacing:2.580000px;}
.ws50{word-spacing:2.592000px;}
.ws74{word-spacing:2.640000px;}
.ws83{word-spacing:2.688000px;}
.ws2f{word-spacing:2.700000px;}
.ws30{word-spacing:2.760000px;}
.ws75{word-spacing:2.784000px;}
.ws66{word-spacing:2.820000px;}
.ws1f{word-spacing:2.880000px;}
.ws48{word-spacing:2.928000px;}
.ws73{word-spacing:2.976000px;}
.ws33{word-spacing:3.000000px;}
.ws53{word-spacing:3.024000px;}
.ws82{word-spacing:3.072000px;}
.ws9e{word-spacing:3.216000px;}
.ws17{word-spacing:3.240000px;}
.ws3a{word-spacing:3.360000px;}
.wsa1{word-spacing:3.408000px;}
.ws9a{word-spacing:3.456000px;}
.ws8d{word-spacing:3.552000px;}
.ws4f{word-spacing:3.600000px;}
.ws3d{word-spacing:3.648000px;}
.ws39{word-spacing:3.660000px;}
.ws9f{word-spacing:3.744000px;}
.ws81{word-spacing:3.780000px;}
.ws13{word-spacing:3.840000px;}
.ws2e{word-spacing:3.900000px;}
.ws3c{word-spacing:3.936000px;}
.ws1c{word-spacing:3.960000px;}
.ws3b{word-spacing:3.984000px;}
.ws1a{word-spacing:4.020000px;}
.ws19{word-spacing:4.080000px;}
.ws80{word-spacing:4.200000px;}
.ws2d{word-spacing:4.260000px;}
.ws70{word-spacing:4.320000px;}
.ws8{word-spacing:4.380000px;}
.ws14{word-spacing:4.740000px;}
.ws35{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.ws7{word-spacing:4.980000px;}
.ws37{word-spacing:5.340000px;}
.ws7e{word-spacing:5.460000px;}
.ws7f{word-spacing:5.520000px;}
.ws5e{word-spacing:182.112000px;}
.ws5c{word-spacing:186.576000px;}
.ws5d{word-spacing:194.112000px;}
.ws64{word-spacing:199.152000px;}
.ws63{word-spacing:211.152000px;}
.ws5b{word-spacing:217.536000px;}
.ws60{word-spacing:239.760000px;}
.ws59{word-spacing:240.480000px;}
.ws5a{word-spacing:327.984000px;}
.ws61{word-spacing:364.128000px;}
.ws62{word-spacing:382.176000px;}
.ws44{word-spacing:386.352000px;}
.ws46{word-spacing:394.416000px;}
.ws45{word-spacing:437.040000px;}
.ws43{word-spacing:474.960000px;}
.ws5f{word-spacing:743.472000px;}
._9{margin-left:-2898.096000px;}
._a{margin-left:-2874.288000px;}
._5{margin-left:-6.780000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._3{width:1.005000px;}
._7{width:3.000000px;}
._44{width:4.020000px;}
._6{width:5.040000px;}
._45{width:6.180000px;}
._8{width:7.200000px;}
._11{width:71.040000px;}
._d{width:73.152000px;}
._20{width:98.784000px;}
._1f{width:112.376400px;}
._c{width:115.776000px;}
._18{width:152.064000px;}
._21{width:159.936000px;}
._26{width:167.808000px;}
._19{width:185.136000px;}
._23{width:206.120400px;}
._13{width:212.400000px;}
._22{width:213.696000px;}
._31{width:223.112400px;}
._17{width:229.392000px;}
._2b{width:240.672000px;}
._e{width:246.384000px;}
._30{width:247.920000px;}
._2e{width:250.656000px;}
._27{width:262.656000px;}
._16{width:264.096000px;}
._15{width:266.646000px;}
._b{width:269.040000px;}
._f{width:299.760000px;}
._2f{width:305.472000px;}
._1b{width:310.368000px;}
._29{width:317.184000px;}
._25{width:329.184000px;}
._28{width:334.656000px;}
._1e{width:338.880000px;}
._43{width:351.936000px;}
._32{width:359.328000px;}
._14{width:364.080000px;}
._1d{width:378.384000px;}
._33{width:381.408000px;}
._38{width:389.712000px;}
._42{width:395.712000px;}
._35{width:401.712000px;}
._1a{width:410.352000px;}
._37{width:419.712000px;}
._1c{width:421.008000px;}
._34{width:431.712000px;}
._41{width:453.416400px;}
._3a{width:474.768000px;}
._12{width:478.704000px;}
._3d{width:480.096000px;}
._36{width:482.784000px;}
._40{width:485.472000px;}
._39{width:488.112000px;}
._3e{width:490.752000px;}
._3f{width:493.440000px;}
._3b{width:496.080000px;}
._3c{width:506.736000px;}
._2c{width:567.360000px;}
._24{width:598.464000px;}
._2a{width:609.120000px;}
._10{width:634.704000px;}
._2d{width:725.096400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.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;}
.y2c{bottom:47.777250px;}
.y6b{bottom:83.141400px;}
.yc1{bottom:83.628600px;}
.y62{bottom:83.770350px;}
.y8e{bottom:84.062100px;}
.y148{bottom:84.074700px;}
.y144{bottom:84.724200px;}
.y14a{bottom:84.834600px;}
.y10f{bottom:85.929450px;}
.y29{bottom:88.026750px;}
.y12d{bottom:90.690300px;}
.y171{bottom:91.980150px;}
.yd4{bottom:92.345700px;}
.y121{bottom:92.457900px;}
.y1b1{bottom:95.263500px;}
.y6a{bottom:98.885400px;}
.y147{bottom:99.818700px;}
.y143{bottom:100.468200px;}
.y149{bottom:100.578600px;}
.yc0{bottom:101.628600px;}
.y10e{bottom:101.673450px;}
.y61{bottom:101.770350px;}
.y8d{bottom:102.062100px;}
.y28{bottom:103.023000px;}
.y170{bottom:106.980150px;}
.yd3{bottom:108.845700px;}
.y120{bottom:108.957900px;}
.y1b0{bottom:110.263500px;}
.y146{bottom:115.562700px;}
.y142{bottom:116.212200px;}
.y10d{bottom:117.417450px;}
.ybf{bottom:119.628600px;}
.y12c{bottom:119.694300px;}
.y60{bottom:119.770350px;}
.y8c{bottom:120.062100px;}
.y16f{bottom:121.980150px;}
.y11f{bottom:125.205900px;}
.y1af{bottom:125.263500px;}
.yd2{bottom:125.345700px;}
.y145{bottom:131.306700px;}
.y10c{bottom:133.161450px;}
.y12b{bottom:135.942300px;}
.ybe{bottom:137.628600px;}
.y5f{bottom:137.770350px;}
.y8b{bottom:138.062100px;}
.y1ae{bottom:140.263500px;}
.yf9{bottom:140.866350px;}
.y11e{bottom:141.705900px;}
.yd1{bottom:141.845700px;}
.y10b{bottom:148.905450px;}
.y12a{bottom:152.190300px;}
.y16e{bottom:155.095350px;}
.y1ad{bottom:155.263500px;}
.ybd{bottom:155.628600px;}
.y5e{bottom:155.770350px;}
.y8a{bottom:156.062100px;}
.yf8{bottom:157.366350px;}
.y11d{bottom:157.953900px;}
.yd0{bottom:158.345700px;}
.y10a{bottom:164.649450px;}
.y129{bottom:168.438300px;}
.y1ac{bottom:170.263500px;}
.y25{bottom:172.849200px;}
.ybc{bottom:173.628600px;}
.y5d{bottom:173.770350px;}
.yf7{bottom:173.866350px;}
.y89{bottom:174.062100px;}
.y11c{bottom:174.453900px;}
.ycf{bottom:174.593700px;}
.y109{bottom:180.393450px;}
.y1ab{bottom:185.263500px;}
.yf6{bottom:190.366350px;}
.y11b{bottom:190.701900px;}
.y24{bottom:190.849200px;}
.yce{bottom:191.093700px;}
.ybb{bottom:191.628600px;}
.y5c{bottom:191.770350px;}
.y88{bottom:192.062100px;}
.y108{bottom:196.137450px;}
.y128{bottom:199.950150px;}
.y1aa{bottom:200.263500px;}
.yf5{bottom:206.866350px;}
.y11a{bottom:207.201900px;}
.ycd{bottom:207.593700px;}
.y23{bottom:208.849200px;}
.yba{bottom:209.628600px;}
.y16d{bottom:209.635350px;}
.y5b{bottom:209.770350px;}
.y87{bottom:210.062100px;}
.y107{bottom:211.881450px;}
.y1a9{bottom:215.263500px;}
.yf4{bottom:223.366350px;}
.ycc{bottom:223.841700px;}
.y22{bottom:226.849200px;}
.y16c{bottom:227.230350px;}
.yb9{bottom:227.628600px;}
.y5a{bottom:227.770350px;}
.y86{bottom:228.062100px;}
.y1a8{bottom:230.263500px;}
.y127{bottom:234.850350px;}
.y119{bottom:238.713900px;}
.ycb{bottom:240.341700px;}
.yf3{bottom:243.874350px;}
.y27{bottom:244.849200px;}
.y1a7{bottom:245.263500px;}
.yb8{bottom:245.628600px;}
.y59{bottom:245.770350px;}
.y85{bottom:246.062100px;}
.y126{bottom:254.350350px;}
.yca{bottom:256.589700px;}
.y1a6{bottom:260.263500px;}
.yf2{bottom:260.374350px;}
.y21{bottom:262.446300px;}
.y26{bottom:262.849200px;}
.yb7{bottom:263.628600px;}
.y16b{bottom:263.635350px;}
.y58{bottom:263.770350px;}
.y84{bottom:264.062100px;}
.yc9{bottom:273.089700px;}
.y118{bottom:273.609000px;}
.y1a5{bottom:275.263500px;}
.yf1{bottom:276.874350px;}
.y16a{bottom:281.230350px;}
.yb6{bottom:281.628600px;}
.y57{bottom:281.770350px;}
.y83{bottom:282.062100px;}
.yc8{bottom:289.589700px;}
.y1a4{bottom:290.263500px;}
.y117{bottom:293.109000px;}
.yf0{bottom:293.374350px;}
.yb5{bottom:299.628600px;}
.y56{bottom:299.770350px;}
.y82{bottom:300.062100px;}
.y140{bottom:303.399300px;}
.y1a3{bottom:305.263500px;}
.yc7{bottom:305.837700px;}
.yef{bottom:309.874350px;}
.yb4{bottom:317.628600px;}
.y169{bottom:317.635350px;}
.y55{bottom:317.770350px;}
.y81{bottom:318.062100px;}
.y1a2{bottom:320.263500px;}
.yc6{bottom:322.337700px;}
.yee{bottom:330.382350px;}
.y13f{bottom:332.403300px;}
.y1a1{bottom:335.263500px;}
.yb3{bottom:335.628600px;}
.y168{bottom:335.635350px;}
.y54{bottom:335.770350px;}
.y80{bottom:336.062100px;}
.y116{bottom:337.634100px;}
.yc5{bottom:338.837700px;}
.y20{bottom:341.614200px;}
.yed{bottom:346.882350px;}
.y13e{bottom:348.651300px;}
.y1a0{bottom:350.263500px;}
.y167{bottom:353.230350px;}
.y115{bottom:353.378100px;}
.yb2{bottom:353.628600px;}
.y53{bottom:353.770350px;}
.y7f{bottom:354.062100px;}
.yec{bottom:363.382350px;}
.y13d{bottom:364.899300px;}
.y19f{bottom:365.263500px;}
.y1f{bottom:368.959200px;}
.y114{bottom:369.122100px;}
.yb1{bottom:371.628600px;}
.y52{bottom:371.770350px;}
.y7e{bottom:372.062100px;}
.yc4{bottom:379.229700px;}
.yeb{bottom:379.882350px;}
.y1df{bottom:380.263500px;}
.y19e{bottom:380.268150px;}
.y13c{bottom:381.147300px;}
.y113{bottom:384.866100px;}
.y1e{bottom:386.959200px;}
.y166{bottom:389.635350px;}
.yb0{bottom:389.642100px;}
.y51{bottom:389.770350px;}
.y1de{bottom:395.263500px;}
.y19d{bottom:395.268150px;}
.yea{bottom:396.382350px;}
.y13b{bottom:397.395300px;}
.y112{bottom:400.610100px;}
.y1d{bottom:404.959200px;}
.yc3{bottom:405.242850px;}
.y165{bottom:407.230350px;}
.yaf{bottom:407.642100px;}
.y7d{bottom:407.657100px;}
.y50{bottom:407.770350px;}
.y1dd{bottom:410.263500px;}
.y19c{bottom:410.268150px;}
.y13a{bottom:413.643300px;}
.y111{bottom:416.354100px;}
.ye9{bottom:416.890350px;}
.y14d{bottom:420.216150px;}
.y1c{bottom:422.959200px;}
.yc2{bottom:424.742850px;}
.y1dc{bottom:425.263500px;}
.y19b{bottom:425.268150px;}
.yae{bottom:425.642100px;}
.y4f{bottom:425.770350px;}
.y139{bottom:429.891300px;}
.y110{bottom:432.098100px;}
.ye8{bottom:433.390350px;}
.y14c{bottom:435.960150px;}
.y1db{bottom:440.263500px;}
.y19a{bottom:440.268150px;}
.y1b{bottom:440.959200px;}
.y164{bottom:443.635350px;}
.yad{bottom:443.642100px;}
.y4e{bottom:443.770350px;}
.y7c{bottom:443.912100px;}
.y138{bottom:446.139300px;}
.ye7{bottom:449.890350px;}
.y1da{bottom:455.263500px;}
.y199{bottom:455.268150px;}
.y1a{bottom:458.959200px;}
.y163{bottom:461.635350px;}
.yac{bottom:461.642100px;}
.y4d{bottom:461.770350px;}
.y7b{bottom:461.912100px;}
.y137{bottom:462.387300px;}
.ye6{bottom:466.390350px;}
.y1d9{bottom:470.263500px;}
.y198{bottom:470.268150px;}
.yd8{bottom:470.791200px;}
.y19{bottom:476.959200px;}
.y136{bottom:478.635300px;}
.y162{bottom:479.635350px;}
.yab{bottom:479.642100px;}
.y4c{bottom:479.770350px;}
.y7a{bottom:479.912100px;}
.y1d8{bottom:485.263500px;}
.y197{bottom:485.268150px;}
.yd7{bottom:486.535200px;}
.ye5{bottom:486.898350px;}
.y135{bottom:494.883300px;}
.y18{bottom:494.959200px;}
.y161{bottom:497.635350px;}
.yaa{bottom:497.642100px;}
.y4b{bottom:497.770350px;}
.y79{bottom:497.912100px;}
.y1d7{bottom:500.263500px;}
.y196{bottom:500.268150px;}
.yd6{bottom:502.279200px;}
.ye4{bottom:503.398350px;}
.y134{bottom:511.131300px;}
.y17{bottom:512.959200px;}
.y1d6{bottom:515.263500px;}
.y195{bottom:515.268150px;}
.y160{bottom:515.635350px;}
.ya9{bottom:515.642100px;}
.y4a{bottom:515.770350px;}
.y78{bottom:515.912100px;}
.yd5{bottom:518.023200px;}
.ye3{bottom:519.898350px;}
.y133{bottom:527.379300px;}
.y1d5{bottom:530.263500px;}
.y194{bottom:530.268150px;}
.y16{bottom:530.959200px;}
.y15f{bottom:533.635350px;}
.ya8{bottom:533.642100px;}
.y49{bottom:533.770350px;}
.y77{bottom:533.920350px;}
.ye2{bottom:536.398350px;}
.y132{bottom:543.627300px;}
.y1d4{bottom:545.263500px;}
.y193{bottom:545.268150px;}
.y15{bottom:548.959200px;}
.y15e{bottom:551.635350px;}
.ya7{bottom:551.642100px;}
.y48{bottom:551.770350px;}
.y76{bottom:551.920350px;}
.ye1{bottom:556.906350px;}
.y1d3{bottom:560.263500px;}
.y192{bottom:560.268150px;}
.y14{bottom:566.959200px;}
.y15d{bottom:569.230350px;}
.ya6{bottom:569.642100px;}
.y47{bottom:569.770350px;}
.y75{bottom:569.920350px;}
.y131{bottom:572.638950px;}
.ye0{bottom:573.406350px;}
.y1d2{bottom:575.263500px;}
.y191{bottom:575.268150px;}
.y6c{bottom:576.373800px;}
.y13{bottom:584.959200px;}
.ya5{bottom:587.642100px;}
.y46{bottom:587.770350px;}
.y74{bottom:587.920350px;}
.ydf{bottom:589.906350px;}
.y1d1{bottom:590.263500px;}
.y190{bottom:590.268150px;}
.y130{bottom:601.642950px;}
.y12{bottom:602.959200px;}
.y1d0{bottom:605.263500px;}
.y18f{bottom:605.268150px;}
.y15c{bottom:605.635350px;}
.ya4{bottom:605.642100px;}
.y45{bottom:605.770350px;}
.y73{bottom:605.920350px;}
.yde{bottom:606.406350px;}
.y1cf{bottom:620.263500px;}
.y18e{bottom:620.268150px;}
.y15b{bottom:623.635350px;}
.ya3{bottom:623.642100px;}
.y44{bottom:623.770350px;}
.y72{bottom:623.920350px;}
.y12f{bottom:634.034250px;}
.y1ce{bottom:635.263500px;}
.y18d{bottom:635.268150px;}
.ydd{bottom:639.670350px;}
.y15a{bottom:641.635350px;}
.ya2{bottom:641.642100px;}
.y43{bottom:641.770350px;}
.y71{bottom:641.920350px;}
.y11{bottom:648.117300px;}
.y1cd{bottom:650.263500px;}
.y18c{bottom:650.268150px;}
.y12e{bottom:653.534250px;}
.y159{bottom:659.635350px;}
.ya1{bottom:659.642100px;}
.y42{bottom:659.770350px;}
.y70{bottom:659.920350px;}
.y10{bottom:660.568050px;}
.y1cc{bottom:665.263500px;}
.y18b{bottom:665.268150px;}
.ydc{bottom:672.934350px;}
.y158{bottom:677.635350px;}
.ya0{bottom:677.642100px;}
.y41{bottom:677.770350px;}
.y6f{bottom:677.920350px;}
.y1cb{bottom:680.263500px;}
.y18a{bottom:680.268150px;}
.yf{bottom:692.283600px;}
.y1ca{bottom:695.263500px;}
.y189{bottom:695.268150px;}
.y125{bottom:695.635350px;}
.y9f{bottom:695.642100px;}
.y40{bottom:695.770350px;}
.y69{bottom:695.920350px;}
.ydb{bottom:707.451450px;}
.y1c9{bottom:710.263500px;}
.y188{bottom:710.268150px;}
.ye{bottom:711.208950px;}
.y6e{bottom:713.515350px;}
.y157{bottom:713.635350px;}
.y9e{bottom:713.642100px;}
.y3f{bottom:713.770350px;}
.y68{bottom:713.920350px;}
.yd{bottom:719.283600px;}
.y1c8{bottom:725.263500px;}
.y187{bottom:725.268150px;}
.yda{bottom:726.951450px;}
.y124{bottom:731.230350px;}
.y9d{bottom:731.642100px;}
.y3e{bottom:731.770350px;}
.y67{bottom:731.920350px;}
.yc{bottom:732.783600px;}
.y1c7{bottom:740.263500px;}
.y186{bottom:740.268150px;}
.yb{bottom:746.283600px;}
.y66{bottom:749.515350px;}
.y9c{bottom:749.642100px;}
.y3d{bottom:749.770350px;}
.y1c6{bottom:755.263500px;}
.y185{bottom:755.268150px;}
.ya{bottom:765.208950px;}
.y156{bottom:767.635350px;}
.y9b{bottom:767.642100px;}
.y3c{bottom:767.770350px;}
.y1c5{bottom:770.263500px;}
.y184{bottom:770.268150px;}
.y105{bottom:782.839200px;}
.y1c4{bottom:785.263500px;}
.y183{bottom:785.268150px;}
.y65{bottom:785.365350px;}
.y155{bottom:785.635350px;}
.y9a{bottom:785.642100px;}
.y3b{bottom:785.770350px;}
.y9{bottom:793.936050px;}
.y104{bottom:799.339200px;}
.y1c3{bottom:800.263500px;}
.y182{bottom:800.268150px;}
.y154{bottom:803.635350px;}
.y99{bottom:803.642100px;}
.y3a{bottom:803.770350px;}
.y8{bottom:814.930800px;}
.y1c2{bottom:815.263500px;}
.y181{bottom:815.268150px;}
.y103{bottom:819.847200px;}
.y64{bottom:821.230350px;}
.y153{bottom:821.635350px;}
.y98{bottom:821.642100px;}
.y39{bottom:821.770350px;}
.y1c1{bottom:830.263500px;}
.y180{bottom:830.268150px;}
.y102{bottom:836.347200px;}
.y152{bottom:839.635350px;}
.y97{bottom:839.642100px;}
.y38{bottom:839.770350px;}
.y1c0{bottom:845.263500px;}
.y17f{bottom:845.268150px;}
.y101{bottom:852.847200px;}
.y151{bottom:857.635350px;}
.y96{bottom:857.642100px;}
.y37{bottom:857.770350px;}
.y1bf{bottom:860.263500px;}
.y17e{bottom:860.268150px;}
.y7{bottom:861.082800px;}
.y100{bottom:873.355200px;}
.y1be{bottom:875.263500px;}
.y17d{bottom:875.268150px;}
.y150{bottom:875.635350px;}
.y95{bottom:875.642100px;}
.y36{bottom:875.770350px;}
.yff{bottom:889.855200px;}
.y1bd{bottom:890.263500px;}
.y17c{bottom:890.268150px;}
.y94{bottom:893.642100px;}
.y35{bottom:893.770350px;}
.y6{bottom:897.543600px;}
.y1bc{bottom:905.263500px;}
.y17b{bottom:905.268150px;}
.yfe{bottom:906.355200px;}
.y14f{bottom:911.230350px;}
.y93{bottom:911.642100px;}
.y34{bottom:911.770350px;}
.y1bb{bottom:920.263500px;}
.y17a{bottom:920.268150px;}
.yfd{bottom:926.863200px;}
.y92{bottom:929.642100px;}
.y33{bottom:929.770350px;}
.y5{bottom:934.004400px;}
.y1ba{bottom:935.263500px;}
.y179{bottom:935.268150px;}
.yfc{bottom:943.363200px;}
.y91{bottom:947.642100px;}
.y32{bottom:947.770350px;}
.y1b9{bottom:950.263500px;}
.y178{bottom:950.268150px;}
.y1b8{bottom:965.263500px;}
.y177{bottom:965.268150px;}
.y31{bottom:965.770350px;}
.y4{bottom:970.465200px;}
.yfb{bottom:979.123200px;}
.y1b7{bottom:980.263500px;}
.y176{bottom:980.268150px;}
.y90{bottom:983.237100px;}
.y30{bottom:983.770350px;}
.y1b6{bottom:995.263500px;}
.y175{bottom:995.268150px;}
.y2f{bottom:1001.770350px;}
.y3{bottom:1006.926000px;}
.y1b5{bottom:1010.263500px;}
.y174{bottom:1010.268150px;}
.yfa{bottom:1018.270350px;}
.y2e{bottom:1019.770350px;}
.y1b4{bottom:1025.263500px;}
.y173{bottom:1025.268150px;}
.y2d{bottom:1037.770350px;}
.y8f{bottom:1037.777100px;}
.y1b3{bottom:1040.263500px;}
.y172{bottom:1040.268150px;}
.y2{bottom:1069.300350px;}
.y106{bottom:1132.411200px;}
.y6d{bottom:1132.417800px;}
.y63{bottom:1132.418700px;}
.y123{bottom:1132.421700px;}
.y14b{bottom:1132.422600px;}
.y1b2{bottom:1132.423500px;}
.y122{bottom:1132.425900px;}
.y14e{bottom:1132.428150px;}
.yd9{bottom:1132.435200px;}
.y141{bottom:1132.479300px;}
.y2b{bottom:1136.092500px;}
.y2a{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.he{height:32.761230px;}
.hf{height:32.783203px;}
.h8{height:32.805176px;}
.h11{height:34.945312px;}
.h17{height:34.968750px;}
.h10{height:34.992188px;}
.h14{height:42.117188px;}
.h13{height:42.632812px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h19{height:47.149720px;}
.h18{height:47.164720px;}
.hc{height:52.646484px;}
.h12{height:53.291016px;}
.h1a{height:54.266484px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h16{height:58.902500px;}
.h15{height:58.922900px;}
.hd{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;}
.xa{left:76.535400px;}
.x1c{left:78.661350px;}
.x18{left:85.039350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x27{left:102.047250px;}
.x4{left:106.299300px;}
.xb{left:110.557650px;}
.x25{left:123.307200px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.x10{left:166.000350px;}
.x1e{left:198.860400px;}
.x20{left:207.694650px;}
.x23{left:211.390350px;}
.x5{left:212.876400px;}
.x24{left:215.545350px;}
.x1a{left:238.123350px;}
.x1d{left:248.749350px;}
.x17{left:270.009300px;}
.x1f{left:280.102650px;}
.x13{left:365.891850px;}
.x1b{left:429.463350px;}
.x19{left:437.959350px;}
.x9{left:455.041500px;}
.xc{left:457.085700px;}
.x11{left:478.360350px;}
.x7{left:480.471000px;}
.x28{left:482.627250px;}
.xd{left:491.105700px;}
.x26{left:503.863200px;}
.x12{left:512.380350px;}
.x15{left:591.656850px;}
.xf{left:663.492300px;}
.x2{left:693.365400px;}
.x21{left:721.729350px;}
.xe{left:728.391600px;}
.x22{left:743.868150px;}
.x14{left:749.651850px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:20.098133pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls60{letter-spacing:-1.578667pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls35{letter-spacing:-0.586667pt;}
.ls32{letter-spacing:-0.533333pt;}
.ls34{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls5d{letter-spacing:-0.256000pt;}
.ls69{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.200000pt;}
.ls50{letter-spacing:-0.170667pt;}
.ls7a{letter-spacing:-0.160000pt;}
.ls7b{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls5b{letter-spacing:-0.085333pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls4f{letter-spacing:-0.042667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003147pt;}
.ls0{letter-spacing:0.005045pt;}
.ls5f{letter-spacing:0.013867pt;}
.ls57{letter-spacing:0.042667pt;}
.ls4{letter-spacing:0.053333pt;}
.ls72{letter-spacing:0.085333pt;}
.lsf{letter-spacing:0.106667pt;}
.ls39{letter-spacing:0.160000pt;}
.ls4d{letter-spacing:0.170667pt;}
.ls46{letter-spacing:0.212267pt;}
.ls10{letter-spacing:0.213333pt;}
.ls48{letter-spacing:0.248747pt;}
.ls5c{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls74{letter-spacing:0.298667pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.341333pt;}
.ls49{letter-spacing:0.342027pt;}
.ls26{letter-spacing:0.373333pt;}
.ls76{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.426667pt;}
.ls7f{letter-spacing:0.469333pt;}
.ls36{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.533333pt;}
.ls54{letter-spacing:0.554667pt;}
.ls28{letter-spacing:0.586667pt;}
.ls58{letter-spacing:0.597333pt;}
.ls21{letter-spacing:0.640000pt;}
.ls8b{letter-spacing:0.682667pt;}
.ls3c{letter-spacing:0.693333pt;}
.ls4e{letter-spacing:0.725333pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls78{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.776000pt;}
.ls4b{letter-spacing:0.777333pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls55{letter-spacing:0.810667pt;}
.ls16{letter-spacing:0.853333pt;}
.ls81{letter-spacing:0.896000pt;}
.ls2a{letter-spacing:0.906667pt;}
.ls52{letter-spacing:0.938667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls53{letter-spacing:0.981333pt;}
.ls15{letter-spacing:1.013333pt;}
.ls19{letter-spacing:1.066667pt;}
.ls4a{letter-spacing:1.088267pt;}
.ls75{letter-spacing:1.109333pt;}
.ls6d{letter-spacing:1.120000pt;}
.ls1c{letter-spacing:1.173333pt;}
.ls85{letter-spacing:1.194667pt;}
.ls2e{letter-spacing:1.226667pt;}
.ls79{letter-spacing:1.237333pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls56{letter-spacing:1.322667pt;}
.ls12{letter-spacing:1.333333pt;}
.ls89{letter-spacing:1.365333pt;}
.ls1d{letter-spacing:1.386667pt;}
.ls5{letter-spacing:1.440000pt;}
.ls51{letter-spacing:1.493333pt;}
.ls59{letter-spacing:1.536000pt;}
.ls14{letter-spacing:1.546667pt;}
.ls88{letter-spacing:1.578667pt;}
.ls2{letter-spacing:1.600000pt;}
.ls77{letter-spacing:1.621333pt;}
.ls7{letter-spacing:1.653333pt;}
.ls7e{letter-spacing:1.664000pt;}
.ls1b{letter-spacing:1.706667pt;}
.ls5a{letter-spacing:1.749333pt;}
.ls17{letter-spacing:1.760000pt;}
.ls37{letter-spacing:1.813333pt;}
.ls2d{letter-spacing:1.866667pt;}
.ls38{letter-spacing:1.920000pt;}
.ls70{letter-spacing:1.962667pt;}
.ls3a{letter-spacing:1.973333pt;}
.ls73{letter-spacing:2.005333pt;}
.ls31{letter-spacing:2.026667pt;}
.ls8c{letter-spacing:2.048000pt;}
.lse{letter-spacing:2.080000pt;}
.ls5e{letter-spacing:2.133333pt;}
.ls6c{letter-spacing:2.186667pt;}
.ls86{letter-spacing:2.218667pt;}
.ls27{letter-spacing:2.240000pt;}
.ls23{letter-spacing:2.293333pt;}
.ls43{letter-spacing:2.346667pt;}
.ls7d{letter-spacing:2.389333pt;}
.ls6a{letter-spacing:2.400000pt;}
.ls3b{letter-spacing:2.453333pt;}
.ls6b{letter-spacing:2.474667pt;}
.ls25{letter-spacing:2.506667pt;}
.ls71{letter-spacing:2.517333pt;}
.ls29{letter-spacing:2.560000pt;}
.ls83{letter-spacing:2.602667pt;}
.ls44{letter-spacing:2.613333pt;}
.ls8a{letter-spacing:2.645333pt;}
.ls3e{letter-spacing:2.666667pt;}
.ls82{letter-spacing:2.688000pt;}
.ls30{letter-spacing:2.720000pt;}
.ls2b{letter-spacing:2.773333pt;}
.ls20{letter-spacing:2.826667pt;}
.ls6f{letter-spacing:2.858667pt;}
.ls6{letter-spacing:2.880000pt;}
.ls1a{letter-spacing:2.933333pt;}
.ls8d{letter-spacing:2.944000pt;}
.ls67{letter-spacing:2.986667pt;}
.ls6e{letter-spacing:3.040000pt;}
.ls68{letter-spacing:3.093333pt;}
.ls7c{letter-spacing:3.114667pt;}
.ls65{letter-spacing:3.146667pt;}
.lsd{letter-spacing:3.200000pt;}
.ls42{letter-spacing:3.253333pt;}
.ls24{letter-spacing:3.360000pt;}
.ls64{letter-spacing:3.413333pt;}
.ls66{letter-spacing:3.466667pt;}
.ls40{letter-spacing:3.520000pt;}
.ls47{letter-spacing:3.733333pt;}
.ls84{letter-spacing:3.882667pt;}
.ls61{letter-spacing:3.946667pt;}
.ls41{letter-spacing:4.426667pt;}
.ls3f{letter-spacing:4.533333pt;}
.ls62{letter-spacing:4.693333pt;}
.ls63{letter-spacing:4.800000pt;}
.ls87{letter-spacing:4.992000pt;}
.ls3d{letter-spacing:5.013333pt;}
.ls80{letter-spacing:5.077333pt;}
.ls45{letter-spacing:5.226667pt;}
.ws1{word-spacing:-15.568000pt;}
.ws29{word-spacing:-14.826667pt;}
.ws57{word-spacing:-14.773333pt;}
.ws91{word-spacing:-14.549333pt;}
.wsd{word-spacing:-13.920000pt;}
.wse{word-spacing:-13.760000pt;}
.ws2a{word-spacing:-13.706667pt;}
.ws6a{word-spacing:-13.653333pt;}
.ws77{word-spacing:-13.525333pt;}
.ws69{word-spacing:-13.333333pt;}
.wsc{word-spacing:-12.800000pt;}
.ws78{word-spacing:-12.288000pt;}
.ws4{word-spacing:-11.861333pt;}
.ws79{word-spacing:-11.776000pt;}
.ws94{word-spacing:-11.306667pt;}
.ws92{word-spacing:-11.264000pt;}
.ws95{word-spacing:-11.221333pt;}
.ws96{word-spacing:-11.093333pt;}
.ws90{word-spacing:-10.965333pt;}
.ws93{word-spacing:-10.922667pt;}
.ws3{word-spacing:-10.920000pt;}
.ws7a{word-spacing:-10.880000pt;}
.ws58{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws27{word-spacing:-8.861600pt;}
.ws28{word-spacing:-8.550667pt;}
.ws26{word-spacing:-8.115360pt;}
.ws25{word-spacing:-8.022080pt;}
.ws2{word-spacing:-7.773333pt;}
.ws9c{word-spacing:-3.882667pt;}
.ws6d{word-spacing:-3.466667pt;}
.ws97{word-spacing:-3.114667pt;}
.ws6{word-spacing:-2.565333pt;}
.ws88{word-spacing:-2.346667pt;}
.ws23{word-spacing:-1.973333pt;}
.ws1e{word-spacing:-1.920000pt;}
.ws7c{word-spacing:-1.866667pt;}
.ws9d{word-spacing:-1.536000pt;}
.ws98{word-spacing:-1.280000pt;}
.ws67{word-spacing:-0.960000pt;}
.ws15{word-spacing:-0.853333pt;}
.ws41{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.746667pt;}
.wsa2{word-spacing:-0.597333pt;}
.ws87{word-spacing:-0.554667pt;}
.ws99{word-spacing:-0.469333pt;}
.ws8a{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.373333pt;}
.ws86{word-spacing:-0.341333pt;}
.ws6c{word-spacing:-0.320000pt;}
.ws89{word-spacing:-0.298667pt;}
.ws7d{word-spacing:-0.266667pt;}
.ws8f{word-spacing:-0.256000pt;}
.ws2b{word-spacing:-0.213333pt;}
.ws3f{word-spacing:-0.170667pt;}
.ws1d{word-spacing:-0.106667pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws84{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.042667pt;}
.wsf{word-spacing:0.053333pt;}
.ws9b{word-spacing:0.128000pt;}
.ws72{word-spacing:0.160000pt;}
.wsb{word-spacing:0.200000pt;}
.ws6f{word-spacing:0.213333pt;}
.ws4b{word-spacing:0.256000pt;}
.ws6b{word-spacing:0.373333pt;}
.ws31{word-spacing:0.426667pt;}
.ws52{word-spacing:0.512000pt;}
.ws10{word-spacing:0.533333pt;}
.ws6e{word-spacing:0.597333pt;}
.ws47{word-spacing:0.640000pt;}
.ws12{word-spacing:0.693333pt;}
.ws4a{word-spacing:0.725333pt;}
.ws21{word-spacing:0.746667pt;}
.ws76{word-spacing:0.896000pt;}
.ws8c{word-spacing:0.938667pt;}
.ws7b{word-spacing:1.013333pt;}
.ws42{word-spacing:1.024000pt;}
.ws56{word-spacing:1.109333pt;}
.ws16{word-spacing:1.120000pt;}
.ws49{word-spacing:1.152000pt;}
.ws54{word-spacing:1.280000pt;}
.ws51{word-spacing:1.365333pt;}
.ws11{word-spacing:1.386667pt;}
.ws24{word-spacing:1.408000pt;}
.ws55{word-spacing:1.450667pt;}
.ws40{word-spacing:1.578667pt;}
.ws20{word-spacing:1.600000pt;}
.wsa0{word-spacing:1.621333pt;}
.ws34{word-spacing:1.653333pt;}
.ws4e{word-spacing:1.706667pt;}
.ws85{word-spacing:1.749333pt;}
.ws22{word-spacing:1.760000pt;}
.ws8e{word-spacing:1.834667pt;}
.ws38{word-spacing:1.866667pt;}
.ws4c{word-spacing:1.920000pt;}
.ws68{word-spacing:2.026667pt;}
.ws71{word-spacing:2.080000pt;}
.ws3e{word-spacing:2.090667pt;}
.ws65{word-spacing:2.133333pt;}
.ws4d{word-spacing:2.176000pt;}
.ws32{word-spacing:2.186667pt;}
.ws36{word-spacing:2.240000pt;}
.wsa{word-spacing:2.293333pt;}
.ws50{word-spacing:2.304000pt;}
.ws74{word-spacing:2.346667pt;}
.ws83{word-spacing:2.389333pt;}
.ws2f{word-spacing:2.400000pt;}
.ws30{word-spacing:2.453333pt;}
.ws75{word-spacing:2.474667pt;}
.ws66{word-spacing:2.506667pt;}
.ws1f{word-spacing:2.560000pt;}
.ws48{word-spacing:2.602667pt;}
.ws73{word-spacing:2.645333pt;}
.ws33{word-spacing:2.666667pt;}
.ws53{word-spacing:2.688000pt;}
.ws82{word-spacing:2.730667pt;}
.ws9e{word-spacing:2.858667pt;}
.ws17{word-spacing:2.880000pt;}
.ws3a{word-spacing:2.986667pt;}
.wsa1{word-spacing:3.029333pt;}
.ws9a{word-spacing:3.072000pt;}
.ws8d{word-spacing:3.157333pt;}
.ws4f{word-spacing:3.200000pt;}
.ws3d{word-spacing:3.242667pt;}
.ws39{word-spacing:3.253333pt;}
.ws9f{word-spacing:3.328000pt;}
.ws81{word-spacing:3.360000pt;}
.ws13{word-spacing:3.413333pt;}
.ws2e{word-spacing:3.466667pt;}
.ws3c{word-spacing:3.498667pt;}
.ws1c{word-spacing:3.520000pt;}
.ws3b{word-spacing:3.541333pt;}
.ws1a{word-spacing:3.573333pt;}
.ws19{word-spacing:3.626667pt;}
.ws80{word-spacing:3.733333pt;}
.ws2d{word-spacing:3.786667pt;}
.ws70{word-spacing:3.840000pt;}
.ws8{word-spacing:3.893333pt;}
.ws14{word-spacing:4.213333pt;}
.ws35{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.ws7{word-spacing:4.426667pt;}
.ws37{word-spacing:4.746667pt;}
.ws7e{word-spacing:4.853333pt;}
.ws7f{word-spacing:4.906667pt;}
.ws5e{word-spacing:161.877333pt;}
.ws5c{word-spacing:165.845333pt;}
.ws5d{word-spacing:172.544000pt;}
.ws64{word-spacing:177.024000pt;}
.ws63{word-spacing:187.690667pt;}
.ws5b{word-spacing:193.365333pt;}
.ws60{word-spacing:213.120000pt;}
.ws59{word-spacing:213.760000pt;}
.ws5a{word-spacing:291.541333pt;}
.ws61{word-spacing:323.669333pt;}
.ws62{word-spacing:339.712000pt;}
.ws44{word-spacing:343.424000pt;}
.ws46{word-spacing:350.592000pt;}
.ws45{word-spacing:388.480000pt;}
.ws43{word-spacing:422.186667pt;}
.ws5f{word-spacing:660.864000pt;}
._9{margin-left:-2576.085333pt;}
._a{margin-left:-2554.922667pt;}
._5{margin-left:-6.026667pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._3{width:0.893333pt;}
._7{width:2.666667pt;}
._44{width:3.573333pt;}
._6{width:4.480000pt;}
._45{width:5.493333pt;}
._8{width:6.400000pt;}
._11{width:63.146667pt;}
._d{width:65.024000pt;}
._20{width:87.808000pt;}
._1f{width:99.890133pt;}
._c{width:102.912000pt;}
._18{width:135.168000pt;}
._21{width:142.165333pt;}
._26{width:149.162667pt;}
._19{width:164.565333pt;}
._23{width:183.218133pt;}
._13{width:188.800000pt;}
._22{width:189.952000pt;}
._31{width:198.322133pt;}
._17{width:203.904000pt;}
._2b{width:213.930667pt;}
._e{width:219.008000pt;}
._30{width:220.373333pt;}
._2e{width:222.805333pt;}
._27{width:233.472000pt;}
._16{width:234.752000pt;}
._15{width:237.018667pt;}
._b{width:239.146667pt;}
._f{width:266.453333pt;}
._2f{width:271.530667pt;}
._1b{width:275.882667pt;}
._29{width:281.941333pt;}
._25{width:292.608000pt;}
._28{width:297.472000pt;}
._1e{width:301.226667pt;}
._43{width:312.832000pt;}
._32{width:319.402667pt;}
._14{width:323.626667pt;}
._1d{width:336.341333pt;}
._33{width:339.029333pt;}
._38{width:346.410667pt;}
._42{width:351.744000pt;}
._35{width:357.077333pt;}
._1a{width:364.757333pt;}
._37{width:373.077333pt;}
._1c{width:374.229333pt;}
._34{width:383.744000pt;}
._41{width:403.036800pt;}
._3a{width:422.016000pt;}
._12{width:425.514667pt;}
._3d{width:426.752000pt;}
._36{width:429.141333pt;}
._40{width:431.530667pt;}
._39{width:433.877333pt;}
._3e{width:436.224000pt;}
._3f{width:438.613333pt;}
._3b{width:440.960000pt;}
._3c{width:450.432000pt;}
._2c{width:504.320000pt;}
._24{width:531.968000pt;}
._2a{width:541.440000pt;}
._10{width:564.181333pt;}
._2d{width:644.530133pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.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;}
.y2c{bottom:42.468667pt;}
.y6b{bottom:73.903467pt;}
.yc1{bottom:74.336533pt;}
.y62{bottom:74.462533pt;}
.y8e{bottom:74.721867pt;}
.y148{bottom:74.733067pt;}
.y144{bottom:75.310400pt;}
.y14a{bottom:75.408533pt;}
.y10f{bottom:76.381733pt;}
.y29{bottom:78.246000pt;}
.y12d{bottom:80.613600pt;}
.y171{bottom:81.760133pt;}
.yd4{bottom:82.085067pt;}
.y121{bottom:82.184800pt;}
.y1b1{bottom:84.678667pt;}
.y6a{bottom:87.898133pt;}
.y147{bottom:88.727733pt;}
.y143{bottom:89.305067pt;}
.y149{bottom:89.403200pt;}
.yc0{bottom:90.336533pt;}
.y10e{bottom:90.376400pt;}
.y61{bottom:90.462533pt;}
.y8d{bottom:90.721867pt;}
.y28{bottom:91.576000pt;}
.y170{bottom:95.093467pt;}
.yd3{bottom:96.751733pt;}
.y120{bottom:96.851467pt;}
.y1b0{bottom:98.012000pt;}
.y146{bottom:102.722400pt;}
.y142{bottom:103.299733pt;}
.y10d{bottom:104.371067pt;}
.ybf{bottom:106.336533pt;}
.y12c{bottom:106.394933pt;}
.y60{bottom:106.462533pt;}
.y8c{bottom:106.721867pt;}
.y16f{bottom:108.426800pt;}
.y11f{bottom:111.294133pt;}
.y1af{bottom:111.345333pt;}
.yd2{bottom:111.418400pt;}
.y145{bottom:116.717067pt;}
.y10c{bottom:118.365733pt;}
.y12b{bottom:120.837600pt;}
.ybe{bottom:122.336533pt;}
.y5f{bottom:122.462533pt;}
.y8b{bottom:122.721867pt;}
.y1ae{bottom:124.678667pt;}
.yf9{bottom:125.214533pt;}
.y11e{bottom:125.960800pt;}
.yd1{bottom:126.085067pt;}
.y10b{bottom:132.360400pt;}
.y12a{bottom:135.280267pt;}
.y16e{bottom:137.862533pt;}
.y1ad{bottom:138.012000pt;}
.ybd{bottom:138.336533pt;}
.y5e{bottom:138.462533pt;}
.y8a{bottom:138.721867pt;}
.yf8{bottom:139.881200pt;}
.y11d{bottom:140.403467pt;}
.yd0{bottom:140.751733pt;}
.y10a{bottom:146.355067pt;}
.y129{bottom:149.722933pt;}
.y1ac{bottom:151.345333pt;}
.y25{bottom:153.643733pt;}
.ybc{bottom:154.336533pt;}
.y5d{bottom:154.462533pt;}
.yf7{bottom:154.547867pt;}
.y89{bottom:154.721867pt;}
.y11c{bottom:155.070133pt;}
.ycf{bottom:155.194400pt;}
.y109{bottom:160.349733pt;}
.y1ab{bottom:164.678667pt;}
.yf6{bottom:169.214533pt;}
.y11b{bottom:169.512800pt;}
.y24{bottom:169.643733pt;}
.yce{bottom:169.861067pt;}
.ybb{bottom:170.336533pt;}
.y5c{bottom:170.462533pt;}
.y88{bottom:170.721867pt;}
.y108{bottom:174.344400pt;}
.y128{bottom:177.733467pt;}
.y1aa{bottom:178.012000pt;}
.yf5{bottom:183.881200pt;}
.y11a{bottom:184.179467pt;}
.ycd{bottom:184.527733pt;}
.y23{bottom:185.643733pt;}
.yba{bottom:186.336533pt;}
.y16d{bottom:186.342533pt;}
.y5b{bottom:186.462533pt;}
.y87{bottom:186.721867pt;}
.y107{bottom:188.339067pt;}
.y1a9{bottom:191.345333pt;}
.yf4{bottom:198.547867pt;}
.ycc{bottom:198.970400pt;}
.y22{bottom:201.643733pt;}
.y16c{bottom:201.982533pt;}
.yb9{bottom:202.336533pt;}
.y5a{bottom:202.462533pt;}
.y86{bottom:202.721867pt;}
.y1a8{bottom:204.678667pt;}
.y127{bottom:208.755867pt;}
.y119{bottom:212.190133pt;}
.ycb{bottom:213.637067pt;}
.yf3{bottom:216.777200pt;}
.y27{bottom:217.643733pt;}
.y1a7{bottom:218.012000pt;}
.yb8{bottom:218.336533pt;}
.y59{bottom:218.462533pt;}
.y85{bottom:218.721867pt;}
.y126{bottom:226.089200pt;}
.yca{bottom:228.079733pt;}
.y1a6{bottom:231.345333pt;}
.yf2{bottom:231.443867pt;}
.y21{bottom:233.285600pt;}
.y26{bottom:233.643733pt;}
.yb7{bottom:234.336533pt;}
.y16b{bottom:234.342533pt;}
.y58{bottom:234.462533pt;}
.y84{bottom:234.721867pt;}
.yc9{bottom:242.746400pt;}
.y118{bottom:243.208000pt;}
.y1a5{bottom:244.678667pt;}
.yf1{bottom:246.110533pt;}
.y16a{bottom:249.982533pt;}
.yb6{bottom:250.336533pt;}
.y57{bottom:250.462533pt;}
.y83{bottom:250.721867pt;}
.yc8{bottom:257.413067pt;}
.y1a4{bottom:258.012000pt;}
.y117{bottom:260.541333pt;}
.yf0{bottom:260.777200pt;}
.yb5{bottom:266.336533pt;}
.y56{bottom:266.462533pt;}
.y82{bottom:266.721867pt;}
.y140{bottom:269.688267pt;}
.y1a3{bottom:271.345333pt;}
.yc7{bottom:271.855733pt;}
.yef{bottom:275.443867pt;}
.yb4{bottom:282.336533pt;}
.y169{bottom:282.342533pt;}
.y55{bottom:282.462533pt;}
.y81{bottom:282.721867pt;}
.y1a2{bottom:284.678667pt;}
.yc6{bottom:286.522400pt;}
.yee{bottom:293.673200pt;}
.y13f{bottom:295.469600pt;}
.y1a1{bottom:298.012000pt;}
.yb3{bottom:298.336533pt;}
.y168{bottom:298.342533pt;}
.y54{bottom:298.462533pt;}
.y80{bottom:298.721867pt;}
.y116{bottom:300.119200pt;}
.yc5{bottom:301.189067pt;}
.y20{bottom:303.657067pt;}
.yed{bottom:308.339867pt;}
.y13e{bottom:309.912267pt;}
.y1a0{bottom:311.345333pt;}
.y167{bottom:313.982533pt;}
.y115{bottom:314.113867pt;}
.yb2{bottom:314.336533pt;}
.y53{bottom:314.462533pt;}
.y7f{bottom:314.721867pt;}
.yec{bottom:323.006533pt;}
.y13d{bottom:324.354933pt;}
.y19f{bottom:324.678667pt;}
.y1f{bottom:327.963733pt;}
.y114{bottom:328.108533pt;}
.yb1{bottom:330.336533pt;}
.y52{bottom:330.462533pt;}
.y7e{bottom:330.721867pt;}
.yc4{bottom:337.093067pt;}
.yeb{bottom:337.673200pt;}
.y1df{bottom:338.012000pt;}
.y19e{bottom:338.016133pt;}
.y13c{bottom:338.797600pt;}
.y113{bottom:342.103200pt;}
.y1e{bottom:343.963733pt;}
.y166{bottom:346.342533pt;}
.yb0{bottom:346.348533pt;}
.y51{bottom:346.462533pt;}
.y1de{bottom:351.345333pt;}
.y19d{bottom:351.349467pt;}
.yea{bottom:352.339867pt;}
.y13b{bottom:353.240267pt;}
.y112{bottom:356.097867pt;}
.y1d{bottom:359.963733pt;}
.yc3{bottom:360.215867pt;}
.y165{bottom:361.982533pt;}
.yaf{bottom:362.348533pt;}
.y7d{bottom:362.361867pt;}
.y50{bottom:362.462533pt;}
.y1dd{bottom:364.678667pt;}
.y19c{bottom:364.682800pt;}
.y13a{bottom:367.682933pt;}
.y111{bottom:370.092533pt;}
.ye9{bottom:370.569200pt;}
.y14d{bottom:373.525467pt;}
.y1c{bottom:375.963733pt;}
.yc2{bottom:377.549200pt;}
.y1dc{bottom:378.012000pt;}
.y19b{bottom:378.016133pt;}
.yae{bottom:378.348533pt;}
.y4f{bottom:378.462533pt;}
.y139{bottom:382.125600pt;}
.y110{bottom:384.087200pt;}
.ye8{bottom:385.235867pt;}
.y14c{bottom:387.520133pt;}
.y1db{bottom:391.345333pt;}
.y19a{bottom:391.349467pt;}
.y1b{bottom:391.963733pt;}
.y164{bottom:394.342533pt;}
.yad{bottom:394.348533pt;}
.y4e{bottom:394.462533pt;}
.y7c{bottom:394.588533pt;}
.y138{bottom:396.568267pt;}
.ye7{bottom:399.902533pt;}
.y1da{bottom:404.678667pt;}
.y199{bottom:404.682800pt;}
.y1a{bottom:407.963733pt;}
.y163{bottom:410.342533pt;}
.yac{bottom:410.348533pt;}
.y4d{bottom:410.462533pt;}
.y7b{bottom:410.588533pt;}
.y137{bottom:411.010933pt;}
.ye6{bottom:414.569200pt;}
.y1d9{bottom:418.012000pt;}
.y198{bottom:418.016133pt;}
.yd8{bottom:418.481067pt;}
.y19{bottom:423.963733pt;}
.y136{bottom:425.453600pt;}
.y162{bottom:426.342533pt;}
.yab{bottom:426.348533pt;}
.y4c{bottom:426.462533pt;}
.y7a{bottom:426.588533pt;}
.y1d8{bottom:431.345333pt;}
.y197{bottom:431.349467pt;}
.yd7{bottom:432.475733pt;}
.ye5{bottom:432.798533pt;}
.y135{bottom:439.896267pt;}
.y18{bottom:439.963733pt;}
.y161{bottom:442.342533pt;}
.yaa{bottom:442.348533pt;}
.y4b{bottom:442.462533pt;}
.y79{bottom:442.588533pt;}
.y1d7{bottom:444.678667pt;}
.y196{bottom:444.682800pt;}
.yd6{bottom:446.470400pt;}
.ye4{bottom:447.465200pt;}
.y134{bottom:454.338933pt;}
.y17{bottom:455.963733pt;}
.y1d6{bottom:458.012000pt;}
.y195{bottom:458.016133pt;}
.y160{bottom:458.342533pt;}
.ya9{bottom:458.348533pt;}
.y4a{bottom:458.462533pt;}
.y78{bottom:458.588533pt;}
.yd5{bottom:460.465067pt;}
.ye3{bottom:462.131867pt;}
.y133{bottom:468.781600pt;}
.y1d5{bottom:471.345333pt;}
.y194{bottom:471.349467pt;}
.y16{bottom:471.963733pt;}
.y15f{bottom:474.342533pt;}
.ya8{bottom:474.348533pt;}
.y49{bottom:474.462533pt;}
.y77{bottom:474.595867pt;}
.ye2{bottom:476.798533pt;}
.y132{bottom:483.224267pt;}
.y1d4{bottom:484.678667pt;}
.y193{bottom:484.682800pt;}
.y15{bottom:487.963733pt;}
.y15e{bottom:490.342533pt;}
.ya7{bottom:490.348533pt;}
.y48{bottom:490.462533pt;}
.y76{bottom:490.595867pt;}
.ye1{bottom:495.027867pt;}
.y1d3{bottom:498.012000pt;}
.y192{bottom:498.016133pt;}
.y14{bottom:503.963733pt;}
.y15d{bottom:505.982533pt;}
.ya6{bottom:506.348533pt;}
.y47{bottom:506.462533pt;}
.y75{bottom:506.595867pt;}
.y131{bottom:509.012400pt;}
.ye0{bottom:509.694533pt;}
.y1d2{bottom:511.345333pt;}
.y191{bottom:511.349467pt;}
.y6c{bottom:512.332267pt;}
.y13{bottom:519.963733pt;}
.ya5{bottom:522.348533pt;}
.y46{bottom:522.462533pt;}
.y74{bottom:522.595867pt;}
.ydf{bottom:524.361200pt;}
.y1d1{bottom:524.678667pt;}
.y190{bottom:524.682800pt;}
.y130{bottom:534.793733pt;}
.y12{bottom:535.963733pt;}
.y1d0{bottom:538.012000pt;}
.y18f{bottom:538.016133pt;}
.y15c{bottom:538.342533pt;}
.ya4{bottom:538.348533pt;}
.y45{bottom:538.462533pt;}
.y73{bottom:538.595867pt;}
.yde{bottom:539.027867pt;}
.y1cf{bottom:551.345333pt;}
.y18e{bottom:551.349467pt;}
.y15b{bottom:554.342533pt;}
.ya3{bottom:554.348533pt;}
.y44{bottom:554.462533pt;}
.y72{bottom:554.595867pt;}
.y12f{bottom:563.586000pt;}
.y1ce{bottom:564.678667pt;}
.y18d{bottom:564.682800pt;}
.ydd{bottom:568.595867pt;}
.y15a{bottom:570.342533pt;}
.ya2{bottom:570.348533pt;}
.y43{bottom:570.462533pt;}
.y71{bottom:570.595867pt;}
.y11{bottom:576.104267pt;}
.y1cd{bottom:578.012000pt;}
.y18c{bottom:578.016133pt;}
.y12e{bottom:580.919333pt;}
.y159{bottom:586.342533pt;}
.ya1{bottom:586.348533pt;}
.y42{bottom:586.462533pt;}
.y70{bottom:586.595867pt;}
.y10{bottom:587.171600pt;}
.y1cc{bottom:591.345333pt;}
.y18b{bottom:591.349467pt;}
.ydc{bottom:598.163867pt;}
.y158{bottom:602.342533pt;}
.ya0{bottom:602.348533pt;}
.y41{bottom:602.462533pt;}
.y6f{bottom:602.595867pt;}
.y1cb{bottom:604.678667pt;}
.y18a{bottom:604.682800pt;}
.yf{bottom:615.363200pt;}
.y1ca{bottom:618.012000pt;}
.y189{bottom:618.016133pt;}
.y125{bottom:618.342533pt;}
.y9f{bottom:618.348533pt;}
.y40{bottom:618.462533pt;}
.y69{bottom:618.595867pt;}
.ydb{bottom:628.845733pt;}
.y1c9{bottom:631.345333pt;}
.y188{bottom:631.349467pt;}
.ye{bottom:632.185733pt;}
.y6e{bottom:634.235867pt;}
.y157{bottom:634.342533pt;}
.y9e{bottom:634.348533pt;}
.y3f{bottom:634.462533pt;}
.y68{bottom:634.595867pt;}
.yd{bottom:639.363200pt;}
.y1c8{bottom:644.678667pt;}
.y187{bottom:644.682800pt;}
.yda{bottom:646.179067pt;}
.y124{bottom:649.982533pt;}
.y9d{bottom:650.348533pt;}
.y3e{bottom:650.462533pt;}
.y67{bottom:650.595867pt;}
.yc{bottom:651.363200pt;}
.y1c7{bottom:658.012000pt;}
.y186{bottom:658.016133pt;}
.yb{bottom:663.363200pt;}
.y66{bottom:666.235867pt;}
.y9c{bottom:666.348533pt;}
.y3d{bottom:666.462533pt;}
.y1c6{bottom:671.345333pt;}
.y185{bottom:671.349467pt;}
.ya{bottom:680.185733pt;}
.y156{bottom:682.342533pt;}
.y9b{bottom:682.348533pt;}
.y3c{bottom:682.462533pt;}
.y1c5{bottom:684.678667pt;}
.y184{bottom:684.682800pt;}
.y105{bottom:695.857067pt;}
.y1c4{bottom:698.012000pt;}
.y183{bottom:698.016133pt;}
.y65{bottom:698.102533pt;}
.y155{bottom:698.342533pt;}
.y9a{bottom:698.348533pt;}
.y3b{bottom:698.462533pt;}
.y9{bottom:705.720933pt;}
.y104{bottom:710.523733pt;}
.y1c3{bottom:711.345333pt;}
.y182{bottom:711.349467pt;}
.y154{bottom:714.342533pt;}
.y99{bottom:714.348533pt;}
.y3a{bottom:714.462533pt;}
.y8{bottom:724.382933pt;}
.y1c2{bottom:724.678667pt;}
.y181{bottom:724.682800pt;}
.y103{bottom:728.753067pt;}
.y64{bottom:729.982533pt;}
.y153{bottom:730.342533pt;}
.y98{bottom:730.348533pt;}
.y39{bottom:730.462533pt;}
.y1c1{bottom:738.012000pt;}
.y180{bottom:738.016133pt;}
.y102{bottom:743.419733pt;}
.y152{bottom:746.342533pt;}
.y97{bottom:746.348533pt;}
.y38{bottom:746.462533pt;}
.y1c0{bottom:751.345333pt;}
.y17f{bottom:751.349467pt;}
.y101{bottom:758.086400pt;}
.y151{bottom:762.342533pt;}
.y96{bottom:762.348533pt;}
.y37{bottom:762.462533pt;}
.y1bf{bottom:764.678667pt;}
.y17e{bottom:764.682800pt;}
.y7{bottom:765.406933pt;}
.y100{bottom:776.315733pt;}
.y1be{bottom:778.012000pt;}
.y17d{bottom:778.016133pt;}
.y150{bottom:778.342533pt;}
.y95{bottom:778.348533pt;}
.y36{bottom:778.462533pt;}
.yff{bottom:790.982400pt;}
.y1bd{bottom:791.345333pt;}
.y17c{bottom:791.349467pt;}
.y94{bottom:794.348533pt;}
.y35{bottom:794.462533pt;}
.y6{bottom:797.816533pt;}
.y1bc{bottom:804.678667pt;}
.y17b{bottom:804.682800pt;}
.yfe{bottom:805.649067pt;}
.y14f{bottom:809.982533pt;}
.y93{bottom:810.348533pt;}
.y34{bottom:810.462533pt;}
.y1bb{bottom:818.012000pt;}
.y17a{bottom:818.016133pt;}
.yfd{bottom:823.878400pt;}
.y92{bottom:826.348533pt;}
.y33{bottom:826.462533pt;}
.y5{bottom:830.226133pt;}
.y1ba{bottom:831.345333pt;}
.y179{bottom:831.349467pt;}
.yfc{bottom:838.545067pt;}
.y91{bottom:842.348533pt;}
.y32{bottom:842.462533pt;}
.y1b9{bottom:844.678667pt;}
.y178{bottom:844.682800pt;}
.y1b8{bottom:858.012000pt;}
.y177{bottom:858.016133pt;}
.y31{bottom:858.462533pt;}
.y4{bottom:862.635733pt;}
.yfb{bottom:870.331733pt;}
.y1b7{bottom:871.345333pt;}
.y176{bottom:871.349467pt;}
.y90{bottom:873.988533pt;}
.y30{bottom:874.462533pt;}
.y1b6{bottom:884.678667pt;}
.y175{bottom:884.682800pt;}
.y2f{bottom:890.462533pt;}
.y3{bottom:895.045333pt;}
.y1b5{bottom:898.012000pt;}
.y174{bottom:898.016133pt;}
.yfa{bottom:905.129200pt;}
.y2e{bottom:906.462533pt;}
.y1b4{bottom:911.345333pt;}
.y173{bottom:911.349467pt;}
.y2d{bottom:922.462533pt;}
.y8f{bottom:922.468533pt;}
.y1b3{bottom:924.678667pt;}
.y172{bottom:924.682800pt;}
.y2{bottom:950.489200pt;}
.y106{bottom:1006.587733pt;}
.y6d{bottom:1006.593600pt;}
.y63{bottom:1006.594400pt;}
.y123{bottom:1006.597067pt;}
.y14b{bottom:1006.597867pt;}
.y1b2{bottom:1006.598667pt;}
.y122{bottom:1006.600800pt;}
.y14e{bottom:1006.602800pt;}
.yd9{bottom:1006.609067pt;}
.y141{bottom:1006.648267pt;}
.y2b{bottom:1009.860000pt;}
.y2a{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.he{height:29.121094pt;}
.hf{height:29.140625pt;}
.h8{height:29.160156pt;}
.h11{height:31.062500pt;}
.h17{height:31.083333pt;}
.h10{height:31.104167pt;}
.h14{height:37.437500pt;}
.h13{height:37.895833pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h19{height:41.910863pt;}
.h18{height:41.924196pt;}
.hc{height:46.796875pt;}
.h12{height:47.369792pt;}
.h1a{height:48.236875pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h16{height:52.357778pt;}
.h15{height:52.375911pt;}
.hd{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;}
.xa{left:68.031467pt;}
.x1c{left:69.921200pt;}
.x18{left:75.590533pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x27{left:90.708667pt;}
.x4{left:94.488267pt;}
.xb{left:98.273467pt;}
.x25{left:109.606400pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.x10{left:147.555867pt;}
.x1e{left:176.764800pt;}
.x20{left:184.617467pt;}
.x23{left:187.902533pt;}
.x5{left:189.223467pt;}
.x24{left:191.595867pt;}
.x1a{left:211.665200pt;}
.x1d{left:221.110533pt;}
.x17{left:240.008267pt;}
.x1f{left:248.980133pt;}
.x13{left:325.237200pt;}
.x1b{left:381.745200pt;}
.x19{left:389.297200pt;}
.x9{left:404.481333pt;}
.xc{left:406.298400pt;}
.x11{left:425.209200pt;}
.x7{left:427.085333pt;}
.x28{left:429.002000pt;}
.xd{left:436.538400pt;}
.x26{left:447.878400pt;}
.x12{left:455.449200pt;}
.x15{left:525.917200pt;}
.xf{left:589.770933pt;}
.x2{left:616.324800pt;}
.x21{left:641.537200pt;}
.xe{left:647.459200pt;}
.x22{left:661.216133pt;}
.x14{left:666.357200pt;}
}




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