
    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_8d8b82f5dae7c667df008929.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_e81682e118dd72b1c1123d2e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_bcb7f8f829e8d0b697fdfbf5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_6370f26c1aa228288b5dec11.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_d4d81e5e95e235e2c9445ad8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_efcedbfa7c2dad2dfef1086e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_845ff7762b23bb238d70e9b7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.115000;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_08df154c93eb73eb4394f298.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_2ddc50c681498dc25fed4135.woff')format("woff");}.ffb{font-family:ffb;line-height:1.005000;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_beec9e343a3026ae440ef4fe.woff')format("woff");}.ffc{font-family:ffc;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v4{vertical-align:24.000000px;}
.v1{vertical-align:48.000000px;}
.ls60{letter-spacing:-4.440000px;}
.ls36{letter-spacing:-3.024000px;}
.ls56{letter-spacing:-2.520000px;}
.ls5f{letter-spacing:-2.448000px;}
.ls35{letter-spacing:-1.800000px;}
.ls38{letter-spacing:-1.728000px;}
.ls55{letter-spacing:-1.680000px;}
.ls34{letter-spacing:-1.584000px;}
.ls37{letter-spacing:-1.368000px;}
.ls2b{letter-spacing:-0.936000px;}
.ls39{letter-spacing:-0.864000px;}
.ls67{letter-spacing:-0.840000px;}
.ls4c{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.576000px;}
.ls69{letter-spacing:-0.540000px;}
.ls6e{letter-spacing:-0.528000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.432000px;}
.ls4d{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.360000px;}
.ls6a{letter-spacing:-0.330000px;}
.ls16{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls70{letter-spacing:-0.264000px;}
.ls24{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.144000px;}
.ls6d{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.072000px;}
.ls6f{letter-spacing:-0.066000px;}
.ls68{letter-spacing:-0.060000px;}
.ls11{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.060000px;}
.ls2c{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.120000px;}
.ls1c{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.186000px;}
.ls13{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.300000px;}
.ls6c{letter-spacing:0.330000px;}
.ls27{letter-spacing:0.338400px;}
.ls4{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.396000px;}
.ls2a{letter-spacing:0.420000px;}
.ls31{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.439200px;}
.ls3{letter-spacing:0.456000px;}
.ls6b{letter-spacing:0.462000px;}
.ls66{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.482400px;}
.ls5{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.648000px;}
.ls4e{letter-spacing:0.660000px;}
.ls23{letter-spacing:0.705600px;}
.ls4f{letter-spacing:0.720000px;}
.ls48{letter-spacing:0.780000px;}
.ls25{letter-spacing:0.864000px;}
.ls20{letter-spacing:1.152000px;}
.ls54{letter-spacing:1.200000px;}
.ls50{letter-spacing:1.272000px;}
.ls33{letter-spacing:1.512000px;}
.ls32{letter-spacing:1.656000px;}
.ls1e{letter-spacing:2.376000px;}
.ls22{letter-spacing:3.600000px;}
.ls51{letter-spacing:4.020000px;}
.lse{letter-spacing:4.608000px;}
.ls41{letter-spacing:4.752000px;}
.lsb{letter-spacing:7.200000px;}
.ls8{letter-spacing:8.352000px;}
.ls9{letter-spacing:8.604000px;}
.ls64{letter-spacing:10.380000px;}
.lsd{letter-spacing:10.800000px;}
.ls53{letter-spacing:11.220000px;}
.lsc{letter-spacing:13.176000px;}
.ls65{letter-spacing:13.320000px;}
.ls61{letter-spacing:21.600000px;}
.ls62{letter-spacing:26.352000px;}
.ls28{letter-spacing:32.784000px;}
.ls30{letter-spacing:38.426400px;}
.ls40{letter-spacing:45.597600px;}
.ls63{letter-spacing:45.720000px;}
.ls5e{letter-spacing:48.384000px;}
.ls45{letter-spacing:58.773600px;}
.ls46{letter-spacing:59.976000px;}
.ls49{letter-spacing:61.149600px;}
.ls2f{letter-spacing:62.373600px;}
.ls44{letter-spacing:110.376000px;}
.ls58{letter-spacing:124.776000px;}
.ls5b{letter-spacing:144.000000px;}
.ls3c{letter-spacing:146.376000px;}
.ls3d{letter-spacing:151.200000px;}
.ls57{letter-spacing:171.576000px;}
.ls4a{letter-spacing:181.152000px;}
.ls59{letter-spacing:182.397600px;}
.ls47{letter-spacing:193.197600px;}
.ls5c{letter-spacing:196.797600px;}
.ls3e{letter-spacing:214.797600px;}
.ls5d{letter-spacing:245.952000px;}
.ls4b{letter-spacing:278.373600px;}
.ls3f{letter-spacing:342.000000px;}
.ls5a{letter-spacing:352.800000px;}
.ls43{letter-spacing:486.000000px;}
.ls1f{letter-spacing:735.180000px;}
.ls42{letter-spacing:813.288000px;}
.ls1{letter-spacing:846.780000px;}
.ls2{letter-spacing:874.380000px;}
.ls3a{letter-spacing:886.632000px;}
.ls52{letter-spacing:947.664000px;}
.ls0{letter-spacing:1366.380000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws92{word-spacing:-60.000000px;}
.ws81{word-spacing:-20.736000px;}
.ws4{word-spacing:-19.584000px;}
.ws5f{word-spacing:-19.512000px;}
.ws9{word-spacing:-19.368000px;}
.ws3{word-spacing:-19.224000px;}
.ws82{word-spacing:-19.152000px;}
.ws91{word-spacing:-18.936000px;}
.ws95{word-spacing:-18.864000px;}
.ws5c{word-spacing:-18.792000px;}
.ws46{word-spacing:-18.648000px;}
.ws2{word-spacing:-18.432000px;}
.ws47{word-spacing:-18.216000px;}
.ws5b{word-spacing:-18.144000px;}
.wsa4{word-spacing:-18.072000px;}
.ws90{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws8f{word-spacing:-17.784000px;}
.ws5a{word-spacing:-17.640000px;}
.ws8e{word-spacing:-17.568000px;}
.ws84{word-spacing:-17.496000px;}
.ws83{word-spacing:-17.424000px;}
.wsba{word-spacing:-17.358000px;}
.wsb9{word-spacing:-17.094000px;}
.wsb8{word-spacing:-16.368000px;}
.ws5e{word-spacing:-16.320000px;}
.ws6f{word-spacing:-16.260000px;}
.ws1{word-spacing:-16.140000px;}
.wsb7{word-spacing:-16.020000px;}
.ws5{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.720000px;}
.ws94{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.ws5d{word-spacing:-14.700000px;}
.wsb6{word-spacing:-14.640000px;}
.ws93{word-spacing:-9.612000px;}
.ws22{word-spacing:-8.352000px;}
.wsab{word-spacing:-5.112000px;}
.ws64{word-spacing:-4.248000px;}
.wsb4{word-spacing:-3.888000px;}
.wsbc{word-spacing:-3.540000px;}
.wsae{word-spacing:-3.312000px;}
.ws80{word-spacing:-3.168000px;}
.ws2e{word-spacing:-3.024000px;}
.wsd1{word-spacing:-2.760000px;}
.ws63{word-spacing:-2.736000px;}
.wsd5{word-spacing:-2.640000px;}
.wsd3{word-spacing:-2.520000px;}
.ws25{word-spacing:-2.376000px;}
.wsd2{word-spacing:-2.340000px;}
.ws50{word-spacing:-2.232000px;}
.ws51{word-spacing:-2.160000px;}
.ws74{word-spacing:-2.016000px;}
.wsd7{word-spacing:-1.980000px;}
.ws36{word-spacing:-1.872000px;}
.wsbd{word-spacing:-1.860000px;}
.wsbe{word-spacing:-1.740000px;}
.ws8d{word-spacing:-1.584000px;}
.ws8a{word-spacing:-1.440000px;}
.wsbf{word-spacing:-1.320000px;}
.wsd4{word-spacing:-1.200000px;}
.ws55{word-spacing:-1.152000px;}
.wsd6{word-spacing:-1.140000px;}
.ws1c{word-spacing:-0.936000px;}
.ws52{word-spacing:-0.864000px;}
.ws6e{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.648000px;}
.wsa{word-spacing:-0.540000px;}
.ws56{word-spacing:-0.504000px;}
.wsd0{word-spacing:-0.480000px;}
.wsc{word-spacing:-0.420000px;}
.ws10{word-spacing:-0.360000px;}
.ws6d{word-spacing:-0.300000px;}
.ws20{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws70{word-spacing:-0.144000px;}
.ws2a{word-spacing:-0.120000px;}
.ws54{word-spacing:-0.072000px;}
.ws7b{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws12{word-spacing:0.060000px;}
.wsdd{word-spacing:0.066000px;}
.ws21{word-spacing:0.072000px;}
.ws67{word-spacing:0.144000px;}
.ws75{word-spacing:0.216000px;}
.ws1f{word-spacing:0.288000px;}
.ws13{word-spacing:0.300000px;}
.wsd{word-spacing:0.336000px;}
.ws62{word-spacing:0.360000px;}
.ws98{word-spacing:0.420000px;}
.ws38{word-spacing:0.432000px;}
.wse1{word-spacing:0.462000px;}
.ws97{word-spacing:0.480000px;}
.ws27{word-spacing:0.504000px;}
.wse0{word-spacing:0.528000px;}
.wsc2{word-spacing:0.540000px;}
.wsf{word-spacing:0.576000px;}
.ws59{word-spacing:0.792000px;}
.wsc9{word-spacing:0.840000px;}
.ws89{word-spacing:0.864000px;}
.ws88{word-spacing:0.936000px;}
.ws9b{word-spacing:1.260000px;}
.ws96{word-spacing:1.368000px;}
.ws73{word-spacing:1.440000px;}
.ws69{word-spacing:1.584000px;}
.ws17{word-spacing:1.728000px;}
.wsbb{word-spacing:1.740000px;}
.ws9a{word-spacing:1.800000px;}
.ws1a{word-spacing:2.088000px;}
.ws4f{word-spacing:2.448000px;}
.ws9e{word-spacing:2.460000px;}
.wsa1{word-spacing:2.520000px;}
.wscd{word-spacing:2.700000px;}
.ws28{word-spacing:2.880000px;}
.wscc{word-spacing:2.940000px;}
.ws16{word-spacing:2.952000px;}
.wsca{word-spacing:3.180000px;}
.ws4c{word-spacing:3.240000px;}
.ws66{word-spacing:3.312000px;}
.wsdf{word-spacing:3.564000px;}
.wsce{word-spacing:3.600000px;}
.ws9d{word-spacing:3.660000px;}
.wsa0{word-spacing:3.672000px;}
.wsde{word-spacing:3.960000px;}
.ws4b{word-spacing:4.032000px;}
.ws24{word-spacing:4.104000px;}
.ws2c{word-spacing:4.176000px;}
.wsa5{word-spacing:4.440000px;}
.ws3e{word-spacing:4.464000px;}
.ws65{word-spacing:4.536000px;}
.ws3d{word-spacing:4.824000px;}
.ws9f{word-spacing:4.860000px;}
.wsaf{word-spacing:5.040000px;}
.ws29{word-spacing:5.184000px;}
.ws15{word-spacing:5.328000px;}
.wsc4{word-spacing:5.520000px;}
.ws3f{word-spacing:5.688000px;}
.wsc5{word-spacing:5.760000px;}
.ws57{word-spacing:6.048000px;}
.wsc3{word-spacing:6.060000px;}
.wsad{word-spacing:6.264000px;}
.ws58{word-spacing:6.408000px;}
.ws1b{word-spacing:6.552000px;}
.ws1e{word-spacing:6.912000px;}
.wsa3{word-spacing:7.632000px;}
.ws33{word-spacing:7.776000px;}
.wsb0{word-spacing:8.064000px;}
.ws19{word-spacing:8.424000px;}
.ws49{word-spacing:8.784000px;}
.ws48{word-spacing:8.856000px;}
.ws14{word-spacing:8.928000px;}
.wsaa{word-spacing:10.008000px;}
.wsc6{word-spacing:10.140000px;}
.ws2d{word-spacing:10.152000px;}
.wscb{word-spacing:10.260000px;}
.ws60{word-spacing:10.440000px;}
.ws99{word-spacing:10.512000px;}
.wsc7{word-spacing:10.560000px;}
.wsc8{word-spacing:10.800000px;}
.wsa2{word-spacing:10.860000px;}
.ws35{word-spacing:10.872000px;}
.ws61{word-spacing:11.088000px;}
.ws4e{word-spacing:11.304000px;}
.ws32{word-spacing:11.376000px;}
.ws37{word-spacing:11.736000px;}
.ws18{word-spacing:12.024000px;}
.ws34{word-spacing:12.528000px;}
.ws4a{word-spacing:13.608000px;}
.wsb2{word-spacing:13.680000px;}
.ws42{word-spacing:13.752000px;}
.ws41{word-spacing:14.112000px;}
.wsdc{word-spacing:14.322000px;}
.wsa6{word-spacing:14.688000px;}
.ws8c{word-spacing:14.832000px;}
.wsdb{word-spacing:14.850000px;}
.ws23{word-spacing:14.976000px;}
.ws8b{word-spacing:15.840000px;}
.ws43{word-spacing:16.128000px;}
.ws3c{word-spacing:17.064000px;}
.ws45{word-spacing:17.208000px;}
.wsc1{word-spacing:17.340000px;}
.ws44{word-spacing:17.352000px;}
.wsc0{word-spacing:18.000000px;}
.wscf{word-spacing:18.060000px;}
.ws6a{word-spacing:18.216000px;}
.ws2f{word-spacing:18.576000px;}
.wsb5{word-spacing:19.584000px;}
.ws40{word-spacing:19.728000px;}
.ws9c{word-spacing:20.088000px;}
.ws76{word-spacing:20.808000px;}
.ws68{word-spacing:20.952000px;}
.wsac{word-spacing:22.176000px;}
.ws39{word-spacing:24.264000px;}
.wsa9{word-spacing:24.408000px;}
.ws3a{word-spacing:24.552000px;}
.ws6b{word-spacing:25.776000px;}
.wsa8{word-spacing:26.784000px;}
.wsb3{word-spacing:26.856000px;}
.wsa7{word-spacing:26.928000px;}
.ws4d{word-spacing:28.152000px;}
.ws79{word-spacing:29.376000px;}
.wsb1{word-spacing:30.528000px;}
.ws31{word-spacing:31.464000px;}
.ws30{word-spacing:31.752000px;}
.ws7a{word-spacing:32.472000px;}
.ws7f{word-spacing:32.976000px;}
.ws2b{word-spacing:35.352000px;}
.ws6c{word-spacing:36.576000px;}
.wsd9{word-spacing:37.860000px;}
.wsda{word-spacing:38.040000px;}
.wsd8{word-spacing:38.460000px;}
.ws87{word-spacing:38.952000px;}
.ws72{word-spacing:41.184000px;}
.ws26{word-spacing:42.048000px;}
.ws85{word-spacing:46.152000px;}
.ws53{word-spacing:47.376000px;}
.ws3b{word-spacing:52.848000px;}
.ws71{word-spacing:54.576000px;}
.ws7e{word-spacing:58.176000px;}
.ws78{word-spacing:61.776000px;}
.ws86{word-spacing:62.784000px;}
.ws7c{word-spacing:65.376000px;}
.ws7d{word-spacing:70.560000px;}
.ws77{word-spacing:76.176000px;}
._18{margin-left:-9.936000px;}
._c{margin-left:-8.856000px;}
._b{margin-left:-7.826400px;}
._d{margin-left:-6.415200px;}
._19{margin-left:-4.791600px;}
._e{margin-left:-3.391200px;}
._6{margin-left:-2.192400px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._7{width:2.368800px;}
._14{width:3.453600px;}
._15{width:5.422800px;}
._1b{width:6.694800px;}
._a{width:8.287200px;}
._11{width:9.514800px;}
._12{width:10.598400px;}
._13{width:11.739600px;}
._8{width:13.644000px;}
._9{width:14.961600px;}
._1a{width:22.867200px;}
._2c{width:38.340000px;}
._10{width:41.390400px;}
._f{width:42.484800px;}
._21{width:74.736000px;}
._24{width:79.412400px;}
._1e{width:81.792000px;}
._20{width:93.963600px;}
._28{width:96.336000px;}
._1d{width:99.936000px;}
._27{width:108.584400px;}
._2b{width:128.811600px;}
._23{width:132.336000px;}
._1c{width:150.819600px;}
._1f{width:162.144000px;}
._29{width:219.816000px;}
._25{width:244.380000px;}
._2a{width:270.144000px;}
._17{width:275.580000px;}
._26{width:642.660000px;}
._16{width:673.860000px;}
._4{width:765.780000px;}
._22{width:795.616800px;}
._5{width:918.780000px;}
._2{width:1005.420000px;}
._3{width:1137.480000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:6.000000px;}
.fs4{font-size:12.000000px;}
.fs6{font-size:24.000000px;}
.fs7{font-size:30.000000px;}
.fs1{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y7{bottom:5.100000px;}
.ybb{bottom:5.101500px;}
.ya{bottom:6.000000px;}
.y12a{bottom:16.800000px;}
.y156{bottom:17.100000px;}
.y153{bottom:22.800000px;}
.ya1{bottom:28.200000px;}
.y9c{bottom:28.500000px;}
.yba{bottom:28.501500px;}
.yb6{bottom:51.600000px;}
.y9b{bottom:51.900000px;}
.y18c{bottom:52.500000px;}
.y4{bottom:67.800000px;}
.yf7{bottom:75.000000px;}
.y7d{bottom:97.224000px;}
.yfc{bottom:98.100000px;}
.y39{bottom:98.706000px;}
.yd8{bottom:99.300000px;}
.yae{bottom:99.312000px;}
.y15c{bottom:100.200000px;}
.y1c2{bottom:105.000000px;}
.y68{bottom:105.096000px;}
.y128{bottom:107.418000px;}
.y186{bottom:113.106000px;}
.y1b4{bottom:114.648000px;}
.y1f6{bottom:116.700000px;}
.y15b{bottom:119.100000px;}
.y7c{bottom:120.624000px;}
.y38{bottom:121.800000px;}
.yad{bottom:122.406000px;}
.y105{bottom:123.900000px;}
.y1c1{bottom:124.800000px;}
.yd9{bottom:127.800000px;}
.y67{bottom:128.190000px;}
.y127{bottom:130.818000px;}
.y1c0{bottom:135.918000px;}
.y185{bottom:136.200000px;}
.y1f5{bottom:137.700000px;}
.y1b3{bottom:137.742000px;}
.y104{bottom:140.400000px;}
.y37{bottom:141.000000px;}
.y7b{bottom:143.718000px;}
.yac{bottom:145.806000px;}
.y36{bottom:149.130000px;}
.y66{bottom:151.590000px;}
.y126{bottom:153.912000px;}
.y15a{bottom:154.800000px;}
.y102{bottom:156.300000px;}
.y1f4{bottom:157.497000px;}
.y1bf{bottom:159.318000px;}
.y184{bottom:159.600000px;}
.y1b2{bottom:161.142000px;}
.y7a{bottom:167.118000px;}
.yab{bottom:168.900000px;}
.yd6{bottom:170.100000px;}
.y35{bottom:172.224000px;}
.y65{bottom:174.990000px;}
.y125{bottom:177.312000px;}
.y1f3{bottom:178.798500px;}
.y183{bottom:181.200000px;}
.y1be{bottom:182.718000px;}
.y159{bottom:183.000000px;}
.y1b1{bottom:184.236000px;}
.y79{bottom:190.212000px;}
.yaa{bottom:192.300000px;}
.y34{bottom:195.624000px;}
.y182{bottom:197.400000px;}
.y64{bottom:198.084000px;}
.yd7{bottom:198.300000px;}
.y1f2{bottom:200.100000px;}
.y124{bottom:200.712000px;}
.y1bd{bottom:205.812000px;}
.y1b0{bottom:207.636000px;}
.y103{bottom:208.200000px;}
.y78{bottom:213.612000px;}
.ya9{bottom:215.700000px;}
.y181{bottom:216.900000px;}
.y158{bottom:219.000000px;}
.y33{bottom:219.024000px;}
.y63{bottom:221.484000px;}
.yd5{bottom:221.700000px;}
.y123{bottom:223.806000px;}
.y1f1{bottom:225.900000px;}
.y1bc{bottom:229.212000px;}
.y1af{bottom:231.036000px;}
.y180{bottom:232.800000px;}
.ya8{bottom:235.500000px;}
.y77{bottom:237.012000px;}
.y155{bottom:237.600000px;}
.yd4{bottom:240.600000px;}
.y32{bottom:242.118000px;}
.y62{bottom:244.884000px;}
.ya7{bottom:245.700000px;}
.y122{bottom:247.206000px;}
.yff{bottom:250.200000px;}
.y1bb{bottom:252.612000px;}
.y1ae{bottom:254.130000px;}
.y101{bottom:255.300000px;}
.y17f{bottom:256.800000px;}
.yd2{bottom:257.700000px;}
.y76{bottom:260.106000px;}
.y157{bottom:260.700000px;}
.ya5{bottom:261.600000px;}
.yd3{bottom:264.600000px;}
.y31{bottom:265.518000px;}
.y61{bottom:267.978000px;}
.y1f0{bottom:269.098500px;}
.y121{bottom:270.606000px;}
.y152{bottom:273.300000px;}
.y1ba{bottom:275.706000px;}
.y1ad{bottom:277.530000px;}
.y150{bottom:278.406000px;}
.y100{bottom:278.700000px;}
.y17e{bottom:281.100000px;}
.y75{bottom:283.506000px;}
.y30{bottom:288.918000px;}
.ya6{bottom:290.100000px;}
.y1ef{bottom:290.400000px;}
.y60{bottom:291.378000px;}
.yd1{bottom:293.700000px;}
.y151{bottom:296.100000px;}
.y1b9{bottom:299.106000px;}
.y1ac{bottom:300.930000px;}
.y154{bottom:302.100000px;}
.y17d{bottom:305.100000px;}
.y74{bottom:306.906000px;}
.y1ee{bottom:309.600000px;}
.y2f{bottom:312.012000px;}
.ya4{bottom:313.500000px;}
.y5f{bottom:314.778000px;}
.yd0{bottom:317.100000px;}
.yfb{bottom:321.000000px;}
.y1b8{bottom:322.200000px;}
.y1ed{bottom:323.100000px;}
.y1ab{bottom:324.024000px;}
.y14f{bottom:325.800000px;}
.y73{bottom:330.000000px;}
.ya2{bottom:332.400000px;}
.y2e{bottom:335.412000px;}
.ya3{bottom:337.500000px;}
.y120{bottom:337.800000px;}
.y5e{bottom:337.872000px;}
.y1ec{bottom:342.300000px;}
.y1b7{bottom:345.600000px;}
.y1aa{bottom:347.424000px;}
.y14e{bottom:349.200000px;}
.ycf{bottom:350.106000px;}
.y72{bottom:351.600000px;}
.y11f{bottom:351.912000px;}
.y17c{bottom:352.200000px;}
.y2d{bottom:358.812000px;}
.y5d{bottom:361.272000px;}
.y1eb{bottom:361.800000px;}
.y1b6{bottom:369.000000px;}
.y71{bottom:369.018000px;}
.y14d{bottom:369.600000px;}
.y1a9{bottom:370.824000px;}
.yfe{bottom:372.600000px;}
.yce{bottom:373.506000px;}
.y11e{bottom:375.312000px;}
.y17a{bottom:376.500000px;}
.ya0{bottom:379.800000px;}
.y2c{bottom:381.906000px;}
.y14c{bottom:382.206000px;}
.y1ea{bottom:382.500000px;}
.y5c{bottom:384.366000px;}
.y17b{bottom:387.600000px;}
.y1b5{bottom:390.300000px;}
.y70{bottom:392.112000px;}
.y1a8{bottom:393.918000px;}
.yfd{bottom:396.000000px;}
.ycd{bottom:396.600000px;}
.y11d{bottom:398.712000px;}
.y1e9{bottom:399.000000px;}
.y178{bottom:400.500000px;}
.y14b{bottom:405.300000px;}
.y2b{bottom:405.306000px;}
.y5b{bottom:407.766000px;}
.y9f{bottom:408.000000px;}
.y6f{bottom:415.512000px;}
.ycc{bottom:416.700000px;}
.y1a7{bottom:417.318000px;}
.y1e8{bottom:418.500000px;}
.y11c{bottom:421.806000px;}
.y179{bottom:423.300000px;}
.y9a{bottom:426.900000px;}
.ycb{bottom:427.824000px;}
.y2a{bottom:428.400000px;}
.y14a{bottom:428.700000px;}
.y5a{bottom:431.166000px;}
.y9d{bottom:432.000000px;}
.yf6{bottom:438.000000px;}
.y6e{bottom:438.912000px;}
.y1a6{bottom:440.718000px;}
.yf8{bottom:443.100000px;}
.y11b{bottom:445.206000px;}
.y29{bottom:447.600000px;}
.y149{bottom:450.300000px;}
.yca{bottom:450.918000px;}
.y177{bottom:453.006000px;}
.y59{bottom:454.260000px;}
.y9e{bottom:455.400000px;}
.y28{bottom:455.700000px;}
.y1e7{bottom:457.200000px;}
.y6d{bottom:462.006000px;}
.y1a5{bottom:463.812000px;}
.y148{bottom:466.800000px;}
.y11a{bottom:468.606000px;}
.yc9{bottom:474.318000px;}
.y176{bottom:476.100000px;}
.y1e6{bottom:476.700000px;}
.y58{bottom:477.660000px;}
.y27{bottom:479.100000px;}
.y6c{bottom:485.406000px;}
.y147{bottom:486.000000px;}
.y1a4{bottom:487.212000px;}
.yfa{bottom:489.900000px;}
.y119{bottom:491.700000px;}
.y175{bottom:495.600000px;}
.y1e5{bottom:496.200000px;}
.y99{bottom:497.700000px;}
.yc8{bottom:497.718000px;}
.y26{bottom:498.000000px;}
.y57{bottom:501.060000px;}
.y174{bottom:502.506000px;}
.y25{bottom:506.124000px;}
.y146{bottom:507.000000px;}
.y6b{bottom:508.806000px;}
.y1a3{bottom:510.306000px;}
.y118{bottom:511.800000px;}
.yf9{bottom:512.994000px;}
.yf5{bottom:513.000000px;}
.y97{bottom:514.800000px;}
.y1e4{bottom:515.400000px;}
.yc7{bottom:520.812000px;}
.y98{bottom:521.700000px;}
.y117{bottom:522.000000px;}
.y56{bottom:524.154000px;}
.y173{bottom:525.600000px;}
.y145{bottom:526.200000px;}
.y24{bottom:529.524000px;}
.y6a{bottom:531.900000px;}
.yf2{bottom:532.200000px;}
.y1a2{bottom:533.706000px;}
.y1e3{bottom:534.900000px;}
.yf4{bottom:537.306000px;}
.y115{bottom:537.900000px;}
.y116{bottom:543.000000px;}
.yc6{bottom:544.212000px;}
.y172{bottom:547.200000px;}
.y55{bottom:547.554000px;}
.y144{bottom:550.200000px;}
.y96{bottom:550.800000px;}
.y23{bottom:552.924000px;}
.y69{bottom:553.500000px;}
.y1e2{bottom:554.400000px;}
.y1a1{bottom:557.106000px;}
.yf3{bottom:560.400000px;}
.y171{bottom:563.700000px;}
.yc5{bottom:567.612000px;}
.y54{bottom:570.954000px;}
.y1e1{bottom:573.900000px;}
.y95{bottom:574.200000px;}
.y22{bottom:576.018000px;}
.y143{bottom:579.300000px;}
.y1a0{bottom:580.200000px;}
.y170{bottom:582.900000px;}
.y113{bottom:585.300000px;}
.yc4{bottom:590.706000px;}
.y1e0{bottom:593.100000px;}
.y53{bottom:594.048000px;}
.y94{bottom:594.600000px;}
.y16f{bottom:598.800000px;}
.y21{bottom:599.418000px;}
.y19f{bottom:601.800000px;}
.yf1{bottom:602.700000px;}
.y93{bottom:607.218000px;}
.y1df{bottom:612.600000px;}
.y114{bottom:613.500000px;}
.yc3{bottom:614.106000px;}
.y19e{bottom:614.400000px;}
.y52{bottom:617.448000px;}
.yef{bottom:619.800000px;}
.y19d{bottom:621.012000px;}
.y142{bottom:621.600000px;}
.y20{bottom:622.512000px;}
.yf0{bottom:626.700000px;}
.y92{bottom:630.312000px;}
.y1de{bottom:632.100000px;}
.y16e{bottom:634.500000px;}
.yc2{bottom:637.200000px;}
.y51{bottom:640.848000px;}
.y19c{bottom:644.412000px;}
.y140{bottom:645.600000px;}
.y1f{bottom:645.912000px;}
.y1dd{bottom:651.300000px;}
.y91{bottom:653.712000px;}
.yee{bottom:655.800000px;}
.y141{bottom:656.700000px;}
.yc1{bottom:657.300000px;}
.y50{bottom:663.942000px;}
.yc0{bottom:667.500000px;}
.y19b{bottom:667.812000px;}
.y1e{bottom:669.312000px;}
.y13e{bottom:669.600000px;}
.y16c{bottom:670.200000px;}
.y1dc{bottom:670.800000px;}
.y13d{bottom:674.406000px;}
.yed{bottom:679.200000px;}
.ybe{bottom:683.400000px;}
.y16d{bottom:687.300000px;}
.y4f{bottom:687.342000px;}
.ybf{bottom:688.500000px;}
.y1db{bottom:690.300000px;}
.y19a{bottom:690.906000px;}
.y13f{bottom:692.400000px;}
.y1d{bottom:692.406000px;}
.y90{bottom:695.112000px;}
.yec{bottom:699.600000px;}
.y110{bottom:703.200000px;}
.y112{bottom:708.300000px;}
.y1da{bottom:709.500000px;}
.y4e{bottom:710.436000px;}
.yeb{bottom:712.206000px;}
.y199{bottom:714.306000px;}
.y1c{bottom:715.806000px;}
.y8f{bottom:718.206000px;}
.y1d9{bottom:729.000000px;}
.ybc{bottom:730.800000px;}
.y111{bottom:731.700000px;}
.y13c{bottom:733.806000px;}
.y4d{bottom:733.836000px;}
.yea{bottom:735.606000px;}
.y198{bottom:737.400000px;}
.y1b{bottom:739.206000px;}
.y16a{bottom:741.000000px;}
.y8e{bottom:741.606000px;}
.y1d8{bottom:748.500000px;}
.y13b{bottom:756.900000px;}
.y4c{bottom:757.236000px;}
.y16b{bottom:757.800000px;}
.ye9{bottom:758.700000px;}
.ybd{bottom:759.300000px;}
.y1a{bottom:762.300000px;}
.y8d{bottom:765.006000px;}
.y1d7{bottom:768.000000px;}
.y197{bottom:769.500000px;}
.y10f{bottom:773.700000px;}
.y13a{bottom:777.300000px;}
.ye8{bottom:780.300000px;}
.y4b{bottom:780.330000px;}
.y19{bottom:785.700000px;}
.y1d6{bottom:787.200000px;}
.y8c{bottom:788.100000px;}
.y196{bottom:789.000000px;}
.y139{bottom:789.906000px;}
.y10d{bottom:790.800000px;}
.ye7{bottom:797.718000px;}
.y10e{bottom:798.000000px;}
.yb9{bottom:801.298500px;}
.y4a{bottom:803.730000px;}
.y18{bottom:804.900000px;}
.y1d5{bottom:806.700000px;}
.y195{bottom:810.000000px;}
.y8b{bottom:811.500000px;}
.y17{bottom:812.100000px;}
.y138{bottom:813.306000px;}
.ye6{bottom:820.812000px;}
.y1d4{bottom:826.200000px;}
.y10c{bottom:827.106000px;}
.y49{bottom:827.130000px;}
.y16{bottom:831.300000px;}
.y8a{bottom:831.600000px;}
.y194{bottom:834.000000px;}
.y137{bottom:836.400000px;}
.y89{bottom:842.418000px;}
.ye5{bottom:844.212000px;}
.y1d3{bottom:845.400000px;}
.y169{bottom:847.200000px;}
.y15{bottom:847.500000px;}
.yb5{bottom:848.700000px;}
.y10b{bottom:850.200000px;}
.y48{bottom:850.224000px;}
.y192{bottom:853.200000px;}
.yb7{bottom:853.800000px;}
.y14{bottom:854.700000px;}
.y136{bottom:858.000000px;}
.y193{bottom:858.300000px;}
.y1d2{bottom:864.900000px;}
.y88{bottom:865.818000px;}
.ye4{bottom:867.306000px;}
.y10a{bottom:870.300000px;}
.y47{bottom:873.624000px;}
.y13{bottom:874.200000px;}
.y135{bottom:874.500000px;}
.yb8{bottom:877.200000px;}
.y109{bottom:881.406000px;}
.y167{bottom:881.994000px;}
.y168{bottom:882.900000px;}
.y1d1{bottom:884.400000px;}
.y87{bottom:889.218000px;}
.ye3{bottom:890.706000px;}
.y12{bottom:893.400000px;}
.y134{bottom:894.000000px;}
.y46{bottom:897.024000px;}
.y191{bottom:900.300000px;}
.y1d0{bottom:903.600000px;}
.y108{bottom:904.500000px;}
.y133{bottom:909.900000px;}
.y86{bottom:912.312000px;}
.y11{bottom:913.806000px;}
.ye2{bottom:914.106000px;}
.yb4{bottom:919.500000px;}
.y45{bottom:920.118000px;}
.y1cf{bottom:923.100000px;}
.y166{bottom:923.700000px;}
.y107{bottom:927.900000px;}
.y85{bottom:935.712000px;}
.yb2{bottom:936.600000px;}
.ye1{bottom:937.200000px;}
.y10{bottom:937.206000px;}
.y132{bottom:939.000000px;}
.y1ce{bottom:942.600000px;}
.yb3{bottom:943.500000px;}
.y44{bottom:943.518000px;}
.y165{bottom:947.100000px;}
.y190{bottom:947.700000px;}
.y106{bottom:949.500000px;}
.y84{bottom:959.112000px;}
.yf{bottom:960.300000px;}
.ye0{bottom:960.600000px;}
.y1cd{bottom:962.100000px;}
.y131{bottom:963.000000px;}
.y43{bottom:966.612000px;}
.y164{bottom:967.500000px;}
.y18b{bottom:971.700000px;}
.yb1{bottom:972.600000px;}
.y163{bottom:980.106000px;}
.ydf{bottom:980.700000px;}
.y1cc{bottom:981.300000px;}
.y12f{bottom:981.900000px;}
.y83{bottom:982.206000px;}
.y18f{bottom:982.800000px;}
.ye{bottom:983.700000px;}
.y130{bottom:987.000000px;}
.y42{bottom:990.012000px;}
.yde{bottom:990.900000px;}
.y18d{bottom:995.700000px;}
.yb0{bottom:996.000000px;}
.y1cb{bottom:1000.800000px;}
.y162{bottom:1003.200000px;}
.y82{bottom:1005.606000px;}
.ydc{bottom:1006.800000px;}
.yd{bottom:1007.694000px;}
.y41{bottom:1013.412000px;}
.yaf{bottom:1016.400000px;}
.y1ca{bottom:1020.300000px;}
.y161{bottom:1024.800000px;}
.y81{bottom:1029.006000px;}
.y12e{bottom:1029.300000px;}
.y18e{bottom:1030.200000px;}
.yc{bottom:1034.700000px;}
.ydd{bottom:1035.000000px;}
.y40{bottom:1036.506000px;}
.y1c9{bottom:1039.500000px;}
.y160{bottom:1041.300000px;}
.y18a{bottom:1048.200000px;}
.y80{bottom:1052.100000px;}
.y12c{bottom:1053.300000px;}
.y1c8{bottom:1059.000000px;}
.y3f{bottom:1059.906000px;}
.y15f{bottom:1060.500000px;}
.yb{bottom:1061.400000px;}
.y12d{bottom:1064.400000px;}
.y189{bottom:1071.600000px;}
.y7f{bottom:1075.500000px;}
.y15e{bottom:1076.700000px;}
.yda{bottom:1077.300000px;}
.y1c7{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y129{bottom:1082.100000px;}
.y3e{bottom:1083.306000px;}
.y188{bottom:1092.000000px;}
.y7e{bottom:1095.300000px;}
.y1c6{bottom:1097.700000px;}
.y187{bottom:1099.800000px;}
.y12b{bottom:1100.100000px;}
.y6{bottom:1103.400000px;}
.ydb{bottom:1105.800000px;}
.y3d{bottom:1106.400000px;}
.y15d{bottom:1112.400000px;}
.y1c5{bottom:1117.200000px;}
.y5{bottom:1129.200000px;}
.y3c{bottom:1129.800000px;}
.y1c4{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y3b{bottom:1153.200000px;}
.y1c3{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y3a{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h2a{height:4.392000px;}
.h2b{height:5.220000px;}
.hd{height:10.440000px;}
.h10{height:20.880000px;}
.h13{height:23.100000px;}
.h24{height:23.101500px;}
.h18{height:23.400000px;}
.h5{height:23.401500px;}
.h8{height:23.998500px;}
.h12{height:26.100000px;}
.h21{height:30.744000px;}
.h4{height:31.320000px;}
.h27{height:34.798500px;}
.h26{height:34.800000px;}
.h29{height:35.098500px;}
.h25{height:35.100000px;}
.hf{height:41.760000px;}
.h3{height:43.200000px;}
.h2{height:43.920000px;}
.h1e{height:46.500000px;}
.h15{height:46.501500px;}
.h2d{height:46.798500px;}
.h17{height:46.800000px;}
.h7{height:47.400000px;}
.h20{height:47.988281px;}
.he{height:51.840000px;}
.hc{height:52.200000px;}
.h6{height:52.704000px;}
.h22{height:52.920000px;}
.h28{height:54.744000px;}
.h2f{height:57.420000px;}
.hb{height:61.488000px;}
.h2e{height:62.578125px;}
.ha{height:62.640000px;}
.h1a{height:69.600000px;}
.h16{height:69.898500px;}
.h14{height:69.900000px;}
.h19{height:70.664062px;}
.h2c{height:70.800000px;}
.h9{height:72.562500px;}
.h11{height:75.093750px;}
.h1d{height:93.300000px;}
.h1b{height:93.301500px;}
.h23{height:100.680000px;}
.h1f{height:100.704000px;}
.h1c{height:116.400000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w30{width:32.701500px;}
.w20{width:40.800000px;}
.w36{width:41.100000px;}
.w3f{width:41.101500px;}
.w27{width:41.700000px;}
.w19{width:44.700000px;}
.w38{width:44.701500px;}
.w2e{width:45.298500px;}
.w29{width:45.300000px;}
.w32{width:47.701500px;}
.w47{width:48.900000px;}
.w37{width:49.498500px;}
.w18{width:49.800000px;}
.w28{width:50.400000px;}
.w48{width:52.500000px;}
.w17{width:53.400000px;}
.w35{width:58.798500px;}
.w1e{width:58.800000px;}
.w26{width:59.400000px;}
.w25{width:59.700000px;}
.w31{width:62.998500px;}
.w6{width:63.900000px;}
.wf{width:63.901500px;}
.w46{width:65.998500px;}
.w3e{width:68.400000px;}
.w1f{width:68.700000px;}
.wa{width:69.900000px;}
.w8{width:73.500000px;}
.w7{width:73.800000px;}
.w16{width:74.100000px;}
.w40{width:76.201500px;}
.w4a{width:77.700000px;}
.w2f{width:86.700000px;}
.w1a{width:89.100000px;}
.w4b{width:90.298500px;}
.wc{width:90.300000px;}
.w41{width:91.800000px;}
.w10{width:94.800000px;}
.w39{width:103.498500px;}
.w2b{width:106.500000px;}
.w2a{width:109.800000px;}
.w49{width:110.400000px;}
.w21{width:123.300000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w3a{width:159.600000px;}
.w45{width:168.000000px;}
.w3d{width:168.001500px;}
.w1d{width:173.100000px;}
.w15{width:183.900000px;}
.w3b{width:207.000000px;}
.w43{width:208.800000px;}
.w24{width:216.300000px;}
.w2d{width:241.500000px;}
.w22{width:245.700000px;}
.w1b{width:252.600000px;}
.w33{width:252.901500px;}
.w23{width:256.500000px;}
.w2c{width:260.400000px;}
.w3c{width:262.500000px;}
.w1c{width:262.800000px;}
.w34{width:263.098500px;}
.w42{width:279.600000px;}
.w5{width:285.000000px;}
.w14{width:285.900000px;}
.w12{width:294.900000px;}
.wb{width:301.500000px;}
.we{width:306.000000px;}
.w11{width:334.198500px;}
.wd{width:338.700000px;}
.w13{width:345.600000px;}
.w44{width:346.200000px;}
.w9{width:355.200000px;}
.w2{width:478.200000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:4.500000px;}
.x4{left:8.100000px;}
.xa8{left:9.300000px;}
.x69{left:10.500000px;}
.x2d{left:12.600000px;}
.x5b{left:15.000000px;}
.x62{left:16.200000px;}
.x2a{left:18.300000px;}
.x79{left:19.500000px;}
.x1c{left:21.000000px;}
.xa6{left:22.500000px;}
.x28{left:24.900000px;}
.x21{left:26.400000px;}
.x50{left:27.900000px;}
.x65{left:29.100000px;}
.x1e{left:30.900000px;}
.x6b{left:33.000000px;}
.x41{left:35.100000px;}
.x4b{left:36.900000px;}
.x86{left:38.100000px;}
.x3c{left:39.300000px;}
.x76{left:42.000000px;}
.x66{left:45.000000px;}
.x90{left:46.200000px;}
.x7b{left:47.400000px;}
.x85{left:49.500000px;}
.xa0{left:56.400000px;}
.x74{left:58.800000px;}
.x94{left:63.000000px;}
.x63{left:64.200000px;}
.x92{left:65.400000px;}
.x3{left:79.800000px;}
.x93{left:84.900000px;}
.x1a{left:88.800000px;}
.x1{left:91.500000px;}
.x5a{left:93.600000px;}
.x14{left:95.700000px;}
.x39{left:97.200000px;}
.x12{left:98.400000px;}
.x47{left:99.600000px;}
.x7c{left:105.600000px;}
.x6f{left:113.718000px;}
.x6c{left:116.100000px;}
.xa9{left:118.500000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x95{left:134.100000px;}
.x15{left:144.600000px;}
.x9{left:157.500000px;}
.xaa{left:173.100000px;}
.x11{left:176.406000px;}
.x7e{left:179.400000px;}
.x71{left:182.400000px;}
.x60{left:193.800000px;}
.x56{left:205.200000px;}
.x44{left:206.394000px;}
.x13{left:208.500000px;}
.x35{left:213.900000px;}
.xe{left:219.600000px;}
.xb{left:226.800000px;}
.xd{left:228.870000px;}
.xc{left:231.282000px;}
.x45{left:237.300000px;}
.x37{left:239.406000px;}
.x58{left:243.006000px;}
.x19{left:247.812000px;}
.xa{left:253.806000px;}
.x6e{left:272.406000px;}
.x18{left:285.306000px;}
.x97{left:286.806000px;}
.x8c{left:291.900000px;}
.x9d{left:293.700000px;}
.x8b{left:303.900000px;}
.x5e{left:316.500000px;}
.x87{left:333.000000px;}
.x5f{left:344.100000px;}
.x70{left:351.300000px;}
.xa1{left:359.700000px;}
.x98{left:371.100000px;}
.xf{left:374.100000px;}
.x88{left:378.300000px;}
.x8d{left:382.200000px;}
.xa2{left:396.000000px;}
.x64{left:408.000000px;}
.x75{left:410.100000px;}
.x81{left:411.600000px;}
.x7d{left:413.100000px;}
.x46{left:425.700000px;}
.xa3{left:428.100000px;}
.x38{left:430.200000px;}
.x4c{left:433.800000px;}
.x59{left:437.100000px;}
.x3d{left:438.300000px;}
.x82{left:443.700000px;}
.x5c{left:444.900000px;}
.x2{left:446.400000px;}
.x10{left:449.400000px;}
.x8e{left:450.600000px;}
.x51{left:452.694000px;}
.x23{left:454.800000px;}
.x33{left:456.894000px;}
.x89{left:465.000000px;}
.x32{left:468.900000px;}
.x83{left:471.000000px;}
.x16{left:473.100000px;}
.xa4{left:477.000000px;}
.x77{left:478.800000px;}
.x67{left:482.100000px;}
.x48{left:489.600000px;}
.x3a{left:494.100000px;}
.x4d{left:497.700000px;}
.x8f{left:500.100000px;}
.x40{left:502.200000px;}
.x3e{left:507.006000px;}
.x1d{left:510.600000px;}
.x84{left:512.700000px;}
.x2f{left:518.700000px;}
.x52{left:521.400000px;}
.x24{left:523.500000px;}
.x36{left:525.600000px;}
.x9e{left:528.000000px;}
.xa5{left:529.500000px;}
.x68{left:535.500000px;}
.x2b{left:537.600000px;}
.x9a{left:539.400000px;}
.x7f{left:541.500000px;}
.x72{left:543.900000px;}
.x61{left:548.100000px;}
.x5{left:558.000000px;}
.x8a{left:560.700000px;}
.x49{left:563.400000px;}
.x3b{left:567.900000px;}
.x78{left:569.400000px;}
.x57{left:571.200000px;}
.x4e{left:578.100000px;}
.x1f{left:584.400000px;}
.x9b{left:588.900000px;}
.x53{left:590.106000px;}
.x25{left:592.500000px;}
.x3f{left:603.000000px;}
.x30{left:604.200000px;}
.x80{left:608.400000px;}
.x2c{left:611.400000px;}
.x73{left:614.100000px;}
.x34{left:616.212000px;}
.x42{left:629.400000px;}
.x99{left:633.600000px;}
.x4a{left:636.900000px;}
.x9f{left:639.900000px;}
.x91{left:648.300000px;}
.x4f{left:655.500000px;}
.x20{left:658.200000px;}
.x55{left:662.394000px;}
.x7a{left:663.900000px;}
.x31{left:666.300000px;}
.x26{left:673.200000px;}
.x54{left:674.400000px;}
.x7{left:685.800000px;}
.x9c{left:709.800000px;}
.xa7{left:717.600000px;}
.x6a{left:719.100000px;}
.x96{left:721.200000px;}
.x6d{left:725.700000px;}
.x17{left:728.700000px;}
.x5d{left:730.500000px;}
.x27{left:731.700000px;}
.x29{left:739.800000px;}
.x1b{left:746.100000px;}
.x2e{left:756.600000px;}
.x43{left:801.600000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v4{vertical-align:21.333333pt;}
.v1{vertical-align:42.666667pt;}
.ls60{letter-spacing:-3.946667pt;}
.ls36{letter-spacing:-2.688000pt;}
.ls56{letter-spacing:-2.240000pt;}
.ls5f{letter-spacing:-2.176000pt;}
.ls35{letter-spacing:-1.600000pt;}
.ls38{letter-spacing:-1.536000pt;}
.ls55{letter-spacing:-1.493333pt;}
.ls34{letter-spacing:-1.408000pt;}
.ls37{letter-spacing:-1.216000pt;}
.ls2b{letter-spacing:-0.832000pt;}
.ls39{letter-spacing:-0.768000pt;}
.ls67{letter-spacing:-0.746667pt;}
.ls4c{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls69{letter-spacing:-0.480000pt;}
.ls6e{letter-spacing:-0.469333pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls4d{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls6a{letter-spacing:-0.293333pt;}
.ls16{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls70{letter-spacing:-0.234667pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls6d{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls6f{letter-spacing:-0.058667pt;}
.ls68{letter-spacing:-0.053333pt;}
.ls11{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.053333pt;}
.ls2c{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.165333pt;}
.ls13{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.266667pt;}
.ls6c{letter-spacing:0.293333pt;}
.ls27{letter-spacing:0.300800pt;}
.ls4{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.352000pt;}
.ls2a{letter-spacing:0.373333pt;}
.ls31{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.390400pt;}
.ls3{letter-spacing:0.405333pt;}
.ls6b{letter-spacing:0.410667pt;}
.ls66{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.428800pt;}
.ls5{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls4e{letter-spacing:0.586667pt;}
.ls23{letter-spacing:0.627200pt;}
.ls4f{letter-spacing:0.640000pt;}
.ls48{letter-spacing:0.693333pt;}
.ls25{letter-spacing:0.768000pt;}
.ls20{letter-spacing:1.024000pt;}
.ls54{letter-spacing:1.066667pt;}
.ls50{letter-spacing:1.130667pt;}
.ls33{letter-spacing:1.344000pt;}
.ls32{letter-spacing:1.472000pt;}
.ls1e{letter-spacing:2.112000pt;}
.ls22{letter-spacing:3.200000pt;}
.ls51{letter-spacing:3.573333pt;}
.lse{letter-spacing:4.096000pt;}
.ls41{letter-spacing:4.224000pt;}
.lsb{letter-spacing:6.400000pt;}
.ls8{letter-spacing:7.424000pt;}
.ls9{letter-spacing:7.648000pt;}
.ls64{letter-spacing:9.226667pt;}
.lsd{letter-spacing:9.600000pt;}
.ls53{letter-spacing:9.973333pt;}
.lsc{letter-spacing:11.712000pt;}
.ls65{letter-spacing:11.840000pt;}
.ls61{letter-spacing:19.200000pt;}
.ls62{letter-spacing:23.424000pt;}
.ls28{letter-spacing:29.141333pt;}
.ls30{letter-spacing:34.156800pt;}
.ls40{letter-spacing:40.531200pt;}
.ls63{letter-spacing:40.640000pt;}
.ls5e{letter-spacing:43.008000pt;}
.ls45{letter-spacing:52.243200pt;}
.ls46{letter-spacing:53.312000pt;}
.ls49{letter-spacing:54.355200pt;}
.ls2f{letter-spacing:55.443200pt;}
.ls44{letter-spacing:98.112000pt;}
.ls58{letter-spacing:110.912000pt;}
.ls5b{letter-spacing:128.000000pt;}
.ls3c{letter-spacing:130.112000pt;}
.ls3d{letter-spacing:134.400000pt;}
.ls57{letter-spacing:152.512000pt;}
.ls4a{letter-spacing:161.024000pt;}
.ls59{letter-spacing:162.131200pt;}
.ls47{letter-spacing:171.731200pt;}
.ls5c{letter-spacing:174.931200pt;}
.ls3e{letter-spacing:190.931200pt;}
.ls5d{letter-spacing:218.624000pt;}
.ls4b{letter-spacing:247.443200pt;}
.ls3f{letter-spacing:304.000000pt;}
.ls5a{letter-spacing:313.600000pt;}
.ls43{letter-spacing:432.000000pt;}
.ls1f{letter-spacing:653.493333pt;}
.ls42{letter-spacing:722.922667pt;}
.ls1{letter-spacing:752.693333pt;}
.ls2{letter-spacing:777.226667pt;}
.ls3a{letter-spacing:788.117333pt;}
.ls52{letter-spacing:842.368000pt;}
.ls0{letter-spacing:1214.560000pt;}
.ws92{word-spacing:-53.333333pt;}
.ws81{word-spacing:-18.432000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws5f{word-spacing:-17.344000pt;}
.ws9{word-spacing:-17.216000pt;}
.ws3{word-spacing:-17.088000pt;}
.ws82{word-spacing:-17.024000pt;}
.ws91{word-spacing:-16.832000pt;}
.ws95{word-spacing:-16.768000pt;}
.ws5c{word-spacing:-16.704000pt;}
.ws46{word-spacing:-16.576000pt;}
.ws2{word-spacing:-16.384000pt;}
.ws47{word-spacing:-16.192000pt;}
.ws5b{word-spacing:-16.128000pt;}
.wsa4{word-spacing:-16.064000pt;}
.ws90{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws8f{word-spacing:-15.808000pt;}
.ws5a{word-spacing:-15.680000pt;}
.ws8e{word-spacing:-15.616000pt;}
.ws84{word-spacing:-15.552000pt;}
.ws83{word-spacing:-15.488000pt;}
.wsba{word-spacing:-15.429333pt;}
.wsb9{word-spacing:-15.194667pt;}
.wsb8{word-spacing:-14.549333pt;}
.ws5e{word-spacing:-14.506667pt;}
.ws6f{word-spacing:-14.453333pt;}
.ws1{word-spacing:-14.346667pt;}
.wsb7{word-spacing:-14.240000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.973333pt;}
.ws94{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.ws5d{word-spacing:-13.066667pt;}
.wsb6{word-spacing:-13.013333pt;}
.ws93{word-spacing:-8.544000pt;}
.ws22{word-spacing:-7.424000pt;}
.wsab{word-spacing:-4.544000pt;}
.ws64{word-spacing:-3.776000pt;}
.wsb4{word-spacing:-3.456000pt;}
.wsbc{word-spacing:-3.146667pt;}
.wsae{word-spacing:-2.944000pt;}
.ws80{word-spacing:-2.816000pt;}
.ws2e{word-spacing:-2.688000pt;}
.wsd1{word-spacing:-2.453333pt;}
.ws63{word-spacing:-2.432000pt;}
.wsd5{word-spacing:-2.346667pt;}
.wsd3{word-spacing:-2.240000pt;}
.ws25{word-spacing:-2.112000pt;}
.wsd2{word-spacing:-2.080000pt;}
.ws50{word-spacing:-1.984000pt;}
.ws51{word-spacing:-1.920000pt;}
.ws74{word-spacing:-1.792000pt;}
.wsd7{word-spacing:-1.760000pt;}
.ws36{word-spacing:-1.664000pt;}
.wsbd{word-spacing:-1.653333pt;}
.wsbe{word-spacing:-1.546667pt;}
.ws8d{word-spacing:-1.408000pt;}
.ws8a{word-spacing:-1.280000pt;}
.wsbf{word-spacing:-1.173333pt;}
.wsd4{word-spacing:-1.066667pt;}
.ws55{word-spacing:-1.024000pt;}
.wsd6{word-spacing:-1.013333pt;}
.ws1c{word-spacing:-0.832000pt;}
.ws52{word-spacing:-0.768000pt;}
.ws6e{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.576000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws56{word-spacing:-0.448000pt;}
.wsd0{word-spacing:-0.426667pt;}
.wsc{word-spacing:-0.373333pt;}
.ws10{word-spacing:-0.320000pt;}
.ws6d{word-spacing:-0.266667pt;}
.ws20{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws70{word-spacing:-0.128000pt;}
.ws2a{word-spacing:-0.106667pt;}
.ws54{word-spacing:-0.064000pt;}
.ws7b{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053333pt;}
.wsdd{word-spacing:0.058667pt;}
.ws21{word-spacing:0.064000pt;}
.ws67{word-spacing:0.128000pt;}
.ws75{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.256000pt;}
.ws13{word-spacing:0.266667pt;}
.wsd{word-spacing:0.298667pt;}
.ws62{word-spacing:0.320000pt;}
.ws98{word-spacing:0.373333pt;}
.ws38{word-spacing:0.384000pt;}
.wse1{word-spacing:0.410667pt;}
.ws97{word-spacing:0.426667pt;}
.ws27{word-spacing:0.448000pt;}
.wse0{word-spacing:0.469333pt;}
.wsc2{word-spacing:0.480000pt;}
.wsf{word-spacing:0.512000pt;}
.ws59{word-spacing:0.704000pt;}
.wsc9{word-spacing:0.746667pt;}
.ws89{word-spacing:0.768000pt;}
.ws88{word-spacing:0.832000pt;}
.ws9b{word-spacing:1.120000pt;}
.ws96{word-spacing:1.216000pt;}
.ws73{word-spacing:1.280000pt;}
.ws69{word-spacing:1.408000pt;}
.ws17{word-spacing:1.536000pt;}
.wsbb{word-spacing:1.546667pt;}
.ws9a{word-spacing:1.600000pt;}
.ws1a{word-spacing:1.856000pt;}
.ws4f{word-spacing:2.176000pt;}
.ws9e{word-spacing:2.186667pt;}
.wsa1{word-spacing:2.240000pt;}
.wscd{word-spacing:2.400000pt;}
.ws28{word-spacing:2.560000pt;}
.wscc{word-spacing:2.613333pt;}
.ws16{word-spacing:2.624000pt;}
.wsca{word-spacing:2.826667pt;}
.ws4c{word-spacing:2.880000pt;}
.ws66{word-spacing:2.944000pt;}
.wsdf{word-spacing:3.168000pt;}
.wsce{word-spacing:3.200000pt;}
.ws9d{word-spacing:3.253333pt;}
.wsa0{word-spacing:3.264000pt;}
.wsde{word-spacing:3.520000pt;}
.ws4b{word-spacing:3.584000pt;}
.ws24{word-spacing:3.648000pt;}
.ws2c{word-spacing:3.712000pt;}
.wsa5{word-spacing:3.946667pt;}
.ws3e{word-spacing:3.968000pt;}
.ws65{word-spacing:4.032000pt;}
.ws3d{word-spacing:4.288000pt;}
.ws9f{word-spacing:4.320000pt;}
.wsaf{word-spacing:4.480000pt;}
.ws29{word-spacing:4.608000pt;}
.ws15{word-spacing:4.736000pt;}
.wsc4{word-spacing:4.906667pt;}
.ws3f{word-spacing:5.056000pt;}
.wsc5{word-spacing:5.120000pt;}
.ws57{word-spacing:5.376000pt;}
.wsc3{word-spacing:5.386667pt;}
.wsad{word-spacing:5.568000pt;}
.ws58{word-spacing:5.696000pt;}
.ws1b{word-spacing:5.824000pt;}
.ws1e{word-spacing:6.144000pt;}
.wsa3{word-spacing:6.784000pt;}
.ws33{word-spacing:6.912000pt;}
.wsb0{word-spacing:7.168000pt;}
.ws19{word-spacing:7.488000pt;}
.ws49{word-spacing:7.808000pt;}
.ws48{word-spacing:7.872000pt;}
.ws14{word-spacing:7.936000pt;}
.wsaa{word-spacing:8.896000pt;}
.wsc6{word-spacing:9.013333pt;}
.ws2d{word-spacing:9.024000pt;}
.wscb{word-spacing:9.120000pt;}
.ws60{word-spacing:9.280000pt;}
.ws99{word-spacing:9.344000pt;}
.wsc7{word-spacing:9.386667pt;}
.wsc8{word-spacing:9.600000pt;}
.wsa2{word-spacing:9.653333pt;}
.ws35{word-spacing:9.664000pt;}
.ws61{word-spacing:9.856000pt;}
.ws4e{word-spacing:10.048000pt;}
.ws32{word-spacing:10.112000pt;}
.ws37{word-spacing:10.432000pt;}
.ws18{word-spacing:10.688000pt;}
.ws34{word-spacing:11.136000pt;}
.ws4a{word-spacing:12.096000pt;}
.wsb2{word-spacing:12.160000pt;}
.ws42{word-spacing:12.224000pt;}
.ws41{word-spacing:12.544000pt;}
.wsdc{word-spacing:12.730667pt;}
.wsa6{word-spacing:13.056000pt;}
.ws8c{word-spacing:13.184000pt;}
.wsdb{word-spacing:13.200000pt;}
.ws23{word-spacing:13.312000pt;}
.ws8b{word-spacing:14.080000pt;}
.ws43{word-spacing:14.336000pt;}
.ws3c{word-spacing:15.168000pt;}
.ws45{word-spacing:15.296000pt;}
.wsc1{word-spacing:15.413333pt;}
.ws44{word-spacing:15.424000pt;}
.wsc0{word-spacing:16.000000pt;}
.wscf{word-spacing:16.053333pt;}
.ws6a{word-spacing:16.192000pt;}
.ws2f{word-spacing:16.512000pt;}
.wsb5{word-spacing:17.408000pt;}
.ws40{word-spacing:17.536000pt;}
.ws9c{word-spacing:17.856000pt;}
.ws76{word-spacing:18.496000pt;}
.ws68{word-spacing:18.624000pt;}
.wsac{word-spacing:19.712000pt;}
.ws39{word-spacing:21.568000pt;}
.wsa9{word-spacing:21.696000pt;}
.ws3a{word-spacing:21.824000pt;}
.ws6b{word-spacing:22.912000pt;}
.wsa8{word-spacing:23.808000pt;}
.wsb3{word-spacing:23.872000pt;}
.wsa7{word-spacing:23.936000pt;}
.ws4d{word-spacing:25.024000pt;}
.ws79{word-spacing:26.112000pt;}
.wsb1{word-spacing:27.136000pt;}
.ws31{word-spacing:27.968000pt;}
.ws30{word-spacing:28.224000pt;}
.ws7a{word-spacing:28.864000pt;}
.ws7f{word-spacing:29.312000pt;}
.ws2b{word-spacing:31.424000pt;}
.ws6c{word-spacing:32.512000pt;}
.wsd9{word-spacing:33.653333pt;}
.wsda{word-spacing:33.813333pt;}
.wsd8{word-spacing:34.186667pt;}
.ws87{word-spacing:34.624000pt;}
.ws72{word-spacing:36.608000pt;}
.ws26{word-spacing:37.376000pt;}
.ws85{word-spacing:41.024000pt;}
.ws53{word-spacing:42.112000pt;}
.ws3b{word-spacing:46.976000pt;}
.ws71{word-spacing:48.512000pt;}
.ws7e{word-spacing:51.712000pt;}
.ws78{word-spacing:54.912000pt;}
.ws86{word-spacing:55.808000pt;}
.ws7c{word-spacing:58.112000pt;}
.ws7d{word-spacing:62.720000pt;}
.ws77{word-spacing:67.712000pt;}
._18{margin-left:-8.832000pt;}
._c{margin-left:-7.872000pt;}
._b{margin-left:-6.956800pt;}
._d{margin-left:-5.702400pt;}
._19{margin-left:-4.259200pt;}
._e{margin-left:-3.014400pt;}
._6{margin-left:-1.948800pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._7{width:2.105600pt;}
._14{width:3.069867pt;}
._15{width:4.820267pt;}
._1b{width:5.950933pt;}
._a{width:7.366400pt;}
._11{width:8.457600pt;}
._12{width:9.420800pt;}
._13{width:10.435200pt;}
._8{width:12.128000pt;}
._9{width:13.299200pt;}
._1a{width:20.326400pt;}
._2c{width:34.080000pt;}
._10{width:36.791467pt;}
._f{width:37.764267pt;}
._21{width:66.432000pt;}
._24{width:70.588800pt;}
._1e{width:72.704000pt;}
._20{width:83.523200pt;}
._28{width:85.632000pt;}
._1d{width:88.832000pt;}
._27{width:96.519467pt;}
._2b{width:114.499200pt;}
._23{width:117.632000pt;}
._1c{width:134.061867pt;}
._1f{width:144.128000pt;}
._29{width:195.392000pt;}
._25{width:217.226667pt;}
._2a{width:240.128000pt;}
._17{width:244.960000pt;}
._26{width:571.253333pt;}
._16{width:598.986667pt;}
._4{width:680.693333pt;}
._22{width:707.214933pt;}
._5{width:816.693333pt;}
._2{width:893.706667pt;}
._3{width:1011.093333pt;}
.fs9{font-size:5.333333pt;}
.fs4{font-size:10.666667pt;}
.fs6{font-size:21.333333pt;}
.fs7{font-size:26.666667pt;}
.fs1{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y7{bottom:4.533333pt;}
.ybb{bottom:4.534667pt;}
.ya{bottom:5.333333pt;}
.y12a{bottom:14.933333pt;}
.y156{bottom:15.200000pt;}
.y153{bottom:20.266667pt;}
.ya1{bottom:25.066667pt;}
.y9c{bottom:25.333333pt;}
.yba{bottom:25.334667pt;}
.yb6{bottom:45.866667pt;}
.y9b{bottom:46.133333pt;}
.y18c{bottom:46.666667pt;}
.y4{bottom:60.266667pt;}
.yf7{bottom:66.666667pt;}
.y7d{bottom:86.421333pt;}
.yfc{bottom:87.200000pt;}
.y39{bottom:87.738667pt;}
.yd8{bottom:88.266667pt;}
.yae{bottom:88.277333pt;}
.y15c{bottom:89.066667pt;}
.y1c2{bottom:93.333333pt;}
.y68{bottom:93.418667pt;}
.y128{bottom:95.482667pt;}
.y186{bottom:100.538667pt;}
.y1b4{bottom:101.909333pt;}
.y1f6{bottom:103.733333pt;}
.y15b{bottom:105.866667pt;}
.y7c{bottom:107.221333pt;}
.y38{bottom:108.266667pt;}
.yad{bottom:108.805333pt;}
.y105{bottom:110.133333pt;}
.y1c1{bottom:110.933333pt;}
.yd9{bottom:113.600000pt;}
.y67{bottom:113.946667pt;}
.y127{bottom:116.282667pt;}
.y1c0{bottom:120.816000pt;}
.y185{bottom:121.066667pt;}
.y1f5{bottom:122.400000pt;}
.y1b3{bottom:122.437333pt;}
.y104{bottom:124.800000pt;}
.y37{bottom:125.333333pt;}
.y7b{bottom:127.749333pt;}
.yac{bottom:129.605333pt;}
.y36{bottom:132.560000pt;}
.y66{bottom:134.746667pt;}
.y126{bottom:136.810667pt;}
.y15a{bottom:137.600000pt;}
.y102{bottom:138.933333pt;}
.y1f4{bottom:139.997333pt;}
.y1bf{bottom:141.616000pt;}
.y184{bottom:141.866667pt;}
.y1b2{bottom:143.237333pt;}
.y7a{bottom:148.549333pt;}
.yab{bottom:150.133333pt;}
.yd6{bottom:151.200000pt;}
.y35{bottom:153.088000pt;}
.y65{bottom:155.546667pt;}
.y125{bottom:157.610667pt;}
.y1f3{bottom:158.932000pt;}
.y183{bottom:161.066667pt;}
.y1be{bottom:162.416000pt;}
.y159{bottom:162.666667pt;}
.y1b1{bottom:163.765333pt;}
.y79{bottom:169.077333pt;}
.yaa{bottom:170.933333pt;}
.y34{bottom:173.888000pt;}
.y182{bottom:175.466667pt;}
.y64{bottom:176.074667pt;}
.yd7{bottom:176.266667pt;}
.y1f2{bottom:177.866667pt;}
.y124{bottom:178.410667pt;}
.y1bd{bottom:182.944000pt;}
.y1b0{bottom:184.565333pt;}
.y103{bottom:185.066667pt;}
.y78{bottom:189.877333pt;}
.ya9{bottom:191.733333pt;}
.y181{bottom:192.800000pt;}
.y158{bottom:194.666667pt;}
.y33{bottom:194.688000pt;}
.y63{bottom:196.874667pt;}
.yd5{bottom:197.066667pt;}
.y123{bottom:198.938667pt;}
.y1f1{bottom:200.800000pt;}
.y1bc{bottom:203.744000pt;}
.y1af{bottom:205.365333pt;}
.y180{bottom:206.933333pt;}
.ya8{bottom:209.333333pt;}
.y77{bottom:210.677333pt;}
.y155{bottom:211.200000pt;}
.yd4{bottom:213.866667pt;}
.y32{bottom:215.216000pt;}
.y62{bottom:217.674667pt;}
.ya7{bottom:218.400000pt;}
.y122{bottom:219.738667pt;}
.yff{bottom:222.400000pt;}
.y1bb{bottom:224.544000pt;}
.y1ae{bottom:225.893333pt;}
.y101{bottom:226.933333pt;}
.y17f{bottom:228.266667pt;}
.yd2{bottom:229.066667pt;}
.y76{bottom:231.205333pt;}
.y157{bottom:231.733333pt;}
.ya5{bottom:232.533333pt;}
.yd3{bottom:235.200000pt;}
.y31{bottom:236.016000pt;}
.y61{bottom:238.202667pt;}
.y1f0{bottom:239.198667pt;}
.y121{bottom:240.538667pt;}
.y152{bottom:242.933333pt;}
.y1ba{bottom:245.072000pt;}
.y1ad{bottom:246.693333pt;}
.y150{bottom:247.472000pt;}
.y100{bottom:247.733333pt;}
.y17e{bottom:249.866667pt;}
.y75{bottom:252.005333pt;}
.y30{bottom:256.816000pt;}
.ya6{bottom:257.866667pt;}
.y1ef{bottom:258.133333pt;}
.y60{bottom:259.002667pt;}
.yd1{bottom:261.066667pt;}
.y151{bottom:263.200000pt;}
.y1b9{bottom:265.872000pt;}
.y1ac{bottom:267.493333pt;}
.y154{bottom:268.533333pt;}
.y17d{bottom:271.200000pt;}
.y74{bottom:272.805333pt;}
.y1ee{bottom:275.200000pt;}
.y2f{bottom:277.344000pt;}
.ya4{bottom:278.666667pt;}
.y5f{bottom:279.802667pt;}
.yd0{bottom:281.866667pt;}
.yfb{bottom:285.333333pt;}
.y1b8{bottom:286.400000pt;}
.y1ed{bottom:287.200000pt;}
.y1ab{bottom:288.021333pt;}
.y14f{bottom:289.600000pt;}
.y73{bottom:293.333333pt;}
.ya2{bottom:295.466667pt;}
.y2e{bottom:298.144000pt;}
.ya3{bottom:300.000000pt;}
.y120{bottom:300.266667pt;}
.y5e{bottom:300.330667pt;}
.y1ec{bottom:304.266667pt;}
.y1b7{bottom:307.200000pt;}
.y1aa{bottom:308.821333pt;}
.y14e{bottom:310.400000pt;}
.ycf{bottom:311.205333pt;}
.y72{bottom:312.533333pt;}
.y11f{bottom:312.810667pt;}
.y17c{bottom:313.066667pt;}
.y2d{bottom:318.944000pt;}
.y5d{bottom:321.130667pt;}
.y1eb{bottom:321.600000pt;}
.y1b6{bottom:328.000000pt;}
.y71{bottom:328.016000pt;}
.y14d{bottom:328.533333pt;}
.y1a9{bottom:329.621333pt;}
.yfe{bottom:331.200000pt;}
.yce{bottom:332.005333pt;}
.y11e{bottom:333.610667pt;}
.y17a{bottom:334.666667pt;}
.ya0{bottom:337.600000pt;}
.y2c{bottom:339.472000pt;}
.y14c{bottom:339.738667pt;}
.y1ea{bottom:340.000000pt;}
.y5c{bottom:341.658667pt;}
.y17b{bottom:344.533333pt;}
.y1b5{bottom:346.933333pt;}
.y70{bottom:348.544000pt;}
.y1a8{bottom:350.149333pt;}
.yfd{bottom:352.000000pt;}
.ycd{bottom:352.533333pt;}
.y11d{bottom:354.410667pt;}
.y1e9{bottom:354.666667pt;}
.y178{bottom:356.000000pt;}
.y14b{bottom:360.266667pt;}
.y2b{bottom:360.272000pt;}
.y5b{bottom:362.458667pt;}
.y9f{bottom:362.666667pt;}
.y6f{bottom:369.344000pt;}
.ycc{bottom:370.400000pt;}
.y1a7{bottom:370.949333pt;}
.y1e8{bottom:372.000000pt;}
.y11c{bottom:374.938667pt;}
.y179{bottom:376.266667pt;}
.y9a{bottom:379.466667pt;}
.ycb{bottom:380.288000pt;}
.y2a{bottom:380.800000pt;}
.y14a{bottom:381.066667pt;}
.y5a{bottom:383.258667pt;}
.y9d{bottom:384.000000pt;}
.yf6{bottom:389.333333pt;}
.y6e{bottom:390.144000pt;}
.y1a6{bottom:391.749333pt;}
.yf8{bottom:393.866667pt;}
.y11b{bottom:395.738667pt;}
.y29{bottom:397.866667pt;}
.y149{bottom:400.266667pt;}
.yca{bottom:400.816000pt;}
.y177{bottom:402.672000pt;}
.y59{bottom:403.786667pt;}
.y9e{bottom:404.800000pt;}
.y28{bottom:405.066667pt;}
.y1e7{bottom:406.400000pt;}
.y6d{bottom:410.672000pt;}
.y1a5{bottom:412.277333pt;}
.y148{bottom:414.933333pt;}
.y11a{bottom:416.538667pt;}
.yc9{bottom:421.616000pt;}
.y176{bottom:423.200000pt;}
.y1e6{bottom:423.733333pt;}
.y58{bottom:424.586667pt;}
.y27{bottom:425.866667pt;}
.y6c{bottom:431.472000pt;}
.y147{bottom:432.000000pt;}
.y1a4{bottom:433.077333pt;}
.yfa{bottom:435.466667pt;}
.y119{bottom:437.066667pt;}
.y175{bottom:440.533333pt;}
.y1e5{bottom:441.066667pt;}
.y99{bottom:442.400000pt;}
.yc8{bottom:442.416000pt;}
.y26{bottom:442.666667pt;}
.y57{bottom:445.386667pt;}
.y174{bottom:446.672000pt;}
.y25{bottom:449.888000pt;}
.y146{bottom:450.666667pt;}
.y6b{bottom:452.272000pt;}
.y1a3{bottom:453.605333pt;}
.y118{bottom:454.933333pt;}
.yf9{bottom:455.994667pt;}
.yf5{bottom:456.000000pt;}
.y97{bottom:457.600000pt;}
.y1e4{bottom:458.133333pt;}
.yc7{bottom:462.944000pt;}
.y98{bottom:463.733333pt;}
.y117{bottom:464.000000pt;}
.y56{bottom:465.914667pt;}
.y173{bottom:467.200000pt;}
.y145{bottom:467.733333pt;}
.y24{bottom:470.688000pt;}
.y6a{bottom:472.800000pt;}
.yf2{bottom:473.066667pt;}
.y1a2{bottom:474.405333pt;}
.y1e3{bottom:475.466667pt;}
.yf4{bottom:477.605333pt;}
.y115{bottom:478.133333pt;}
.y116{bottom:482.666667pt;}
.yc6{bottom:483.744000pt;}
.y172{bottom:486.400000pt;}
.y55{bottom:486.714667pt;}
.y144{bottom:489.066667pt;}
.y96{bottom:489.600000pt;}
.y23{bottom:491.488000pt;}
.y69{bottom:492.000000pt;}
.y1e2{bottom:492.800000pt;}
.y1a1{bottom:495.205333pt;}
.yf3{bottom:498.133333pt;}
.y171{bottom:501.066667pt;}
.yc5{bottom:504.544000pt;}
.y54{bottom:507.514667pt;}
.y1e1{bottom:510.133333pt;}
.y95{bottom:510.400000pt;}
.y22{bottom:512.016000pt;}
.y143{bottom:514.933333pt;}
.y1a0{bottom:515.733333pt;}
.y170{bottom:518.133333pt;}
.y113{bottom:520.266667pt;}
.yc4{bottom:525.072000pt;}
.y1e0{bottom:527.200000pt;}
.y53{bottom:528.042667pt;}
.y94{bottom:528.533333pt;}
.y16f{bottom:532.266667pt;}
.y21{bottom:532.816000pt;}
.y19f{bottom:534.933333pt;}
.yf1{bottom:535.733333pt;}
.y93{bottom:539.749333pt;}
.y1df{bottom:544.533333pt;}
.y114{bottom:545.333333pt;}
.yc3{bottom:545.872000pt;}
.y19e{bottom:546.133333pt;}
.y52{bottom:548.842667pt;}
.yef{bottom:550.933333pt;}
.y19d{bottom:552.010667pt;}
.y142{bottom:552.533333pt;}
.y20{bottom:553.344000pt;}
.yf0{bottom:557.066667pt;}
.y92{bottom:560.277333pt;}
.y1de{bottom:561.866667pt;}
.y16e{bottom:564.000000pt;}
.yc2{bottom:566.400000pt;}
.y51{bottom:569.642667pt;}
.y19c{bottom:572.810667pt;}
.y140{bottom:573.866667pt;}
.y1f{bottom:574.144000pt;}
.y1dd{bottom:578.933333pt;}
.y91{bottom:581.077333pt;}
.yee{bottom:582.933333pt;}
.y141{bottom:583.733333pt;}
.yc1{bottom:584.266667pt;}
.y50{bottom:590.170667pt;}
.yc0{bottom:593.333333pt;}
.y19b{bottom:593.610667pt;}
.y1e{bottom:594.944000pt;}
.y13e{bottom:595.200000pt;}
.y16c{bottom:595.733333pt;}
.y1dc{bottom:596.266667pt;}
.y13d{bottom:599.472000pt;}
.yed{bottom:603.733333pt;}
.ybe{bottom:607.466667pt;}
.y16d{bottom:610.933333pt;}
.y4f{bottom:610.970667pt;}
.ybf{bottom:612.000000pt;}
.y1db{bottom:613.600000pt;}
.y19a{bottom:614.138667pt;}
.y13f{bottom:615.466667pt;}
.y1d{bottom:615.472000pt;}
.y90{bottom:617.877333pt;}
.yec{bottom:621.866667pt;}
.y110{bottom:625.066667pt;}
.y112{bottom:629.600000pt;}
.y1da{bottom:630.666667pt;}
.y4e{bottom:631.498667pt;}
.yeb{bottom:633.072000pt;}
.y199{bottom:634.938667pt;}
.y1c{bottom:636.272000pt;}
.y8f{bottom:638.405333pt;}
.y1d9{bottom:648.000000pt;}
.ybc{bottom:649.600000pt;}
.y111{bottom:650.400000pt;}
.y13c{bottom:652.272000pt;}
.y4d{bottom:652.298667pt;}
.yea{bottom:653.872000pt;}
.y198{bottom:655.466667pt;}
.y1b{bottom:657.072000pt;}
.y16a{bottom:658.666667pt;}
.y8e{bottom:659.205333pt;}
.y1d8{bottom:665.333333pt;}
.y13b{bottom:672.800000pt;}
.y4c{bottom:673.098667pt;}
.y16b{bottom:673.600000pt;}
.ye9{bottom:674.400000pt;}
.ybd{bottom:674.933333pt;}
.y1a{bottom:677.600000pt;}
.y8d{bottom:680.005333pt;}
.y1d7{bottom:682.666667pt;}
.y197{bottom:684.000000pt;}
.y10f{bottom:687.733333pt;}
.y13a{bottom:690.933333pt;}
.ye8{bottom:693.600000pt;}
.y4b{bottom:693.626667pt;}
.y19{bottom:698.400000pt;}
.y1d6{bottom:699.733333pt;}
.y8c{bottom:700.533333pt;}
.y196{bottom:701.333333pt;}
.y139{bottom:702.138667pt;}
.y10d{bottom:702.933333pt;}
.ye7{bottom:709.082667pt;}
.y10e{bottom:709.333333pt;}
.yb9{bottom:712.265333pt;}
.y4a{bottom:714.426667pt;}
.y18{bottom:715.466667pt;}
.y1d5{bottom:717.066667pt;}
.y195{bottom:720.000000pt;}
.y8b{bottom:721.333333pt;}
.y17{bottom:721.866667pt;}
.y138{bottom:722.938667pt;}
.ye6{bottom:729.610667pt;}
.y1d4{bottom:734.400000pt;}
.y10c{bottom:735.205333pt;}
.y49{bottom:735.226667pt;}
.y16{bottom:738.933333pt;}
.y8a{bottom:739.200000pt;}
.y194{bottom:741.333333pt;}
.y137{bottom:743.466667pt;}
.y89{bottom:748.816000pt;}
.ye5{bottom:750.410667pt;}
.y1d3{bottom:751.466667pt;}
.y169{bottom:753.066667pt;}
.y15{bottom:753.333333pt;}
.yb5{bottom:754.400000pt;}
.y10b{bottom:755.733333pt;}
.y48{bottom:755.754667pt;}
.y192{bottom:758.400000pt;}
.yb7{bottom:758.933333pt;}
.y14{bottom:759.733333pt;}
.y136{bottom:762.666667pt;}
.y193{bottom:762.933333pt;}
.y1d2{bottom:768.800000pt;}
.y88{bottom:769.616000pt;}
.ye4{bottom:770.938667pt;}
.y10a{bottom:773.600000pt;}
.y47{bottom:776.554667pt;}
.y13{bottom:777.066667pt;}
.y135{bottom:777.333333pt;}
.yb8{bottom:779.733333pt;}
.y109{bottom:783.472000pt;}
.y167{bottom:783.994667pt;}
.y168{bottom:784.800000pt;}
.y1d1{bottom:786.133333pt;}
.y87{bottom:790.416000pt;}
.ye3{bottom:791.738667pt;}
.y12{bottom:794.133333pt;}
.y134{bottom:794.666667pt;}
.y46{bottom:797.354667pt;}
.y191{bottom:800.266667pt;}
.y1d0{bottom:803.200000pt;}
.y108{bottom:804.000000pt;}
.y133{bottom:808.800000pt;}
.y86{bottom:810.944000pt;}
.y11{bottom:812.272000pt;}
.ye2{bottom:812.538667pt;}
.yb4{bottom:817.333333pt;}
.y45{bottom:817.882667pt;}
.y1cf{bottom:820.533333pt;}
.y166{bottom:821.066667pt;}
.y107{bottom:824.800000pt;}
.y85{bottom:831.744000pt;}
.yb2{bottom:832.533333pt;}
.ye1{bottom:833.066667pt;}
.y10{bottom:833.072000pt;}
.y132{bottom:834.666667pt;}
.y1ce{bottom:837.866667pt;}
.yb3{bottom:838.666667pt;}
.y44{bottom:838.682667pt;}
.y165{bottom:841.866667pt;}
.y190{bottom:842.400000pt;}
.y106{bottom:844.000000pt;}
.y84{bottom:852.544000pt;}
.yf{bottom:853.600000pt;}
.ye0{bottom:853.866667pt;}
.y1cd{bottom:855.200000pt;}
.y131{bottom:856.000000pt;}
.y43{bottom:859.210667pt;}
.y164{bottom:860.000000pt;}
.y18b{bottom:863.733333pt;}
.yb1{bottom:864.533333pt;}
.y163{bottom:871.205333pt;}
.ydf{bottom:871.733333pt;}
.y1cc{bottom:872.266667pt;}
.y12f{bottom:872.800000pt;}
.y83{bottom:873.072000pt;}
.y18f{bottom:873.600000pt;}
.ye{bottom:874.400000pt;}
.y130{bottom:877.333333pt;}
.y42{bottom:880.010667pt;}
.yde{bottom:880.800000pt;}
.y18d{bottom:885.066667pt;}
.yb0{bottom:885.333333pt;}
.y1cb{bottom:889.600000pt;}
.y162{bottom:891.733333pt;}
.y82{bottom:893.872000pt;}
.ydc{bottom:894.933333pt;}
.yd{bottom:895.728000pt;}
.y41{bottom:900.810667pt;}
.yaf{bottom:903.466667pt;}
.y1ca{bottom:906.933333pt;}
.y161{bottom:910.933333pt;}
.y81{bottom:914.672000pt;}
.y12e{bottom:914.933333pt;}
.y18e{bottom:915.733333pt;}
.yc{bottom:919.733333pt;}
.ydd{bottom:920.000000pt;}
.y40{bottom:921.338667pt;}
.y1c9{bottom:924.000000pt;}
.y160{bottom:925.600000pt;}
.y18a{bottom:931.733333pt;}
.y80{bottom:935.200000pt;}
.y12c{bottom:936.266667pt;}
.y1c8{bottom:941.333333pt;}
.y3f{bottom:942.138667pt;}
.y15f{bottom:942.666667pt;}
.yb{bottom:943.466667pt;}
.y12d{bottom:946.133333pt;}
.y189{bottom:952.533333pt;}
.y7f{bottom:956.000000pt;}
.y15e{bottom:957.066667pt;}
.yda{bottom:957.600000pt;}
.y1c7{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y129{bottom:961.866667pt;}
.y3e{bottom:962.938667pt;}
.y188{bottom:970.666667pt;}
.y7e{bottom:973.600000pt;}
.y1c6{bottom:975.733333pt;}
.y187{bottom:977.600000pt;}
.y12b{bottom:977.866667pt;}
.y6{bottom:980.800000pt;}
.ydb{bottom:982.933333pt;}
.y3d{bottom:983.466667pt;}
.y15d{bottom:988.800000pt;}
.y1c5{bottom:993.066667pt;}
.y5{bottom:1003.733333pt;}
.y3c{bottom:1004.266667pt;}
.y1c4{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y3b{bottom:1025.066667pt;}
.y1c3{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y3a{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h2a{height:3.904000pt;}
.h2b{height:4.640000pt;}
.hd{height:9.280000pt;}
.h10{height:18.560000pt;}
.h13{height:20.533333pt;}
.h24{height:20.534667pt;}
.h18{height:20.800000pt;}
.h5{height:20.801333pt;}
.h8{height:21.332000pt;}
.h12{height:23.200000pt;}
.h21{height:27.328000pt;}
.h4{height:27.840000pt;}
.h27{height:30.932000pt;}
.h26{height:30.933333pt;}
.h29{height:31.198667pt;}
.h25{height:31.200000pt;}
.hf{height:37.120000pt;}
.h3{height:38.400000pt;}
.h2{height:39.040000pt;}
.h1e{height:41.333333pt;}
.h15{height:41.334667pt;}
.h2d{height:41.598667pt;}
.h17{height:41.600000pt;}
.h7{height:42.133333pt;}
.h20{height:42.656250pt;}
.he{height:46.080000pt;}
.hc{height:46.400000pt;}
.h6{height:46.848000pt;}
.h22{height:47.040000pt;}
.h28{height:48.661333pt;}
.h2f{height:51.040000pt;}
.hb{height:54.656000pt;}
.h2e{height:55.625000pt;}
.ha{height:55.680000pt;}
.h1a{height:61.866667pt;}
.h16{height:62.132000pt;}
.h14{height:62.133333pt;}
.h19{height:62.812500pt;}
.h2c{height:62.933333pt;}
.h9{height:64.500000pt;}
.h11{height:66.750000pt;}
.h1d{height:82.933333pt;}
.h1b{height:82.934667pt;}
.h23{height:89.493333pt;}
.h1f{height:89.514667pt;}
.h1c{height:103.466667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w30{width:29.068000pt;}
.w20{width:36.266667pt;}
.w36{width:36.533333pt;}
.w3f{width:36.534667pt;}
.w27{width:37.066667pt;}
.w19{width:39.733333pt;}
.w38{width:39.734667pt;}
.w2e{width:40.265333pt;}
.w29{width:40.266667pt;}
.w32{width:42.401333pt;}
.w47{width:43.466667pt;}
.w37{width:43.998667pt;}
.w18{width:44.266667pt;}
.w28{width:44.800000pt;}
.w48{width:46.666667pt;}
.w17{width:47.466667pt;}
.w35{width:52.265333pt;}
.w1e{width:52.266667pt;}
.w26{width:52.800000pt;}
.w25{width:53.066667pt;}
.w31{width:55.998667pt;}
.w6{width:56.800000pt;}
.wf{width:56.801333pt;}
.w46{width:58.665333pt;}
.w3e{width:60.800000pt;}
.w1f{width:61.066667pt;}
.wa{width:62.133333pt;}
.w8{width:65.333333pt;}
.w7{width:65.600000pt;}
.w16{width:65.866667pt;}
.w40{width:67.734667pt;}
.w4a{width:69.066667pt;}
.w2f{width:77.066667pt;}
.w1a{width:79.200000pt;}
.w4b{width:80.265333pt;}
.wc{width:80.266667pt;}
.w41{width:81.600000pt;}
.w10{width:84.266667pt;}
.w39{width:91.998667pt;}
.w2b{width:94.666667pt;}
.w2a{width:97.600000pt;}
.w49{width:98.133333pt;}
.w21{width:109.600000pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w3a{width:141.866667pt;}
.w45{width:149.333333pt;}
.w3d{width:149.334667pt;}
.w1d{width:153.866667pt;}
.w15{width:163.466667pt;}
.w3b{width:184.000000pt;}
.w43{width:185.600000pt;}
.w24{width:192.266667pt;}
.w2d{width:214.666667pt;}
.w22{width:218.400000pt;}
.w1b{width:224.533333pt;}
.w33{width:224.801333pt;}
.w23{width:228.000000pt;}
.w2c{width:231.466667pt;}
.w3c{width:233.333333pt;}
.w1c{width:233.600000pt;}
.w34{width:233.865333pt;}
.w42{width:248.533333pt;}
.w5{width:253.333333pt;}
.w14{width:254.133333pt;}
.w12{width:262.133333pt;}
.wb{width:268.000000pt;}
.we{width:272.000000pt;}
.w11{width:297.065333pt;}
.wd{width:301.066667pt;}
.w13{width:307.200000pt;}
.w44{width:307.733333pt;}
.w9{width:315.733333pt;}
.w2{width:425.066667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:4.000000pt;}
.x4{left:7.200000pt;}
.xa8{left:8.266667pt;}
.x69{left:9.333333pt;}
.x2d{left:11.200000pt;}
.x5b{left:13.333333pt;}
.x62{left:14.400000pt;}
.x2a{left:16.266667pt;}
.x79{left:17.333333pt;}
.x1c{left:18.666667pt;}
.xa6{left:20.000000pt;}
.x28{left:22.133333pt;}
.x21{left:23.466667pt;}
.x50{left:24.800000pt;}
.x65{left:25.866667pt;}
.x1e{left:27.466667pt;}
.x6b{left:29.333333pt;}
.x41{left:31.200000pt;}
.x4b{left:32.800000pt;}
.x86{left:33.866667pt;}
.x3c{left:34.933333pt;}
.x76{left:37.333333pt;}
.x66{left:40.000000pt;}
.x90{left:41.066667pt;}
.x7b{left:42.133333pt;}
.x85{left:44.000000pt;}
.xa0{left:50.133333pt;}
.x74{left:52.266667pt;}
.x94{left:56.000000pt;}
.x63{left:57.066667pt;}
.x92{left:58.133333pt;}
.x3{left:70.933333pt;}
.x93{left:75.466667pt;}
.x1a{left:78.933333pt;}
.x1{left:81.333333pt;}
.x5a{left:83.200000pt;}
.x14{left:85.066667pt;}
.x39{left:86.400000pt;}
.x12{left:87.466667pt;}
.x47{left:88.533333pt;}
.x7c{left:93.866667pt;}
.x6f{left:101.082667pt;}
.x6c{left:103.200000pt;}
.xa9{left:105.333333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x95{left:119.200000pt;}
.x15{left:128.533333pt;}
.x9{left:140.000000pt;}
.xaa{left:153.866667pt;}
.x11{left:156.805333pt;}
.x7e{left:159.466667pt;}
.x71{left:162.133333pt;}
.x60{left:172.266667pt;}
.x56{left:182.400000pt;}
.x44{left:183.461333pt;}
.x13{left:185.333333pt;}
.x35{left:190.133333pt;}
.xe{left:195.200000pt;}
.xb{left:201.600000pt;}
.xd{left:203.440000pt;}
.xc{left:205.584000pt;}
.x45{left:210.933333pt;}
.x37{left:212.805333pt;}
.x58{left:216.005333pt;}
.x19{left:220.277333pt;}
.xa{left:225.605333pt;}
.x6e{left:242.138667pt;}
.x18{left:253.605333pt;}
.x97{left:254.938667pt;}
.x8c{left:259.466667pt;}
.x9d{left:261.066667pt;}
.x8b{left:270.133333pt;}
.x5e{left:281.333333pt;}
.x87{left:296.000000pt;}
.x5f{left:305.866667pt;}
.x70{left:312.266667pt;}
.xa1{left:319.733333pt;}
.x98{left:329.866667pt;}
.xf{left:332.533333pt;}
.x88{left:336.266667pt;}
.x8d{left:339.733333pt;}
.xa2{left:352.000000pt;}
.x64{left:362.666667pt;}
.x75{left:364.533333pt;}
.x81{left:365.866667pt;}
.x7d{left:367.200000pt;}
.x46{left:378.400000pt;}
.xa3{left:380.533333pt;}
.x38{left:382.400000pt;}
.x4c{left:385.600000pt;}
.x59{left:388.533333pt;}
.x3d{left:389.600000pt;}
.x82{left:394.400000pt;}
.x5c{left:395.466667pt;}
.x2{left:396.800000pt;}
.x10{left:399.466667pt;}
.x8e{left:400.533333pt;}
.x51{left:402.394667pt;}
.x23{left:404.266667pt;}
.x33{left:406.128000pt;}
.x89{left:413.333333pt;}
.x32{left:416.800000pt;}
.x83{left:418.666667pt;}
.x16{left:420.533333pt;}
.xa4{left:424.000000pt;}
.x77{left:425.600000pt;}
.x67{left:428.533333pt;}
.x48{left:435.200000pt;}
.x3a{left:439.200000pt;}
.x4d{left:442.400000pt;}
.x8f{left:444.533333pt;}
.x40{left:446.400000pt;}
.x3e{left:450.672000pt;}
.x1d{left:453.866667pt;}
.x84{left:455.733333pt;}
.x2f{left:461.066667pt;}
.x52{left:463.466667pt;}
.x24{left:465.333333pt;}
.x36{left:467.200000pt;}
.x9e{left:469.333333pt;}
.xa5{left:470.666667pt;}
.x68{left:476.000000pt;}
.x2b{left:477.866667pt;}
.x9a{left:479.466667pt;}
.x7f{left:481.333333pt;}
.x72{left:483.466667pt;}
.x61{left:487.200000pt;}
.x5{left:496.000000pt;}
.x8a{left:498.400000pt;}
.x49{left:500.800000pt;}
.x3b{left:504.800000pt;}
.x78{left:506.133333pt;}
.x57{left:507.733333pt;}
.x4e{left:513.866667pt;}
.x1f{left:519.466667pt;}
.x9b{left:523.466667pt;}
.x53{left:524.538667pt;}
.x25{left:526.666667pt;}
.x3f{left:536.000000pt;}
.x30{left:537.066667pt;}
.x80{left:540.800000pt;}
.x2c{left:543.466667pt;}
.x73{left:545.866667pt;}
.x34{left:547.744000pt;}
.x42{left:559.466667pt;}
.x99{left:563.200000pt;}
.x4a{left:566.133333pt;}
.x9f{left:568.800000pt;}
.x91{left:576.266667pt;}
.x4f{left:582.666667pt;}
.x20{left:585.066667pt;}
.x55{left:588.794667pt;}
.x7a{left:590.133333pt;}
.x31{left:592.266667pt;}
.x26{left:598.400000pt;}
.x54{left:599.466667pt;}
.x7{left:609.600000pt;}
.x9c{left:630.933333pt;}
.xa7{left:637.866667pt;}
.x6a{left:639.200000pt;}
.x96{left:641.066667pt;}
.x6d{left:645.066667pt;}
.x17{left:647.733333pt;}
.x5d{left:649.333333pt;}
.x27{left:650.400000pt;}
.x29{left:657.600000pt;}
.x1b{left:663.200000pt;}
.x2e{left:672.533333pt;}
.x43{left:712.533333pt;}
}




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