
    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_b2c03bed7fcd807a1f3731c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144467;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_a8a59a0bacff11dc3c17e23f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.068167;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_3fd8f151f96ca41761cb2e0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108333;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_60435a477b19d8248f611779.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.165333;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_c1e446bc034a2d3b41849956.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976600;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_df60a556a80f51634260e34c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.831000;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_a21077e168a3592592163276.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.078000;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_d2feef3072e5521688e5224d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.078000;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_b0cdeab6ef2ebbbf7a885070.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.155250;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_ac4880bb53d522782d4b41d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050538;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_2f17ff04ec31c2adca81dcc7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.082000;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_eb25a1e868c2570991f3ad91.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5ad1232c86e7f16b1c147370.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls3{letter-spacing:-4.013208px;}
.ls2f{letter-spacing:-2.640000px;}
.ls33{letter-spacing:-2.100000px;}
.ls20{letter-spacing:-1.980000px;}
.ls30{letter-spacing:-1.650000px;}
.ls3f{letter-spacing:-1.386000px;}
.ls35{letter-spacing:-1.188000px;}
.ls12{letter-spacing:-1.050000px;}
.ls4a{letter-spacing:-0.624000px;}
.ls44{letter-spacing:-0.546000px;}
.ls1{letter-spacing:-0.540000px;}
.ls4b{letter-spacing:-0.480000px;}
.ls37{letter-spacing:-0.396000px;}
.ls2{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.330000px;}
.ls1d{letter-spacing:-0.264000px;}
.ls1e{letter-spacing:-0.198000px;}
.ls40{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.132000px;}
.ls11{letter-spacing:-0.066000px;}
.ls4c{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.066000px;}
.ls25{letter-spacing:0.132000px;}
.ls42{letter-spacing:0.162000px;}
.ls31{letter-spacing:0.191826px;}
.ls1b{letter-spacing:0.198000px;}
.ls1a{letter-spacing:0.248826px;}
.ls17{letter-spacing:0.264000px;}
.ls41{letter-spacing:0.270000px;}
.ls47{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.297000px;}
.ls32{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.330000px;}
.lsa{letter-spacing:0.336000px;}
.ls3b{letter-spacing:0.384426px;}
.ls29{letter-spacing:0.396000px;}
.ls1c{letter-spacing:0.408000px;}
.ls19{letter-spacing:0.429000px;}
.ls3c{letter-spacing:0.459000px;}
.ls15{letter-spacing:0.462000px;}
.ls46{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.528000px;}
.ls4{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.546426px;}
.ls49{letter-spacing:0.552000px;}
.ls24{letter-spacing:0.561000px;}
.ls23{letter-spacing:0.594000px;}
.ls3a{letter-spacing:0.627000px;}
.ls2c{letter-spacing:0.658800px;}
.ls2b{letter-spacing:0.659400px;}
.ls7{letter-spacing:0.660000px;}
.ls45{letter-spacing:0.693000px;}
.lsf{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.726000px;}
.ls3e{letter-spacing:0.756000px;}
.ls2a{letter-spacing:0.759000px;}
.ls13{letter-spacing:0.792000px;}
.ls28{letter-spacing:0.825000px;}
.lsb{letter-spacing:0.840000px;}
.ls22{letter-spacing:0.858000px;}
.ls39{letter-spacing:0.891000px;}
.ls5{letter-spacing:0.924000px;}
.ls6{letter-spacing:0.990000px;}
.ls9{letter-spacing:1.056000px;}
.lsd{letter-spacing:1.122000px;}
.ls16{letter-spacing:1.188000px;}
.ls14{letter-spacing:1.221000px;}
.ls3d{letter-spacing:1.317600px;}
.lse{letter-spacing:1.320000px;}
.ls2d{letter-spacing:1.386000px;}
.ls26{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.650000px;}
.ls34{letter-spacing:1.914000px;}
.ls2e{letter-spacing:2.367600px;}
.ls48{letter-spacing:3.213000px;}
.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;}
}
.wsb9{word-spacing:-23.520000px;}
.ws8c{word-spacing:-20.160000px;}
.ws56{word-spacing:-19.206000px;}
.ws65{word-spacing:-19.008000px;}
.ws8d{word-spacing:-18.876000px;}
.ws71{word-spacing:-18.612000px;}
.ws24{word-spacing:-18.480000px;}
.ws4f{word-spacing:-18.414000px;}
.ws85{word-spacing:-18.216000px;}
.ws78{word-spacing:-18.150000px;}
.ws30{word-spacing:-17.820000px;}
.ws81{word-spacing:-17.688000px;}
.ws72{word-spacing:-17.358000px;}
.ws23{word-spacing:-16.698000px;}
.ws4e{word-spacing:-16.566000px;}
.ws79{word-spacing:-16.302000px;}
.ws64{word-spacing:-16.038000px;}
.ws5f{word-spacing:-15.708000px;}
.ws5a{word-spacing:-14.580000px;}
.ws77{word-spacing:-13.662000px;}
.ws0{word-spacing:-12.582000px;}
.wsbd{word-spacing:-12.144000px;}
.wsbc{word-spacing:-11.664000px;}
.ws9d{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.360000px;}
.ws50{word-spacing:-3.564000px;}
.ws32{word-spacing:-3.498000px;}
.ws46{word-spacing:-3.234000px;}
.ws33{word-spacing:-3.168000px;}
.ws76{word-spacing:-3.036000px;}
.ws69{word-spacing:-2.838000px;}
.ws58{word-spacing:-2.706000px;}
.ws8a{word-spacing:-2.646000px;}
.ws51{word-spacing:-2.640000px;}
.ws8{word-spacing:-2.574000px;}
.ws2a{word-spacing:-2.508000px;}
.ws57{word-spacing:-2.442000px;}
.ws39{word-spacing:-2.376000px;}
.wsc5{word-spacing:-2.352000px;}
.ws94{word-spacing:-2.310000px;}
.wsc2{word-spacing:-2.304000px;}
.ws55{word-spacing:-2.244000px;}
.ws1e{word-spacing:-2.178000px;}
.wsba{word-spacing:-2.112000px;}
.ws89{word-spacing:-2.106000px;}
.ws45{word-spacing:-1.980000px;}
.ws5b{word-spacing:-1.848000px;}
.ws6c{word-spacing:-1.650000px;}
.ws4c{word-spacing:-1.584000px;}
.ws74{word-spacing:-1.386000px;}
.ws1f{word-spacing:-1.320000px;}
.ws27{word-spacing:-1.254000px;}
.ws2d{word-spacing:-1.188000px;}
.ws1d{word-spacing:-1.122000px;}
.wsc8{word-spacing:-1.104000px;}
.wsc{word-spacing:-1.056000px;}
.ws7{word-spacing:-0.990000px;}
.ws6{word-spacing:-0.924000px;}
.wsc9{word-spacing:-0.912000px;}
.ws43{word-spacing:-0.858000px;}
.ws5{word-spacing:-0.840000px;}
.ws26{word-spacing:-0.792000px;}
.ws82{word-spacing:-0.756000px;}
.ws40{word-spacing:-0.726000px;}
.ws7d{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.660000px;}
.ws47{word-spacing:-0.594000px;}
.wsc7{word-spacing:-0.576000px;}
.ws2c{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.528000px;}
.ws7f{word-spacing:-0.486000px;}
.wsbe{word-spacing:-0.480000px;}
.ws29{word-spacing:-0.462000px;}
.ws3f{word-spacing:-0.432000px;}
.ws53{word-spacing:-0.396000px;}
.wse{word-spacing:-0.336000px;}
.wsb{word-spacing:-0.330000px;}
.ws5d{word-spacing:-0.300000px;}
.wsbf{word-spacing:-0.288000px;}
.ws92{word-spacing:-0.270000px;}
.ws2e{word-spacing:-0.264000px;}
.ws3a{word-spacing:-0.198000px;}
.ws93{word-spacing:-0.162000px;}
.ws48{word-spacing:-0.132000px;}
.ws37{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.wsc6{word-spacing:0.048000px;}
.ws22{word-spacing:0.066000px;}
.ws31{word-spacing:0.132000px;}
.wsf{word-spacing:0.144000px;}
.ws3d{word-spacing:0.198000px;}
.ws36{word-spacing:0.264000px;}
.ws61{word-spacing:0.330000px;}
.ws62{word-spacing:0.396000px;}
.ws83{word-spacing:0.432000px;}
.wsc4{word-spacing:0.480000px;}
.ws3{word-spacing:0.540000px;}
.ws84{word-spacing:0.594000px;}
.wsc1{word-spacing:0.624000px;}
.ws25{word-spacing:0.660000px;}
.ws75{word-spacing:0.726000px;}
.ws2b{word-spacing:0.792000px;}
.ws87{word-spacing:0.858000px;}
.ws35{word-spacing:0.918000px;}
.ws54{word-spacing:0.924000px;}
.ws9{word-spacing:0.990000px;}
.ws3e{word-spacing:1.056000px;}
.ws4d{word-spacing:1.122000px;}
.ws60{word-spacing:1.188000px;}
.ws6f{word-spacing:1.320000px;}
.ws3c{word-spacing:1.386000px;}
.ws7c{word-spacing:1.404000px;}
.ws6e{word-spacing:1.452000px;}
.ws42{word-spacing:1.518000px;}
.ws95{word-spacing:1.584000px;}
.ws2f{word-spacing:1.650000px;}
.wsb7{word-spacing:1.716000px;}
.wsb8{word-spacing:1.914000px;}
.ws3b{word-spacing:1.980000px;}
.ws34{word-spacing:2.052000px;}
.ws5e{word-spacing:2.100000px;}
.ws44{word-spacing:2.178000px;}
.ws6a{word-spacing:2.310000px;}
.ws80{word-spacing:2.430000px;}
.ws86{word-spacing:2.508000px;}
.ws66{word-spacing:2.574000px;}
.wsd{word-spacing:2.640000px;}
.ws6d{word-spacing:2.706000px;}
.wsc3{word-spacing:2.736000px;}
.ws7e{word-spacing:2.772000px;}
.wsbb{word-spacing:2.838000px;}
.wsb6{word-spacing:2.904000px;}
.ws49{word-spacing:2.970000px;}
.ws28{word-spacing:3.036000px;}
.ws88{word-spacing:3.300000px;}
.ws38{word-spacing:3.366000px;}
.ws20{word-spacing:3.498000px;}
.wsc0{word-spacing:3.504000px;}
.ws59{word-spacing:3.696000px;}
.ws68{word-spacing:3.828000px;}
.ws52{word-spacing:3.894000px;}
.ws4{word-spacing:4.013208px;}
.ws8f{word-spacing:4.026000px;}
.ws67{word-spacing:4.224000px;}
.ws8b{word-spacing:4.290000px;}
.ws8e{word-spacing:4.422000px;}
.ws90{word-spacing:4.488000px;}
.ws7a{word-spacing:4.554000px;}
.ws6b{word-spacing:4.620000px;}
.ws73{word-spacing:4.752000px;}
.ws41{word-spacing:4.818000px;}
.ws7b{word-spacing:5.082000px;}
.ws91{word-spacing:5.478000px;}
.ws5c{word-spacing:5.610000px;}
.ws70{word-spacing:7.062000px;}
.ws4a{word-spacing:8.976000px;}
.ws4b{word-spacing:10.032000px;}
.ws63{word-spacing:12.738000px;}
.wsab{word-spacing:74.704800px;}
.wsb5{word-spacing:75.796800px;}
.wsb3{word-spacing:76.888800px;}
.wsa6{word-spacing:77.900400px;}
.wsb4{word-spacing:81.235800px;}
.wsaa{word-spacing:86.059800px;}
.wsa1{word-spacing:88.311600px;}
.wsa5{word-spacing:88.312200px;}
.wsb1{word-spacing:89.362800px;}
.wsa3{word-spacing:92.194800px;}
.wsa9{word-spacing:92.702400px;}
.wsaf{word-spacing:95.285400px;}
.wsa2{word-spacing:98.479800px;}
.wsac{word-spacing:101.752800px;}
.wsa7{word-spacing:104.269800px;}
.wsa0{word-spacing:104.270400px;}
.wsae{word-spacing:106.639200px;}
.wsa4{word-spacing:112.774200px;}
.ws9f{word-spacing:116.579400px;}
.wsb0{word-spacing:123.382200px;}
.wsa8{word-spacing:131.882400px;}
.wsb2{word-spacing:134.725200px;}
.ws9e{word-spacing:142.057800px;}
.ws96{word-spacing:176.651400px;}
.ws10{word-spacing:194.994600px;}
.ws99{word-spacing:222.014400px;}
.ws9b{word-spacing:242.593200px;}
.ws97{word-spacing:242.593800px;}
.ws98{word-spacing:251.707200px;}
.ws9c{word-spacing:251.707800px;}
.ws9a{word-spacing:263.173800px;}
.ws1a{word-spacing:267.559800px;}
.ws18{word-spacing:267.560400px;}
.wsad{word-spacing:268.516800px;}
.ws1c{word-spacing:268.610400px;}
.ws15{word-spacing:288.140400px;}
.ws13{word-spacing:290.240400px;}
.ws12{word-spacing:291.289800px;}
.ws11{word-spacing:300.865800px;}
.ws19{word-spacing:1126.153200px;}
.ws16{word-spacing:1146.732600px;}
.ws1b{word-spacing:1183.230000px;}
.ws14{word-spacing:1203.558600px;}
.ws17{word-spacing:1240.056000px;}
._12{margin-left:-15.526200px;}
._0{margin-left:-10.080000px;}
._15{margin-left:-8.058000px;}
._11{margin-left:-5.810400px;}
._1{margin-left:-4.284000px;}
._4{margin-left:-2.430000px;}
._2{margin-left:-1.278000px;}
._3{width:1.026000px;}
._5{width:2.183400px;}
._6{width:3.597000px;}
._7{width:4.701000px;}
._8{width:5.967600px;}
._10{width:7.740600px;}
._16{width:8.877000px;}
._13{width:10.099200px;}
._14{width:11.377200px;}
._9{width:36.672000px;}
._39{width:85.245600px;}
._4d{width:91.740600px;}
._28{width:94.419000px;}
._34{width:95.565000px;}
._30{width:97.648200px;}
._45{width:98.715600px;}
._46{width:100.587600px;}
._33{width:103.202400px;}
._4e{width:104.770800px;}
._3f{width:105.785400px;}
._31{width:106.879200px;}
._49{width:109.834800px;}
._36{width:112.251600px;}
._3a{width:113.301000px;}
._3e{width:115.114800px;}
._38{width:117.084000px;}
._43{width:119.703000px;}
._42{width:121.739400px;}
._37{width:122.866800px;}
._32{width:124.105200px;}
._4a{width:128.270400px;}
._2d{width:129.847200px;}
._48{width:131.320200px;}
._2c{width:132.946200px;}
._2a{width:134.188200px;}
._29{width:135.796800px;}
._17{width:137.917200px;}
._3b{width:139.090800px;}
._44{width:140.282400px;}
._2f{width:145.641600px;}
._2b{width:151.297800px;}
._4c{width:155.293800px;}
._47{width:163.615800px;}
._35{width:165.805200px;}
._2e{width:186.384600px;}
._a{width:221.675400px;}
._3c{width:233.437800px;}
._4b{width:249.606000px;}
._21{width:253.093800px;}
._25{width:266.530200px;}
._40{width:269.318400px;}
._1b{width:273.673200px;}
._3d{width:279.016200px;}
._27{width:287.108400px;}
._f{width:289.837800px;}
._41{width:291.349200px;}
._22{width:296.296200px;}
._1c{width:307.689000px;}
._d{width:310.315800px;}
._20{width:327.633000px;}
._1a{width:338.133600px;}
._1e{width:339.183000px;}
._e{width:346.814400px;}
._1f{width:355.327200px;}
._23{width:358.713600px;}
._26{width:365.617200px;}
._1d{width:375.907200px;}
._24{width:386.196000px;}
._19{width:396.486600px;}
._18{width:405.557400px;}
._c{width:1146.834600px;}
._b{width:1203.558600px;}
.fc6{color:rgb(79,76,77);}
.fc5{color:rgb(101,98,99);}
.fc4{color:rgb(167,165,166);}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(145,143,143);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(29,88,66);}
.fs2{font-size:36.000000px;}
.fs7{font-size:38.478000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:133.773600px;}
.fs0{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:24.959850px;}
.y34{bottom:85.039350px;}
.y2a2{bottom:85.077000px;}
.y1a0{bottom:87.995850px;}
.y2c6{bottom:88.125600px;}
.y1d0{bottom:92.368500px;}
.y61{bottom:92.681250px;}
.y14a{bottom:97.043100px;}
.y33{bottom:98.539350px;}
.ye4{bottom:101.035200px;}
.yd3{bottom:104.507700px;}
.y8a{bottom:104.531400px;}
.y2a1{bottom:106.077000px;}
.y19f{bottom:108.995850px;}
.y2c5{bottom:109.125600px;}
.y32{bottom:112.039350px;}
.y1cf{bottom:113.368500px;}
.y149{bottom:118.043100px;}
.y60{bottom:118.060200px;}
.ye3{bottom:122.035200px;}
.yd2{bottom:125.507700px;}
.y89{bottom:125.531400px;}
.y31{bottom:125.539350px;}
.y2a0{bottom:127.077000px;}
.y1fc{bottom:127.321800px;}
.y19e{bottom:129.995850px;}
.y2c4{bottom:130.125600px;}
.y1ab{bottom:130.539150px;}
.y1ce{bottom:134.368500px;}
.y5f{bottom:138.239550px;}
.y30{bottom:139.039350px;}
.y148{bottom:139.043100px;}
.yb1{bottom:143.035200px;}
.yd1{bottom:146.507700px;}
.y88{bottom:146.531400px;}
.y172{bottom:147.523350px;}
.y29f{bottom:148.077000px;}
.y1fb{bottom:148.321800px;}
.y2c3{bottom:151.125600px;}
.yfb{bottom:151.539150px;}
.y12c{bottom:154.896150px;}
.y274{bottom:156.578250px;}
.y5e{bottom:158.419050px;}
.y19d{bottom:159.499800px;}
.y147{bottom:160.043100px;}
.y1cd{bottom:163.872600px;}
.yb0{bottom:164.035200px;}
.yd0{bottom:167.507700px;}
.y87{bottom:167.531400px;}
.y171{bottom:168.523350px;}
.y29e{bottom:169.077000px;}
.y1fa{bottom:169.321800px;}
.y2c2{bottom:172.125600px;}
.yfa{bottom:172.539150px;}
.y12b{bottom:175.896150px;}
.y273{bottom:177.578250px;}
.y5d{bottom:178.598400px;}
.y19c{bottom:180.499800px;}
.y146{bottom:181.043100px;}
.y1cc{bottom:184.872600px;}
.yaf{bottom:185.035200px;}
.y86{bottom:188.531400px;}
.y170{bottom:189.523350px;}
.y29d{bottom:190.077000px;}
.y1f9{bottom:190.321800px;}
.y248{bottom:192.880350px;}
.y2c1{bottom:193.125600px;}
.ye2{bottom:193.539150px;}
.y12a{bottom:196.896150px;}
.ycf{bottom:197.011650px;}
.y223{bottom:197.337450px;}
.y272{bottom:198.578250px;}
.y5c{bottom:198.777900px;}
.y19b{bottom:201.499800px;}
.y145{bottom:202.043100px;}
.y1cb{bottom:205.872600px;}
.yae{bottom:206.035200px;}
.y85{bottom:209.531400px;}
.y16f{bottom:210.523350px;}
.y2df{bottom:210.547050px;}
.y29c{bottom:211.077000px;}
.y1f8{bottom:211.321800px;}
.y247{bottom:213.880350px;}
.y2c0{bottom:214.125600px;}
.ye1{bottom:214.539150px;}
.y222{bottom:215.337450px;}
.y129{bottom:217.896150px;}
.yce{bottom:218.011650px;}
.y5b{bottom:218.957250px;}
.y271{bottom:219.578250px;}
.y2f{bottom:220.971900px;}
.y19a{bottom:222.499800px;}
.y144{bottom:223.043100px;}
.y1ca{bottom:226.872600px;}
.yad{bottom:227.035200px;}
.yd{bottom:228.755850px;}
.y84{bottom:230.531400px;}
.y16e{bottom:231.523350px;}
.y2de{bottom:231.547050px;}
.y29b{bottom:232.077000px;}
.y1f7{bottom:232.321800px;}
.y221{bottom:233.337450px;}
.y246{bottom:234.880350px;}
.y2bf{bottom:235.125600px;}
.ye0{bottom:235.539150px;}
.ycd{bottom:239.011650px;}
.y5a{bottom:239.136600px;}
.y270{bottom:240.578250px;}
.y2e{bottom:241.971900px;}
.y199{bottom:243.499800px;}
.y143{bottom:244.043100px;}
.y128{bottom:247.399950px;}
.y1c9{bottom:247.872600px;}
.yff{bottom:248.035200px;}
.yc{bottom:249.507900px;}
.y220{bottom:251.337450px;}
.y16d{bottom:252.523350px;}
.y2dd{bottom:252.547050px;}
.y29a{bottom:253.077000px;}
.y1f6{bottom:253.321800px;}
.y245{bottom:255.880350px;}
.yac{bottom:256.539150px;}
.y59{bottom:259.316100px;}
.ycc{bottom:260.011650px;}
.y83{bottom:260.035200px;}
.y26f{bottom:261.578250px;}
.y2d{bottom:262.971900px;}
.y198{bottom:264.499800px;}
.y142{bottom:265.043100px;}
.y127{bottom:268.399950px;}
.y1c8{bottom:268.872600px;}
.yfe{bottom:269.035200px;}
.y21f{bottom:269.337450px;}
.yb{bottom:270.259800px;}
.y2dc{bottom:273.547050px;}
.y299{bottom:274.077000px;}
.y1f5{bottom:274.321800px;}
.y244{bottom:276.880350px;}
.yab{bottom:277.539150px;}
.y58{bottom:279.495450px;}
.ycb{bottom:281.011650px;}
.y82{bottom:281.035200px;}
.y16c{bottom:282.027300px;}
.y26e{bottom:282.578250px;}
.y2c{bottom:283.971900px;}
.y2be{bottom:284.678550px;}
.y197{bottom:285.499800px;}
.y141{bottom:286.043100px;}
.y126{bottom:289.399950px;}
.y1c7{bottom:289.872600px;}
.ya{bottom:291.011850px;}
.y2db{bottom:294.547050px;}
.y298{bottom:295.077000px;}
.y243{bottom:297.880350px;}
.yaa{bottom:298.539150px;}
.y57{bottom:299.674950px;}
.yca{bottom:302.011650px;}
.y81{bottom:302.035200px;}
.y21e{bottom:304.345350px;}
.y2b{bottom:304.971900px;}
.y196{bottom:306.499800px;}
.yf9{bottom:307.043100px;}
.y2bd{bottom:310.190400px;}
.y125{bottom:310.399950px;}
.y9{bottom:311.763750px;}
.y26d{bottom:312.082200px;}
.y1f4{bottom:312.329700px;}
.y2da{bottom:315.547050px;}
.y242{bottom:318.880350px;}
.ya9{bottom:319.539150px;}
.y56{bottom:319.854300px;}
.y80{bottom:323.035200px;}
.y297{bottom:324.580950px;}
.y21d{bottom:325.345350px;}
.y2a{bottom:325.971900px;}
.y195{bottom:327.499800px;}
.y1c6{bottom:327.880350px;}
.yf8{bottom:328.043100px;}
.y16b{bottom:328.539150px;}
.y1f3{bottom:330.329700px;}
.y124{bottom:331.399950px;}
.y8{bottom:332.515800px;}
.y26c{bottom:333.082200px;}
.y2bc{bottom:335.702250px;}
.y140{bottom:336.547050px;}
.y241{bottom:339.880350px;}
.yc9{bottom:340.019550px;}
.y55{bottom:340.033650px;}
.ya8{bottom:340.539150px;}
.y7f{bottom:344.035200px;}
.y296{bottom:345.580950px;}
.y1c5{bottom:345.880350px;}
.y21c{bottom:346.345350px;}
.y1f2{bottom:348.329700px;}
.y194{bottom:348.499800px;}
.yf7{bottom:349.043100px;}
.y16a{bottom:349.539150px;}
.y123{bottom:352.399950px;}
.y7{bottom:353.267700px;}
.y26b{bottom:354.082200px;}
.y29{bottom:355.475850px;}
.y13f{bottom:357.547050px;}
.y54{bottom:360.213150px;}
.y240{bottom:360.880350px;}
.y2bb{bottom:361.213950px;}
.ya7{bottom:361.539150px;}
.y1c4{bottom:363.880350px;}
.y7e{bottom:365.035200px;}
.y1f1{bottom:366.329700px;}
.y295{bottom:366.580950px;}
.y21b{bottom:367.345350px;}
.y193{bottom:369.499800px;}
.yf6{bottom:370.043100px;}
.y169{bottom:370.539150px;}
.y122{bottom:373.400100px;}
.ye{bottom:373.621350px;}
.y26a{bottom:375.082200px;}
.y28{bottom:376.475850px;}
.y1c3{bottom:381.880350px;}
.ya6{bottom:382.539150px;}
.y53{bottom:385.019550px;}
.y7d{bottom:386.035200px;}
.y2ba{bottom:386.725800px;}
.y2d9{bottom:387.051000px;}
.y294{bottom:387.580950px;}
.y192{bottom:390.499800px;}
.ydf{bottom:391.043100px;}
.y168{bottom:391.539150px;}
.y121{bottom:394.400100px;}
.y269{bottom:396.082200px;}
.y21a{bottom:396.849300px;}
.y27{bottom:397.475850px;}
.y1c2{bottom:399.880350px;}
.y1f0{bottom:401.337450px;}
.yf{bottom:401.531550px;}
.ya5{bottom:403.539150px;}
.y13e{bottom:404.058900px;}
.y2d8{bottom:408.051000px;}
.y23f{bottom:411.384300px;}
.yde{bottom:412.043100px;}
.y2b9{bottom:412.237650px;}
.y167{bottom:412.539150px;}
.y7c{bottom:415.539150px;}
.y268{bottom:417.082200px;}
.y293{bottom:417.084900px;}
.y219{bottom:417.849300px;}
.y1c1{bottom:417.880350px;}
.y26{bottom:418.475850px;}
.y52{bottom:418.527300px;}
.y191{bottom:420.003750px;}
.y1ef{bottom:422.337450px;}
.y120{bottom:423.904050px;}
.ya4{bottom:424.539150px;}
.y13d{bottom:425.058900px;}
.y2d7{bottom:429.051000px;}
.y23e{bottom:432.384300px;}
.ydd{bottom:433.043100px;}
.y166{bottom:433.539150px;}
.y7b{bottom:436.539150px;}
.y2b8{bottom:437.749350px;}
.y267{bottom:438.082200px;}
.y292{bottom:438.084900px;}
.y218{bottom:438.849300px;}
.y25{bottom:439.475850px;}
.y51{bottom:439.527300px;}
.y190{bottom:441.003750px;}
.yf5{bottom:441.547050px;}
.y1ee{bottom:443.337450px;}
.y11f{bottom:444.904050px;}
.ya3{bottom:445.539150px;}
.y13c{bottom:446.058900px;}
.y2d6{bottom:450.051000px;}
.y1c0{bottom:452.888250px;}
.y23d{bottom:453.384300px;}
.ydc{bottom:454.043100px;}
.y7a{bottom:457.539150px;}
.y266{bottom:459.082200px;}
.y291{bottom:459.084900px;}
.y217{bottom:459.849300px;}
.y24{bottom:460.475850px;}
.y18f{bottom:462.003750px;}
.yf4{bottom:462.547050px;}
.y165{bottom:463.043100px;}
.y2b7{bottom:463.261200px;}
.y1ed{bottom:464.337450px;}
.y11e{bottom:465.904050px;}
.ya2{bottom:466.539150px;}
.y13b{bottom:467.058900px;}
.y50{bottom:469.031400px;}
.y2d5{bottom:471.051000px;}
.y1bf{bottom:473.888250px;}
.y23c{bottom:474.384300px;}
.yc8{bottom:475.043100px;}
.y79{bottom:478.539150px;}
.y265{bottom:480.082200px;}
.y290{bottom:480.084900px;}
.y216{bottom:480.849300px;}
.y23{bottom:481.475850px;}
.y18e{bottom:483.003750px;}
.yf3{bottom:483.547050px;}
.y164{bottom:484.043100px;}
.y1ec{bottom:485.337450px;}
.y11d{bottom:486.904050px;}
.ya1{bottom:487.539150px;}
.y13a{bottom:488.058900px;}
.y2b6{bottom:488.773050px;}
.y4f{bottom:490.031400px;}
.y2d4{bottom:492.051000px;}
.y1be{bottom:494.888250px;}
.y23b{bottom:495.384300px;}
.yc7{bottom:496.043100px;}
.y78{bottom:499.539150px;}
.y28f{bottom:501.084900px;}
.y215{bottom:501.849300px;}
.yf2{bottom:504.547050px;}
.y163{bottom:505.043100px;}
.ya0{bottom:508.539150px;}
.y139{bottom:509.058900px;}
.y264{bottom:509.586150px;}
.y22{bottom:510.979800px;}
.y4e{bottom:511.031400px;}
.y2b5{bottom:514.284900px;}
.y11c{bottom:516.407850px;}
.yc6{bottom:517.043100px;}
.y77{bottom:520.539150px;}
.y18d{bottom:521.011650px;}
.y2d3{bottom:521.554950px;}
.y28e{bottom:522.084900px;}
.y214{bottom:522.849300px;}
.y1eb{bottom:523.345350px;}
.y1bd{bottom:524.392200px;}
.y23a{bottom:524.888250px;}
.yf1{bottom:525.547050px;}
.y162{bottom:526.043100px;}
.y9f{bottom:529.539150px;}
.y138{bottom:530.058900px;}
.y263{bottom:530.586150px;}
.y21{bottom:531.979800px;}
.y4d{bottom:532.031400px;}
.y11b{bottom:537.407850px;}
.yc5{bottom:538.043100px;}
.y18c{bottom:539.011650px;}
.y2b4{bottom:539.796600px;}
.y1ea{bottom:541.345350px;}
.y76{bottom:541.539150px;}
.y2d2{bottom:542.554950px;}
.y28d{bottom:543.084900px;}
.y1bc{bottom:545.392200px;}
.y239{bottom:545.888250px;}
.yf0{bottom:546.547050px;}
.y161{bottom:547.043100px;}
.y9e{bottom:550.539150px;}
.y262{bottom:551.586150px;}
.y213{bottom:552.353250px;}
.y20{bottom:552.979800px;}
.y4c{bottom:553.031400px;}
.y18b{bottom:557.011650px;}
.y11a{bottom:558.407850px;}
.yc4{bottom:559.043100px;}
.y1e9{bottom:559.345350px;}
.y137{bottom:559.562850px;}
.y75{bottom:562.539150px;}
.y2d1{bottom:563.554950px;}
.y2b3{bottom:565.308450px;}
.y1bb{bottom:566.392200px;}
.y238{bottom:566.888250px;}
.y176{bottom:567.547050px;}
.y160{bottom:568.043100px;}
.y9d{bottom:571.539150px;}
.y261{bottom:572.586150px;}
.y212{bottom:573.353250px;}
.y1f{bottom:573.979800px;}
.y4b{bottom:574.031400px;}
.y18a{bottom:575.011650px;}
.yef{bottom:576.051000px;}
.y1e8{bottom:577.345350px;}
.y119{bottom:579.407850px;}
.yc3{bottom:580.043100px;}
.y136{bottom:580.562850px;}
.y1ba{bottom:587.392200px;}
.y237{bottom:587.888250px;}
.y175{bottom:588.547050px;}
.y15f{bottom:589.043100px;}
.y2b2{bottom:590.820300px;}
.y74{bottom:592.043100px;}
.y28c{bottom:592.475700px;}
.y9c{bottom:592.539150px;}
.y189{bottom:593.011650px;}
.y2d0{bottom:593.058900px;}
.y260{bottom:593.586150px;}
.y211{bottom:594.353250px;}
.y1e{bottom:594.979800px;}
.y4a{bottom:595.031400px;}
.y1e7{bottom:595.345350px;}
.yee{bottom:597.051000px;}
.y118{bottom:600.407850px;}
.yfd{bottom:601.043100px;}
.y135{bottom:601.562850px;}
.y1b9{bottom:608.392200px;}
.y236{bottom:608.888250px;}
.yc2{bottom:609.547050px;}
.y15e{bottom:610.043100px;}
.y9b{bottom:613.539150px;}
.y2cf{bottom:614.058900px;}
.y210{bottom:615.353250px;}
.y1d{bottom:615.979800px;}
.y49{bottom:616.031400px;}
.y2b1{bottom:616.332150px;}
.y28b{bottom:617.662950px;}
.yed{bottom:618.051000px;}
.y117{bottom:621.407850px;}
.y134{bottom:622.562850px;}
.y25f{bottom:623.090100px;}
.y188{bottom:628.019550px;}
.y235{bottom:629.888250px;}
.y1e6{bottom:630.353250px;}
.yc1{bottom:630.547050px;}
.y15d{bottom:631.043100px;}
.y9a{bottom:634.539150px;}
.y2ce{bottom:635.058900px;}
.y20f{bottom:636.353250px;}
.y1c{bottom:636.979800px;}
.y48{bottom:637.031400px;}
.y1b8{bottom:637.896150px;}
.yec{bottom:639.051000px;}
.y2b0{bottom:641.843850px;}
.y116{bottom:642.407850px;}
.y28a{bottom:642.850200px;}
.y133{bottom:643.562850px;}
.y25e{bottom:644.090100px;}
.y73{bottom:647.058900px;}
.y187{bottom:649.019550px;}
.y234{bottom:650.888250px;}
.y1e5{bottom:651.353250px;}
.yc0{bottom:651.547050px;}
.y15c{bottom:652.043100px;}
.y99{bottom:655.539150px;}
.ydb{bottom:656.058900px;}
.y20e{bottom:657.353250px;}
.y1b{bottom:657.979800px;}
.y47{bottom:658.031400px;}
.y1b7{bottom:658.896150px;}
.y2ff{bottom:659.302650px;}
.yeb{bottom:660.051000px;}
.y115{bottom:663.407850px;}
.y132{bottom:664.562850px;}
.y72{bottom:665.058900px;}
.y25d{bottom:665.090100px;}
.y2af{bottom:667.355700px;}
.y289{bottom:668.037600px;}
.y186{bottom:670.019550px;}
.y233{bottom:671.888250px;}
.y1e4{bottom:672.353250px;}
.ybf{bottom:672.547050px;}
.y15b{bottom:673.043100px;}
.y2fe{bottom:674.302650px;}
.y98{bottom:676.539150px;}
.yda{bottom:677.058900px;}
.y20d{bottom:678.353250px;}
.y1a{bottom:678.979800px;}
.y1b6{bottom:679.896150px;}
.yea{bottom:681.051000px;}
.y71{bottom:683.058900px;}
.y114{bottom:684.407850px;}
.y131{bottom:685.562850px;}
.y25c{bottom:686.090100px;}
.y46{bottom:687.535200px;}
.y185{bottom:691.019550px;}
.y2ae{bottom:692.867550px;}
.y232{bottom:692.888250px;}
.y288{bottom:693.224850px;}
.y1e3{bottom:693.353250px;}
.ybe{bottom:693.547050px;}
.y2fd{bottom:697.806450px;}
.yd9{bottom:698.058900px;}
.y20c{bottom:699.353250px;}
.y19{bottom:699.979800px;}
.y1b5{bottom:700.896150px;}
.y70{bottom:701.058900px;}
.ye9{bottom:702.051000px;}
.y15a{bottom:702.547050px;}
.y113{bottom:705.407850px;}
.y97{bottom:706.043100px;}
.y130{bottom:706.562850px;}
.y25b{bottom:707.090100px;}
.y45{bottom:708.535200px;}
.y184{bottom:712.019550px;}
.y2fc{bottom:712.806450px;}
.y1e2{bottom:714.353250px;}
.ybd{bottom:714.547050px;}
.y2e8{bottom:715.594050px;}
.y2ad{bottom:718.379400px;}
.y287{bottom:718.412100px;}
.y2cd{bottom:719.058900px;}
.y18{bottom:720.979800px;}
.y1b4{bottom:721.896150px;}
.ye8{bottom:723.051000px;}
.y159{bottom:723.547050px;}
.y112{bottom:726.407850px;}
.y96{bottom:727.043100px;}
.yd8{bottom:727.562850px;}
.y25a{bottom:728.090100px;}
.y20b{bottom:728.857200px;}
.y44{bottom:729.535200px;}
.y231{bottom:730.896150px;}
.y1aa{bottom:731.554950px;}
.y1e1{bottom:735.353250px;}
.ybc{bottom:735.547050px;}
.y6f{bottom:736.066800px;}
.y2fb{bottom:736.310550px;}
.y2e7{bottom:736.594050px;}
.y2cc{bottom:740.058900px;}
.y183{bottom:741.523500px;}
.y17{bottom:741.979800px;}
.y1b3{bottom:742.896150px;}
.y286{bottom:743.599350px;}
.y2ac{bottom:743.891100px;}
.ye7{bottom:744.051000px;}
.y111{bottom:747.407850px;}
.y95{bottom:748.043100px;}
.yd7{bottom:748.562850px;}
.y230{bottom:748.896150px;}
.y259{bottom:749.090100px;}
.y43{bottom:750.535200px;}
.y2fa{bottom:751.310550px;}
.y1a9{bottom:752.554950px;}
.y158{bottom:753.051000px;}
.y1e0{bottom:756.353250px;}
.ybb{bottom:756.547050px;}
.y6e{bottom:757.066800px;}
.y2e6{bottom:757.594050px;}
.y2cb{bottom:761.058900px;}
.y16{bottom:762.979800px;}
.y1b2{bottom:763.896150px;}
.ye6{bottom:765.051000px;}
.y22f{bottom:766.896150px;}
.y110{bottom:768.408000px;}
.y285{bottom:768.786750px;}
.y94{bottom:769.043100px;}
.y2ab{bottom:769.402950px;}
.yd6{bottom:769.562850px;}
.y258{bottom:770.090100px;}
.y42{bottom:771.535200px;}
.y1a8{bottom:773.554950px;}
.y157{bottom:774.051000px;}
.y2f9{bottom:774.814500px;}
.y20a{bottom:775.369050px;}
.y1df{bottom:777.353250px;}
.y6d{bottom:778.066800px;}
.y2e5{bottom:778.594050px;}
.y2ca{bottom:782.058900px;}
.y15{bottom:783.979800px;}
.y1b1{bottom:784.896150px;}
.yba{bottom:786.051000px;}
.y182{bottom:788.035200px;}
.y10f{bottom:789.408000px;}
.y93{bottom:790.043100px;}
.y174{bottom:790.562850px;}
.y257{bottom:791.090100px;}
.y2a5{bottom:791.492550px;}
.y2aa{bottom:792.248550px;}
.y41{bottom:792.535200px;}
.y284{bottom:793.974000px;}
.ye5{bottom:794.554950px;}
.y156{bottom:795.051000px;}
.y209{bottom:796.369050px;}
.y2a7{bottom:798.248550px;}
.y2f8{bottom:798.318300px;}
.y6c{bottom:799.066800px;}
.y2e4{bottom:799.594050px;}
.y22e{bottom:801.904050px;}
.y2a9{bottom:804.248550px;}
.y14{bottom:804.979800px;}
.y1b0{bottom:805.896150px;}
.y1de{bottom:806.857200px;}
.yb9{bottom:807.051000px;}
.y181{bottom:809.035200px;}
.y2a6{bottom:810.248550px;}
.y10e{bottom:810.408000px;}
.y173{bottom:811.562850px;}
.y256{bottom:812.090100px;}
.y2f7{bottom:813.318300px;}
.y40{bottom:813.535200px;}
.y6{bottom:813.937350px;}
.y1a7{bottom:815.554950px;}
.y2a8{bottom:816.248550px;}
.y208{bottom:817.369050px;}
.y283{bottom:819.161250px;}
.y92{bottom:819.547050px;}
.y6b{bottom:820.066800px;}
.y2e3{bottom:820.594050px;}
.y22d{bottom:822.904050px;}
.y155{bottom:824.554950px;}
.y1af{bottom:826.896150px;}
.y1dd{bottom:827.857200px;}
.yb8{bottom:828.051000px;}
.y180{bottom:830.035200px;}
.y10d{bottom:831.408000px;}
.y2c9{bottom:832.562850px;}
.y255{bottom:833.090100px;}
.y3f{bottom:834.535200px;}
.y1a6{bottom:836.554950px;}
.y2f6{bottom:836.822250px;}
.y207{bottom:838.369050px;}
.y2a4{bottom:841.054950px;}
.y6a{bottom:841.066800px;}
.y2e2{bottom:841.594050px;}
.y22c{bottom:843.904050px;}
.y282{bottom:844.348500px;}
.y154{bottom:845.554950px;}
.y1ae{bottom:847.896150px;}
.y1dc{bottom:848.857200px;}
.yb7{bottom:849.051000px;}
.y17f{bottom:851.035200px;}
.y2f5{bottom:851.822250px;}
.y2c8{bottom:853.562850px;}
.y254{bottom:854.090100px;}
.y3e{bottom:855.535200px;}
.yfc{bottom:857.554950px;}
.y10c{bottom:860.911800px;}
.y69{bottom:862.066800px;}
.y2e1{bottom:862.594050px;}
.y22b{bottom:864.904050px;}
.y153{bottom:866.554950px;}
.y206{bottom:867.873000px;}
.y1ad{bottom:868.896150px;}
.y281{bottom:869.535900px;}
.y1db{bottom:869.857200px;}
.yb6{bottom:870.051000px;}
.y17e{bottom:872.035200px;}
.y13{bottom:872.491650px;}
.y91{bottom:874.562850px;}
.y253{bottom:875.090100px;}
.y2f4{bottom:875.326200px;}
.y3d{bottom:876.535200px;}
.y1a5{bottom:878.554950px;}
.y10b{bottom:881.911800px;}
.y68{bottom:883.066800px;}
.y2e0{bottom:883.594050px;}
.y22a{bottom:885.904050px;}
.y152{bottom:887.554950px;}
.y205{bottom:888.873000px;}
.y2f3{bottom:890.326200px;}
.y90{bottom:892.562850px;}
.y17d{bottom:893.035200px;}
.y280{bottom:894.723150px;}
.y2a3{bottom:895.562850px;}
.y5{bottom:895.663950px;}
.y1ac{bottom:898.399950px;}
.y1da{bottom:899.361150px;}
.yb5{bottom:899.554950px;}
.y10a{bottom:902.911800px;}
.yd5{bottom:904.066800px;}
.y252{bottom:904.594050px;}
.y3c{bottom:906.039150px;}
.y151{bottom:908.554950px;}
.y204{bottom:909.873000px;}
.y8f{bottom:910.562850px;}
.y67{bottom:912.570750px;}
.y2f2{bottom:913.830150px;}
.y229{bottom:915.408000px;}
.y2c7{bottom:916.562850px;}
.y27f{bottom:919.910400px;}
.y1d9{bottom:920.361150px;}
.y109{bottom:923.911800px;}
.yd4{bottom:925.066800px;}
.y251{bottom:925.594050px;}
.y8e{bottom:928.562850px;}
.y2f1{bottom:928.830150px;}
.y150{bottom:929.554950px;}
.y203{bottom:930.873000px;}
.y17c{bottom:931.043100px;}
.y66{bottom:933.570750px;}
.y228{bottom:936.408000px;}
.y1a4{bottom:937.562850px;}
.y1d8{bottom:941.361150px;}
.y108{bottom:944.911800px;}
.y27e{bottom:945.097650px;}
.yb4{bottom:946.066800px;}
.y8d{bottom:946.562850px;}
.y250{bottom:946.594050px;}
.y14f{bottom:950.554950px;}
.y202{bottom:951.873000px;}
.y2f0{bottom:952.334100px;}
.y3b{bottom:952.551000px;}
.y65{bottom:954.570750px;}
.y1a3{bottom:955.562850px;}
.y4{bottom:955.663950px;}
.y227{bottom:957.408000px;}
.y1d7{bottom:962.361150px;}
.y8c{bottom:964.562850px;}
.y107{bottom:965.911800px;}
.yb3{bottom:967.066800px;}
.y2ef{bottom:967.334100px;}
.y24f{bottom:967.594050px;}
.y27d{bottom:970.285050px;}
.y14e{bottom:971.554950px;}
.y201{bottom:972.873000px;}
.y1a2{bottom:973.562850px;}
.y64{bottom:975.570750px;}
.y226{bottom:978.408000px;}
.y2ee{bottom:982.334100px;}
.y8b{bottom:982.562850px;}
.y1d6{bottom:983.361150px;}
.y106{bottom:986.911800px;}
.yb2{bottom:988.066800px;}
.y1a1{bottom:991.562850px;}
.y200{bottom:993.873000px;}
.y17b{bottom:994.562850px;}
.y27c{bottom:995.472300px;}
.y63{bottom:996.570750px;}
.y24e{bottom:997.098000px;}
.y225{bottom:999.408000px;}
.y1d5{bottom:1004.361150px;}
.y2ed{bottom:1005.838050px;}
.y105{bottom:1007.911800px;}
.y12f{bottom:1009.066800px;}
.y14d{bottom:1009.562850px;}
.y17a{bottom:1012.562850px;}
.y1ff{bottom:1014.873000px;}
.y3{bottom:1015.663950px;}
.y3a{bottom:1016.070750px;}
.y62{bottom:1017.570750px;}
.y24d{bottom:1018.098000px;}
.y224{bottom:1020.408000px;}
.y27b{bottom:1020.659550px;}
.y2ec{bottom:1020.838050px;}
.y14c{bottom:1027.562850px;}
.y104{bottom:1028.911800px;}
.y12e{bottom:1030.066800px;}
.y179{bottom:1030.562850px;}
.y1d4{bottom:1033.865100px;}
.y39{bottom:1038.570750px;}
.y24c{bottom:1039.098000px;}
.y2eb{bottom:1044.342000px;}
.y14b{bottom:1045.562850px;}
.y27a{bottom:1045.846950px;}
.y178{bottom:1048.562850px;}
.y103{bottom:1049.911800px;}
.y12d{bottom:1051.066800px;}
.y1fe{bottom:1052.880750px;}
.y2ea{bottom:1059.342000px;}
.y38{bottom:1059.570750px;}
.y24b{bottom:1060.098000px;}
.y177{bottom:1066.562850px;}
.y1fd{bottom:1070.880750px;}
.y102{bottom:1070.911800px;}
.y279{bottom:1071.034200px;}
.y277{bottom:1072.221450px;}
.y2{bottom:1075.663950px;}
.y37{bottom:1080.570750px;}
.y24a{bottom:1081.098000px;}
.y2e9{bottom:1082.845950px;}
.y276{bottom:1084.221450px;}
.y1d3{bottom:1088.880750px;}
.y101{bottom:1091.911800px;}
.y278{bottom:1096.221450px;}
.y36{bottom:1101.570750px;}
.y1d2{bottom:1106.880750px;}
.y249{bottom:1119.105900px;}
.y100{bottom:1121.415750px;}
.y35{bottom:1122.570750px;}
.y1d1{bottom:1124.880750px;}
.y275{bottom:1126.035750px;}
.y1{bottom:1135.663950px;}
.y12{bottom:1202.307900px;}
.y11{bottom:1218.507900px;}
.h6{height:27.525600px;}
.h10{height:37.212000px;}
.h15{height:38.089846px;}
.h5{height:41.288400px;}
.h13{height:41.689453px;}
.hc{height:42.880000px;}
.hf{height:43.116000px;}
.h4{height:48.240000px;}
.h9{height:48.276000px;}
.h12{height:53.600000px;}
.h14{height:57.134769px;}
.hb{height:58.960000px;}
.h11{height:59.284500px;}
.h8{height:64.320000px;}
.he{height:64.674000px;}
.hd{height:66.657231px;}
.ha{height:75.453000px;}
.h7{height:110.095673px;}
.h3{height:200.634000px;}
.h2{height:225.120000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:28.128900px;}
.x6{left:85.039350px;}
.x1b{left:91.792200px;}
.x2{left:126.391950px;}
.x1{left:127.559100px;}
.x12{left:131.811000px;}
.x28{left:136.063050px;}
.xc{left:154.497450px;}
.x1a{left:157.433100px;}
.xf{left:166.363500px;}
.x11{left:174.330750px;}
.x13{left:184.035300px;}
.x1d{left:198.395850px;}
.x1c{left:205.882350px;}
.x14{left:210.852000px;}
.x19{left:233.505900px;}
.x18{left:236.077950px;}
.xe{left:259.266450px;}
.xd{left:266.668950px;}
.x1f{left:281.636400px;}
.x1e{left:284.403300px;}
.xa{left:290.451000px;}
.x15{left:341.027850px;}
.x9{left:343.806300px;}
.x20{left:359.893650px;}
.x10{left:367.027650px;}
.x17{left:428.596500px;}
.x23{left:439.672200px;}
.x16{left:441.969300px;}
.x8{left:447.742200px;}
.x22{left:454.077900px;}
.x21{left:456.650550px;}
.xb{left:468.785850px;}
.x25{left:527.446650px;}
.x26{left:535.919850px;}
.x24{left:537.001350px;}
.x3{left:549.636000px;}
.x4{left:554.538600px;}
.x27{left:629.806200px;}
.x7{left:836.002950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls3{letter-spacing:-3.567296pt;}
.ls2f{letter-spacing:-2.346667pt;}
.ls33{letter-spacing:-1.866667pt;}
.ls20{letter-spacing:-1.760000pt;}
.ls30{letter-spacing:-1.466667pt;}
.ls3f{letter-spacing:-1.232000pt;}
.ls35{letter-spacing:-1.056000pt;}
.ls12{letter-spacing:-0.933333pt;}
.ls4a{letter-spacing:-0.554667pt;}
.ls44{letter-spacing:-0.485333pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls4b{letter-spacing:-0.426667pt;}
.ls37{letter-spacing:-0.352000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.293333pt;}
.ls1d{letter-spacing:-0.234667pt;}
.ls1e{letter-spacing:-0.176000pt;}
.ls40{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.117333pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls4c{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.058667pt;}
.ls25{letter-spacing:0.117333pt;}
.ls42{letter-spacing:0.144000pt;}
.ls31{letter-spacing:0.170512pt;}
.ls1b{letter-spacing:0.176000pt;}
.ls1a{letter-spacing:0.221179pt;}
.ls17{letter-spacing:0.234667pt;}
.ls41{letter-spacing:0.240000pt;}
.ls47{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.264000pt;}
.ls32{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.293333pt;}
.lsa{letter-spacing:0.298667pt;}
.ls3b{letter-spacing:0.341712pt;}
.ls29{letter-spacing:0.352000pt;}
.ls1c{letter-spacing:0.362667pt;}
.ls19{letter-spacing:0.381333pt;}
.ls3c{letter-spacing:0.408000pt;}
.ls15{letter-spacing:0.410667pt;}
.ls46{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.469333pt;}
.ls4{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.485712pt;}
.ls49{letter-spacing:0.490667pt;}
.ls24{letter-spacing:0.498667pt;}
.ls23{letter-spacing:0.528000pt;}
.ls3a{letter-spacing:0.557333pt;}
.ls2c{letter-spacing:0.585600pt;}
.ls2b{letter-spacing:0.586133pt;}
.ls7{letter-spacing:0.586667pt;}
.ls45{letter-spacing:0.616000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.645333pt;}
.ls3e{letter-spacing:0.672000pt;}
.ls2a{letter-spacing:0.674667pt;}
.ls13{letter-spacing:0.704000pt;}
.ls28{letter-spacing:0.733333pt;}
.lsb{letter-spacing:0.746667pt;}
.ls22{letter-spacing:0.762667pt;}
.ls39{letter-spacing:0.792000pt;}
.ls5{letter-spacing:0.821333pt;}
.ls6{letter-spacing:0.880000pt;}
.ls9{letter-spacing:0.938667pt;}
.lsd{letter-spacing:0.997333pt;}
.ls16{letter-spacing:1.056000pt;}
.ls14{letter-spacing:1.085333pt;}
.ls3d{letter-spacing:1.171200pt;}
.lse{letter-spacing:1.173333pt;}
.ls2d{letter-spacing:1.232000pt;}
.ls26{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.466667pt;}
.ls34{letter-spacing:1.701333pt;}
.ls2e{letter-spacing:2.104533pt;}
.ls48{letter-spacing:2.856000pt;}
.wsb9{word-spacing:-20.906667pt;}
.ws8c{word-spacing:-17.920000pt;}
.ws56{word-spacing:-17.072000pt;}
.ws65{word-spacing:-16.896000pt;}
.ws8d{word-spacing:-16.778667pt;}
.ws71{word-spacing:-16.544000pt;}
.ws24{word-spacing:-16.426667pt;}
.ws4f{word-spacing:-16.368000pt;}
.ws85{word-spacing:-16.192000pt;}
.ws78{word-spacing:-16.133333pt;}
.ws30{word-spacing:-15.840000pt;}
.ws81{word-spacing:-15.722667pt;}
.ws72{word-spacing:-15.429333pt;}
.ws23{word-spacing:-14.842667pt;}
.ws4e{word-spacing:-14.725333pt;}
.ws79{word-spacing:-14.490667pt;}
.ws64{word-spacing:-14.256000pt;}
.ws5f{word-spacing:-13.962667pt;}
.ws5a{word-spacing:-12.960000pt;}
.ws77{word-spacing:-12.144000pt;}
.ws0{word-spacing:-11.184000pt;}
.wsbd{word-spacing:-10.794667pt;}
.wsbc{word-spacing:-10.368000pt;}
.ws9d{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.320000pt;}
.ws50{word-spacing:-3.168000pt;}
.ws32{word-spacing:-3.109333pt;}
.ws46{word-spacing:-2.874667pt;}
.ws33{word-spacing:-2.816000pt;}
.ws76{word-spacing:-2.698667pt;}
.ws69{word-spacing:-2.522667pt;}
.ws58{word-spacing:-2.405333pt;}
.ws8a{word-spacing:-2.352000pt;}
.ws51{word-spacing:-2.346667pt;}
.ws8{word-spacing:-2.288000pt;}
.ws2a{word-spacing:-2.229333pt;}
.ws57{word-spacing:-2.170667pt;}
.ws39{word-spacing:-2.112000pt;}
.wsc5{word-spacing:-2.090667pt;}
.ws94{word-spacing:-2.053333pt;}
.wsc2{word-spacing:-2.048000pt;}
.ws55{word-spacing:-1.994667pt;}
.ws1e{word-spacing:-1.936000pt;}
.wsba{word-spacing:-1.877333pt;}
.ws89{word-spacing:-1.872000pt;}
.ws45{word-spacing:-1.760000pt;}
.ws5b{word-spacing:-1.642667pt;}
.ws6c{word-spacing:-1.466667pt;}
.ws4c{word-spacing:-1.408000pt;}
.ws74{word-spacing:-1.232000pt;}
.ws1f{word-spacing:-1.173333pt;}
.ws27{word-spacing:-1.114667pt;}
.ws2d{word-spacing:-1.056000pt;}
.ws1d{word-spacing:-0.997333pt;}
.wsc8{word-spacing:-0.981333pt;}
.wsc{word-spacing:-0.938667pt;}
.ws7{word-spacing:-0.880000pt;}
.ws6{word-spacing:-0.821333pt;}
.wsc9{word-spacing:-0.810667pt;}
.ws43{word-spacing:-0.762667pt;}
.ws5{word-spacing:-0.746667pt;}
.ws26{word-spacing:-0.704000pt;}
.ws82{word-spacing:-0.672000pt;}
.ws40{word-spacing:-0.645333pt;}
.ws7d{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.586667pt;}
.ws47{word-spacing:-0.528000pt;}
.wsc7{word-spacing:-0.512000pt;}
.ws2c{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.469333pt;}
.ws7f{word-spacing:-0.432000pt;}
.wsbe{word-spacing:-0.426667pt;}
.ws29{word-spacing:-0.410667pt;}
.ws3f{word-spacing:-0.384000pt;}
.ws53{word-spacing:-0.352000pt;}
.wse{word-spacing:-0.298667pt;}
.wsb{word-spacing:-0.293333pt;}
.ws5d{word-spacing:-0.266667pt;}
.wsbf{word-spacing:-0.256000pt;}
.ws92{word-spacing:-0.240000pt;}
.ws2e{word-spacing:-0.234667pt;}
.ws3a{word-spacing:-0.176000pt;}
.ws93{word-spacing:-0.144000pt;}
.ws48{word-spacing:-0.117333pt;}
.ws37{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.042667pt;}
.ws22{word-spacing:0.058667pt;}
.ws31{word-spacing:0.117333pt;}
.wsf{word-spacing:0.128000pt;}
.ws3d{word-spacing:0.176000pt;}
.ws36{word-spacing:0.234667pt;}
.ws61{word-spacing:0.293333pt;}
.ws62{word-spacing:0.352000pt;}
.ws83{word-spacing:0.384000pt;}
.wsc4{word-spacing:0.426667pt;}
.ws3{word-spacing:0.480000pt;}
.ws84{word-spacing:0.528000pt;}
.wsc1{word-spacing:0.554667pt;}
.ws25{word-spacing:0.586667pt;}
.ws75{word-spacing:0.645333pt;}
.ws2b{word-spacing:0.704000pt;}
.ws87{word-spacing:0.762667pt;}
.ws35{word-spacing:0.816000pt;}
.ws54{word-spacing:0.821333pt;}
.ws9{word-spacing:0.880000pt;}
.ws3e{word-spacing:0.938667pt;}
.ws4d{word-spacing:0.997333pt;}
.ws60{word-spacing:1.056000pt;}
.ws6f{word-spacing:1.173333pt;}
.ws3c{word-spacing:1.232000pt;}
.ws7c{word-spacing:1.248000pt;}
.ws6e{word-spacing:1.290667pt;}
.ws42{word-spacing:1.349333pt;}
.ws95{word-spacing:1.408000pt;}
.ws2f{word-spacing:1.466667pt;}
.wsb7{word-spacing:1.525333pt;}
.wsb8{word-spacing:1.701333pt;}
.ws3b{word-spacing:1.760000pt;}
.ws34{word-spacing:1.824000pt;}
.ws5e{word-spacing:1.866667pt;}
.ws44{word-spacing:1.936000pt;}
.ws6a{word-spacing:2.053333pt;}
.ws80{word-spacing:2.160000pt;}
.ws86{word-spacing:2.229333pt;}
.ws66{word-spacing:2.288000pt;}
.wsd{word-spacing:2.346667pt;}
.ws6d{word-spacing:2.405333pt;}
.wsc3{word-spacing:2.432000pt;}
.ws7e{word-spacing:2.464000pt;}
.wsbb{word-spacing:2.522667pt;}
.wsb6{word-spacing:2.581333pt;}
.ws49{word-spacing:2.640000pt;}
.ws28{word-spacing:2.698667pt;}
.ws88{word-spacing:2.933333pt;}
.ws38{word-spacing:2.992000pt;}
.ws20{word-spacing:3.109333pt;}
.wsc0{word-spacing:3.114667pt;}
.ws59{word-spacing:3.285333pt;}
.ws68{word-spacing:3.402667pt;}
.ws52{word-spacing:3.461333pt;}
.ws4{word-spacing:3.567296pt;}
.ws8f{word-spacing:3.578667pt;}
.ws67{word-spacing:3.754667pt;}
.ws8b{word-spacing:3.813333pt;}
.ws8e{word-spacing:3.930667pt;}
.ws90{word-spacing:3.989333pt;}
.ws7a{word-spacing:4.048000pt;}
.ws6b{word-spacing:4.106667pt;}
.ws73{word-spacing:4.224000pt;}
.ws41{word-spacing:4.282667pt;}
.ws7b{word-spacing:4.517333pt;}
.ws91{word-spacing:4.869333pt;}
.ws5c{word-spacing:4.986667pt;}
.ws70{word-spacing:6.277333pt;}
.ws4a{word-spacing:7.978667pt;}
.ws4b{word-spacing:8.917333pt;}
.ws63{word-spacing:11.322667pt;}
.wsab{word-spacing:66.404267pt;}
.wsb5{word-spacing:67.374933pt;}
.wsb3{word-spacing:68.345600pt;}
.wsa6{word-spacing:69.244800pt;}
.wsb4{word-spacing:72.209600pt;}
.wsaa{word-spacing:76.497600pt;}
.wsa1{word-spacing:78.499200pt;}
.wsa5{word-spacing:78.499733pt;}
.wsb1{word-spacing:79.433600pt;}
.wsa3{word-spacing:81.950933pt;}
.wsa9{word-spacing:82.402133pt;}
.wsaf{word-spacing:84.698133pt;}
.wsa2{word-spacing:87.537600pt;}
.wsac{word-spacing:90.446933pt;}
.wsa7{word-spacing:92.684267pt;}
.wsa0{word-spacing:92.684800pt;}
.wsae{word-spacing:94.790400pt;}
.wsa4{word-spacing:100.243733pt;}
.ws9f{word-spacing:103.626133pt;}
.wsb0{word-spacing:109.673067pt;}
.wsa8{word-spacing:117.228800pt;}
.wsb2{word-spacing:119.755733pt;}
.ws9e{word-spacing:126.273600pt;}
.ws96{word-spacing:157.023467pt;}
.ws10{word-spacing:173.328533pt;}
.ws99{word-spacing:197.346133pt;}
.ws9b{word-spacing:215.638400pt;}
.ws97{word-spacing:215.638933pt;}
.ws98{word-spacing:223.739733pt;}
.ws9c{word-spacing:223.740267pt;}
.ws9a{word-spacing:233.932267pt;}
.ws1a{word-spacing:237.830933pt;}
.ws18{word-spacing:237.831467pt;}
.wsad{word-spacing:238.681600pt;}
.ws1c{word-spacing:238.764800pt;}
.ws15{word-spacing:256.124800pt;}
.ws13{word-spacing:257.991467pt;}
.ws12{word-spacing:258.924267pt;}
.ws11{word-spacing:267.436267pt;}
.ws19{word-spacing:1001.025067pt;}
.ws16{word-spacing:1019.317867pt;}
.ws1b{word-spacing:1051.760000pt;}
.ws14{word-spacing:1069.829867pt;}
.ws17{word-spacing:1102.272000pt;}
._12{margin-left:-13.801067pt;}
._0{margin-left:-8.960000pt;}
._15{margin-left:-7.162667pt;}
._11{margin-left:-5.164800pt;}
._1{margin-left:-3.808000pt;}
._4{margin-left:-2.160000pt;}
._2{margin-left:-1.136000pt;}
._3{width:0.912000pt;}
._5{width:1.940800pt;}
._6{width:3.197333pt;}
._7{width:4.178667pt;}
._8{width:5.304533pt;}
._10{width:6.880533pt;}
._16{width:7.890667pt;}
._13{width:8.977067pt;}
._14{width:10.113067pt;}
._9{width:32.597333pt;}
._39{width:75.773867pt;}
._4d{width:81.547200pt;}
._28{width:83.928000pt;}
._34{width:84.946667pt;}
._30{width:86.798400pt;}
._45{width:87.747200pt;}
._46{width:89.411200pt;}
._33{width:91.735467pt;}
._4e{width:93.129600pt;}
._3f{width:94.031467pt;}
._31{width:95.003733pt;}
._49{width:97.630933pt;}
._36{width:99.779200pt;}
._3a{width:100.712000pt;}
._3e{width:102.324267pt;}
._38{width:104.074667pt;}
._43{width:106.402667pt;}
._42{width:108.212800pt;}
._37{width:109.214933pt;}
._32{width:110.315733pt;}
._4a{width:114.018133pt;}
._2d{width:115.419733pt;}
._48{width:116.729067pt;}
._2c{width:118.174400pt;}
._2a{width:119.278400pt;}
._29{width:120.708267pt;}
._17{width:122.593067pt;}
._3b{width:123.636267pt;}
._44{width:124.695467pt;}
._2f{width:129.459200pt;}
._2b{width:134.486933pt;}
._4c{width:138.038933pt;}
._47{width:145.436267pt;}
._35{width:147.382400pt;}
._2e{width:165.675200pt;}
._a{width:197.044800pt;}
._3c{width:207.500267pt;}
._4b{width:221.872000pt;}
._21{width:224.972267pt;}
._25{width:236.915733pt;}
._40{width:239.394133pt;}
._1b{width:243.265067pt;}
._3d{width:248.014400pt;}
._27{width:255.207467pt;}
._f{width:257.633600pt;}
._41{width:258.977067pt;}
._22{width:263.374400pt;}
._1c{width:273.501333pt;}
._d{width:275.836267pt;}
._20{width:291.229333pt;}
._1a{width:300.563200pt;}
._1e{width:301.496000pt;}
._e{width:308.279467pt;}
._1f{width:315.846400pt;}
._23{width:318.856533pt;}
._26{width:324.993067pt;}
._1d{width:334.139733pt;}
._24{width:343.285333pt;}
._19{width:352.432533pt;}
._18{width:360.495467pt;}
._c{width:1019.408533pt;}
._b{width:1069.829867pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:34.202667pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:118.909867pt;}
.fs0{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:22.186533pt;}
.y34{bottom:75.590533pt;}
.y2a2{bottom:75.624000pt;}
.y1a0{bottom:78.218533pt;}
.y2c6{bottom:78.333867pt;}
.y1d0{bottom:82.105333pt;}
.y61{bottom:82.383333pt;}
.y14a{bottom:86.260533pt;}
.y33{bottom:87.590533pt;}
.ye4{bottom:89.809067pt;}
.yd3{bottom:92.895733pt;}
.y8a{bottom:92.916800pt;}
.y2a1{bottom:94.290667pt;}
.y19f{bottom:96.885200pt;}
.y2c5{bottom:97.000533pt;}
.y32{bottom:99.590533pt;}
.y1cf{bottom:100.772000pt;}
.y149{bottom:104.927200pt;}
.y60{bottom:104.942400pt;}
.ye3{bottom:108.475733pt;}
.yd2{bottom:111.562400pt;}
.y89{bottom:111.583467pt;}
.y31{bottom:111.590533pt;}
.y2a0{bottom:112.957333pt;}
.y1fc{bottom:113.174933pt;}
.y19e{bottom:115.551867pt;}
.y2c4{bottom:115.667200pt;}
.y1ab{bottom:116.034800pt;}
.y1ce{bottom:119.438667pt;}
.y5f{bottom:122.879600pt;}
.y30{bottom:123.590533pt;}
.y148{bottom:123.593867pt;}
.yb1{bottom:127.142400pt;}
.yd1{bottom:130.229067pt;}
.y88{bottom:130.250133pt;}
.y172{bottom:131.131867pt;}
.y29f{bottom:131.624000pt;}
.y1fb{bottom:131.841600pt;}
.y2c3{bottom:134.333867pt;}
.yfb{bottom:134.701467pt;}
.y12c{bottom:137.685467pt;}
.y274{bottom:139.180667pt;}
.y5e{bottom:140.816933pt;}
.y19d{bottom:141.777600pt;}
.y147{bottom:142.260533pt;}
.y1cd{bottom:145.664533pt;}
.yb0{bottom:145.809067pt;}
.yd0{bottom:148.895733pt;}
.y87{bottom:148.916800pt;}
.y171{bottom:149.798533pt;}
.y29e{bottom:150.290667pt;}
.y1fa{bottom:150.508267pt;}
.y2c2{bottom:153.000533pt;}
.yfa{bottom:153.368133pt;}
.y12b{bottom:156.352133pt;}
.y273{bottom:157.847333pt;}
.y5d{bottom:158.754133pt;}
.y19c{bottom:160.444267pt;}
.y146{bottom:160.927200pt;}
.y1cc{bottom:164.331200pt;}
.yaf{bottom:164.475733pt;}
.y86{bottom:167.583467pt;}
.y170{bottom:168.465200pt;}
.y29d{bottom:168.957333pt;}
.y1f9{bottom:169.174933pt;}
.y248{bottom:171.449200pt;}
.y2c1{bottom:171.667200pt;}
.ye2{bottom:172.034800pt;}
.y12a{bottom:175.018800pt;}
.ycf{bottom:175.121467pt;}
.y223{bottom:175.411067pt;}
.y272{bottom:176.514000pt;}
.y5c{bottom:176.691467pt;}
.y19b{bottom:179.110933pt;}
.y145{bottom:179.593867pt;}
.y1cb{bottom:182.997867pt;}
.yae{bottom:183.142400pt;}
.y85{bottom:186.250133pt;}
.y16f{bottom:187.131867pt;}
.y2df{bottom:187.152933pt;}
.y29c{bottom:187.624000pt;}
.y1f8{bottom:187.841600pt;}
.y247{bottom:190.115867pt;}
.y2c0{bottom:190.333867pt;}
.ye1{bottom:190.701467pt;}
.y222{bottom:191.411067pt;}
.y129{bottom:193.685467pt;}
.yce{bottom:193.788133pt;}
.y5b{bottom:194.628667pt;}
.y271{bottom:195.180667pt;}
.y2f{bottom:196.419467pt;}
.y19a{bottom:197.777600pt;}
.y144{bottom:198.260533pt;}
.y1ca{bottom:201.664533pt;}
.yad{bottom:201.809067pt;}
.yd{bottom:203.338533pt;}
.y84{bottom:204.916800pt;}
.y16e{bottom:205.798533pt;}
.y2de{bottom:205.819600pt;}
.y29b{bottom:206.290667pt;}
.y1f7{bottom:206.508267pt;}
.y221{bottom:207.411067pt;}
.y246{bottom:208.782533pt;}
.y2bf{bottom:209.000533pt;}
.ye0{bottom:209.368133pt;}
.ycd{bottom:212.454800pt;}
.y5a{bottom:212.565867pt;}
.y270{bottom:213.847333pt;}
.y2e{bottom:215.086133pt;}
.y199{bottom:216.444267pt;}
.y143{bottom:216.927200pt;}
.y128{bottom:219.911067pt;}
.y1c9{bottom:220.331200pt;}
.yff{bottom:220.475733pt;}
.yc{bottom:221.784800pt;}
.y220{bottom:223.411067pt;}
.y16d{bottom:224.465200pt;}
.y2dd{bottom:224.486267pt;}
.y29a{bottom:224.957333pt;}
.y1f6{bottom:225.174933pt;}
.y245{bottom:227.449200pt;}
.yac{bottom:228.034800pt;}
.y59{bottom:230.503200pt;}
.ycc{bottom:231.121467pt;}
.y83{bottom:231.142400pt;}
.y26f{bottom:232.514000pt;}
.y2d{bottom:233.752800pt;}
.y198{bottom:235.110933pt;}
.y142{bottom:235.593867pt;}
.y127{bottom:238.577733pt;}
.y1c8{bottom:238.997867pt;}
.yfe{bottom:239.142400pt;}
.y21f{bottom:239.411067pt;}
.yb{bottom:240.230933pt;}
.y2dc{bottom:243.152933pt;}
.y299{bottom:243.624000pt;}
.y1f5{bottom:243.841600pt;}
.y244{bottom:246.115867pt;}
.yab{bottom:246.701467pt;}
.y58{bottom:248.440400pt;}
.ycb{bottom:249.788133pt;}
.y82{bottom:249.809067pt;}
.y16c{bottom:250.690933pt;}
.y26e{bottom:251.180667pt;}
.y2c{bottom:252.419467pt;}
.y2be{bottom:253.047600pt;}
.y197{bottom:253.777600pt;}
.y141{bottom:254.260533pt;}
.y126{bottom:257.244400pt;}
.y1c7{bottom:257.664533pt;}
.ya{bottom:258.677200pt;}
.y2db{bottom:261.819600pt;}
.y298{bottom:262.290667pt;}
.y243{bottom:264.782533pt;}
.yaa{bottom:265.368133pt;}
.y57{bottom:266.377733pt;}
.yca{bottom:268.454800pt;}
.y81{bottom:268.475733pt;}
.y21e{bottom:270.529200pt;}
.y2b{bottom:271.086133pt;}
.y196{bottom:272.444267pt;}
.yf9{bottom:272.927200pt;}
.y2bd{bottom:275.724800pt;}
.y125{bottom:275.911067pt;}
.y9{bottom:277.123333pt;}
.y26d{bottom:277.406400pt;}
.y1f4{bottom:277.626400pt;}
.y2da{bottom:280.486267pt;}
.y242{bottom:283.449200pt;}
.ya9{bottom:284.034800pt;}
.y56{bottom:284.314933pt;}
.y80{bottom:287.142400pt;}
.y297{bottom:288.516400pt;}
.y21d{bottom:289.195867pt;}
.y2a{bottom:289.752800pt;}
.y195{bottom:291.110933pt;}
.y1c6{bottom:291.449200pt;}
.yf8{bottom:291.593867pt;}
.y16b{bottom:292.034800pt;}
.y1f3{bottom:293.626400pt;}
.y124{bottom:294.577733pt;}
.y8{bottom:295.569600pt;}
.y26c{bottom:296.073067pt;}
.y2bc{bottom:298.402000pt;}
.y140{bottom:299.152933pt;}
.y241{bottom:302.115867pt;}
.yc9{bottom:302.239600pt;}
.y55{bottom:302.252133pt;}
.ya8{bottom:302.701467pt;}
.y7f{bottom:305.809067pt;}
.y296{bottom:307.183067pt;}
.y1c5{bottom:307.449200pt;}
.y21c{bottom:307.862533pt;}
.y1f2{bottom:309.626400pt;}
.y194{bottom:309.777600pt;}
.yf7{bottom:310.260533pt;}
.y16a{bottom:310.701467pt;}
.y123{bottom:313.244400pt;}
.y7{bottom:314.015733pt;}
.y26b{bottom:314.739733pt;}
.y29{bottom:315.978533pt;}
.y13f{bottom:317.819600pt;}
.y54{bottom:320.189467pt;}
.y240{bottom:320.782533pt;}
.y2bb{bottom:321.079067pt;}
.ya7{bottom:321.368133pt;}
.y1c4{bottom:323.449200pt;}
.y7e{bottom:324.475733pt;}
.y1f1{bottom:325.626400pt;}
.y295{bottom:325.849733pt;}
.y21b{bottom:326.529200pt;}
.y193{bottom:328.444267pt;}
.yf6{bottom:328.927200pt;}
.y169{bottom:329.368133pt;}
.y122{bottom:331.911200pt;}
.ye{bottom:332.107867pt;}
.y26a{bottom:333.406400pt;}
.y28{bottom:334.645200pt;}
.y1c3{bottom:339.449200pt;}
.ya6{bottom:340.034800pt;}
.y53{bottom:342.239600pt;}
.y7d{bottom:343.142400pt;}
.y2ba{bottom:343.756267pt;}
.y2d9{bottom:344.045333pt;}
.y294{bottom:344.516400pt;}
.y192{bottom:347.110933pt;}
.ydf{bottom:347.593867pt;}
.y168{bottom:348.034800pt;}
.y121{bottom:350.577867pt;}
.y269{bottom:352.073067pt;}
.y21a{bottom:352.754933pt;}
.y27{bottom:353.311867pt;}
.y1c2{bottom:355.449200pt;}
.y1f0{bottom:356.744400pt;}
.yf{bottom:356.916933pt;}
.ya5{bottom:358.701467pt;}
.y13e{bottom:359.163467pt;}
.y2d8{bottom:362.712000pt;}
.y23f{bottom:365.674933pt;}
.yde{bottom:366.260533pt;}
.y2b9{bottom:366.433467pt;}
.y167{bottom:366.701467pt;}
.y7c{bottom:369.368133pt;}
.y268{bottom:370.739733pt;}
.y293{bottom:370.742133pt;}
.y219{bottom:371.421600pt;}
.y1c1{bottom:371.449200pt;}
.y26{bottom:371.978533pt;}
.y52{bottom:372.024267pt;}
.y191{bottom:373.336667pt;}
.y1ef{bottom:375.411067pt;}
.y120{bottom:376.803600pt;}
.ya4{bottom:377.368133pt;}
.y13d{bottom:377.830133pt;}
.y2d7{bottom:381.378667pt;}
.y23e{bottom:384.341600pt;}
.ydd{bottom:384.927200pt;}
.y166{bottom:385.368133pt;}
.y7b{bottom:388.034800pt;}
.y2b8{bottom:389.110533pt;}
.y267{bottom:389.406400pt;}
.y292{bottom:389.408800pt;}
.y218{bottom:390.088267pt;}
.y25{bottom:390.645200pt;}
.y51{bottom:390.690933pt;}
.y190{bottom:392.003333pt;}
.yf5{bottom:392.486267pt;}
.y1ee{bottom:394.077733pt;}
.y11f{bottom:395.470267pt;}
.ya3{bottom:396.034800pt;}
.y13c{bottom:396.496800pt;}
.y2d6{bottom:400.045333pt;}
.y1c0{bottom:402.567333pt;}
.y23d{bottom:403.008267pt;}
.ydc{bottom:403.593867pt;}
.y7a{bottom:406.701467pt;}
.y266{bottom:408.073067pt;}
.y291{bottom:408.075467pt;}
.y217{bottom:408.754933pt;}
.y24{bottom:409.311867pt;}
.y18f{bottom:410.670000pt;}
.yf4{bottom:411.152933pt;}
.y165{bottom:411.593867pt;}
.y2b7{bottom:411.787733pt;}
.y1ed{bottom:412.744400pt;}
.y11e{bottom:414.136933pt;}
.ya2{bottom:414.701467pt;}
.y13b{bottom:415.163467pt;}
.y50{bottom:416.916800pt;}
.y2d5{bottom:418.712000pt;}
.y1bf{bottom:421.234000pt;}
.y23c{bottom:421.674933pt;}
.yc8{bottom:422.260533pt;}
.y79{bottom:425.368133pt;}
.y265{bottom:426.739733pt;}
.y290{bottom:426.742133pt;}
.y216{bottom:427.421600pt;}
.y23{bottom:427.978533pt;}
.y18e{bottom:429.336667pt;}
.yf3{bottom:429.819600pt;}
.y164{bottom:430.260533pt;}
.y1ec{bottom:431.411067pt;}
.y11d{bottom:432.803600pt;}
.ya1{bottom:433.368133pt;}
.y13a{bottom:433.830133pt;}
.y2b6{bottom:434.464933pt;}
.y4f{bottom:435.583467pt;}
.y2d4{bottom:437.378667pt;}
.y1be{bottom:439.900667pt;}
.y23b{bottom:440.341600pt;}
.yc7{bottom:440.927200pt;}
.y78{bottom:444.034800pt;}
.y28f{bottom:445.408800pt;}
.y215{bottom:446.088267pt;}
.yf2{bottom:448.486267pt;}
.y163{bottom:448.927200pt;}
.ya0{bottom:452.034800pt;}
.y139{bottom:452.496800pt;}
.y264{bottom:452.965467pt;}
.y22{bottom:454.204267pt;}
.y4e{bottom:454.250133pt;}
.y2b5{bottom:457.142133pt;}
.y11c{bottom:459.029200pt;}
.yc6{bottom:459.593867pt;}
.y77{bottom:462.701467pt;}
.y18d{bottom:463.121467pt;}
.y2d3{bottom:463.604400pt;}
.y28e{bottom:464.075467pt;}
.y214{bottom:464.754933pt;}
.y1eb{bottom:465.195867pt;}
.y1bd{bottom:466.126400pt;}
.y23a{bottom:466.567333pt;}
.yf1{bottom:467.152933pt;}
.y162{bottom:467.593867pt;}
.y9f{bottom:470.701467pt;}
.y138{bottom:471.163467pt;}
.y263{bottom:471.632133pt;}
.y21{bottom:472.870933pt;}
.y4d{bottom:472.916800pt;}
.y11b{bottom:477.695867pt;}
.yc5{bottom:478.260533pt;}
.y18c{bottom:479.121467pt;}
.y2b4{bottom:479.819200pt;}
.y1ea{bottom:481.195867pt;}
.y76{bottom:481.368133pt;}
.y2d2{bottom:482.271067pt;}
.y28d{bottom:482.742133pt;}
.y1bc{bottom:484.793067pt;}
.y239{bottom:485.234000pt;}
.yf0{bottom:485.819600pt;}
.y161{bottom:486.260533pt;}
.y9e{bottom:489.368133pt;}
.y262{bottom:490.298800pt;}
.y213{bottom:490.980667pt;}
.y20{bottom:491.537600pt;}
.y4c{bottom:491.583467pt;}
.y18b{bottom:495.121467pt;}
.y11a{bottom:496.362533pt;}
.yc4{bottom:496.927200pt;}
.y1e9{bottom:497.195867pt;}
.y137{bottom:497.389200pt;}
.y75{bottom:500.034800pt;}
.y2d1{bottom:500.937733pt;}
.y2b3{bottom:502.496400pt;}
.y1bb{bottom:503.459733pt;}
.y238{bottom:503.900667pt;}
.y176{bottom:504.486267pt;}
.y160{bottom:504.927200pt;}
.y9d{bottom:508.034800pt;}
.y261{bottom:508.965467pt;}
.y212{bottom:509.647333pt;}
.y1f{bottom:510.204267pt;}
.y4b{bottom:510.250133pt;}
.y18a{bottom:511.121467pt;}
.yef{bottom:512.045333pt;}
.y1e8{bottom:513.195867pt;}
.y119{bottom:515.029200pt;}
.yc3{bottom:515.593867pt;}
.y136{bottom:516.055867pt;}
.y1ba{bottom:522.126400pt;}
.y237{bottom:522.567333pt;}
.y175{bottom:523.152933pt;}
.y15f{bottom:523.593867pt;}
.y2b2{bottom:525.173600pt;}
.y74{bottom:526.260533pt;}
.y28c{bottom:526.645067pt;}
.y9c{bottom:526.701467pt;}
.y189{bottom:527.121467pt;}
.y2d0{bottom:527.163467pt;}
.y260{bottom:527.632133pt;}
.y211{bottom:528.314000pt;}
.y1e{bottom:528.870933pt;}
.y4a{bottom:528.916800pt;}
.y1e7{bottom:529.195867pt;}
.yee{bottom:530.712000pt;}
.y118{bottom:533.695867pt;}
.yfd{bottom:534.260533pt;}
.y135{bottom:534.722533pt;}
.y1b9{bottom:540.793067pt;}
.y236{bottom:541.234000pt;}
.yc2{bottom:541.819600pt;}
.y15e{bottom:542.260533pt;}
.y9b{bottom:545.368133pt;}
.y2cf{bottom:545.830133pt;}
.y210{bottom:546.980667pt;}
.y1d{bottom:547.537600pt;}
.y49{bottom:547.583467pt;}
.y2b1{bottom:547.850800pt;}
.y28b{bottom:549.033733pt;}
.yed{bottom:549.378667pt;}
.y117{bottom:552.362533pt;}
.y134{bottom:553.389200pt;}
.y25f{bottom:553.857867pt;}
.y188{bottom:558.239600pt;}
.y235{bottom:559.900667pt;}
.y1e6{bottom:560.314000pt;}
.yc1{bottom:560.486267pt;}
.y15d{bottom:560.927200pt;}
.y9a{bottom:564.034800pt;}
.y2ce{bottom:564.496800pt;}
.y20f{bottom:565.647333pt;}
.y1c{bottom:566.204267pt;}
.y48{bottom:566.250133pt;}
.y1b8{bottom:567.018800pt;}
.yec{bottom:568.045333pt;}
.y2b0{bottom:570.527867pt;}
.y116{bottom:571.029200pt;}
.y28a{bottom:571.422400pt;}
.y133{bottom:572.055867pt;}
.y25e{bottom:572.524533pt;}
.y73{bottom:575.163467pt;}
.y187{bottom:576.906267pt;}
.y234{bottom:578.567333pt;}
.y1e5{bottom:578.980667pt;}
.yc0{bottom:579.152933pt;}
.y15c{bottom:579.593867pt;}
.y99{bottom:582.701467pt;}
.ydb{bottom:583.163467pt;}
.y20e{bottom:584.314000pt;}
.y1b{bottom:584.870933pt;}
.y47{bottom:584.916800pt;}
.y1b7{bottom:585.685467pt;}
.y2ff{bottom:586.046800pt;}
.yeb{bottom:586.712000pt;}
.y115{bottom:589.695867pt;}
.y132{bottom:590.722533pt;}
.y72{bottom:591.163467pt;}
.y25d{bottom:591.191200pt;}
.y2af{bottom:593.205067pt;}
.y289{bottom:593.811200pt;}
.y186{bottom:595.572933pt;}
.y233{bottom:597.234000pt;}
.y1e4{bottom:597.647333pt;}
.ybf{bottom:597.819600pt;}
.y15b{bottom:598.260533pt;}
.y2fe{bottom:599.380133pt;}
.y98{bottom:601.368133pt;}
.yda{bottom:601.830133pt;}
.y20d{bottom:602.980667pt;}
.y1a{bottom:603.537600pt;}
.y1b6{bottom:604.352133pt;}
.yea{bottom:605.378667pt;}
.y71{bottom:607.163467pt;}
.y114{bottom:608.362533pt;}
.y131{bottom:609.389200pt;}
.y25c{bottom:609.857867pt;}
.y46{bottom:611.142400pt;}
.y185{bottom:614.239600pt;}
.y2ae{bottom:615.882267pt;}
.y232{bottom:615.900667pt;}
.y288{bottom:616.199867pt;}
.y1e3{bottom:616.314000pt;}
.ybe{bottom:616.486267pt;}
.y2fd{bottom:620.272400pt;}
.yd9{bottom:620.496800pt;}
.y20c{bottom:621.647333pt;}
.y19{bottom:622.204267pt;}
.y1b5{bottom:623.018800pt;}
.y70{bottom:623.163467pt;}
.ye9{bottom:624.045333pt;}
.y15a{bottom:624.486267pt;}
.y113{bottom:627.029200pt;}
.y97{bottom:627.593867pt;}
.y130{bottom:628.055867pt;}
.y25b{bottom:628.524533pt;}
.y45{bottom:629.809067pt;}
.y184{bottom:632.906267pt;}
.y2fc{bottom:633.605733pt;}
.y1e2{bottom:634.980667pt;}
.ybd{bottom:635.152933pt;}
.y2e8{bottom:636.083600pt;}
.y2ad{bottom:638.559467pt;}
.y287{bottom:638.588533pt;}
.y2cd{bottom:639.163467pt;}
.y18{bottom:640.870933pt;}
.y1b4{bottom:641.685467pt;}
.ye8{bottom:642.712000pt;}
.y159{bottom:643.152933pt;}
.y112{bottom:645.695867pt;}
.y96{bottom:646.260533pt;}
.yd8{bottom:646.722533pt;}
.y25a{bottom:647.191200pt;}
.y20b{bottom:647.873067pt;}
.y44{bottom:648.475733pt;}
.y231{bottom:649.685467pt;}
.y1aa{bottom:650.271067pt;}
.y1e1{bottom:653.647333pt;}
.ybc{bottom:653.819600pt;}
.y6f{bottom:654.281600pt;}
.y2fb{bottom:654.498267pt;}
.y2e7{bottom:654.750267pt;}
.y2cc{bottom:657.830133pt;}
.y183{bottom:659.132000pt;}
.y17{bottom:659.537600pt;}
.y1b3{bottom:660.352133pt;}
.y286{bottom:660.977200pt;}
.y2ac{bottom:661.236533pt;}
.ye7{bottom:661.378667pt;}
.y111{bottom:664.362533pt;}
.y95{bottom:664.927200pt;}
.yd7{bottom:665.389200pt;}
.y230{bottom:665.685467pt;}
.y259{bottom:665.857867pt;}
.y43{bottom:667.142400pt;}
.y2fa{bottom:667.831600pt;}
.y1a9{bottom:668.937733pt;}
.y158{bottom:669.378667pt;}
.y1e0{bottom:672.314000pt;}
.ybb{bottom:672.486267pt;}
.y6e{bottom:672.948267pt;}
.y2e6{bottom:673.416933pt;}
.y2cb{bottom:676.496800pt;}
.y16{bottom:678.204267pt;}
.y1b2{bottom:679.018800pt;}
.ye6{bottom:680.045333pt;}
.y22f{bottom:681.685467pt;}
.y110{bottom:683.029333pt;}
.y285{bottom:683.366000pt;}
.y94{bottom:683.593867pt;}
.y2ab{bottom:683.913733pt;}
.yd6{bottom:684.055867pt;}
.y258{bottom:684.524533pt;}
.y42{bottom:685.809067pt;}
.y1a8{bottom:687.604400pt;}
.y157{bottom:688.045333pt;}
.y2f9{bottom:688.724000pt;}
.y20a{bottom:689.216933pt;}
.y1df{bottom:690.980667pt;}
.y6d{bottom:691.614933pt;}
.y2e5{bottom:692.083600pt;}
.y2ca{bottom:695.163467pt;}
.y15{bottom:696.870933pt;}
.y1b1{bottom:697.685467pt;}
.yba{bottom:698.712000pt;}
.y182{bottom:700.475733pt;}
.y10f{bottom:701.696000pt;}
.y93{bottom:702.260533pt;}
.y174{bottom:702.722533pt;}
.y257{bottom:703.191200pt;}
.y2a5{bottom:703.548933pt;}
.y2aa{bottom:704.220933pt;}
.y41{bottom:704.475733pt;}
.y284{bottom:705.754667pt;}
.ye5{bottom:706.271067pt;}
.y156{bottom:706.712000pt;}
.y209{bottom:707.883600pt;}
.y2a7{bottom:709.554267pt;}
.y2f8{bottom:709.616267pt;}
.y6c{bottom:710.281600pt;}
.y2e4{bottom:710.750267pt;}
.y22e{bottom:712.803600pt;}
.y2a9{bottom:714.887600pt;}
.y14{bottom:715.537600pt;}
.y1b0{bottom:716.352133pt;}
.y1de{bottom:717.206400pt;}
.yb9{bottom:717.378667pt;}
.y181{bottom:719.142400pt;}
.y2a6{bottom:720.220933pt;}
.y10e{bottom:720.362667pt;}
.y173{bottom:721.389200pt;}
.y256{bottom:721.857867pt;}
.y2f7{bottom:722.949600pt;}
.y40{bottom:723.142400pt;}
.y6{bottom:723.499867pt;}
.y1a7{bottom:724.937733pt;}
.y2a8{bottom:725.554267pt;}
.y208{bottom:726.550267pt;}
.y283{bottom:728.143333pt;}
.y92{bottom:728.486267pt;}
.y6b{bottom:728.948267pt;}
.y2e3{bottom:729.416933pt;}
.y22d{bottom:731.470267pt;}
.y155{bottom:732.937733pt;}
.y1af{bottom:735.018800pt;}
.y1dd{bottom:735.873067pt;}
.yb8{bottom:736.045333pt;}
.y180{bottom:737.809067pt;}
.y10d{bottom:739.029333pt;}
.y2c9{bottom:740.055867pt;}
.y255{bottom:740.524533pt;}
.y3f{bottom:741.809067pt;}
.y1a6{bottom:743.604400pt;}
.y2f6{bottom:743.842000pt;}
.y207{bottom:745.216933pt;}
.y2a4{bottom:747.604400pt;}
.y6a{bottom:747.614933pt;}
.y2e2{bottom:748.083600pt;}
.y22c{bottom:750.136933pt;}
.y282{bottom:750.532000pt;}
.y154{bottom:751.604400pt;}
.y1ae{bottom:753.685467pt;}
.y1dc{bottom:754.539733pt;}
.yb7{bottom:754.712000pt;}
.y17f{bottom:756.475733pt;}
.y2f5{bottom:757.175333pt;}
.y2c8{bottom:758.722533pt;}
.y254{bottom:759.191200pt;}
.y3e{bottom:760.475733pt;}
.yfc{bottom:762.271067pt;}
.y10c{bottom:765.254933pt;}
.y69{bottom:766.281600pt;}
.y2e1{bottom:766.750267pt;}
.y22b{bottom:768.803600pt;}
.y153{bottom:770.271067pt;}
.y206{bottom:771.442667pt;}
.y1ad{bottom:772.352133pt;}
.y281{bottom:772.920800pt;}
.y1db{bottom:773.206400pt;}
.yb6{bottom:773.378667pt;}
.y17e{bottom:775.142400pt;}
.y13{bottom:775.548133pt;}
.y91{bottom:777.389200pt;}
.y253{bottom:777.857867pt;}
.y2f4{bottom:778.067733pt;}
.y3d{bottom:779.142400pt;}
.y1a5{bottom:780.937733pt;}
.y10b{bottom:783.921600pt;}
.y68{bottom:784.948267pt;}
.y2e0{bottom:785.416933pt;}
.y22a{bottom:787.470267pt;}
.y152{bottom:788.937733pt;}
.y205{bottom:790.109333pt;}
.y2f3{bottom:791.401067pt;}
.y90{bottom:793.389200pt;}
.y17d{bottom:793.809067pt;}
.y280{bottom:795.309467pt;}
.y2a3{bottom:796.055867pt;}
.y5{bottom:796.145733pt;}
.y1ac{bottom:798.577733pt;}
.y1da{bottom:799.432133pt;}
.yb5{bottom:799.604400pt;}
.y10a{bottom:802.588267pt;}
.yd5{bottom:803.614933pt;}
.y252{bottom:804.083600pt;}
.y3c{bottom:805.368133pt;}
.y151{bottom:807.604400pt;}
.y204{bottom:808.776000pt;}
.y8f{bottom:809.389200pt;}
.y67{bottom:811.174000pt;}
.y2f2{bottom:812.293467pt;}
.y229{bottom:813.696000pt;}
.y2c7{bottom:814.722533pt;}
.y27f{bottom:817.698133pt;}
.y1d9{bottom:818.098800pt;}
.y109{bottom:821.254933pt;}
.yd4{bottom:822.281600pt;}
.y251{bottom:822.750267pt;}
.y8e{bottom:825.389200pt;}
.y2f1{bottom:825.626800pt;}
.y150{bottom:826.271067pt;}
.y203{bottom:827.442667pt;}
.y17c{bottom:827.593867pt;}
.y66{bottom:829.840667pt;}
.y228{bottom:832.362667pt;}
.y1a4{bottom:833.389200pt;}
.y1d8{bottom:836.765467pt;}
.y108{bottom:839.921600pt;}
.y27e{bottom:840.086800pt;}
.yb4{bottom:840.948267pt;}
.y8d{bottom:841.389200pt;}
.y250{bottom:841.416933pt;}
.y14f{bottom:844.937733pt;}
.y202{bottom:846.109333pt;}
.y2f0{bottom:846.519200pt;}
.y3b{bottom:846.712000pt;}
.y65{bottom:848.507333pt;}
.y1a3{bottom:849.389200pt;}
.y4{bottom:849.479067pt;}
.y227{bottom:851.029333pt;}
.y1d7{bottom:855.432133pt;}
.y8c{bottom:857.389200pt;}
.y107{bottom:858.588267pt;}
.yb3{bottom:859.614933pt;}
.y2ef{bottom:859.852533pt;}
.y24f{bottom:860.083600pt;}
.y27d{bottom:862.475600pt;}
.y14e{bottom:863.604400pt;}
.y201{bottom:864.776000pt;}
.y1a2{bottom:865.389200pt;}
.y64{bottom:867.174000pt;}
.y226{bottom:869.696000pt;}
.y2ee{bottom:873.185867pt;}
.y8b{bottom:873.389200pt;}
.y1d6{bottom:874.098800pt;}
.y106{bottom:877.254933pt;}
.yb2{bottom:878.281600pt;}
.y1a1{bottom:881.389200pt;}
.y200{bottom:883.442667pt;}
.y17b{bottom:884.055867pt;}
.y27c{bottom:884.864267pt;}
.y63{bottom:885.840667pt;}
.y24e{bottom:886.309333pt;}
.y225{bottom:888.362667pt;}
.y1d5{bottom:892.765467pt;}
.y2ed{bottom:894.078267pt;}
.y105{bottom:895.921600pt;}
.y12f{bottom:896.948267pt;}
.y14d{bottom:897.389200pt;}
.y17a{bottom:900.055867pt;}
.y1ff{bottom:902.109333pt;}
.y3{bottom:902.812400pt;}
.y3a{bottom:903.174000pt;}
.y62{bottom:904.507333pt;}
.y24d{bottom:904.976000pt;}
.y224{bottom:907.029333pt;}
.y27b{bottom:907.252933pt;}
.y2ec{bottom:907.411600pt;}
.y14c{bottom:913.389200pt;}
.y104{bottom:914.588267pt;}
.y12e{bottom:915.614933pt;}
.y179{bottom:916.055867pt;}
.y1d4{bottom:918.991200pt;}
.y39{bottom:923.174000pt;}
.y24c{bottom:923.642667pt;}
.y2eb{bottom:928.304000pt;}
.y14b{bottom:929.389200pt;}
.y27a{bottom:929.641733pt;}
.y178{bottom:932.055867pt;}
.y103{bottom:933.254933pt;}
.y12d{bottom:934.281600pt;}
.y1fe{bottom:935.894000pt;}
.y2ea{bottom:941.637333pt;}
.y38{bottom:941.840667pt;}
.y24b{bottom:942.309333pt;}
.y177{bottom:948.055867pt;}
.y1fd{bottom:951.894000pt;}
.y102{bottom:951.921600pt;}
.y279{bottom:952.030400pt;}
.y277{bottom:953.085733pt;}
.y2{bottom:956.145733pt;}
.y37{bottom:960.507333pt;}
.y24a{bottom:960.976000pt;}
.y2e9{bottom:962.529733pt;}
.y276{bottom:963.752400pt;}
.y1d3{bottom:967.894000pt;}
.y101{bottom:970.588267pt;}
.y278{bottom:974.419067pt;}
.y36{bottom:979.174000pt;}
.y1d2{bottom:983.894000pt;}
.y249{bottom:994.760800pt;}
.y100{bottom:996.814000pt;}
.y35{bottom:997.840667pt;}
.y1d1{bottom:999.894000pt;}
.y275{bottom:1000.920667pt;}
.y1{bottom:1009.479067pt;}
.y12{bottom:1068.718133pt;}
.y11{bottom:1083.118133pt;}
.h6{height:24.467200pt;}
.h10{height:33.077333pt;}
.h15{height:33.857641pt;}
.h5{height:36.700800pt;}
.h13{height:37.057292pt;}
.hc{height:38.115556pt;}
.hf{height:38.325333pt;}
.h4{height:42.880000pt;}
.h9{height:42.912000pt;}
.h12{height:47.644444pt;}
.h14{height:50.786462pt;}
.hb{height:52.408889pt;}
.h11{height:52.697333pt;}
.h8{height:57.173333pt;}
.he{height:57.488000pt;}
.hd{height:59.250872pt;}
.ha{height:67.069333pt;}
.h7{height:97.862820pt;}
.h3{height:178.341333pt;}
.h2{height:200.106667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:25.003467pt;}
.x6{left:75.590533pt;}
.x1b{left:81.593067pt;}
.x2{left:112.348400pt;}
.x1{left:113.385867pt;}
.x12{left:117.165333pt;}
.x28{left:120.944933pt;}
.xc{left:137.331067pt;}
.x1a{left:139.940533pt;}
.xf{left:147.878667pt;}
.x11{left:154.960667pt;}
.x13{left:163.586933pt;}
.x1d{left:176.351867pt;}
.x1c{left:183.006533pt;}
.x14{left:187.424000pt;}
.x19{left:207.560800pt;}
.x18{left:209.847067pt;}
.xe{left:230.459067pt;}
.xd{left:237.039067pt;}
.x1f{left:250.343467pt;}
.x1e{left:252.802933pt;}
.xa{left:258.178667pt;}
.x15{left:303.135867pt;}
.x9{left:305.605600pt;}
.x20{left:319.905467pt;}
.x10{left:326.246800pt;}
.x17{left:380.974667pt;}
.x23{left:390.819733pt;}
.x16{left:392.861600pt;}
.x8{left:397.993067pt;}
.x22{left:403.624800pt;}
.x21{left:405.911600pt;}
.xb{left:416.698533pt;}
.x25{left:468.841467pt;}
.x26{left:476.373200pt;}
.x24{left:477.334533pt;}
.x3{left:488.565333pt;}
.x4{left:492.923200pt;}
.x27{left:559.827733pt;}
.x7{left:743.113733pt;}
}




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