
    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_3a929850f5fd3df77001a534.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112000;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_ea704538754ed46768bcbedb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.950000;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_8bc678981e2f4c02ab05cf67.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692871;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_5c7df248104657c65d60fa06.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_c97e6c92f9cef7457053d3d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_518511dd00de77b3af08c751.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_03e62a81ec8c9e59a34a4baa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8626dd565712eab6e5841654.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_706fd8c4c7439b7a9ff4690e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.744000;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_ae42f7d14feb12cbb510375e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.726000;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_6192709ecfa0d18c21491aec.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cb34d86028368d51f118bb34.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.924000;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_bb0ce8b5f03366f6f7da6bd7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9dcf75d69c272f8251befefd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_96a82b93d8fd194a2277308b.woff2')format("woff");}.fff{font-family:fff;line-height:0.769000;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:ff10;src:url('chunks/assets/font_edd4d01841224e34f377491b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.693359;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.536600px;}
.v1{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v4{vertical-align:28.080000px;}
.v5{vertical-align:29.880000px;}
.v6{vertical-align:59.760000px;}
.ls13{letter-spacing:-2.664000px;}
.ls10{letter-spacing:-1.776000px;}
.lsb{letter-spacing:-1.656000px;}
.lsc{letter-spacing:-1.584000px;}
.ls9{letter-spacing:-1.368000px;}
.lsf{letter-spacing:-1.294260px;}
.ls21{letter-spacing:-0.792000px;}
.ls20{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.390000px;}
.ls5{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.187200px;}
.ls1f{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000600px;}
.ls6{letter-spacing:0.006600px;}
.ls1{letter-spacing:0.009000px;}
.ls1a{letter-spacing:0.009600px;}
.ls0{letter-spacing:0.010200px;}
.ls12{letter-spacing:0.300000px;}
.ls1e{letter-spacing:0.320400px;}
.ls15{letter-spacing:0.349800px;}
.ls14{letter-spacing:0.600000px;}
.ls18{letter-spacing:0.610200px;}
.ls1d{letter-spacing:2.364000px;}
.ls1b{letter-spacing:2.738400px;}
.ls1c{letter-spacing:4.772400px;}
.ls7{letter-spacing:6.816000px;}
.ls19{letter-spacing:9.126600px;}
.ls16{letter-spacing:1256.262000px;}
.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;}
}
.wsd8{word-spacing:-15.600000px;}
.ws1b{word-spacing:-15.000000px;}
.ws4c{word-spacing:-14.256000px;}
.wse6{word-spacing:-14.112000px;}
.ws90{word-spacing:-14.040000px;}
.wsa5{word-spacing:-13.752000px;}
.ws9c{word-spacing:-13.608000px;}
.wse9{word-spacing:-13.536000px;}
.ws5{word-spacing:-13.500000px;}
.wsed{word-spacing:-13.464000px;}
.ws59{word-spacing:-12.888000px;}
.ws75{word-spacing:-12.672000px;}
.ws6b{word-spacing:-12.600000px;}
.ws19{word-spacing:-12.144000px;}
.ws1f{word-spacing:-12.000000px;}
.wsae{word-spacing:-11.592000px;}
.ws3{word-spacing:-11.025000px;}
.wsc3{word-spacing:-10.695000px;}
.ws0{word-spacing:-10.668000px;}
.ws1c{word-spacing:-10.500000px;}
.wsa0{word-spacing:-10.224000px;}
.ws4{word-spacing:-9.450000px;}
.wsbe{word-spacing:-8.985600px;}
.ws1d{word-spacing:-8.745000px;}
.ws1a{word-spacing:-8.500800px;}
.ws1{word-spacing:-7.896000px;}
.ws6{word-spacing:-7.870500px;}
.ws9f{word-spacing:-7.450740px;}
.ws2{word-spacing:-7.332000px;}
.wsef{word-spacing:-4.500000px;}
.wsf0{word-spacing:-4.140000px;}
.wseb{word-spacing:-4.080000px;}
.wsd6{word-spacing:-4.020000px;}
.wsdc{word-spacing:-3.900000px;}
.ws7c{word-spacing:-3.300000px;}
.ws6e{word-spacing:-2.880000px;}
.ws93{word-spacing:-2.580000px;}
.ws76{word-spacing:-2.460000px;}
.wsa8{word-spacing:-2.430000px;}
.ws6d{word-spacing:-2.400000px;}
.ws2d{word-spacing:-2.340000px;}
.ws95{word-spacing:-2.280000px;}
.wsa4{word-spacing:-2.220000px;}
.ws6c{word-spacing:-2.160000px;}
.ws61{word-spacing:-2.100000px;}
.ws54{word-spacing:-2.040000px;}
.ws27{word-spacing:-1.980000px;}
.ws2e{word-spacing:-1.920000px;}
.ws99{word-spacing:-1.860000px;}
.wsb7{word-spacing:-1.800000px;}
.wsc5{word-spacing:-1.743000px;}
.ws46{word-spacing:-1.740000px;}
.wsaa{word-spacing:-1.680000px;}
.ws5f{word-spacing:-1.560000px;}
.wsec{word-spacing:-1.500000px;}
.ws68{word-spacing:-1.440000px;}
.ws17{word-spacing:-1.350000px;}
.wsba{word-spacing:-1.320000px;}
.ws9{word-spacing:-1.296000px;}
.ws4d{word-spacing:-1.260000px;}
.ws80{word-spacing:-1.200000px;}
.wsd2{word-spacing:-1.188000px;}
.ws73{word-spacing:-1.140000px;}
.ws65{word-spacing:-1.080000px;}
.ws7d{word-spacing:-1.020000px;}
.ws2f{word-spacing:-0.960000px;}
.wsbb{word-spacing:-0.900000px;}
.ws74{word-spacing:-0.840000px;}
.ws18{word-spacing:-0.810000px;}
.ws3c{word-spacing:-0.780000px;}
.ws7b{word-spacing:-0.720000px;}
.ws69{word-spacing:-0.660000px;}
.wsd{word-spacing:-0.648000px;}
.ws94{word-spacing:-0.600000px;}
.wsdd{word-spacing:-0.540000px;}
.ws44{word-spacing:-0.480000px;}
.ws6a{word-spacing:-0.420000px;}
.ws51{word-spacing:-0.360000px;}
.wsc4{word-spacing:-0.349800px;}
.ws50{word-spacing:-0.300000px;}
.wsb5{word-spacing:-0.240000px;}
.ws3b{word-spacing:-0.180000px;}
.ws91{word-spacing:-0.120000px;}
.ws6f{word-spacing:-0.060000px;}
.ws1e{word-spacing:-0.050400px;}
.ws7{word-spacing:0.000000px;}
.wscd{word-spacing:0.060000px;}
.ws14{word-spacing:0.108000px;}
.ws2c{word-spacing:0.120000px;}
.ws26{word-spacing:0.180000px;}
.ws79{word-spacing:0.240000px;}
.ws16{word-spacing:0.270000px;}
.ws72{word-spacing:0.300000px;}
.ws84{word-spacing:0.360000px;}
.ws8{word-spacing:0.420000px;}
.ws53{word-spacing:0.480000px;}
.wsb{word-spacing:0.540000px;}
.wsa{word-spacing:0.594000px;}
.ws28{word-spacing:0.600000px;}
.wsc8{word-spacing:0.660000px;}
.wsd9{word-spacing:0.720000px;}
.ws77{word-spacing:0.780000px;}
.ws64{word-spacing:0.840000px;}
.ws12{word-spacing:0.864000px;}
.ws3d{word-spacing:0.900000px;}
.ws89{word-spacing:0.960000px;}
.ws8f{word-spacing:1.020000px;}
.ws70{word-spacing:1.080000px;}
.wsab{word-spacing:1.134000px;}
.ws45{word-spacing:1.140000px;}
.wsa2{word-spacing:1.188000px;}
.ws58{word-spacing:1.200000px;}
.ws3a{word-spacing:1.260000px;}
.wse8{word-spacing:1.320000px;}
.ws5a{word-spacing:1.380000px;}
.ws25{word-spacing:1.440000px;}
.ws15{word-spacing:1.458000px;}
.ws78{word-spacing:1.500000px;}
.ws39{word-spacing:1.560000px;}
.ws24{word-spacing:1.620000px;}
.ws82{word-spacing:1.680000px;}
.ws8a{word-spacing:1.740000px;}
.ws66{word-spacing:1.800000px;}
.ws35{word-spacing:1.860000px;}
.ws56{word-spacing:1.920000px;}
.wsa7{word-spacing:1.944000px;}
.ws42{word-spacing:1.980000px;}
.ws48{word-spacing:2.040000px;}
.ws22{word-spacing:2.100000px;}
.wsda{word-spacing:2.160000px;}
.ws55{word-spacing:2.220000px;}
.wse1{word-spacing:2.280000px;}
.ws97{word-spacing:2.340000px;}
.ws67{word-spacing:2.400000px;}
.wse{word-spacing:2.430000px;}
.ws23{word-spacing:2.460000px;}
.ws2a{word-spacing:2.520000px;}
.wscf{word-spacing:2.538000px;}
.ws87{word-spacing:2.580000px;}
.ws98{word-spacing:2.640000px;}
.ws9e{word-spacing:2.700000px;}
.ws33{word-spacing:2.736000px;}
.ws4f{word-spacing:2.760000px;}
.ws9a{word-spacing:2.820000px;}
.ws36{word-spacing:2.880000px;}
.wsb9{word-spacing:2.916000px;}
.ws8e{word-spacing:2.940000px;}
.ws5d{word-spacing:3.000000px;}
.ws81{word-spacing:3.060000px;}
.ws40{word-spacing:3.120000px;}
.wsb6{word-spacing:3.180000px;}
.ws8d{word-spacing:3.240000px;}
.ws71{word-spacing:3.300000px;}
.wsea{word-spacing:3.360000px;}
.ws63{word-spacing:3.420000px;}
.ws86{word-spacing:3.480000px;}
.ws47{word-spacing:3.540000px;}
.ws13{word-spacing:3.564000px;}
.ws5c{word-spacing:3.600000px;}
.ws85{word-spacing:3.660000px;}
.ws21{word-spacing:3.720000px;}
.ws11{word-spacing:3.780000px;}
.ws3e{word-spacing:3.840000px;}
.ws4a{word-spacing:3.900000px;}
.ws2b{word-spacing:3.960000px;}
.wsf{word-spacing:3.996000px;}
.ws62{word-spacing:4.020000px;}
.wsd1{word-spacing:4.050000px;}
.ws9b{word-spacing:4.080000px;}
.ws37{word-spacing:4.140000px;}
.ws7f{word-spacing:4.200000px;}
.ws4b{word-spacing:4.260000px;}
.ws41{word-spacing:4.320000px;}
.wsa1{word-spacing:4.380000px;}
.ws8c{word-spacing:4.440000px;}
.ws29{word-spacing:4.500000px;}
.wsb8{word-spacing:4.590000px;}
.ws9d{word-spacing:4.620000px;}
.ws38{word-spacing:4.680000px;}
.ws8b{word-spacing:4.740000px;}
.wse0{word-spacing:4.800000px;}
.ws43{word-spacing:4.920000px;}
.ws60{word-spacing:4.980000px;}
.wsd4{word-spacing:5.100000px;}
.wsc9{word-spacing:5.160000px;}
.ws5e{word-spacing:5.220000px;}
.ws4e{word-spacing:5.340000px;}
.wsc{word-spacing:5.400000px;}
.wse4{word-spacing:5.460000px;}
.wsa6{word-spacing:5.508000px;}
.ws49{word-spacing:5.520000px;}
.ws83{word-spacing:5.580000px;}
.ws10{word-spacing:5.670000px;}
.wsaf{word-spacing:5.700000px;}
.wse7{word-spacing:5.760000px;}
.wsb2{word-spacing:5.820000px;}
.wsb1{word-spacing:5.880000px;}
.wsd7{word-spacing:5.940000px;}
.wscb{word-spacing:6.060000px;}
.ws3f{word-spacing:6.120000px;}
.ws52{word-spacing:6.180000px;}
.ws34{word-spacing:6.192000px;}
.wsd5{word-spacing:6.240000px;}
.wsd0{word-spacing:6.288000px;}
.ws30{word-spacing:6.360000px;}
.wsad{word-spacing:6.432000px;}
.wsb0{word-spacing:6.480000px;}
.wsc6{word-spacing:6.540000px;}
.ws7e{word-spacing:6.600000px;}
.ws31{word-spacing:6.660000px;}
.wsac{word-spacing:6.720000px;}
.wsa9{word-spacing:6.780000px;}
.ws20{word-spacing:6.840000px;}
.wscc{word-spacing:6.900000px;}
.ws57{word-spacing:7.020000px;}
.ws7a{word-spacing:7.200000px;}
.wse5{word-spacing:7.260000px;}
.wsc7{word-spacing:7.380000px;}
.wse3{word-spacing:7.440000px;}
.ws96{word-spacing:7.620000px;}
.ws92{word-spacing:7.860000px;}
.wsde{word-spacing:7.920000px;}
.wsb3{word-spacing:8.100000px;}
.wsd3{word-spacing:8.220000px;}
.wsce{word-spacing:8.280000px;}
.wsca{word-spacing:8.330400px;}
.wsa3{word-spacing:8.340000px;}
.ws5b{word-spacing:8.580000px;}
.ws32{word-spacing:8.688000px;}
.wsb4{word-spacing:8.940000px;}
.wse2{word-spacing:9.000000px;}
.wsdb{word-spacing:9.120000px;}
.wsee{word-spacing:9.420000px;}
.ws88{word-spacing:10.560000px;}
.wsdf{word-spacing:12.780000px;}
.wsc1{word-spacing:123.867780px;}
.wsc2{word-spacing:135.045600px;}
.wsc0{word-spacing:140.350200px;}
.wsbc{word-spacing:147.033000px;}
.wsbd{word-spacing:266.243400px;}
.wsbf{word-spacing:709.784400px;}
._3f{margin-left:-15.090000px;}
._9{margin-left:-8.523000px;}
._5{margin-left:-6.696000px;}
._6{margin-left:-5.297400px;}
._3{margin-left:-3.510600px;}
._1{margin-left:-2.502300px;}
._0{margin-left:-1.008000px;}
._4{width:1.696800px;}
._7{width:3.465600px;}
._a{width:5.148000px;}
._8{width:6.806400px;}
._d{width:8.664000px;}
._13{width:10.224000px;}
._3e{width:11.238000px;}
._2{width:13.211700px;}
._2d{width:49.055400px;}
._32{width:72.909600px;}
._11{width:75.960000px;}
._24{width:81.973200px;}
._b{width:84.024000px;}
._14{width:89.664000px;}
._15{width:91.513800px;}
._3c{width:95.063400px;}
._3a{width:101.743800px;}
._26{width:108.670800px;}
._18{width:109.822200px;}
._1c{width:112.401000px;}
._c{width:113.664000px;}
._2e{width:130.827000px;}
._36{width:132.586200px;}
._1f{width:148.168800px;}
._1d{width:150.528600px;}
._20{width:153.130200px;}
._17{width:154.675800px;}
._2f{width:156.202500px;}
._1a{width:159.638400px;}
._2b{width:176.991600px;}
._23{width:195.537900px;}
._34{width:197.292600px;}
._28{width:232.350000px;}
._29{width:239.400600px;}
._25{width:261.022800px;}
._3b{width:271.363800px;}
._39{width:288.263400px;}
._19{width:294.071400px;}
._2c{width:295.549200px;}
._3d{width:296.791200px;}
._22{width:308.793000px;}
._e{width:311.057400px;}
._12{width:312.064800px;}
._10{width:313.397400px;}
._f{width:315.810000px;}
._16{width:317.875800px;}
._35{width:332.199000px;}
._37{width:395.743800px;}
._27{width:411.712200px;}
._33{width:445.183200px;}
._2a{width:470.694600px;}
._31{width:546.651000px;}
._38{width:548.232600px;}
._30{width:556.163400px;}
._21{width:562.177200px;}
._1e{width:567.517800px;}
._1b{width:574.938300px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fsb{font-size:33.600000px;}
.fsd{font-size:34.980000px;}
.fs7{font-size:37.800000px;}
.fs1{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs13{font-size:42.780000px;}
.fsf{font-size:43.200000px;}
.fs4{font-size:44.100000px;}
.fs9{font-size:45.000000px;}
.fs11{font-size:46.800000px;}
.fsa{font-size:48.000000px;}
.fs10{font-size:48.600000px;}
.fs12{font-size:49.800000px;}
.fse{font-size:50.400000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:95.006700px;}
.y1b7{bottom:131.105100px;}
.y1e{bottom:138.189000px;}
.y109{bottom:138.189150px;}
.y99{bottom:141.314100px;}
.y55{bottom:141.328800px;}
.y158{bottom:142.628100px;}
.y12d{bottom:144.483900px;}
.y178{bottom:148.113000px;}
.y1b6{bottom:151.505100px;}
.y45{bottom:152.589000px;}
.y198{bottom:155.757150px;}
.y72{bottom:156.409050px;}
.y1c2{bottom:160.009050px;}
.yc6{bottom:160.528800px;}
.y98{bottom:161.714100px;}
.y54{bottom:161.728800px;}
.y157{bottom:163.028100px;}
.y12c{bottom:164.883900px;}
.y108{bottom:166.290450px;}
.y44{bottom:166.989000px;}
.y177{bottom:168.513000px;}
.y1d{bottom:170.392800px;}
.y1b5{bottom:171.905100px;}
.y197{bottom:176.157000px;}
.y71{bottom:176.809050px;}
.y1c1{bottom:180.409050px;}
.y43{bottom:181.389000px;}
.y97{bottom:182.114100px;}
.y53{bottom:182.128800px;}
.y156{bottom:183.428100px;}
.y127{bottom:184.937700px;}
.y12b{bottom:185.283900px;}
.y1c{bottom:186.592800px;}
.y107{bottom:186.955800px;}
.y176{bottom:188.913000px;}
.yc5{bottom:194.203050px;}
.y9d{bottom:195.789000px;}
.y196{bottom:196.557150px;}
.y70{bottom:197.209050px;}
.y1c0{bottom:200.809050px;}
.y126{bottom:201.724200px;}
.y106{bottom:201.895800px;}
.y96{bottom:202.514100px;}
.y52{bottom:202.528800px;}
.y155{bottom:203.828100px;}
.y12a{bottom:205.684050px;}
.y1b{bottom:207.044700px;}
.y9c{bottom:210.189000px;}
.y175{bottom:213.564900px;}
.yc4{bottom:214.603050px;}
.y1b4{bottom:216.957150px;}
.y6f{bottom:217.609050px;}
.y125{bottom:218.510700px;}
.y42{bottom:218.809050px;}
.y195{bottom:221.209050px;}
.y105{bottom:221.437950px;}
.y95{bottom:222.914100px;}
.y51{bottom:222.928800px;}
.y1a{bottom:223.244700px;}
.y9b{bottom:224.589000px;}
.y1bf{bottom:225.460950px;}
.y129{bottom:226.084050px;}
.yb1{bottom:227.159100px;}
.y154{bottom:228.480150px;}
.y104{bottom:228.907950px;}
.y174{bottom:233.965050px;}
.yc3{bottom:235.003050px;}
.y1b3{bottom:237.357150px;}
.y6e{bottom:238.009050px;}
.y9a{bottom:238.989000px;}
.y41{bottom:239.209050px;}
.y19{bottom:239.444700px;}
.y194{bottom:241.609050px;}
.y94{bottom:243.314100px;}
.y50{bottom:243.328800px;}
.y1be{bottom:245.860950px;}
.y128{bottom:246.484050px;}
.yb0{bottom:247.559100px;}
.y153{bottom:248.880150px;}
.yc2{bottom:255.403050px;}
.y18{bottom:255.644700px;}
.y103{bottom:255.920250px;}
.y1b2{bottom:257.757150px;}
.y6d{bottom:258.409050px;}
.y173{bottom:258.616950px;}
.y40{bottom:259.609050px;}
.y124{bottom:260.809050px;}
.y1c8{bottom:262.009050px;}
.y93{bottom:263.714100px;}
.y4f{bottom:263.728800px;}
.y193{bottom:266.261100px;}
.ye6{bottom:266.883900px;}
.yaf{bottom:267.959100px;}
.y152{bottom:269.280150px;}
.y17{bottom:271.844700px;}
.y102{bottom:275.462400px;}
.yc1{bottom:275.803050px;}
.y1b1{bottom:278.157000px;}
.y6c{bottom:278.809050px;}
.y172{bottom:279.016950px;}
.y3f{bottom:280.009050px;}
.y123{bottom:281.209050px;}
.y1c7{bottom:282.409050px;}
.y92{bottom:284.114100px;}
.y4e{bottom:284.128800px;}
.y192{bottom:286.661100px;}
.ye5{bottom:287.283900px;}
.y16{bottom:288.044700px;}
.yae{bottom:288.359100px;}
.y151{bottom:293.932050px;}
.y101{bottom:295.004700px;}
.y1b0{bottom:298.557150px;}
.y6b{bottom:299.209050px;}
.y171{bottom:299.416950px;}
.y3e{bottom:300.409050px;}
.y122{bottom:301.609050px;}
.y15{bottom:304.244700px;}
.y91{bottom:304.514100px;}
.y4d{bottom:304.528800px;}
.y191{bottom:307.061100px;}
.ye4{bottom:307.684050px;}
.yad{bottom:308.759100px;}
.y1bd{bottom:311.313000px;}
.y150{bottom:314.332050px;}
.y100{bottom:314.546850px;}
.y6a{bottom:319.609050px;}
.y170{bottom:319.816950px;}
.y14{bottom:320.444700px;}
.y3d{bottom:320.809050px;}
.yc0{bottom:321.714750px;}
.y121{bottom:322.009050px;}
.yff{bottom:322.016850px;}
.y1af{bottom:323.209050px;}
.y90{bottom:324.914100px;}
.y4c{bottom:324.928800px;}
.y190{bottom:327.460950px;}
.ye3{bottom:328.084050px;}
.y134{bottom:329.128800px;}
.yac{bottom:329.159100px;}
.y1bc{bottom:331.713000px;}
.ybf{bottom:338.501250px;}
.y14f{bottom:338.983950px;}
.y69{bottom:340.009050px;}
.y16f{bottom:340.216950px;}
.y120{bottom:342.409050px;}
.y1ae{bottom:343.609050px;}
.y8f{bottom:345.314100px;}
.y4b{bottom:345.328800px;}
.ye2{bottom:348.484050px;}
.yfe{bottom:349.029150px;}
.y133{bottom:349.528800px;}
.yab{bottom:349.559100px;}
.y18f{bottom:352.113000px;}
.ybe{bottom:355.287900px;}
.yfd{bottom:356.499150px;}
.y3c{bottom:358.216950px;}
.y14e{bottom:359.384100px;}
.y68{bottom:360.409050px;}
.y11f{bottom:362.809050px;}
.y13{bottom:363.494700px;}
.y1ad{bottom:364.009050px;}
.y16e{bottom:364.868850px;}
.y8e{bottom:365.714100px;}
.y4a{bottom:365.728800px;}
.ye1{bottom:368.883900px;}
.y132{bottom:369.928800px;}
.yaa{bottom:369.959100px;}
.ybd{bottom:372.074250px;}
.y18e{bottom:372.513000px;}
.y12{bottom:379.694700px;}
.y14d{bottom:379.784100px;}
.y3b{bottom:379.816950px;}
.y67{bottom:380.809050px;}
.y11e{bottom:383.209050px;}
.yfc{bottom:383.511300px;}
.y1ac{bottom:384.409050px;}
.y16d{bottom:385.268850px;}
.y8d{bottom:386.114100px;}
.y49{bottom:386.128800px;}
.ybc{bottom:388.860750px;}
.ye0{bottom:389.283900px;}
.y131{bottom:390.328800px;}
.ya9{bottom:390.359100px;}
.y18d{bottom:392.913000px;}
.y11{bottom:400.146750px;}
.y66{bottom:401.209050px;}
.yfb{bottom:403.053600px;}
.y11d{bottom:403.609050px;}
.y14c{bottom:404.436000px;}
.y16c{bottom:405.668850px;}
.y8c{bottom:406.514100px;}
.y48{bottom:406.528800px;}
.y1ab{bottom:409.061100px;}
.ydf{bottom:409.684050px;}
.y130{bottom:410.728800px;}
.ya8{bottom:410.759100px;}
.y18c{bottom:413.313000px;}
.y10{bottom:416.346750px;}
.y1bb{bottom:417.564900px;}
.y65{bottom:421.609050px;}
.yfa{bottom:422.595750px;}
.y11c{bottom:424.009050px;}
.y14b{bottom:424.836000px;}
.y16b{bottom:426.068850px;}
.y8b{bottom:426.914100px;}
.y3a{bottom:426.928800px;}
.y1aa{bottom:429.460950px;}
.yde{bottom:430.084050px;}
.y12f{bottom:431.128800px;}
.ya7{bottom:431.159100px;}
.yf{bottom:432.546750px;}
.y1c6{bottom:433.713000px;}
.y18b{bottom:437.965050px;}
.y64{bottom:442.009050px;}
.yf9{bottom:442.138050px;}
.y11b{bottom:444.409050px;}
.y14a{bottom:445.236000px;}
.y16a{bottom:446.468850px;}
.y8a{bottom:447.314100px;}
.y39{bottom:447.328800px;}
.ye{bottom:448.746750px;}
.y1a9{bottom:449.860950px;}
.ydd{bottom:450.484050px;}
.y12e{bottom:451.528800px;}
.ya6{bottom:451.559100px;}
.y18a{bottom:458.365050px;}
.yf8{bottom:461.680200px;}
.y63{bottom:462.409050px;}
.y11a{bottom:464.809050px;}
.yd{bottom:464.946750px;}
.y149{bottom:465.636000px;}
.y169{bottom:466.868850px;}
.y89{bottom:467.714100px;}
.y38{bottom:467.728800px;}
.y1a8{bottom:470.261100px;}
.ydc{bottom:470.883900px;}
.ya5{bottom:471.959100px;}
.y189{bottom:478.764900px;}
.yc{bottom:481.146750px;}
.yf6{bottom:481.222500px;}
.y62{bottom:482.809050px;}
.y1ba{bottom:483.016950px;}
.y119{bottom:485.209050px;}
.y88{bottom:488.114100px;}
.y37{bottom:488.128800px;}
.yf5{bottom:488.692500px;}
.y148{bottom:490.287900px;}
.ydb{bottom:491.283900px;}
.y168{bottom:491.520900px;}
.ya4{bottom:492.359100px;}
.y1a7{bottom:494.913000px;}
.yf7{bottom:496.162500px;}
.yb{bottom:497.346750px;}
.y1c5{bottom:499.164900px;}
.y61{bottom:503.209050px;}
.y188{bottom:503.416950px;}
.y118{bottom:505.609050px;}
.y87{bottom:508.514100px;}
.y36{bottom:508.528800px;}
.y147{bottom:510.687900px;}
.yda{bottom:511.684050px;}
.y167{bottom:511.920900px;}
.ya3{bottom:512.759100px;}
.ya{bottom:513.546750px;}
.y1a6{bottom:515.313000px;}
.yf4{bottom:515.704650px;}
.y60{bottom:523.609050px;}
.y187{bottom:523.816950px;}
.y117{bottom:526.009050px;}
.y86{bottom:528.914100px;}
.y35{bottom:528.928800px;}
.y9{bottom:529.746750px;}
.y146{bottom:531.088050px;}
.yd9{bottom:532.084050px;}
.y166{bottom:532.320900px;}
.ya2{bottom:533.159100px;}
.yf3{bottom:535.246950px;}
.y1a5{bottom:535.713000px;}
.y5f{bottom:544.009050px;}
.y186{bottom:544.216950px;}
.y8{bottom:545.946750px;}
.y116{bottom:546.409050px;}
.y1b9{bottom:548.468850px;}
.y85{bottom:549.314100px;}
.y34{bottom:549.328800px;}
.yd8{bottom:552.483900px;}
.ybb{bottom:553.559100px;}
.yf2{bottom:554.789100px;}
.y145{bottom:555.739950px;}
.y165{bottom:556.972800px;}
.y1a4{bottom:560.365050px;}
.y5e{bottom:564.409050px;}
.y115{bottom:566.809050px;}
.y185{bottom:568.868850px;}
.y84{bottom:569.714100px;}
.y33{bottom:569.728800px;}
.yd7{bottom:572.884050px;}
.yba{bottom:573.959100px;}
.yf1{bottom:574.331400px;}
.y144{bottom:576.139950px;}
.y164{bottom:577.372800px;}
.ya1{bottom:579.070950px;}
.y1a3{bottom:580.764900px;}
.yf0{bottom:581.801400px;}
.y5d{bottom:584.809050px;}
.y114{bottom:587.209050px;}
.y184{bottom:589.268850px;}
.y83{bottom:590.114100px;}
.y32{bottom:590.128800px;}
.yd6{bottom:593.283900px;}
.yb9{bottom:594.359100px;}
.ya0{bottom:595.857450px;}
.y143{bottom:596.539950px;}
.y163{bottom:597.772800px;}
.y5c{bottom:605.209050px;}
.y1a2{bottom:605.416950px;}
.y113{bottom:607.609050px;}
.yef{bottom:608.813550px;}
.y183{bottom:609.668850px;}
.y82{bottom:610.514100px;}
.y31{bottom:610.528800px;}
.y9f{bottom:612.643950px;}
.yd5{bottom:613.684050px;}
.y1b8{bottom:613.920900px;}
.yb8{bottom:614.759100px;}
.yee{bottom:616.283550px;}
.y162{bottom:618.172800px;}
.y142{bottom:621.191850px;}
.y5b{bottom:625.609050px;}
.y1a1{bottom:625.816950px;}
.y112{bottom:628.009050px;}
.y9e{bottom:629.430450px;}
.y81{bottom:630.914100px;}
.y30{bottom:630.928800px;}
.yd4{bottom:634.084050px;}
.y182{bottom:634.320900px;}
.yb7{bottom:635.159100px;}
.y7{bottom:635.703450px;}
.y141{bottom:641.591850px;}
.y161{bottom:642.824850px;}
.yed{bottom:643.295850px;}
.y5a{bottom:646.009050px;}
.y111{bottom:648.409050px;}
.y1a0{bottom:650.468850px;}
.y80{bottom:651.314100px;}
.y2f{bottom:651.328800px;}
.y6{bottom:653.703450px;}
.yd3{bottom:654.483900px;}
.y181{bottom:654.720900px;}
.yb6{bottom:655.559100px;}
.y1c4{bottom:658.972800px;}
.y140{bottom:661.991850px;}
.yec{bottom:662.838000px;}
.y160{bottom:663.224850px;}
.y59{bottom:666.409050px;}
.y110{bottom:668.809050px;}
.y19f{bottom:670.868850px;}
.y7f{bottom:671.714100px;}
.y2e{bottom:671.728800px;}
.yd2{bottom:674.884050px;}
.y180{bottom:679.372800px;}
.yeb{bottom:682.380300px;}
.y13f{bottom:682.391850px;}
.y15f{bottom:683.624850px;}
.y10f{bottom:689.209050px;}
.y7e{bottom:692.114100px;}
.y2d{bottom:692.128800px;}
.y5{bottom:695.228700px;}
.yd1{bottom:695.283900px;}
.y19e{bottom:695.520900px;}
.y17f{bottom:699.772800px;}
.yb5{bottom:701.470950px;}
.yea{bottom:701.922450px;}
.y13e{bottom:702.792000px;}
.y58{bottom:703.816950px;}
.y15e{bottom:704.024850px;}
.ye9{bottom:708.942450px;}
.y10e{bottom:709.609050px;}
.y7d{bottom:712.514100px;}
.y2c{bottom:712.528800px;}
.yd0{bottom:715.684050px;}
.y19d{bottom:715.920900px;}
.y4{bottom:717.908700px;}
.yb4{bottom:718.257450px;}
.y17e{bottom:720.172800px;}
.y15d{bottom:724.424850px;}
.y57{bottom:725.416950px;}
.y13d{bottom:727.443900px;}
.y10d{bottom:730.009050px;}
.y7c{bottom:732.914100px;}
.y2b{bottom:732.928800px;}
.yb3{bottom:735.043950px;}
.ycf{bottom:736.084050px;}
.y17d{bottom:740.572800px;}
.y3{bottom:740.588700px;}
.ye8{bottom:744.568800px;}
.y15c{bottom:744.824850px;}
.y56{bottom:747.016950px;}
.y13c{bottom:747.843900px;}
.y1c3{bottom:749.076750px;}
.y10c{bottom:750.409050px;}
.yb2{bottom:751.830450px;}
.y7b{bottom:753.314100px;}
.y2a{bottom:753.328800px;}
.yce{bottom:756.483900px;}
.ye7{bottom:759.148800px;}
.y19c{bottom:760.972800px;}
.y2{bottom:763.268700px;}
.y17c{bottom:765.224850px;}
.y13b{bottom:768.243900px;}
.y15b{bottom:769.476750px;}
.y10b{bottom:770.809050px;}
.y7a{bottom:773.714100px;}
.y29{bottom:773.728800px;}
.ycd{bottom:776.884050px;}
.y17b{bottom:785.624850px;}
.y15a{bottom:789.876750px;}
.y13a{bottom:792.895800px;}
.y79{bottom:794.114100px;}
.y28{bottom:794.128800px;}
.ycc{bottom:797.283900px;}
.y19b{bottom:806.024850px;}
.y10a{bottom:808.216950px;}
.y159{bottom:810.276750px;}
.y139{bottom:813.295800px;}
.y78{bottom:814.514100px;}
.y27{bottom:814.528800px;}
.ycb{bottom:817.684050px;}
.y19a{bottom:826.424850px;}
.y17a{bottom:830.676750px;}
.y138{bottom:833.695800px;}
.y77{bottom:834.914100px;}
.y26{bottom:834.928650px;}
.yca{bottom:838.084050px;}
.y1c9{bottom:846.824850px;}
.y179{bottom:851.076750px;}
.y137{bottom:854.095800px;}
.y76{bottom:855.314100px;}
.y25{bottom:855.328800px;}
.y199{bottom:871.476750px;}
.y136{bottom:874.495950px;}
.y75{bottom:875.714100px;}
.y24{bottom:875.728800px;}
.yc9{bottom:883.995750px;}
.y74{bottom:896.114100px;}
.y23{bottom:896.128800px;}
.yc8{bottom:900.782250px;}
.y135{bottom:911.903700px;}
.y73{bottom:916.514100px;}
.y22{bottom:916.528800px;}
.yc7{bottom:917.568750px;}
.y20{bottom:958.029000px;}
.y47{bottom:959.205000px;}
.y21{bottom:962.589150px;}
.y46{bottom:972.165000px;}
.y1f{bottom:972.429000px;}
.he{height:32.832000px;}
.h14{height:32.994000px;}
.h8{height:34.200000px;}
.h11{height:34.263000px;}
.h15{height:34.860000px;}
.h9{height:35.136000px;}
.h18{height:37.641387px;}
.h2{height:38.640000px;}
.h19{height:40.664062px;}
.h1b{height:41.660156px;}
.h10{height:42.117188px;}
.hd{height:42.234375px;}
.h4{height:42.666504px;}
.h6{height:47.381836px;}
.h7{height:47.513672px;}
.hb{height:52.646484px;}
.h5{height:52.792969px;}
.ha{height:54.720000px;}
.h1a{height:57.960000px;}
.h12{height:61.074000px;}
.h16{height:64.740000px;}
.hc{height:66.240000px;}
.hf{height:68.256600px;}
.h3{height:69.552000px;}
.h13{height:89.154000px;}
.h17{height:94.620000px;}
.h0{height:1045.984500px;}
.h1{height:1046.250000px;}
.w1{width:663.000000px;}
.w0{width:663.307500px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x7{left:80.787450px;}
.xa{left:86.518500px;}
.x2{left:88.157550px;}
.x3{left:91.729050px;}
.x10{left:103.452000px;}
.x13{left:110.997750px;}
.xc{left:113.952750px;}
.xe{left:118.204650px;}
.x9{left:135.212550px;}
.xd{left:139.362900px;}
.x8{left:141.276300px;}
.x1{left:143.402250px;}
.x4{left:148.372650px;}
.x16{left:149.994600px;}
.x6{left:157.760250px;}
.x11{left:160.100550px;}
.x17{left:168.636300px;}
.x15{left:225.467100px;}
.x5{left:248.201400px;}
.xf{left:251.720100px;}
.x18{left:257.655300px;}
.x14{left:368.971050px;}
.x12{left:528.202650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.032533pt;}
.v1{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v4{vertical-align:24.960000pt;}
.v5{vertical-align:26.560000pt;}
.v6{vertical-align:53.120000pt;}
.ls13{letter-spacing:-2.368000pt;}
.ls10{letter-spacing:-1.578667pt;}
.lsb{letter-spacing:-1.472000pt;}
.lsc{letter-spacing:-1.408000pt;}
.ls9{letter-spacing:-1.216000pt;}
.lsf{letter-spacing:-1.150453pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls20{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.346667pt;}
.ls5{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.166400pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000533pt;}
.ls6{letter-spacing:0.005867pt;}
.ls1{letter-spacing:0.008000pt;}
.ls1a{letter-spacing:0.008533pt;}
.ls0{letter-spacing:0.009067pt;}
.ls12{letter-spacing:0.266667pt;}
.ls1e{letter-spacing:0.284800pt;}
.ls15{letter-spacing:0.310933pt;}
.ls14{letter-spacing:0.533333pt;}
.ls18{letter-spacing:0.542400pt;}
.ls1d{letter-spacing:2.101333pt;}
.ls1b{letter-spacing:2.434133pt;}
.ls1c{letter-spacing:4.242133pt;}
.ls7{letter-spacing:6.058667pt;}
.ls19{letter-spacing:8.112533pt;}
.ls16{letter-spacing:1116.677333pt;}
.wsd8{word-spacing:-13.866667pt;}
.ws1b{word-spacing:-13.333333pt;}
.ws4c{word-spacing:-12.672000pt;}
.wse6{word-spacing:-12.544000pt;}
.ws90{word-spacing:-12.480000pt;}
.wsa5{word-spacing:-12.224000pt;}
.ws9c{word-spacing:-12.096000pt;}
.wse9{word-spacing:-12.032000pt;}
.ws5{word-spacing:-12.000000pt;}
.wsed{word-spacing:-11.968000pt;}
.ws59{word-spacing:-11.456000pt;}
.ws75{word-spacing:-11.264000pt;}
.ws6b{word-spacing:-11.200000pt;}
.ws19{word-spacing:-10.794667pt;}
.ws1f{word-spacing:-10.666667pt;}
.wsae{word-spacing:-10.304000pt;}
.ws3{word-spacing:-9.800000pt;}
.wsc3{word-spacing:-9.506667pt;}
.ws0{word-spacing:-9.482667pt;}
.ws1c{word-spacing:-9.333333pt;}
.wsa0{word-spacing:-9.088000pt;}
.ws4{word-spacing:-8.400000pt;}
.wsbe{word-spacing:-7.987200pt;}
.ws1d{word-spacing:-7.773333pt;}
.ws1a{word-spacing:-7.556267pt;}
.ws1{word-spacing:-7.018667pt;}
.ws6{word-spacing:-6.996000pt;}
.ws9f{word-spacing:-6.622880pt;}
.ws2{word-spacing:-6.517333pt;}
.wsef{word-spacing:-4.000000pt;}
.wsf0{word-spacing:-3.680000pt;}
.wseb{word-spacing:-3.626667pt;}
.wsd6{word-spacing:-3.573333pt;}
.wsdc{word-spacing:-3.466667pt;}
.ws7c{word-spacing:-2.933333pt;}
.ws6e{word-spacing:-2.560000pt;}
.ws93{word-spacing:-2.293333pt;}
.ws76{word-spacing:-2.186667pt;}
.wsa8{word-spacing:-2.160000pt;}
.ws6d{word-spacing:-2.133333pt;}
.ws2d{word-spacing:-2.080000pt;}
.ws95{word-spacing:-2.026667pt;}
.wsa4{word-spacing:-1.973333pt;}
.ws6c{word-spacing:-1.920000pt;}
.ws61{word-spacing:-1.866667pt;}
.ws54{word-spacing:-1.813333pt;}
.ws27{word-spacing:-1.760000pt;}
.ws2e{word-spacing:-1.706667pt;}
.ws99{word-spacing:-1.653333pt;}
.wsb7{word-spacing:-1.600000pt;}
.wsc5{word-spacing:-1.549333pt;}
.ws46{word-spacing:-1.546667pt;}
.wsaa{word-spacing:-1.493333pt;}
.ws5f{word-spacing:-1.386667pt;}
.wsec{word-spacing:-1.333333pt;}
.ws68{word-spacing:-1.280000pt;}
.ws17{word-spacing:-1.200000pt;}
.wsba{word-spacing:-1.173333pt;}
.ws9{word-spacing:-1.152000pt;}
.ws4d{word-spacing:-1.120000pt;}
.ws80{word-spacing:-1.066667pt;}
.wsd2{word-spacing:-1.056000pt;}
.ws73{word-spacing:-1.013333pt;}
.ws65{word-spacing:-0.960000pt;}
.ws7d{word-spacing:-0.906667pt;}
.ws2f{word-spacing:-0.853333pt;}
.wsbb{word-spacing:-0.800000pt;}
.ws74{word-spacing:-0.746667pt;}
.ws18{word-spacing:-0.720000pt;}
.ws3c{word-spacing:-0.693333pt;}
.ws7b{word-spacing:-0.640000pt;}
.ws69{word-spacing:-0.586667pt;}
.wsd{word-spacing:-0.576000pt;}
.ws94{word-spacing:-0.533333pt;}
.wsdd{word-spacing:-0.480000pt;}
.ws44{word-spacing:-0.426667pt;}
.ws6a{word-spacing:-0.373333pt;}
.ws51{word-spacing:-0.320000pt;}
.wsc4{word-spacing:-0.310933pt;}
.ws50{word-spacing:-0.266667pt;}
.wsb5{word-spacing:-0.213333pt;}
.ws3b{word-spacing:-0.160000pt;}
.ws91{word-spacing:-0.106667pt;}
.ws6f{word-spacing:-0.053333pt;}
.ws1e{word-spacing:-0.044800pt;}
.ws7{word-spacing:0.000000pt;}
.wscd{word-spacing:0.053333pt;}
.ws14{word-spacing:0.096000pt;}
.ws2c{word-spacing:0.106667pt;}
.ws26{word-spacing:0.160000pt;}
.ws79{word-spacing:0.213333pt;}
.ws16{word-spacing:0.240000pt;}
.ws72{word-spacing:0.266667pt;}
.ws84{word-spacing:0.320000pt;}
.ws8{word-spacing:0.373333pt;}
.ws53{word-spacing:0.426667pt;}
.wsb{word-spacing:0.480000pt;}
.wsa{word-spacing:0.528000pt;}
.ws28{word-spacing:0.533333pt;}
.wsc8{word-spacing:0.586667pt;}
.wsd9{word-spacing:0.640000pt;}
.ws77{word-spacing:0.693333pt;}
.ws64{word-spacing:0.746667pt;}
.ws12{word-spacing:0.768000pt;}
.ws3d{word-spacing:0.800000pt;}
.ws89{word-spacing:0.853333pt;}
.ws8f{word-spacing:0.906667pt;}
.ws70{word-spacing:0.960000pt;}
.wsab{word-spacing:1.008000pt;}
.ws45{word-spacing:1.013333pt;}
.wsa2{word-spacing:1.056000pt;}
.ws58{word-spacing:1.066667pt;}
.ws3a{word-spacing:1.120000pt;}
.wse8{word-spacing:1.173333pt;}
.ws5a{word-spacing:1.226667pt;}
.ws25{word-spacing:1.280000pt;}
.ws15{word-spacing:1.296000pt;}
.ws78{word-spacing:1.333333pt;}
.ws39{word-spacing:1.386667pt;}
.ws24{word-spacing:1.440000pt;}
.ws82{word-spacing:1.493333pt;}
.ws8a{word-spacing:1.546667pt;}
.ws66{word-spacing:1.600000pt;}
.ws35{word-spacing:1.653333pt;}
.ws56{word-spacing:1.706667pt;}
.wsa7{word-spacing:1.728000pt;}
.ws42{word-spacing:1.760000pt;}
.ws48{word-spacing:1.813333pt;}
.ws22{word-spacing:1.866667pt;}
.wsda{word-spacing:1.920000pt;}
.ws55{word-spacing:1.973333pt;}
.wse1{word-spacing:2.026667pt;}
.ws97{word-spacing:2.080000pt;}
.ws67{word-spacing:2.133333pt;}
.wse{word-spacing:2.160000pt;}
.ws23{word-spacing:2.186667pt;}
.ws2a{word-spacing:2.240000pt;}
.wscf{word-spacing:2.256000pt;}
.ws87{word-spacing:2.293333pt;}
.ws98{word-spacing:2.346667pt;}
.ws9e{word-spacing:2.400000pt;}
.ws33{word-spacing:2.432000pt;}
.ws4f{word-spacing:2.453333pt;}
.ws9a{word-spacing:2.506667pt;}
.ws36{word-spacing:2.560000pt;}
.wsb9{word-spacing:2.592000pt;}
.ws8e{word-spacing:2.613333pt;}
.ws5d{word-spacing:2.666667pt;}
.ws81{word-spacing:2.720000pt;}
.ws40{word-spacing:2.773333pt;}
.wsb6{word-spacing:2.826667pt;}
.ws8d{word-spacing:2.880000pt;}
.ws71{word-spacing:2.933333pt;}
.wsea{word-spacing:2.986667pt;}
.ws63{word-spacing:3.040000pt;}
.ws86{word-spacing:3.093333pt;}
.ws47{word-spacing:3.146667pt;}
.ws13{word-spacing:3.168000pt;}
.ws5c{word-spacing:3.200000pt;}
.ws85{word-spacing:3.253333pt;}
.ws21{word-spacing:3.306667pt;}
.ws11{word-spacing:3.360000pt;}
.ws3e{word-spacing:3.413333pt;}
.ws4a{word-spacing:3.466667pt;}
.ws2b{word-spacing:3.520000pt;}
.wsf{word-spacing:3.552000pt;}
.ws62{word-spacing:3.573333pt;}
.wsd1{word-spacing:3.600000pt;}
.ws9b{word-spacing:3.626667pt;}
.ws37{word-spacing:3.680000pt;}
.ws7f{word-spacing:3.733333pt;}
.ws4b{word-spacing:3.786667pt;}
.ws41{word-spacing:3.840000pt;}
.wsa1{word-spacing:3.893333pt;}
.ws8c{word-spacing:3.946667pt;}
.ws29{word-spacing:4.000000pt;}
.wsb8{word-spacing:4.080000pt;}
.ws9d{word-spacing:4.106667pt;}
.ws38{word-spacing:4.160000pt;}
.ws8b{word-spacing:4.213333pt;}
.wse0{word-spacing:4.266667pt;}
.ws43{word-spacing:4.373333pt;}
.ws60{word-spacing:4.426667pt;}
.wsd4{word-spacing:4.533333pt;}
.wsc9{word-spacing:4.586667pt;}
.ws5e{word-spacing:4.640000pt;}
.ws4e{word-spacing:4.746667pt;}
.wsc{word-spacing:4.800000pt;}
.wse4{word-spacing:4.853333pt;}
.wsa6{word-spacing:4.896000pt;}
.ws49{word-spacing:4.906667pt;}
.ws83{word-spacing:4.960000pt;}
.ws10{word-spacing:5.040000pt;}
.wsaf{word-spacing:5.066667pt;}
.wse7{word-spacing:5.120000pt;}
.wsb2{word-spacing:5.173333pt;}
.wsb1{word-spacing:5.226667pt;}
.wsd7{word-spacing:5.280000pt;}
.wscb{word-spacing:5.386667pt;}
.ws3f{word-spacing:5.440000pt;}
.ws52{word-spacing:5.493333pt;}
.ws34{word-spacing:5.504000pt;}
.wsd5{word-spacing:5.546667pt;}
.wsd0{word-spacing:5.589333pt;}
.ws30{word-spacing:5.653333pt;}
.wsad{word-spacing:5.717333pt;}
.wsb0{word-spacing:5.760000pt;}
.wsc6{word-spacing:5.813333pt;}
.ws7e{word-spacing:5.866667pt;}
.ws31{word-spacing:5.920000pt;}
.wsac{word-spacing:5.973333pt;}
.wsa9{word-spacing:6.026667pt;}
.ws20{word-spacing:6.080000pt;}
.wscc{word-spacing:6.133333pt;}
.ws57{word-spacing:6.240000pt;}
.ws7a{word-spacing:6.400000pt;}
.wse5{word-spacing:6.453333pt;}
.wsc7{word-spacing:6.560000pt;}
.wse3{word-spacing:6.613333pt;}
.ws96{word-spacing:6.773333pt;}
.ws92{word-spacing:6.986667pt;}
.wsde{word-spacing:7.040000pt;}
.wsb3{word-spacing:7.200000pt;}
.wsd3{word-spacing:7.306667pt;}
.wsce{word-spacing:7.360000pt;}
.wsca{word-spacing:7.404800pt;}
.wsa3{word-spacing:7.413333pt;}
.ws5b{word-spacing:7.626667pt;}
.ws32{word-spacing:7.722667pt;}
.wsb4{word-spacing:7.946667pt;}
.wse2{word-spacing:8.000000pt;}
.wsdb{word-spacing:8.106667pt;}
.wsee{word-spacing:8.373333pt;}
.ws88{word-spacing:9.386667pt;}
.wsdf{word-spacing:11.360000pt;}
.wsc1{word-spacing:110.104693pt;}
.wsc2{word-spacing:120.040533pt;}
.wsc0{word-spacing:124.755733pt;}
.wsbc{word-spacing:130.696000pt;}
.wsbd{word-spacing:236.660800pt;}
.wsbf{word-spacing:630.919467pt;}
._3f{margin-left:-13.413333pt;}
._9{margin-left:-7.576000pt;}
._5{margin-left:-5.952000pt;}
._6{margin-left:-4.708800pt;}
._3{margin-left:-3.120533pt;}
._1{margin-left:-2.224267pt;}
._0{margin-left:-0.896000pt;}
._4{width:1.508267pt;}
._7{width:3.080533pt;}
._a{width:4.576000pt;}
._8{width:6.050133pt;}
._d{width:7.701333pt;}
._13{width:9.088000pt;}
._3e{width:9.989333pt;}
._2{width:11.743733pt;}
._2d{width:43.604800pt;}
._32{width:64.808533pt;}
._11{width:67.520000pt;}
._24{width:72.865067pt;}
._b{width:74.688000pt;}
._14{width:79.701333pt;}
._15{width:81.345600pt;}
._3c{width:84.500800pt;}
._3a{width:90.438933pt;}
._26{width:96.596267pt;}
._18{width:97.619733pt;}
._1c{width:99.912000pt;}
._c{width:101.034667pt;}
._2e{width:116.290667pt;}
._36{width:117.854400pt;}
._1f{width:131.705600pt;}
._1d{width:133.803200pt;}
._20{width:136.115733pt;}
._17{width:137.489600pt;}
._2f{width:138.846667pt;}
._1a{width:141.900800pt;}
._2b{width:157.325867pt;}
._23{width:173.811467pt;}
._34{width:175.371200pt;}
._28{width:206.533333pt;}
._29{width:212.800533pt;}
._25{width:232.020267pt;}
._3b{width:241.212267pt;}
._39{width:256.234133pt;}
._19{width:261.396800pt;}
._2c{width:262.710400pt;}
._3d{width:263.814400pt;}
._22{width:274.482667pt;}
._e{width:276.495467pt;}
._12{width:277.390933pt;}
._10{width:278.575467pt;}
._f{width:280.720000pt;}
._16{width:282.556267pt;}
._35{width:295.288000pt;}
._37{width:351.772267pt;}
._27{width:365.966400pt;}
._33{width:395.718400pt;}
._2a{width:418.395200pt;}
._31{width:485.912000pt;}
._38{width:487.317867pt;}
._30{width:494.367467pt;}
._21{width:499.713067pt;}
._1e{width:504.460267pt;}
._1b{width:511.056267pt;}
.fs8{font-size:27.984000pt;}
.fsb{font-size:29.866667pt;}
.fsd{font-size:31.093333pt;}
.fs7{font-size:33.600000pt;}
.fs1{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs13{font-size:38.026667pt;}
.fsf{font-size:38.400000pt;}
.fs4{font-size:39.200000pt;}
.fs9{font-size:40.000000pt;}
.fs11{font-size:41.600000pt;}
.fsa{font-size:42.666667pt;}
.fs10{font-size:43.200000pt;}
.fs12{font-size:44.266667pt;}
.fse{font-size:44.800000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:84.450400pt;}
.y1b7{bottom:116.537867pt;}
.y1e{bottom:122.834667pt;}
.y109{bottom:122.834800pt;}
.y99{bottom:125.612533pt;}
.y55{bottom:125.625600pt;}
.y158{bottom:126.780533pt;}
.y12d{bottom:128.430133pt;}
.y178{bottom:131.656000pt;}
.y1b6{bottom:134.671200pt;}
.y45{bottom:135.634667pt;}
.y198{bottom:138.450800pt;}
.y72{bottom:139.030267pt;}
.y1c2{bottom:142.230267pt;}
.yc6{bottom:142.692267pt;}
.y98{bottom:143.745867pt;}
.y54{bottom:143.758933pt;}
.y157{bottom:144.913867pt;}
.y12c{bottom:146.563467pt;}
.y108{bottom:147.813733pt;}
.y44{bottom:148.434667pt;}
.y177{bottom:149.789333pt;}
.y1d{bottom:151.460267pt;}
.y1b5{bottom:152.804533pt;}
.y197{bottom:156.584000pt;}
.y71{bottom:157.163600pt;}
.y1c1{bottom:160.363600pt;}
.y43{bottom:161.234667pt;}
.y97{bottom:161.879200pt;}
.y53{bottom:161.892267pt;}
.y156{bottom:163.047200pt;}
.y127{bottom:164.389067pt;}
.y12b{bottom:164.696800pt;}
.y1c{bottom:165.860267pt;}
.y107{bottom:166.182933pt;}
.y176{bottom:167.922667pt;}
.yc5{bottom:172.624933pt;}
.y9d{bottom:174.034667pt;}
.y196{bottom:174.717467pt;}
.y70{bottom:175.296933pt;}
.y1c0{bottom:178.496933pt;}
.y126{bottom:179.310400pt;}
.y106{bottom:179.462933pt;}
.y96{bottom:180.012533pt;}
.y52{bottom:180.025600pt;}
.y155{bottom:181.180533pt;}
.y12a{bottom:182.830267pt;}
.y1b{bottom:184.039733pt;}
.y9c{bottom:186.834667pt;}
.y175{bottom:189.835467pt;}
.yc4{bottom:190.758267pt;}
.y1b4{bottom:192.850800pt;}
.y6f{bottom:193.430267pt;}
.y125{bottom:194.231733pt;}
.y42{bottom:194.496933pt;}
.y195{bottom:196.630267pt;}
.y105{bottom:196.833733pt;}
.y95{bottom:198.145867pt;}
.y51{bottom:198.158933pt;}
.y1a{bottom:198.439733pt;}
.y9b{bottom:199.634667pt;}
.y1bf{bottom:200.409733pt;}
.y129{bottom:200.963600pt;}
.yb1{bottom:201.919200pt;}
.y154{bottom:203.093467pt;}
.y104{bottom:203.473733pt;}
.y174{bottom:207.968933pt;}
.yc3{bottom:208.891600pt;}
.y1b3{bottom:210.984133pt;}
.y6e{bottom:211.563600pt;}
.y9a{bottom:212.434667pt;}
.y41{bottom:212.630267pt;}
.y19{bottom:212.839733pt;}
.y194{bottom:214.763600pt;}
.y94{bottom:216.279200pt;}
.y50{bottom:216.292267pt;}
.y1be{bottom:218.543067pt;}
.y128{bottom:219.096933pt;}
.yb0{bottom:220.052533pt;}
.y153{bottom:221.226800pt;}
.yc2{bottom:227.024933pt;}
.y18{bottom:227.239733pt;}
.y103{bottom:227.484667pt;}
.y1b2{bottom:229.117467pt;}
.y6d{bottom:229.696933pt;}
.y173{bottom:229.881733pt;}
.y40{bottom:230.763600pt;}
.y124{bottom:231.830267pt;}
.y1c8{bottom:232.896933pt;}
.y93{bottom:234.412533pt;}
.y4f{bottom:234.425600pt;}
.y193{bottom:236.676533pt;}
.ye6{bottom:237.230133pt;}
.yaf{bottom:238.185867pt;}
.y152{bottom:239.360133pt;}
.y17{bottom:241.639733pt;}
.y102{bottom:244.855467pt;}
.yc1{bottom:245.158267pt;}
.y1b1{bottom:247.250667pt;}
.y6c{bottom:247.830267pt;}
.y172{bottom:248.015067pt;}
.y3f{bottom:248.896933pt;}
.y123{bottom:249.963600pt;}
.y1c7{bottom:251.030267pt;}
.y92{bottom:252.545867pt;}
.y4e{bottom:252.558933pt;}
.y192{bottom:254.809867pt;}
.ye5{bottom:255.363467pt;}
.y16{bottom:256.039733pt;}
.yae{bottom:256.319200pt;}
.y151{bottom:261.272933pt;}
.y101{bottom:262.226400pt;}
.y1b0{bottom:265.384133pt;}
.y6b{bottom:265.963600pt;}
.y171{bottom:266.148400pt;}
.y3e{bottom:267.030267pt;}
.y122{bottom:268.096933pt;}
.y15{bottom:270.439733pt;}
.y91{bottom:270.679200pt;}
.y4d{bottom:270.692267pt;}
.y191{bottom:272.943200pt;}
.ye4{bottom:273.496933pt;}
.yad{bottom:274.452533pt;}
.y1bd{bottom:276.722667pt;}
.y150{bottom:279.406267pt;}
.y100{bottom:279.597200pt;}
.y6a{bottom:284.096933pt;}
.y170{bottom:284.281733pt;}
.y14{bottom:284.839733pt;}
.y3d{bottom:285.163600pt;}
.yc0{bottom:285.968667pt;}
.y121{bottom:286.230267pt;}
.yff{bottom:286.237200pt;}
.y1af{bottom:287.296933pt;}
.y90{bottom:288.812533pt;}
.y4c{bottom:288.825600pt;}
.y190{bottom:291.076400pt;}
.ye3{bottom:291.630267pt;}
.y134{bottom:292.558933pt;}
.yac{bottom:292.585867pt;}
.y1bc{bottom:294.856000pt;}
.ybf{bottom:300.890000pt;}
.y14f{bottom:301.319067pt;}
.y69{bottom:302.230267pt;}
.y16f{bottom:302.415067pt;}
.y120{bottom:304.363600pt;}
.y1ae{bottom:305.430267pt;}
.y8f{bottom:306.945867pt;}
.y4b{bottom:306.958933pt;}
.ye2{bottom:309.763600pt;}
.yfe{bottom:310.248133pt;}
.y133{bottom:310.692267pt;}
.yab{bottom:310.719200pt;}
.y18f{bottom:312.989333pt;}
.ybe{bottom:315.811467pt;}
.yfd{bottom:316.888133pt;}
.y3c{bottom:318.415067pt;}
.y14e{bottom:319.452533pt;}
.y68{bottom:320.363600pt;}
.y11f{bottom:322.496933pt;}
.y13{bottom:323.106400pt;}
.y1ad{bottom:323.563600pt;}
.y16e{bottom:324.327867pt;}
.y8e{bottom:325.079200pt;}
.y4a{bottom:325.092267pt;}
.ye1{bottom:327.896800pt;}
.y132{bottom:328.825600pt;}
.yaa{bottom:328.852533pt;}
.ybd{bottom:330.732667pt;}
.y18e{bottom:331.122667pt;}
.y12{bottom:337.506400pt;}
.y14d{bottom:337.585867pt;}
.y3b{bottom:337.615067pt;}
.y67{bottom:338.496933pt;}
.y11e{bottom:340.630267pt;}
.yfc{bottom:340.898933pt;}
.y1ac{bottom:341.696933pt;}
.y16d{bottom:342.461200pt;}
.y8d{bottom:343.212533pt;}
.y49{bottom:343.225600pt;}
.ybc{bottom:345.654000pt;}
.ye0{bottom:346.030133pt;}
.y131{bottom:346.958933pt;}
.ya9{bottom:346.985867pt;}
.y18d{bottom:349.256000pt;}
.y11{bottom:355.686000pt;}
.y66{bottom:356.630267pt;}
.yfb{bottom:358.269867pt;}
.y11d{bottom:358.763600pt;}
.y14c{bottom:359.498667pt;}
.y16c{bottom:360.594533pt;}
.y8c{bottom:361.345867pt;}
.y48{bottom:361.358933pt;}
.y1ab{bottom:363.609867pt;}
.ydf{bottom:364.163600pt;}
.y130{bottom:365.092267pt;}
.ya8{bottom:365.119200pt;}
.y18c{bottom:367.389333pt;}
.y10{bottom:370.086000pt;}
.y1bb{bottom:371.168800pt;}
.y65{bottom:374.763600pt;}
.yfa{bottom:375.640667pt;}
.y11c{bottom:376.896933pt;}
.y14b{bottom:377.632000pt;}
.y16b{bottom:378.727867pt;}
.y8b{bottom:379.479200pt;}
.y3a{bottom:379.492267pt;}
.y1aa{bottom:381.743067pt;}
.yde{bottom:382.296933pt;}
.y12f{bottom:383.225600pt;}
.ya7{bottom:383.252533pt;}
.yf{bottom:384.486000pt;}
.y1c6{bottom:385.522667pt;}
.y18b{bottom:389.302267pt;}
.y64{bottom:392.896933pt;}
.yf9{bottom:393.011600pt;}
.y11b{bottom:395.030267pt;}
.y14a{bottom:395.765333pt;}
.y16a{bottom:396.861200pt;}
.y8a{bottom:397.612533pt;}
.y39{bottom:397.625600pt;}
.ye{bottom:398.886000pt;}
.y1a9{bottom:399.876400pt;}
.ydd{bottom:400.430267pt;}
.y12e{bottom:401.358933pt;}
.ya6{bottom:401.385867pt;}
.y18a{bottom:407.435600pt;}
.yf8{bottom:410.382400pt;}
.y63{bottom:411.030267pt;}
.y11a{bottom:413.163600pt;}
.yd{bottom:413.286000pt;}
.y149{bottom:413.898667pt;}
.y169{bottom:414.994533pt;}
.y89{bottom:415.745867pt;}
.y38{bottom:415.758933pt;}
.y1a8{bottom:418.009867pt;}
.ydc{bottom:418.563467pt;}
.ya5{bottom:419.519200pt;}
.y189{bottom:425.568800pt;}
.yc{bottom:427.686000pt;}
.yf6{bottom:427.753333pt;}
.y62{bottom:429.163600pt;}
.y1ba{bottom:429.348400pt;}
.y119{bottom:431.296933pt;}
.y88{bottom:433.879200pt;}
.y37{bottom:433.892267pt;}
.yf5{bottom:434.393333pt;}
.y148{bottom:435.811467pt;}
.ydb{bottom:436.696800pt;}
.y168{bottom:436.907467pt;}
.ya4{bottom:437.652533pt;}
.y1a7{bottom:439.922667pt;}
.yf7{bottom:441.033333pt;}
.yb{bottom:442.086000pt;}
.y1c5{bottom:443.702133pt;}
.y61{bottom:447.296933pt;}
.y188{bottom:447.481733pt;}
.y118{bottom:449.430267pt;}
.y87{bottom:452.012533pt;}
.y36{bottom:452.025600pt;}
.y147{bottom:453.944800pt;}
.yda{bottom:454.830267pt;}
.y167{bottom:455.040800pt;}
.ya3{bottom:455.785867pt;}
.ya{bottom:456.486000pt;}
.y1a6{bottom:458.056000pt;}
.yf4{bottom:458.404133pt;}
.y60{bottom:465.430267pt;}
.y187{bottom:465.615067pt;}
.y117{bottom:467.563600pt;}
.y86{bottom:470.145867pt;}
.y35{bottom:470.158933pt;}
.y9{bottom:470.886000pt;}
.y146{bottom:472.078267pt;}
.yd9{bottom:472.963600pt;}
.y166{bottom:473.174133pt;}
.ya2{bottom:473.919200pt;}
.yf3{bottom:475.775067pt;}
.y1a5{bottom:476.189333pt;}
.y5f{bottom:483.563600pt;}
.y186{bottom:483.748400pt;}
.y8{bottom:485.286000pt;}
.y116{bottom:485.696933pt;}
.y1b9{bottom:487.527867pt;}
.y85{bottom:488.279200pt;}
.y34{bottom:488.292267pt;}
.yd8{bottom:491.096800pt;}
.ybb{bottom:492.052533pt;}
.yf2{bottom:493.145867pt;}
.y145{bottom:493.991067pt;}
.y165{bottom:495.086933pt;}
.y1a4{bottom:498.102267pt;}
.y5e{bottom:501.696933pt;}
.y115{bottom:503.830267pt;}
.y185{bottom:505.661200pt;}
.y84{bottom:506.412533pt;}
.y33{bottom:506.425600pt;}
.yd7{bottom:509.230267pt;}
.yba{bottom:510.185867pt;}
.yf1{bottom:510.516800pt;}
.y144{bottom:512.124400pt;}
.y164{bottom:513.220267pt;}
.ya1{bottom:514.729733pt;}
.y1a3{bottom:516.235467pt;}
.yf0{bottom:517.156800pt;}
.y5d{bottom:519.830267pt;}
.y114{bottom:521.963600pt;}
.y184{bottom:523.794533pt;}
.y83{bottom:524.545867pt;}
.y32{bottom:524.558933pt;}
.yd6{bottom:527.363467pt;}
.yb9{bottom:528.319200pt;}
.ya0{bottom:529.651067pt;}
.y143{bottom:530.257733pt;}
.y163{bottom:531.353600pt;}
.y5c{bottom:537.963600pt;}
.y1a2{bottom:538.148400pt;}
.y113{bottom:540.096933pt;}
.yef{bottom:541.167600pt;}
.y183{bottom:541.927867pt;}
.y82{bottom:542.679200pt;}
.y31{bottom:542.692267pt;}
.y9f{bottom:544.572400pt;}
.yd5{bottom:545.496933pt;}
.y1b8{bottom:545.707467pt;}
.yb8{bottom:546.452533pt;}
.yee{bottom:547.807600pt;}
.y162{bottom:549.486933pt;}
.y142{bottom:552.170533pt;}
.y5b{bottom:556.096933pt;}
.y1a1{bottom:556.281733pt;}
.y112{bottom:558.230267pt;}
.y9e{bottom:559.493733pt;}
.y81{bottom:560.812533pt;}
.y30{bottom:560.825600pt;}
.yd4{bottom:563.630267pt;}
.y182{bottom:563.840800pt;}
.yb7{bottom:564.585867pt;}
.y7{bottom:565.069733pt;}
.y141{bottom:570.303867pt;}
.y161{bottom:571.399867pt;}
.yed{bottom:571.818533pt;}
.y5a{bottom:574.230267pt;}
.y111{bottom:576.363600pt;}
.y1a0{bottom:578.194533pt;}
.y80{bottom:578.945867pt;}
.y2f{bottom:578.958933pt;}
.y6{bottom:581.069733pt;}
.yd3{bottom:581.763467pt;}
.y181{bottom:581.974133pt;}
.yb6{bottom:582.719200pt;}
.y1c4{bottom:585.753600pt;}
.y140{bottom:588.437200pt;}
.yec{bottom:589.189333pt;}
.y160{bottom:589.533200pt;}
.y59{bottom:592.363600pt;}
.y110{bottom:594.496933pt;}
.y19f{bottom:596.327867pt;}
.y7f{bottom:597.079200pt;}
.y2e{bottom:597.092267pt;}
.yd2{bottom:599.896933pt;}
.y180{bottom:603.886933pt;}
.yeb{bottom:606.560267pt;}
.y13f{bottom:606.570533pt;}
.y15f{bottom:607.666533pt;}
.y10f{bottom:612.630267pt;}
.y7e{bottom:615.212533pt;}
.y2d{bottom:615.225600pt;}
.y5{bottom:617.981067pt;}
.yd1{bottom:618.030133pt;}
.y19e{bottom:618.240800pt;}
.y17f{bottom:622.020267pt;}
.yb5{bottom:623.529733pt;}
.yea{bottom:623.931067pt;}
.y13e{bottom:624.704000pt;}
.y58{bottom:625.615067pt;}
.y15e{bottom:625.799867pt;}
.ye9{bottom:630.171067pt;}
.y10e{bottom:630.763600pt;}
.y7d{bottom:633.345867pt;}
.y2c{bottom:633.358933pt;}
.yd0{bottom:636.163600pt;}
.y19d{bottom:636.374133pt;}
.y4{bottom:638.141067pt;}
.yb4{bottom:638.451067pt;}
.y17e{bottom:640.153600pt;}
.y15d{bottom:643.933200pt;}
.y57{bottom:644.815067pt;}
.y13d{bottom:646.616800pt;}
.y10d{bottom:648.896933pt;}
.y7c{bottom:651.479200pt;}
.y2b{bottom:651.492267pt;}
.yb3{bottom:653.372400pt;}
.ycf{bottom:654.296933pt;}
.y17d{bottom:658.286933pt;}
.y3{bottom:658.301067pt;}
.ye8{bottom:661.838933pt;}
.y15c{bottom:662.066533pt;}
.y56{bottom:664.015067pt;}
.y13c{bottom:664.750133pt;}
.y1c3{bottom:665.846000pt;}
.y10c{bottom:667.030267pt;}
.yb2{bottom:668.293733pt;}
.y7b{bottom:669.612533pt;}
.y2a{bottom:669.625600pt;}
.yce{bottom:672.430133pt;}
.ye7{bottom:674.798933pt;}
.y19c{bottom:676.420267pt;}
.y2{bottom:678.461067pt;}
.y17c{bottom:680.199867pt;}
.y13b{bottom:682.883467pt;}
.y15b{bottom:683.979333pt;}
.y10b{bottom:685.163600pt;}
.y7a{bottom:687.745867pt;}
.y29{bottom:687.758933pt;}
.ycd{bottom:690.563600pt;}
.y17b{bottom:698.333200pt;}
.y15a{bottom:702.112667pt;}
.y13a{bottom:704.796267pt;}
.y79{bottom:705.879200pt;}
.y28{bottom:705.892267pt;}
.ycc{bottom:708.696800pt;}
.y19b{bottom:716.466533pt;}
.y10a{bottom:718.415067pt;}
.y159{bottom:720.246000pt;}
.y139{bottom:722.929600pt;}
.y78{bottom:724.012533pt;}
.y27{bottom:724.025600pt;}
.ycb{bottom:726.830267pt;}
.y19a{bottom:734.599867pt;}
.y17a{bottom:738.379333pt;}
.y138{bottom:741.062933pt;}
.y77{bottom:742.145867pt;}
.y26{bottom:742.158800pt;}
.yca{bottom:744.963600pt;}
.y1c9{bottom:752.733200pt;}
.y179{bottom:756.512667pt;}
.y137{bottom:759.196267pt;}
.y76{bottom:760.279200pt;}
.y25{bottom:760.292267pt;}
.y199{bottom:774.646000pt;}
.y136{bottom:777.329733pt;}
.y75{bottom:778.412533pt;}
.y24{bottom:778.425600pt;}
.yc9{bottom:785.774000pt;}
.y74{bottom:796.545867pt;}
.y23{bottom:796.558933pt;}
.yc8{bottom:800.695333pt;}
.y135{bottom:810.581067pt;}
.y73{bottom:814.679200pt;}
.y22{bottom:814.692267pt;}
.yc7{bottom:815.616667pt;}
.y20{bottom:851.581333pt;}
.y47{bottom:852.626667pt;}
.y21{bottom:855.634800pt;}
.y46{bottom:864.146667pt;}
.y1f{bottom:864.381333pt;}
.he{height:29.184000pt;}
.h14{height:29.328000pt;}
.h8{height:30.400000pt;}
.h11{height:30.456000pt;}
.h15{height:30.986667pt;}
.h9{height:31.232000pt;}
.h18{height:33.459010pt;}
.h2{height:34.346667pt;}
.h19{height:36.145833pt;}
.h1b{height:37.031250pt;}
.h10{height:37.437500pt;}
.hd{height:37.541667pt;}
.h4{height:37.925781pt;}
.h6{height:42.117188pt;}
.h7{height:42.234375pt;}
.hb{height:46.796875pt;}
.h5{height:46.927083pt;}
.ha{height:48.640000pt;}
.h1a{height:51.520000pt;}
.h12{height:54.288000pt;}
.h16{height:57.546667pt;}
.hc{height:58.880000pt;}
.hf{height:60.672533pt;}
.h3{height:61.824000pt;}
.h13{height:79.248000pt;}
.h17{height:84.106667pt;}
.h0{height:929.764000pt;}
.h1{height:930.000000pt;}
.w1{width:589.333333pt;}
.w0{width:589.606667pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x7{left:71.811067pt;}
.xa{left:76.905333pt;}
.x2{left:78.362267pt;}
.x3{left:81.536933pt;}
.x10{left:91.957333pt;}
.x13{left:98.664667pt;}
.xc{left:101.291333pt;}
.xe{left:105.070800pt;}
.x9{left:120.188933pt;}
.xd{left:123.878133pt;}
.x8{left:125.578933pt;}
.x1{left:127.468667pt;}
.x4{left:131.886800pt;}
.x16{left:133.328533pt;}
.x6{left:140.231333pt;}
.x11{left:142.311600pt;}
.x17{left:149.898933pt;}
.x15{left:200.415200pt;}
.x5{left:220.623467pt;}
.xf{left:223.751200pt;}
.x18{left:229.026933pt;}
.x14{left:327.974267pt;}
.x12{left:469.513467pt;}
}




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