
    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_4e8705b0b622cd4652e144b3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_67f84db639bc469ae56751fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_e49814716daaabb9bfb10f04.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e07c1493b1c31904847a247a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_dfa99ea3678e484b969d956e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_720235c0ffbf283ceffbb0ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_81fa79d953cb0849ab61820c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_ddc3248b553a544929fbadb0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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_80531df6b5d540f25558ad0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_15e4245be5e0a134ae37f36a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_12a5b2e699cf3013d5967c7d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;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_49980b38d255a7bf29bede2d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.947000;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_1349b8a10610763c09750e24.woff2')format("woff");}.fff{font-family:fff;line-height:0.944000;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_2541ff90d526e327b4518688.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722687;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:-20.790000px;}
.v3{vertical-align:-17.820000px;}
.v5{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.ls16{letter-spacing:-2.496000px;}
.ls1b{letter-spacing:-1.740000px;}
.ls1c{letter-spacing:-1.500000px;}
.ls10{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-1.350000px;}
.ls12{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.672000px;}
.ls11{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.528000px;}
.ls1a{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.351000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.013200px;}
.ls7{letter-spacing:0.408900px;}
.ls8{letter-spacing:0.409050px;}
.ls5{letter-spacing:0.409500px;}
.lsa{letter-spacing:0.450000px;}
.ls19{letter-spacing:0.599400px;}
.lse{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.630000px;}
.lsb{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls1{letter-spacing:1.200000px;}
.ls1e{letter-spacing:9.157200px;}
.lsc{letter-spacing:67.526400px;}
.ls9{letter-spacing:71.943000px;}
.ls6{letter-spacing:71.943600px;}
.ls13{letter-spacing:735.113400px;}
.lsf{letter-spacing:757.751400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-13.986000px;}
.ws5{word-spacing:-13.440000px;}
.ws4{word-spacing:-13.332000px;}
.ws38{word-spacing:-13.320000px;}
.wsee{word-spacing:-12.726000px;}
.ws6{word-spacing:-12.720000px;}
.ws8f{word-spacing:-11.592000px;}
.ws6f{word-spacing:-11.448000px;}
.ws7a{word-spacing:-10.920000px;}
.ws141{word-spacing:-10.908000px;}
.wsb{word-spacing:-10.176000px;}
.wsef{word-spacing:-10.098000px;}
.ws102{word-spacing:-9.828000px;}
.wsa{word-spacing:-9.810000px;}
.ws7{word-spacing:-9.408000px;}
.ws3{word-spacing:-9.360000px;}
.ws142{word-spacing:-9.288000px;}
.wsa9{word-spacing:-8.880000px;}
.ws8{word-spacing:-8.820000px;}
.wsc6{word-spacing:-8.736000px;}
.wsaf{word-spacing:-8.268000px;}
.ws9{word-spacing:-8.232000px;}
.wsf0{word-spacing:-7.441200px;}
.ws101{word-spacing:-7.090200px;}
.wsb2{word-spacing:-6.912000px;}
.ws2{word-spacing:-6.879600px;}
.wsbd{word-spacing:-5.220000px;}
.wsae{word-spacing:-3.408000px;}
.ws2d{word-spacing:-0.720000px;}
.ws59{word-spacing:-0.450000px;}
.ws0{word-spacing:0.000000px;}
.ws111{word-spacing:0.054000px;}
.ws157{word-spacing:0.540000px;}
.ws93{word-spacing:0.600000px;}
.wsbe{word-spacing:0.720000px;}
.ws92{word-spacing:1.440000px;}
.ws167{word-spacing:2.754000px;}
.ws133{word-spacing:2.862000px;}
.ws168{word-spacing:3.186000px;}
.ws132{word-spacing:3.348000px;}
.wse8{word-spacing:3.660000px;}
.ws6a{word-spacing:3.840000px;}
.ws11c{word-spacing:3.942000px;}
.ws160{word-spacing:4.104000px;}
.wsd9{word-spacing:4.200000px;}
.ws11b{word-spacing:4.590000px;}
.ws103{word-spacing:4.860000px;}
.ws162{word-spacing:4.968000px;}
.ws4c{word-spacing:4.980000px;}
.ws5d{word-spacing:5.100000px;}
.wsfe{word-spacing:5.130000px;}
.ws138{word-spacing:5.238000px;}
.wsf9{word-spacing:5.508000px;}
.ws104{word-spacing:5.616000px;}
.wsc0{word-spacing:5.664000px;}
.ws2f{word-spacing:5.700000px;}
.ws14a{word-spacing:5.724000px;}
.ws58{word-spacing:5.808000px;}
.ws10d{word-spacing:5.886000px;}
.wsda{word-spacing:5.940000px;}
.ws15b{word-spacing:5.994000px;}
.ws136{word-spacing:6.048000px;}
.ws137{word-spacing:6.102000px;}
.wsed{word-spacing:6.120000px;}
.ws69{word-spacing:6.300000px;}
.wsf3{word-spacing:6.360000px;}
.ws115{word-spacing:6.480000px;}
.ws8d{word-spacing:6.540000px;}
.ws32{word-spacing:6.594000px;}
.wsa4{word-spacing:6.600000px;}
.wsd{word-spacing:6.615000px;}
.ws14d{word-spacing:6.642000px;}
.ws36{word-spacing:6.660000px;}
.ws108{word-spacing:6.696000px;}
.ws68{word-spacing:6.840000px;}
.ws10c{word-spacing:6.858000px;}
.ws39{word-spacing:6.900000px;}
.ws10e{word-spacing:6.912000px;}
.wsa2{word-spacing:6.960000px;}
.ws15a{word-spacing:6.966000px;}
.ws42{word-spacing:7.020000px;}
.wse{word-spacing:7.065000px;}
.ws9c{word-spacing:7.080000px;}
.ws4d{word-spacing:7.140000px;}
.ws79{word-spacing:7.200000px;}
.wsa5{word-spacing:7.260000px;}
.ws1f{word-spacing:7.290000px;}
.ws27{word-spacing:7.320000px;}
.ws14e{word-spacing:7.344000px;}
.wsfb{word-spacing:7.398000px;}
.ws4f{word-spacing:7.440000px;}
.ws105{word-spacing:7.452000px;}
.ws98{word-spacing:7.500000px;}
.ws33{word-spacing:7.536000px;}
.wsa3{word-spacing:7.560000px;}
.wsf4{word-spacing:7.614000px;}
.ws11d{word-spacing:7.722000px;}
.ws74{word-spacing:7.740000px;}
.ws11a{word-spacing:7.776000px;}
.ws11{word-spacing:7.812000px;}
.ws109{word-spacing:7.830000px;}
.wsa1{word-spacing:7.860000px;}
.ws10a{word-spacing:7.884000px;}
.ws26{word-spacing:7.920000px;}
.ws123{word-spacing:7.938000px;}
.ws84{word-spacing:7.980000px;}
.ws140{word-spacing:7.992000px;}
.ws3e{word-spacing:8.040000px;}
.wsf2{word-spacing:8.100000px;}
.wsf8{word-spacing:8.154000px;}
.ws37{word-spacing:8.160000px;}
.ws165{word-spacing:8.262000px;}
.ws52{word-spacing:8.280000px;}
.ws15e{word-spacing:8.316000px;}
.ws48{word-spacing:8.400000px;}
.ws9e{word-spacing:8.460000px;}
.ws12{word-spacing:8.478000px;}
.ws35{word-spacing:8.484000px;}
.wsf1{word-spacing:8.580000px;}
.ws13a{word-spacing:8.586000px;}
.ws24{word-spacing:8.640000px;}
.ws152{word-spacing:8.694000px;}
.ws40{word-spacing:8.700000px;}
.ws4a{word-spacing:8.760000px;}
.ws56{word-spacing:8.778000px;}
.ws120{word-spacing:8.856000px;}
.ws57{word-spacing:8.949000px;}
.ws15{word-spacing:8.964000px;}
.wsd5{word-spacing:9.000000px;}
.ws129{word-spacing:9.018000px;}
.ws54{word-spacing:9.060000px;}
.ws82{word-spacing:9.120000px;}
.ws22{word-spacing:9.180000px;}
.ws9b{word-spacing:9.198000px;}
.ws106{word-spacing:9.234000px;}
.wsec{word-spacing:9.240000px;}
.ws5c{word-spacing:9.261000px;}
.ws122{word-spacing:9.288000px;}
.ws83{word-spacing:9.300000px;}
.wse4{word-spacing:9.360000px;}
.wsff{word-spacing:9.396000px;}
.ws95{word-spacing:9.420000px;}
.wsf7{word-spacing:9.504000px;}
.wse5{word-spacing:9.540000px;}
.wsc{word-spacing:9.600000px;}
.ws18{word-spacing:9.612000px;}
.ws46{word-spacing:9.660000px;}
.ws135{word-spacing:9.666000px;}
.ws112{word-spacing:9.720000px;}
.ws13d{word-spacing:9.774000px;}
.ws78{word-spacing:9.780000px;}
.ws153{word-spacing:9.828000px;}
.ws21{word-spacing:9.882000px;}
.ws99{word-spacing:9.900000px;}
.ws64{word-spacing:9.960000px;}
.ws3f{word-spacing:10.020000px;}
.wse7{word-spacing:10.080000px;}
.ws29{word-spacing:10.140000px;}
.ws10f{word-spacing:10.152000px;}
.ws2c{word-spacing:10.200000px;}
.ws150{word-spacing:10.206000px;}
.ws1e{word-spacing:10.260000px;}
.wsf6{word-spacing:10.314000px;}
.ws60{word-spacing:10.320000px;}
.wsd8{word-spacing:10.380000px;}
.ws20{word-spacing:10.422000px;}
.ws5e{word-spacing:10.500000px;}
.ws15f{word-spacing:10.530000px;}
.ws14f{word-spacing:10.584000px;}
.ws3a{word-spacing:10.620000px;}
.ws25{word-spacing:10.680000px;}
.ws1d{word-spacing:10.692000px;}
.ws10{word-spacing:10.710000px;}
.ws28{word-spacing:10.740000px;}
.ws19{word-spacing:10.800000px;}
.ws100{word-spacing:10.908000px;}
.ws63{word-spacing:10.920000px;}
.ws71{word-spacing:10.980000px;}
.ws7f{word-spacing:11.100000px;}
.wsdc{word-spacing:11.160000px;}
.ws81{word-spacing:11.220000px;}
.ws34{word-spacing:11.298000px;}
.ws8b{word-spacing:11.340000px;}
.ws124{word-spacing:11.394000px;}
.ws45{word-spacing:11.400000px;}
.ws80{word-spacing:11.460000px;}
.ws143{word-spacing:11.610000px;}
.wse3{word-spacing:11.640000px;}
.ws10b{word-spacing:11.826000px;}
.ws145{word-spacing:11.880000px;}
.ws146{word-spacing:11.934000px;}
.wsbf{word-spacing:11.940000px;}
.ws116{word-spacing:11.988000px;}
.ws117{word-spacing:12.150000px;}
.ws8a{word-spacing:12.180000px;}
.ws4e{word-spacing:12.240000px;}
.wsd0{word-spacing:12.300000px;}
.ws166{word-spacing:12.312000px;}
.ws85{word-spacing:12.360000px;}
.ws134{word-spacing:12.366000px;}
.ws119{word-spacing:12.474000px;}
.ws75{word-spacing:12.480000px;}
.ws127{word-spacing:12.528000px;}
.wse0{word-spacing:12.540000px;}
.ws156{word-spacing:12.582000px;}
.ws5a{word-spacing:12.600000px;}
.ws50{word-spacing:12.660000px;}
.wsea{word-spacing:12.720000px;}
.ws15c{word-spacing:12.744000px;}
.ws2e{word-spacing:12.780000px;}
.ws1c{word-spacing:12.852000px;}
.ws86{word-spacing:12.960000px;}
.wsde{word-spacing:13.020000px;}
.ws47{word-spacing:13.080000px;}
.ws13b{word-spacing:13.176000px;}
.ws65{word-spacing:13.200000px;}
.ws70{word-spacing:13.260000px;}
.ws114{word-spacing:13.284000px;}
.ws72{word-spacing:13.320000px;}
.ws16{word-spacing:13.338000px;}
.ws51{word-spacing:13.440000px;}
.ws2a{word-spacing:13.500000px;}
.ws76{word-spacing:13.560000px;}
.ws44{word-spacing:13.620000px;}
.ws151{word-spacing:13.662000px;}
.ws11f{word-spacing:13.770000px;}
.ws88{word-spacing:13.800000px;}
.ws144{word-spacing:13.824000px;}
.wsab{word-spacing:13.860000px;}
.ws158{word-spacing:13.878000px;}
.wsf{word-spacing:13.944000px;}
.ws9f{word-spacing:13.980000px;}
.ws13{word-spacing:13.986000px;}
.ws89{word-spacing:14.040000px;}
.ws128{word-spacing:14.148000px;}
.ws6e{word-spacing:14.160000px;}
.ws131{word-spacing:14.202000px;}
.ws67{word-spacing:14.220000px;}
.ws125{word-spacing:14.256000px;}
.ws53{word-spacing:14.280000px;}
.wsdf{word-spacing:14.400000px;}
.ws12e{word-spacing:14.418000px;}
.ws118{word-spacing:14.526000px;}
.wsa0{word-spacing:14.580000px;}
.ws147{word-spacing:14.634000px;}
.wsdb{word-spacing:14.640000px;}
.ws155{word-spacing:14.688000px;}
.wseb{word-spacing:14.760000px;}
.ws159{word-spacing:14.850000px;}
.wsd7{word-spacing:14.880000px;}
.ws3d{word-spacing:15.120000px;}
.ws1a{word-spacing:15.174000px;}
.ws154{word-spacing:15.336000px;}
.ws6b{word-spacing:15.420000px;}
.ws12b{word-spacing:15.444000px;}
.ws62{word-spacing:15.480000px;}
.ws113{word-spacing:15.498000px;}
.ws30{word-spacing:15.540000px;}
.ws12a{word-spacing:15.552000px;}
.ws43{word-spacing:15.600000px;}
.ws1b{word-spacing:15.714000px;}
.ws61{word-spacing:15.780000px;}
.ws91{word-spacing:15.900000px;}
.ws49{word-spacing:15.960000px;}
.ws11e{word-spacing:16.038000px;}
.ws90{word-spacing:16.080000px;}
.ws164{word-spacing:16.254000px;}
.ws139{word-spacing:16.470000px;}
.wsdd{word-spacing:16.560000px;}
.ws130{word-spacing:16.578000px;}
.ws87{word-spacing:16.740000px;}
.wsfa{word-spacing:16.794000px;}
.ws6d{word-spacing:16.800000px;}
.ws126{word-spacing:16.902000px;}
.ws55{word-spacing:17.040000px;}
.ws5f{word-spacing:17.100000px;}
.ws149{word-spacing:17.118000px;}
.wse9{word-spacing:17.220000px;}
.ws66{word-spacing:17.580000px;}
.wsac{word-spacing:17.760000px;}
.ws96{word-spacing:17.820000px;}
.ws94{word-spacing:17.880000px;}
.ws97{word-spacing:17.940000px;}
.ws13c{word-spacing:18.036000px;}
.wsd6{word-spacing:18.120000px;}
.ws6c{word-spacing:18.240000px;}
.ws121{word-spacing:18.576000px;}
.ws3c{word-spacing:18.840000px;}
.wsf5{word-spacing:18.846000px;}
.ws163{word-spacing:18.954000px;}
.ws9d{word-spacing:18.960000px;}
.wsfc{word-spacing:19.008000px;}
.ws3b{word-spacing:19.020000px;}
.ws110{word-spacing:19.062000px;}
.ws4b{word-spacing:19.080000px;}
.wse2{word-spacing:19.380000px;}
.ws23{word-spacing:19.440000px;}
.ws9a{word-spacing:19.620000px;}
.ws5b{word-spacing:19.860000px;}
.ws15d{word-spacing:19.872000px;}
.ws148{word-spacing:19.980000px;}
.ws107{word-spacing:20.088000px;}
.ws31{word-spacing:20.100000px;}
.ws12d{word-spacing:20.358000px;}
.wse6{word-spacing:20.580000px;}
.ws8c{word-spacing:20.640000px;}
.wse1{word-spacing:21.180000px;}
.ws2b{word-spacing:21.360000px;}
.ws13f{word-spacing:21.492000px;}
.wsfd{word-spacing:22.032000px;}
.ws73{word-spacing:23.100000px;}
.ws14c{word-spacing:23.166000px;}
.ws12c{word-spacing:23.706000px;}
.ws14{word-spacing:24.300000px;}
.wsad{word-spacing:24.480000px;}
.ws41{word-spacing:24.960000px;}
.ws13e{word-spacing:25.056000px;}
.ws14b{word-spacing:26.946000px;}
.ws8e{word-spacing:27.360000px;}
.ws12f{word-spacing:28.350000px;}
.ws17{word-spacing:28.566000px;}
.ws77{word-spacing:29.970000px;}
.ws161{word-spacing:31.428000px;}
.ws7d{word-spacing:176.291400px;}
.ws7e{word-spacing:205.675800px;}
.wsb5{word-spacing:209.561400px;}
.wsb0{word-spacing:215.561400px;}
.ws7c{word-spacing:218.110800px;}
.wsc1{word-spacing:218.561400px;}
.wsb9{word-spacing:227.561400px;}
.wsc5{word-spacing:228.089400px;}
.wsb7{word-spacing:264.923400px;}
.wsb3{word-spacing:270.923400px;}
.wsc3{word-spacing:273.923400px;}
.wsbb{word-spacing:282.923400px;}
.wsb6{word-spacing:306.059400px;}
.wsc7{word-spacing:309.923400px;}
.wsb1{word-spacing:312.059400px;}
.wsc4{word-spacing:313.911600px;}
.wsc2{word-spacing:315.059400px;}
.wsb4{word-spacing:323.555400px;}
.wsba{word-spacing:324.059400px;}
.wsb8{word-spacing:330.563400px;}
.wsbc{word-spacing:332.939400px;}
.wscd{word-spacing:351.835800px;}
.wsce{word-spacing:358.602600px;}
.wsd2{word-spacing:369.835800px;}
.wsd3{word-spacing:376.602600px;}
.wscf{word-spacing:388.578600px;}
.wsd4{word-spacing:406.578600px;}
.wsc8{word-spacing:476.658600px;}
.wsc9{word-spacing:478.818600px;}
.wsa6{word-spacing:500.634000px;}
.wsd1{word-spacing:535.510800px;}
.wscc{word-spacing:556.894200px;}
.wsa8{word-spacing:596.086200px;}
.wsaa{word-spacing:607.486200px;}
.wsca{word-spacing:666.988800px;}
.wsa7{word-spacing:725.705400px;}
.ws7b{word-spacing:726.869400px;}
.wscb{word-spacing:772.198800px;}
._2b{margin-left:-36.386470px;}
._79{margin-left:-29.791138px;}
._7c{margin-left:-26.515741px;}
._29{margin-left:-15.780015px;}
._2a{margin-left:-14.591341px;}
._32{margin-left:-11.664000px;}
._76{margin-left:-7.925341px;}
._77{margin-left:-6.702040px;}
._1{margin-left:-4.488015px;}
._2{margin-left:-3.071960px;}
._0{margin-left:-1.919985px;}
._4{width:1.499341px;}
._e{width:3.113985px;}
._78{width:4.994360px;}
._3{width:6.731905px;}
._f{width:8.033404px;}
._7{width:9.250160px;}
._5{width:10.320000px;}
._6{width:11.331585px;}
._18{width:12.611941px;}
._c{width:13.887000px;}
._9{width:15.198000px;}
._8{width:16.478415px;}
._17{width:17.523615px;}
._d{width:18.900615px;}
._7d{width:20.055644px;}
._3d{width:22.546112px;}
._7a{width:24.274130px;}
._7b{width:27.732000px;}
._7e{width:30.896985px;}
._27{width:50.100659px;}
._26{width:53.940000px;}
._28{width:57.180000px;}
._a{width:59.937516px;}
._75{width:61.866545px;}
._14{width:72.767960px;}
._68{width:119.243400px;}
._16{width:131.698171px;}
._b{width:133.679400px;}
._49{width:159.240044px;}
._3e{width:164.930444px;}
._58{width:168.240044px;}
._53{width:177.240044px;}
._63{width:179.922585px;}
._12{width:224.111945px;}
._47{width:228.096644px;}
._64{width:229.115385px;}
._11{width:241.679960px;}
._4a{width:246.052800px;}
._3f{width:252.052800px;}
._59{width:255.052800px;}
._54{width:264.052800px;}
._56{width:275.191244px;}
._60{width:277.170600px;}
._6a{width:279.175244px;}
._6c{width:294.055259px;}
._61{width:301.332000px;}
._65{width:303.666585px;}
._13{width:310.122618px;}
._6f{width:312.661785px;}
._72{width:319.045200px;}
._5d{width:320.539859px;}
._21{width:321.787185px;}
._5e{width:323.742585px;}
._4e{width:328.331400px;}
._40{width:329.802600px;}
._41{width:332.147400px;}
._43{width:334.331400px;}
._5c{width:337.331400px;}
._4c{width:339.971400px;}
._20{width:341.889600px;}
._15{width:345.407985px;}
._69{width:349.458585px;}
._4d{width:355.332000px;}
._42{width:361.332000px;}
._5b{width:364.947615px;}
._62{width:372.162600px;}
._55{width:373.568400px;}
._67{width:379.015244px;}
._6b{width:386.658585px;}
._66{width:393.954600px;}
._4b{width:396.306585px;}
._71{width:406.986600px;}
._5a{width:413.143185px;}
._44{width:420.522600px;}
._24{width:423.976185px;}
._74{width:424.986600px;}
._73{width:433.986600px;}
._70{width:442.986600px;}
._45{width:468.090560px;}
._50{width:471.655244px;}
._52{width:473.514600px;}
._4f{width:486.594600px;}
._23{width:508.312200px;}
._57{width:514.014600px;}
._3c{width:521.127000px;}
._2d{width:527.824200px;}
._46{width:538.698600px;}
._5f{width:542.778585px;}
._33{width:550.863000px;}
._48{width:554.514600px;}
._31{width:560.630985px;}
._51{width:580.722600px;}
._22{width:590.772600px;}
._36{width:612.779400px;}
._30{width:644.967000px;}
._35{width:666.087000px;}
._34{width:677.487000px;}
._3b{width:706.359000px;}
._3a{width:711.687000px;}
._2f{width:740.294985px;}
._2c{width:777.304200px;}
._25{width:794.212200px;}
._2e{width:801.495000px;}
._38{width:824.823000px;}
._37{width:829.215000px;}
._39{width:836.223000px;}
._6e{width:948.324000px;}
._1b{width:1054.672785px;}
._10{width:1061.332800px;}
._1f{width:1116.143400px;}
._19{width:1137.035400px;}
._1a{width:1139.008800px;}
._6d{width:1166.987985px;}
._1c{width:1392.976745px;}
._1e{width:1497.880745px;}
._1d{width:1662.927560px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.100000px;}
.fsf{font-size:39.000000px;}
.fsb{font-size:40.950000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:35.925007px;}
.y6{bottom:66.525004px;}
.y3a{bottom:67.597501px;}
.y14e{bottom:79.801200px;}
.y213{bottom:80.551200px;}
.ya6{bottom:82.275000px;}
.y39{bottom:84.097501px;}
.y1aa{bottom:85.013700px;}
.y147{bottom:85.426200px;}
.y165{bottom:89.363700px;}
.ydd{bottom:90.675000px;}
.y24b{bottom:94.051200px;}
.y212{bottom:97.051200px;}
.y5{bottom:97.125005px;}
.y14d{bottom:99.301200px;}
.ya5{bottom:101.775000px;}
.y188{bottom:103.613700px;}
.y1a9{bottom:104.513700px;}
.y146{bottom:104.926200px;}
.y6c{bottom:108.315600px;}
.y164{bottom:108.863700px;}
.ydc{bottom:110.175000px;}
.y24a{bottom:110.551200px;}
.yf3{bottom:111.525000px;}
.y211{bottom:113.551200px;}
.y124{bottom:117.525000px;}
.y14c{bottom:118.801200px;}
.y6b{bottom:120.315600px;}
.ya4{bottom:121.275000px;}
.y187{bottom:123.113700px;}
.y1a8{bottom:124.013700px;}
.y145{bottom:124.426200px;}
.y249{bottom:127.051200px;}
.y163{bottom:128.363700px;}
.ydb{bottom:129.675000px;}
.y210{bottom:130.051200px;}
.y123{bottom:131.025000px;}
.y6a{bottom:132.315600px;}
.y14b{bottom:138.301200px;}
.y24{bottom:139.264499px;}
.ya3{bottom:140.775000px;}
.y1a7{bottom:143.513700px;}
.y248{bottom:143.551200px;}
.y144{bottom:143.926200px;}
.y122{bottom:144.525000px;}
.y65{bottom:144.690600px;}
.y20f{bottom:146.551200px;}
.y162{bottom:147.863700px;}
.y1e3{bottom:149.926200px;}
.y186{bottom:153.113700px;}
.y68{bottom:155.565600px;}
.y121{bottom:158.025000px;}
.yda{bottom:159.675000px;}
.y247{bottom:160.051200px;}
.ya2{bottom:160.275000px;}
.y1a6{bottom:163.013700px;}
.y20e{bottom:163.051200px;}
.y1cf{bottom:163.426200px;}
.y1e2{bottom:166.426200px;}
.y161{bottom:167.363700px;}
.y14a{bottom:168.301200px;}
.y67{bottom:169.065600px;}
.y120{bottom:171.525000px;}
.y143{bottom:173.926200px;}
.y246{bottom:176.551200px;}
.y20d{bottom:179.551200px;}
.ya1{bottom:179.775000px;}
.y1a5{bottom:182.513700px;}
.y66{bottom:182.565600px;}
.y1ce{bottom:182.926200px;}
.y11f{bottom:185.025000px;}
.y160{bottom:186.863700px;}
.y245{bottom:193.051200px;}
.y20c{bottom:196.051200px;}
.y1b{bottom:196.933500px;}
.y11e{bottom:198.525000px;}
.ya0{bottom:199.275000px;}
.y1a4{bottom:202.013700px;}
.y1cd{bottom:202.426200px;}
.y19a{bottom:203.176200px;}
.y15f{bottom:206.363700px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y244{bottom:209.551200px;}
.yd9{bottom:210.675000px;}
.y11d{bottom:212.025000px;}
.y20b{bottom:212.551200px;}
.y199{bottom:216.676200px;}
.y9f{bottom:218.775000px;}
.y149{bottom:219.301200px;}
.y1a3{bottom:221.513700px;}
.y1cc{bottom:221.926200px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y64{bottom:223.426200px;}
.y142{bottom:224.926200px;}
.y15e{bottom:225.863700px;}
.y243{bottom:226.051200px;}
.y20a{bottom:229.051200px;}
.y11c{bottom:230.025000px;}
.y198{bottom:230.176200px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y9e{bottom:238.275000px;}
.y148{bottom:238.801200px;}
.y1a2{bottom:241.013700px;}
.y1cb{bottom:241.426200px;}
.y242{bottom:242.551200px;}
.yd8{bottom:242.925000px;}
.y63{bottom:242.926200px;}
.y197{bottom:243.676200px;}
.y141{bottom:244.426200px;}
.y15d{bottom:245.363700px;}
.y209{bottom:245.551200px;}
.y11b{bottom:248.775000px;}
.y196{bottom:257.176200px;}
.y9d{bottom:257.775000px;}
.y241{bottom:259.051200px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y1a1{bottom:260.513700px;}
.y1ca{bottom:260.926200px;}
.y208{bottom:262.051200px;}
.yd7{bottom:262.425000px;}
.y62{bottom:262.426200px;}
.y140{bottom:263.926200px;}
.y15c{bottom:264.863700px;}
.y11a{bottom:267.525000px;}
.y195{bottom:270.676200px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y240{bottom:275.551200px;}
.y15a{bottom:277.051200px;}
.y9c{bottom:277.275000px;}
.y1e1{bottom:277.426200px;}
.y207{bottom:278.551200px;}
.y38{bottom:280.276501px;}
.y1c9{bottom:280.426200px;}
.yd6{bottom:281.925000px;}
.y61{bottom:281.926200px;}
.y13f{bottom:283.426200px;}
.y194{bottom:284.176200px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y1a0{bottom:290.513700px;}
.y23f{bottom:292.051200px;}
.y1e0{bottom:293.926200px;}
.y206{bottom:295.051200px;}
.y9b{bottom:296.775000px;}
.y193{bottom:297.676200px;}
.y1c8{bottom:299.926200px;}
.yd5{bottom:301.425000px;}
.y60{bottom:301.426200px;}
.y15b{bottom:302.363700px;}
.y13e{bottom:302.926200px;}
.y23e{bottom:308.551200px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y1df{bottom:310.426200px;}
.y192{bottom:311.176200px;}
.y205{bottom:311.551200px;}
.y9a{bottom:316.275000px;}
.y1c7{bottom:319.426200px;}
.y119{bottom:319.462500px;}
.yd4{bottom:320.925000px;}
.y5f{bottom:320.926200px;}
.y13d{bottom:322.426200px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y191{bottom:324.676200px;}
.y23d{bottom:325.051200px;}
.y204{bottom:328.051200px;}
.y118{bottom:332.962500px;}
.y99{bottom:335.775000px;}
.y190{bottom:338.176200px;}
.y1c6{bottom:338.926200px;}
.yd3{bottom:340.425000px;}
.y5e{bottom:340.426200px;}
.y19f{bottom:341.513700px;}
.y23c{bottom:341.551200px;}
.y13c{bottom:341.926200px;}
.y203{bottom:344.551200px;}
.y37{bottom:344.626501px;}
.y185{bottom:345.863700px;}
.y117{bottom:346.462500px;}
.y12{bottom:348.133500px;}
.y18f{bottom:351.676200px;}
.y98{bottom:355.275000px;}
.y23b{bottom:358.051200px;}
.y1c5{bottom:358.426200px;}
.y184{bottom:359.363700px;}
.y5d{bottom:359.926200px;}
.y116{bottom:359.962500px;}
.y19e{bottom:361.013700px;}
.y202{bottom:361.051200px;}
.y13b{bottom:361.426200px;}
.y18e{bottom:365.176200px;}
.yd2{bottom:370.425000px;}
.y183{bottom:372.863700px;}
.y115{bottom:373.462500px;}
.y23a{bottom:374.551200px;}
.y97{bottom:374.775000px;}
.y201{bottom:377.551200px;}
.y1c4{bottom:377.926200px;}
.y5c{bottom:379.426200px;}
.y19d{bottom:380.513700px;}
.y13a{bottom:380.926200px;}
.y18d{bottom:383.176200px;}
.y182{bottom:386.363700px;}
.y11{bottom:386.785499px;}
.y114{bottom:386.962500px;}
.y239{bottom:391.051200px;}
.y200{bottom:394.051200px;}
.y96{bottom:394.275000px;}
.y1c3{bottom:397.426200px;}
.y5b{bottom:398.926200px;}
.y181{bottom:399.863700px;}
.y19c{bottom:400.013700px;}
.y139{bottom:400.426200px;}
.y113{bottom:400.462500px;}
.y18c{bottom:401.926200px;}
.y1de{bottom:403.426200px;}
.y238{bottom:407.551200px;}
.y10{bottom:408.044999px;}
.y1ff{bottom:410.551200px;}
.y36{bottom:411.907500px;}
.y180{bottom:413.363700px;}
.y95{bottom:413.775000px;}
.y1c2{bottom:416.926200px;}
.y5a{bottom:418.426200px;}
.y112{bottom:418.462500px;}
.y19b{bottom:419.513700px;}
.y1dd{bottom:419.926200px;}
.y237{bottom:424.051200px;}
.yd1{bottom:425.362800px;}
.y17f{bottom:426.863700px;}
.y1fe{bottom:427.051200px;}
.y138{bottom:430.426200px;}
.y94{bottom:433.275000px;}
.y1c1{bottom:436.426200px;}
.y111{bottom:437.212500px;}
.y59{bottom:437.926200px;}
.y17e{bottom:440.363700px;}
.y236{bottom:440.551200px;}
.y1fd{bottom:443.551200px;}
.y93{bottom:452.775000px;}
.y17d{bottom:453.863700px;}
.y1c0{bottom:455.926200px;}
.y235{bottom:457.051200px;}
.y58{bottom:457.426200px;}
.yd0{bottom:457.612800px;}
.y1fc{bottom:460.051200px;}
.y1dc{bottom:463.426200px;}
.y1b1{bottom:463.883700px;}
.y17c{bottom:467.363700px;}
.y92{bottom:472.275000px;}
.y35{bottom:473.326501px;}
.y234{bottom:473.551200px;}
.y1bf{bottom:475.426200px;}
.y1fb{bottom:476.551200px;}
.y57{bottom:476.926200px;}
.ycf{bottom:477.112800px;}
.y137{bottom:481.426200px;}
.yf{bottom:484.864502px;}
.yf2{bottom:485.176200px;}
.y17b{bottom:485.363700px;}
.y233{bottom:490.051200px;}
.y91{bottom:491.775000px;}
.y1fa{bottom:493.051200px;}
.y1be{bottom:494.926200px;}
.yce{bottom:496.612800px;}
.y110{bottom:500.363700px;}
.y136{bottom:500.926200px;}
.ye{bottom:502.864502px;}
.y17a{bottom:504.113700px;}
.yf1{bottom:504.676200px;}
.y1db{bottom:505.426200px;}
.y232{bottom:506.551200px;}
.y56{bottom:506.926200px;}
.y1f9{bottom:509.551200px;}
.y90{bottom:511.275000px;}
.ycd{bottom:516.112800px;}
.y10f{bottom:519.863700px;}
.y135{bottom:520.426200px;}
.yd{bottom:520.864502px;}
.y1da{bottom:521.926200px;}
.y231{bottom:523.051200px;}
.yf0{bottom:524.176200px;}
.y1bd{bottom:524.926200px;}
.y1f8{bottom:526.051200px;}
.y8f{bottom:530.775000px;}
.ycc{bottom:535.612800px;}
.yc{bottom:538.864499px;}
.y10e{bottom:539.363700px;}
.y230{bottom:539.551200px;}
.y134{bottom:539.926200px;}
.y34{bottom:540.607500px;}
.y1f7{bottom:542.551200px;}
.y1d9{bottom:548.926200px;}
.y8e{bottom:550.275000px;}
.yef{bottom:554.176200px;}
.y179{bottom:556.051200px;}
.yb{bottom:556.864499px;}
.y10d{bottom:558.863700px;}
.y1f6{bottom:559.051200px;}
.ycb{bottom:565.612800px;}
.y178{bottom:569.551200px;}
.y8d{bottom:569.775000px;}
.y133{bottom:569.926200px;}
.y22f{bottom:572.551200px;}
.y1bc{bottom:572.926200px;}
.y33{bottom:574.957501px;}
.y1f5{bottom:575.551200px;}
.y10c{bottom:578.363700px;}
.y177{bottom:583.051200px;}
.yee{bottom:584.176200px;}
.y7e{bottom:585.863700px;}
.y22e{bottom:589.051200px;}
.y8c{bottom:589.275000px;}
.y32{bottom:589.957501px;}
.y1f4{bottom:592.051200px;}
.y1bb{bottom:592.426200px;}
.y55{bottom:593.926200px;}
.y176{bottom:596.551200px;}
.y10b{bottom:597.863700px;}
.y7d{bottom:599.363700px;}
.y132{bottom:599.926200px;}
.y31{bottom:604.957500px;}
.y22d{bottom:605.551200px;}
.y1f3{bottom:608.551200px;}
.y8b{bottom:608.775000px;}
.y54{bottom:608.926200px;}
.y175{bottom:610.051200px;}
.y1ba{bottom:611.926200px;}
.y7c{bottom:612.863700px;}
.y10a{bottom:617.363700px;}
.yca{bottom:620.550600px;}
.y22c{bottom:622.051200px;}
.y174{bottom:623.551200px;}
.y53{bottom:623.926200px;}
.y1f2{bottom:625.051200px;}
.y7b{bottom:626.363700px;}
.y1d8{bottom:626.926200px;}
.y8a{bottom:628.275000px;}
.y1b9{bottom:631.426200px;}
.yed{bottom:635.176200px;}
.y109{bottom:636.863700px;}
.y173{bottom:637.051200px;}
.y22b{bottom:638.551200px;}
.y52{bottom:638.926200px;}
.y7a{bottom:639.863700px;}
.y1f1{bottom:641.551200px;}
.y1b0{bottom:642.863700px;}
.ya{bottom:645.510000px;}
.y89{bottom:647.775000px;}
.y172{bottom:650.551200px;}
.y131{bottom:650.926200px;}
.yc9{bottom:652.800600px;}
.y51{bottom:653.926200px;}
.yec{bottom:654.676200px;}
.y22a{bottom:655.051200px;}
.y108{bottom:656.363700px;}
.y1f0{bottom:658.051200px;}
.y79{bottom:662.626200px;}
.y171{bottom:664.051200px;}
.y9{bottom:666.771000px;}
.y88{bottom:667.275000px;}
.y50{bottom:668.926200px;}
.y1af{bottom:669.863700px;}
.y130{bottom:670.426200px;}
.y229{bottom:671.551200px;}
.yc8{bottom:672.300600px;}
.y107{bottom:675.863700px;}
.y78{bottom:676.126200px;}
.y170{bottom:677.551200px;}
.y1d7{bottom:677.926200px;}
.y1ae{bottom:683.363700px;}
.y4f{bottom:683.926200px;}
.y1ef{bottom:685.051200px;}
.y30{bottom:686.317498px;}
.y87{bottom:686.775000px;}
.yeb{bottom:686.926200px;}
.y228{bottom:688.051200px;}
.y77{bottom:689.626200px;}
.y12f{bottom:689.926200px;}
.y16f{bottom:691.051200px;}
.yc7{bottom:691.800600px;}
.y1d6{bottom:694.426200px;}
.y106{bottom:695.363700px;}
.y4e{bottom:698.926200px;}
.y1ad{bottom:702.113700px;}
.y76{bottom:703.126200px;}
.yea{bottom:703.426200px;}
.y16e{bottom:704.551200px;}
.y86{bottom:706.275000px;}
.y12e{bottom:709.426200px;}
.y1d5{bottom:710.926200px;}
.yc6{bottom:711.300600px;}
.y4d{bottom:713.926200px;}
.y105{bottom:714.863700px;}
.y2f{bottom:716.317498px;}
.y75{bottom:716.626200px;}
.y16d{bottom:718.051200px;}
.y1ac{bottom:720.863700px;}
.y227{bottom:721.051200px;}
.y85{bottom:725.775000px;}
.y8{bottom:726.298500px;}
.y1d4{bottom:727.426200px;}
.y1ee{bottom:728.551200px;}
.y4c{bottom:728.926200px;}
.y74{bottom:730.126200px;}
.y16c{bottom:731.551200px;}
.ye9{bottom:732.676200px;}
.y2e{bottom:734.317498px;}
.y104{bottom:734.363700px;}
.y226{bottom:737.551200px;}
.y159{bottom:739.238700px;}
.yc5{bottom:741.300600px;}
.y73{bottom:743.626200px;}
.y4b{bottom:743.926200px;}
.y16b{bottom:745.051200px;}
.y84{bottom:745.275000px;}
.y12d{bottom:748.426200px;}
.ye8{bottom:752.176200px;}
.y2d{bottom:752.317498px;}
.y4{bottom:752.599495px;}
.y158{bottom:752.738700px;}
.y103{bottom:753.863700px;}
.y225{bottom:754.051200px;}
.y16a{bottom:758.551200px;}
.y4a{bottom:758.926200px;}
.y1d3{bottom:760.426200px;}
.y1ed{bottom:761.551200px;}
.y83{bottom:764.775000px;}
.y157{bottom:766.238700px;}
.y72{bottom:766.388700px;}
.y12c{bottom:767.926200px;}
.y2c{bottom:770.317498px;}
.y224{bottom:770.551200px;}
.ye7{bottom:771.676200px;}
.y169{bottom:772.051200px;}
.y49{bottom:773.926200px;}
.y18a{bottom:776.551200px;}
.y1d2{bottom:776.926200px;}
.y1ec{bottom:778.051200px;}
.y156{bottom:779.738700px;}
.y71{bottom:779.888700px;}
.y1ab{bottom:780.196200px;}
.y102{bottom:783.863700px;}
.y82{bottom:784.275000px;}
.y168{bottom:785.551200px;}
.y223{bottom:787.051200px;}
.y12b{bottom:787.426200px;}
.y48{bottom:788.926200px;}
.y18b{bottom:790.051200px;}
.ye6{bottom:791.176200px;}
.y155{bottom:793.238700px;}
.y70{bottom:793.388700px;}
.y1eb{bottom:794.551200px;}
.yc4{bottom:796.238400px;}
.y167{bottom:803.551200px;}
.y81{bottom:803.775000px;}
.y47{bottom:803.926200px;}
.y154{bottom:806.738700px;}
.y6f{bottom:806.888700px;}
.y12a{bottom:806.926200px;}
.y189{bottom:808.801200px;}
.ye5{bottom:810.676200px;}
.y46{bottom:818.926200px;}
.y222{bottom:820.051200px;}
.y153{bottom:820.238700px;}
.y6e{bottom:820.388700px;}
.y1ea{bottom:821.551200px;}
.y166{bottom:822.301200px;}
.y2b{bottom:822.789002px;}
.y80{bottom:823.275000px;}
.y1b8{bottom:826.426200px;}
.yc3{bottom:828.488400px;}
.ye4{bottom:830.176200px;}
.y152{bottom:833.738700px;}
.y6d{bottom:833.888700px;}
.y45{bottom:833.926200px;}
.y101{bottom:834.863700px;}
.y221{bottom:836.551200px;}
.y129{bottom:836.926200px;}
.y2a{bottom:843.789002px;}
.y1b7{bottom:845.926200px;}
.y151{bottom:847.238700px;}
.y1d1{bottom:847.426200px;}
.yc2{bottom:847.988400px;}
.ye3{bottom:849.676200px;}
.y220{bottom:853.051200px;}
.y100{bottom:854.363700px;}
.y150{bottom:860.738700px;}
.y1b6{bottom:865.426200px;}
.yc1{bottom:867.488400px;}
.y21f{bottom:869.551200px;}
.yff{bottom:873.863700px;}
.yb6{bottom:874.238700px;}
.y1d0{bottom:874.426200px;}
.y3{bottom:879.369000px;}
.ye2{bottom:879.676200px;}
.y44{bottom:880.801200px;}
.y1b5{bottom:884.926200px;}
.y21e{bottom:886.051200px;}
.yc0{bottom:886.988400px;}
.yb5{bottom:887.738700px;}
.y128{bottom:887.926200px;}
.yfe{bottom:893.363700px;}
.y43{bottom:900.256200px;}
.yb4{bottom:901.238700px;}
.y21d{bottom:902.551200px;}
.y1b4{bottom:904.426200px;}
.ybf{bottom:906.488400px;}
.y29{bottom:907.440000px;}
.yfd{bottom:912.863700px;}
.y14f{bottom:914.738700px;}
.y21c{bottom:919.051200px;}
.y42{bottom:922.801200px;}
.y1b3{bottom:923.926200px;}
.y127{bottom:925.426200px;}
.yb3{bottom:928.238700px;}
.ye1{bottom:930.676200px;}
.yfc{bottom:932.363700px;}
.y21b{bottom:935.551200px;}
.ybe{bottom:936.488400px;}
.y1e9{bottom:937.051200px;}
.y28{bottom:938.940000px;}
.y41{bottom:940.801200px;}
.yb2{bottom:941.738700px;}
.y1b2{bottom:943.426200px;}
.y126{bottom:944.926200px;}
.y2{bottom:945.126001px;}
.yfb{bottom:951.863700px;}
.y21a{bottom:952.051200px;}
.y1e8{bottom:953.551200px;}
.yb1{bottom:955.238700px;}
.ye0{bottom:962.926200px;}
.y125{bottom:964.426200px;}
.ybd{bottom:966.488400px;}
.y1{bottom:966.726000px;}
.y219{bottom:968.551200px;}
.yb0{bottom:968.738700px;}
.y1e7{bottom:970.051200px;}
.y27{bottom:970.440000px;}
.yfa{bottom:971.363700px;}
.y40{bottom:979.801200px;}
.yaf{bottom:982.238700px;}
.ydf{bottom:982.426200px;}
.y218{bottom:985.051200px;}
.yf9{bottom:990.863700px;}
.yae{bottom:995.738700px;}
.y217{bottom:1001.551200px;}
.yde{bottom:1001.926200px;}
.y3f{bottom:1003.801200px;}
.yad{bottom:1009.238700px;}
.yf8{bottom:1010.363700px;}
.y216{bottom:1018.051200px;}
.ybc{bottom:1021.426200px;}
.yac{bottom:1022.738700px;}
.y3c{bottom:1029.511200px;}
.yf7{bottom:1029.863700px;}
.y215{bottom:1034.551200px;}
.y26{bottom:1035.546001px;}
.yab{bottom:1036.238700px;}
.ybb{bottom:1040.926200px;}
.y3b{bottom:1047.511200px;}
.yf6{bottom:1049.363700px;}
.yaa{bottom:1049.738700px;}
.y214{bottom:1051.051200px;}
.yba{bottom:1060.426200px;}
.ya9{bottom:1063.238700px;}
.y1e6{bottom:1067.551200px;}
.yf5{bottom:1068.863700px;}
.yb9{bottom:1079.926200px;}
.ya8{bottom:1081.238700px;}
.y69{bottom:1083.782250px;}
.y1e5{bottom:1084.051200px;}
.y3e{bottom:1097.407950px;}
.yf4{bottom:1098.863700px;}
.yb8{bottom:1099.426200px;}
.ya7{bottom:1099.988700px;}
.y1e4{bottom:1100.551200px;}
.y3d{bottom:1110.907950px;}
.yb7{bottom:1141.238100px;}
.y7f{bottom:1141.313100px;}
.y25{bottom:1165.122003px;}
.h16{height:25.096500px;}
.h1b{height:30.030000px;}
.h18{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1e{height:33.750000px;}
.h1c{height:34.320000px;}
.h22{height:34.608000px;}
.h1d{height:36.000000px;}
.hb{height:36.726562px;}
.h17{height:38.610000px;}
.h19{height:40.500000px;}
.h1f{height:40.755000px;}
.hf{height:41.317383px;}
.h23{height:44.145000px;}
.h12{height:45.000000px;}
.h21{height:45.360000px;}
.h20{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h1a{height:47.586000px;}
.h3{height:48.195000px;}
.h15{height:51.502500px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x16{left:123.000000px;}
.xb{left:126.112500px;}
.x1b{left:135.000000px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x2b{left:207.000000px;}
.x9{left:228.743990px;}
.x26{left:237.818850px;}
.x27{left:252.818850px;}
.x17{left:268.210500px;}
.x11{left:276.027150px;}
.x1e{left:280.864650px;}
.xd{left:283.500000px;}
.x1f{left:288.481800px;}
.x8{left:293.590494px;}
.x1c{left:295.018650px;}
.x18{left:297.478350px;}
.x1d{left:305.020650px;}
.x19{left:312.478350px;}
.xf{left:318.137850px;}
.x29{left:324.856350px;}
.x15{left:342.750000px;}
.x12{left:357.750000px;}
.x28{left:411.679500px;}
.x3{left:454.959000px;}
.x20{left:476.526150px;}
.x21{left:515.542350px;}
.x1a{left:518.396100px;}
.x13{left:529.504050px;}
.x2a{left:565.175550px;}
.xe{left:570.946500px;}
.x22{left:589.640700px;}
.x23{left:593.906550px;}
.x14{left:615.375000px;}
.x10{left:647.566050px;}
.xc{left:650.025750px;}
.x24{left:695.087550px;}
.x25{left:725.350050px;}
@media print{
.v2{vertical-align:-18.480000pt;}
.v3{vertical-align:-15.840000pt;}
.v5{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.ls16{letter-spacing:-2.218667pt;}
.ls1b{letter-spacing:-1.546667pt;}
.ls1c{letter-spacing:-1.333333pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-1.200000pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.597333pt;}
.ls11{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.469333pt;}
.ls1a{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.312000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.011733pt;}
.ls7{letter-spacing:0.363467pt;}
.ls8{letter-spacing:0.363600pt;}
.ls5{letter-spacing:0.364000pt;}
.lsa{letter-spacing:0.400000pt;}
.ls19{letter-spacing:0.532800pt;}
.lse{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.560000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls1{letter-spacing:1.066667pt;}
.ls1e{letter-spacing:8.139733pt;}
.lsc{letter-spacing:60.023467pt;}
.ls9{letter-spacing:63.949333pt;}
.ls6{letter-spacing:63.949867pt;}
.ls13{letter-spacing:653.434133pt;}
.lsf{letter-spacing:673.556800pt;}
.ws1{word-spacing:-12.432000pt;}
.ws5{word-spacing:-11.946667pt;}
.ws4{word-spacing:-11.850667pt;}
.ws38{word-spacing:-11.840000pt;}
.wsee{word-spacing:-11.312000pt;}
.ws6{word-spacing:-11.306667pt;}
.ws8f{word-spacing:-10.304000pt;}
.ws6f{word-spacing:-10.176000pt;}
.ws7a{word-spacing:-9.706667pt;}
.ws141{word-spacing:-9.696000pt;}
.wsb{word-spacing:-9.045333pt;}
.wsef{word-spacing:-8.976000pt;}
.ws102{word-spacing:-8.736000pt;}
.wsa{word-spacing:-8.720000pt;}
.ws7{word-spacing:-8.362667pt;}
.ws3{word-spacing:-8.320000pt;}
.ws142{word-spacing:-8.256000pt;}
.wsa9{word-spacing:-7.893333pt;}
.ws8{word-spacing:-7.840000pt;}
.wsc6{word-spacing:-7.765333pt;}
.wsaf{word-spacing:-7.349333pt;}
.ws9{word-spacing:-7.317333pt;}
.wsf0{word-spacing:-6.614400pt;}
.ws101{word-spacing:-6.302400pt;}
.wsb2{word-spacing:-6.144000pt;}
.ws2{word-spacing:-6.115200pt;}
.wsbd{word-spacing:-4.640000pt;}
.wsae{word-spacing:-3.029333pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws59{word-spacing:-0.400000pt;}
.ws0{word-spacing:0.000000pt;}
.ws111{word-spacing:0.048000pt;}
.ws157{word-spacing:0.480000pt;}
.ws93{word-spacing:0.533333pt;}
.wsbe{word-spacing:0.640000pt;}
.ws92{word-spacing:1.280000pt;}
.ws167{word-spacing:2.448000pt;}
.ws133{word-spacing:2.544000pt;}
.ws168{word-spacing:2.832000pt;}
.ws132{word-spacing:2.976000pt;}
.wse8{word-spacing:3.253333pt;}
.ws6a{word-spacing:3.413333pt;}
.ws11c{word-spacing:3.504000pt;}
.ws160{word-spacing:3.648000pt;}
.wsd9{word-spacing:3.733333pt;}
.ws11b{word-spacing:4.080000pt;}
.ws103{word-spacing:4.320000pt;}
.ws162{word-spacing:4.416000pt;}
.ws4c{word-spacing:4.426667pt;}
.ws5d{word-spacing:4.533333pt;}
.wsfe{word-spacing:4.560000pt;}
.ws138{word-spacing:4.656000pt;}
.wsf9{word-spacing:4.896000pt;}
.ws104{word-spacing:4.992000pt;}
.wsc0{word-spacing:5.034667pt;}
.ws2f{word-spacing:5.066667pt;}
.ws14a{word-spacing:5.088000pt;}
.ws58{word-spacing:5.162667pt;}
.ws10d{word-spacing:5.232000pt;}
.wsda{word-spacing:5.280000pt;}
.ws15b{word-spacing:5.328000pt;}
.ws136{word-spacing:5.376000pt;}
.ws137{word-spacing:5.424000pt;}
.wsed{word-spacing:5.440000pt;}
.ws69{word-spacing:5.600000pt;}
.wsf3{word-spacing:5.653333pt;}
.ws115{word-spacing:5.760000pt;}
.ws8d{word-spacing:5.813333pt;}
.ws32{word-spacing:5.861333pt;}
.wsa4{word-spacing:5.866667pt;}
.wsd{word-spacing:5.880000pt;}
.ws14d{word-spacing:5.904000pt;}
.ws36{word-spacing:5.920000pt;}
.ws108{word-spacing:5.952000pt;}
.ws68{word-spacing:6.080000pt;}
.ws10c{word-spacing:6.096000pt;}
.ws39{word-spacing:6.133333pt;}
.ws10e{word-spacing:6.144000pt;}
.wsa2{word-spacing:6.186667pt;}
.ws15a{word-spacing:6.192000pt;}
.ws42{word-spacing:6.240000pt;}
.wse{word-spacing:6.280000pt;}
.ws9c{word-spacing:6.293333pt;}
.ws4d{word-spacing:6.346667pt;}
.ws79{word-spacing:6.400000pt;}
.wsa5{word-spacing:6.453333pt;}
.ws1f{word-spacing:6.480000pt;}
.ws27{word-spacing:6.506667pt;}
.ws14e{word-spacing:6.528000pt;}
.wsfb{word-spacing:6.576000pt;}
.ws4f{word-spacing:6.613333pt;}
.ws105{word-spacing:6.624000pt;}
.ws98{word-spacing:6.666667pt;}
.ws33{word-spacing:6.698667pt;}
.wsa3{word-spacing:6.720000pt;}
.wsf4{word-spacing:6.768000pt;}
.ws11d{word-spacing:6.864000pt;}
.ws74{word-spacing:6.880000pt;}
.ws11a{word-spacing:6.912000pt;}
.ws11{word-spacing:6.944000pt;}
.ws109{word-spacing:6.960000pt;}
.wsa1{word-spacing:6.986667pt;}
.ws10a{word-spacing:7.008000pt;}
.ws26{word-spacing:7.040000pt;}
.ws123{word-spacing:7.056000pt;}
.ws84{word-spacing:7.093333pt;}
.ws140{word-spacing:7.104000pt;}
.ws3e{word-spacing:7.146667pt;}
.wsf2{word-spacing:7.200000pt;}
.wsf8{word-spacing:7.248000pt;}
.ws37{word-spacing:7.253333pt;}
.ws165{word-spacing:7.344000pt;}
.ws52{word-spacing:7.360000pt;}
.ws15e{word-spacing:7.392000pt;}
.ws48{word-spacing:7.466667pt;}
.ws9e{word-spacing:7.520000pt;}
.ws12{word-spacing:7.536000pt;}
.ws35{word-spacing:7.541333pt;}
.wsf1{word-spacing:7.626667pt;}
.ws13a{word-spacing:7.632000pt;}
.ws24{word-spacing:7.680000pt;}
.ws152{word-spacing:7.728000pt;}
.ws40{word-spacing:7.733333pt;}
.ws4a{word-spacing:7.786667pt;}
.ws56{word-spacing:7.802667pt;}
.ws120{word-spacing:7.872000pt;}
.ws57{word-spacing:7.954667pt;}
.ws15{word-spacing:7.968000pt;}
.wsd5{word-spacing:8.000000pt;}
.ws129{word-spacing:8.016000pt;}
.ws54{word-spacing:8.053333pt;}
.ws82{word-spacing:8.106667pt;}
.ws22{word-spacing:8.160000pt;}
.ws9b{word-spacing:8.176000pt;}
.ws106{word-spacing:8.208000pt;}
.wsec{word-spacing:8.213333pt;}
.ws5c{word-spacing:8.232000pt;}
.ws122{word-spacing:8.256000pt;}
.ws83{word-spacing:8.266667pt;}
.wse4{word-spacing:8.320000pt;}
.wsff{word-spacing:8.352000pt;}
.ws95{word-spacing:8.373333pt;}
.wsf7{word-spacing:8.448000pt;}
.wse5{word-spacing:8.480000pt;}
.wsc{word-spacing:8.533333pt;}
.ws18{word-spacing:8.544000pt;}
.ws46{word-spacing:8.586667pt;}
.ws135{word-spacing:8.592000pt;}
.ws112{word-spacing:8.640000pt;}
.ws13d{word-spacing:8.688000pt;}
.ws78{word-spacing:8.693333pt;}
.ws153{word-spacing:8.736000pt;}
.ws21{word-spacing:8.784000pt;}
.ws99{word-spacing:8.800000pt;}
.ws64{word-spacing:8.853333pt;}
.ws3f{word-spacing:8.906667pt;}
.wse7{word-spacing:8.960000pt;}
.ws29{word-spacing:9.013333pt;}
.ws10f{word-spacing:9.024000pt;}
.ws2c{word-spacing:9.066667pt;}
.ws150{word-spacing:9.072000pt;}
.ws1e{word-spacing:9.120000pt;}
.wsf6{word-spacing:9.168000pt;}
.ws60{word-spacing:9.173333pt;}
.wsd8{word-spacing:9.226667pt;}
.ws20{word-spacing:9.264000pt;}
.ws5e{word-spacing:9.333333pt;}
.ws15f{word-spacing:9.360000pt;}
.ws14f{word-spacing:9.408000pt;}
.ws3a{word-spacing:9.440000pt;}
.ws25{word-spacing:9.493333pt;}
.ws1d{word-spacing:9.504000pt;}
.ws10{word-spacing:9.520000pt;}
.ws28{word-spacing:9.546667pt;}
.ws19{word-spacing:9.600000pt;}
.ws100{word-spacing:9.696000pt;}
.ws63{word-spacing:9.706667pt;}
.ws71{word-spacing:9.760000pt;}
.ws7f{word-spacing:9.866667pt;}
.wsdc{word-spacing:9.920000pt;}
.ws81{word-spacing:9.973333pt;}
.ws34{word-spacing:10.042667pt;}
.ws8b{word-spacing:10.080000pt;}
.ws124{word-spacing:10.128000pt;}
.ws45{word-spacing:10.133333pt;}
.ws80{word-spacing:10.186667pt;}
.ws143{word-spacing:10.320000pt;}
.wse3{word-spacing:10.346667pt;}
.ws10b{word-spacing:10.512000pt;}
.ws145{word-spacing:10.560000pt;}
.ws146{word-spacing:10.608000pt;}
.wsbf{word-spacing:10.613333pt;}
.ws116{word-spacing:10.656000pt;}
.ws117{word-spacing:10.800000pt;}
.ws8a{word-spacing:10.826667pt;}
.ws4e{word-spacing:10.880000pt;}
.wsd0{word-spacing:10.933333pt;}
.ws166{word-spacing:10.944000pt;}
.ws85{word-spacing:10.986667pt;}
.ws134{word-spacing:10.992000pt;}
.ws119{word-spacing:11.088000pt;}
.ws75{word-spacing:11.093333pt;}
.ws127{word-spacing:11.136000pt;}
.wse0{word-spacing:11.146667pt;}
.ws156{word-spacing:11.184000pt;}
.ws5a{word-spacing:11.200000pt;}
.ws50{word-spacing:11.253333pt;}
.wsea{word-spacing:11.306667pt;}
.ws15c{word-spacing:11.328000pt;}
.ws2e{word-spacing:11.360000pt;}
.ws1c{word-spacing:11.424000pt;}
.ws86{word-spacing:11.520000pt;}
.wsde{word-spacing:11.573333pt;}
.ws47{word-spacing:11.626667pt;}
.ws13b{word-spacing:11.712000pt;}
.ws65{word-spacing:11.733333pt;}
.ws70{word-spacing:11.786667pt;}
.ws114{word-spacing:11.808000pt;}
.ws72{word-spacing:11.840000pt;}
.ws16{word-spacing:11.856000pt;}
.ws51{word-spacing:11.946667pt;}
.ws2a{word-spacing:12.000000pt;}
.ws76{word-spacing:12.053333pt;}
.ws44{word-spacing:12.106667pt;}
.ws151{word-spacing:12.144000pt;}
.ws11f{word-spacing:12.240000pt;}
.ws88{word-spacing:12.266667pt;}
.ws144{word-spacing:12.288000pt;}
.wsab{word-spacing:12.320000pt;}
.ws158{word-spacing:12.336000pt;}
.wsf{word-spacing:12.394667pt;}
.ws9f{word-spacing:12.426667pt;}
.ws13{word-spacing:12.432000pt;}
.ws89{word-spacing:12.480000pt;}
.ws128{word-spacing:12.576000pt;}
.ws6e{word-spacing:12.586667pt;}
.ws131{word-spacing:12.624000pt;}
.ws67{word-spacing:12.640000pt;}
.ws125{word-spacing:12.672000pt;}
.ws53{word-spacing:12.693333pt;}
.wsdf{word-spacing:12.800000pt;}
.ws12e{word-spacing:12.816000pt;}
.ws118{word-spacing:12.912000pt;}
.wsa0{word-spacing:12.960000pt;}
.ws147{word-spacing:13.008000pt;}
.wsdb{word-spacing:13.013333pt;}
.ws155{word-spacing:13.056000pt;}
.wseb{word-spacing:13.120000pt;}
.ws159{word-spacing:13.200000pt;}
.wsd7{word-spacing:13.226667pt;}
.ws3d{word-spacing:13.440000pt;}
.ws1a{word-spacing:13.488000pt;}
.ws154{word-spacing:13.632000pt;}
.ws6b{word-spacing:13.706667pt;}
.ws12b{word-spacing:13.728000pt;}
.ws62{word-spacing:13.760000pt;}
.ws113{word-spacing:13.776000pt;}
.ws30{word-spacing:13.813333pt;}
.ws12a{word-spacing:13.824000pt;}
.ws43{word-spacing:13.866667pt;}
.ws1b{word-spacing:13.968000pt;}
.ws61{word-spacing:14.026667pt;}
.ws91{word-spacing:14.133333pt;}
.ws49{word-spacing:14.186667pt;}
.ws11e{word-spacing:14.256000pt;}
.ws90{word-spacing:14.293333pt;}
.ws164{word-spacing:14.448000pt;}
.ws139{word-spacing:14.640000pt;}
.wsdd{word-spacing:14.720000pt;}
.ws130{word-spacing:14.736000pt;}
.ws87{word-spacing:14.880000pt;}
.wsfa{word-spacing:14.928000pt;}
.ws6d{word-spacing:14.933333pt;}
.ws126{word-spacing:15.024000pt;}
.ws55{word-spacing:15.146667pt;}
.ws5f{word-spacing:15.200000pt;}
.ws149{word-spacing:15.216000pt;}
.wse9{word-spacing:15.306667pt;}
.ws66{word-spacing:15.626667pt;}
.wsac{word-spacing:15.786667pt;}
.ws96{word-spacing:15.840000pt;}
.ws94{word-spacing:15.893333pt;}
.ws97{word-spacing:15.946667pt;}
.ws13c{word-spacing:16.032000pt;}
.wsd6{word-spacing:16.106667pt;}
.ws6c{word-spacing:16.213333pt;}
.ws121{word-spacing:16.512000pt;}
.ws3c{word-spacing:16.746667pt;}
.wsf5{word-spacing:16.752000pt;}
.ws163{word-spacing:16.848000pt;}
.ws9d{word-spacing:16.853333pt;}
.wsfc{word-spacing:16.896000pt;}
.ws3b{word-spacing:16.906667pt;}
.ws110{word-spacing:16.944000pt;}
.ws4b{word-spacing:16.960000pt;}
.wse2{word-spacing:17.226667pt;}
.ws23{word-spacing:17.280000pt;}
.ws9a{word-spacing:17.440000pt;}
.ws5b{word-spacing:17.653333pt;}
.ws15d{word-spacing:17.664000pt;}
.ws148{word-spacing:17.760000pt;}
.ws107{word-spacing:17.856000pt;}
.ws31{word-spacing:17.866667pt;}
.ws12d{word-spacing:18.096000pt;}
.wse6{word-spacing:18.293333pt;}
.ws8c{word-spacing:18.346667pt;}
.wse1{word-spacing:18.826667pt;}
.ws2b{word-spacing:18.986667pt;}
.ws13f{word-spacing:19.104000pt;}
.wsfd{word-spacing:19.584000pt;}
.ws73{word-spacing:20.533333pt;}
.ws14c{word-spacing:20.592000pt;}
.ws12c{word-spacing:21.072000pt;}
.ws14{word-spacing:21.600000pt;}
.wsad{word-spacing:21.760000pt;}
.ws41{word-spacing:22.186667pt;}
.ws13e{word-spacing:22.272000pt;}
.ws14b{word-spacing:23.952000pt;}
.ws8e{word-spacing:24.320000pt;}
.ws12f{word-spacing:25.200000pt;}
.ws17{word-spacing:25.392000pt;}
.ws77{word-spacing:26.640000pt;}
.ws161{word-spacing:27.936000pt;}
.ws7d{word-spacing:156.703467pt;}
.ws7e{word-spacing:182.822933pt;}
.wsb5{word-spacing:186.276800pt;}
.wsb0{word-spacing:191.610133pt;}
.ws7c{word-spacing:193.876267pt;}
.wsc1{word-spacing:194.276800pt;}
.wsb9{word-spacing:202.276800pt;}
.wsc5{word-spacing:202.746133pt;}
.wsb7{word-spacing:235.487467pt;}
.wsb3{word-spacing:240.820800pt;}
.wsc3{word-spacing:243.487467pt;}
.wsbb{word-spacing:251.487467pt;}
.wsb6{word-spacing:272.052800pt;}
.wsc7{word-spacing:275.487467pt;}
.wsb1{word-spacing:277.386133pt;}
.wsc4{word-spacing:279.032533pt;}
.wsc2{word-spacing:280.052800pt;}
.wsb4{word-spacing:287.604800pt;}
.wsba{word-spacing:288.052800pt;}
.wsb8{word-spacing:293.834133pt;}
.wsbc{word-spacing:295.946133pt;}
.wscd{word-spacing:312.742933pt;}
.wsce{word-spacing:318.757867pt;}
.wsd2{word-spacing:328.742933pt;}
.wsd3{word-spacing:334.757867pt;}
.wscf{word-spacing:345.403200pt;}
.wsd4{word-spacing:361.403200pt;}
.wsc8{word-spacing:423.696533pt;}
.wsc9{word-spacing:425.616533pt;}
.wsa6{word-spacing:445.008000pt;}
.wsd1{word-spacing:476.009600pt;}
.wscc{word-spacing:495.017067pt;}
.wsa8{word-spacing:529.854400pt;}
.wsaa{word-spacing:539.987733pt;}
.wsca{word-spacing:592.878933pt;}
.wsa7{word-spacing:645.071467pt;}
.ws7b{word-spacing:646.106133pt;}
.wscb{word-spacing:686.398933pt;}
._2b{margin-left:-32.343528pt;}
._79{margin-left:-26.481011pt;}
._7c{margin-left:-23.569548pt;}
._29{margin-left:-14.026680pt;}
._2a{margin-left:-12.970081pt;}
._32{margin-left:-10.368000pt;}
._76{margin-left:-7.044748pt;}
._77{margin-left:-5.957369pt;}
._1{margin-left:-3.989346pt;}
._2{margin-left:-2.730631pt;}
._0{margin-left:-1.706654pt;}
._4{width:1.332748pt;}
._e{width:2.767987pt;}
._78{width:4.439431pt;}
._3{width:5.983915pt;}
._f{width:7.140803pt;}
._7{width:8.222364pt;}
._5{width:9.173333pt;}
._6{width:10.072520pt;}
._18{width:11.210615pt;}
._c{width:12.344000pt;}
._9{width:13.509333pt;}
._8{width:14.647480pt;}
._17{width:15.576546pt;}
._d{width:16.800546pt;}
._7d{width:17.827239pt;}
._3d{width:20.040989pt;}
._7a{width:21.577005pt;}
._7b{width:24.650667pt;}
._7e{width:27.463987pt;}
._27{width:44.533919pt;}
._26{width:47.946667pt;}
._28{width:50.826667pt;}
._a{width:53.277792pt;}
._75{width:54.992485pt;}
._14{width:64.682631pt;}
._68{width:105.994133pt;}
._16{width:117.065041pt;}
._b{width:118.826133pt;}
._49{width:141.546706pt;}
._3e{width:146.604839pt;}
._58{width:149.546706pt;}
._53{width:157.546706pt;}
._63{width:159.931187pt;}
._12{width:199.210618pt;}
._47{width:202.752572pt;}
._64{width:203.658120pt;}
._11{width:214.826631pt;}
._4a{width:218.713600pt;}
._3f{width:224.046933pt;}
._59{width:226.713600pt;}
._54{width:234.713600pt;}
._56{width:244.614439pt;}
._60{width:246.373867pt;}
._6a{width:248.155772pt;}
._6c{width:261.382452pt;}
._61{width:267.850667pt;}
._65{width:269.925854pt;}
._13{width:275.664550pt;}
._6f{width:277.921587pt;}
._72{width:283.595733pt;}
._5d{width:284.924319pt;}
._21{width:286.033054pt;}
._5e{width:287.771187pt;}
._4e{width:291.850133pt;}
._40{width:293.157867pt;}
._41{width:295.242133pt;}
._43{width:297.183467pt;}
._5c{width:299.850133pt;}
._4c{width:302.196800pt;}
._20{width:303.901867pt;}
._15{width:307.029320pt;}
._69{width:310.629854pt;}
._4d{width:315.850667pt;}
._42{width:321.184000pt;}
._5b{width:324.397880pt;}
._62{width:330.811200pt;}
._55{width:332.060800pt;}
._67{width:336.902439pt;}
._6b{width:343.696520pt;}
._66{width:350.181867pt;}
._4b{width:352.272520pt;}
._71{width:361.765867pt;}
._5a{width:367.238387pt;}
._44{width:373.797867pt;}
._24{width:376.867720pt;}
._74{width:377.765867pt;}
._73{width:385.765867pt;}
._70{width:393.765867pt;}
._45{width:416.080498pt;}
._50{width:419.249106pt;}
._52{width:420.901867pt;}
._4f{width:432.528533pt;}
._23{width:451.833067pt;}
._57{width:456.901867pt;}
._3c{width:463.224000pt;}
._2d{width:469.177067pt;}
._46{width:478.843200pt;}
._5f{width:482.469854pt;}
._33{width:489.656000pt;}
._48{width:492.901867pt;}
._31{width:498.338654pt;}
._51{width:516.197867pt;}
._22{width:525.131200pt;}
._36{width:544.692800pt;}
._30{width:573.304000pt;}
._35{width:592.077333pt;}
._34{width:602.210667pt;}
._3b{width:627.874667pt;}
._3a{width:632.610667pt;}
._2f{width:658.039987pt;}
._2c{width:690.937067pt;}
._25{width:705.966400pt;}
._2e{width:712.440000pt;}
._38{width:733.176000pt;}
._37{width:737.080000pt;}
._39{width:743.309333pt;}
._6e{width:842.954667pt;}
._1b{width:937.486920pt;}
._10{width:943.406933pt;}
._1f{width:992.127467pt;}
._19{width:1010.698133pt;}
._1a{width:1012.452267pt;}
._6d{width:1037.322654pt;}
._1c{width:1238.201551pt;}
._1e{width:1331.449551pt;}
._1d{width:1478.157831pt;}
.fsc{font-size:31.200000pt;}
.fsf{font-size:34.666667pt;}
.fsb{font-size:36.400000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:31.933340pt;}
.y6{bottom:59.133337pt;}
.y3a{bottom:60.086668pt;}
.y14e{bottom:70.934400pt;}
.y213{bottom:71.601067pt;}
.ya6{bottom:73.133333pt;}
.y39{bottom:74.753335pt;}
.y1aa{bottom:75.567733pt;}
.y147{bottom:75.934400pt;}
.y165{bottom:79.434400pt;}
.ydd{bottom:80.600000pt;}
.y24b{bottom:83.601067pt;}
.y212{bottom:86.267733pt;}
.y5{bottom:86.333337pt;}
.y14d{bottom:88.267733pt;}
.ya5{bottom:90.466667pt;}
.y188{bottom:92.101067pt;}
.y1a9{bottom:92.901067pt;}
.y146{bottom:93.267733pt;}
.y6c{bottom:96.280533pt;}
.y164{bottom:96.767733pt;}
.ydc{bottom:97.933333pt;}
.y24a{bottom:98.267733pt;}
.yf3{bottom:99.133333pt;}
.y211{bottom:100.934400pt;}
.y124{bottom:104.466667pt;}
.y14c{bottom:105.601067pt;}
.y6b{bottom:106.947200pt;}
.ya4{bottom:107.800000pt;}
.y187{bottom:109.434400pt;}
.y1a8{bottom:110.234400pt;}
.y145{bottom:110.601067pt;}
.y249{bottom:112.934400pt;}
.y163{bottom:114.101067pt;}
.ydb{bottom:115.266667pt;}
.y210{bottom:115.601067pt;}
.y123{bottom:116.466667pt;}
.y6a{bottom:117.613867pt;}
.y14b{bottom:122.934400pt;}
.y24{bottom:123.790666pt;}
.ya3{bottom:125.133333pt;}
.y1a7{bottom:127.567733pt;}
.y248{bottom:127.601067pt;}
.y144{bottom:127.934400pt;}
.y122{bottom:128.466667pt;}
.y65{bottom:128.613867pt;}
.y20f{bottom:130.267733pt;}
.y162{bottom:131.434400pt;}
.y1e3{bottom:133.267733pt;}
.y186{bottom:136.101067pt;}
.y68{bottom:138.280533pt;}
.y121{bottom:140.466667pt;}
.yda{bottom:141.933333pt;}
.y247{bottom:142.267733pt;}
.ya2{bottom:142.466667pt;}
.y1a6{bottom:144.901067pt;}
.y20e{bottom:144.934400pt;}
.y1cf{bottom:145.267733pt;}
.y1e2{bottom:147.934400pt;}
.y161{bottom:148.767733pt;}
.y14a{bottom:149.601067pt;}
.y67{bottom:150.280533pt;}
.y120{bottom:152.466667pt;}
.y143{bottom:154.601067pt;}
.y246{bottom:156.934400pt;}
.y20d{bottom:159.601067pt;}
.ya1{bottom:159.800000pt;}
.y1a5{bottom:162.234400pt;}
.y66{bottom:162.280533pt;}
.y1ce{bottom:162.601067pt;}
.y11f{bottom:164.466667pt;}
.y160{bottom:166.101067pt;}
.y245{bottom:171.601067pt;}
.y20c{bottom:174.267733pt;}
.y1b{bottom:175.052000pt;}
.y11e{bottom:176.466667pt;}
.ya0{bottom:177.133333pt;}
.y1a4{bottom:179.567733pt;}
.y1cd{bottom:179.934400pt;}
.y19a{bottom:180.601067pt;}
.y15f{bottom:183.434400pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y244{bottom:186.267733pt;}
.yd9{bottom:187.266667pt;}
.y11d{bottom:188.466667pt;}
.y20b{bottom:188.934400pt;}
.y199{bottom:192.601067pt;}
.y9f{bottom:194.466667pt;}
.y149{bottom:194.934400pt;}
.y1a3{bottom:196.901067pt;}
.y1cc{bottom:197.267733pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y64{bottom:198.601067pt;}
.y142{bottom:199.934400pt;}
.y15e{bottom:200.767733pt;}
.y243{bottom:200.934400pt;}
.y20a{bottom:203.601067pt;}
.y11c{bottom:204.466667pt;}
.y198{bottom:204.601067pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y9e{bottom:211.800000pt;}
.y148{bottom:212.267733pt;}
.y1a2{bottom:214.234400pt;}
.y1cb{bottom:214.601067pt;}
.y242{bottom:215.601067pt;}
.yd8{bottom:215.933333pt;}
.y63{bottom:215.934400pt;}
.y197{bottom:216.601067pt;}
.y141{bottom:217.267733pt;}
.y15d{bottom:218.101067pt;}
.y209{bottom:218.267733pt;}
.y11b{bottom:221.133333pt;}
.y196{bottom:228.601067pt;}
.y9d{bottom:229.133333pt;}
.y241{bottom:230.267733pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y1a1{bottom:231.567733pt;}
.y1ca{bottom:231.934400pt;}
.y208{bottom:232.934400pt;}
.yd7{bottom:233.266667pt;}
.y62{bottom:233.267733pt;}
.y140{bottom:234.601067pt;}
.y15c{bottom:235.434400pt;}
.y11a{bottom:237.800000pt;}
.y195{bottom:240.601067pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y240{bottom:244.934400pt;}
.y15a{bottom:246.267733pt;}
.y9c{bottom:246.466667pt;}
.y1e1{bottom:246.601067pt;}
.y207{bottom:247.601067pt;}
.y38{bottom:249.134667pt;}
.y1c9{bottom:249.267733pt;}
.yd6{bottom:250.600000pt;}
.y61{bottom:250.601067pt;}
.y13f{bottom:251.934400pt;}
.y194{bottom:252.601067pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y1a0{bottom:258.234400pt;}
.y23f{bottom:259.601067pt;}
.y1e0{bottom:261.267733pt;}
.y206{bottom:262.267733pt;}
.y9b{bottom:263.800000pt;}
.y193{bottom:264.601067pt;}
.y1c8{bottom:266.601067pt;}
.yd5{bottom:267.933333pt;}
.y60{bottom:267.934400pt;}
.y15b{bottom:268.767733pt;}
.y13e{bottom:269.267733pt;}
.y23e{bottom:274.267733pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y1df{bottom:275.934400pt;}
.y192{bottom:276.601067pt;}
.y205{bottom:276.934400pt;}
.y9a{bottom:281.133333pt;}
.y1c7{bottom:283.934400pt;}
.y119{bottom:283.966667pt;}
.yd4{bottom:285.266667pt;}
.y5f{bottom:285.267733pt;}
.y13d{bottom:286.601067pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y191{bottom:288.601067pt;}
.y23d{bottom:288.934400pt;}
.y204{bottom:291.601067pt;}
.y118{bottom:295.966667pt;}
.y99{bottom:298.466667pt;}
.y190{bottom:300.601067pt;}
.y1c6{bottom:301.267733pt;}
.yd3{bottom:302.600000pt;}
.y5e{bottom:302.601067pt;}
.y19f{bottom:303.567733pt;}
.y23c{bottom:303.601067pt;}
.y13c{bottom:303.934400pt;}
.y203{bottom:306.267733pt;}
.y37{bottom:306.334667pt;}
.y185{bottom:307.434400pt;}
.y117{bottom:307.966667pt;}
.y12{bottom:309.452000pt;}
.y18f{bottom:312.601067pt;}
.y98{bottom:315.800000pt;}
.y23b{bottom:318.267733pt;}
.y1c5{bottom:318.601067pt;}
.y184{bottom:319.434400pt;}
.y5d{bottom:319.934400pt;}
.y116{bottom:319.966667pt;}
.y19e{bottom:320.901067pt;}
.y202{bottom:320.934400pt;}
.y13b{bottom:321.267733pt;}
.y18e{bottom:324.601067pt;}
.yd2{bottom:329.266667pt;}
.y183{bottom:331.434400pt;}
.y115{bottom:331.966667pt;}
.y23a{bottom:332.934400pt;}
.y97{bottom:333.133333pt;}
.y201{bottom:335.601067pt;}
.y1c4{bottom:335.934400pt;}
.y5c{bottom:337.267733pt;}
.y19d{bottom:338.234400pt;}
.y13a{bottom:338.601067pt;}
.y18d{bottom:340.601067pt;}
.y182{bottom:343.434400pt;}
.y11{bottom:343.809333pt;}
.y114{bottom:343.966667pt;}
.y239{bottom:347.601067pt;}
.y200{bottom:350.267733pt;}
.y96{bottom:350.466667pt;}
.y1c3{bottom:353.267733pt;}
.y5b{bottom:354.601067pt;}
.y181{bottom:355.434400pt;}
.y19c{bottom:355.567733pt;}
.y139{bottom:355.934400pt;}
.y113{bottom:355.966667pt;}
.y18c{bottom:357.267733pt;}
.y1de{bottom:358.601067pt;}
.y238{bottom:362.267733pt;}
.y10{bottom:362.706666pt;}
.y1ff{bottom:364.934400pt;}
.y36{bottom:366.140000pt;}
.y180{bottom:367.434400pt;}
.y95{bottom:367.800000pt;}
.y1c2{bottom:370.601067pt;}
.y5a{bottom:371.934400pt;}
.y112{bottom:371.966667pt;}
.y19b{bottom:372.901067pt;}
.y1dd{bottom:373.267733pt;}
.y237{bottom:376.934400pt;}
.yd1{bottom:378.100267pt;}
.y17f{bottom:379.434400pt;}
.y1fe{bottom:379.601067pt;}
.y138{bottom:382.601067pt;}
.y94{bottom:385.133333pt;}
.y1c1{bottom:387.934400pt;}
.y111{bottom:388.633333pt;}
.y59{bottom:389.267733pt;}
.y17e{bottom:391.434400pt;}
.y236{bottom:391.601067pt;}
.y1fd{bottom:394.267733pt;}
.y93{bottom:402.466667pt;}
.y17d{bottom:403.434400pt;}
.y1c0{bottom:405.267733pt;}
.y235{bottom:406.267733pt;}
.y58{bottom:406.601067pt;}
.yd0{bottom:406.766933pt;}
.y1fc{bottom:408.934400pt;}
.y1dc{bottom:411.934400pt;}
.y1b1{bottom:412.341067pt;}
.y17c{bottom:415.434400pt;}
.y92{bottom:419.800000pt;}
.y35{bottom:420.734667pt;}
.y234{bottom:420.934400pt;}
.y1bf{bottom:422.601067pt;}
.y1fb{bottom:423.601067pt;}
.y57{bottom:423.934400pt;}
.ycf{bottom:424.100267pt;}
.y137{bottom:427.934400pt;}
.yf{bottom:430.990669pt;}
.yf2{bottom:431.267733pt;}
.y17b{bottom:431.434400pt;}
.y233{bottom:435.601067pt;}
.y91{bottom:437.133333pt;}
.y1fa{bottom:438.267733pt;}
.y1be{bottom:439.934400pt;}
.yce{bottom:441.433600pt;}
.y110{bottom:444.767733pt;}
.y136{bottom:445.267733pt;}
.ye{bottom:446.990669pt;}
.y17a{bottom:448.101067pt;}
.yf1{bottom:448.601067pt;}
.y1db{bottom:449.267733pt;}
.y232{bottom:450.267733pt;}
.y56{bottom:450.601067pt;}
.y1f9{bottom:452.934400pt;}
.y90{bottom:454.466667pt;}
.ycd{bottom:458.766933pt;}
.y10f{bottom:462.101067pt;}
.y135{bottom:462.601067pt;}
.yd{bottom:462.990669pt;}
.y1da{bottom:463.934400pt;}
.y231{bottom:464.934400pt;}
.yf0{bottom:465.934400pt;}
.y1bd{bottom:466.601067pt;}
.y1f8{bottom:467.601067pt;}
.y8f{bottom:471.800000pt;}
.ycc{bottom:476.100267pt;}
.yc{bottom:478.990666pt;}
.y10e{bottom:479.434400pt;}
.y230{bottom:479.601067pt;}
.y134{bottom:479.934400pt;}
.y34{bottom:480.540000pt;}
.y1f7{bottom:482.267733pt;}
.y1d9{bottom:487.934400pt;}
.y8e{bottom:489.133333pt;}
.yef{bottom:492.601067pt;}
.y179{bottom:494.267733pt;}
.yb{bottom:494.990666pt;}
.y10d{bottom:496.767733pt;}
.y1f6{bottom:496.934400pt;}
.ycb{bottom:502.766933pt;}
.y178{bottom:506.267733pt;}
.y8d{bottom:506.466667pt;}
.y133{bottom:506.601067pt;}
.y22f{bottom:508.934400pt;}
.y1bc{bottom:509.267733pt;}
.y33{bottom:511.073335pt;}
.y1f5{bottom:511.601067pt;}
.y10c{bottom:514.101067pt;}
.y177{bottom:518.267733pt;}
.yee{bottom:519.267733pt;}
.y7e{bottom:520.767733pt;}
.y22e{bottom:523.601067pt;}
.y8c{bottom:523.800000pt;}
.y32{bottom:524.406668pt;}
.y1f4{bottom:526.267733pt;}
.y1bb{bottom:526.601067pt;}
.y55{bottom:527.934400pt;}
.y176{bottom:530.267733pt;}
.y10b{bottom:531.434400pt;}
.y7d{bottom:532.767733pt;}
.y132{bottom:533.267733pt;}
.y31{bottom:537.740000pt;}
.y22d{bottom:538.267733pt;}
.y1f3{bottom:540.934400pt;}
.y8b{bottom:541.133333pt;}
.y54{bottom:541.267733pt;}
.y175{bottom:542.267733pt;}
.y1ba{bottom:543.934400pt;}
.y7c{bottom:544.767733pt;}
.y10a{bottom:548.767733pt;}
.yca{bottom:551.600533pt;}
.y22c{bottom:552.934400pt;}
.y174{bottom:554.267733pt;}
.y53{bottom:554.601067pt;}
.y1f2{bottom:555.601067pt;}
.y7b{bottom:556.767733pt;}
.y1d8{bottom:557.267733pt;}
.y8a{bottom:558.466667pt;}
.y1b9{bottom:561.267733pt;}
.yed{bottom:564.601067pt;}
.y109{bottom:566.101067pt;}
.y173{bottom:566.267733pt;}
.y22b{bottom:567.601067pt;}
.y52{bottom:567.934400pt;}
.y7a{bottom:568.767733pt;}
.y1f1{bottom:570.267733pt;}
.y1b0{bottom:571.434400pt;}
.ya{bottom:573.786667pt;}
.y89{bottom:575.800000pt;}
.y172{bottom:578.267733pt;}
.y131{bottom:578.601067pt;}
.yc9{bottom:580.267200pt;}
.y51{bottom:581.267733pt;}
.yec{bottom:581.934400pt;}
.y22a{bottom:582.267733pt;}
.y108{bottom:583.434400pt;}
.y1f0{bottom:584.934400pt;}
.y79{bottom:589.001067pt;}
.y171{bottom:590.267733pt;}
.y9{bottom:592.685334pt;}
.y88{bottom:593.133333pt;}
.y50{bottom:594.601067pt;}
.y1af{bottom:595.434400pt;}
.y130{bottom:595.934400pt;}
.y229{bottom:596.934400pt;}
.yc8{bottom:597.600533pt;}
.y107{bottom:600.767733pt;}
.y78{bottom:601.001067pt;}
.y170{bottom:602.267733pt;}
.y1d7{bottom:602.601067pt;}
.y1ae{bottom:607.434400pt;}
.y4f{bottom:607.934400pt;}
.y1ef{bottom:608.934400pt;}
.y30{bottom:610.059998pt;}
.y87{bottom:610.466667pt;}
.yeb{bottom:610.601067pt;}
.y228{bottom:611.601067pt;}
.y77{bottom:613.001067pt;}
.y12f{bottom:613.267733pt;}
.y16f{bottom:614.267733pt;}
.yc7{bottom:614.933867pt;}
.y1d6{bottom:617.267733pt;}
.y106{bottom:618.101067pt;}
.y4e{bottom:621.267733pt;}
.y1ad{bottom:624.101067pt;}
.y76{bottom:625.001067pt;}
.yea{bottom:625.267733pt;}
.y16e{bottom:626.267733pt;}
.y86{bottom:627.800000pt;}
.y12e{bottom:630.601067pt;}
.y1d5{bottom:631.934400pt;}
.yc6{bottom:632.267200pt;}
.y4d{bottom:634.601067pt;}
.y105{bottom:635.434400pt;}
.y2f{bottom:636.726665pt;}
.y75{bottom:637.001067pt;}
.y16d{bottom:638.267733pt;}
.y1ac{bottom:640.767733pt;}
.y227{bottom:640.934400pt;}
.y85{bottom:645.133333pt;}
.y8{bottom:645.598667pt;}
.y1d4{bottom:646.601067pt;}
.y1ee{bottom:647.601067pt;}
.y4c{bottom:647.934400pt;}
.y74{bottom:649.001067pt;}
.y16c{bottom:650.267733pt;}
.ye9{bottom:651.267733pt;}
.y2e{bottom:652.726665pt;}
.y104{bottom:652.767733pt;}
.y226{bottom:655.601067pt;}
.y159{bottom:657.101067pt;}
.yc5{bottom:658.933867pt;}
.y73{bottom:661.001067pt;}
.y4b{bottom:661.267733pt;}
.y16b{bottom:662.267733pt;}
.y84{bottom:662.466667pt;}
.y12d{bottom:665.267733pt;}
.ye8{bottom:668.601067pt;}
.y2d{bottom:668.726665pt;}
.y4{bottom:668.977329pt;}
.y158{bottom:669.101067pt;}
.y103{bottom:670.101067pt;}
.y225{bottom:670.267733pt;}
.y16a{bottom:674.267733pt;}
.y4a{bottom:674.601067pt;}
.y1d3{bottom:675.934400pt;}
.y1ed{bottom:676.934400pt;}
.y83{bottom:679.800000pt;}
.y157{bottom:681.101067pt;}
.y72{bottom:681.234400pt;}
.y12c{bottom:682.601067pt;}
.y2c{bottom:684.726665pt;}
.y224{bottom:684.934400pt;}
.ye7{bottom:685.934400pt;}
.y169{bottom:686.267733pt;}
.y49{bottom:687.934400pt;}
.y18a{bottom:690.267733pt;}
.y1d2{bottom:690.601067pt;}
.y1ec{bottom:691.601067pt;}
.y156{bottom:693.101067pt;}
.y71{bottom:693.234400pt;}
.y1ab{bottom:693.507733pt;}
.y102{bottom:696.767733pt;}
.y82{bottom:697.133333pt;}
.y168{bottom:698.267733pt;}
.y223{bottom:699.601067pt;}
.y12b{bottom:699.934400pt;}
.y48{bottom:701.267733pt;}
.y18b{bottom:702.267733pt;}
.ye6{bottom:703.267733pt;}
.y155{bottom:705.101067pt;}
.y70{bottom:705.234400pt;}
.y1eb{bottom:706.267733pt;}
.yc4{bottom:707.767467pt;}
.y167{bottom:714.267733pt;}
.y81{bottom:714.466667pt;}
.y47{bottom:714.601067pt;}
.y154{bottom:717.101067pt;}
.y6f{bottom:717.234400pt;}
.y12a{bottom:717.267733pt;}
.y189{bottom:718.934400pt;}
.ye5{bottom:720.601067pt;}
.y46{bottom:727.934400pt;}
.y222{bottom:728.934400pt;}
.y153{bottom:729.101067pt;}
.y6e{bottom:729.234400pt;}
.y1ea{bottom:730.267733pt;}
.y166{bottom:730.934400pt;}
.y2b{bottom:731.368002pt;}
.y80{bottom:731.800000pt;}
.y1b8{bottom:734.601067pt;}
.yc3{bottom:736.434133pt;}
.ye4{bottom:737.934400pt;}
.y152{bottom:741.101067pt;}
.y6d{bottom:741.234400pt;}
.y45{bottom:741.267733pt;}
.y101{bottom:742.101067pt;}
.y221{bottom:743.601067pt;}
.y129{bottom:743.934400pt;}
.y2a{bottom:750.034669pt;}
.y1b7{bottom:751.934400pt;}
.y151{bottom:753.101067pt;}
.y1d1{bottom:753.267733pt;}
.yc2{bottom:753.767467pt;}
.ye3{bottom:755.267733pt;}
.y220{bottom:758.267733pt;}
.y100{bottom:759.434400pt;}
.y150{bottom:765.101067pt;}
.y1b6{bottom:769.267733pt;}
.yc1{bottom:771.100800pt;}
.y21f{bottom:772.934400pt;}
.yff{bottom:776.767733pt;}
.yb6{bottom:777.101067pt;}
.y1d0{bottom:777.267733pt;}
.y3{bottom:781.661334pt;}
.ye2{bottom:781.934400pt;}
.y44{bottom:782.934400pt;}
.y1b5{bottom:786.601067pt;}
.y21e{bottom:787.601067pt;}
.yc0{bottom:788.434133pt;}
.yb5{bottom:789.101067pt;}
.y128{bottom:789.267733pt;}
.yfe{bottom:794.101067pt;}
.y43{bottom:800.227733pt;}
.yb4{bottom:801.101067pt;}
.y21d{bottom:802.267733pt;}
.y1b4{bottom:803.934400pt;}
.ybf{bottom:805.767467pt;}
.y29{bottom:806.613333pt;}
.yfd{bottom:811.434400pt;}
.y14f{bottom:813.101067pt;}
.y21c{bottom:816.934400pt;}
.y42{bottom:820.267733pt;}
.y1b3{bottom:821.267733pt;}
.y127{bottom:822.601067pt;}
.yb3{bottom:825.101067pt;}
.ye1{bottom:827.267733pt;}
.yfc{bottom:828.767733pt;}
.y21b{bottom:831.601067pt;}
.ybe{bottom:832.434133pt;}
.y1e9{bottom:832.934400pt;}
.y28{bottom:834.613333pt;}
.y41{bottom:836.267733pt;}
.yb2{bottom:837.101067pt;}
.y1b2{bottom:838.601067pt;}
.y126{bottom:839.934400pt;}
.y2{bottom:840.112001pt;}
.yfb{bottom:846.101067pt;}
.y21a{bottom:846.267733pt;}
.y1e8{bottom:847.601067pt;}
.yb1{bottom:849.101067pt;}
.ye0{bottom:855.934400pt;}
.y125{bottom:857.267733pt;}
.ybd{bottom:859.100800pt;}
.y1{bottom:859.312000pt;}
.y219{bottom:860.934400pt;}
.yb0{bottom:861.101067pt;}
.y1e7{bottom:862.267733pt;}
.y27{bottom:862.613333pt;}
.yfa{bottom:863.434400pt;}
.y40{bottom:870.934400pt;}
.yaf{bottom:873.101067pt;}
.ydf{bottom:873.267733pt;}
.y218{bottom:875.601067pt;}
.yf9{bottom:880.767733pt;}
.yae{bottom:885.101067pt;}
.y217{bottom:890.267733pt;}
.yde{bottom:890.601067pt;}
.y3f{bottom:892.267733pt;}
.yad{bottom:897.101067pt;}
.yf8{bottom:898.101067pt;}
.y216{bottom:904.934400pt;}
.ybc{bottom:907.934400pt;}
.yac{bottom:909.101067pt;}
.y3c{bottom:915.121067pt;}
.yf7{bottom:915.434400pt;}
.y215{bottom:919.601067pt;}
.y26{bottom:920.485335pt;}
.yab{bottom:921.101067pt;}
.ybb{bottom:925.267733pt;}
.y3b{bottom:931.121067pt;}
.yf6{bottom:932.767733pt;}
.yaa{bottom:933.101067pt;}
.y214{bottom:934.267733pt;}
.yba{bottom:942.601067pt;}
.ya9{bottom:945.101067pt;}
.y1e6{bottom:948.934400pt;}
.yf5{bottom:950.101067pt;}
.yb9{bottom:959.934400pt;}
.ya8{bottom:961.101067pt;}
.y69{bottom:963.362000pt;}
.y1e5{bottom:963.601067pt;}
.y3e{bottom:975.473733pt;}
.yf4{bottom:976.767733pt;}
.yb8{bottom:977.267733pt;}
.ya7{bottom:977.767733pt;}
.y1e4{bottom:978.267733pt;}
.y3d{bottom:987.473733pt;}
.yb7{bottom:1014.433867pt;}
.y7f{bottom:1014.500533pt;}
.y25{bottom:1035.664002pt;}
.h16{height:22.308000pt;}
.h1b{height:26.693333pt;}
.h18{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1e{height:30.000000pt;}
.h1c{height:30.506667pt;}
.h22{height:30.762667pt;}
.h1d{height:32.000000pt;}
.hb{height:32.645833pt;}
.h17{height:34.320000pt;}
.h19{height:36.000000pt;}
.h1f{height:36.226667pt;}
.hf{height:36.726562pt;}
.h23{height:39.240000pt;}
.h12{height:40.000000pt;}
.h21{height:40.320000pt;}
.h20{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h1a{height:42.298667pt;}
.h3{height:42.840000pt;}
.h15{height:45.780000pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x16{left:109.333333pt;}
.xb{left:112.100000pt;}
.x1b{left:120.000000pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x2b{left:184.000000pt;}
.x9{left:203.327991pt;}
.x26{left:211.394533pt;}
.x27{left:224.727867pt;}
.x17{left:238.409333pt;}
.x11{left:245.357467pt;}
.x1e{left:249.657467pt;}
.xd{left:252.000000pt;}
.x1f{left:256.428267pt;}
.x8{left:260.969328pt;}
.x1c{left:262.238800pt;}
.x18{left:264.425200pt;}
.x1d{left:271.129467pt;}
.x19{left:277.758533pt;}
.xf{left:282.789200pt;}
.x29{left:288.761200pt;}
.x15{left:304.666667pt;}
.x12{left:318.000000pt;}
.x28{left:365.937333pt;}
.x3{left:404.408000pt;}
.x20{left:423.578800pt;}
.x21{left:458.259867pt;}
.x1a{left:460.796533pt;}
.x13{left:470.670267pt;}
.x2a{left:502.378267pt;}
.xe{left:507.508000pt;}
.x22{left:524.125067pt;}
.x23{left:527.916933pt;}
.x14{left:547.000000pt;}
.x10{left:575.614267pt;}
.xc{left:577.800667pt;}
.x24{left:617.855600pt;}
.x25{left:644.755600pt;}
}




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