
    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_fcb4f8736fa0e4dc038a0380.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_510edf0930a5358b544ea6b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_abaff043db80ef68392b6ce2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_e0b257993a368c472a72ef85.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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);}
.v4{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.800000px;}
.v3{vertical-align:17.856000px;}
.v2{vertical-align:19.800000px;}
.lsb4{letter-spacing:-1.998000px;}
.lsa1{letter-spacing:-1.728000px;}
.lsa2{letter-spacing:-1.674000px;}
.lsa0{letter-spacing:-1.566000px;}
.lsb2{letter-spacing:-1.512000px;}
.lsb3{letter-spacing:-1.498500px;}
.ls59{letter-spacing:-1.380000px;}
.ls89{letter-spacing:-1.350000px;}
.lsad{letter-spacing:-1.336500px;}
.ls30{letter-spacing:-1.320000px;}
.ls43{letter-spacing:-1.296000px;}
.ls44{letter-spacing:-1.242000px;}
.ls64{letter-spacing:-1.200000px;}
.ls74{letter-spacing:-1.188000px;}
.ls18{letter-spacing:-1.140000px;}
.ls80{letter-spacing:-1.134000px;}
.ls63{letter-spacing:-1.080000px;}
.ls2c{letter-spacing:-1.026000px;}
.ls54{letter-spacing:-1.020000px;}
.ls2b{letter-spacing:-0.972000px;}
.ls9e{letter-spacing:-0.966000px;}
.ls7d{letter-spacing:-0.960000px;}
.ls14{letter-spacing:-0.918000px;}
.ls28{letter-spacing:-0.900000px;}
.ls6b{letter-spacing:-0.864000px;}
.ls53{letter-spacing:-0.840000px;}
.ls9f{letter-spacing:-0.810000px;}
.ls8f{letter-spacing:-0.798000px;}
.ls56{letter-spacing:-0.780000px;}
.lsaf{letter-spacing:-0.769500px;}
.ls1f{letter-spacing:-0.768000px;}
.ls31{letter-spacing:-0.756000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.702000px;}
.ls6d{letter-spacing:-0.672000px;}
.ls12{letter-spacing:-0.663000px;}
.ls19{letter-spacing:-0.660000px;}
.ls10{letter-spacing:-0.649740px;}
.ls2a{letter-spacing:-0.648000px;}
.ls49{letter-spacing:-0.624000px;}
.lsb0{letter-spacing:-0.607500px;}
.ls58{letter-spacing:-0.600000px;}
.ls29{letter-spacing:-0.594000px;}
.ls4a{letter-spacing:-0.576000px;}
.lsb1{letter-spacing:-0.567000px;}
.ls57{letter-spacing:-0.540000px;}
.ls48{letter-spacing:-0.504000px;}
.ls88{letter-spacing:-0.486000px;}
.ls40{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.464100px;}
.lsbc{letter-spacing:-0.445500px;}
.ls87{letter-spacing:-0.432000px;}
.ls41{letter-spacing:-0.420000px;}
.lsbb{letter-spacing:-0.405000px;}
.ls96{letter-spacing:-0.384000px;}
.ls7f{letter-spacing:-0.378000px;}
.ls27{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.336000px;}
.ls7e{letter-spacing:-0.324000px;}
.ls13{letter-spacing:-0.306000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls5a{letter-spacing:-0.294000px;}
.ls34{letter-spacing:-0.288000px;}
.ls42{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.240000px;}
.ls2e{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.168000px;}
.ls2d{letter-spacing:-0.162000px;}
.ls46{letter-spacing:-0.144000px;}
.ls3e{letter-spacing:-0.120000px;}
.ls52{letter-spacing:-0.108000px;}
.ls47{letter-spacing:-0.096000px;}
.ls3f{letter-spacing:-0.090000px;}
.ls2f{letter-spacing:-0.060000px;}
.ls1e{letter-spacing:-0.054000px;}
.ls1c{letter-spacing:-0.048000px;}
.lsa7{letter-spacing:-0.037800px;}
.ls92{letter-spacing:-0.033600px;}
.lse{letter-spacing:0.000000px;}
.lsb6{letter-spacing:0.006000px;}
.lsb5{letter-spacing:0.012000px;}
.lsa5{letter-spacing:0.024000px;}
.lsaa{letter-spacing:0.030000px;}
.lsa8{letter-spacing:0.034500px;}
.lsae{letter-spacing:0.040500px;}
.ls90{letter-spacing:0.042000px;}
.ls4f{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.051000px;}
.ls38{letter-spacing:0.054000px;}
.ls20{letter-spacing:0.060000px;}
.lsa6{letter-spacing:0.066000px;}
.ls7c{letter-spacing:0.084000px;}
.ls6a{letter-spacing:0.096000px;}
.ls2{letter-spacing:0.102000px;}
.ls72{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.120000px;}
.lsac{letter-spacing:0.121500px;}
.lsd{letter-spacing:0.144000px;}
.lsab{letter-spacing:0.150000px;}
.ls62{letter-spacing:0.162000px;}
.ls22{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.192000px;}
.ls93{letter-spacing:0.210000px;}
.ls25{letter-spacing:0.216000px;}
.ls3c{letter-spacing:0.240000px;}
.ls24{letter-spacing:0.270000px;}
.ls51{letter-spacing:0.288000px;}
.ls91{letter-spacing:0.294000px;}
.ls75{letter-spacing:0.300000px;}
.ls26{letter-spacing:0.324000px;}
.ls3a{letter-spacing:0.336000px;}
.ls23{letter-spacing:0.360000px;}
.ls55{letter-spacing:0.378000px;}
.ls39{letter-spacing:0.384000px;}
.ls7{letter-spacing:0.420000px;}
.ls73{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.480000px;}
.ls4b{letter-spacing:0.486000px;}
.lsb8{letter-spacing:0.526500px;}
.ls3b{letter-spacing:0.528000px;}
.lsb7{letter-spacing:0.534000px;}
.ls4c{letter-spacing:0.540000px;}
.lsb9{letter-spacing:0.570000px;}
.ls4d{letter-spacing:0.576000px;}
.ls70{letter-spacing:0.594000px;}
.ls6{letter-spacing:0.600000px;}
.lsba{letter-spacing:0.607500px;}
.lsf{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.624000px;}
.ls7a{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.663000px;}
.ls9{letter-spacing:0.672000px;}
.ls77{letter-spacing:0.702000px;}
.ls67{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.756000px;}
.ls69{letter-spacing:0.780000px;}
.ls5d{letter-spacing:0.840000px;}
.ls1d{letter-spacing:0.864000px;}
.ls6e{letter-spacing:0.900000px;}
.lsb{letter-spacing:0.912000px;}
.ls79{letter-spacing:0.918000px;}
.ls61{letter-spacing:0.960000px;}
.ls7b{letter-spacing:0.972000px;}
.ls78{letter-spacing:1.026000px;}
.ls6c{letter-spacing:1.050000px;}
.ls4e{letter-spacing:1.056000px;}
.ls71{letter-spacing:1.080000px;}
.ls5b{letter-spacing:1.104000px;}
.ls3d{letter-spacing:1.200000px;}
.ls6f{letter-spacing:1.296000px;}
.ls36{letter-spacing:1.350000px;}
.ls37{letter-spacing:1.377000px;}
.ls8d{letter-spacing:1.380000px;}
.ls45{letter-spacing:1.404000px;}
.ls5c{letter-spacing:1.440000px;}
.ls86{letter-spacing:1.458000px;}
.ls3{letter-spacing:1.500000px;}
.ls84{letter-spacing:1.512000px;}
.ls9c{letter-spacing:1.566000px;}
.ls9d{letter-spacing:1.620000px;}
.ls85{letter-spacing:1.674000px;}
.ls83{letter-spacing:1.836000px;}
.ls9b{letter-spacing:9.060000px;}
.lsa4{letter-spacing:11.640000px;}
.lsa9{letter-spacing:12.042000px;}
.ls8e{letter-spacing:12.120000px;}
.ls9a{letter-spacing:13.320000px;}
.ls50{letter-spacing:13.488000px;}
.ls76{letter-spacing:13.500000px;}
.ls95{letter-spacing:13.554000px;}
.ls82{letter-spacing:13.740000px;}
.ls65{letter-spacing:13.860000px;}
.ls94{letter-spacing:13.920000px;}
.ls98{letter-spacing:14.160000px;}
.lsa3{letter-spacing:14.340000px;}
.ls99{letter-spacing:14.400000px;}
.ls81{letter-spacing:14.460000px;}
.ls5e{letter-spacing:14.580000px;}
.ls8a{letter-spacing:14.880000px;}
.ls60{letter-spacing:15.000000px;}
.ls97{letter-spacing:15.480000px;}
.ls66{letter-spacing:15.780000px;}
.ls21{letter-spacing:16.500000px;}
.ls8c{letter-spacing:16.560000px;}
.ls8b{letter-spacing:16.680000px;}
.ls68{letter-spacing:17.220000px;}
.ls5f{letter-spacing:24.000000px;}
.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;}
}
.ws9d{word-spacing:-16.500000px;}
.wsee{word-spacing:-16.380000px;}
.wsc9{word-spacing:-15.840000px;}
.wsed{word-spacing:-15.780000px;}
.ws10{word-spacing:-15.600000px;}
.ws8a{word-spacing:-15.540000px;}
.wsf{word-spacing:-15.480000px;}
.wseb{word-spacing:-15.420000px;}
.wsa9{word-spacing:-15.360000px;}
.wsf7{word-spacing:-15.300000px;}
.wse4{word-spacing:-15.240000px;}
.ws12{word-spacing:-15.120000px;}
.ws37{word-spacing:-15.060000px;}
.wse5{word-spacing:-15.012000px;}
.ws7{word-spacing:-15.000000px;}
.ws42{word-spacing:-14.940000px;}
.ws6b{word-spacing:-14.904000px;}
.ws63{word-spacing:-14.880000px;}
.ws6c{word-spacing:-14.850000px;}
.ws38{word-spacing:-14.820000px;}
.ws3b{word-spacing:-14.760000px;}
.ws9b{word-spacing:-14.700000px;}
.wsa6{word-spacing:-14.640000px;}
.ws65{word-spacing:-14.580000px;}
.wsf9{word-spacing:-14.526000px;}
.ws64{word-spacing:-14.520000px;}
.wsaa{word-spacing:-14.460000px;}
.wscf{word-spacing:-14.418000px;}
.ws88{word-spacing:-14.400000px;}
.wse{word-spacing:-14.340000px;}
.wsc{word-spacing:-14.280000px;}
.ws68{word-spacing:-14.256000px;}
.wsa7{word-spacing:-14.220000px;}
.wsfa{word-spacing:-14.202000px;}
.ws9e{word-spacing:-14.160000px;}
.wsae{word-spacing:-14.100000px;}
.wsfb{word-spacing:-14.094000px;}
.wsc8{word-spacing:-14.040000px;}
.wscb{word-spacing:-13.986000px;}
.ws9a{word-spacing:-13.920000px;}
.wse6{word-spacing:-13.878000px;}
.wsac{word-spacing:-13.860000px;}
.ws44{word-spacing:-13.824000px;}
.ws9c{word-spacing:-13.800000px;}
.wsbb{word-spacing:-13.770000px;}
.wsb8{word-spacing:-13.716000px;}
.ws43{word-spacing:-13.680000px;}
.ws9f{word-spacing:-13.662000px;}
.ws104{word-spacing:-13.620000px;}
.wse7{word-spacing:-13.608000px;}
.ws10c{word-spacing:-13.554000px;}
.ws41{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.446000px;}
.ws85{word-spacing:-13.392000px;}
.ws1{word-spacing:-13.362000px;}
.ws40{word-spacing:-13.284000px;}
.ws67{word-spacing:-13.230000px;}
.wsca{word-spacing:-13.176000px;}
.wsce{word-spacing:-13.122000px;}
.wse2{word-spacing:-13.068000px;}
.ws8f{word-spacing:-13.056000px;}
.wse8{word-spacing:-13.014000px;}
.ws110{word-spacing:-12.960000px;}
.wsb9{word-spacing:-12.906000px;}
.ws3d{word-spacing:-12.852000px;}
.ws46{word-spacing:-12.798000px;}
.ws0{word-spacing:-12.750000px;}
.ws45{word-spacing:-12.744000px;}
.ws16{word-spacing:-12.672000px;}
.wsf8{word-spacing:-12.636000px;}
.ws14{word-spacing:-12.624000px;}
.wsba{word-spacing:-12.582000px;}
.ws8e{word-spacing:-12.576000px;}
.ws3f{word-spacing:-12.528000px;}
.ws3e{word-spacing:-12.474000px;}
.ws5{word-spacing:-12.444000px;}
.ws70{word-spacing:-12.384000px;}
.wscd{word-spacing:-12.366000px;}
.ws6d{word-spacing:-12.336000px;}
.wscc{word-spacing:-12.312000px;}
.ws69{word-spacing:-12.204000px;}
.ws118{word-spacing:-12.150000px;}
.wsb0{word-spacing:-12.096000px;}
.ws4{word-spacing:-12.087000px;}
.ws18{word-spacing:-12.000000px;}
.ws17{word-spacing:-11.952000px;}
.ws6f{word-spacing:-11.904000px;}
.ws6e{word-spacing:-11.856000px;}
.ws6{word-spacing:-11.832000px;}
.ws107{word-spacing:-11.772000px;}
.ws49{word-spacing:-11.712000px;}
.ws48{word-spacing:-11.664000px;}
.ws71{word-spacing:-11.520000px;}
.ws74{word-spacing:-11.424000px;}
.ws73{word-spacing:-11.376000px;}
.ws62{word-spacing:-11.160000px;}
.ws9{word-spacing:-11.070000px;}
.ws87{word-spacing:-10.878000px;}
.ws123{word-spacing:-10.732500px;}
.ws122{word-spacing:-10.651500px;}
.wsc7{word-spacing:-10.584000px;}
.wsb{word-spacing:-10.500000px;}
.wsa{word-spacing:-10.332000px;}
.ws119{word-spacing:-10.246500px;}
.ws8b{word-spacing:-10.206000px;}
.ws11e{word-spacing:-10.165500px;}
.ws113{word-spacing:-10.125000px;}
.ws106{word-spacing:-10.080000px;}
.wsad{word-spacing:-9.744000px;}
.ws124{word-spacing:-9.720000px;}
.ws125{word-spacing:-9.679500px;}
.wse1{word-spacing:-9.660000px;}
.ws11b{word-spacing:-9.558000px;}
.ws105{word-spacing:-9.534000px;}
.ws11a{word-spacing:-9.517500px;}
.ws86{word-spacing:-9.450000px;}
.ws116{word-spacing:-9.355500px;}
.ws75{word-spacing:-9.000000px;}
.ws2{word-spacing:-8.905260px;}
.ws117{word-spacing:-8.788500px;}
.ws11c{word-spacing:-8.626500px;}
.wsef{word-spacing:-8.366400px;}
.ws36{word-spacing:-7.872000px;}
.wsec{word-spacing:-3.480000px;}
.wsa8{word-spacing:-0.960000px;}
.ws3c{word-spacing:-0.900000px;}
.wse3{word-spacing:-0.840000px;}
.ws89{word-spacing:-0.780000px;}
.ws2f{word-spacing:-0.720000px;}
.ws52{word-spacing:-0.702000px;}
.ws78{word-spacing:-0.660000px;}
.ws51{word-spacing:-0.648000px;}
.ws33{word-spacing:-0.624000px;}
.ws4d{word-spacing:-0.600000px;}
.ws91{word-spacing:-0.594000px;}
.ws83{word-spacing:-0.576000px;}
.ws29{word-spacing:-0.540000px;}
.ws99{word-spacing:-0.528000px;}
.ws59{word-spacing:-0.486000px;}
.ws4c{word-spacing:-0.480000px;}
.ws10d{word-spacing:-0.462000px;}
.wsa5{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.420000px;}
.ws7d{word-spacing:-0.384000px;}
.ws79{word-spacing:-0.378000px;}
.ws4b{word-spacing:-0.360000px;}
.ws61{word-spacing:-0.336000px;}
.wsd3{word-spacing:-0.324000px;}
.ws23{word-spacing:-0.306000px;}
.ws76{word-spacing:-0.300000px;}
.ws109{word-spacing:-0.294000px;}
.ws60{word-spacing:-0.288000px;}
.wsd5{word-spacing:-0.270000px;}
.ws95{word-spacing:-0.240000px;}
.ws66{word-spacing:-0.216000px;}
.wsfc{word-spacing:-0.192000px;}
.ws4f{word-spacing:-0.180000px;}
.wsf5{word-spacing:-0.168000px;}
.ws101{word-spacing:-0.162000px;}
.ws84{word-spacing:-0.144000px;}
.wsb2{word-spacing:-0.126000px;}
.ws2c{word-spacing:-0.120000px;}
.ws54{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.096000px;}
.wsd{word-spacing:-0.060000px;}
.ws53{word-spacing:-0.054000px;}
.ws8d{word-spacing:-0.048000px;}
.wsf0{word-spacing:-0.042000px;}
.ws1d{word-spacing:0.000000px;}
.ws1c{word-spacing:0.048000px;}
.ws22{word-spacing:0.051000px;}
.ws5d{word-spacing:0.054000px;}
.ws5a{word-spacing:0.060000px;}
.wsb3{word-spacing:0.084000px;}
.ws98{word-spacing:0.096000px;}
.ws5e{word-spacing:0.108000px;}
.ws92{word-spacing:0.120000px;}
.ws97{word-spacing:0.144000px;}
.wsc3{word-spacing:0.162000px;}
.wsb5{word-spacing:0.168000px;}
.ws4e{word-spacing:0.180000px;}
.wsb1{word-spacing:0.216000px;}
.ws93{word-spacing:0.240000px;}
.wsf2{word-spacing:0.252000px;}
.ws58{word-spacing:0.270000px;}
.ws34{word-spacing:0.288000px;}
.wsa0{word-spacing:0.300000px;}
.ws24{word-spacing:0.306000px;}
.ws57{word-spacing:0.324000px;}
.ws108{word-spacing:0.336000px;}
.wsf1{word-spacing:0.360000px;}
.ws7a{word-spacing:0.378000px;}
.ws2a{word-spacing:0.420000px;}
.ws19{word-spacing:0.432000px;}
.wsbe{word-spacing:0.480000px;}
.ws7b{word-spacing:0.486000px;}
.ws15{word-spacing:0.528000px;}
.ws5b{word-spacing:0.540000px;}
.wsb4{word-spacing:0.546000px;}
.wsc6{word-spacing:0.594000px;}
.wsbd{word-spacing:0.600000px;}
.ws20{word-spacing:0.612000px;}
.ws96{word-spacing:0.624000px;}
.ws2e{word-spacing:0.630000px;}
.wsda{word-spacing:0.648000px;}
.ws5f{word-spacing:0.660000px;}
.ws80{word-spacing:0.672000px;}
.wsdb{word-spacing:0.702000px;}
.wsf6{word-spacing:0.714000px;}
.ws7e{word-spacing:0.720000px;}
.wsbf{word-spacing:0.756000px;}
.ws77{word-spacing:0.780000px;}
.wsd6{word-spacing:0.810000px;}
.ws2b{word-spacing:0.840000px;}
.ws7f{word-spacing:0.864000px;}
.wse9{word-spacing:0.882000px;}
.ws2d{word-spacing:0.900000px;}
.ws32{word-spacing:0.912000px;}
.ws90{word-spacing:0.918000px;}
.wsf3{word-spacing:0.924000px;}
.ws81{word-spacing:0.960000px;}
.wsf4{word-spacing:0.966000px;}
.wsc0{word-spacing:0.972000px;}
.ws35{word-spacing:1.008000px;}
.ws11{word-spacing:1.020000px;}
.ws5c{word-spacing:1.026000px;}
.wsb7{word-spacing:1.056000px;}
.ws39{word-spacing:1.080000px;}
.ws1a{word-spacing:1.104000px;}
.ws26{word-spacing:1.122000px;}
.ws55{word-spacing:1.134000px;}
.ws3a{word-spacing:1.140000px;}
.ws1b{word-spacing:1.152000px;}
.ws25{word-spacing:1.173000px;}
.ws56{word-spacing:1.188000px;}
.wsbc{word-spacing:1.200000px;}
.ws21{word-spacing:1.224000px;}
.ws7c{word-spacing:1.242000px;}
.ws94{word-spacing:1.260000px;}
.wsa4{word-spacing:1.296000px;}
.ws50{word-spacing:1.320000px;}
.wsa3{word-spacing:1.350000px;}
.ws30{word-spacing:1.380000px;}
.ws4a{word-spacing:1.440000px;}
.ws103{word-spacing:1.458000px;}
.ws28{word-spacing:1.500000px;}
.ws102{word-spacing:1.512000px;}
.wsfd{word-spacing:2.268000px;}
.wsc5{word-spacing:2.376000px;}
.wsc4{word-spacing:2.430000px;}
.wsd0{word-spacing:2.484000px;}
.ws10f{word-spacing:2.700000px;}
.wsd1{word-spacing:2.754000px;}
.ws120{word-spacing:2.806500px;}
.wsd2{word-spacing:2.808000px;}
.ws121{word-spacing:2.818500px;}
.ws72{word-spacing:3.024000px;}
.wsd7{word-spacing:3.240000px;}
.ws114{word-spacing:3.283500px;}
.ws111{word-spacing:3.351000px;}
.ws115{word-spacing:3.373500px;}
.ws11d{word-spacing:3.387000px;}
.ws3{word-spacing:3.632700px;}
.ws6a{word-spacing:3.693000px;}
.wsd8{word-spacing:3.726000px;}
.wsd9{word-spacing:3.780000px;}
.ws10a{word-spacing:3.942000px;}
.ws112{word-spacing:4.080000px;}
.wsab{word-spacing:4.380000px;}
.wsaf{word-spacing:4.476000px;}
.wsa2{word-spacing:4.536000px;}
.ws11f{word-spacing:4.726500px;}
.wsea{word-spacing:4.752000px;}
.wsd4{word-spacing:5.130000px;}
.ws8{word-spacing:5.295000px;}
.ws27{word-spacing:5.640000px;}
.wsff{word-spacing:5.778000px;}
.ws100{word-spacing:6.318000px;}
.wsa1{word-spacing:6.480000px;}
.wsc1{word-spacing:7.290000px;}
.wsc2{word-spacing:7.344000px;}
.ws82{word-spacing:7.680000px;}
.wsb6{word-spacing:8.160000px;}
.ws10e{word-spacing:8.586000px;}
.ws10b{word-spacing:9.774000px;}
.wsdf{word-spacing:10.422000px;}
.wse0{word-spacing:10.476000px;}
.wsdc{word-spacing:13.770000px;}
.wsdd{word-spacing:13.824000px;}
.wsfe{word-spacing:15.930000px;}
.wsde{word-spacing:17.226000px;}
.ws8c{word-spacing:18.000000px;}
.ws47{word-spacing:36.000000px;}
.ws13{word-spacing:42.000000px;}
._b{margin-left:-6.960000px;}
._7{margin-left:-5.280000px;}
._1{margin-left:-3.672000px;}
._4{margin-left:-2.220000px;}
._0{margin-left:-1.173000px;}
._3{width:1.200000px;}
._c{width:2.280000px;}
._d{width:6.000000px;}
._11{width:9.924000px;}
._a{width:12.636000px;}
._e{width:13.878000px;}
._2{width:15.300000px;}
._f{width:30.000000px;}
._6{width:47.772000px;}
._5{width:54.000000px;}
._10{width:262.392000px;}
._9{width:263.490000px;}
._8{width:673.452000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:33.600000px;}
.fs2{font-size:35.700000px;}
.fsa{font-size:36.000000px;}
.fsb{font-size:37.800000px;}
.fs1{font-size:38.220000px;}
.fs9{font-size:40.500000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y100{bottom:54.615000px;}
.y1d1{bottom:54.885000px;}
.y1d{bottom:55.053000px;}
.y1ad{bottom:55.260000px;}
.y52{bottom:55.281000px;}
.y6f{bottom:55.350000px;}
.y9b{bottom:55.353000px;}
.yab{bottom:55.500000px;}
.y16b{bottom:55.662000px;}
.ye1{bottom:55.755000px;}
.y177{bottom:55.761000px;}
.y144{bottom:56.835000px;}
.y208{bottom:57.880500px;}
.y1c{bottom:69.297000px;}
.y51{bottom:69.525000px;}
.y6e{bottom:69.594000px;}
.y9a{bottom:69.609000px;}
.y16a{bottom:69.906000px;}
.y176{bottom:70.017000px;}
.y1d0{bottom:72.135000px;}
.y1ac{bottom:72.510000px;}
.y207{bottom:73.626000px;}
.y143{bottom:74.085000px;}
.y1b{bottom:83.541000px;}
.y50{bottom:83.781000px;}
.y99{bottom:83.853000px;}
.y6d{bottom:83.862000px;}
.y169{bottom:84.156000px;}
.y175{bottom:84.261000px;}
.y206{bottom:89.380500px;}
.yff{bottom:89.385000px;}
.y1ab{bottom:89.760000px;}
.y142{bottom:91.335000px;}
.y1a{bottom:97.797000px;}
.y4f{bottom:98.025000px;}
.y98{bottom:98.097000px;}
.y6c{bottom:98.106000px;}
.y168{bottom:98.412000px;}
.y174{bottom:98.505000px;}
.yaa{bottom:102.876000px;}
.y205{bottom:105.130500px;}
.ye0{bottom:106.635000px;}
.y1aa{bottom:107.010000px;}
.y141{bottom:108.585000px;}
.y19{bottom:112.041000px;}
.yd1{bottom:112.269000px;}
.y97{bottom:112.353000px;}
.y6b{bottom:112.380000px;}
.y167{bottom:112.656000px;}
.ya9{bottom:118.630500px;}
.y204{bottom:120.880500px;}
.ydf{bottom:123.885000px;}
.y1a9{bottom:124.260000px;}
.y140{bottom:125.835000px;}
.y18{bottom:126.285000px;}
.yd0{bottom:126.525000px;}
.y96{bottom:126.597000px;}
.y6a{bottom:126.636000px;}
.y166{bottom:126.900000px;}
.ya8{bottom:134.385000px;}
.y203{bottom:136.630500px;}
.y4e{bottom:140.385000px;}
.y17{bottom:140.541000px;}
.y95{bottom:140.841000px;}
.y69{bottom:140.880000px;}
.yde{bottom:141.135000px;}
.y1a8{bottom:141.510000px;}
.y196{bottom:141.847500px;}
.y13f{bottom:143.085000px;}
.y202{bottom:152.380500px;}
.y16{bottom:154.785000px;}
.y94{bottom:155.097000px;}
.y68{bottom:155.124000px;}
.y195{bottom:157.602000px;}
.y4d{bottom:157.635000px;}
.y186{bottom:157.656000px;}
.ydd{bottom:158.385000px;}
.y1a7{bottom:158.760000px;}
.y13e{bottom:160.335000px;}
.ya7{bottom:167.385000px;}
.ycf{bottom:167.625000px;}
.y201{bottom:168.130500px;}
.y93{bottom:169.341000px;}
.y67{bottom:169.380000px;}
.y118{bottom:170.320500px;}
.y194{bottom:173.356500px;}
.y185{bottom:173.410500px;}
.y4c{bottom:174.885000px;}
.ydc{bottom:175.635000px;}
.y1a6{bottom:176.010000px;}
.y13d{bottom:177.585000px;}
.y92{bottom:183.585000px;}
.y66{bottom:183.624000px;}
.y200{bottom:183.858000px;}
.yce{bottom:184.875000px;}
.y12a{bottom:185.994000px;}
.y117{bottom:186.075000px;}
.y193{bottom:189.111000px;}
.y184{bottom:189.165000px;}
.y4b{bottom:192.135000px;}
.y15{bottom:192.795000px;}
.ydb{bottom:192.885000px;}
.y1a5{bottom:193.260000px;}
.y13c{bottom:194.835000px;}
.y91{bottom:197.841000px;}
.y65{bottom:197.868000px;}
.y1ff{bottom:199.612500px;}
.y129{bottom:201.748500px;}
.y116{bottom:201.829500px;}
.ya6{bottom:201.876000px;}
.ycd{bottom:202.125000px;}
.y192{bottom:204.865500px;}
.y183{bottom:204.919500px;}
.y4a{bottom:209.385000px;}
.y14{bottom:210.045000px;}
.yda{bottom:210.135000px;}
.y1a4{bottom:210.510000px;}
.y13b{bottom:212.085000px;}
.y90{bottom:212.097000px;}
.y64{bottom:212.112000px;}
.y1fe{bottom:215.367000px;}
.y128{bottom:217.503000px;}
.y115{bottom:217.584000px;}
.ya5{bottom:217.630500px;}
.ycc{bottom:219.375000px;}
.y191{bottom:220.620000px;}
.y182{bottom:220.674000px;}
.y8f{bottom:226.341000px;}
.y63{bottom:226.356000px;}
.y13{bottom:227.295000px;}
.yd9{bottom:227.385000px;}
.y1a3{bottom:227.760000px;}
.y13a{bottom:229.335000px;}
.y1fd{bottom:231.121500px;}
.y127{bottom:233.257500px;}
.y114{bottom:233.338500px;}
.ya4{bottom:233.385000px;}
.y190{bottom:236.374500px;}
.y181{bottom:236.428500px;}
.ycb{bottom:236.625000px;}
.y8e{bottom:240.585000px;}
.y62{bottom:240.612000px;}
.y49{bottom:243.871500px;}
.y12{bottom:244.545000px;}
.yd8{bottom:244.635000px;}
.y1a2{bottom:245.010000px;}
.y139{bottom:246.585000px;}
.y1fc{bottom:246.876000px;}
.y126{bottom:249.012000px;}
.y113{bottom:249.093000px;}
.y18f{bottom:252.129000px;}
.y180{bottom:252.183000px;}
.yca{bottom:253.875000px;}
.y61{bottom:254.856000px;}
.y48{bottom:259.626000px;}
.y11{bottom:261.795000px;}
.yd7{bottom:261.885000px;}
.y1a1{bottom:262.260000px;}
.y1fb{bottom:262.630500px;}
.y138{bottom:263.835000px;}
.y125{bottom:264.766500px;}
.y112{bottom:264.847500px;}
.ya3{bottom:266.385000px;}
.y18e{bottom:267.883500px;}
.y17f{bottom:267.937500px;}
.y60{bottom:269.100000px;}
.yc9{bottom:271.125000px;}
.y47{bottom:275.380500px;}
.y1fa{bottom:278.380500px;}
.y10{bottom:279.045000px;}
.yd6{bottom:279.135000px;}
.y1a0{bottom:279.510000px;}
.y124{bottom:280.521000px;}
.y111{bottom:280.602000px;}
.y137{bottom:281.085000px;}
.y8d{bottom:282.135000px;}
.y18d{bottom:283.638000px;}
.y17e{bottom:283.692000px;}
.yc8{bottom:288.375000px;}
.y46{bottom:291.135000px;}
.y1f9{bottom:294.130500px;}
.y123{bottom:296.275500px;}
.yf{bottom:296.295000px;}
.y110{bottom:296.356500px;}
.yd5{bottom:296.385000px;}
.y19f{bottom:296.760000px;}
.y136{bottom:298.335000px;}
.y8c{bottom:299.385000px;}
.y18c{bottom:299.392500px;}
.y17d{bottom:299.446500px;}
.ya2{bottom:300.876000px;}
.yc7{bottom:305.625000px;}
.y5f{bottom:306.880500px;}
.y1f8{bottom:309.880500px;}
.y122{bottom:312.030000px;}
.y10f{bottom:312.111000px;}
.ye{bottom:313.545000px;}
.yd4{bottom:313.635000px;}
.y19e{bottom:314.010000px;}
.y18b{bottom:315.147000px;}
.y17c{bottom:315.201000px;}
.ya1{bottom:316.630500px;}
.y8b{bottom:316.635000px;}
.y5e{bottom:322.612500px;}
.yc6{bottom:322.875000px;}
.y45{bottom:324.135000px;}
.y1f7{bottom:325.626000px;}
.y121{bottom:327.784500px;}
.y10e{bottom:327.865500px;}
.yd{bottom:330.795000px;}
.yd3{bottom:330.885000px;}
.y18a{bottom:330.901500px;}
.y17b{bottom:330.955500px;}
.y19d{bottom:331.260000px;}
.ya0{bottom:332.385000px;}
.y8a{bottom:333.885000px;}
.y135{bottom:334.711500px;}
.y5d{bottom:338.367000px;}
.yc5{bottom:340.125000px;}
.y1f6{bottom:341.380500px;}
.y44{bottom:341.385000px;}
.y120{bottom:343.539000px;}
.y10d{bottom:343.620000px;}
.y189{bottom:346.656000px;}
.y17a{bottom:346.710000px;}
.yc{bottom:348.045000px;}
.yd2{bottom:348.135000px;}
.y19c{bottom:348.510000px;}
.y134{bottom:350.466000px;}
.y89{bottom:351.135000px;}
.y5c{bottom:354.121500px;}
.y1f5{bottom:357.130500px;}
.yc4{bottom:357.375000px;}
.y43{bottom:358.635000px;}
.y11f{bottom:359.293500px;}
.y10c{bottom:359.374500px;}
.y188{bottom:362.410500px;}
.y179{bottom:362.464500px;}
.yb{bottom:365.295000px;}
.y9f{bottom:365.385000px;}
.y19b{bottom:365.760000px;}
.y133{bottom:366.220500px;}
.y88{bottom:368.385000px;}
.y5b{bottom:369.876000px;}
.y1ee{bottom:372.610500px;}
.y1f4{bottom:372.867000px;}
.yc3{bottom:374.625000px;}
.y11e{bottom:375.048000px;}
.y10b{bottom:375.129000px;}
.y42{bottom:375.885000px;}
.y132{bottom:381.975000px;}
.ya{bottom:382.545000px;}
.y9e{bottom:382.635000px;}
.y19a{bottom:383.010000px;}
.y5a{bottom:385.630500px;}
.y87{bottom:385.635000px;}
.y1df{bottom:388.365000px;}
.y1f3{bottom:388.621500px;}
.y11d{bottom:390.802500px;}
.y10a{bottom:390.883500px;}
.yc2{bottom:391.875000px;}
.y187{bottom:393.906000px;}
.y178{bottom:393.960000px;}
.y9{bottom:399.795000px;}
.y9d{bottom:399.885000px;}
.y199{bottom:400.260000px;}
.y59{bottom:401.385000px;}
.y86{bottom:402.885000px;}
.y1de{bottom:404.119500px;}
.y1f2{bottom:404.376000px;}
.y11c{bottom:406.557000px;}
.y109{bottom:406.638000px;}
.yc1{bottom:409.125000px;}
.y41{bottom:410.358000px;}
.y131{bottom:416.850000px;}
.y9c{bottom:417.135000px;}
.y198{bottom:417.510000px;}
.y1f1{bottom:420.130500px;}
.y85{bottom:420.135000px;}
.y11b{bottom:422.311500px;}
.y108{bottom:422.392500px;}
.y40{bottom:426.112500px;}
.y173{bottom:426.135000px;}
.yc0{bottom:426.375000px;}
.y130{bottom:434.100000px;}
.y58{bottom:434.385000px;}
.y197{bottom:434.760000px;}
.y1dd{bottom:435.597000px;}
.y1ed{bottom:435.601500px;}
.y21e{bottom:435.880500px;}
.y1f0{bottom:435.885000px;}
.y84{bottom:437.385000px;}
.y11a{bottom:438.066000px;}
.y107{bottom:438.147000px;}
.y3f{bottom:441.867000px;}
.y172{bottom:443.385000px;}
.ybf{bottom:443.625000px;}
.y12f{bottom:451.350000px;}
.y21d{bottom:451.626000px;}
.y57{bottom:451.635000px;}
.y106{bottom:453.901500px;}
.y83{bottom:454.635000px;}
.yfe{bottom:457.513500px;}
.y3e{bottom:457.621500px;}
.y1ef{bottom:460.260000px;}
.ybe{bottom:460.875000px;}
.y8{bottom:465.090000px;}
.y21c{bottom:467.380500px;}
.y12e{bottom:468.600000px;}
.y56{bottom:468.885000px;}
.y105{bottom:469.656000px;}
.y82{bottom:471.885000px;}
.yfd{bottom:473.268000px;}
.yef{bottom:473.322000px;}
.y3d{bottom:473.376000px;}
.y1c0{bottom:475.531500px;}
.y171{bottom:477.867000px;}
.ybd{bottom:478.125000px;}
.y7{bottom:480.108000px;}
.y1ec{bottom:482.851500px;}
.y21b{bottom:483.126000px;}
.y104{bottom:485.410500px;}
.y12d{bottom:485.850000px;}
.y55{bottom:486.135000px;}
.yfc{bottom:489.022500px;}
.yee{bottom:489.076500px;}
.y3c{bottom:489.130500px;}
.y81{bottom:489.135000px;}
.y1bf{bottom:491.286000px;}
.y170{bottom:493.621500px;}
.y6{bottom:495.102000px;}
.ybc{bottom:495.375000px;}
.y1dc{bottom:498.601500px;}
.y1eb{bottom:498.606000px;}
.y21a{bottom:498.880500px;}
.y103{bottom:501.165000px;}
.y12c{bottom:503.100000px;}
.y54{bottom:503.385000px;}
.yfb{bottom:504.777000px;}
.yed{bottom:504.831000px;}
.y3b{bottom:504.885000px;}
.y80{bottom:506.385000px;}
.y1be{bottom:507.040500px;}
.y16f{bottom:509.376000px;}
.y5{bottom:510.096000px;}
.ybb{bottom:512.625000px;}
.y1db{bottom:514.356000px;}
.y1ea{bottom:514.360500px;}
.y219{bottom:514.630500px;}
.y102{bottom:516.919500px;}
.y12b{bottom:520.350000px;}
.yfa{bottom:520.531500px;}
.yec{bottom:520.585500px;}
.y53{bottom:520.635000px;}
.y1bd{bottom:522.795000px;}
.y7f{bottom:523.635000px;}
.y4{bottom:525.090000px;}
.y16e{bottom:525.130500px;}
.yba{bottom:529.875000px;}
.y218{bottom:530.376000px;}
.yf9{bottom:536.286000px;}
.yeb{bottom:536.340000px;}
.y1cf{bottom:536.914500px;}
.y3a{bottom:537.885000px;}
.y1bc{bottom:538.549500px;}
.y3{bottom:540.095250px;}
.y7e{bottom:540.885000px;}
.y1da{bottom:545.851500px;}
.y1e9{bottom:545.856000px;}
.y217{bottom:546.130500px;}
.yb9{bottom:547.125000px;}
.y119{bottom:548.320500px;}
.y101{bottom:548.415000px;}
.yf8{bottom:552.040500px;}
.yea{bottom:552.094500px;}
.y1ce{bottom:552.669000px;}
.y165{bottom:554.163000px;}
.y1bb{bottom:554.304000px;}
.y2{bottom:555.089250px;}
.y39{bottom:555.135000px;}
.y7d{bottom:558.135000px;}
.y216{bottom:561.858000px;}
.yb8{bottom:564.375000px;}
.yf7{bottom:567.795000px;}
.ye9{bottom:567.849000px;}
.y1cd{bottom:568.423500px;}
.y164{bottom:569.917500px;}
.y154{bottom:569.971500px;}
.y1ba{bottom:570.058500px;}
.y38{bottom:572.385000px;}
.y16d{bottom:573.885000px;}
.y7c{bottom:575.385000px;}
.y215{bottom:577.612500px;}
.yb7{bottom:581.625000px;}
.yf6{bottom:583.549500px;}
.ye8{bottom:583.603500px;}
.y1cc{bottom:584.178000px;}
.y1{bottom:585.090000px;}
.y163{bottom:585.672000px;}
.y153{bottom:585.726000px;}
.y1b9{bottom:585.813000px;}
.y37{bottom:589.635000px;}
.y7b{bottom:592.635000px;}
.y1e8{bottom:593.106000px;}
.y214{bottom:593.367000px;}
.yb6{bottom:598.875000px;}
.yf5{bottom:599.304000px;}
.ye7{bottom:599.358000px;}
.y1cb{bottom:599.932500px;}
.y162{bottom:601.426500px;}
.y152{bottom:601.480500px;}
.y1b8{bottom:601.567500px;}
.y36{bottom:606.885000px;}
.y16c{bottom:608.385000px;}
.y1d9{bottom:608.856000px;}
.y1e7{bottom:608.860500px;}
.y213{bottom:609.121500px;}
.y7a{bottom:609.885000px;}
.y28{bottom:612.675000px;}
.yf4{bottom:615.058500px;}
.ye6{bottom:615.112500px;}
.y1ca{bottom:615.687000px;}
.yb5{bottom:616.125000px;}
.y161{bottom:617.181000px;}
.y151{bottom:617.235000px;}
.y1b7{bottom:617.322000px;}
.y35{bottom:624.135000px;}
.y212{bottom:624.876000px;}
.y79{bottom:627.135000px;}
.yf3{bottom:630.813000px;}
.ye5{bottom:630.867000px;}
.y1c9{bottom:631.441500px;}
.y160{bottom:632.935500px;}
.y150{bottom:632.989500px;}
.y1b6{bottom:633.076500px;}
.yb4{bottom:633.375000px;}
.y27{bottom:638.214000px;}
.y1d8{bottom:640.351500px;}
.y1e6{bottom:640.356000px;}
.y211{bottom:640.630500px;}
.y34{bottom:641.385000px;}
.y78{bottom:644.385000px;}
.yf2{bottom:646.567500px;}
.ye4{bottom:646.621500px;}
.y1c8{bottom:647.196000px;}
.y15f{bottom:648.690000px;}
.y14f{bottom:648.744000px;}
.y1b5{bottom:648.831000px;}
.yb3{bottom:650.625000px;}
.y26{bottom:652.470000px;}
.y210{bottom:656.371500px;}
.y33{bottom:658.635000px;}
.y77{bottom:661.635000px;}
.y1c7{bottom:662.950500px;}
.y15e{bottom:664.444500px;}
.y14e{bottom:664.498500px;}
.y1b4{bottom:664.585500px;}
.yb2{bottom:667.875000px;}
.y25{bottom:670.470000px;}
.y20f{bottom:672.126000px;}
.y32{bottom:675.885000px;}
.y1c6{bottom:678.705000px;}
.y76{bottom:678.885000px;}
.yf1{bottom:679.561500px;}
.ye3{bottom:679.615500px;}
.y15d{bottom:680.199000px;}
.y14d{bottom:680.253000px;}
.y1b3{bottom:680.340000px;}
.yb1{bottom:685.125000px;}
.y1d7{bottom:687.601500px;}
.y1e5{bottom:687.606000px;}
.y20e{bottom:687.880500px;}
.y31{bottom:693.135000px;}
.y1c5{bottom:694.459500px;}
.y24{bottom:694.833000px;}
.yf0{bottom:695.316000px;}
.ye2{bottom:695.370000px;}
.y15c{bottom:695.953500px;}
.y14c{bottom:696.007500px;}
.y1b2{bottom:696.094500px;}
.y75{bottom:696.135000px;}
.yb0{bottom:702.375000px;}
.y1d6{bottom:703.356000px;}
.y1e4{bottom:703.360500px;}
.y20d{bottom:703.630500px;}
.y23{bottom:709.089000px;}
.y30{bottom:710.385000px;}
.y15b{bottom:711.708000px;}
.y14b{bottom:711.762000px;}
.y74{bottom:713.385000px;}
.y1d5{bottom:719.110500px;}
.y1e3{bottom:719.115000px;}
.y20c{bottom:719.367000px;}
.yaf{bottom:719.625000px;}
.y22{bottom:723.345000px;}
.y1c4{bottom:725.955000px;}
.y15a{bottom:727.462500px;}
.y14a{bottom:727.516500px;}
.y1b1{bottom:727.590000px;}
.y2f{bottom:727.635000px;}
.y73{bottom:730.635000px;}
.y1d4{bottom:734.865000px;}
.y1e2{bottom:734.869500px;}
.y20b{bottom:735.121500px;}
.y21{bottom:741.345000px;}
.y159{bottom:743.217000px;}
.y149{bottom:743.271000px;}
.y2e{bottom:744.885000px;}
.y72{bottom:747.885000px;}
.y1d3{bottom:750.619500px;}
.y1e1{bottom:750.624000px;}
.y20a{bottom:750.876000px;}
.yae{bottom:751.746000px;}
.y158{bottom:758.971500px;}
.y148{bottom:759.025500px;}
.y2d{bottom:762.135000px;}
.y209{bottom:766.630500px;}
.yad{bottom:767.500500px;}
.y1c3{bottom:773.205000px;}
.y157{bottom:774.726000px;}
.y147{bottom:774.780000px;}
.y1b0{bottom:774.840000px;}
.y2c{bottom:779.385000px;}
.y1d2{bottom:782.115000px;}
.y1e0{bottom:782.119500px;}
.y71{bottom:782.376000px;}
.yac{bottom:783.255000px;}
.y20{bottom:786.345000px;}
.y1c2{bottom:788.959500px;}
.y156{bottom:790.480500px;}
.y146{bottom:790.534500px;}
.y1af{bottom:790.594500px;}
.y2b{bottom:796.635000px;}
.y70{bottom:798.130500px;}
.y1f{bottom:810.345000px;}
.y2a{bottom:813.885000px;}
.y1c1{bottom:820.402500px;}
.y155{bottom:821.976000px;}
.y145{bottom:822.030000px;}
.y1ae{bottom:822.090000px;}
.y1e{bottom:861.345000px;}
.y29{bottom:924.000000px;}
.hb{height:47.085938px;}
.h7{height:47.109375px;}
.h8{height:48.375000px;}
.h10{height:49.678500px;}
.h2{height:50.053711px;}
.h1{height:51.398438px;}
.h3{height:51.837598px;}
.h11{height:52.971680px;}
.ha{height:52.998047px;}
.h17{height:53.016047px;}
.h18{height:53.034047px;}
.h1a{height:53.052047px;}
.h16{height:53.070047px;}
.hd{height:53.088047px;}
.h19{height:53.106047px;}
.hc{height:54.421875px;}
.he{height:54.954633px;}
.h12{height:55.915313px;}
.h15{height:55.969312px;}
.h14{height:55.987312px;}
.h13{height:56.125312px;}
.h4{height:58.886719px;}
.h6{height:60.468750px;}
.h5{height:61.020703px;}
.hf{height:62.128125px;}
.h9{height:94.218750px;}
.h0{height:894.000000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x6{left:4.500000px;}
.x1{left:74.700000px;}
.x7{left:75.915000px;}
.xe{left:89.712000px;}
.xd{left:90.940500px;}
.x2{left:91.950000px;}
.x8{left:93.165000px;}
.x3{left:97.176000px;}
.x9{left:98.415000px;}
.xa{left:326.758500px;}
.xc{left:327.847500px;}
.xb{left:349.263000px;}
.x4{left:412.380000px;}
.x5{left:414.870000px;}
@media print{
.v4{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.933333pt;}
.v3{vertical-align:15.872000pt;}
.v2{vertical-align:17.600000pt;}
.lsb4{letter-spacing:-1.776000pt;}
.lsa1{letter-spacing:-1.536000pt;}
.lsa2{letter-spacing:-1.488000pt;}
.lsa0{letter-spacing:-1.392000pt;}
.lsb2{letter-spacing:-1.344000pt;}
.lsb3{letter-spacing:-1.332000pt;}
.ls59{letter-spacing:-1.226667pt;}
.ls89{letter-spacing:-1.200000pt;}
.lsad{letter-spacing:-1.188000pt;}
.ls30{letter-spacing:-1.173333pt;}
.ls43{letter-spacing:-1.152000pt;}
.ls44{letter-spacing:-1.104000pt;}
.ls64{letter-spacing:-1.066667pt;}
.ls74{letter-spacing:-1.056000pt;}
.ls18{letter-spacing:-1.013333pt;}
.ls80{letter-spacing:-1.008000pt;}
.ls63{letter-spacing:-0.960000pt;}
.ls2c{letter-spacing:-0.912000pt;}
.ls54{letter-spacing:-0.906667pt;}
.ls2b{letter-spacing:-0.864000pt;}
.ls9e{letter-spacing:-0.858667pt;}
.ls7d{letter-spacing:-0.853333pt;}
.ls14{letter-spacing:-0.816000pt;}
.ls28{letter-spacing:-0.800000pt;}
.ls6b{letter-spacing:-0.768000pt;}
.ls53{letter-spacing:-0.746667pt;}
.ls9f{letter-spacing:-0.720000pt;}
.ls8f{letter-spacing:-0.709333pt;}
.ls56{letter-spacing:-0.693333pt;}
.lsaf{letter-spacing:-0.684000pt;}
.ls1f{letter-spacing:-0.682667pt;}
.ls31{letter-spacing:-0.672000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.624000pt;}
.ls6d{letter-spacing:-0.597333pt;}
.ls12{letter-spacing:-0.589333pt;}
.ls19{letter-spacing:-0.586667pt;}
.ls10{letter-spacing:-0.577547pt;}
.ls2a{letter-spacing:-0.576000pt;}
.ls49{letter-spacing:-0.554667pt;}
.lsb0{letter-spacing:-0.540000pt;}
.ls58{letter-spacing:-0.533333pt;}
.ls29{letter-spacing:-0.528000pt;}
.ls4a{letter-spacing:-0.512000pt;}
.lsb1{letter-spacing:-0.504000pt;}
.ls57{letter-spacing:-0.480000pt;}
.ls48{letter-spacing:-0.448000pt;}
.ls88{letter-spacing:-0.432000pt;}
.ls40{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.412533pt;}
.lsbc{letter-spacing:-0.396000pt;}
.ls87{letter-spacing:-0.384000pt;}
.ls41{letter-spacing:-0.373333pt;}
.lsbb{letter-spacing:-0.360000pt;}
.ls96{letter-spacing:-0.341333pt;}
.ls7f{letter-spacing:-0.336000pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.298667pt;}
.ls7e{letter-spacing:-0.288000pt;}
.ls13{letter-spacing:-0.272000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls5a{letter-spacing:-0.261333pt;}
.ls34{letter-spacing:-0.256000pt;}
.ls42{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls2e{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.149333pt;}
.ls2d{letter-spacing:-0.144000pt;}
.ls46{letter-spacing:-0.128000pt;}
.ls3e{letter-spacing:-0.106667pt;}
.ls52{letter-spacing:-0.096000pt;}
.ls47{letter-spacing:-0.085333pt;}
.ls3f{letter-spacing:-0.080000pt;}
.ls2f{letter-spacing:-0.053333pt;}
.ls1e{letter-spacing:-0.048000pt;}
.ls1c{letter-spacing:-0.042667pt;}
.lsa7{letter-spacing:-0.033600pt;}
.ls92{letter-spacing:-0.029867pt;}
.lse{letter-spacing:0.000000pt;}
.lsb6{letter-spacing:0.005333pt;}
.lsb5{letter-spacing:0.010667pt;}
.lsa5{letter-spacing:0.021333pt;}
.lsaa{letter-spacing:0.026667pt;}
.lsa8{letter-spacing:0.030667pt;}
.lsae{letter-spacing:0.036000pt;}
.ls90{letter-spacing:0.037333pt;}
.ls4f{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.045333pt;}
.ls38{letter-spacing:0.048000pt;}
.ls20{letter-spacing:0.053333pt;}
.lsa6{letter-spacing:0.058667pt;}
.ls7c{letter-spacing:0.074667pt;}
.ls6a{letter-spacing:0.085333pt;}
.ls2{letter-spacing:0.090667pt;}
.ls72{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.106667pt;}
.lsac{letter-spacing:0.108000pt;}
.lsd{letter-spacing:0.128000pt;}
.lsab{letter-spacing:0.133333pt;}
.ls62{letter-spacing:0.144000pt;}
.ls22{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.170667pt;}
.ls93{letter-spacing:0.186667pt;}
.ls25{letter-spacing:0.192000pt;}
.ls3c{letter-spacing:0.213333pt;}
.ls24{letter-spacing:0.240000pt;}
.ls51{letter-spacing:0.256000pt;}
.ls91{letter-spacing:0.261333pt;}
.ls75{letter-spacing:0.266667pt;}
.ls26{letter-spacing:0.288000pt;}
.ls3a{letter-spacing:0.298667pt;}
.ls23{letter-spacing:0.320000pt;}
.ls55{letter-spacing:0.336000pt;}
.ls39{letter-spacing:0.341333pt;}
.ls7{letter-spacing:0.373333pt;}
.ls73{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls4b{letter-spacing:0.432000pt;}
.lsb8{letter-spacing:0.468000pt;}
.ls3b{letter-spacing:0.469333pt;}
.lsb7{letter-spacing:0.474667pt;}
.ls4c{letter-spacing:0.480000pt;}
.lsb9{letter-spacing:0.506667pt;}
.ls4d{letter-spacing:0.512000pt;}
.ls70{letter-spacing:0.528000pt;}
.ls6{letter-spacing:0.533333pt;}
.lsba{letter-spacing:0.540000pt;}
.lsf{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.554667pt;}
.ls7a{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.589333pt;}
.ls9{letter-spacing:0.597333pt;}
.ls77{letter-spacing:0.624000pt;}
.ls67{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.672000pt;}
.ls69{letter-spacing:0.693333pt;}
.ls5d{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls6e{letter-spacing:0.800000pt;}
.lsb{letter-spacing:0.810667pt;}
.ls79{letter-spacing:0.816000pt;}
.ls61{letter-spacing:0.853333pt;}
.ls7b{letter-spacing:0.864000pt;}
.ls78{letter-spacing:0.912000pt;}
.ls6c{letter-spacing:0.933333pt;}
.ls4e{letter-spacing:0.938667pt;}
.ls71{letter-spacing:0.960000pt;}
.ls5b{letter-spacing:0.981333pt;}
.ls3d{letter-spacing:1.066667pt;}
.ls6f{letter-spacing:1.152000pt;}
.ls36{letter-spacing:1.200000pt;}
.ls37{letter-spacing:1.224000pt;}
.ls8d{letter-spacing:1.226667pt;}
.ls45{letter-spacing:1.248000pt;}
.ls5c{letter-spacing:1.280000pt;}
.ls86{letter-spacing:1.296000pt;}
.ls3{letter-spacing:1.333333pt;}
.ls84{letter-spacing:1.344000pt;}
.ls9c{letter-spacing:1.392000pt;}
.ls9d{letter-spacing:1.440000pt;}
.ls85{letter-spacing:1.488000pt;}
.ls83{letter-spacing:1.632000pt;}
.ls9b{letter-spacing:8.053333pt;}
.lsa4{letter-spacing:10.346667pt;}
.lsa9{letter-spacing:10.704000pt;}
.ls8e{letter-spacing:10.773333pt;}
.ls9a{letter-spacing:11.840000pt;}
.ls50{letter-spacing:11.989333pt;}
.ls76{letter-spacing:12.000000pt;}
.ls95{letter-spacing:12.048000pt;}
.ls82{letter-spacing:12.213333pt;}
.ls65{letter-spacing:12.320000pt;}
.ls94{letter-spacing:12.373333pt;}
.ls98{letter-spacing:12.586667pt;}
.lsa3{letter-spacing:12.746667pt;}
.ls99{letter-spacing:12.800000pt;}
.ls81{letter-spacing:12.853333pt;}
.ls5e{letter-spacing:12.960000pt;}
.ls8a{letter-spacing:13.226667pt;}
.ls60{letter-spacing:13.333333pt;}
.ls97{letter-spacing:13.760000pt;}
.ls66{letter-spacing:14.026667pt;}
.ls21{letter-spacing:14.666667pt;}
.ls8c{letter-spacing:14.720000pt;}
.ls8b{letter-spacing:14.826667pt;}
.ls68{letter-spacing:15.306667pt;}
.ls5f{letter-spacing:21.333333pt;}
.ws9d{word-spacing:-14.666667pt;}
.wsee{word-spacing:-14.560000pt;}
.wsc9{word-spacing:-14.080000pt;}
.wsed{word-spacing:-14.026667pt;}
.ws10{word-spacing:-13.866667pt;}
.ws8a{word-spacing:-13.813333pt;}
.wsf{word-spacing:-13.760000pt;}
.wseb{word-spacing:-13.706667pt;}
.wsa9{word-spacing:-13.653333pt;}
.wsf7{word-spacing:-13.600000pt;}
.wse4{word-spacing:-13.546667pt;}
.ws12{word-spacing:-13.440000pt;}
.ws37{word-spacing:-13.386667pt;}
.wse5{word-spacing:-13.344000pt;}
.ws7{word-spacing:-13.333333pt;}
.ws42{word-spacing:-13.280000pt;}
.ws6b{word-spacing:-13.248000pt;}
.ws63{word-spacing:-13.226667pt;}
.ws6c{word-spacing:-13.200000pt;}
.ws38{word-spacing:-13.173333pt;}
.ws3b{word-spacing:-13.120000pt;}
.ws9b{word-spacing:-13.066667pt;}
.wsa6{word-spacing:-13.013333pt;}
.ws65{word-spacing:-12.960000pt;}
.wsf9{word-spacing:-12.912000pt;}
.ws64{word-spacing:-12.906667pt;}
.wsaa{word-spacing:-12.853333pt;}
.wscf{word-spacing:-12.816000pt;}
.ws88{word-spacing:-12.800000pt;}
.wse{word-spacing:-12.746667pt;}
.wsc{word-spacing:-12.693333pt;}
.ws68{word-spacing:-12.672000pt;}
.wsa7{word-spacing:-12.640000pt;}
.wsfa{word-spacing:-12.624000pt;}
.ws9e{word-spacing:-12.586667pt;}
.wsae{word-spacing:-12.533333pt;}
.wsfb{word-spacing:-12.528000pt;}
.wsc8{word-spacing:-12.480000pt;}
.wscb{word-spacing:-12.432000pt;}
.ws9a{word-spacing:-12.373333pt;}
.wse6{word-spacing:-12.336000pt;}
.wsac{word-spacing:-12.320000pt;}
.ws44{word-spacing:-12.288000pt;}
.ws9c{word-spacing:-12.266667pt;}
.wsbb{word-spacing:-12.240000pt;}
.wsb8{word-spacing:-12.192000pt;}
.ws43{word-spacing:-12.160000pt;}
.ws9f{word-spacing:-12.144000pt;}
.ws104{word-spacing:-12.106667pt;}
.wse7{word-spacing:-12.096000pt;}
.ws10c{word-spacing:-12.048000pt;}
.ws41{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.952000pt;}
.ws85{word-spacing:-11.904000pt;}
.ws1{word-spacing:-11.877333pt;}
.ws40{word-spacing:-11.808000pt;}
.ws67{word-spacing:-11.760000pt;}
.wsca{word-spacing:-11.712000pt;}
.wsce{word-spacing:-11.664000pt;}
.wse2{word-spacing:-11.616000pt;}
.ws8f{word-spacing:-11.605333pt;}
.wse8{word-spacing:-11.568000pt;}
.ws110{word-spacing:-11.520000pt;}
.wsb9{word-spacing:-11.472000pt;}
.ws3d{word-spacing:-11.424000pt;}
.ws46{word-spacing:-11.376000pt;}
.ws0{word-spacing:-11.333333pt;}
.ws45{word-spacing:-11.328000pt;}
.ws16{word-spacing:-11.264000pt;}
.wsf8{word-spacing:-11.232000pt;}
.ws14{word-spacing:-11.221333pt;}
.wsba{word-spacing:-11.184000pt;}
.ws8e{word-spacing:-11.178667pt;}
.ws3f{word-spacing:-11.136000pt;}
.ws3e{word-spacing:-11.088000pt;}
.ws5{word-spacing:-11.061333pt;}
.ws70{word-spacing:-11.008000pt;}
.wscd{word-spacing:-10.992000pt;}
.ws6d{word-spacing:-10.965333pt;}
.wscc{word-spacing:-10.944000pt;}
.ws69{word-spacing:-10.848000pt;}
.ws118{word-spacing:-10.800000pt;}
.wsb0{word-spacing:-10.752000pt;}
.ws4{word-spacing:-10.744000pt;}
.ws18{word-spacing:-10.666667pt;}
.ws17{word-spacing:-10.624000pt;}
.ws6f{word-spacing:-10.581333pt;}
.ws6e{word-spacing:-10.538667pt;}
.ws6{word-spacing:-10.517333pt;}
.ws107{word-spacing:-10.464000pt;}
.ws49{word-spacing:-10.410667pt;}
.ws48{word-spacing:-10.368000pt;}
.ws71{word-spacing:-10.240000pt;}
.ws74{word-spacing:-10.154667pt;}
.ws73{word-spacing:-10.112000pt;}
.ws62{word-spacing:-9.920000pt;}
.ws9{word-spacing:-9.840000pt;}
.ws87{word-spacing:-9.669333pt;}
.ws123{word-spacing:-9.540000pt;}
.ws122{word-spacing:-9.468000pt;}
.wsc7{word-spacing:-9.408000pt;}
.wsb{word-spacing:-9.333333pt;}
.wsa{word-spacing:-9.184000pt;}
.ws119{word-spacing:-9.108000pt;}
.ws8b{word-spacing:-9.072000pt;}
.ws11e{word-spacing:-9.036000pt;}
.ws113{word-spacing:-9.000000pt;}
.ws106{word-spacing:-8.960000pt;}
.wsad{word-spacing:-8.661333pt;}
.ws124{word-spacing:-8.640000pt;}
.ws125{word-spacing:-8.604000pt;}
.wse1{word-spacing:-8.586667pt;}
.ws11b{word-spacing:-8.496000pt;}
.ws105{word-spacing:-8.474667pt;}
.ws11a{word-spacing:-8.460000pt;}
.ws86{word-spacing:-8.400000pt;}
.ws116{word-spacing:-8.316000pt;}
.ws75{word-spacing:-8.000000pt;}
.ws2{word-spacing:-7.915787pt;}
.ws117{word-spacing:-7.812000pt;}
.ws11c{word-spacing:-7.668000pt;}
.wsef{word-spacing:-7.436800pt;}
.ws36{word-spacing:-6.997333pt;}
.wsec{word-spacing:-3.093333pt;}
.wsa8{word-spacing:-0.853333pt;}
.ws3c{word-spacing:-0.800000pt;}
.wse3{word-spacing:-0.746667pt;}
.ws89{word-spacing:-0.693333pt;}
.ws2f{word-spacing:-0.640000pt;}
.ws52{word-spacing:-0.624000pt;}
.ws78{word-spacing:-0.586667pt;}
.ws51{word-spacing:-0.576000pt;}
.ws33{word-spacing:-0.554667pt;}
.ws4d{word-spacing:-0.533333pt;}
.ws91{word-spacing:-0.528000pt;}
.ws83{word-spacing:-0.512000pt;}
.ws29{word-spacing:-0.480000pt;}
.ws99{word-spacing:-0.469333pt;}
.ws59{word-spacing:-0.432000pt;}
.ws4c{word-spacing:-0.426667pt;}
.ws10d{word-spacing:-0.410667pt;}
.wsa5{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.373333pt;}
.ws7d{word-spacing:-0.341333pt;}
.ws79{word-spacing:-0.336000pt;}
.ws4b{word-spacing:-0.320000pt;}
.ws61{word-spacing:-0.298667pt;}
.wsd3{word-spacing:-0.288000pt;}
.ws23{word-spacing:-0.272000pt;}
.ws76{word-spacing:-0.266667pt;}
.ws109{word-spacing:-0.261333pt;}
.ws60{word-spacing:-0.256000pt;}
.wsd5{word-spacing:-0.240000pt;}
.ws95{word-spacing:-0.213333pt;}
.ws66{word-spacing:-0.192000pt;}
.wsfc{word-spacing:-0.170667pt;}
.ws4f{word-spacing:-0.160000pt;}
.wsf5{word-spacing:-0.149333pt;}
.ws101{word-spacing:-0.144000pt;}
.ws84{word-spacing:-0.128000pt;}
.wsb2{word-spacing:-0.112000pt;}
.ws2c{word-spacing:-0.106667pt;}
.ws54{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.085333pt;}
.wsd{word-spacing:-0.053333pt;}
.ws53{word-spacing:-0.048000pt;}
.ws8d{word-spacing:-0.042667pt;}
.wsf0{word-spacing:-0.037333pt;}
.ws1d{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.042667pt;}
.ws22{word-spacing:0.045333pt;}
.ws5d{word-spacing:0.048000pt;}
.ws5a{word-spacing:0.053333pt;}
.wsb3{word-spacing:0.074667pt;}
.ws98{word-spacing:0.085333pt;}
.ws5e{word-spacing:0.096000pt;}
.ws92{word-spacing:0.106667pt;}
.ws97{word-spacing:0.128000pt;}
.wsc3{word-spacing:0.144000pt;}
.wsb5{word-spacing:0.149333pt;}
.ws4e{word-spacing:0.160000pt;}
.wsb1{word-spacing:0.192000pt;}
.ws93{word-spacing:0.213333pt;}
.wsf2{word-spacing:0.224000pt;}
.ws58{word-spacing:0.240000pt;}
.ws34{word-spacing:0.256000pt;}
.wsa0{word-spacing:0.266667pt;}
.ws24{word-spacing:0.272000pt;}
.ws57{word-spacing:0.288000pt;}
.ws108{word-spacing:0.298667pt;}
.wsf1{word-spacing:0.320000pt;}
.ws7a{word-spacing:0.336000pt;}
.ws2a{word-spacing:0.373333pt;}
.ws19{word-spacing:0.384000pt;}
.wsbe{word-spacing:0.426667pt;}
.ws7b{word-spacing:0.432000pt;}
.ws15{word-spacing:0.469333pt;}
.ws5b{word-spacing:0.480000pt;}
.wsb4{word-spacing:0.485333pt;}
.wsc6{word-spacing:0.528000pt;}
.wsbd{word-spacing:0.533333pt;}
.ws20{word-spacing:0.544000pt;}
.ws96{word-spacing:0.554667pt;}
.ws2e{word-spacing:0.560000pt;}
.wsda{word-spacing:0.576000pt;}
.ws5f{word-spacing:0.586667pt;}
.ws80{word-spacing:0.597333pt;}
.wsdb{word-spacing:0.624000pt;}
.wsf6{word-spacing:0.634667pt;}
.ws7e{word-spacing:0.640000pt;}
.wsbf{word-spacing:0.672000pt;}
.ws77{word-spacing:0.693333pt;}
.wsd6{word-spacing:0.720000pt;}
.ws2b{word-spacing:0.746667pt;}
.ws7f{word-spacing:0.768000pt;}
.wse9{word-spacing:0.784000pt;}
.ws2d{word-spacing:0.800000pt;}
.ws32{word-spacing:0.810667pt;}
.ws90{word-spacing:0.816000pt;}
.wsf3{word-spacing:0.821333pt;}
.ws81{word-spacing:0.853333pt;}
.wsf4{word-spacing:0.858667pt;}
.wsc0{word-spacing:0.864000pt;}
.ws35{word-spacing:0.896000pt;}
.ws11{word-spacing:0.906667pt;}
.ws5c{word-spacing:0.912000pt;}
.wsb7{word-spacing:0.938667pt;}
.ws39{word-spacing:0.960000pt;}
.ws1a{word-spacing:0.981333pt;}
.ws26{word-spacing:0.997333pt;}
.ws55{word-spacing:1.008000pt;}
.ws3a{word-spacing:1.013333pt;}
.ws1b{word-spacing:1.024000pt;}
.ws25{word-spacing:1.042667pt;}
.ws56{word-spacing:1.056000pt;}
.wsbc{word-spacing:1.066667pt;}
.ws21{word-spacing:1.088000pt;}
.ws7c{word-spacing:1.104000pt;}
.ws94{word-spacing:1.120000pt;}
.wsa4{word-spacing:1.152000pt;}
.ws50{word-spacing:1.173333pt;}
.wsa3{word-spacing:1.200000pt;}
.ws30{word-spacing:1.226667pt;}
.ws4a{word-spacing:1.280000pt;}
.ws103{word-spacing:1.296000pt;}
.ws28{word-spacing:1.333333pt;}
.ws102{word-spacing:1.344000pt;}
.wsfd{word-spacing:2.016000pt;}
.wsc5{word-spacing:2.112000pt;}
.wsc4{word-spacing:2.160000pt;}
.wsd0{word-spacing:2.208000pt;}
.ws10f{word-spacing:2.400000pt;}
.wsd1{word-spacing:2.448000pt;}
.ws120{word-spacing:2.494667pt;}
.wsd2{word-spacing:2.496000pt;}
.ws121{word-spacing:2.505333pt;}
.ws72{word-spacing:2.688000pt;}
.wsd7{word-spacing:2.880000pt;}
.ws114{word-spacing:2.918667pt;}
.ws111{word-spacing:2.978667pt;}
.ws115{word-spacing:2.998667pt;}
.ws11d{word-spacing:3.010667pt;}
.ws3{word-spacing:3.229067pt;}
.ws6a{word-spacing:3.282667pt;}
.wsd8{word-spacing:3.312000pt;}
.wsd9{word-spacing:3.360000pt;}
.ws10a{word-spacing:3.504000pt;}
.ws112{word-spacing:3.626667pt;}
.wsab{word-spacing:3.893333pt;}
.wsaf{word-spacing:3.978667pt;}
.wsa2{word-spacing:4.032000pt;}
.ws11f{word-spacing:4.201333pt;}
.wsea{word-spacing:4.224000pt;}
.wsd4{word-spacing:4.560000pt;}
.ws8{word-spacing:4.706667pt;}
.ws27{word-spacing:5.013333pt;}
.wsff{word-spacing:5.136000pt;}
.ws100{word-spacing:5.616000pt;}
.wsa1{word-spacing:5.760000pt;}
.wsc1{word-spacing:6.480000pt;}
.wsc2{word-spacing:6.528000pt;}
.ws82{word-spacing:6.826667pt;}
.wsb6{word-spacing:7.253333pt;}
.ws10e{word-spacing:7.632000pt;}
.ws10b{word-spacing:8.688000pt;}
.wsdf{word-spacing:9.264000pt;}
.wse0{word-spacing:9.312000pt;}
.wsdc{word-spacing:12.240000pt;}
.wsdd{word-spacing:12.288000pt;}
.wsfe{word-spacing:14.160000pt;}
.wsde{word-spacing:15.312000pt;}
.ws8c{word-spacing:16.000000pt;}
.ws47{word-spacing:32.000000pt;}
.ws13{word-spacing:37.333333pt;}
._b{margin-left:-6.186667pt;}
._7{margin-left:-4.693333pt;}
._1{margin-left:-3.264000pt;}
._4{margin-left:-1.973333pt;}
._0{margin-left:-1.042667pt;}
._3{width:1.066667pt;}
._c{width:2.026667pt;}
._d{width:5.333333pt;}
._11{width:8.821333pt;}
._a{width:11.232000pt;}
._e{width:12.336000pt;}
._2{width:13.600000pt;}
._f{width:26.666667pt;}
._6{width:42.464000pt;}
._5{width:48.000000pt;}
._10{width:233.237333pt;}
._9{width:234.213333pt;}
._8{width:598.624000pt;}
.fsc{font-size:29.866667pt;}
.fs2{font-size:31.733333pt;}
.fsa{font-size:32.000000pt;}
.fsb{font-size:33.600000pt;}
.fs1{font-size:33.973333pt;}
.fs9{font-size:36.000000pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:48.546667pt;}
.y1d1{bottom:48.786667pt;}
.y1d{bottom:48.936000pt;}
.y1ad{bottom:49.120000pt;}
.y52{bottom:49.138667pt;}
.y6f{bottom:49.200000pt;}
.y9b{bottom:49.202667pt;}
.yab{bottom:49.333333pt;}
.y16b{bottom:49.477333pt;}
.ye1{bottom:49.560000pt;}
.y177{bottom:49.565333pt;}
.y144{bottom:50.520000pt;}
.y208{bottom:51.449333pt;}
.y1c{bottom:61.597333pt;}
.y51{bottom:61.800000pt;}
.y6e{bottom:61.861333pt;}
.y9a{bottom:61.874667pt;}
.y16a{bottom:62.138667pt;}
.y176{bottom:62.237333pt;}
.y1d0{bottom:64.120000pt;}
.y1ac{bottom:64.453333pt;}
.y207{bottom:65.445333pt;}
.y143{bottom:65.853333pt;}
.y1b{bottom:74.258667pt;}
.y50{bottom:74.472000pt;}
.y99{bottom:74.536000pt;}
.y6d{bottom:74.544000pt;}
.y169{bottom:74.805333pt;}
.y175{bottom:74.898667pt;}
.y206{bottom:79.449333pt;}
.yff{bottom:79.453333pt;}
.y1ab{bottom:79.786667pt;}
.y142{bottom:81.186667pt;}
.y1a{bottom:86.930667pt;}
.y4f{bottom:87.133333pt;}
.y98{bottom:87.197333pt;}
.y6c{bottom:87.205333pt;}
.y168{bottom:87.477333pt;}
.y174{bottom:87.560000pt;}
.yaa{bottom:91.445333pt;}
.y205{bottom:93.449333pt;}
.ye0{bottom:94.786667pt;}
.y1aa{bottom:95.120000pt;}
.y141{bottom:96.520000pt;}
.y19{bottom:99.592000pt;}
.yd1{bottom:99.794667pt;}
.y97{bottom:99.869333pt;}
.y6b{bottom:99.893333pt;}
.y167{bottom:100.138667pt;}
.ya9{bottom:105.449333pt;}
.y204{bottom:107.449333pt;}
.ydf{bottom:110.120000pt;}
.y1a9{bottom:110.453333pt;}
.y140{bottom:111.853333pt;}
.y18{bottom:112.253333pt;}
.yd0{bottom:112.466667pt;}
.y96{bottom:112.530667pt;}
.y6a{bottom:112.565333pt;}
.y166{bottom:112.800000pt;}
.ya8{bottom:119.453333pt;}
.y203{bottom:121.449333pt;}
.y4e{bottom:124.786667pt;}
.y17{bottom:124.925333pt;}
.y95{bottom:125.192000pt;}
.y69{bottom:125.226667pt;}
.yde{bottom:125.453333pt;}
.y1a8{bottom:125.786667pt;}
.y196{bottom:126.086667pt;}
.y13f{bottom:127.186667pt;}
.y202{bottom:135.449333pt;}
.y16{bottom:137.586667pt;}
.y94{bottom:137.864000pt;}
.y68{bottom:137.888000pt;}
.y195{bottom:140.090667pt;}
.y4d{bottom:140.120000pt;}
.y186{bottom:140.138667pt;}
.ydd{bottom:140.786667pt;}
.y1a7{bottom:141.120000pt;}
.y13e{bottom:142.520000pt;}
.ya7{bottom:148.786667pt;}
.ycf{bottom:149.000000pt;}
.y201{bottom:149.449333pt;}
.y93{bottom:150.525333pt;}
.y67{bottom:150.560000pt;}
.y118{bottom:151.396000pt;}
.y194{bottom:154.094667pt;}
.y185{bottom:154.142667pt;}
.y4c{bottom:155.453333pt;}
.ydc{bottom:156.120000pt;}
.y1a6{bottom:156.453333pt;}
.y13d{bottom:157.853333pt;}
.y92{bottom:163.186667pt;}
.y66{bottom:163.221333pt;}
.y200{bottom:163.429333pt;}
.yce{bottom:164.333333pt;}
.y12a{bottom:165.328000pt;}
.y117{bottom:165.400000pt;}
.y193{bottom:168.098667pt;}
.y184{bottom:168.146667pt;}
.y4b{bottom:170.786667pt;}
.y15{bottom:171.373333pt;}
.ydb{bottom:171.453333pt;}
.y1a5{bottom:171.786667pt;}
.y13c{bottom:173.186667pt;}
.y91{bottom:175.858667pt;}
.y65{bottom:175.882667pt;}
.y1ff{bottom:177.433333pt;}
.y129{bottom:179.332000pt;}
.y116{bottom:179.404000pt;}
.ya6{bottom:179.445333pt;}
.ycd{bottom:179.666667pt;}
.y192{bottom:182.102667pt;}
.y183{bottom:182.150667pt;}
.y4a{bottom:186.120000pt;}
.y14{bottom:186.706667pt;}
.yda{bottom:186.786667pt;}
.y1a4{bottom:187.120000pt;}
.y13b{bottom:188.520000pt;}
.y90{bottom:188.530667pt;}
.y64{bottom:188.544000pt;}
.y1fe{bottom:191.437333pt;}
.y128{bottom:193.336000pt;}
.y115{bottom:193.408000pt;}
.ya5{bottom:193.449333pt;}
.ycc{bottom:195.000000pt;}
.y191{bottom:196.106667pt;}
.y182{bottom:196.154667pt;}
.y8f{bottom:201.192000pt;}
.y63{bottom:201.205333pt;}
.y13{bottom:202.040000pt;}
.yd9{bottom:202.120000pt;}
.y1a3{bottom:202.453333pt;}
.y13a{bottom:203.853333pt;}
.y1fd{bottom:205.441333pt;}
.y127{bottom:207.340000pt;}
.y114{bottom:207.412000pt;}
.ya4{bottom:207.453333pt;}
.y190{bottom:210.110667pt;}
.y181{bottom:210.158667pt;}
.ycb{bottom:210.333333pt;}
.y8e{bottom:213.853333pt;}
.y62{bottom:213.877333pt;}
.y49{bottom:216.774667pt;}
.y12{bottom:217.373333pt;}
.yd8{bottom:217.453333pt;}
.y1a2{bottom:217.786667pt;}
.y139{bottom:219.186667pt;}
.y1fc{bottom:219.445333pt;}
.y126{bottom:221.344000pt;}
.y113{bottom:221.416000pt;}
.y18f{bottom:224.114667pt;}
.y180{bottom:224.162667pt;}
.yca{bottom:225.666667pt;}
.y61{bottom:226.538667pt;}
.y48{bottom:230.778667pt;}
.y11{bottom:232.706667pt;}
.yd7{bottom:232.786667pt;}
.y1a1{bottom:233.120000pt;}
.y1fb{bottom:233.449333pt;}
.y138{bottom:234.520000pt;}
.y125{bottom:235.348000pt;}
.y112{bottom:235.420000pt;}
.ya3{bottom:236.786667pt;}
.y18e{bottom:238.118667pt;}
.y17f{bottom:238.166667pt;}
.y60{bottom:239.200000pt;}
.yc9{bottom:241.000000pt;}
.y47{bottom:244.782667pt;}
.y1fa{bottom:247.449333pt;}
.y10{bottom:248.040000pt;}
.yd6{bottom:248.120000pt;}
.y1a0{bottom:248.453333pt;}
.y124{bottom:249.352000pt;}
.y111{bottom:249.424000pt;}
.y137{bottom:249.853333pt;}
.y8d{bottom:250.786667pt;}
.y18d{bottom:252.122667pt;}
.y17e{bottom:252.170667pt;}
.yc8{bottom:256.333333pt;}
.y46{bottom:258.786667pt;}
.y1f9{bottom:261.449333pt;}
.y123{bottom:263.356000pt;}
.yf{bottom:263.373333pt;}
.y110{bottom:263.428000pt;}
.yd5{bottom:263.453333pt;}
.y19f{bottom:263.786667pt;}
.y136{bottom:265.186667pt;}
.y8c{bottom:266.120000pt;}
.y18c{bottom:266.126667pt;}
.y17d{bottom:266.174667pt;}
.ya2{bottom:267.445333pt;}
.yc7{bottom:271.666667pt;}
.y5f{bottom:272.782667pt;}
.y1f8{bottom:275.449333pt;}
.y122{bottom:277.360000pt;}
.y10f{bottom:277.432000pt;}
.ye{bottom:278.706667pt;}
.yd4{bottom:278.786667pt;}
.y19e{bottom:279.120000pt;}
.y18b{bottom:280.130667pt;}
.y17c{bottom:280.178667pt;}
.ya1{bottom:281.449333pt;}
.y8b{bottom:281.453333pt;}
.y5e{bottom:286.766667pt;}
.yc6{bottom:287.000000pt;}
.y45{bottom:288.120000pt;}
.y1f7{bottom:289.445333pt;}
.y121{bottom:291.364000pt;}
.y10e{bottom:291.436000pt;}
.yd{bottom:294.040000pt;}
.yd3{bottom:294.120000pt;}
.y18a{bottom:294.134667pt;}
.y17b{bottom:294.182667pt;}
.y19d{bottom:294.453333pt;}
.ya0{bottom:295.453333pt;}
.y8a{bottom:296.786667pt;}
.y135{bottom:297.521333pt;}
.y5d{bottom:300.770667pt;}
.yc5{bottom:302.333333pt;}
.y1f6{bottom:303.449333pt;}
.y44{bottom:303.453333pt;}
.y120{bottom:305.368000pt;}
.y10d{bottom:305.440000pt;}
.y189{bottom:308.138667pt;}
.y17a{bottom:308.186667pt;}
.yc{bottom:309.373333pt;}
.yd2{bottom:309.453333pt;}
.y19c{bottom:309.786667pt;}
.y134{bottom:311.525333pt;}
.y89{bottom:312.120000pt;}
.y5c{bottom:314.774667pt;}
.y1f5{bottom:317.449333pt;}
.yc4{bottom:317.666667pt;}
.y43{bottom:318.786667pt;}
.y11f{bottom:319.372000pt;}
.y10c{bottom:319.444000pt;}
.y188{bottom:322.142667pt;}
.y179{bottom:322.190667pt;}
.yb{bottom:324.706667pt;}
.y9f{bottom:324.786667pt;}
.y19b{bottom:325.120000pt;}
.y133{bottom:325.529333pt;}
.y88{bottom:327.453333pt;}
.y5b{bottom:328.778667pt;}
.y1ee{bottom:331.209333pt;}
.y1f4{bottom:331.437333pt;}
.yc3{bottom:333.000000pt;}
.y11e{bottom:333.376000pt;}
.y10b{bottom:333.448000pt;}
.y42{bottom:334.120000pt;}
.y132{bottom:339.533333pt;}
.ya{bottom:340.040000pt;}
.y9e{bottom:340.120000pt;}
.y19a{bottom:340.453333pt;}
.y5a{bottom:342.782667pt;}
.y87{bottom:342.786667pt;}
.y1df{bottom:345.213333pt;}
.y1f3{bottom:345.441333pt;}
.y11d{bottom:347.380000pt;}
.y10a{bottom:347.452000pt;}
.yc2{bottom:348.333333pt;}
.y187{bottom:350.138667pt;}
.y178{bottom:350.186667pt;}
.y9{bottom:355.373333pt;}
.y9d{bottom:355.453333pt;}
.y199{bottom:355.786667pt;}
.y59{bottom:356.786667pt;}
.y86{bottom:358.120000pt;}
.y1de{bottom:359.217333pt;}
.y1f2{bottom:359.445333pt;}
.y11c{bottom:361.384000pt;}
.y109{bottom:361.456000pt;}
.yc1{bottom:363.666667pt;}
.y41{bottom:364.762667pt;}
.y131{bottom:370.533333pt;}
.y9c{bottom:370.786667pt;}
.y198{bottom:371.120000pt;}
.y1f1{bottom:373.449333pt;}
.y85{bottom:373.453333pt;}
.y11b{bottom:375.388000pt;}
.y108{bottom:375.460000pt;}
.y40{bottom:378.766667pt;}
.y173{bottom:378.786667pt;}
.yc0{bottom:379.000000pt;}
.y130{bottom:385.866667pt;}
.y58{bottom:386.120000pt;}
.y197{bottom:386.453333pt;}
.y1dd{bottom:387.197333pt;}
.y1ed{bottom:387.201333pt;}
.y21e{bottom:387.449333pt;}
.y1f0{bottom:387.453333pt;}
.y84{bottom:388.786667pt;}
.y11a{bottom:389.392000pt;}
.y107{bottom:389.464000pt;}
.y3f{bottom:392.770667pt;}
.y172{bottom:394.120000pt;}
.ybf{bottom:394.333333pt;}
.y12f{bottom:401.200000pt;}
.y21d{bottom:401.445333pt;}
.y57{bottom:401.453333pt;}
.y106{bottom:403.468000pt;}
.y83{bottom:404.120000pt;}
.yfe{bottom:406.678667pt;}
.y3e{bottom:406.774667pt;}
.y1ef{bottom:409.120000pt;}
.ybe{bottom:409.666667pt;}
.y8{bottom:413.413333pt;}
.y21c{bottom:415.449333pt;}
.y12e{bottom:416.533333pt;}
.y56{bottom:416.786667pt;}
.y105{bottom:417.472000pt;}
.y82{bottom:419.453333pt;}
.yfd{bottom:420.682667pt;}
.yef{bottom:420.730667pt;}
.y3d{bottom:420.778667pt;}
.y1c0{bottom:422.694667pt;}
.y171{bottom:424.770667pt;}
.ybd{bottom:425.000000pt;}
.y7{bottom:426.762667pt;}
.y1ec{bottom:429.201333pt;}
.y21b{bottom:429.445333pt;}
.y104{bottom:431.476000pt;}
.y12d{bottom:431.866667pt;}
.y55{bottom:432.120000pt;}
.yfc{bottom:434.686667pt;}
.yee{bottom:434.734667pt;}
.y3c{bottom:434.782667pt;}
.y81{bottom:434.786667pt;}
.y1bf{bottom:436.698667pt;}
.y170{bottom:438.774667pt;}
.y6{bottom:440.090667pt;}
.ybc{bottom:440.333333pt;}
.y1dc{bottom:443.201333pt;}
.y1eb{bottom:443.205333pt;}
.y21a{bottom:443.449333pt;}
.y103{bottom:445.480000pt;}
.y12c{bottom:447.200000pt;}
.y54{bottom:447.453333pt;}
.yfb{bottom:448.690667pt;}
.yed{bottom:448.738667pt;}
.y3b{bottom:448.786667pt;}
.y80{bottom:450.120000pt;}
.y1be{bottom:450.702667pt;}
.y16f{bottom:452.778667pt;}
.y5{bottom:453.418667pt;}
.ybb{bottom:455.666667pt;}
.y1db{bottom:457.205333pt;}
.y1ea{bottom:457.209333pt;}
.y219{bottom:457.449333pt;}
.y102{bottom:459.484000pt;}
.y12b{bottom:462.533333pt;}
.yfa{bottom:462.694667pt;}
.yec{bottom:462.742667pt;}
.y53{bottom:462.786667pt;}
.y1bd{bottom:464.706667pt;}
.y7f{bottom:465.453333pt;}
.y4{bottom:466.746667pt;}
.y16e{bottom:466.782667pt;}
.yba{bottom:471.000000pt;}
.y218{bottom:471.445333pt;}
.yf9{bottom:476.698667pt;}
.yeb{bottom:476.746667pt;}
.y1cf{bottom:477.257333pt;}
.y3a{bottom:478.120000pt;}
.y1bc{bottom:478.710667pt;}
.y3{bottom:480.084667pt;}
.y7e{bottom:480.786667pt;}
.y1da{bottom:485.201333pt;}
.y1e9{bottom:485.205333pt;}
.y217{bottom:485.449333pt;}
.yb9{bottom:486.333333pt;}
.y119{bottom:487.396000pt;}
.y101{bottom:487.480000pt;}
.yf8{bottom:490.702667pt;}
.yea{bottom:490.750667pt;}
.y1ce{bottom:491.261333pt;}
.y165{bottom:492.589333pt;}
.y1bb{bottom:492.714667pt;}
.y2{bottom:493.412667pt;}
.y39{bottom:493.453333pt;}
.y7d{bottom:496.120000pt;}
.y216{bottom:499.429333pt;}
.yb8{bottom:501.666667pt;}
.yf7{bottom:504.706667pt;}
.ye9{bottom:504.754667pt;}
.y1cd{bottom:505.265333pt;}
.y164{bottom:506.593333pt;}
.y154{bottom:506.641333pt;}
.y1ba{bottom:506.718667pt;}
.y38{bottom:508.786667pt;}
.y16d{bottom:510.120000pt;}
.y7c{bottom:511.453333pt;}
.y215{bottom:513.433333pt;}
.yb7{bottom:517.000000pt;}
.yf6{bottom:518.710667pt;}
.ye8{bottom:518.758667pt;}
.y1cc{bottom:519.269333pt;}
.y1{bottom:520.080000pt;}
.y163{bottom:520.597333pt;}
.y153{bottom:520.645333pt;}
.y1b9{bottom:520.722667pt;}
.y37{bottom:524.120000pt;}
.y7b{bottom:526.786667pt;}
.y1e8{bottom:527.205333pt;}
.y214{bottom:527.437333pt;}
.yb6{bottom:532.333333pt;}
.yf5{bottom:532.714667pt;}
.ye7{bottom:532.762667pt;}
.y1cb{bottom:533.273333pt;}
.y162{bottom:534.601333pt;}
.y152{bottom:534.649333pt;}
.y1b8{bottom:534.726667pt;}
.y36{bottom:539.453333pt;}
.y16c{bottom:540.786667pt;}
.y1d9{bottom:541.205333pt;}
.y1e7{bottom:541.209333pt;}
.y213{bottom:541.441333pt;}
.y7a{bottom:542.120000pt;}
.y28{bottom:544.600000pt;}
.yf4{bottom:546.718667pt;}
.ye6{bottom:546.766667pt;}
.y1ca{bottom:547.277333pt;}
.yb5{bottom:547.666667pt;}
.y161{bottom:548.605333pt;}
.y151{bottom:548.653333pt;}
.y1b7{bottom:548.730667pt;}
.y35{bottom:554.786667pt;}
.y212{bottom:555.445333pt;}
.y79{bottom:557.453333pt;}
.yf3{bottom:560.722667pt;}
.ye5{bottom:560.770667pt;}
.y1c9{bottom:561.281333pt;}
.y160{bottom:562.609333pt;}
.y150{bottom:562.657333pt;}
.y1b6{bottom:562.734667pt;}
.yb4{bottom:563.000000pt;}
.y27{bottom:567.301333pt;}
.y1d8{bottom:569.201333pt;}
.y1e6{bottom:569.205333pt;}
.y211{bottom:569.449333pt;}
.y34{bottom:570.120000pt;}
.y78{bottom:572.786667pt;}
.yf2{bottom:574.726667pt;}
.ye4{bottom:574.774667pt;}
.y1c8{bottom:575.285333pt;}
.y15f{bottom:576.613333pt;}
.y14f{bottom:576.661333pt;}
.y1b5{bottom:576.738667pt;}
.yb3{bottom:578.333333pt;}
.y26{bottom:579.973333pt;}
.y210{bottom:583.441333pt;}
.y33{bottom:585.453333pt;}
.y77{bottom:588.120000pt;}
.y1c7{bottom:589.289333pt;}
.y15e{bottom:590.617333pt;}
.y14e{bottom:590.665333pt;}
.y1b4{bottom:590.742667pt;}
.yb2{bottom:593.666667pt;}
.y25{bottom:595.973333pt;}
.y20f{bottom:597.445333pt;}
.y32{bottom:600.786667pt;}
.y1c6{bottom:603.293333pt;}
.y76{bottom:603.453333pt;}
.yf1{bottom:604.054667pt;}
.ye3{bottom:604.102667pt;}
.y15d{bottom:604.621333pt;}
.y14d{bottom:604.669333pt;}
.y1b3{bottom:604.746667pt;}
.yb1{bottom:609.000000pt;}
.y1d7{bottom:611.201333pt;}
.y1e5{bottom:611.205333pt;}
.y20e{bottom:611.449333pt;}
.y31{bottom:616.120000pt;}
.y1c5{bottom:617.297333pt;}
.y24{bottom:617.629333pt;}
.yf0{bottom:618.058667pt;}
.ye2{bottom:618.106667pt;}
.y15c{bottom:618.625333pt;}
.y14c{bottom:618.673333pt;}
.y1b2{bottom:618.750667pt;}
.y75{bottom:618.786667pt;}
.yb0{bottom:624.333333pt;}
.y1d6{bottom:625.205333pt;}
.y1e4{bottom:625.209333pt;}
.y20d{bottom:625.449333pt;}
.y23{bottom:630.301333pt;}
.y30{bottom:631.453333pt;}
.y15b{bottom:632.629333pt;}
.y14b{bottom:632.677333pt;}
.y74{bottom:634.120000pt;}
.y1d5{bottom:639.209333pt;}
.y1e3{bottom:639.213333pt;}
.y20c{bottom:639.437333pt;}
.yaf{bottom:639.666667pt;}
.y22{bottom:642.973333pt;}
.y1c4{bottom:645.293333pt;}
.y15a{bottom:646.633333pt;}
.y14a{bottom:646.681333pt;}
.y1b1{bottom:646.746667pt;}
.y2f{bottom:646.786667pt;}
.y73{bottom:649.453333pt;}
.y1d4{bottom:653.213333pt;}
.y1e2{bottom:653.217333pt;}
.y20b{bottom:653.441333pt;}
.y21{bottom:658.973333pt;}
.y159{bottom:660.637333pt;}
.y149{bottom:660.685333pt;}
.y2e{bottom:662.120000pt;}
.y72{bottom:664.786667pt;}
.y1d3{bottom:667.217333pt;}
.y1e1{bottom:667.221333pt;}
.y20a{bottom:667.445333pt;}
.yae{bottom:668.218667pt;}
.y158{bottom:674.641333pt;}
.y148{bottom:674.689333pt;}
.y2d{bottom:677.453333pt;}
.y209{bottom:681.449333pt;}
.yad{bottom:682.222667pt;}
.y1c3{bottom:687.293333pt;}
.y157{bottom:688.645333pt;}
.y147{bottom:688.693333pt;}
.y1b0{bottom:688.746667pt;}
.y2c{bottom:692.786667pt;}
.y1d2{bottom:695.213333pt;}
.y1e0{bottom:695.217333pt;}
.y71{bottom:695.445333pt;}
.yac{bottom:696.226667pt;}
.y20{bottom:698.973333pt;}
.y1c2{bottom:701.297333pt;}
.y156{bottom:702.649333pt;}
.y146{bottom:702.697333pt;}
.y1af{bottom:702.750667pt;}
.y2b{bottom:708.120000pt;}
.y70{bottom:709.449333pt;}
.y1f{bottom:720.306667pt;}
.y2a{bottom:723.453333pt;}
.y1c1{bottom:729.246667pt;}
.y155{bottom:730.645333pt;}
.y145{bottom:730.693333pt;}
.y1ae{bottom:730.746667pt;}
.y1e{bottom:765.640000pt;}
.y29{bottom:821.333333pt;}
.hb{height:41.854167pt;}
.h7{height:41.875000pt;}
.h8{height:43.000000pt;}
.h10{height:44.158667pt;}
.h2{height:44.492188pt;}
.h1{height:45.687500pt;}
.h3{height:46.077865pt;}
.h11{height:47.085938pt;}
.ha{height:47.109375pt;}
.h17{height:47.125375pt;}
.h18{height:47.141375pt;}
.h1a{height:47.157375pt;}
.h16{height:47.173375pt;}
.hd{height:47.189375pt;}
.h19{height:47.205375pt;}
.hc{height:48.375000pt;}
.he{height:48.848562pt;}
.h12{height:49.702500pt;}
.h15{height:49.750500pt;}
.h14{height:49.766500pt;}
.h13{height:49.889167pt;}
.h4{height:52.343750pt;}
.h6{height:53.750000pt;}
.h5{height:54.240625pt;}
.hf{height:55.225000pt;}
.h9{height:83.750000pt;}
.h0{height:794.666667pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x6{left:4.000000pt;}
.x1{left:66.400000pt;}
.x7{left:67.480000pt;}
.xe{left:79.744000pt;}
.xd{left:80.836000pt;}
.x2{left:81.733333pt;}
.x8{left:82.813333pt;}
.x3{left:86.378667pt;}
.x9{left:87.480000pt;}
.xa{left:290.452000pt;}
.xc{left:291.420000pt;}
.xb{left:310.456000pt;}
.x4{left:366.560000pt;}
.x5{left:368.773333pt;}
}




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