
    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_765c063fd2c7fb85bcc9f661.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_7c31880f5c725bf813155e49.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945000;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_fa739e0790611a43125e5065.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895000;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_8a17e58799bf70111fa80efd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_31b67d93c70a6c5d3d5e2968.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.678000;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_359dd6db0b934e046bddcfa2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_942554945a5a1a680dd4f03c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.627000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v4{vertical-align:-17.982000px;}
.v2{vertical-align:-15.984000px;}
.v5{vertical-align:-5.975400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.ls12{letter-spacing:-1.215000px;}
.lsa{letter-spacing:-1.152000px;}
.ls6{letter-spacing:-1.056000px;}
.ls11{letter-spacing:-0.675000px;}
.ls10{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.096000px;}
.ls2{letter-spacing:-0.084000px;}
.ls5{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.378000px;}
.ls0{letter-spacing:1.368000px;}
.lse{letter-spacing:11.943245px;}
.lsb{letter-spacing:14.942579px;}
.lsd{letter-spacing:17.914867px;}
.lsf{letter-spacing:36.000000px;}
.lsc{letter-spacing:107.596800px;}
.ls9{letter-spacing:594.322200px;}
.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;}
}
.wsa0{word-spacing:-107.596800px;}
.ws4{word-spacing:-22.500000px;}
.ws2{word-spacing:-19.368000px;}
.ws99{word-spacing:-17.968666px;}
.wsdc{word-spacing:-16.500000px;}
.wsd3{word-spacing:-13.878000px;}
.wsd2{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.446000px;}
.ws17{word-spacing:-13.068000px;}
.ws16{word-spacing:-12.960000px;}
.wsa7{word-spacing:-12.852000px;}
.ws5f{word-spacing:-12.000000px;}
.ws9b{word-spacing:-11.997043px;}
.ws62{word-spacing:-11.424000px;}
.wsb2{word-spacing:-11.250000px;}
.wsb5{word-spacing:-10.575000px;}
.ws3{word-spacing:-10.500000px;}
.ws7{word-spacing:-10.416000px;}
.wsfa{word-spacing:-10.080000px;}
.wsb7{word-spacing:-10.035000px;}
.ws5{word-spacing:-8.775000px;}
.ws6{word-spacing:-7.800000px;}
.ws25{word-spacing:-3.672000px;}
.ws19{word-spacing:-3.444000px;}
.ws0{word-spacing:-3.407400px;}
.wsce{word-spacing:-3.186000px;}
.wscc{word-spacing:-3.078000px;}
.ws58{word-spacing:-2.970000px;}
.ws102{word-spacing:-2.856000px;}
.ws20{word-spacing:-2.808000px;}
.ws67{word-spacing:-2.700000px;}
.ws53{word-spacing:-2.646000px;}
.wsee{word-spacing:-2.604000px;}
.ws2e{word-spacing:-2.538000px;}
.ws30{word-spacing:-2.484000px;}
.ws3f{word-spacing:-2.430000px;}
.ws42{word-spacing:-2.376000px;}
.wsad{word-spacing:-2.321995px;}
.ws1b{word-spacing:-2.268000px;}
.ws1f{word-spacing:-2.214000px;}
.ws82{word-spacing:-2.160000px;}
.wsaa{word-spacing:-2.106000px;}
.ws10d{word-spacing:-2.058000px;}
.ws7c{word-spacing:-2.052000px;}
.ws3a{word-spacing:-1.998000px;}
.ws79{word-spacing:-1.944000px;}
.wsdf{word-spacing:-1.932000px;}
.ws6c{word-spacing:-1.890000px;}
.wsca{word-spacing:-1.836000px;}
.wsef{word-spacing:-1.805996px;}
.ws63{word-spacing:-1.782000px;}
.wse1{word-spacing:-1.764000px;}
.ws7e{word-spacing:-1.728000px;}
.ws47{word-spacing:-1.674000px;}
.ws87{word-spacing:-1.620000px;}
.wsec{word-spacing:-1.596000px;}
.ws3e{word-spacing:-1.566000px;}
.wsda{word-spacing:-1.512000px;}
.ws108{word-spacing:-1.470000px;}
.wscb{word-spacing:-1.458000px;}
.ws57{word-spacing:-1.404000px;}
.ws97{word-spacing:-1.350000px;}
.wsc1{word-spacing:-1.296000px;}
.wsde{word-spacing:-1.260000px;}
.ws2d{word-spacing:-1.242000px;}
.ws2a{word-spacing:-1.134000px;}
.ws55{word-spacing:-1.080000px;}
.ws110{word-spacing:-1.050000px;}
.ws40{word-spacing:-1.026000px;}
.ws2b{word-spacing:-0.972000px;}
.ws3d{word-spacing:-0.918000px;}
.ws5a{word-spacing:-0.864000px;}
.wsf7{word-spacing:-0.840000px;}
.ws31{word-spacing:-0.810000px;}
.ws45{word-spacing:-0.756000px;}
.wscf{word-spacing:-0.702000px;}
.ws15{word-spacing:-0.648000px;}
.wsfe{word-spacing:-0.630000px;}
.ws4e{word-spacing:-0.594000px;}
.ws10a{word-spacing:-0.546000px;}
.ws9e{word-spacing:-0.540000px;}
.ws49{word-spacing:-0.486000px;}
.wsbc{word-spacing:-0.432000px;}
.ws77{word-spacing:-0.384000px;}
.ws7d{word-spacing:-0.378000px;}
.wsf5{word-spacing:-0.336000px;}
.wsa9{word-spacing:-0.324000px;}
.wsed{word-spacing:-0.252000px;}
.ws44{word-spacing:-0.216000px;}
.wsf0{word-spacing:-0.168000px;}
.ws41{word-spacing:-0.162000px;}
.ws76{word-spacing:-0.108000px;}
.ws1d{word-spacing:-0.054000px;}
.wsb9{word-spacing:-0.045000px;}
.wsd{word-spacing:0.000000px;}
.wse7{word-spacing:0.042000px;}
.ws5d{word-spacing:0.054000px;}
.ws10{word-spacing:0.108000px;}
.wsf9{word-spacing:0.126000px;}
.ws2f{word-spacing:0.162000px;}
.ws100{word-spacing:0.168000px;}
.ws78{word-spacing:0.192000px;}
.ws74{word-spacing:0.216000px;}
.ws1a{word-spacing:0.270000px;}
.wscd{word-spacing:0.324000px;}
.ws85{word-spacing:0.378000px;}
.ws32{word-spacing:0.432000px;}
.ws21{word-spacing:0.486000px;}
.ws101{word-spacing:0.504000px;}
.ws12{word-spacing:0.540000px;}
.wse8{word-spacing:0.546000px;}
.ws54{word-spacing:0.594000px;}
.ws9{word-spacing:0.648000px;}
.wsb8{word-spacing:0.675000px;}
.ws7f{word-spacing:0.702000px;}
.wsa8{word-spacing:0.756000px;}
.ws69{word-spacing:0.810000px;}
.ws59{word-spacing:0.864000px;}
.ws6a{word-spacing:0.918000px;}
.ws91{word-spacing:0.972000px;}
.wsea{word-spacing:1.008000px;}
.ws28{word-spacing:1.026000px;}
.wsf8{word-spacing:1.050000px;}
.ws89{word-spacing:1.080000px;}
.ws5c{word-spacing:1.134000px;}
.ws38{word-spacing:1.188000px;}
.wsb{word-spacing:1.242000px;}
.ws3c{word-spacing:1.296000px;}
.ws109{word-spacing:1.344000px;}
.ws8e{word-spacing:1.350000px;}
.ws10c{word-spacing:1.386000px;}
.ws107{word-spacing:1.428000px;}
.ws5b{word-spacing:1.458000px;}
.wse0{word-spacing:1.470000px;}
.ws11{word-spacing:1.512000px;}
.wsa6{word-spacing:1.536000px;}
.ws22{word-spacing:1.566000px;}
.wsab{word-spacing:1.728000px;}
.ws64{word-spacing:1.782000px;}
.ws105{word-spacing:1.805996px;}
.ws96{word-spacing:1.836000px;}
.ws35{word-spacing:1.944000px;}
.ws10b{word-spacing:1.974000px;}
.ws29{word-spacing:1.998000px;}
.wse5{word-spacing:2.100000px;}
.ws43{word-spacing:2.106000px;}
.ws94{word-spacing:2.160000px;}
.wsff{word-spacing:2.184000px;}
.ws37{word-spacing:2.214000px;}
.ws83{word-spacing:2.268000px;}
.wsf6{word-spacing:2.310000px;}
.wsf2{word-spacing:2.352000px;}
.ws65{word-spacing:2.376000px;}
.wsf4{word-spacing:2.394000px;}
.ws39{word-spacing:2.430000px;}
.wsc{word-spacing:2.484000px;}
.ws90{word-spacing:2.538000px;}
.wsa5{word-spacing:2.544000px;}
.ws7b{word-spacing:2.592000px;}
.ws56{word-spacing:2.646000px;}
.ws36{word-spacing:2.700000px;}
.ws8c{word-spacing:2.753995px;}
.ws26{word-spacing:2.808000px;}
.ws111{word-spacing:2.856000px;}
.ws48{word-spacing:2.862000px;}
.wse9{word-spacing:2.898000px;}
.ws3b{word-spacing:2.916000px;}
.ws4b{word-spacing:2.970000px;}
.ws27{word-spacing:3.024000px;}
.ws2c{word-spacing:3.078000px;}
.wsfb{word-spacing:3.108000px;}
.wse4{word-spacing:3.150000px;}
.ws75{word-spacing:3.186000px;}
.ws81{word-spacing:3.240000px;}
.ws5e{word-spacing:3.348000px;}
.ws6e{word-spacing:3.402000px;}
.wsa3{word-spacing:3.456000px;}
.ws51{word-spacing:3.510000px;}
.ws106{word-spacing:3.528000px;}
.wsac{word-spacing:3.618000px;}
.wsc8{word-spacing:3.672000px;}
.wsd7{word-spacing:3.726000px;}
.wseb{word-spacing:3.738000px;}
.ws84{word-spacing:3.780000px;}
.wsaf{word-spacing:3.833995px;}
.ws10f{word-spacing:3.906000px;}
.wsdb{word-spacing:3.942000px;}
.wsc7{word-spacing:3.996000px;}
.wsf3{word-spacing:4.032000px;}
.wsd6{word-spacing:4.050000px;}
.ws98{word-spacing:4.104000px;}
.ws13{word-spacing:4.158000px;}
.ws80{word-spacing:4.266000px;}
.wsba{word-spacing:4.320000px;}
.wsdd{word-spacing:4.368000px;}
.wse{word-spacing:4.374000px;}
.ws86{word-spacing:4.428000px;}
.ws14{word-spacing:4.536000px;}
.ws7a{word-spacing:4.590000px;}
.wsfd{word-spacing:4.620000px;}
.wsd8{word-spacing:4.643995px;}
.ws50{word-spacing:4.697995px;}
.ws24{word-spacing:4.752000px;}
.ws9f{word-spacing:4.806000px;}
.wsfc{word-spacing:4.830000px;}
.wsbd{word-spacing:4.860000px;}
.ws6b{word-spacing:4.914000px;}
.wsbe{word-spacing:4.968000px;}
.ws23{word-spacing:5.022000px;}
.wsae{word-spacing:5.076000px;}
.wsc9{word-spacing:5.292000px;}
.wsd9{word-spacing:5.400000px;}
.ws34{word-spacing:5.454000px;}
.ws8a{word-spacing:5.508000px;}
.ws1e{word-spacing:5.562000px;}
.ws6d{word-spacing:5.616000px;}
.ws33{word-spacing:5.670000px;}
.wsc3{word-spacing:5.724000px;}
.wse2{word-spacing:5.754000px;}
.wsf{word-spacing:5.778000px;}
.ws4c{word-spacing:5.832000px;}
.ws1c{word-spacing:5.940000px;}
.ws95{word-spacing:5.994000px;}
.ws4f{word-spacing:6.048000px;}
.ws88{word-spacing:6.102000px;}
.ws66{word-spacing:6.210000px;}
.wsd0{word-spacing:6.372000px;}
.ws52{word-spacing:6.426000px;}
.wsc6{word-spacing:6.534000px;}
.wsd1{word-spacing:6.588000px;}
.wsbf{word-spacing:6.696000px;}
.wsc4{word-spacing:6.750000px;}
.ws103{word-spacing:6.804000px;}
.ws8d{word-spacing:6.912000px;}
.ws4d{word-spacing:6.966000px;}
.wsc2{word-spacing:7.020000px;}
.ws68{word-spacing:7.074000px;}
.ws46{word-spacing:7.128000px;}
.ws8f{word-spacing:7.668000px;}
.wsc5{word-spacing:7.830000px;}
.ws9d{word-spacing:7.992000px;}
.ws92{word-spacing:8.262000px;}
.wsd4{word-spacing:8.532000px;}
.wsd5{word-spacing:8.640000px;}
.ws9a{word-spacing:8.930534px;}
.wsbb{word-spacing:9.072000px;}
.wse3{word-spacing:9.744000px;}
.wse6{word-spacing:9.786000px;}
.ws8b{word-spacing:9.828000px;}
.wsa{word-spacing:10.098000px;}
.wsc0{word-spacing:10.260000px;}
.ws9c{word-spacing:11.889446px;}
.ws93{word-spacing:12.366000px;}
.ws4a{word-spacing:13.500000px;}
.wsb3{word-spacing:13.590000px;}
.ws10e{word-spacing:15.960000px;}
.ws8{word-spacing:16.500000px;}
.wsf1{word-spacing:17.262000px;}
.ws104{word-spacing:17.472000px;}
.wsb6{word-spacing:21.915000px;}
.wsa4{word-spacing:36.000000px;}
.wsb4{word-spacing:43.740000px;}
.ws60{word-spacing:59.712000px;}
.wsb0{word-spacing:76.140000px;}
.wsb1{word-spacing:97.965000px;}
.ws72{word-spacing:101.328000px;}
.ws73{word-spacing:117.744000px;}
.ws70{word-spacing:154.800000px;}
.ws6f{word-spacing:230.496000px;}
.ws71{word-spacing:276.480000px;}
.ws61{word-spacing:306.384000px;}
.wsa2{word-spacing:1913.088000px;}
.wsa1{word-spacing:2344.518000px;}
._55{margin-left:-17.914867px;}
._54{margin-left:-12.258000px;}
._9{margin-left:-10.500000px;}
._6{margin-left:-4.471200px;}
._4{margin-left:-3.245400px;}
._1{margin-left:-2.197800px;}
._0{margin-left:-1.031400px;}
._3{width:1.026000px;}
._2{width:2.262600px;}
._a{width:3.277800px;}
._52{width:4.406400px;}
._5{width:5.626800px;}
._53{width:7.257600px;}
._57{width:9.299088px;}
._56{width:11.943245px;}
._67{width:16.413600px;}
._68{width:17.761800px;}
._65{width:26.010000px;}
._8{width:27.552000px;}
._66{width:30.870000px;}
._58{width:36.000000px;}
._64{width:41.760000px;}
._7{width:50.917200px;}
._f{width:53.653800px;}
._29{width:58.416000px;}
._e{width:65.070000px;}
._3f{width:69.744000px;}
._15{width:77.712000px;}
._3e{width:79.488000px;}
._40{width:81.504000px;}
._39{width:84.576000px;}
._2a{width:86.400000px;}
._45{width:88.608000px;}
._11{width:100.416000px;}
._2b{width:104.400000px;}
._1d{width:106.416000px;}
._12{width:110.400000px;}
._20{width:111.408000px;}
._2c{width:113.376000px;}
._13{width:116.112000px;}
._1f{width:118.416000px;}
._38{width:120.459600px;}
._4f{width:122.610000px;}
._23{width:134.400000px;}
._14{width:137.712000px;}
._24{width:140.112000px;}
._36{width:142.206000px;}
._1c{width:144.747600px;}
._18{width:146.400000px;}
._3a{width:151.920000px;}
._2d{width:153.647400px;}
._51{width:157.488000px;}
._1a{width:161.376000px;}
._19{width:164.400000px;}
._10{width:171.541800px;}
._46{width:175.056000px;}
._22{width:178.416000px;}
._3d{width:179.520000px;}
._50{width:193.488000px;}
._4a{width:195.312000px;}
._44{width:196.848000px;}
._28{width:198.143400px;}
._3c{width:203.520000px;}
._4d{width:213.744000px;}
._3b{width:215.509800px;}
._47{width:221.232000px;}
._4c{width:222.576000px;}
._17{width:242.400000px;}
._32{width:245.310000px;}
._1e{width:251.797800px;}
._4b{width:253.488000px;}
._43{width:255.504000px;}
._41{width:260.375400px;}
._d{width:271.515600px;}
._42{width:273.456000px;}
._35{width:283.632000px;}
._49{width:290.567400px;}
._33{width:295.164000px;}
._37{width:297.552000px;}
._34{width:300.480000px;}
._1b{width:327.456000px;}
._48{width:350.999400px;}
._25{width:358.800000px;}
._4e{width:372.864000px;}
._2f{width:378.240000px;}
._26{width:379.536000px;}
._60{width:380.835000px;}
._2e{width:382.981800px;}
._c{width:452.581200px;}
._21{width:458.951400px;}
._31{width:468.853200px;}
._27{width:505.872000px;}
._b{width:581.184000px;}
._63{width:588.956400px;}
._62{width:597.142800px;}
._61{width:620.571600px;}
._30{width:635.501400px;}
._16{width:653.424000px;}
._5f{width:708.530400px;}
._5e{width:1195.593600px;}
._59{width:1659.936000px;}
._5c{width:1769.989800px;}
._5d{width:1816.926000px;}
._5b{width:1902.839400px;}
._5a{width:1910.773800px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(123,124,127);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(88,89,91);}
.fc0{color:rgb(0,65,116);}
.fsa{font-size:27.420000px;}
.fs6{font-size:31.200000px;}
.fsc{font-size:34.969200px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y18c{bottom:0.126150px;}
.y193{bottom:2.922150px;}
.y190{bottom:20.854500px;}
.y192{bottom:20.860497px;}
.y65{bottom:30.698550px;}
.y29{bottom:30.751200px;}
.y191{bottom:69.420153px;}
.y18f{bottom:70.920000px;}
.ye2{bottom:72.089550px;}
.y1b3{bottom:73.522650px;}
.y17f{bottom:74.568750px;}
.y228{bottom:74.932650px;}
.ycf{bottom:76.579650px;}
.y9c{bottom:76.581750px;}
.y151{bottom:76.612050px;}
.y268{bottom:76.706550px;}
.y1e9{bottom:78.772650px;}
.y1ea{bottom:78.840150px;}
.y1eb{bottom:78.896400px;}
.y1ec{bottom:78.963900px;}
.y1ed{bottom:79.031400px;}
.y1ee{bottom:79.098900px;}
.y13b{bottom:79.522650px;}
.y208{bottom:79.818900px;}
.y194{bottom:81.152100px;}
.y1e7{bottom:81.490650px;}
.y1e8{bottom:82.522650px;}
.y13c{bottom:83.518650px;}
.y32{bottom:84.899700px;}
.y23c{bottom:85.562550px;}
.ye{bottom:86.473200px;}
.y2d8{bottom:88.261650px;}
.y1b2{bottom:88.522650px;}
.y1ad{bottom:88.782600px;}
.ye1{bottom:90.085050px;}
.y17e{bottom:92.564250px;}
.y227{bottom:92.928150px;}
.y13a{bottom:94.522650px;}
.yce{bottom:94.575150px;}
.y9b{bottom:94.577250px;}
.y150{bottom:94.607550px;}
.y267{bottom:94.702050px;}
.y1ef{bottom:97.098900px;}
.y31{bottom:98.402700px;}
.y1e6{bottom:99.486150px;}
.y2d7{bottom:101.764650px;}
.y1b1{bottom:103.522650px;}
.y235{bottom:103.558050px;}
.y1ac{bottom:103.782600px;}
.yd{bottom:104.468700px;}
.ye0{bottom:108.080550px;}
.y17d{bottom:110.559750px;}
.y30{bottom:111.905700px;}
.y9a{bottom:112.572750px;}
.y14f{bottom:112.603050px;}
.y266{bottom:112.697550px;}
.y2d6{bottom:115.267650px;}
.y18e{bottom:115.527150px;}
.y226{bottom:116.931150px;}
.y138{bottom:117.027150px;}
.y1e5{bottom:117.481650px;}
.y1ab{bottom:118.782600px;}
.y139{bottom:121.018650px;}
.y234{bottom:121.553550px;}
.ycd{bottom:121.575150px;}
.yc{bottom:122.464200px;}
.y2f{bottom:125.408700px;}
.y295{bottom:125.779650px;}
.ydf{bottom:126.076050px;}
.y17c{bottom:128.555250px;}
.y2d5{bottom:128.770650px;}
.y99{bottom:130.568250px;}
.y14e{bottom:130.598550px;}
.y265{bottom:130.693050px;}
.y18b{bottom:133.387500px;}
.y18d{bottom:133.522650px;}
.y18a{bottom:133.555050px;}
.y225{bottom:134.926650px;}
.y137{bottom:138.027150px;}
.y2e{bottom:138.911700px;}
.y233{bottom:139.549050px;}
.yb{bottom:140.459700px;}
.y1aa{bottom:141.282600px;}
.y2d4{bottom:142.273650px;}
.y294{bottom:143.775150px;}
.yde{bottom:144.071550px;}
.y1e4{bottom:144.481650px;}
.y17b{bottom:146.550750px;}
.ycc{bottom:147.913650px;}
.y14d{bottom:148.594050px;}
.y264{bottom:148.688550px;}
.y2d{bottom:152.414700px;}
.y224{bottom:152.922150px;}
.y1f0{bottom:154.878900px;}
.y1f7{bottom:155.058900px;}
.y2d3{bottom:155.776650px;}
.y98{bottom:155.948250px;}
.y1fd{bottom:156.813900px;}
.y203{bottom:156.982650px;}
.y232{bottom:157.544550px;}
.y189{bottom:157.558050px;}
.ya{bottom:158.455200px;}
.y136{bottom:159.027150px;}
.y293{bottom:161.770650px;}
.y1a9{bottom:162.282600px;}
.y1fe{bottom:162.945150px;}
.y1f8{bottom:163.856400px;}
.y17a{bottom:164.546250px;}
.ycb{bottom:165.909150px;}
.y2c{bottom:165.917700px;}
.y1f1{bottom:166.263900px;}
.y14c{bottom:166.589550px;}
.y263{bottom:166.684050px;}
.ydd{bottom:168.074550px;}
.y1f3{bottom:168.873900px;}
.y1f9{bottom:169.065150px;}
.y2d2{bottom:169.279650px;}
.y1ff{bottom:169.605150px;}
.y204{bottom:169.785150px;}
.y223{bottom:170.917650px;}
.y1f2{bottom:172.845150px;}
.y97{bottom:173.943750px;}
.y231{bottom:175.540050px;}
.y188{bottom:175.553550px;}
.y2b{bottom:179.420700px;}
.y292{bottom:179.766150px;}
.y135{bottom:180.027150px;}
.y179{bottom:182.541750px;}
.y2d1{bottom:182.782650px;}
.y1a8{bottom:183.282600px;}
.yca{bottom:183.904650px;}
.y14b{bottom:184.585050px;}
.y9{bottom:185.455200px;}
.ydc{bottom:186.070050px;}
.y1e3{bottom:187.978650px;}
.y222{bottom:188.913150px;}
.y96{bottom:191.939250px;}
.y2a{bottom:192.923700px;}
.y230{bottom:193.535550px;}
.y187{bottom:193.549050px;}
.y262{bottom:193.684050px;}
.y2d0{bottom:196.285650px;}
.y291{bottom:197.761650px;}
.y134{bottom:201.027150px;}
.y14a{bottom:202.580550px;}
.y8{bottom:203.450700px;}
.ydb{bottom:204.065550px;}
.y1a7{bottom:204.282600px;}
.y1e2{bottom:205.974150px;}
.y221{bottom:206.908650px;}
.y178{bottom:209.541750px;}
.y2cf{bottom:209.788650px;}
.y95{bottom:209.934750px;}
.yc9{bottom:210.904650px;}
.y22f{bottom:211.531050px;}
.y186{bottom:211.544550px;}
.y1f5{bottom:213.570150px;}
.y1f6{bottom:213.738900px;}
.y1fb{bottom:213.761400px;}
.y1fc{bottom:213.930150px;}
.y201{bottom:213.952650px;}
.y1f4{bottom:214.110150px;}
.y202{bottom:214.121400px;}
.y206{bottom:214.132650px;}
.y207{bottom:214.290150px;}
.y1fa{bottom:214.301400px;}
.y200{bottom:214.492650px;}
.y205{bottom:214.672650px;}
.y290{bottom:215.757150px;}
.y149{bottom:220.576050px;}
.y7{bottom:221.446200px;}
.y133{bottom:222.027150px;}
.yda{bottom:222.061050px;}
.y2ce{bottom:223.291650px;}
.y1e1{bottom:223.969650px;}
.y220{bottom:224.904150px;}
.y94{bottom:227.930250px;}
.y1a6{bottom:228.282600px;}
.y22e{bottom:229.526550px;}
.y185{bottom:229.540050px;}
.y261{bottom:233.617050px;}
.y28f{bottom:233.752650px;}
.y2cd{bottom:236.794650px;}
.y148{bottom:238.571550px;}
.y6{bottom:239.441700px;}
.yd9{bottom:240.056550px;}
.y1e0{bottom:241.965150px;}
.y21f{bottom:242.899650px;}
.y132{bottom:243.027150px;}
.y326{bottom:243.970650px;}
.y93{bottom:245.925750px;}
.yc8{bottom:246.247650px;}
.y184{bottom:247.535550px;}
.y62{bottom:248.650200px;}
.y2cc{bottom:250.297650px;}
.y260{bottom:251.612550px;}
.y28e{bottom:251.748150px;}
.y177{bottom:252.336750px;}
.y147{bottom:256.567050px;}
.y1a5{bottom:257.345100px;}
.y5{bottom:257.437200px;}
.y325{bottom:257.473650px;}
.yd8{bottom:258.052050px;}
.y1df{bottom:259.960650px;}
.y242{bottom:262.102650px;}
.y61{bottom:262.153200px;}
.y2cb{bottom:263.800650px;}
.y92{bottom:263.921250px;}
.y131{bottom:264.027150px;}
.yc7{bottom:264.243150px;}
.y183{bottom:265.531050px;}
.y21e{bottom:266.902650px;}
.y25f{bottom:269.608050px;}
.y28d{bottom:269.743650px;}
.y176{bottom:270.332250px;}
.y23b{bottom:270.562650px;}
.y324{bottom:270.976650px;}
.y146{bottom:274.562550px;}
.y4{bottom:275.432700px;}
.y60{bottom:275.656200px;}
.yd7{bottom:276.047550px;}
.y241{bottom:277.102650px;}
.y2ca{bottom:277.303650px;}
.y1de{bottom:277.956150px;}
.y1a4{bottom:278.345100px;}
.y91{bottom:281.916750px;}
.yc6{bottom:282.238650px;}
.y182{bottom:283.526550px;}
.y323{bottom:284.479650px;}
.y21d{bottom:284.898150px;}
.y130{bottom:285.027150px;}
.y23a{bottom:285.562650px;}
.y25e{bottom:287.603550px;}
.y28c{bottom:287.739150px;}
.y175{bottom:288.327750px;}
.y5f{bottom:289.159200px;}
.y2c9{bottom:290.806650px;}
.y240{bottom:292.102650px;}
.y145{bottom:292.558050px;}
.y3{bottom:293.428200px;}
.y1dd{bottom:295.951650px;}
.y322{bottom:297.982650px;}
.y1a3{bottom:299.345100px;}
.y90{bottom:299.912250px;}
.yd6{bottom:300.050550px;}
.yc5{bottom:300.234150px;}
.y239{bottom:300.562650px;}
.y181{bottom:301.522050px;}
.y5e{bottom:302.662200px;}
.y21c{bottom:302.893650px;}
.y2c8{bottom:304.309650px;}
.y25d{bottom:305.599050px;}
.y28b{bottom:305.734650px;}
.y174{bottom:306.323250px;}
.y23f{bottom:307.102650px;}
.y12e{bottom:308.835150px;}
.y2{bottom:311.423700px;}
.y321{bottom:311.485650px;}
.y1dc{bottom:313.947150px;}
.y238{bottom:315.562650px;}
.y5d{bottom:316.165200px;}
.y2c7{bottom:317.812650px;}
.yd5{bottom:318.046050px;}
.yc4{bottom:318.229650px;}
.y180{bottom:319.517550px;}
.y144{bottom:319.558050px;}
.y1a2{bottom:320.345100px;}
.y23e{bottom:322.102650px;}
.y320{bottom:324.988650px;}
.y8f{bottom:325.211250px;}
.y25c{bottom:329.602050px;}
.y5c{bottom:329.668200px;}
.y21b{bottom:329.893650px;}
.y173{bottom:330.326250px;}
.y237{bottom:330.562650px;}
.y2c6{bottom:331.315650px;}
.y1db{bottom:331.942650px;}
.y28a{bottom:332.734650px;}
.y12f{bottom:332.835150px;}
.yd4{bottom:336.041550px;}
.yc3{bottom:336.225150px;}
.y23d{bottom:337.102650px;}
.y143{bottom:337.553550px;}
.y1{bottom:338.423700px;}
.y31f{bottom:338.491650px;}
.y5b{bottom:343.171200px;}
.y8e{bottom:343.206750px;}
.y1a1{bottom:344.345100px;}
.y2c5{bottom:344.818650px;}
.y236{bottom:345.562650px;}
.y25b{bottom:347.597550px;}
.y172{bottom:348.321750px;}
.y289{bottom:350.730150px;}
.y31e{bottom:351.994650px;}
.yd3{bottom:354.037050px;}
.yc2{bottom:354.220650px;}
.y142{bottom:355.549050px;}
.y12d{bottom:355.897650px;}
.y5a{bottom:356.674200px;}
.y198{bottom:357.622650px;}
.y2c4{bottom:358.321650px;}
.y1da{bottom:358.942650px;}
.y8d{bottom:361.202250px;}
.y31d{bottom:365.497650px;}
.y25a{bottom:365.593050px;}
.y171{bottom:366.317250px;}
.y1a0{bottom:367.407600px;}
.y288{bottom:368.725650px;}
.y59{bottom:370.177200px;}
.y12c{bottom:370.897650px;}
.y21a{bottom:371.595150px;}
.y2c3{bottom:371.824650px;}
.yd2{bottom:372.032550px;}
.yc1{bottom:372.216150px;}
.y197{bottom:372.622650px;}
.y141{bottom:373.544550px;}
.y1d9{bottom:376.938150px;}
.y31c{bottom:379.000650px;}
.y8b{bottom:379.336050px;}
.y19f{bottom:382.407600px;}
.y259{bottom:383.588550px;}
.y58{bottom:383.680200px;}
.y8c{bottom:383.693250px;}
.y170{bottom:384.312750px;}
.y2c2{bottom:385.327650px;}
.y28{bottom:386.098200px;}
.y287{bottom:386.721150px;}
.y196{bottom:387.622650px;}
.y219{bottom:389.590650px;}
.yd1{bottom:390.028050px;}
.yc0{bottom:390.211650px;}
.y140{bottom:391.540050px;}
.y31b{bottom:392.503650px;}
.y1d8{bottom:394.933650px;}
.y57{bottom:397.183200px;}
.y8a{bottom:397.331550px;}
.y2c1{bottom:398.830650px;}
.y258{bottom:401.584050px;}
.y16f{bottom:402.308250px;}
.y195{bottom:402.622650px;}
.y27{bottom:404.093700px;}
.y286{bottom:404.716650px;}
.y31a{bottom:406.006650px;}
.y218{bottom:407.586150px;}
.yd0{bottom:408.023550px;}
.y13f{bottom:409.535550px;}
.y56{bottom:410.686200px;}
.y2c0{bottom:412.333650px;}
.y1d7{bottom:412.929150px;}
.ybf{bottom:414.214650px;}
.y89{bottom:415.327050px;}
.y319{bottom:419.509650px;}
.y257{bottom:419.579550px;}
.y16e{bottom:420.303750px;}
.y26{bottom:422.089200px;}
.y285{bottom:422.712150px;}
.y55{bottom:424.189200px;}
.y217{bottom:425.581650px;}
.y2bf{bottom:425.836650px;}
.y13e{bottom:427.531050px;}
.y10e{bottom:428.462550px;}
.y1d6{bottom:430.924650px;}
.ybd{bottom:432.219150px;}
.y318{bottom:433.012650px;}
.y88{bottom:433.322550px;}
.ybe{bottom:436.705650px;}
.y256{bottom:437.575050px;}
.y54{bottom:437.692200px;}
.y2be{bottom:439.339650px;}
.y25{bottom:440.084700px;}
.y284{bottom:440.707650px;}
.y19b{bottom:441.031050px;}
.y216{bottom:443.577150px;}
.y10a{bottom:445.147650px;}
.y13d{bottom:445.526550px;}
.y10d{bottom:446.458050px;}
.y317{bottom:446.515650px;}
.y16d{bottom:447.303750px;}
.y1d5{bottom:448.920150px;}
.ybc{bottom:450.214650px;}
.y87{bottom:451.318050px;}
.y2bd{bottom:452.842650px;}
.y53{bottom:454.187700px;}
.y255{bottom:455.570550px;}
.y24{bottom:458.080200px;}
.y283{bottom:458.703150px;}
.y19a{bottom:459.026550px;}
.y316{bottom:460.018650px;}
.y215{bottom:461.572650px;}
.y10c{bottom:464.453550px;}
.y2bc{bottom:466.345650px;}
.y1d4{bottom:466.915650px;}
.y108{bottom:467.647650px;}
.yba{bottom:468.285900px;}
.ybb{bottom:472.705650px;}
.y315{bottom:473.521650px;}
.y254{bottom:473.566050px;}
.y23{bottom:476.075700px;}
.y86{bottom:476.617050px;}
.y282{bottom:476.698650px;}
.y199{bottom:477.022050px;}
.y214{bottom:479.568150px;}
.y2bb{bottom:479.848650px;}
.y107{bottom:482.647650px;}
.y1d3{bottom:484.911150px;}
.yb9{bottom:486.281400px;}
.y314{bottom:487.024650px;}
.y16c{bottom:490.098750px;}
.y154{bottom:490.162650px;}
.y10b{bottom:491.453550px;}
.y52{bottom:491.683200px;}
.y2ba{bottom:493.351650px;}
.y22{bottom:494.071200px;}
.y85{bottom:494.612550px;}
.y281{bottom:494.694150px;}
.y213{bottom:497.563650px;}
.y253{bottom:497.569050px;}
.y106{bottom:497.647650px;}
.y313{bottom:500.527650px;}
.y1d2{bottom:502.906650px;}
.y153{bottom:505.162650px;}
.y51{bottom:505.186200px;}
.y109{bottom:506.647650px;}
.y2b9{bottom:506.854650px;}
.yb8{bottom:510.284400px;}
.y21{bottom:512.066700px;}
.y84{bottom:512.608050px;}
.y105{bottom:512.647650px;}
.y280{bottom:512.689650px;}
.y312{bottom:514.030650px;}
.y19e{bottom:514.822650px;}
.y212{bottom:515.559150px;}
.y252{bottom:515.564550px;}
.y16b{bottom:517.098750px;}
.y152{bottom:520.162650px;}
.y2b8{bottom:520.357650px;}
.y1d1{bottom:520.902150px;}
.y1b0{bottom:524.542650px;}
.y311{bottom:527.533650px;}
.y103{bottom:527.647650px;}
.yb7{bottom:528.279900px;}
.y19d{bottom:529.822650px;}
.y20{bottom:530.062200px;}
.y83{bottom:530.603550px;}
.y12b{bottom:530.652150px;}
.y27f{bottom:530.685150px;}
.y104{bottom:531.643650px;}
.y211{bottom:533.554650px;}
.y251{bottom:533.560050px;}
.y2b7{bottom:533.860650px;}
.y50{bottom:535.940700px;}
.y12a{bottom:536.652150px;}
.y1cf{bottom:538.915650px;}
.y1af{bottom:539.542650px;}
.y310{bottom:541.036650px;}
.y1d0{bottom:543.393150px;}
.y19c{bottom:544.822650px;}
.yb6{bottom:546.275400px;}
.y2b6{bottom:547.363650px;}
.y1f{bottom:548.057700px;}
.y82{bottom:548.599050px;}
.y101{bottom:548.647650px;}
.y4f{bottom:549.443700px;}
.y210{bottom:551.550150px;}
.y250{bottom:551.555550px;}
.y129{bottom:551.652150px;}
.y30f{bottom:554.539650px;}
.y1ae{bottom:554.542650px;}
.y1ce{bottom:556.911150px;}
.y27e{bottom:557.685150px;}
.y2b5{bottom:560.866650px;}
.y16a{bottom:561.505050px;}
.y4e{bottom:562.946700px;}
.y100{bottom:563.647650px;}
.yb5{bottom:564.270900px;}
.y1e{bottom:566.053200px;}
.y81{bottom:566.594550px;}
.y30e{bottom:568.042650px;}
.y24f{bottom:569.551050px;}
.y128{bottom:572.652150px;}
.y2b4{bottom:574.369650px;}
.y4d{bottom:576.449700px;}
.y20f{bottom:578.550150px;}
.yff{bottom:578.647650px;}
.y127{bottom:578.652150px;}
.y169{bottom:579.500550px;}
.y30d{bottom:581.545650px;}
.yb4{bottom:582.266400px;}
.y1cd{bottom:583.911150px;}
.y1d{bottom:584.048700px;}
.y80{bottom:584.590050px;}
.y24e{bottom:587.546550px;}
.y2b3{bottom:587.872650px;}
.y4c{bottom:589.952700px;}
.yfe{bottom:593.647650px;}
.y126{bottom:593.652150px;}
.y30c{bottom:595.048650px;}
.y168{bottom:597.496050px;}
.yb3{bottom:600.261900px;}
.y2b2{bottom:601.375650px;}
.y1cc{bottom:601.906650px;}
.y7f{bottom:602.585550px;}
.y102{bottom:602.647650px;}
.y4b{bottom:603.455700px;}
.y24d{bottom:605.542050px;}
.y27d{bottom:606.487050px;}
.y30b{bottom:608.551650px;}
.yfd{bottom:608.647650px;}
.y125{bottom:614.652150px;}
.y2b1{bottom:614.878650px;}
.y167{bottom:615.491550px;}
.y1c{bottom:616.807200px;}
.yb2{bottom:618.257400px;}
.y1cb{bottom:619.902150px;}
.y4a{bottom:619.951200px;}
.y7e{bottom:620.581050px;}
.y20e{bottom:621.782550px;}
.y30a{bottom:622.054650px;}
.y24c{bottom:623.537550px;}
.yfb{bottom:623.652150px;}
.y27c{bottom:624.482550px;}
.yfc{bottom:627.643650px;}
.y2b0{bottom:628.381650px;}
.y166{bottom:633.487050px;}
.y1b{bottom:634.802700px;}
.y309{bottom:635.557650px;}
.y124{bottom:635.652150px;}
.yb1{bottom:636.252900px;}
.y1c9{bottom:637.974150px;}
.y7d{bottom:638.576550px;}
.y20d{bottom:639.778050px;}
.y2af{bottom:641.884650px;}
.y1ca{bottom:642.393150px;}
.y27b{bottom:642.478050px;}
.yfa{bottom:644.652150px;}
.y24b{bottom:647.540550px;}
.y122{bottom:647.652150px;}
.y308{bottom:649.060650px;}
.y165{bottom:651.482550px;}
.y1a{bottom:652.798200px;}
.yb0{bottom:654.248400px;}
.y2ae{bottom:655.387650px;}
.y1c8{bottom:655.969650px;}
.y123{bottom:656.652150px;}
.y49{bottom:657.446700px;}
.y20c{bottom:657.773550px;}
.y27a{bottom:660.473550px;}
.y307{bottom:662.563650px;}
.y121{bottom:662.652150px;}
.y7c{bottom:663.875550px;}
.y24a{bottom:665.536050px;}
.yf9{bottom:665.652150px;}
.y2ad{bottom:668.890650px;}
.y164{bottom:669.478050px;}
.y19{bottom:670.793700px;}
.y48{bottom:670.949700px;}
.yaf{bottom:672.243900px;}
.y1c7{bottom:673.965150px;}
.y20b{bottom:675.769050px;}
.y306{bottom:676.066650px;}
.y120{bottom:677.652150px;}
.y2ed{bottom:677.731650px;}
.y279{bottom:678.469050px;}
.yf8{bottom:680.652150px;}
.y7b{bottom:681.871050px;}
.y2ac{bottom:682.393650px;}
.y249{bottom:683.531550px;}
.y47{bottom:687.445200px;}
.y163{bottom:687.473550px;}
.y18{bottom:688.789200px;}
.y305{bottom:689.569650px;}
.y2ec{bottom:691.234650px;}
.y1c6{bottom:691.960650px;}
.y20a{bottom:693.764550px;}
.yf7{bottom:695.652150px;}
.y2ab{bottom:695.896650px;}
.yae{bottom:696.246900px;}
.y278{bottom:696.464550px;}
.y11f{bottom:698.652150px;}
.y7a{bottom:699.866550px;}
.y248{bottom:701.527050px;}
.y304{bottom:703.072650px;}
.y2eb{bottom:704.737650px;}
.y162{bottom:705.469050px;}
.y17{bottom:706.784700px;}
.y2aa{bottom:709.399650px;}
.y1c5{bottom:709.956150px;}
.yf6{bottom:710.652150px;}
.y209{bottom:711.760050px;}
.yad{bottom:714.242400px;}
.y277{bottom:714.460050px;}
.y303{bottom:716.575650px;}
.y79{bottom:717.862050px;}
.y2ea{bottom:718.240650px;}
.y247{bottom:719.522550px;}
.y11e{bottom:719.652150px;}
.y2a9{bottom:722.902650px;}
.y161{bottom:723.464550px;}
.y16{bottom:724.780200px;}
.y46{bottom:724.940700px;}
.y302{bottom:730.078650px;}
.yf5{bottom:731.652150px;}
.y2e9{bottom:731.743650px;}
.yac{bottom:732.237900px;}
.y276{bottom:732.455550px;}
.y1c4{bottom:735.457650px;}
.y78{bottom:735.857550px;}
.y2a8{bottom:736.405650px;}
.y246{bottom:737.518050px;}
.y45{bottom:738.443700px;}
.y11d{bottom:740.652150px;}
.y160{bottom:741.460050px;}
.y15{bottom:742.775700px;}
.y301{bottom:743.581650px;}
.y2e8{bottom:745.246650px;}
.y22d{bottom:748.882650px;}
.y2a7{bottom:749.908650px;}
.yab{bottom:750.233400px;}
.y275{bottom:750.451050px;}
.yf4{bottom:752.652150px;}
.y77{bottom:753.853050px;}
.y44{bottom:754.939200px;}
.y300{bottom:757.084650px;}
.y2e7{bottom:758.749650px;}
.y15f{bottom:759.455550px;}
.y14{bottom:760.771200px;}
.y11c{bottom:761.652150px;}
.y2a6{bottom:763.411650px;}
.y22c{bottom:763.882650px;}
.y245{bottom:764.518050px;}
.yf3{bottom:767.652150px;}
.yaa{bottom:768.228900px;}
.y274{bottom:768.446550px;}
.y2ff{bottom:770.587650px;}
.y76{bottom:771.848550px;}
.y2e6{bottom:772.252650px;}
.y2a5{bottom:776.914650px;}
.y15e{bottom:777.451050px;}
.y13{bottom:778.766700px;}
.y22b{bottom:778.882650px;}
.y1c3{bottom:780.453150px;}
.yf2{bottom:782.652150px;}
.y2fe{bottom:784.090650px;}
.y2e5{bottom:785.755650px;}
.ya9{bottom:786.224400px;}
.y273{bottom:786.442050px;}
.y75{bottom:789.844050px;}
.y2a4{bottom:790.417650px;}
.y22a{bottom:793.882650px;}
.y11a{bottom:794.652150px;}
.y43{bottom:794.692200px;}
.y15d{bottom:795.446550px;}
.y12{bottom:796.762200px;}
.y2fd{bottom:797.593650px;}
.yf1{bottom:797.652150px;}
.y1c2{bottom:798.448650px;}
.y2e4{bottom:799.258650px;}
.y11b{bottom:803.652150px;}
.y2a3{bottom:803.920650px;}
.ya8{bottom:804.219900px;}
.y244{bottom:804.451050px;}
.y74{bottom:807.839550px;}
.y42{bottom:808.195200px;}
.y229{bottom:808.882650px;}
.y119{bottom:809.652150px;}
.y2fc{bottom:811.096650px;}
.y2e3{bottom:812.761650px;}
.y15c{bottom:813.442050px;}
.y11{bottom:814.757700px;}
.y1c1{bottom:816.444150px;}
.y2a2{bottom:817.423650px;}
.yef{bottom:818.652150px;}
.y41{bottom:821.698200px;}
.ya7{bottom:822.215400px;}
.y243{bottom:822.446550px;}
.y2fb{bottom:824.599650px;}
.y118{bottom:824.652150px;}
.y73{bottom:825.835050px;}
.y2e2{bottom:826.264650px;}
.yf0{bottom:827.652150px;}
.y2a1{bottom:830.926650px;}
.y272{bottom:831.437550px;}
.y10{bottom:832.753200px;}
.yee{bottom:833.652150px;}
.y1c0{bottom:834.439650px;}
.y40{bottom:835.201200px;}
.y2fa{bottom:838.102650px;}
.y2e1{bottom:839.767650px;}
.ya6{bottom:840.210900px;}
.y15b{bottom:840.442050px;}
.y72{bottom:843.830550px;}
.y2a0{bottom:844.429650px;}
.y117{bottom:845.652150px;}
.yed{bottom:848.652150px;}
.y3f{bottom:848.704200px;}
.y271{bottom:849.433050px;}
.yf{bottom:850.748700px;}
.y2f9{bottom:851.605650px;}
.y1bf{bottom:852.435150px;}
.y2e0{bottom:853.270650px;}
.y29f{bottom:857.932650px;}
.y15a{bottom:858.437550px;}
.y71{bottom:861.826050px;}
.y3e{bottom:862.207200px;}
.y2f8{bottom:865.108650px;}
.y116{bottom:866.652150px;}
.y2df{bottom:866.773650px;}
.ya5{bottom:867.210900px;}
.y270{bottom:867.428550px;}
.yec{bottom:869.652150px;}
.y1be{bottom:870.430650px;}
.y29e{bottom:871.435650px;}
.yeb{bottom:875.652150px;}
.y3d{bottom:875.710200px;}
.y159{bottom:876.433050px;}
.y2f7{bottom:878.611650px;}
.y2de{bottom:880.276650px;}
.y29d{bottom:884.938650px;}
.y26f{bottom:885.424050px;}
.y70{bottom:887.125050px;}
.y115{bottom:887.652150px;}
.y1bd{bottom:888.426150px;}
.y3c{bottom:889.213200px;}
.yea{bottom:890.652150px;}
.y2f6{bottom:892.114650px;}
.y2dd{bottom:893.779650px;}
.y158{bottom:894.428550px;}
.y37{bottom:895.298550px;}
.y29c{bottom:898.441650px;}
.ya4{bottom:902.553900px;}
.y3b{bottom:902.716200px;}
.y26e{bottom:903.419550px;}
.y6f{bottom:905.120550px;}
.y2f5{bottom:905.617650px;}
.y1bc{bottom:906.421650px;}
.y2dc{bottom:907.282650px;}
.y114{bottom:908.652150px;}
.ye9{bottom:911.652150px;}
.y29b{bottom:911.944650px;}
.y157{bottom:912.424050px;}
.y36{bottom:915.794550px;}
.y3a{bottom:916.219200px;}
.y2f4{bottom:919.120650px;}
.y2db{bottom:920.785650px;}
.y26d{bottom:921.415050px;}
.y6e{bottom:923.116050px;}
.y1bb{bottom:924.417150px;}
.y29a{bottom:925.447650px;}
.ya3{bottom:929.553900px;}
.y113{bottom:929.652150px;}
.y39{bottom:929.722200px;}
.y156{bottom:930.419550px;}
.y2f3{bottom:932.623650px;}
.ye8{bottom:932.652150px;}
.y2da{bottom:934.288650px;}
.y26c{bottom:939.410550px;}
.y35{bottom:939.698700px;}
.y6d{bottom:941.111550px;}
.y111{bottom:941.652150px;}
.y1ba{bottom:942.412650px;}
.y2f2{bottom:946.126650px;}
.y38{bottom:946.217700px;}
.y2d9{bottom:947.791650px;}
.y299{bottom:947.947650px;}
.y155{bottom:948.415050px;}
.y112{bottom:950.652150px;}
.ye5{bottom:956.460150px;}
.y110{bottom:956.652150px;}
.y26b{bottom:957.406050px;}
.y6c{bottom:959.107050px;}
.y2f1{bottom:959.629650px;}
.y1b9{bottom:960.408150px;}
.ya2{bottom:966.410550px;}
.y34{bottom:967.898550px;}
.ye7{bottom:971.460150px;}
.y10f{bottom:971.652150px;}
.y2f0{bottom:973.132650px;}
.y26a{bottom:975.401550px;}
.y63{bottom:976.592700px;}
.y6b{bottom:977.102550px;}
.y1b8{bottom:978.403650px;}
.ya1{bottom:984.406050px;}
.y2ef{bottom:986.635650px;}
.y298{bottom:992.952150px;}
.y269{bottom:993.397050px;}
.y33{bottom:994.898550px;}
.ye6{bottom:995.460150px;}
.y64{bottom:996.098550px;}
.y1b7{bottom:996.399150px;}
.y2ee{bottom:1000.138650px;}
.y6a{bottom:1002.401550px;}
.y297{bottom:1010.947650px;}
.y9f{bottom:1013.641650px;}
.ye4{bottom:1018.522650px;}
.y69{bottom:1020.397050px;}
.y1b6{bottom:1020.402150px;}
.y9e{bottom:1027.144650px;}
.ye3{bottom:1033.522650px;}
.y296{bottom:1036.147650px;}
.y68{bottom:1038.392550px;}
.y1b4{bottom:1038.397650px;}
.y9d{bottom:1040.647650px;}
.y1b5{bottom:1042.893150px;}
.y66{bottom:1096.623600px;}
.y67{bottom:1097.773650px;}
.ya0{bottom:1158.405000px;}
.h13{height:9.072000px;}
.h18{height:21.541027px;}
.h8{height:22.682400px;}
.hd{height:25.517700px;}
.hf{height:26.911230px;}
.ha{height:29.568000px;}
.h15{height:30.321000px;}
.h5{height:30.534000px;}
.h19{height:32.715000px;}
.h12{height:32.928000px;}
.h11{height:33.792000px;}
.h9{height:34.896000px;}
.h14{height:35.883533px;}
.h16{height:37.981670px;}
.h10{height:38.016000px;}
.h3{height:39.258000px;}
.h17{height:42.321001px;}
.h7{height:42.692400px;}
.hc{height:43.620000px;}
.h2{height:46.464000px;}
.h4{height:50.688000px;}
.hb{height:59.136000px;}
.h6{height:63.360000px;}
.h1{height:1182.000000px;}
.he{height:1182.045000px;}
.h0{height:1182.046509px;}
.w2{width:5.185500px;}
.w3{width:434.619000px;}
.w4{width:461.618958px;}
.w0{width:901.417511px;}
.w1{width:901.500000px;}
.x1f{left:-34.819650px;}
.x0{left:0.000000px;}
.x24{left:31.025850px;}
.x23{left:37.322851px;}
.x2{left:45.713100px;}
.xb{left:51.709500px;}
.x3{left:60.713250px;}
.x10{left:167.583900px;}
.x17{left:185.965500px;}
.x25{left:248.577000px;}
.x1{left:250.671300px;}
.x18{left:256.457850px;}
.x41{left:262.459350px;}
.x2a{left:272.021100px;}
.x2b{left:294.521100px;}
.x12{left:300.799650px;}
.x2c{left:317.774850px;}
.x22{left:322.273499px;}
.x21{left:335.773500px;}
.x5{left:338.121150px;}
.x16{left:353.197500px;}
.x2d{left:358.657350px;}
.xa{left:360.259500px;}
.x1b{left:364.820400px;}
.x13{left:366.175800px;}
.x1c{left:372.664800px;}
.x2e{left:379.098600px;}
.x27{left:393.268650px;}
.x2f{left:399.539850px;}
.x30{left:413.793600px;}
.x28{left:420.245250px;}
.x31{left:429.532350px;}
.x33{left:440.411100px;}
.x32{left:444.528600px;}
.x1e{left:455.616000px;}
.x20{left:463.115700px;}
.x15{left:464.941500px;}
.x34{left:479.966100px;}
.x36{left:485.399850px;}
.x35{left:494.962350px;}
.xd{left:505.455900px;}
.xc{left:515.596500px;}
.x37{left:526.282350px;}
.x38{left:541.278600px;}
.x29{left:546.356400px;}
.x39{left:556.274850px;}
.x3a{left:567.153600px;}
.x3b{left:587.594850px;}
.x3c{left:602.591100px;}
.x1a{left:606.152400px;}
.x3d{left:608.036100px;}
.x1d{left:623.758200px;}
.x3e{left:628.477350px;}
.x19{left:640.544400px;}
.x3f{left:650.414850px;}
.x40{left:664.668600px;}
.x6{left:693.033150px;}
.x11{left:703.335900px;}
.x14{left:708.685500px;}
.xe{left:720.423900px;}
.x9{left:742.644300px;}
.xf{left:745.527900px;}
.x7{left:776.893650px;}
.x26{left:810.925800px;}
.x4{left:817.675800px;}
.x8{left:879.570000px;}
@media print{
.v4{vertical-align:-15.984000pt;}
.v2{vertical-align:-14.208000pt;}
.v5{vertical-align:-5.311467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.ls12{letter-spacing:-1.080000pt;}
.lsa{letter-spacing:-1.024000pt;}
.ls6{letter-spacing:-0.938667pt;}
.ls11{letter-spacing:-0.600000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.085333pt;}
.ls2{letter-spacing:-0.074667pt;}
.ls5{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.336000pt;}
.ls0{letter-spacing:1.216000pt;}
.lse{letter-spacing:10.616218pt;}
.lsb{letter-spacing:13.282292pt;}
.lsd{letter-spacing:15.924326pt;}
.lsf{letter-spacing:32.000000pt;}
.lsc{letter-spacing:95.641600pt;}
.ls9{letter-spacing:528.286400pt;}
.wsa0{word-spacing:-95.641600pt;}
.ws4{word-spacing:-20.000000pt;}
.ws2{word-spacing:-17.216000pt;}
.ws99{word-spacing:-15.972147pt;}
.wsdc{word-spacing:-14.666667pt;}
.wsd3{word-spacing:-12.336000pt;}
.wsd2{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.952000pt;}
.ws17{word-spacing:-11.616000pt;}
.ws16{word-spacing:-11.520000pt;}
.wsa7{word-spacing:-11.424000pt;}
.ws5f{word-spacing:-10.666667pt;}
.ws9b{word-spacing:-10.664038pt;}
.ws62{word-spacing:-10.154667pt;}
.wsb2{word-spacing:-10.000000pt;}
.wsb5{word-spacing:-9.400000pt;}
.ws3{word-spacing:-9.333333pt;}
.ws7{word-spacing:-9.258667pt;}
.wsfa{word-spacing:-8.960000pt;}
.wsb7{word-spacing:-8.920000pt;}
.ws5{word-spacing:-7.800000pt;}
.ws6{word-spacing:-6.933333pt;}
.ws25{word-spacing:-3.264000pt;}
.ws19{word-spacing:-3.061333pt;}
.ws0{word-spacing:-3.028800pt;}
.wsce{word-spacing:-2.832000pt;}
.wscc{word-spacing:-2.736000pt;}
.ws58{word-spacing:-2.640000pt;}
.ws102{word-spacing:-2.538667pt;}
.ws20{word-spacing:-2.496000pt;}
.ws67{word-spacing:-2.400000pt;}
.ws53{word-spacing:-2.352000pt;}
.wsee{word-spacing:-2.314667pt;}
.ws2e{word-spacing:-2.256000pt;}
.ws30{word-spacing:-2.208000pt;}
.ws3f{word-spacing:-2.160000pt;}
.ws42{word-spacing:-2.112000pt;}
.wsad{word-spacing:-2.063995pt;}
.ws1b{word-spacing:-2.016000pt;}
.ws1f{word-spacing:-1.968000pt;}
.ws82{word-spacing:-1.920000pt;}
.wsaa{word-spacing:-1.872000pt;}
.ws10d{word-spacing:-1.829333pt;}
.ws7c{word-spacing:-1.824000pt;}
.ws3a{word-spacing:-1.776000pt;}
.ws79{word-spacing:-1.728000pt;}
.wsdf{word-spacing:-1.717333pt;}
.ws6c{word-spacing:-1.680000pt;}
.wsca{word-spacing:-1.632000pt;}
.wsef{word-spacing:-1.605330pt;}
.ws63{word-spacing:-1.584000pt;}
.wse1{word-spacing:-1.568000pt;}
.ws7e{word-spacing:-1.536000pt;}
.ws47{word-spacing:-1.488000pt;}
.ws87{word-spacing:-1.440000pt;}
.wsec{word-spacing:-1.418667pt;}
.ws3e{word-spacing:-1.392000pt;}
.wsda{word-spacing:-1.344000pt;}
.ws108{word-spacing:-1.306667pt;}
.wscb{word-spacing:-1.296000pt;}
.ws57{word-spacing:-1.248000pt;}
.ws97{word-spacing:-1.200000pt;}
.wsc1{word-spacing:-1.152000pt;}
.wsde{word-spacing:-1.120000pt;}
.ws2d{word-spacing:-1.104000pt;}
.ws2a{word-spacing:-1.008000pt;}
.ws55{word-spacing:-0.960000pt;}
.ws110{word-spacing:-0.933333pt;}
.ws40{word-spacing:-0.912000pt;}
.ws2b{word-spacing:-0.864000pt;}
.ws3d{word-spacing:-0.816000pt;}
.ws5a{word-spacing:-0.768000pt;}
.wsf7{word-spacing:-0.746667pt;}
.ws31{word-spacing:-0.720000pt;}
.ws45{word-spacing:-0.672000pt;}
.wscf{word-spacing:-0.624000pt;}
.ws15{word-spacing:-0.576000pt;}
.wsfe{word-spacing:-0.560000pt;}
.ws4e{word-spacing:-0.528000pt;}
.ws10a{word-spacing:-0.485333pt;}
.ws9e{word-spacing:-0.480000pt;}
.ws49{word-spacing:-0.432000pt;}
.wsbc{word-spacing:-0.384000pt;}
.ws77{word-spacing:-0.341333pt;}
.ws7d{word-spacing:-0.336000pt;}
.wsf5{word-spacing:-0.298667pt;}
.wsa9{word-spacing:-0.288000pt;}
.wsed{word-spacing:-0.224000pt;}
.ws44{word-spacing:-0.192000pt;}
.wsf0{word-spacing:-0.149333pt;}
.ws41{word-spacing:-0.144000pt;}
.ws76{word-spacing:-0.096000pt;}
.ws1d{word-spacing:-0.048000pt;}
.wsb9{word-spacing:-0.040000pt;}
.wsd{word-spacing:0.000000pt;}
.wse7{word-spacing:0.037333pt;}
.ws5d{word-spacing:0.048000pt;}
.ws10{word-spacing:0.096000pt;}
.wsf9{word-spacing:0.112000pt;}
.ws2f{word-spacing:0.144000pt;}
.ws100{word-spacing:0.149333pt;}
.ws78{word-spacing:0.170667pt;}
.ws74{word-spacing:0.192000pt;}
.ws1a{word-spacing:0.240000pt;}
.wscd{word-spacing:0.288000pt;}
.ws85{word-spacing:0.336000pt;}
.ws32{word-spacing:0.384000pt;}
.ws21{word-spacing:0.432000pt;}
.ws101{word-spacing:0.448000pt;}
.ws12{word-spacing:0.480000pt;}
.wse8{word-spacing:0.485333pt;}
.ws54{word-spacing:0.528000pt;}
.ws9{word-spacing:0.576000pt;}
.wsb8{word-spacing:0.600000pt;}
.ws7f{word-spacing:0.624000pt;}
.wsa8{word-spacing:0.672000pt;}
.ws69{word-spacing:0.720000pt;}
.ws59{word-spacing:0.768000pt;}
.ws6a{word-spacing:0.816000pt;}
.ws91{word-spacing:0.864000pt;}
.wsea{word-spacing:0.896000pt;}
.ws28{word-spacing:0.912000pt;}
.wsf8{word-spacing:0.933333pt;}
.ws89{word-spacing:0.960000pt;}
.ws5c{word-spacing:1.008000pt;}
.ws38{word-spacing:1.056000pt;}
.wsb{word-spacing:1.104000pt;}
.ws3c{word-spacing:1.152000pt;}
.ws109{word-spacing:1.194667pt;}
.ws8e{word-spacing:1.200000pt;}
.ws10c{word-spacing:1.232000pt;}
.ws107{word-spacing:1.269333pt;}
.ws5b{word-spacing:1.296000pt;}
.wse0{word-spacing:1.306667pt;}
.ws11{word-spacing:1.344000pt;}
.wsa6{word-spacing:1.365333pt;}
.ws22{word-spacing:1.392000pt;}
.wsab{word-spacing:1.536000pt;}
.ws64{word-spacing:1.584000pt;}
.ws105{word-spacing:1.605330pt;}
.ws96{word-spacing:1.632000pt;}
.ws35{word-spacing:1.728000pt;}
.ws10b{word-spacing:1.754667pt;}
.ws29{word-spacing:1.776000pt;}
.wse5{word-spacing:1.866667pt;}
.ws43{word-spacing:1.872000pt;}
.ws94{word-spacing:1.920000pt;}
.wsff{word-spacing:1.941333pt;}
.ws37{word-spacing:1.968000pt;}
.ws83{word-spacing:2.016000pt;}
.wsf6{word-spacing:2.053333pt;}
.wsf2{word-spacing:2.090667pt;}
.ws65{word-spacing:2.112000pt;}
.wsf4{word-spacing:2.128000pt;}
.ws39{word-spacing:2.160000pt;}
.wsc{word-spacing:2.208000pt;}
.ws90{word-spacing:2.256000pt;}
.wsa5{word-spacing:2.261333pt;}
.ws7b{word-spacing:2.304000pt;}
.ws56{word-spacing:2.352000pt;}
.ws36{word-spacing:2.400000pt;}
.ws8c{word-spacing:2.447995pt;}
.ws26{word-spacing:2.496000pt;}
.ws111{word-spacing:2.538667pt;}
.ws48{word-spacing:2.544000pt;}
.wse9{word-spacing:2.576000pt;}
.ws3b{word-spacing:2.592000pt;}
.ws4b{word-spacing:2.640000pt;}
.ws27{word-spacing:2.688000pt;}
.ws2c{word-spacing:2.736000pt;}
.wsfb{word-spacing:2.762667pt;}
.wse4{word-spacing:2.800000pt;}
.ws75{word-spacing:2.832000pt;}
.ws81{word-spacing:2.880000pt;}
.ws5e{word-spacing:2.976000pt;}
.ws6e{word-spacing:3.024000pt;}
.wsa3{word-spacing:3.072000pt;}
.ws51{word-spacing:3.120000pt;}
.ws106{word-spacing:3.136000pt;}
.wsac{word-spacing:3.216000pt;}
.wsc8{word-spacing:3.264000pt;}
.wsd7{word-spacing:3.312000pt;}
.wseb{word-spacing:3.322667pt;}
.ws84{word-spacing:3.360000pt;}
.wsaf{word-spacing:3.407995pt;}
.ws10f{word-spacing:3.472000pt;}
.wsdb{word-spacing:3.504000pt;}
.wsc7{word-spacing:3.552000pt;}
.wsf3{word-spacing:3.584000pt;}
.wsd6{word-spacing:3.600000pt;}
.ws98{word-spacing:3.648000pt;}
.ws13{word-spacing:3.696000pt;}
.ws80{word-spacing:3.792000pt;}
.wsba{word-spacing:3.840000pt;}
.wsdd{word-spacing:3.882667pt;}
.wse{word-spacing:3.888000pt;}
.ws86{word-spacing:3.936000pt;}
.ws14{word-spacing:4.032000pt;}
.ws7a{word-spacing:4.080000pt;}
.wsfd{word-spacing:4.106667pt;}
.wsd8{word-spacing:4.127995pt;}
.ws50{word-spacing:4.175995pt;}
.ws24{word-spacing:4.224000pt;}
.ws9f{word-spacing:4.272000pt;}
.wsfc{word-spacing:4.293333pt;}
.wsbd{word-spacing:4.320000pt;}
.ws6b{word-spacing:4.368000pt;}
.wsbe{word-spacing:4.416000pt;}
.ws23{word-spacing:4.464000pt;}
.wsae{word-spacing:4.512000pt;}
.wsc9{word-spacing:4.704000pt;}
.wsd9{word-spacing:4.800000pt;}
.ws34{word-spacing:4.848000pt;}
.ws8a{word-spacing:4.896000pt;}
.ws1e{word-spacing:4.944000pt;}
.ws6d{word-spacing:4.992000pt;}
.ws33{word-spacing:5.040000pt;}
.wsc3{word-spacing:5.088000pt;}
.wse2{word-spacing:5.114667pt;}
.wsf{word-spacing:5.136000pt;}
.ws4c{word-spacing:5.184000pt;}
.ws1c{word-spacing:5.280000pt;}
.ws95{word-spacing:5.328000pt;}
.ws4f{word-spacing:5.376000pt;}
.ws88{word-spacing:5.424000pt;}
.ws66{word-spacing:5.520000pt;}
.wsd0{word-spacing:5.664000pt;}
.ws52{word-spacing:5.712000pt;}
.wsc6{word-spacing:5.808000pt;}
.wsd1{word-spacing:5.856000pt;}
.wsbf{word-spacing:5.952000pt;}
.wsc4{word-spacing:6.000000pt;}
.ws103{word-spacing:6.048000pt;}
.ws8d{word-spacing:6.144000pt;}
.ws4d{word-spacing:6.192000pt;}
.wsc2{word-spacing:6.240000pt;}
.ws68{word-spacing:6.288000pt;}
.ws46{word-spacing:6.336000pt;}
.ws8f{word-spacing:6.816000pt;}
.wsc5{word-spacing:6.960000pt;}
.ws9d{word-spacing:7.104000pt;}
.ws92{word-spacing:7.344000pt;}
.wsd4{word-spacing:7.584000pt;}
.wsd5{word-spacing:7.680000pt;}
.ws9a{word-spacing:7.938253pt;}
.wsbb{word-spacing:8.064000pt;}
.wse3{word-spacing:8.661333pt;}
.wse6{word-spacing:8.698667pt;}
.ws8b{word-spacing:8.736000pt;}
.wsa{word-spacing:8.976000pt;}
.wsc0{word-spacing:9.120000pt;}
.ws9c{word-spacing:10.568397pt;}
.ws93{word-spacing:10.992000pt;}
.ws4a{word-spacing:12.000000pt;}
.wsb3{word-spacing:12.080000pt;}
.ws10e{word-spacing:14.186667pt;}
.ws8{word-spacing:14.666667pt;}
.wsf1{word-spacing:15.344000pt;}
.ws104{word-spacing:15.530667pt;}
.wsb6{word-spacing:19.480000pt;}
.wsa4{word-spacing:32.000000pt;}
.wsb4{word-spacing:38.880000pt;}
.ws60{word-spacing:53.077333pt;}
.wsb0{word-spacing:67.680000pt;}
.wsb1{word-spacing:87.080000pt;}
.ws72{word-spacing:90.069333pt;}
.ws73{word-spacing:104.661333pt;}
.ws70{word-spacing:137.600000pt;}
.ws6f{word-spacing:204.885333pt;}
.ws71{word-spacing:245.760000pt;}
.ws61{word-spacing:272.341333pt;}
.wsa2{word-spacing:1700.522667pt;}
.wsa1{word-spacing:2084.016000pt;}
._55{margin-left:-15.924326pt;}
._54{margin-left:-10.896000pt;}
._9{margin-left:-9.333333pt;}
._6{margin-left:-3.974400pt;}
._4{margin-left:-2.884800pt;}
._1{margin-left:-1.953600pt;}
._0{margin-left:-0.916800pt;}
._3{width:0.912000pt;}
._2{width:2.011200pt;}
._a{width:2.913600pt;}
._52{width:3.916800pt;}
._5{width:5.001600pt;}
._53{width:6.451200pt;}
._57{width:8.265856pt;}
._56{width:10.616218pt;}
._67{width:14.589867pt;}
._68{width:15.788267pt;}
._65{width:23.120000pt;}
._8{width:24.490667pt;}
._66{width:27.440000pt;}
._58{width:32.000000pt;}
._64{width:37.120000pt;}
._7{width:45.259733pt;}
._f{width:47.692267pt;}
._29{width:51.925333pt;}
._e{width:57.840000pt;}
._3f{width:61.994667pt;}
._15{width:69.077333pt;}
._3e{width:70.656000pt;}
._40{width:72.448000pt;}
._39{width:75.178667pt;}
._2a{width:76.800000pt;}
._45{width:78.762667pt;}
._11{width:89.258667pt;}
._2b{width:92.800000pt;}
._1d{width:94.592000pt;}
._12{width:98.133333pt;}
._20{width:99.029333pt;}
._2c{width:100.778667pt;}
._13{width:103.210667pt;}
._1f{width:105.258667pt;}
._38{width:107.075200pt;}
._4f{width:108.986667pt;}
._23{width:119.466667pt;}
._14{width:122.410667pt;}
._24{width:124.544000pt;}
._36{width:126.405333pt;}
._1c{width:128.664533pt;}
._18{width:130.133333pt;}
._3a{width:135.040000pt;}
._2d{width:136.575467pt;}
._51{width:139.989333pt;}
._1a{width:143.445333pt;}
._19{width:146.133333pt;}
._10{width:152.481600pt;}
._46{width:155.605333pt;}
._22{width:158.592000pt;}
._3d{width:159.573333pt;}
._50{width:171.989333pt;}
._4a{width:173.610667pt;}
._44{width:174.976000pt;}
._28{width:176.127467pt;}
._3c{width:180.906667pt;}
._4d{width:189.994667pt;}
._3b{width:191.564267pt;}
._47{width:196.650667pt;}
._4c{width:197.845333pt;}
._17{width:215.466667pt;}
._32{width:218.053333pt;}
._1e{width:223.820267pt;}
._4b{width:225.322667pt;}
._43{width:227.114667pt;}
._41{width:231.444800pt;}
._d{width:241.347200pt;}
._42{width:243.072000pt;}
._35{width:252.117333pt;}
._49{width:258.282133pt;}
._33{width:262.368000pt;}
._37{width:264.490667pt;}
._34{width:267.093333pt;}
._1b{width:291.072000pt;}
._48{width:311.999467pt;}
._25{width:318.933333pt;}
._4e{width:331.434667pt;}
._2f{width:336.213333pt;}
._26{width:337.365333pt;}
._60{width:338.520000pt;}
._2e{width:340.428267pt;}
._c{width:402.294400pt;}
._21{width:407.956800pt;}
._31{width:416.758400pt;}
._27{width:449.664000pt;}
._b{width:516.608000pt;}
._63{width:523.516800pt;}
._62{width:530.793600pt;}
._61{width:551.619200pt;}
._30{width:564.890133pt;}
._16{width:580.821333pt;}
._5f{width:629.804800pt;}
._5e{width:1062.749867pt;}
._59{width:1475.498667pt;}
._5c{width:1573.324267pt;}
._5d{width:1615.045333pt;}
._5b{width:1691.412800pt;}
._5a{width:1698.465600pt;}
.fsa{font-size:24.373333pt;}
.fs6{font-size:27.733333pt;}
.fsc{font-size:31.083733pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y18c{bottom:0.112133pt;}
.y193{bottom:2.597467pt;}
.y190{bottom:18.537333pt;}
.y192{bottom:18.542664pt;}
.y65{bottom:27.287600pt;}
.y29{bottom:27.334400pt;}
.y191{bottom:61.706802pt;}
.y18f{bottom:63.040000pt;}
.ye2{bottom:64.079600pt;}
.y1b3{bottom:65.353467pt;}
.y17f{bottom:66.283333pt;}
.y228{bottom:66.606800pt;}
.ycf{bottom:68.070800pt;}
.y9c{bottom:68.072667pt;}
.y151{bottom:68.099600pt;}
.y268{bottom:68.183600pt;}
.y1e9{bottom:70.020133pt;}
.y1ea{bottom:70.080133pt;}
.y1eb{bottom:70.130133pt;}
.y1ec{bottom:70.190133pt;}
.y1ed{bottom:70.250133pt;}
.y1ee{bottom:70.310133pt;}
.y13b{bottom:70.686800pt;}
.y208{bottom:70.950133pt;}
.y194{bottom:72.135200pt;}
.y1e7{bottom:72.436133pt;}
.y1e8{bottom:73.353467pt;}
.y13c{bottom:74.238800pt;}
.y32{bottom:75.466400pt;}
.y23c{bottom:76.055600pt;}
.ye{bottom:76.865067pt;}
.y2d8{bottom:78.454800pt;}
.y1b2{bottom:78.686800pt;}
.y1ad{bottom:78.917867pt;}
.ye1{bottom:80.075600pt;}
.y17e{bottom:82.279333pt;}
.y227{bottom:82.602800pt;}
.y13a{bottom:84.020133pt;}
.yce{bottom:84.066800pt;}
.y9b{bottom:84.068667pt;}
.y150{bottom:84.095600pt;}
.y267{bottom:84.179600pt;}
.y1ef{bottom:86.310133pt;}
.y31{bottom:87.469067pt;}
.y1e6{bottom:88.432133pt;}
.y2d7{bottom:90.457467pt;}
.y1b1{bottom:92.020133pt;}
.y235{bottom:92.051600pt;}
.y1ac{bottom:92.251200pt;}
.yd{bottom:92.861067pt;}
.ye0{bottom:96.071600pt;}
.y17d{bottom:98.275333pt;}
.y30{bottom:99.471733pt;}
.y9a{bottom:100.064667pt;}
.y14f{bottom:100.091600pt;}
.y266{bottom:100.175600pt;}
.y2d6{bottom:102.460133pt;}
.y18e{bottom:102.690800pt;}
.y226{bottom:103.938800pt;}
.y138{bottom:104.024133pt;}
.y1e5{bottom:104.428133pt;}
.y1ab{bottom:105.584533pt;}
.y139{bottom:107.572133pt;}
.y234{bottom:108.047600pt;}
.ycd{bottom:108.066800pt;}
.yc{bottom:108.857067pt;}
.y2f{bottom:111.474400pt;}
.y295{bottom:111.804133pt;}
.ydf{bottom:112.067600pt;}
.y17c{bottom:114.271333pt;}
.y2d5{bottom:114.462800pt;}
.y99{bottom:116.060667pt;}
.y14e{bottom:116.087600pt;}
.y265{bottom:116.171600pt;}
.y18b{bottom:118.566667pt;}
.y18d{bottom:118.686800pt;}
.y18a{bottom:118.715600pt;}
.y225{bottom:119.934800pt;}
.y137{bottom:122.690800pt;}
.y2e{bottom:123.477067pt;}
.y233{bottom:124.043600pt;}
.yb{bottom:124.853067pt;}
.y1aa{bottom:125.584533pt;}
.y2d4{bottom:126.465467pt;}
.y294{bottom:127.800133pt;}
.yde{bottom:128.063600pt;}
.y1e4{bottom:128.428133pt;}
.y17b{bottom:130.267333pt;}
.ycc{bottom:131.478800pt;}
.y14d{bottom:132.083600pt;}
.y264{bottom:132.167600pt;}
.y2d{bottom:135.479733pt;}
.y224{bottom:135.930800pt;}
.y1f0{bottom:137.670133pt;}
.y1f7{bottom:137.830133pt;}
.y2d3{bottom:138.468133pt;}
.y98{bottom:138.620667pt;}
.y1fd{bottom:139.390133pt;}
.y203{bottom:139.540133pt;}
.y232{bottom:140.039600pt;}
.y189{bottom:140.051600pt;}
.ya{bottom:140.849067pt;}
.y136{bottom:141.357467pt;}
.y293{bottom:143.796133pt;}
.y1a9{bottom:144.251200pt;}
.y1fe{bottom:144.840133pt;}
.y1f8{bottom:145.650133pt;}
.y17a{bottom:146.263333pt;}
.ycb{bottom:147.474800pt;}
.y2c{bottom:147.482400pt;}
.y1f1{bottom:147.790133pt;}
.y14c{bottom:148.079600pt;}
.y263{bottom:148.163600pt;}
.ydd{bottom:149.399600pt;}
.y1f3{bottom:150.110133pt;}
.y1f9{bottom:150.280133pt;}
.y2d2{bottom:150.470800pt;}
.y1ff{bottom:150.760133pt;}
.y204{bottom:150.920133pt;}
.y223{bottom:151.926800pt;}
.y1f2{bottom:153.640133pt;}
.y97{bottom:154.616667pt;}
.y231{bottom:156.035600pt;}
.y188{bottom:156.047600pt;}
.y2b{bottom:159.485067pt;}
.y292{bottom:159.792133pt;}
.y135{bottom:160.024133pt;}
.y179{bottom:162.259333pt;}
.y2d1{bottom:162.473467pt;}
.y1a8{bottom:162.917867pt;}
.yca{bottom:163.470800pt;}
.y14b{bottom:164.075600pt;}
.y9{bottom:164.849067pt;}
.ydc{bottom:165.395600pt;}
.y1e3{bottom:167.092133pt;}
.y222{bottom:167.922800pt;}
.y96{bottom:170.612667pt;}
.y2a{bottom:171.487733pt;}
.y230{bottom:172.031600pt;}
.y187{bottom:172.043600pt;}
.y262{bottom:172.163600pt;}
.y2d0{bottom:174.476133pt;}
.y291{bottom:175.788133pt;}
.y134{bottom:178.690800pt;}
.y14a{bottom:180.071600pt;}
.y8{bottom:180.845067pt;}
.ydb{bottom:181.391600pt;}
.y1a7{bottom:181.584533pt;}
.y1e2{bottom:183.088133pt;}
.y221{bottom:183.918800pt;}
.y178{bottom:186.259333pt;}
.y2cf{bottom:186.478800pt;}
.y95{bottom:186.608667pt;}
.yc9{bottom:187.470800pt;}
.y22f{bottom:188.027600pt;}
.y186{bottom:188.039600pt;}
.y1f5{bottom:189.840133pt;}
.y1f6{bottom:189.990133pt;}
.y1fb{bottom:190.010133pt;}
.y1fc{bottom:190.160133pt;}
.y201{bottom:190.180133pt;}
.y1f4{bottom:190.320133pt;}
.y202{bottom:190.330133pt;}
.y206{bottom:190.340133pt;}
.y207{bottom:190.480133pt;}
.y1fa{bottom:190.490133pt;}
.y200{bottom:190.660133pt;}
.y205{bottom:190.820133pt;}
.y290{bottom:191.784133pt;}
.y149{bottom:196.067600pt;}
.y7{bottom:196.841067pt;}
.y133{bottom:197.357467pt;}
.yda{bottom:197.387600pt;}
.y2ce{bottom:198.481467pt;}
.y1e1{bottom:199.084133pt;}
.y220{bottom:199.914800pt;}
.y94{bottom:202.604667pt;}
.y1a6{bottom:202.917867pt;}
.y22e{bottom:204.023600pt;}
.y185{bottom:204.035600pt;}
.y261{bottom:207.659600pt;}
.y28f{bottom:207.780133pt;}
.y2cd{bottom:210.484133pt;}
.y148{bottom:212.063600pt;}
.y6{bottom:212.837067pt;}
.yd9{bottom:213.383600pt;}
.y1e0{bottom:215.080133pt;}
.y21f{bottom:215.910800pt;}
.y132{bottom:216.024133pt;}
.y326{bottom:216.862800pt;}
.y93{bottom:218.600667pt;}
.yc8{bottom:218.886800pt;}
.y184{bottom:220.031600pt;}
.y62{bottom:221.022400pt;}
.y2cc{bottom:222.486800pt;}
.y260{bottom:223.655600pt;}
.y28e{bottom:223.776133pt;}
.y177{bottom:224.299333pt;}
.y147{bottom:228.059600pt;}
.y1a5{bottom:228.751200pt;}
.y5{bottom:228.833067pt;}
.y325{bottom:228.865467pt;}
.yd8{bottom:229.379600pt;}
.y1df{bottom:231.076133pt;}
.y242{bottom:232.980133pt;}
.y61{bottom:233.025067pt;}
.y2cb{bottom:234.489467pt;}
.y92{bottom:234.596667pt;}
.y131{bottom:234.690800pt;}
.yc7{bottom:234.882800pt;}
.y183{bottom:236.027600pt;}
.y21e{bottom:237.246800pt;}
.y25f{bottom:239.651600pt;}
.y28d{bottom:239.772133pt;}
.y176{bottom:240.295333pt;}
.y23b{bottom:240.500133pt;}
.y324{bottom:240.868133pt;}
.y146{bottom:244.055600pt;}
.y4{bottom:244.829067pt;}
.y60{bottom:245.027733pt;}
.yd7{bottom:245.375600pt;}
.y241{bottom:246.313467pt;}
.y2ca{bottom:246.492133pt;}
.y1de{bottom:247.072133pt;}
.y1a4{bottom:247.417867pt;}
.y91{bottom:250.592667pt;}
.yc6{bottom:250.878800pt;}
.y182{bottom:252.023600pt;}
.y323{bottom:252.870800pt;}
.y21d{bottom:253.242800pt;}
.y130{bottom:253.357467pt;}
.y23a{bottom:253.833467pt;}
.y25e{bottom:255.647600pt;}
.y28c{bottom:255.768133pt;}
.y175{bottom:256.291333pt;}
.y5f{bottom:257.030400pt;}
.y2c9{bottom:258.494800pt;}
.y240{bottom:259.646800pt;}
.y145{bottom:260.051600pt;}
.y3{bottom:260.825067pt;}
.y1dd{bottom:263.068133pt;}
.y322{bottom:264.873467pt;}
.y1a3{bottom:266.084533pt;}
.y90{bottom:266.588667pt;}
.yd6{bottom:266.711600pt;}
.yc5{bottom:266.874800pt;}
.y239{bottom:267.166800pt;}
.y181{bottom:268.019600pt;}
.y5e{bottom:269.033067pt;}
.y21c{bottom:269.238800pt;}
.y2c8{bottom:270.497467pt;}
.y25d{bottom:271.643600pt;}
.y28b{bottom:271.764133pt;}
.y174{bottom:272.287333pt;}
.y23f{bottom:272.980133pt;}
.y12e{bottom:274.520133pt;}
.y2{bottom:276.821067pt;}
.y321{bottom:276.876133pt;}
.y1dc{bottom:279.064133pt;}
.y238{bottom:280.500133pt;}
.y5d{bottom:281.035733pt;}
.y2c7{bottom:282.500133pt;}
.yd5{bottom:282.707600pt;}
.yc4{bottom:282.870800pt;}
.y180{bottom:284.015600pt;}
.y144{bottom:284.051600pt;}
.y1a2{bottom:284.751200pt;}
.y23e{bottom:286.313467pt;}
.y320{bottom:288.878800pt;}
.y8f{bottom:289.076667pt;}
.y25c{bottom:292.979600pt;}
.y5c{bottom:293.038400pt;}
.y21b{bottom:293.238800pt;}
.y173{bottom:293.623333pt;}
.y237{bottom:293.833467pt;}
.y2c6{bottom:294.502800pt;}
.y1db{bottom:295.060133pt;}
.y28a{bottom:295.764133pt;}
.y12f{bottom:295.853467pt;}
.yd4{bottom:298.703600pt;}
.yc3{bottom:298.866800pt;}
.y23d{bottom:299.646800pt;}
.y143{bottom:300.047600pt;}
.y1{bottom:300.821067pt;}
.y31f{bottom:300.881467pt;}
.y5b{bottom:305.041067pt;}
.y8e{bottom:305.072667pt;}
.y1a1{bottom:306.084533pt;}
.y2c5{bottom:306.505467pt;}
.y236{bottom:307.166800pt;}
.y25b{bottom:308.975600pt;}
.y172{bottom:309.619333pt;}
.y289{bottom:311.760133pt;}
.y31e{bottom:312.884133pt;}
.yd3{bottom:314.699600pt;}
.yc2{bottom:314.862800pt;}
.y142{bottom:316.043600pt;}
.y12d{bottom:316.353467pt;}
.y5a{bottom:317.043733pt;}
.y198{bottom:317.886800pt;}
.y2c4{bottom:318.508133pt;}
.y1da{bottom:319.060133pt;}
.y8d{bottom:321.068667pt;}
.y31d{bottom:324.886800pt;}
.y25a{bottom:324.971600pt;}
.y171{bottom:325.615333pt;}
.y1a0{bottom:326.584533pt;}
.y288{bottom:327.756133pt;}
.y59{bottom:329.046400pt;}
.y12c{bottom:329.686800pt;}
.y21a{bottom:330.306800pt;}
.y2c3{bottom:330.510800pt;}
.yd2{bottom:330.695600pt;}
.yc1{bottom:330.858800pt;}
.y197{bottom:331.220133pt;}
.y141{bottom:332.039600pt;}
.y1d9{bottom:335.056133pt;}
.y31c{bottom:336.889467pt;}
.y8b{bottom:337.187600pt;}
.y19f{bottom:339.917867pt;}
.y259{bottom:340.967600pt;}
.y58{bottom:341.049067pt;}
.y8c{bottom:341.060667pt;}
.y170{bottom:341.611333pt;}
.y2c2{bottom:342.513467pt;}
.y28{bottom:343.198400pt;}
.y287{bottom:343.752133pt;}
.y196{bottom:344.553467pt;}
.y219{bottom:346.302800pt;}
.yd1{bottom:346.691600pt;}
.yc0{bottom:346.854800pt;}
.y140{bottom:348.035600pt;}
.y31b{bottom:348.892133pt;}
.y1d8{bottom:351.052133pt;}
.y57{bottom:353.051733pt;}
.y8a{bottom:353.183600pt;}
.y2c1{bottom:354.516133pt;}
.y258{bottom:356.963600pt;}
.y16f{bottom:357.607333pt;}
.y195{bottom:357.886800pt;}
.y27{bottom:359.194400pt;}
.y286{bottom:359.748133pt;}
.y31a{bottom:360.894800pt;}
.y218{bottom:362.298800pt;}
.yd0{bottom:362.687600pt;}
.y13f{bottom:364.031600pt;}
.y56{bottom:365.054400pt;}
.y2c0{bottom:366.518800pt;}
.y1d7{bottom:367.048133pt;}
.ybf{bottom:368.190800pt;}
.y89{bottom:369.179600pt;}
.y319{bottom:372.897467pt;}
.y257{bottom:372.959600pt;}
.y16e{bottom:373.603333pt;}
.y26{bottom:375.190400pt;}
.y285{bottom:375.744133pt;}
.y55{bottom:377.057067pt;}
.y217{bottom:378.294800pt;}
.y2bf{bottom:378.521467pt;}
.y13e{bottom:380.027600pt;}
.y10e{bottom:380.855600pt;}
.y1d6{bottom:383.044133pt;}
.ybd{bottom:384.194800pt;}
.y318{bottom:384.900133pt;}
.y88{bottom:385.175600pt;}
.ybe{bottom:388.182800pt;}
.y256{bottom:388.955600pt;}
.y54{bottom:389.059733pt;}
.y2be{bottom:390.524133pt;}
.y25{bottom:391.186400pt;}
.y284{bottom:391.740133pt;}
.y19b{bottom:392.027600pt;}
.y216{bottom:394.290800pt;}
.y10a{bottom:395.686800pt;}
.y13d{bottom:396.023600pt;}
.y10d{bottom:396.851600pt;}
.y317{bottom:396.902800pt;}
.y16d{bottom:397.603333pt;}
.y1d5{bottom:399.040133pt;}
.ybc{bottom:400.190800pt;}
.y87{bottom:401.171600pt;}
.y2bd{bottom:402.526800pt;}
.y53{bottom:403.722400pt;}
.y255{bottom:404.951600pt;}
.y24{bottom:407.182400pt;}
.y283{bottom:407.736133pt;}
.y19a{bottom:408.023600pt;}
.y316{bottom:408.905467pt;}
.y215{bottom:410.286800pt;}
.y10c{bottom:412.847600pt;}
.y2bc{bottom:414.529467pt;}
.y1d4{bottom:415.036133pt;}
.y108{bottom:415.686800pt;}
.yba{bottom:416.254133pt;}
.ybb{bottom:420.182800pt;}
.y315{bottom:420.908133pt;}
.y254{bottom:420.947600pt;}
.y23{bottom:423.178400pt;}
.y86{bottom:423.659600pt;}
.y282{bottom:423.732133pt;}
.y199{bottom:424.019600pt;}
.y214{bottom:426.282800pt;}
.y2bb{bottom:426.532133pt;}
.y107{bottom:429.020133pt;}
.y1d3{bottom:431.032133pt;}
.yb9{bottom:432.250133pt;}
.y314{bottom:432.910800pt;}
.y16c{bottom:435.643333pt;}
.y154{bottom:435.700133pt;}
.y10b{bottom:436.847600pt;}
.y52{bottom:437.051733pt;}
.y2ba{bottom:438.534800pt;}
.y22{bottom:439.174400pt;}
.y85{bottom:439.655600pt;}
.y281{bottom:439.728133pt;}
.y213{bottom:442.278800pt;}
.y253{bottom:442.283600pt;}
.y106{bottom:442.353467pt;}
.y313{bottom:444.913467pt;}
.y1d2{bottom:447.028133pt;}
.y153{bottom:449.033467pt;}
.y51{bottom:449.054400pt;}
.y109{bottom:450.353467pt;}
.y2b9{bottom:450.537467pt;}
.yb8{bottom:453.586133pt;}
.y21{bottom:455.170400pt;}
.y84{bottom:455.651600pt;}
.y105{bottom:455.686800pt;}
.y280{bottom:455.724133pt;}
.y312{bottom:456.916133pt;}
.y19e{bottom:457.620133pt;}
.y212{bottom:458.274800pt;}
.y252{bottom:458.279600pt;}
.y16b{bottom:459.643333pt;}
.y152{bottom:462.366800pt;}
.y2b8{bottom:462.540133pt;}
.y1d1{bottom:463.024133pt;}
.y1b0{bottom:466.260133pt;}
.y311{bottom:468.918800pt;}
.y103{bottom:469.020133pt;}
.yb7{bottom:469.582133pt;}
.y19d{bottom:470.953467pt;}
.y20{bottom:471.166400pt;}
.y83{bottom:471.647600pt;}
.y12b{bottom:471.690800pt;}
.y27f{bottom:471.720133pt;}
.y104{bottom:472.572133pt;}
.y211{bottom:474.270800pt;}
.y251{bottom:474.275600pt;}
.y2b7{bottom:474.542800pt;}
.y50{bottom:476.391733pt;}
.y12a{bottom:477.024133pt;}
.y1cf{bottom:479.036133pt;}
.y1af{bottom:479.593467pt;}
.y310{bottom:480.921467pt;}
.y1d0{bottom:483.016133pt;}
.y19c{bottom:484.286800pt;}
.yb6{bottom:485.578133pt;}
.y2b6{bottom:486.545467pt;}
.y1f{bottom:487.162400pt;}
.y82{bottom:487.643600pt;}
.y101{bottom:487.686800pt;}
.y4f{bottom:488.394400pt;}
.y210{bottom:490.266800pt;}
.y250{bottom:490.271600pt;}
.y129{bottom:490.357467pt;}
.y30f{bottom:492.924133pt;}
.y1ae{bottom:492.926800pt;}
.y1ce{bottom:495.032133pt;}
.y27e{bottom:495.720133pt;}
.y2b5{bottom:498.548133pt;}
.y16a{bottom:499.115600pt;}
.y4e{bottom:500.397067pt;}
.y100{bottom:501.020133pt;}
.yb5{bottom:501.574133pt;}
.y1e{bottom:503.158400pt;}
.y81{bottom:503.639600pt;}
.y30e{bottom:504.926800pt;}
.y24f{bottom:506.267600pt;}
.y128{bottom:509.024133pt;}
.y2b4{bottom:510.550800pt;}
.y4d{bottom:512.399733pt;}
.y20f{bottom:514.266800pt;}
.yff{bottom:514.353467pt;}
.y127{bottom:514.357467pt;}
.y169{bottom:515.111600pt;}
.y30d{bottom:516.929467pt;}
.yb4{bottom:517.570133pt;}
.y1cd{bottom:519.032133pt;}
.y1d{bottom:519.154400pt;}
.y80{bottom:519.635600pt;}
.y24e{bottom:522.263600pt;}
.y2b3{bottom:522.553467pt;}
.y4c{bottom:524.402400pt;}
.yfe{bottom:527.686800pt;}
.y126{bottom:527.690800pt;}
.y30c{bottom:528.932133pt;}
.y168{bottom:531.107600pt;}
.yb3{bottom:533.566133pt;}
.y2b2{bottom:534.556133pt;}
.y1cc{bottom:535.028133pt;}
.y7f{bottom:535.631600pt;}
.y102{bottom:535.686800pt;}
.y4b{bottom:536.405067pt;}
.y24d{bottom:538.259600pt;}
.y27d{bottom:539.099600pt;}
.y30b{bottom:540.934800pt;}
.yfd{bottom:541.020133pt;}
.y125{bottom:546.357467pt;}
.y2b1{bottom:546.558800pt;}
.y167{bottom:547.103600pt;}
.y1c{bottom:548.273067pt;}
.yb2{bottom:549.562133pt;}
.y1cb{bottom:551.024133pt;}
.y4a{bottom:551.067733pt;}
.y7e{bottom:551.627600pt;}
.y20e{bottom:552.695600pt;}
.y30a{bottom:552.937467pt;}
.y24c{bottom:554.255600pt;}
.yfb{bottom:554.357467pt;}
.y27c{bottom:555.095600pt;}
.yfc{bottom:557.905467pt;}
.y2b0{bottom:558.561467pt;}
.y166{bottom:563.099600pt;}
.y1b{bottom:564.269067pt;}
.y309{bottom:564.940133pt;}
.y124{bottom:565.024133pt;}
.yb1{bottom:565.558133pt;}
.y1c9{bottom:567.088133pt;}
.y7d{bottom:567.623600pt;}
.y20d{bottom:568.691600pt;}
.y2af{bottom:570.564133pt;}
.y1ca{bottom:571.016133pt;}
.y27b{bottom:571.091600pt;}
.yfa{bottom:573.024133pt;}
.y24b{bottom:575.591600pt;}
.y122{bottom:575.690800pt;}
.y308{bottom:576.942800pt;}
.y165{bottom:579.095600pt;}
.y1a{bottom:580.265067pt;}
.yb0{bottom:581.554133pt;}
.y2ae{bottom:582.566800pt;}
.y1c8{bottom:583.084133pt;}
.y123{bottom:583.690800pt;}
.y49{bottom:584.397067pt;}
.y20c{bottom:584.687600pt;}
.y27a{bottom:587.087600pt;}
.y307{bottom:588.945467pt;}
.y121{bottom:589.024133pt;}
.y7c{bottom:590.111600pt;}
.y24a{bottom:591.587600pt;}
.yf9{bottom:591.690800pt;}
.y2ad{bottom:594.569467pt;}
.y164{bottom:595.091600pt;}
.y19{bottom:596.261067pt;}
.y48{bottom:596.399733pt;}
.yaf{bottom:597.550133pt;}
.y1c7{bottom:599.080133pt;}
.y20b{bottom:600.683600pt;}
.y306{bottom:600.948133pt;}
.y120{bottom:602.357467pt;}
.y2ed{bottom:602.428133pt;}
.y279{bottom:603.083600pt;}
.yf8{bottom:605.024133pt;}
.y7b{bottom:606.107600pt;}
.y2ac{bottom:606.572133pt;}
.y249{bottom:607.583600pt;}
.y47{bottom:611.062400pt;}
.y163{bottom:611.087600pt;}
.y18{bottom:612.257067pt;}
.y305{bottom:612.950800pt;}
.y2ec{bottom:614.430800pt;}
.y1c6{bottom:615.076133pt;}
.y20a{bottom:616.679600pt;}
.yf7{bottom:618.357467pt;}
.y2ab{bottom:618.574800pt;}
.yae{bottom:618.886133pt;}
.y278{bottom:619.079600pt;}
.y11f{bottom:621.024133pt;}
.y7a{bottom:622.103600pt;}
.y248{bottom:623.579600pt;}
.y304{bottom:624.953467pt;}
.y2eb{bottom:626.433467pt;}
.y162{bottom:627.083600pt;}
.y17{bottom:628.253067pt;}
.y2aa{bottom:630.577467pt;}
.y1c5{bottom:631.072133pt;}
.yf6{bottom:631.690800pt;}
.y209{bottom:632.675600pt;}
.yad{bottom:634.882133pt;}
.y277{bottom:635.075600pt;}
.y303{bottom:636.956133pt;}
.y79{bottom:638.099600pt;}
.y2ea{bottom:638.436133pt;}
.y247{bottom:639.575600pt;}
.y11e{bottom:639.690800pt;}
.y2a9{bottom:642.580133pt;}
.y161{bottom:643.079600pt;}
.y16{bottom:644.249067pt;}
.y46{bottom:644.391733pt;}
.y302{bottom:648.958800pt;}
.yf5{bottom:650.357467pt;}
.y2e9{bottom:650.438800pt;}
.yac{bottom:650.878133pt;}
.y276{bottom:651.071600pt;}
.y1c4{bottom:653.740133pt;}
.y78{bottom:654.095600pt;}
.y2a8{bottom:654.582800pt;}
.y246{bottom:655.571600pt;}
.y45{bottom:656.394400pt;}
.y11d{bottom:658.357467pt;}
.y160{bottom:659.075600pt;}
.y15{bottom:660.245067pt;}
.y301{bottom:660.961467pt;}
.y2e8{bottom:662.441467pt;}
.y22d{bottom:665.673467pt;}
.y2a7{bottom:666.585467pt;}
.yab{bottom:666.874133pt;}
.y275{bottom:667.067600pt;}
.yf4{bottom:669.024133pt;}
.y77{bottom:670.091600pt;}
.y44{bottom:671.057067pt;}
.y300{bottom:672.964133pt;}
.y2e7{bottom:674.444133pt;}
.y15f{bottom:675.071600pt;}
.y14{bottom:676.241067pt;}
.y11c{bottom:677.024133pt;}
.y2a6{bottom:678.588133pt;}
.y22c{bottom:679.006800pt;}
.y245{bottom:679.571600pt;}
.yf3{bottom:682.357467pt;}
.yaa{bottom:682.870133pt;}
.y274{bottom:683.063600pt;}
.y2ff{bottom:684.966800pt;}
.y76{bottom:686.087600pt;}
.y2e6{bottom:686.446800pt;}
.y2a5{bottom:690.590800pt;}
.y15e{bottom:691.067600pt;}
.y13{bottom:692.237067pt;}
.y22b{bottom:692.340133pt;}
.y1c3{bottom:693.736133pt;}
.yf2{bottom:695.690800pt;}
.y2fe{bottom:696.969467pt;}
.y2e5{bottom:698.449467pt;}
.ya9{bottom:698.866133pt;}
.y273{bottom:699.059600pt;}
.y75{bottom:702.083600pt;}
.y2a4{bottom:702.593467pt;}
.y22a{bottom:705.673467pt;}
.y11a{bottom:706.357467pt;}
.y43{bottom:706.393067pt;}
.y15d{bottom:707.063600pt;}
.y12{bottom:708.233067pt;}
.y2fd{bottom:708.972133pt;}
.yf1{bottom:709.024133pt;}
.y1c2{bottom:709.732133pt;}
.y2e4{bottom:710.452133pt;}
.y11b{bottom:714.357467pt;}
.y2a3{bottom:714.596133pt;}
.ya8{bottom:714.862133pt;}
.y244{bottom:715.067600pt;}
.y74{bottom:718.079600pt;}
.y42{bottom:718.395733pt;}
.y229{bottom:719.006800pt;}
.y119{bottom:719.690800pt;}
.y2fc{bottom:720.974800pt;}
.y2e3{bottom:722.454800pt;}
.y15c{bottom:723.059600pt;}
.y11{bottom:724.229067pt;}
.y1c1{bottom:725.728133pt;}
.y2a2{bottom:726.598800pt;}
.yef{bottom:727.690800pt;}
.y41{bottom:730.398400pt;}
.ya7{bottom:730.858133pt;}
.y243{bottom:731.063600pt;}
.y2fb{bottom:732.977467pt;}
.y118{bottom:733.024133pt;}
.y73{bottom:734.075600pt;}
.y2e2{bottom:734.457467pt;}
.yf0{bottom:735.690800pt;}
.y2a1{bottom:738.601467pt;}
.y272{bottom:739.055600pt;}
.y10{bottom:740.225067pt;}
.yee{bottom:741.024133pt;}
.y1c0{bottom:741.724133pt;}
.y40{bottom:742.401067pt;}
.y2fa{bottom:744.980133pt;}
.y2e1{bottom:746.460133pt;}
.ya6{bottom:746.854133pt;}
.y15b{bottom:747.059600pt;}
.y72{bottom:750.071600pt;}
.y2a0{bottom:750.604133pt;}
.y117{bottom:751.690800pt;}
.yed{bottom:754.357467pt;}
.y3f{bottom:754.403733pt;}
.y271{bottom:755.051600pt;}
.yf{bottom:756.221067pt;}
.y2f9{bottom:756.982800pt;}
.y1bf{bottom:757.720133pt;}
.y2e0{bottom:758.462800pt;}
.y29f{bottom:762.606800pt;}
.y15a{bottom:763.055600pt;}
.y71{bottom:766.067600pt;}
.y3e{bottom:766.406400pt;}
.y2f8{bottom:768.985467pt;}
.y116{bottom:770.357467pt;}
.y2df{bottom:770.465467pt;}
.ya5{bottom:770.854133pt;}
.y270{bottom:771.047600pt;}
.yec{bottom:773.024133pt;}
.y1be{bottom:773.716133pt;}
.y29e{bottom:774.609467pt;}
.yeb{bottom:778.357467pt;}
.y3d{bottom:778.409067pt;}
.y159{bottom:779.051600pt;}
.y2f7{bottom:780.988133pt;}
.y2de{bottom:782.468133pt;}
.y29d{bottom:786.612133pt;}
.y26f{bottom:787.043600pt;}
.y70{bottom:788.555600pt;}
.y115{bottom:789.024133pt;}
.y1bd{bottom:789.712133pt;}
.y3c{bottom:790.411733pt;}
.yea{bottom:791.690800pt;}
.y2f6{bottom:792.990800pt;}
.y2dd{bottom:794.470800pt;}
.y158{bottom:795.047600pt;}
.y37{bottom:795.820933pt;}
.y29c{bottom:798.614800pt;}
.ya4{bottom:802.270133pt;}
.y3b{bottom:802.414400pt;}
.y26e{bottom:803.039600pt;}
.y6f{bottom:804.551600pt;}
.y2f5{bottom:804.993467pt;}
.y1bc{bottom:805.708133pt;}
.y2dc{bottom:806.473467pt;}
.y114{bottom:807.690800pt;}
.ye9{bottom:810.357467pt;}
.y29b{bottom:810.617467pt;}
.y157{bottom:811.043600pt;}
.y36{bottom:814.039600pt;}
.y3a{bottom:814.417067pt;}
.y2f4{bottom:816.996133pt;}
.y2db{bottom:818.476133pt;}
.y26d{bottom:819.035600pt;}
.y6e{bottom:820.547600pt;}
.y1bb{bottom:821.704133pt;}
.y29a{bottom:822.620133pt;}
.ya3{bottom:826.270133pt;}
.y113{bottom:826.357467pt;}
.y39{bottom:826.419733pt;}
.y156{bottom:827.039600pt;}
.y2f3{bottom:828.998800pt;}
.ye8{bottom:829.024133pt;}
.y2da{bottom:830.478800pt;}
.y26c{bottom:835.031600pt;}
.y35{bottom:835.287733pt;}
.y6d{bottom:836.543600pt;}
.y111{bottom:837.024133pt;}
.y1ba{bottom:837.700133pt;}
.y2f2{bottom:841.001467pt;}
.y38{bottom:841.082400pt;}
.y2d9{bottom:842.481467pt;}
.y299{bottom:842.620133pt;}
.y155{bottom:843.035600pt;}
.y112{bottom:845.024133pt;}
.ye5{bottom:850.186800pt;}
.y110{bottom:850.357467pt;}
.y26b{bottom:851.027600pt;}
.y6c{bottom:852.539600pt;}
.y2f1{bottom:853.004133pt;}
.y1b9{bottom:853.696133pt;}
.ya2{bottom:859.031600pt;}
.y34{bottom:860.354267pt;}
.ye7{bottom:863.520133pt;}
.y10f{bottom:863.690800pt;}
.y2f0{bottom:865.006800pt;}
.y26a{bottom:867.023600pt;}
.y63{bottom:868.082400pt;}
.y6b{bottom:868.535600pt;}
.y1b8{bottom:869.692133pt;}
.ya1{bottom:875.027600pt;}
.y2ef{bottom:877.009467pt;}
.y298{bottom:882.624133pt;}
.y269{bottom:883.019600pt;}
.y33{bottom:884.354267pt;}
.ye6{bottom:884.853467pt;}
.y64{bottom:885.420933pt;}
.y1b7{bottom:885.688133pt;}
.y2ee{bottom:889.012133pt;}
.y6a{bottom:891.023600pt;}
.y297{bottom:898.620133pt;}
.y9f{bottom:901.014800pt;}
.ye4{bottom:905.353467pt;}
.y69{bottom:907.019600pt;}
.y1b6{bottom:907.024133pt;}
.y9e{bottom:913.017467pt;}
.ye3{bottom:918.686800pt;}
.y296{bottom:921.020133pt;}
.y68{bottom:923.015600pt;}
.y1b4{bottom:923.020133pt;}
.y9d{bottom:925.020133pt;}
.y1b5{bottom:927.016133pt;}
.y66{bottom:974.776533pt;}
.y67{bottom:975.798800pt;}
.ya0{bottom:1029.693333pt;}
.h13{height:8.064000pt;}
.h18{height:19.147580pt;}
.h8{height:20.162133pt;}
.hd{height:22.682400pt;}
.hf{height:23.921094pt;}
.ha{height:26.282667pt;}
.h15{height:26.952000pt;}
.h5{height:27.141333pt;}
.h19{height:29.080000pt;}
.h12{height:29.269333pt;}
.h11{height:30.037333pt;}
.h9{height:31.018667pt;}
.h14{height:31.896474pt;}
.h16{height:33.761485pt;}
.h10{height:33.792000pt;}
.h3{height:34.896000pt;}
.h17{height:37.618668pt;}
.h7{height:37.948800pt;}
.hc{height:38.773333pt;}
.h2{height:41.301333pt;}
.h4{height:45.056000pt;}
.hb{height:52.565333pt;}
.h6{height:56.320000pt;}
.h1{height:1050.666667pt;}
.he{height:1050.706667pt;}
.h0{height:1050.708008pt;}
.w2{width:4.609333pt;}
.w3{width:386.328000pt;}
.w4{width:410.327962pt;}
.w0{width:801.260010pt;}
.w1{width:801.333333pt;}
.x1f{left:-30.950800pt;}
.x0{left:0.000000pt;}
.x24{left:27.578533pt;}
.x23{left:33.175868pt;}
.x2{left:40.633867pt;}
.xb{left:45.964000pt;}
.x3{left:53.967333pt;}
.x10{left:148.963467pt;}
.x17{left:165.302667pt;}
.x25{left:220.957333pt;}
.x1{left:222.818933pt;}
.x18{left:227.962533pt;}
.x41{left:233.297200pt;}
.x2a{left:241.796533pt;}
.x2b{left:261.796533pt;}
.x12{left:267.377467pt;}
.x2c{left:282.466533pt;}
.x22{left:286.465332pt;}
.x21{left:298.465333pt;}
.x5{left:300.552133pt;}
.x16{left:313.953333pt;}
.x2d{left:318.806533pt;}
.xa{left:320.230667pt;}
.x1b{left:324.284800pt;}
.x13{left:325.489600pt;}
.x1c{left:331.257600pt;}
.x2e{left:336.976533pt;}
.x27{left:349.572133pt;}
.x2f{left:355.146533pt;}
.x30{left:367.816533pt;}
.x28{left:373.551333pt;}
.x31{left:381.806533pt;}
.x33{left:391.476533pt;}
.x32{left:395.136533pt;}
.x1e{left:404.992000pt;}
.x20{left:411.658400pt;}
.x15{left:413.281333pt;}
.x34{left:426.636533pt;}
.x36{left:431.466533pt;}
.x35{left:439.966533pt;}
.xd{left:449.294133pt;}
.xc{left:458.308000pt;}
.x37{left:467.806533pt;}
.x38{left:481.136533pt;}
.x29{left:485.650133pt;}
.x39{left:494.466533pt;}
.x3a{left:504.136533pt;}
.x3b{left:522.306533pt;}
.x3c{left:535.636533pt;}
.x1a{left:538.802133pt;}
.x3d{left:540.476533pt;}
.x1d{left:554.451733pt;}
.x3e{left:558.646533pt;}
.x19{left:569.372800pt;}
.x3f{left:578.146533pt;}
.x40{left:590.816533pt;}
.x6{left:616.029467pt;}
.x11{left:625.187467pt;}
.x14{left:629.942667pt;}
.xe{left:640.376800pt;}
.x9{left:660.128267pt;}
.xf{left:662.691467pt;}
.x7{left:690.572133pt;}
.x26{left:720.822933pt;}
.x4{left:726.822933pt;}
.x8{left:781.840000pt;}
}




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