
    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_1dcc23c0ac0016759629cccb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.019000;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_f7a64037f3c0b553edd15bef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;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_0d07682c7aeae4ef719b6dd7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_4417fc2a15509e0d7c05dc17.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.027000;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_977a26fb01baf142d466281b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.004000;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;}
.m4{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m2{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m3{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,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);}
.v1{vertical-align:-24.612600px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.305000px;}
.ls6{letter-spacing:-0.918000px;}
.ls11{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.810000px;}
.ls10{letter-spacing:-0.450000px;}
.ls8{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.343507px;}
.lsb{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.162000px;}
.ls14{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.336000px;}
.ls12{letter-spacing:1.134000px;}
.lsd{letter-spacing:1.150134px;}
.lsa{letter-spacing:1.350000px;}
.ls1{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.800000px;}
.ls3{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.520000px;}
.ls0{letter-spacing:4.500000px;}
.ls13{letter-spacing:8.586000px;}
.lse{letter-spacing:252.750000px;}
.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;}
}
.ws2{word-spacing:-20.448000px;}
.ws5d{word-spacing:-17.040000px;}
.ws0{word-spacing:-13.440000px;}
.ws9d{word-spacing:-13.230000px;}
.ws8d{word-spacing:-12.780000px;}
.wse1{word-spacing:-12.192000px;}
.wsf4{word-spacing:-12.096000px;}
.wse0{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.760000px;}
.wsee{word-spacing:-11.616000px;}
.wsc7{word-spacing:-11.430000px;}
.wse{word-spacing:-10.668000px;}
.wsf7{word-spacing:-6.000000px;}
.wsb9{word-spacing:-4.536000px;}
.wsf1{word-spacing:-4.428000px;}
.wsd4{word-spacing:-4.374000px;}
.ws73{word-spacing:-4.320000px;}
.wsa1{word-spacing:-4.266000px;}
.ws90{word-spacing:-3.888000px;}
.ws57{word-spacing:-3.834000px;}
.ws79{word-spacing:-3.780000px;}
.ws4f{word-spacing:-3.726000px;}
.wsce{word-spacing:-3.618000px;}
.wse3{word-spacing:-3.564000px;}
.wsad{word-spacing:-3.132000px;}
.ws16{word-spacing:-3.078000px;}
.ws9e{word-spacing:-3.024000px;}
.wsac{word-spacing:-2.754000px;}
.wsb1{word-spacing:-2.646000px;}
.ws1d{word-spacing:-2.592000px;}
.ws35{word-spacing:-2.538000px;}
.wsf{word-spacing:-2.520000px;}
.wsd8{word-spacing:-2.430000px;}
.ws8{word-spacing:-2.376000px;}
.ws53{word-spacing:-2.322000px;}
.ws1c{word-spacing:-2.268000px;}
.ws59{word-spacing:-2.214000px;}
.ws5b{word-spacing:-2.160000px;}
.wse7{word-spacing:-2.106000px;}
.ws2c{word-spacing:-2.052000px;}
.ws67{word-spacing:-1.998000px;}
.ws46{word-spacing:-1.944000px;}
.ws7b{word-spacing:-1.890000px;}
.wsd9{word-spacing:-1.836000px;}
.ws45{word-spacing:-1.782000px;}
.ws7c{word-spacing:-1.766607px;}
.wsf2{word-spacing:-1.728000px;}
.wse2{word-spacing:-1.674000px;}
.wsda{word-spacing:-1.620000px;}
.wsc{word-spacing:-1.566000px;}
.wse4{word-spacing:-1.458000px;}
.ws12{word-spacing:-1.404000px;}
.ws9c{word-spacing:-1.350000px;}
.ws71{word-spacing:-1.296000px;}
.ws5f{word-spacing:-1.242000px;}
.ws44{word-spacing:-1.188000px;}
.wsca{word-spacing:-1.150134px;}
.ws51{word-spacing:-1.134000px;}
.wsbc{word-spacing:-1.080000px;}
.ws4{word-spacing:-1.026000px;}
.wsa6{word-spacing:-0.972000px;}
.ws66{word-spacing:-0.918000px;}
.ws37{word-spacing:-0.864000px;}
.wscb{word-spacing:-0.855000px;}
.ws8e{word-spacing:-0.810000px;}
.wsec{word-spacing:-0.785159px;}
.ws65{word-spacing:-0.702000px;}
.wscf{word-spacing:-0.594000px;}
.ws6a{word-spacing:-0.540000px;}
.wsc0{word-spacing:-0.490724px;}
.ws91{word-spacing:-0.486000px;}
.ws8c{word-spacing:-0.432000px;}
.ws83{word-spacing:-0.378000px;}
.wsf6{word-spacing:-0.336000px;}
.ws29{word-spacing:-0.324000px;}
.ws84{word-spacing:-0.270000px;}
.wsf5{word-spacing:-0.240000px;}
.wsbe{word-spacing:-0.216000px;}
.wsed{word-spacing:-0.192000px;}
.wsbd{word-spacing:-0.108000px;}
.wsaa{word-spacing:-0.096000px;}
.ws3{word-spacing:0.000000px;}
.wse9{word-spacing:0.054000px;}
.ws1f{word-spacing:0.162000px;}
.wsb5{word-spacing:0.216000px;}
.ws89{word-spacing:0.270000px;}
.ws82{word-spacing:0.324000px;}
.wsbf{word-spacing:0.441652px;}
.ws87{word-spacing:0.486000px;}
.ws20{word-spacing:0.540000px;}
.ws94{word-spacing:0.588869px;}
.wsb7{word-spacing:0.594000px;}
.ws33{word-spacing:0.648000px;}
.ws27{word-spacing:0.702000px;}
.ws2b{word-spacing:0.756000px;}
.ws1e{word-spacing:0.810000px;}
.wscc{word-spacing:0.864000px;}
.ws17{word-spacing:0.918000px;}
.ws58{word-spacing:0.972000px;}
.ws60{word-spacing:1.026000px;}
.wsb0{word-spacing:1.080000px;}
.wsa5{word-spacing:1.134000px;}
.ws15{word-spacing:1.296000px;}
.wsa7{word-spacing:1.350000px;}
.ws68{word-spacing:1.404000px;}
.ws13{word-spacing:1.458000px;}
.ws2a{word-spacing:1.512000px;}
.ws21{word-spacing:1.620000px;}
.ws93{word-spacing:1.674000px;}
.ws99{word-spacing:1.728000px;}
.wse8{word-spacing:1.766607px;}
.ws7{word-spacing:1.782000px;}
.ws64{word-spacing:1.836000px;}
.ws38{word-spacing:1.890000px;}
.ws32{word-spacing:1.944000px;}
.wsae{word-spacing:1.998000px;}
.wsde{word-spacing:2.052000px;}
.ws52{word-spacing:2.106000px;}
.wseb{word-spacing:2.160000px;}
.wsa8{word-spacing:2.214000px;}
.ws70{word-spacing:2.268000px;}
.ws1b{word-spacing:2.376000px;}
.ws62{word-spacing:2.430000px;}
.wsa9{word-spacing:2.538000px;}
.ws19{word-spacing:2.592000px;}
.wsb4{word-spacing:2.646000px;}
.ws50{word-spacing:2.700000px;}
.ws3a{word-spacing:2.754000px;}
.ws74{word-spacing:2.808000px;}
.ws39{word-spacing:2.862000px;}
.ws3b{word-spacing:2.916000px;}
.ws8a{word-spacing:2.970000px;}
.ws40{word-spacing:3.024000px;}
.ws28{word-spacing:3.078000px;}
.wsd{word-spacing:3.132000px;}
.wsd5{word-spacing:3.186000px;}
.wsa3{word-spacing:3.189707px;}
.ws7a{word-spacing:3.240000px;}
.ws6b{word-spacing:3.294000px;}
.ws63{word-spacing:3.402000px;}
.ws3f{word-spacing:3.456000px;}
.ws9b{word-spacing:3.510000px;}
.ws31{word-spacing:3.564000px;}
.wsab{word-spacing:3.618000px;}
.ws30{word-spacing:3.672000px;}
.ws18{word-spacing:3.726000px;}
.ws2d{word-spacing:3.834000px;}
.ws6f{word-spacing:3.888000px;}
.wsa2{word-spacing:3.942000px;}
.ws69{word-spacing:4.050000px;}
.ws4d{word-spacing:4.104000px;}
.wsba{word-spacing:4.158000px;}
.wsdc{word-spacing:4.212000px;}
.ws6c{word-spacing:4.374000px;}
.wsef{word-spacing:4.482000px;}
.ws22{word-spacing:4.590000px;}
.wsb6{word-spacing:4.644000px;}
.ws7e{word-spacing:4.698000px;}
.wsbb{word-spacing:4.752000px;}
.ws11{word-spacing:4.806000px;}
.ws55{word-spacing:4.860000px;}
.ws9f{word-spacing:4.914000px;}
.ws14{word-spacing:4.968000px;}
.wse6{word-spacing:5.022000px;}
.ws92{word-spacing:5.076000px;}
.ws23{word-spacing:5.130000px;}
.ws47{word-spacing:5.184000px;}
.ws77{word-spacing:5.454000px;}
.wsaf{word-spacing:5.508000px;}
.ws75{word-spacing:5.562000px;}
.ws10{word-spacing:5.616000px;}
.ws4b{word-spacing:5.670000px;}
.wsb2{word-spacing:5.724000px;}
.wsdb{word-spacing:5.778000px;}
.ws88{word-spacing:5.832000px;}
.ws9{word-spacing:5.886000px;}
.wsa{word-spacing:5.940000px;}
.ws34{word-spacing:5.994000px;}
.wsc8{word-spacing:6.048000px;}
.ws86{word-spacing:6.102000px;}
.wsd7{word-spacing:6.156000px;}
.ws54{word-spacing:6.210000px;}
.wsa4{word-spacing:6.264000px;}
.wsd2{word-spacing:6.372000px;}
.ws8f{word-spacing:6.426000px;}
.ws6e{word-spacing:6.534000px;}
.ws42{word-spacing:6.588000px;}
.ws7d{word-spacing:6.642000px;}
.wsb3{word-spacing:6.750000px;}
.ws76{word-spacing:6.804000px;}
.ws26{word-spacing:6.858000px;}
.ws3d{word-spacing:6.966000px;}
.ws5{word-spacing:7.128000px;}
.wsdd{word-spacing:7.182000px;}
.ws61{word-spacing:7.236000px;}
.ws6d{word-spacing:7.290000px;}
.ws7f{word-spacing:7.344000px;}
.wsb{word-spacing:7.452000px;}
.ws97{word-spacing:7.506000px;}
.ws25{word-spacing:7.560000px;}
.ws49{word-spacing:7.668000px;}
.ws5c{word-spacing:7.776000px;}
.ws4c{word-spacing:7.830000px;}
.ws4a{word-spacing:7.884000px;}
.ws3c{word-spacing:7.938000px;}
.ws5a{word-spacing:8.100000px;}
.wsd0{word-spacing:8.262000px;}
.ws56{word-spacing:8.316000px;}
.ws5e{word-spacing:8.424000px;}
.ws8b{word-spacing:8.586000px;}
.wsc9{word-spacing:8.694000px;}
.ws48{word-spacing:8.748000px;}
.wsb8{word-spacing:8.802000px;}
.wse5{word-spacing:8.910000px;}
.wscd{word-spacing:8.964000px;}
.ws41{word-spacing:9.072000px;}
.ws6{word-spacing:9.234000px;}
.ws36{word-spacing:9.288000px;}
.wsf3{word-spacing:9.342000px;}
.wsa0{word-spacing:9.396000px;}
.wsdf{word-spacing:9.450000px;}
.ws95{word-spacing:9.666000px;}
.ws78{word-spacing:9.882000px;}
.ws72{word-spacing:9.936000px;}
.ws81{word-spacing:9.990000px;}
.ws24{word-spacing:10.098000px;}
.ws2f{word-spacing:10.260000px;}
.wsd3{word-spacing:10.638000px;}
.ws80{word-spacing:11.070000px;}
.ws3e{word-spacing:11.340000px;}
.wsea{word-spacing:11.394000px;}
.ws96{word-spacing:11.556000px;}
.ws2e{word-spacing:11.610000px;}
.ws1a{word-spacing:11.772000px;}
.ws98{word-spacing:11.880000px;}
.wsd6{word-spacing:11.988000px;}
.ws43{word-spacing:12.852000px;}
.ws4e{word-spacing:12.906000px;}
.ws85{word-spacing:12.960000px;}
.ws9a{word-spacing:13.068000px;}
.wsd1{word-spacing:16.632000px;}
.wsf0{word-spacing:17.334000px;}
.wsc5{word-spacing:38.430000px;}
.wsc3{word-spacing:63.945000px;}
.wsc2{word-spacing:89.325000px;}
.wsc1{word-spacing:97.761388px;}
.wsc6{word-spacing:118.080000px;}
.wsc4{word-spacing:148.635000px;}
._11{margin-left:-663.432000px;}
._5{margin-left:-662.130000px;}
._29{margin-left:-660.198000px;}
._2b{margin-left:-658.980000px;}
._28{margin-left:-657.258000px;}
._3{margin-left:-10.212000px;}
._4{margin-left:-7.524000px;}
._13{margin-left:-4.932000px;}
._1{margin-left:-3.552000px;}
._6{margin-left:-2.496000px;}
._0{margin-left:-1.440000px;}
._7{width:1.026000px;}
._2{width:2.094000px;}
._12{width:4.104000px;}
._8{width:6.696000px;}
._23{width:40.410000px;}
._22{width:42.975000px;}
._25{width:45.405000px;}
._27{width:46.845000px;}
._1d{width:49.680000px;}
._1f{width:51.165000px;}
._1a{width:59.535000px;}
._19{width:61.875000px;}
._1b{width:68.535000px;}
._1e{width:71.235000px;}
._16{width:74.250000px;}
._f{width:75.510000px;}
._20{width:77.760000px;}
._24{width:79.380000px;}
._d{width:84.510000px;}
._e{width:90.360000px;}
._21{width:96.210000px;}
._26{width:99.495000px;}
._b{width:101.340000px;}
._c{width:104.670000px;}
._10{width:114.165000px;}
._2a{width:119.764800px;}
._1c{width:125.820000px;}
._17{width:146.987122px;}
._a{width:155.340000px;}
._18{width:163.779078px;}
._14{width:252.570000px;}
._15{width:334.278600px;}
._9{width:476.502000px;}
.fc3{color:rgb(90,87,88);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(13,50,52);}
.fs5{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs8{font-size:46.005359px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:49.072408px;}
.fs9{font-size:49.693267px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y1b0{bottom:60.759450px;}
.y1cf{bottom:61.184550px;}
.y14f{bottom:63.776400px;}
.y212{bottom:63.777150px;}
.y124{bottom:63.779850px;}
.y15{bottom:63.783000px;}
.y297{bottom:63.783150px;}
.y96{bottom:67.408800px;}
.ycc{bottom:71.775900px;}
.y11a{bottom:73.032900px;}
.y60{bottom:75.609750px;}
.y1af{bottom:80.253450px;}
.y14e{bottom:80.276400px;}
.y211{bottom:80.277150px;}
.y123{bottom:80.279850px;}
.y14{bottom:80.283000px;}
.y296{bottom:80.283150px;}
.y1ce{bottom:80.678550px;}
.y17f{bottom:83.164800px;}
.y95{bottom:86.902800px;}
.ycb{bottom:91.269900px;}
.y27b{bottom:92.055150px;}
.y23d{bottom:93.823950px;}
.y5f{bottom:95.103750px;}
.yf2{bottom:95.406750px;}
.y14d{bottom:96.776400px;}
.y210{bottom:96.777150px;}
.y122{bottom:96.779850px;}
.y13{bottom:96.783000px;}
.y295{bottom:96.783150px;}
.y119{bottom:98.480400px;}
.y1ae{bottom:99.747450px;}
.y1cd{bottom:100.172550px;}
.y17e{bottom:102.658800px;}
.y94{bottom:106.396800px;}
.y27a{bottom:110.055150px;}
.yca{bottom:110.763900px;}
.y23c{bottom:111.823950px;}
.y14c{bottom:113.276400px;}
.y20f{bottom:113.277150px;}
.y121{bottom:113.279850px;}
.y12{bottom:113.283000px;}
.y5e{bottom:114.597750px;}
.yf1{bottom:114.900750px;}
.y294{bottom:117.531150px;}
.y1ad{bottom:119.241450px;}
.y1cc{bottom:119.666550px;}
.y17d{bottom:122.152800px;}
.y118{bottom:123.927900px;}
.y93{bottom:125.890800px;}
.y279{bottom:128.055150px;}
.y14b{bottom:129.776400px;}
.y20e{bottom:129.777150px;}
.y120{bottom:129.779850px;}
.y11{bottom:129.783000px;}
.y23b{bottom:129.823950px;}
.yc9{bottom:130.257900px;}
.yc8{bottom:130.298850px;}
.y293{bottom:134.031150px;}
.y5d{bottom:134.091750px;}
.yf0{bottom:134.394750px;}
.y1ac{bottom:138.735450px;}
.y117{bottom:138.924150px;}
.y1cb{bottom:139.160550px;}
.y17c{bottom:141.646800px;}
.y278{bottom:146.055150px;}
.y14a{bottom:146.276400px;}
.y20d{bottom:146.277150px;}
.y11f{bottom:146.279850px;}
.y10{bottom:146.283000px;}
.y23a{bottom:147.823950px;}
.yc7{bottom:149.792850px;}
.y292{bottom:150.531150px;}
.y5c{bottom:153.585750px;}
.y92{bottom:153.894750px;}
.y1ab{bottom:158.229450px;}
.y1ca{bottom:158.654550px;}
.y17b{bottom:161.146800px;}
.yef{bottom:162.398700px;}
.y149{bottom:162.776400px;}
.y20c{bottom:162.777150px;}
.y11e{bottom:162.779850px;}
.yf{bottom:162.783000px;}
.y277{bottom:164.055150px;}
.y116{bottom:164.371650px;}
.y239{bottom:165.823950px;}
.y291{bottom:167.031150px;}
.yc6{bottom:169.286850px;}
.y5b{bottom:173.079750px;}
.y91{bottom:173.394750px;}
.y1aa{bottom:177.723450px;}
.y148{bottom:179.276400px;}
.y20b{bottom:179.277150px;}
.y11d{bottom:179.279850px;}
.ye{bottom:179.283000px;}
.y276{bottom:182.055150px;}
.y290{bottom:183.531150px;}
.y238{bottom:183.823950px;}
.y1c9{bottom:186.658500px;}
.yc5{bottom:188.780850px;}
.y17a{bottom:189.362400px;}
.y5a{bottom:192.573750px;}
.y147{bottom:195.776400px;}
.y20a{bottom:195.777150px;}
.y11c{bottom:195.779850px;}
.y28f{bottom:200.031150px;}
.y275{bottom:200.055150px;}
.y237{bottom:201.823950px;}
.y1a9{bottom:205.722450px;}
.y179{bottom:208.856400px;}
.y59{bottom:212.067750px;}
.y146{bottom:212.276400px;}
.y209{bottom:212.277150px;}
.y11b{bottom:212.279850px;}
.y115{bottom:213.621450px;}
.yee{bottom:214.752450px;}
.y28e{bottom:216.531150px;}
.yc4{bottom:216.779850px;}
.y274{bottom:218.055150px;}
.y236{bottom:219.823950px;}
.yd{bottom:221.295000px;}
.y1a8{bottom:225.216450px;}
.y90{bottom:225.724500px;}
.y1c8{bottom:227.703150px;}
.y178{bottom:228.350400px;}
.y145{bottom:228.776400px;}
.y208{bottom:228.777150px;}
.y26{bottom:230.274600px;}
.y58{bottom:231.561750px;}
.y28d{bottom:233.031150px;}
.y114{bottom:233.115450px;}
.yed{bottom:234.246450px;}
.y273{bottom:236.055150px;}
.yc3{bottom:236.273850px;}
.yc{bottom:237.795000px;}
.y235{bottom:237.823950px;}
.y1a7{bottom:244.710450px;}
.y8f{bottom:245.218500px;}
.y144{bottom:245.276400px;}
.y207{bottom:245.277150px;}
.y1c7{bottom:247.197150px;}
.y177{bottom:247.844400px;}
.y28c{bottom:249.531150px;}
.y25{bottom:249.768600px;}
.y57{bottom:251.055750px;}
.y113{bottom:252.609450px;}
.yec{bottom:253.740450px;}
.y272{bottom:254.055150px;}
.yb{bottom:254.295000px;}
.yc2{bottom:255.767850px;}
.y234{bottom:255.823950px;}
.y206{bottom:261.777150px;}
.y1a6{bottom:264.204450px;}
.y8e{bottom:264.712500px;}
.y28b{bottom:266.031150px;}
.y1c6{bottom:266.691150px;}
.y176{bottom:267.338400px;}
.y24{bottom:269.262600px;}
.y56{bottom:270.549750px;}
.y271{bottom:272.055150px;}
.y112{bottom:272.103450px;}
.yeb{bottom:273.234450px;}
.y233{bottom:273.823950px;}
.yc1{bottom:275.261850px;}
.y205{bottom:278.277150px;}
.y28a{bottom:282.531150px;}
.y1a5{bottom:283.698450px;}
.y8d{bottom:284.206500px;}
.y1c5{bottom:286.185150px;}
.y175{bottom:286.832400px;}
.y23{bottom:288.756600px;}
.y55{bottom:290.043750px;}
.y270{bottom:290.055150px;}
.y111{bottom:291.597450px;}
.y232{bottom:291.823950px;}
.yea{bottom:292.728450px;}
.y204{bottom:294.777150px;}
.y289{bottom:299.031150px;}
.y1a4{bottom:303.192450px;}
.yc0{bottom:303.265800px;}
.y8c{bottom:303.700500px;}
.y1c4{bottom:305.679150px;}
.y174{bottom:306.326400px;}
.y26f{bottom:308.055150px;}
.y22{bottom:308.250600px;}
.y54{bottom:309.537750px;}
.y231{bottom:309.823950px;}
.y110{bottom:311.091450px;}
.y203{bottom:311.277150px;}
.ye9{bottom:312.222450px;}
.y288{bottom:315.531150px;}
.ya{bottom:317.571000px;}
.y1a3{bottom:322.686450px;}
.y8b{bottom:323.194500px;}
.y1c3{bottom:325.173150px;}
.y173{bottom:325.820400px;}
.y26e{bottom:326.055150px;}
.y21{bottom:327.744600px;}
.y202{bottom:327.777150px;}
.y230{bottom:327.823950px;}
.y53{bottom:329.031750px;}
.y10f{bottom:330.585450px;}
.ye8{bottom:331.716450px;}
.y287{bottom:332.031150px;}
.y9{bottom:338.319000px;}
.y1a2{bottom:342.180450px;}
.y8a{bottom:342.688500px;}
.ybf{bottom:344.049600px;}
.y26d{bottom:344.055150px;}
.y201{bottom:344.277150px;}
.y1c2{bottom:344.667150px;}
.y172{bottom:345.314400px;}
.y22f{bottom:345.823950px;}
.y20{bottom:347.238600px;}
.y52{bottom:348.525750px;}
.y10e{bottom:350.079450px;}
.ye7{bottom:351.210450px;}
.y8{bottom:354.819000px;}
.y200{bottom:360.777150px;}
.y1a1{bottom:361.674450px;}
.y26c{bottom:362.055150px;}
.y89{bottom:362.182500px;}
.ybe{bottom:363.543600px;}
.y22e{bottom:363.823950px;}
.y1c1{bottom:364.161150px;}
.y171{bottom:364.808400px;}
.y1f{bottom:366.732600px;}
.y51{bottom:368.019750px;}
.y10d{bottom:369.573450px;}
.ye6{bottom:370.704450px;}
.y7{bottom:371.319000px;}
.y286{bottom:374.043150px;}
.y26b{bottom:380.055150px;}
.y1a0{bottom:381.168450px;}
.y88{bottom:381.676500px;}
.y22d{bottom:381.823950px;}
.ybd{bottom:383.037600px;}
.y1ff{bottom:383.430300px;}
.y1c0{bottom:383.655150px;}
.y170{bottom:384.302400px;}
.y1e{bottom:386.226600px;}
.y6{bottom:387.819000px;}
.y10c{bottom:389.067450px;}
.ye5{bottom:390.198450px;}
.y285{bottom:390.543150px;}
.y50{bottom:396.023700px;}
.y26a{bottom:398.055150px;}
.y22c{bottom:399.823950px;}
.y19f{bottom:400.662450px;}
.y87{bottom:401.170500px;}
.ybc{bottom:402.531600px;}
.y1fe{bottom:402.924300px;}
.y1bf{bottom:403.149150px;}
.y5{bottom:404.319000px;}
.y1d{bottom:405.720600px;}
.y284{bottom:407.043150px;}
.y10b{bottom:408.561450px;}
.ye4{bottom:409.692450px;}
.y16f{bottom:412.301400px;}
.y269{bottom:416.055150px;}
.y22b{bottom:417.823950px;}
.y86{bottom:420.664500px;}
.y4{bottom:420.819000px;}
.ybb{bottom:422.025600px;}
.y1fd{bottom:422.418300px;}
.y1fc{bottom:422.436300px;}
.y1be{bottom:422.643150px;}
.y1c{bottom:425.214600px;}
.y10a{bottom:428.055450px;}
.y19e{bottom:428.666400px;}
.ye3{bottom:429.186450px;}
.y16e{bottom:431.795400px;}
.y268{bottom:434.055150px;}
.y22a{bottom:435.823950px;}
.y4f{bottom:436.908450px;}
.y85{bottom:440.158500px;}
.y3{bottom:441.567000px;}
.y1fb{bottom:441.930300px;}
.y1bd{bottom:442.137150px;}
.y143{bottom:445.363200px;}
.y109{bottom:447.549450px;}
.ye2{bottom:448.680450px;}
.y283{bottom:449.055150px;}
.yba{bottom:450.029550px;}
.y16d{bottom:451.289400px;}
.y267{bottom:452.055150px;}
.y1b{bottom:453.218550px;}
.y229{bottom:453.823950px;}
.y4e{bottom:456.402450px;}
.y2{bottom:458.067000px;}
.y1fa{bottom:461.424300px;}
.y142{bottom:464.857200px;}
.y282{bottom:465.555150px;}
.y108{bottom:467.043450px;}
.y84{bottom:468.162450px;}
.ye1{bottom:468.174450px;}
.y266{bottom:470.055150px;}
.y1bc{bottom:470.136150px;}
.y16c{bottom:470.783400px;}
.y4d{bottom:475.896450px;}
.y228{bottom:480.327750px;}
.y1f9{bottom:480.918300px;}
.y1f8{bottom:480.947250px;}
.y281{bottom:482.055150px;}
.y141{bottom:484.351200px;}
.y19d{bottom:484.724850px;}
.y107{bottom:486.537450px;}
.y106{bottom:486.555450px;}
.ye0{bottom:487.668450px;}
.y265{bottom:488.055150px;}
.y1bb{bottom:489.630150px;}
.y16b{bottom:490.277400px;}
.yb9{bottom:490.984200px;}
.y195{bottom:493.983750px;}
.y4c{bottom:495.390450px;}
.y280{bottom:498.555150px;}
.y1f7{bottom:500.441250px;}
.y19c{bottom:501.224850px;}
.y140{bottom:503.845200px;}
.y105{bottom:506.049450px;}
.y264{bottom:506.055150px;}
.ydf{bottom:507.162450px;}
.y194{bottom:508.980000px;}
.y83{bottom:509.124150px;}
.y16a{bottom:509.771400px;}
.yb8{bottom:510.478200px;}
.y4b{bottom:514.884450px;}
.y27f{bottom:515.055150px;}
.y19b{bottom:517.724850px;}
.y1f6{bottom:519.935250px;}
.y13f{bottom:523.339200px;}
.y263{bottom:524.055150px;}
.y104{bottom:525.543450px;}
.y227{bottom:528.339600px;}
.y82{bottom:528.618150px;}
.y169{bottom:529.265400px;}
.yb7{bottom:529.972200px;}
.y27e{bottom:531.555150px;}
.y19a{bottom:534.224850px;}
.y4a{bottom:534.378450px;}
.y193{bottom:534.427500px;}
.yde{bottom:535.166400px;}
.y262{bottom:542.055150px;}
.y13e{bottom:542.833200px;}
.y226{bottom:544.839600px;}
.y103{bottom:545.037450px;}
.y1f5{bottom:547.934250px;}
.y27d{bottom:548.055150px;}
.y81{bottom:548.112150px;}
.y168{bottom:548.759400px;}
.y192{bottom:549.423750px;}
.yb6{bottom:549.466200px;}
.y199{bottom:550.724850px;}
.y49{bottom:553.872450px;}
.y261{bottom:560.055150px;}
.y225{bottom:561.343650px;}
.y13d{bottom:562.327200px;}
.y27c{bottom:564.555150px;}
.y198{bottom:567.224850px;}
.y1f4{bottom:567.428250px;}
.y80{bottom:567.606150px;}
.y167{bottom:568.253400px;}
.y102{bottom:573.041400px;}
.y48{bottom:573.366450px;}
.y191{bottom:574.872300px;}
.ydd{bottom:576.016650px;}
.yb5{bottom:577.465200px;}
.y260{bottom:578.055150px;}
.y13c{bottom:581.821200px;}
.y224{bottom:582.091650px;}
.y197{bottom:583.724850px;}
.y1f3{bottom:586.922250px;}
.y1f2{bottom:586.999650px;}
.y7f{bottom:587.100150px;}
.y190{bottom:589.868550px;}
.y47{bottom:592.860450px;}
.ydc{bottom:595.510650px;}
.y25f{bottom:596.055150px;}
.y166{bottom:596.252400px;}
.yb4{bottom:596.959200px;}
.y223{bottom:598.591650px;}
.y196{bottom:600.224850px;}
.y13b{bottom:601.315200px;}
.y1f1{bottom:606.493650px;}
.y7e{bottom:606.594150px;}
.y46{bottom:612.354450px;}
.y25e{bottom:614.055150px;}
.ydb{bottom:615.004650px;}
.y222{bottom:615.091650px;}
.y18f{bottom:615.316050px;}
.y165{bottom:615.746400px;}
.yb3{bottom:616.453200px;}
.y13a{bottom:620.809200px;}
.y1f0{bottom:625.987650px;}
.y7d{bottom:626.088150px;}
.y45{bottom:631.848450px;}
.y25d{bottom:632.055150px;}
.yda{bottom:634.498650px;}
.y164{bottom:635.240400px;}
.yb2{bottom:635.947200px;}
.y221{bottom:640.095450px;}
.y139{bottom:640.303200px;}
.y138{bottom:640.327200px;}
.y18e{bottom:640.763550px;}
.y1ef{bottom:645.481650px;}
.y7c{bottom:645.582150px;}
.y25c{bottom:650.055150px;}
.y44{bottom:651.342450px;}
.yd9{bottom:653.992650px;}
.y1ba{bottom:654.087150px;}
.y163{bottom:654.734400px;}
.yb1{bottom:655.441200px;}
.y18d{bottom:655.759800px;}
.y137{bottom:659.821200px;}
.y1ee{bottom:664.975650px;}
.y7b{bottom:665.076150px;}
.y25b{bottom:668.055150px;}
.yd8{bottom:673.486650px;}
.y1b9{bottom:673.581150px;}
.y162{bottom:674.228400px;}
.yb0{bottom:674.935200px;}
.y136{bottom:679.315200px;}
.y43{bottom:679.341450px;}
.y7a{bottom:684.570150px;}
.y25a{bottom:686.055150px;}
.y18c{bottom:688.609800px;}
.y220{bottom:692.371350px;}
.y1ed{bottom:692.974650px;}
.yd7{bottom:692.980650px;}
.y1b8{bottom:693.075150px;}
.yaf{bottom:694.429200px;}
.y135{bottom:698.809200px;}
.y42{bottom:698.835450px;}
.y161{bottom:702.227400px;}
.y259{bottom:704.055150px;}
.y21f{bottom:711.865350px;}
.y1ec{bottom:712.468650px;}
.yd6{bottom:712.474650px;}
.y79{bottom:712.569150px;}
.yae{bottom:713.923200px;}
.y18b{bottom:714.058950px;}
.y134{bottom:718.303200px;}
.y41{bottom:718.329450px;}
.y160{bottom:721.721400px;}
.y258{bottom:722.055150px;}
.y18a{bottom:729.055200px;}
.y21e{bottom:731.359350px;}
.y1eb{bottom:731.962650px;}
.yd5{bottom:731.968650px;}
.y78{bottom:732.063150px;}
.yad{bottom:733.417200px;}
.y40{bottom:737.823450px;}
.y257{bottom:740.055150px;}
.y15f{bottom:741.215400px;}
.y133{bottom:746.307150px;}
.y1ea{bottom:751.456650px;}
.yd4{bottom:751.462650px;}
.y77{bottom:751.557150px;}
.yac{bottom:752.911200px;}
.y3f{bottom:757.317450px;}
.y256{bottom:758.055150px;}
.y21d{bottom:759.363300px;}
.y15e{bottom:760.709400px;}
.y1e9{bottom:770.950650px;}
.yd3{bottom:770.956650px;}
.y76{bottom:771.051150px;}
.y255{bottom:776.055150px;}
.y3e{bottom:776.811450px;}
.y15d{bottom:780.203400px;}
.yab{bottom:780.910200px;}
.y27{bottom:781.240050px;}
.y132{bottom:787.102950px;}
.y1e8{bottom:790.444650px;}
.y75{bottom:790.545150px;}
.y254{bottom:794.055150px;}
.y3d{bottom:796.305450px;}
.y15c{bottom:799.697400px;}
.yaa{bottom:800.404200px;}
.y1a{bottom:806.244000px;}
.y131{bottom:806.596950px;}
.y1e7{bottom:809.938650px;}
.y74{bottom:810.039150px;}
.y21c{bottom:811.627050px;}
.y253{bottom:812.055150px;}
.y1e4{bottom:815.433150px;}
.y3c{bottom:815.799450px;}
.y15b{bottom:819.191400px;}
.ya9{bottom:819.898200px;}
.y130{bottom:826.090950px;}
.y1e6{bottom:829.432650px;}
.y73{bottom:829.533150px;}
.y252{bottom:830.055150px;}
.y1e3{bottom:831.933150px;}
.y19{bottom:832.747950px;}
.y3b{bottom:835.293450px;}
.y15a{bottom:838.685400px;}
.ya8{bottom:839.392200px;}
.y21b{bottom:839.631000px;}
.y12f{bottom:845.584950px;}
.y251{bottom:848.055150px;}
.y1e2{bottom:848.433150px;}
.y1e5{bottom:848.926650px;}
.y72{bottom:849.027150px;}
.y101{bottom:850.379850px;}
.y3a{bottom:854.787450px;}
.y1b7{bottom:857.532150px;}
.y159{bottom:858.179400px;}
.ya7{bottom:858.886200px;}
.y1e1{bottom:864.933150px;}
.y12e{bottom:865.078950px;}
.y250{bottom:866.055150px;}
.y100{bottom:866.879850px;}
.y71{bottom:868.521150px;}
.y1b6{bottom:877.026150px;}
.ya6{bottom:878.380200px;}
.y1e0{bottom:881.433150px;}
.y39{bottom:882.791400px;}
.yff{bottom:883.379850px;}
.y24f{bottom:884.055150px;}
.y12d{bottom:884.572950px;}
.y158{bottom:886.178400px;}
.y70{bottom:888.015150px;}
.y21a{bottom:891.900750px;}
.y1b5{bottom:896.520150px;}
.ya5{bottom:897.874200px;}
.y1df{bottom:897.933150px;}
.yfe{bottom:899.879850px;}
.y24e{bottom:902.055150px;}
.y12c{bottom:904.066950px;}
.y157{bottom:905.672400px;}
.y6f{bottom:907.509150px;}
.y219{bottom:911.394750px;}
.y1{bottom:914.173200px;}
.y18{bottom:914.200350px;}
.y1de{bottom:914.433150px;}
.y1b4{bottom:916.014150px;}
.yfd{bottom:916.379850px;}
.ya4{bottom:917.368200px;}
.y24d{bottom:920.055150px;}
.y38{bottom:923.623200px;}
.y156{bottom:925.166400px;}
.y6e{bottom:927.003150px;}
.y189{bottom:928.340850px;}
.y1dd{bottom:930.933150px;}
.yfc{bottom:932.879850px;}
.y1b3{bottom:935.508150px;}
.y24c{bottom:938.055150px;}
.y218{bottom:939.398700px;}
.y37{bottom:943.117200px;}
.y12b{bottom:944.192400px;}
.y188{bottom:944.840850px;}
.ya3{bottom:945.367200px;}
.y6d{bottom:946.497150px;}
.y1dc{bottom:947.433150px;}
.y155{bottom:953.170350px;}
.y1b2{bottom:955.002150px;}
.y24b{bottom:956.055150px;}
.y17{bottom:956.186850px;}
.y12a{bottom:960.692400px;}
.y187{bottom:961.340850px;}
.y36{bottom:962.611200px;}
.y1db{bottom:963.933150px;}
.yfb{bottom:964.849200px;}
.ya2{bottom:964.861200px;}
.y6c{bottom:965.991150px;}
.yd2{bottom:969.351450px;}
.y24a{bottom:974.055150px;}
.y1b1{bottom:974.496150px;}
.y129{bottom:977.192400px;}
.y186{bottom:977.840850px;}
.y1da{bottom:980.433150px;}
.y35{bottom:982.105200px;}
.yfa{bottom:984.343200px;}
.ya1{bottom:984.355200px;}
.y6b{bottom:985.485150px;}
.yd1{bottom:985.851450px;}
.y217{bottom:991.680450px;}
.y249{bottom:992.055150px;}
.y128{bottom:993.692400px;}
.y154{bottom:993.990150px;}
.y185{bottom:994.340850px;}
.y1d9{bottom:996.933150px;}
.y16{bottom:998.173350px;}
.y34{bottom:1001.599200px;}
.yd0{bottom:1002.351450px;}
.yf9{bottom:1003.837200px;}
.ya0{bottom:1003.849200px;}
.y6a{bottom:1004.979150px;}
.y248{bottom:1010.055150px;}
.y127{bottom:1010.192400px;}
.y184{bottom:1010.840850px;}
.y216{bottom:1011.174450px;}
.y1d8{bottom:1013.433150px;}
.y153{bottom:1013.484150px;}
.ycf{bottom:1018.851450px;}
.y33{bottom:1021.093200px;}
.yf8{bottom:1023.331200px;}
.y9f{bottom:1023.343200px;}
.y69{bottom:1024.473150px;}
.y126{bottom:1026.692400px;}
.y183{bottom:1027.340850px;}
.y247{bottom:1028.055150px;}
.y1d7{bottom:1029.933150px;}
.y215{bottom:1030.668450px;}
.y152{bottom:1032.978150px;}
.yce{bottom:1035.351450px;}
.y32{bottom:1040.587200px;}
.yf7{bottom:1042.825200px;}
.y9e{bottom:1042.837200px;}
.y125{bottom:1043.192400px;}
.y182{bottom:1043.840850px;}
.y68{bottom:1043.967150px;}
.y246{bottom:1046.055150px;}
.y1d6{bottom:1046.433150px;}
.y214{bottom:1050.162450px;}
.ycd{bottom:1051.851450px;}
.y151{bottom:1052.472150px;}
.y31{bottom:1060.081200px;}
.y181{bottom:1060.340850px;}
.yf6{bottom:1062.319200px;}
.y9d{bottom:1062.331200px;}
.y1d5{bottom:1062.933150px;}
.y67{bottom:1063.461150px;}
.y245{bottom:1064.055150px;}
.y150{bottom:1071.966150px;}
.y180{bottom:1076.840850px;}
.y213{bottom:1078.166400px;}
.y1d4{bottom:1079.433150px;}
.y30{bottom:1079.575200px;}
.yf5{bottom:1081.813200px;}
.y9c{bottom:1081.825200px;}
.y244{bottom:1082.055150px;}
.y66{bottom:1091.460150px;}
.y1d3{bottom:1095.933150px;}
.y2f{bottom:1099.069200px;}
.y243{bottom:1100.055150px;}
.yf4{bottom:1101.307200px;}
.y9b{bottom:1101.319200px;}
.y65{bottom:1110.954150px;}
.y1d2{bottom:1112.433150px;}
.y242{bottom:1118.055150px;}
.y2e{bottom:1118.563200px;}
.yf3{bottom:1120.801200px;}
.y9a{bottom:1120.813200px;}
.y1d1{bottom:1128.933150px;}
.y64{bottom:1130.448150px;}
.y241{bottom:1136.055150px;}
.y2d{bottom:1138.057200px;}
.y99{bottom:1140.307200px;}
.y63{bottom:1149.942150px;}
.y240{bottom:1154.055150px;}
.y2c{bottom:1157.551200px;}
.y98{bottom:1159.801200px;}
.y2a{bottom:1164.174150px;}
.y1d0{bottom:1169.430150px;}
.y62{bottom:1169.436150px;}
.y23f{bottom:1172.055150px;}
.y29{bottom:1177.677150px;}
.y2b{bottom:1185.555150px;}
.y97{bottom:1187.805150px;}
.y61{bottom:1188.930150px;}
.y23e{bottom:1190.055150px;}
.y28{bottom:1191.180150px;}
.ha{height:32.340000px;}
.h9{height:33.012000px;}
.hd{height:35.190000px;}
.hc{height:35.370000px;}
.he{height:36.160212px;}
.h5{height:36.960000px;}
.h3{height:37.536000px;}
.h4{height:37.728000px;}
.hb{height:38.570913px;}
.hf{height:38.860135px;}
.h8{height:42.228000px;}
.h2{height:47.160000px;}
.h7{height:56.592000px;}
.h6{height:106.260000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.779550px;}
.x16{left:69.029550px;}
.x11{left:72.304500px;}
.x2{left:89.291250px;}
.x15{left:103.537650px;}
.x14{left:108.931200px;}
.x20{left:133.754850px;}
.x1b{left:135.472050px;}
.x21{left:179.230800px;}
.x1e{left:199.978800px;}
.xd{left:206.539500px;}
.x1c{left:221.455800px;}
.x1f{left:245.026200px;}
.x22{left:247.486050px;}
.x7{left:274.526700px;}
.x9{left:280.004700px;}
.xe{left:293.547000px;}
.x17{left:298.181700px;}
.x23{left:299.920950px;}
.xa{left:320.022900px;}
.x8{left:321.023250px;}
.xb{left:331.264200px;}
.x24{left:371.404350px;}
.x18{left:375.210450px;}
.xc{left:376.454550px;}
.xf{left:383.760750px;}
.x19{left:435.206700px;}
.x10{left:473.018250px;}
.x12{left:500.805000px;}
.x5{left:507.273750px;}
.x13{left:546.632400px;}
.x6{left:551.222550px;}
.x1a{left:557.681597px;}
.x1{left:663.307050px;}
.x25{left:776.189400px;}
.x1d{left:815.226600px;}
.x3{left:822.640650px;}
@media print{
.v1{vertical-align:-21.877867pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.160000pt;}
.ls6{letter-spacing:-0.816000pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls10{letter-spacing:-0.400000pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.305339pt;}
.lsb{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.298667pt;}
.ls12{letter-spacing:1.008000pt;}
.lsd{letter-spacing:1.022341pt;}
.lsa{letter-spacing:1.200000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.600000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls5{letter-spacing:2.240000pt;}
.ls0{letter-spacing:4.000000pt;}
.ls13{letter-spacing:7.632000pt;}
.lse{letter-spacing:224.666667pt;}
.ws2{word-spacing:-18.176000pt;}
.ws5d{word-spacing:-15.146667pt;}
.ws0{word-spacing:-11.946667pt;}
.ws9d{word-spacing:-11.760000pt;}
.ws8d{word-spacing:-11.360000pt;}
.wse1{word-spacing:-10.837333pt;}
.wsf4{word-spacing:-10.752000pt;}
.wse0{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.453333pt;}
.wsee{word-spacing:-10.325333pt;}
.wsc7{word-spacing:-10.160000pt;}
.wse{word-spacing:-9.482667pt;}
.wsf7{word-spacing:-5.333333pt;}
.wsb9{word-spacing:-4.032000pt;}
.wsf1{word-spacing:-3.936000pt;}
.wsd4{word-spacing:-3.888000pt;}
.ws73{word-spacing:-3.840000pt;}
.wsa1{word-spacing:-3.792000pt;}
.ws90{word-spacing:-3.456000pt;}
.ws57{word-spacing:-3.408000pt;}
.ws79{word-spacing:-3.360000pt;}
.ws4f{word-spacing:-3.312000pt;}
.wsce{word-spacing:-3.216000pt;}
.wse3{word-spacing:-3.168000pt;}
.wsad{word-spacing:-2.784000pt;}
.ws16{word-spacing:-2.736000pt;}
.ws9e{word-spacing:-2.688000pt;}
.wsac{word-spacing:-2.448000pt;}
.wsb1{word-spacing:-2.352000pt;}
.ws1d{word-spacing:-2.304000pt;}
.ws35{word-spacing:-2.256000pt;}
.wsf{word-spacing:-2.240000pt;}
.wsd8{word-spacing:-2.160000pt;}
.ws8{word-spacing:-2.112000pt;}
.ws53{word-spacing:-2.064000pt;}
.ws1c{word-spacing:-2.016000pt;}
.ws59{word-spacing:-1.968000pt;}
.ws5b{word-spacing:-1.920000pt;}
.wse7{word-spacing:-1.872000pt;}
.ws2c{word-spacing:-1.824000pt;}
.ws67{word-spacing:-1.776000pt;}
.ws46{word-spacing:-1.728000pt;}
.ws7b{word-spacing:-1.680000pt;}
.wsd9{word-spacing:-1.632000pt;}
.ws45{word-spacing:-1.584000pt;}
.ws7c{word-spacing:-1.570317pt;}
.wsf2{word-spacing:-1.536000pt;}
.wse2{word-spacing:-1.488000pt;}
.wsda{word-spacing:-1.440000pt;}
.wsc{word-spacing:-1.392000pt;}
.wse4{word-spacing:-1.296000pt;}
.ws12{word-spacing:-1.248000pt;}
.ws9c{word-spacing:-1.200000pt;}
.ws71{word-spacing:-1.152000pt;}
.ws5f{word-spacing:-1.104000pt;}
.ws44{word-spacing:-1.056000pt;}
.wsca{word-spacing:-1.022341pt;}
.ws51{word-spacing:-1.008000pt;}
.wsbc{word-spacing:-0.960000pt;}
.ws4{word-spacing:-0.912000pt;}
.wsa6{word-spacing:-0.864000pt;}
.ws66{word-spacing:-0.816000pt;}
.ws37{word-spacing:-0.768000pt;}
.wscb{word-spacing:-0.760000pt;}
.ws8e{word-spacing:-0.720000pt;}
.wsec{word-spacing:-0.697919pt;}
.ws65{word-spacing:-0.624000pt;}
.wscf{word-spacing:-0.528000pt;}
.ws6a{word-spacing:-0.480000pt;}
.wsc0{word-spacing:-0.436199pt;}
.ws91{word-spacing:-0.432000pt;}
.ws8c{word-spacing:-0.384000pt;}
.ws83{word-spacing:-0.336000pt;}
.wsf6{word-spacing:-0.298667pt;}
.ws29{word-spacing:-0.288000pt;}
.ws84{word-spacing:-0.240000pt;}
.wsf5{word-spacing:-0.213333pt;}
.wsbe{word-spacing:-0.192000pt;}
.wsed{word-spacing:-0.170667pt;}
.wsbd{word-spacing:-0.096000pt;}
.wsaa{word-spacing:-0.085333pt;}
.ws3{word-spacing:0.000000pt;}
.wse9{word-spacing:0.048000pt;}
.ws1f{word-spacing:0.144000pt;}
.wsb5{word-spacing:0.192000pt;}
.ws89{word-spacing:0.240000pt;}
.ws82{word-spacing:0.288000pt;}
.wsbf{word-spacing:0.392579pt;}
.ws87{word-spacing:0.432000pt;}
.ws20{word-spacing:0.480000pt;}
.ws94{word-spacing:0.523439pt;}
.wsb7{word-spacing:0.528000pt;}
.ws33{word-spacing:0.576000pt;}
.ws27{word-spacing:0.624000pt;}
.ws2b{word-spacing:0.672000pt;}
.ws1e{word-spacing:0.720000pt;}
.wscc{word-spacing:0.768000pt;}
.ws17{word-spacing:0.816000pt;}
.ws58{word-spacing:0.864000pt;}
.ws60{word-spacing:0.912000pt;}
.wsb0{word-spacing:0.960000pt;}
.wsa5{word-spacing:1.008000pt;}
.ws15{word-spacing:1.152000pt;}
.wsa7{word-spacing:1.200000pt;}
.ws68{word-spacing:1.248000pt;}
.ws13{word-spacing:1.296000pt;}
.ws2a{word-spacing:1.344000pt;}
.ws21{word-spacing:1.440000pt;}
.ws93{word-spacing:1.488000pt;}
.ws99{word-spacing:1.536000pt;}
.wse8{word-spacing:1.570317pt;}
.ws7{word-spacing:1.584000pt;}
.ws64{word-spacing:1.632000pt;}
.ws38{word-spacing:1.680000pt;}
.ws32{word-spacing:1.728000pt;}
.wsae{word-spacing:1.776000pt;}
.wsde{word-spacing:1.824000pt;}
.ws52{word-spacing:1.872000pt;}
.wseb{word-spacing:1.920000pt;}
.wsa8{word-spacing:1.968000pt;}
.ws70{word-spacing:2.016000pt;}
.ws1b{word-spacing:2.112000pt;}
.ws62{word-spacing:2.160000pt;}
.wsa9{word-spacing:2.256000pt;}
.ws19{word-spacing:2.304000pt;}
.wsb4{word-spacing:2.352000pt;}
.ws50{word-spacing:2.400000pt;}
.ws3a{word-spacing:2.448000pt;}
.ws74{word-spacing:2.496000pt;}
.ws39{word-spacing:2.544000pt;}
.ws3b{word-spacing:2.592000pt;}
.ws8a{word-spacing:2.640000pt;}
.ws40{word-spacing:2.688000pt;}
.ws28{word-spacing:2.736000pt;}
.wsd{word-spacing:2.784000pt;}
.wsd5{word-spacing:2.832000pt;}
.wsa3{word-spacing:2.835295pt;}
.ws7a{word-spacing:2.880000pt;}
.ws6b{word-spacing:2.928000pt;}
.ws63{word-spacing:3.024000pt;}
.ws3f{word-spacing:3.072000pt;}
.ws9b{word-spacing:3.120000pt;}
.ws31{word-spacing:3.168000pt;}
.wsab{word-spacing:3.216000pt;}
.ws30{word-spacing:3.264000pt;}
.ws18{word-spacing:3.312000pt;}
.ws2d{word-spacing:3.408000pt;}
.ws6f{word-spacing:3.456000pt;}
.wsa2{word-spacing:3.504000pt;}
.ws69{word-spacing:3.600000pt;}
.ws4d{word-spacing:3.648000pt;}
.wsba{word-spacing:3.696000pt;}
.wsdc{word-spacing:3.744000pt;}
.ws6c{word-spacing:3.888000pt;}
.wsef{word-spacing:3.984000pt;}
.ws22{word-spacing:4.080000pt;}
.wsb6{word-spacing:4.128000pt;}
.ws7e{word-spacing:4.176000pt;}
.wsbb{word-spacing:4.224000pt;}
.ws11{word-spacing:4.272000pt;}
.ws55{word-spacing:4.320000pt;}
.ws9f{word-spacing:4.368000pt;}
.ws14{word-spacing:4.416000pt;}
.wse6{word-spacing:4.464000pt;}
.ws92{word-spacing:4.512000pt;}
.ws23{word-spacing:4.560000pt;}
.ws47{word-spacing:4.608000pt;}
.ws77{word-spacing:4.848000pt;}
.wsaf{word-spacing:4.896000pt;}
.ws75{word-spacing:4.944000pt;}
.ws10{word-spacing:4.992000pt;}
.ws4b{word-spacing:5.040000pt;}
.wsb2{word-spacing:5.088000pt;}
.wsdb{word-spacing:5.136000pt;}
.ws88{word-spacing:5.184000pt;}
.ws9{word-spacing:5.232000pt;}
.wsa{word-spacing:5.280000pt;}
.ws34{word-spacing:5.328000pt;}
.wsc8{word-spacing:5.376000pt;}
.ws86{word-spacing:5.424000pt;}
.wsd7{word-spacing:5.472000pt;}
.ws54{word-spacing:5.520000pt;}
.wsa4{word-spacing:5.568000pt;}
.wsd2{word-spacing:5.664000pt;}
.ws8f{word-spacing:5.712000pt;}
.ws6e{word-spacing:5.808000pt;}
.ws42{word-spacing:5.856000pt;}
.ws7d{word-spacing:5.904000pt;}
.wsb3{word-spacing:6.000000pt;}
.ws76{word-spacing:6.048000pt;}
.ws26{word-spacing:6.096000pt;}
.ws3d{word-spacing:6.192000pt;}
.ws5{word-spacing:6.336000pt;}
.wsdd{word-spacing:6.384000pt;}
.ws61{word-spacing:6.432000pt;}
.ws6d{word-spacing:6.480000pt;}
.ws7f{word-spacing:6.528000pt;}
.wsb{word-spacing:6.624000pt;}
.ws97{word-spacing:6.672000pt;}
.ws25{word-spacing:6.720000pt;}
.ws49{word-spacing:6.816000pt;}
.ws5c{word-spacing:6.912000pt;}
.ws4c{word-spacing:6.960000pt;}
.ws4a{word-spacing:7.008000pt;}
.ws3c{word-spacing:7.056000pt;}
.ws5a{word-spacing:7.200000pt;}
.wsd0{word-spacing:7.344000pt;}
.ws56{word-spacing:7.392000pt;}
.ws5e{word-spacing:7.488000pt;}
.ws8b{word-spacing:7.632000pt;}
.wsc9{word-spacing:7.728000pt;}
.ws48{word-spacing:7.776000pt;}
.wsb8{word-spacing:7.824000pt;}
.wse5{word-spacing:7.920000pt;}
.wscd{word-spacing:7.968000pt;}
.ws41{word-spacing:8.064000pt;}
.ws6{word-spacing:8.208000pt;}
.ws36{word-spacing:8.256000pt;}
.wsf3{word-spacing:8.304000pt;}
.wsa0{word-spacing:8.352000pt;}
.wsdf{word-spacing:8.400000pt;}
.ws95{word-spacing:8.592000pt;}
.ws78{word-spacing:8.784000pt;}
.ws72{word-spacing:8.832000pt;}
.ws81{word-spacing:8.880000pt;}
.ws24{word-spacing:8.976000pt;}
.ws2f{word-spacing:9.120000pt;}
.wsd3{word-spacing:9.456000pt;}
.ws80{word-spacing:9.840000pt;}
.ws3e{word-spacing:10.080000pt;}
.wsea{word-spacing:10.128000pt;}
.ws96{word-spacing:10.272000pt;}
.ws2e{word-spacing:10.320000pt;}
.ws1a{word-spacing:10.464000pt;}
.ws98{word-spacing:10.560000pt;}
.wsd6{word-spacing:10.656000pt;}
.ws43{word-spacing:11.424000pt;}
.ws4e{word-spacing:11.472000pt;}
.ws85{word-spacing:11.520000pt;}
.ws9a{word-spacing:11.616000pt;}
.wsd1{word-spacing:14.784000pt;}
.wsf0{word-spacing:15.408000pt;}
.wsc5{word-spacing:34.160000pt;}
.wsc3{word-spacing:56.840000pt;}
.wsc2{word-spacing:79.400000pt;}
.wsc1{word-spacing:86.899011pt;}
.wsc6{word-spacing:104.960000pt;}
.wsc4{word-spacing:132.120000pt;}
._11{margin-left:-589.717333pt;}
._5{margin-left:-588.560000pt;}
._29{margin-left:-586.842667pt;}
._2b{margin-left:-585.760000pt;}
._28{margin-left:-584.229333pt;}
._3{margin-left:-9.077333pt;}
._4{margin-left:-6.688000pt;}
._13{margin-left:-4.384000pt;}
._1{margin-left:-3.157333pt;}
._6{margin-left:-2.218667pt;}
._0{margin-left:-1.280000pt;}
._7{width:0.912000pt;}
._2{width:1.861333pt;}
._12{width:3.648000pt;}
._8{width:5.952000pt;}
._23{width:35.920000pt;}
._22{width:38.200000pt;}
._25{width:40.360000pt;}
._27{width:41.640000pt;}
._1d{width:44.160000pt;}
._1f{width:45.480000pt;}
._1a{width:52.920000pt;}
._19{width:55.000000pt;}
._1b{width:60.920000pt;}
._1e{width:63.320000pt;}
._16{width:66.000000pt;}
._f{width:67.120000pt;}
._20{width:69.120000pt;}
._24{width:70.560000pt;}
._d{width:75.120000pt;}
._e{width:80.320000pt;}
._21{width:85.520000pt;}
._26{width:88.440000pt;}
._b{width:90.080000pt;}
._c{width:93.040000pt;}
._10{width:101.480000pt;}
._2a{width:106.457600pt;}
._1c{width:111.840000pt;}
._17{width:130.655219pt;}
._a{width:138.080000pt;}
._18{width:145.581403pt;}
._14{width:224.506667pt;}
._15{width:297.136533pt;}
._9{width:423.557333pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs8{font-size:40.893652pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:43.619918pt;}
.fs9{font-size:44.171793pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y1b0{bottom:54.008400pt;}
.y1cf{bottom:54.386267pt;}
.y14f{bottom:56.690133pt;}
.y212{bottom:56.690800pt;}
.y124{bottom:56.693200pt;}
.y15{bottom:56.696000pt;}
.y297{bottom:56.696133pt;}
.y96{bottom:59.918933pt;}
.ycc{bottom:63.800800pt;}
.y11a{bottom:64.918133pt;}
.y60{bottom:67.208667pt;}
.y1af{bottom:71.336400pt;}
.y14e{bottom:71.356800pt;}
.y211{bottom:71.357467pt;}
.y123{bottom:71.359867pt;}
.y14{bottom:71.362667pt;}
.y296{bottom:71.362800pt;}
.y1ce{bottom:71.714267pt;}
.y17f{bottom:73.924267pt;}
.y95{bottom:77.246933pt;}
.ycb{bottom:81.128800pt;}
.y27b{bottom:81.826800pt;}
.y23d{bottom:83.399067pt;}
.y5f{bottom:84.536667pt;}
.yf2{bottom:84.806000pt;}
.y14d{bottom:86.023467pt;}
.y210{bottom:86.024133pt;}
.y122{bottom:86.026533pt;}
.y13{bottom:86.029333pt;}
.y295{bottom:86.029467pt;}
.y119{bottom:87.538133pt;}
.y1ae{bottom:88.664400pt;}
.y1cd{bottom:89.042267pt;}
.y17e{bottom:91.252267pt;}
.y94{bottom:94.574933pt;}
.y27a{bottom:97.826800pt;}
.yca{bottom:98.456800pt;}
.y23c{bottom:99.399067pt;}
.y14c{bottom:100.690133pt;}
.y20f{bottom:100.690800pt;}
.y121{bottom:100.693200pt;}
.y12{bottom:100.696000pt;}
.y5e{bottom:101.864667pt;}
.yf1{bottom:102.134000pt;}
.y294{bottom:104.472133pt;}
.y1ad{bottom:105.992400pt;}
.y1cc{bottom:106.370267pt;}
.y17d{bottom:108.580267pt;}
.y118{bottom:110.158133pt;}
.y93{bottom:111.902933pt;}
.y279{bottom:113.826800pt;}
.y14b{bottom:115.356800pt;}
.y20e{bottom:115.357467pt;}
.y120{bottom:115.359867pt;}
.y11{bottom:115.362667pt;}
.y23b{bottom:115.399067pt;}
.yc9{bottom:115.784800pt;}
.yc8{bottom:115.821200pt;}
.y293{bottom:119.138800pt;}
.y5d{bottom:119.192667pt;}
.yf0{bottom:119.462000pt;}
.y1ac{bottom:123.320400pt;}
.y117{bottom:123.488133pt;}
.y1cb{bottom:123.698267pt;}
.y17c{bottom:125.908267pt;}
.y278{bottom:129.826800pt;}
.y14a{bottom:130.023467pt;}
.y20d{bottom:130.024133pt;}
.y11f{bottom:130.026533pt;}
.y10{bottom:130.029333pt;}
.y23a{bottom:131.399067pt;}
.yc7{bottom:133.149200pt;}
.y292{bottom:133.805467pt;}
.y5c{bottom:136.520667pt;}
.y92{bottom:136.795333pt;}
.y1ab{bottom:140.648400pt;}
.y1ca{bottom:141.026267pt;}
.y17b{bottom:143.241600pt;}
.yef{bottom:144.354400pt;}
.y149{bottom:144.690133pt;}
.y20c{bottom:144.690800pt;}
.y11e{bottom:144.693200pt;}
.yf{bottom:144.696000pt;}
.y277{bottom:145.826800pt;}
.y116{bottom:146.108133pt;}
.y239{bottom:147.399067pt;}
.y291{bottom:148.472133pt;}
.yc6{bottom:150.477200pt;}
.y5b{bottom:153.848667pt;}
.y91{bottom:154.128667pt;}
.y1aa{bottom:157.976400pt;}
.y148{bottom:159.356800pt;}
.y20b{bottom:159.357467pt;}
.y11d{bottom:159.359867pt;}
.ye{bottom:159.362667pt;}
.y276{bottom:161.826800pt;}
.y290{bottom:163.138800pt;}
.y238{bottom:163.399067pt;}
.y1c9{bottom:165.918667pt;}
.yc5{bottom:167.805200pt;}
.y17a{bottom:168.322133pt;}
.y5a{bottom:171.176667pt;}
.y147{bottom:174.023467pt;}
.y20a{bottom:174.024133pt;}
.y11c{bottom:174.026533pt;}
.y28f{bottom:177.805467pt;}
.y275{bottom:177.826800pt;}
.y237{bottom:179.399067pt;}
.y1a9{bottom:182.864400pt;}
.y179{bottom:185.650133pt;}
.y59{bottom:188.504667pt;}
.y146{bottom:188.690133pt;}
.y209{bottom:188.690800pt;}
.y11b{bottom:188.693200pt;}
.y115{bottom:189.885733pt;}
.yee{bottom:190.891067pt;}
.y28e{bottom:192.472133pt;}
.yc4{bottom:192.693200pt;}
.y274{bottom:193.826800pt;}
.y236{bottom:195.399067pt;}
.yd{bottom:196.706667pt;}
.y1a8{bottom:200.192400pt;}
.y90{bottom:200.644000pt;}
.y1c8{bottom:202.402800pt;}
.y178{bottom:202.978133pt;}
.y145{bottom:203.356800pt;}
.y208{bottom:203.357467pt;}
.y26{bottom:204.688533pt;}
.y58{bottom:205.832667pt;}
.y28d{bottom:207.138800pt;}
.y114{bottom:207.213733pt;}
.yed{bottom:208.219067pt;}
.y273{bottom:209.826800pt;}
.yc3{bottom:210.021200pt;}
.yc{bottom:211.373333pt;}
.y235{bottom:211.399067pt;}
.y1a7{bottom:217.520400pt;}
.y8f{bottom:217.972000pt;}
.y144{bottom:218.023467pt;}
.y207{bottom:218.024133pt;}
.y1c7{bottom:219.730800pt;}
.y177{bottom:220.306133pt;}
.y28c{bottom:221.805467pt;}
.y25{bottom:222.016533pt;}
.y57{bottom:223.160667pt;}
.y113{bottom:224.541733pt;}
.yec{bottom:225.547067pt;}
.y272{bottom:225.826800pt;}
.yb{bottom:226.040000pt;}
.yc2{bottom:227.349200pt;}
.y234{bottom:227.399067pt;}
.y206{bottom:232.690800pt;}
.y1a6{bottom:234.848400pt;}
.y8e{bottom:235.300000pt;}
.y28b{bottom:236.472133pt;}
.y1c6{bottom:237.058800pt;}
.y176{bottom:237.634133pt;}
.y24{bottom:239.344533pt;}
.y56{bottom:240.488667pt;}
.y271{bottom:241.826800pt;}
.y112{bottom:241.869733pt;}
.yeb{bottom:242.875067pt;}
.y233{bottom:243.399067pt;}
.yc1{bottom:244.677200pt;}
.y205{bottom:247.357467pt;}
.y28a{bottom:251.138800pt;}
.y1a5{bottom:252.176400pt;}
.y8d{bottom:252.628000pt;}
.y1c5{bottom:254.386800pt;}
.y175{bottom:254.962133pt;}
.y23{bottom:256.672533pt;}
.y55{bottom:257.816667pt;}
.y270{bottom:257.826800pt;}
.y111{bottom:259.197733pt;}
.y232{bottom:259.399067pt;}
.yea{bottom:260.203067pt;}
.y204{bottom:262.024133pt;}
.y289{bottom:265.805467pt;}
.y1a4{bottom:269.504400pt;}
.yc0{bottom:269.569600pt;}
.y8c{bottom:269.956000pt;}
.y1c4{bottom:271.714800pt;}
.y174{bottom:272.290133pt;}
.y26f{bottom:273.826800pt;}
.y22{bottom:274.000533pt;}
.y54{bottom:275.144667pt;}
.y231{bottom:275.399067pt;}
.y110{bottom:276.525733pt;}
.y203{bottom:276.690800pt;}
.ye9{bottom:277.531067pt;}
.y288{bottom:280.472133pt;}
.ya{bottom:282.285333pt;}
.y1a3{bottom:286.832400pt;}
.y8b{bottom:287.284000pt;}
.y1c3{bottom:289.042800pt;}
.y173{bottom:289.618133pt;}
.y26e{bottom:289.826800pt;}
.y21{bottom:291.328533pt;}
.y202{bottom:291.357467pt;}
.y230{bottom:291.399067pt;}
.y53{bottom:292.472667pt;}
.y10f{bottom:293.853733pt;}
.ye8{bottom:294.859067pt;}
.y287{bottom:295.138800pt;}
.y9{bottom:300.728000pt;}
.y1a2{bottom:304.160400pt;}
.y8a{bottom:304.612000pt;}
.ybf{bottom:305.821867pt;}
.y26d{bottom:305.826800pt;}
.y201{bottom:306.024133pt;}
.y1c2{bottom:306.370800pt;}
.y172{bottom:306.946133pt;}
.y22f{bottom:307.399067pt;}
.y20{bottom:308.656533pt;}
.y52{bottom:309.800667pt;}
.y10e{bottom:311.181733pt;}
.ye7{bottom:312.187067pt;}
.y8{bottom:315.394667pt;}
.y200{bottom:320.690800pt;}
.y1a1{bottom:321.488400pt;}
.y26c{bottom:321.826800pt;}
.y89{bottom:321.940000pt;}
.ybe{bottom:323.149867pt;}
.y22e{bottom:323.399067pt;}
.y1c1{bottom:323.698800pt;}
.y171{bottom:324.274133pt;}
.y1f{bottom:325.984533pt;}
.y51{bottom:327.128667pt;}
.y10d{bottom:328.509733pt;}
.ye6{bottom:329.515067pt;}
.y7{bottom:330.061333pt;}
.y286{bottom:332.482800pt;}
.y26b{bottom:337.826800pt;}
.y1a0{bottom:338.816400pt;}
.y88{bottom:339.268000pt;}
.y22d{bottom:339.399067pt;}
.ybd{bottom:340.477867pt;}
.y1ff{bottom:340.826933pt;}
.y1c0{bottom:341.026800pt;}
.y170{bottom:341.602133pt;}
.y1e{bottom:343.312533pt;}
.y6{bottom:344.728000pt;}
.y10c{bottom:345.837733pt;}
.ye5{bottom:346.843067pt;}
.y285{bottom:347.149467pt;}
.y50{bottom:352.021067pt;}
.y26a{bottom:353.826800pt;}
.y22c{bottom:355.399067pt;}
.y19f{bottom:356.144400pt;}
.y87{bottom:356.596000pt;}
.ybc{bottom:357.805867pt;}
.y1fe{bottom:358.154933pt;}
.y1bf{bottom:358.354800pt;}
.y5{bottom:359.394667pt;}
.y1d{bottom:360.640533pt;}
.y284{bottom:361.816133pt;}
.y10b{bottom:363.165733pt;}
.ye4{bottom:364.171067pt;}
.y16f{bottom:366.490133pt;}
.y269{bottom:369.826800pt;}
.y22b{bottom:371.399067pt;}
.y86{bottom:373.924000pt;}
.y4{bottom:374.061333pt;}
.ybb{bottom:375.133867pt;}
.y1fd{bottom:375.482933pt;}
.y1fc{bottom:375.498933pt;}
.y1be{bottom:375.682800pt;}
.y1c{bottom:377.968533pt;}
.y10a{bottom:380.493733pt;}
.y19e{bottom:381.036800pt;}
.ye3{bottom:381.499067pt;}
.y16e{bottom:383.818133pt;}
.y268{bottom:385.826800pt;}
.y22a{bottom:387.399067pt;}
.y4f{bottom:388.363067pt;}
.y85{bottom:391.252000pt;}
.y3{bottom:392.504000pt;}
.y1fb{bottom:392.826933pt;}
.y1bd{bottom:393.010800pt;}
.y143{bottom:395.878400pt;}
.y109{bottom:397.821733pt;}
.ye2{bottom:398.827067pt;}
.y283{bottom:399.160133pt;}
.yba{bottom:400.026267pt;}
.y16d{bottom:401.146133pt;}
.y267{bottom:401.826800pt;}
.y1b{bottom:402.860933pt;}
.y229{bottom:403.399067pt;}
.y4e{bottom:405.691067pt;}
.y2{bottom:407.170667pt;}
.y1fa{bottom:410.154933pt;}
.y142{bottom:413.206400pt;}
.y282{bottom:413.826800pt;}
.y108{bottom:415.149733pt;}
.y84{bottom:416.144400pt;}
.ye1{bottom:416.155067pt;}
.y266{bottom:417.826800pt;}
.y1bc{bottom:417.898800pt;}
.y16c{bottom:418.474133pt;}
.y4d{bottom:423.019067pt;}
.y228{bottom:426.958000pt;}
.y1f9{bottom:427.482933pt;}
.y1f8{bottom:427.508667pt;}
.y281{bottom:428.493467pt;}
.y141{bottom:430.534400pt;}
.y19d{bottom:430.866533pt;}
.y107{bottom:432.477733pt;}
.y106{bottom:432.493733pt;}
.ye0{bottom:433.483067pt;}
.y265{bottom:433.826800pt;}
.y1bb{bottom:435.226800pt;}
.y16b{bottom:435.802133pt;}
.yb9{bottom:436.430400pt;}
.y195{bottom:439.096667pt;}
.y4c{bottom:440.347067pt;}
.y280{bottom:443.160133pt;}
.y1f7{bottom:444.836667pt;}
.y19c{bottom:445.533200pt;}
.y140{bottom:447.862400pt;}
.y105{bottom:449.821733pt;}
.y264{bottom:449.826800pt;}
.ydf{bottom:450.811067pt;}
.y194{bottom:452.426667pt;}
.y83{bottom:452.554800pt;}
.y16a{bottom:453.130133pt;}
.yb8{bottom:453.758400pt;}
.y4b{bottom:457.675067pt;}
.y27f{bottom:457.826800pt;}
.y19b{bottom:460.199867pt;}
.y1f6{bottom:462.164667pt;}
.y13f{bottom:465.190400pt;}
.y263{bottom:465.826800pt;}
.y104{bottom:467.149733pt;}
.y227{bottom:469.635200pt;}
.y82{bottom:469.882800pt;}
.y169{bottom:470.458133pt;}
.yb7{bottom:471.086400pt;}
.y27e{bottom:472.493467pt;}
.y19a{bottom:474.866533pt;}
.y4a{bottom:475.003067pt;}
.y193{bottom:475.046667pt;}
.yde{bottom:475.703467pt;}
.y262{bottom:481.826800pt;}
.y13e{bottom:482.518400pt;}
.y226{bottom:484.301867pt;}
.y103{bottom:484.477733pt;}
.y1f5{bottom:487.052667pt;}
.y27d{bottom:487.160133pt;}
.y81{bottom:487.210800pt;}
.y168{bottom:487.786133pt;}
.y192{bottom:488.376667pt;}
.yb6{bottom:488.414400pt;}
.y199{bottom:489.533200pt;}
.y49{bottom:492.331067pt;}
.y261{bottom:497.826800pt;}
.y225{bottom:498.972133pt;}
.y13d{bottom:499.846400pt;}
.y27c{bottom:501.826800pt;}
.y198{bottom:504.199867pt;}
.y1f4{bottom:504.380667pt;}
.y80{bottom:504.538800pt;}
.y167{bottom:505.114133pt;}
.y102{bottom:509.370133pt;}
.y48{bottom:509.659067pt;}
.y191{bottom:510.997600pt;}
.ydd{bottom:512.014800pt;}
.yb5{bottom:513.302400pt;}
.y260{bottom:513.826800pt;}
.y13c{bottom:517.174400pt;}
.y224{bottom:517.414800pt;}
.y197{bottom:518.866533pt;}
.y1f3{bottom:521.708667pt;}
.y1f2{bottom:521.777467pt;}
.y7f{bottom:521.866800pt;}
.y190{bottom:524.327600pt;}
.y47{bottom:526.987067pt;}
.ydc{bottom:529.342800pt;}
.y25f{bottom:529.826800pt;}
.y166{bottom:530.002133pt;}
.yb4{bottom:530.630400pt;}
.y223{bottom:532.081467pt;}
.y196{bottom:533.533200pt;}
.y13b{bottom:534.502400pt;}
.y1f1{bottom:539.105467pt;}
.y7e{bottom:539.194800pt;}
.y46{bottom:544.315067pt;}
.y25e{bottom:545.826800pt;}
.ydb{bottom:546.670800pt;}
.y222{bottom:546.748133pt;}
.y18f{bottom:546.947600pt;}
.y165{bottom:547.330133pt;}
.yb3{bottom:547.958400pt;}
.y13a{bottom:551.830400pt;}
.y1f0{bottom:556.433467pt;}
.y7d{bottom:556.522800pt;}
.y45{bottom:561.643067pt;}
.y25d{bottom:561.826800pt;}
.yda{bottom:563.998800pt;}
.y164{bottom:564.658133pt;}
.yb2{bottom:565.286400pt;}
.y221{bottom:568.973733pt;}
.y139{bottom:569.158400pt;}
.y138{bottom:569.179733pt;}
.y18e{bottom:569.567600pt;}
.y1ef{bottom:573.761467pt;}
.y7c{bottom:573.850800pt;}
.y25c{bottom:577.826800pt;}
.y44{bottom:578.971067pt;}
.yd9{bottom:581.326800pt;}
.y1ba{bottom:581.410800pt;}
.y163{bottom:581.986133pt;}
.yb1{bottom:582.614400pt;}
.y18d{bottom:582.897600pt;}
.y137{bottom:586.507733pt;}
.y1ee{bottom:591.089467pt;}
.y7b{bottom:591.178800pt;}
.y25b{bottom:593.826800pt;}
.yd8{bottom:598.654800pt;}
.y1b9{bottom:598.738800pt;}
.y162{bottom:599.314133pt;}
.yb0{bottom:599.942400pt;}
.y136{bottom:603.835733pt;}
.y43{bottom:603.859067pt;}
.y7a{bottom:608.506800pt;}
.y25a{bottom:609.826800pt;}
.y18c{bottom:612.097600pt;}
.y220{bottom:615.441200pt;}
.y1ed{bottom:615.977467pt;}
.yd7{bottom:615.982800pt;}
.y1b8{bottom:616.066800pt;}
.yaf{bottom:617.270400pt;}
.y135{bottom:621.163733pt;}
.y42{bottom:621.187067pt;}
.y161{bottom:624.202133pt;}
.y259{bottom:625.826800pt;}
.y21f{bottom:632.769200pt;}
.y1ec{bottom:633.305467pt;}
.yd6{bottom:633.310800pt;}
.y79{bottom:633.394800pt;}
.yae{bottom:634.598400pt;}
.y18b{bottom:634.719067pt;}
.y134{bottom:638.491733pt;}
.y41{bottom:638.515067pt;}
.y160{bottom:641.530133pt;}
.y258{bottom:641.826800pt;}
.y18a{bottom:648.049067pt;}
.y21e{bottom:650.097200pt;}
.y1eb{bottom:650.633467pt;}
.yd5{bottom:650.638800pt;}
.y78{bottom:650.722800pt;}
.yad{bottom:651.926400pt;}
.y40{bottom:655.843067pt;}
.y257{bottom:657.826800pt;}
.y15f{bottom:658.858133pt;}
.y133{bottom:663.384133pt;}
.y1ea{bottom:667.961467pt;}
.yd4{bottom:667.966800pt;}
.y77{bottom:668.050800pt;}
.yac{bottom:669.254400pt;}
.y3f{bottom:673.171067pt;}
.y256{bottom:673.826800pt;}
.y21d{bottom:674.989600pt;}
.y15e{bottom:676.186133pt;}
.y1e9{bottom:685.289467pt;}
.yd3{bottom:685.294800pt;}
.y76{bottom:685.378800pt;}
.y255{bottom:689.826800pt;}
.y3e{bottom:690.499067pt;}
.y15d{bottom:693.514133pt;}
.yab{bottom:694.142400pt;}
.y27{bottom:694.435600pt;}
.y132{bottom:699.647067pt;}
.y1e8{bottom:702.617467pt;}
.y75{bottom:702.706800pt;}
.y254{bottom:705.826800pt;}
.y3d{bottom:707.827067pt;}
.y15c{bottom:710.842133pt;}
.yaa{bottom:711.470400pt;}
.y1a{bottom:716.661333pt;}
.y131{bottom:716.975067pt;}
.y1e7{bottom:719.945467pt;}
.y74{bottom:720.034800pt;}
.y21c{bottom:721.446267pt;}
.y253{bottom:721.826800pt;}
.y1e4{bottom:724.829467pt;}
.y3c{bottom:725.155067pt;}
.y15b{bottom:728.170133pt;}
.ya9{bottom:728.798400pt;}
.y130{bottom:734.303067pt;}
.y1e6{bottom:737.273467pt;}
.y73{bottom:737.362800pt;}
.y252{bottom:737.826800pt;}
.y1e3{bottom:739.496133pt;}
.y19{bottom:740.220400pt;}
.y3b{bottom:742.483067pt;}
.y15a{bottom:745.498133pt;}
.ya8{bottom:746.126400pt;}
.y21b{bottom:746.338667pt;}
.y12f{bottom:751.631067pt;}
.y251{bottom:753.826800pt;}
.y1e2{bottom:754.162800pt;}
.y1e5{bottom:754.601467pt;}
.y72{bottom:754.690800pt;}
.y101{bottom:755.893200pt;}
.y3a{bottom:759.811067pt;}
.y1b7{bottom:762.250800pt;}
.y159{bottom:762.826133pt;}
.ya7{bottom:763.454400pt;}
.y1e1{bottom:768.829467pt;}
.y12e{bottom:768.959067pt;}
.y250{bottom:769.826800pt;}
.y100{bottom:770.559867pt;}
.y71{bottom:772.018800pt;}
.y1b6{bottom:779.578800pt;}
.ya6{bottom:780.782400pt;}
.y1e0{bottom:783.496133pt;}
.y39{bottom:784.703467pt;}
.yff{bottom:785.226533pt;}
.y24f{bottom:785.826800pt;}
.y12d{bottom:786.287067pt;}
.y158{bottom:787.714133pt;}
.y70{bottom:789.346800pt;}
.y21a{bottom:792.800667pt;}
.y1b5{bottom:796.906800pt;}
.ya5{bottom:798.110400pt;}
.y1df{bottom:798.162800pt;}
.yfe{bottom:799.893200pt;}
.y24e{bottom:801.826800pt;}
.y12c{bottom:803.615067pt;}
.y157{bottom:805.042133pt;}
.y6f{bottom:806.674800pt;}
.y219{bottom:810.128667pt;}
.y1{bottom:812.598400pt;}
.y18{bottom:812.622533pt;}
.y1de{bottom:812.829467pt;}
.y1b4{bottom:814.234800pt;}
.yfd{bottom:814.559867pt;}
.ya4{bottom:815.438400pt;}
.y24d{bottom:817.826800pt;}
.y38{bottom:820.998400pt;}
.y156{bottom:822.370133pt;}
.y6e{bottom:824.002800pt;}
.y189{bottom:825.191867pt;}
.y1dd{bottom:827.496133pt;}
.yfc{bottom:829.226533pt;}
.y1b3{bottom:831.562800pt;}
.y24c{bottom:833.826800pt;}
.y218{bottom:835.021067pt;}
.y37{bottom:838.326400pt;}
.y12b{bottom:839.282133pt;}
.y188{bottom:839.858533pt;}
.ya3{bottom:840.326400pt;}
.y6d{bottom:841.330800pt;}
.y1dc{bottom:842.162800pt;}
.y155{bottom:847.262533pt;}
.y1b2{bottom:848.890800pt;}
.y24b{bottom:849.826800pt;}
.y17{bottom:849.943867pt;}
.y12a{bottom:853.948800pt;}
.y187{bottom:854.525200pt;}
.y36{bottom:855.654400pt;}
.y1db{bottom:856.829467pt;}
.yfb{bottom:857.643733pt;}
.ya2{bottom:857.654400pt;}
.y6c{bottom:858.658800pt;}
.yd2{bottom:861.645733pt;}
.y24a{bottom:865.826800pt;}
.y1b1{bottom:866.218800pt;}
.y129{bottom:868.615467pt;}
.y186{bottom:869.191867pt;}
.y1da{bottom:871.496133pt;}
.y35{bottom:872.982400pt;}
.yfa{bottom:874.971733pt;}
.ya1{bottom:874.982400pt;}
.y6b{bottom:875.986800pt;}
.yd1{bottom:876.312400pt;}
.y217{bottom:881.493733pt;}
.y249{bottom:881.826800pt;}
.y128{bottom:883.282133pt;}
.y154{bottom:883.546800pt;}
.y185{bottom:883.858533pt;}
.y1d9{bottom:886.162800pt;}
.y16{bottom:887.265200pt;}
.y34{bottom:890.310400pt;}
.yd0{bottom:890.979067pt;}
.yf9{bottom:892.299733pt;}
.ya0{bottom:892.310400pt;}
.y6a{bottom:893.314800pt;}
.y248{bottom:897.826800pt;}
.y127{bottom:897.948800pt;}
.y184{bottom:898.525200pt;}
.y216{bottom:898.821733pt;}
.y1d8{bottom:900.829467pt;}
.y153{bottom:900.874800pt;}
.ycf{bottom:905.645733pt;}
.y33{bottom:907.638400pt;}
.yf8{bottom:909.627733pt;}
.y9f{bottom:909.638400pt;}
.y69{bottom:910.642800pt;}
.y126{bottom:912.615467pt;}
.y183{bottom:913.191867pt;}
.y247{bottom:913.826800pt;}
.y1d7{bottom:915.496133pt;}
.y215{bottom:916.149733pt;}
.y152{bottom:918.202800pt;}
.yce{bottom:920.312400pt;}
.y32{bottom:924.966400pt;}
.yf7{bottom:926.955733pt;}
.y9e{bottom:926.966400pt;}
.y125{bottom:927.282133pt;}
.y182{bottom:927.858533pt;}
.y68{bottom:927.970800pt;}
.y246{bottom:929.826800pt;}
.y1d6{bottom:930.162800pt;}
.y214{bottom:933.477733pt;}
.ycd{bottom:934.979067pt;}
.y151{bottom:935.530800pt;}
.y31{bottom:942.294400pt;}
.y181{bottom:942.525200pt;}
.yf6{bottom:944.283733pt;}
.y9d{bottom:944.294400pt;}
.y1d5{bottom:944.829467pt;}
.y67{bottom:945.298800pt;}
.y245{bottom:945.826800pt;}
.y150{bottom:952.858800pt;}
.y180{bottom:957.191867pt;}
.y213{bottom:958.370133pt;}
.y1d4{bottom:959.496133pt;}
.y30{bottom:959.622400pt;}
.yf5{bottom:961.611733pt;}
.y9c{bottom:961.622400pt;}
.y244{bottom:961.826800pt;}
.y66{bottom:970.186800pt;}
.y1d3{bottom:974.162800pt;}
.y2f{bottom:976.950400pt;}
.y243{bottom:977.826800pt;}
.yf4{bottom:978.939733pt;}
.y9b{bottom:978.950400pt;}
.y65{bottom:987.514800pt;}
.y1d2{bottom:988.829467pt;}
.y242{bottom:993.826800pt;}
.y2e{bottom:994.278400pt;}
.yf3{bottom:996.267733pt;}
.y9a{bottom:996.278400pt;}
.y1d1{bottom:1003.496133pt;}
.y64{bottom:1004.842800pt;}
.y241{bottom:1009.826800pt;}
.y2d{bottom:1011.606400pt;}
.y99{bottom:1013.606400pt;}
.y63{bottom:1022.170800pt;}
.y240{bottom:1025.826800pt;}
.y2c{bottom:1028.934400pt;}
.y98{bottom:1030.934400pt;}
.y2a{bottom:1034.821467pt;}
.y1d0{bottom:1039.493467pt;}
.y62{bottom:1039.498800pt;}
.y23f{bottom:1041.826800pt;}
.y29{bottom:1046.824133pt;}
.y2b{bottom:1053.826800pt;}
.y97{bottom:1055.826800pt;}
.y61{bottom:1056.826800pt;}
.y23e{bottom:1057.826800pt;}
.y28{bottom:1058.826800pt;}
.ha{height:28.746667pt;}
.h9{height:29.344000pt;}
.hd{height:31.280000pt;}
.hc{height:31.440000pt;}
.he{height:32.142411pt;}
.h5{height:32.853333pt;}
.h3{height:33.365333pt;}
.h4{height:33.536000pt;}
.hb{height:34.285256pt;}
.hf{height:34.542342pt;}
.h8{height:37.536000pt;}
.h2{height:41.920000pt;}
.h7{height:50.304000pt;}
.h6{height:94.453333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.692933pt;}
.x16{left:61.359600pt;}
.x11{left:64.270667pt;}
.x2{left:79.370000pt;}
.x15{left:92.033467pt;}
.x14{left:96.827733pt;}
.x20{left:118.893200pt;}
.x1b{left:120.419600pt;}
.x21{left:159.316267pt;}
.x1e{left:177.758933pt;}
.xd{left:183.590667pt;}
.x1c{left:196.849600pt;}
.x1f{left:217.801067pt;}
.x22{left:219.987600pt;}
.x7{left:244.023733pt;}
.x9{left:248.893067pt;}
.xe{left:260.930667pt;}
.x17{left:265.050400pt;}
.x23{left:266.596400pt;}
.xa{left:284.464800pt;}
.x8{left:285.354000pt;}
.xb{left:294.457067pt;}
.x24{left:330.137200pt;}
.x18{left:333.520400pt;}
.xc{left:334.626267pt;}
.xf{left:341.120667pt;}
.x19{left:386.850400pt;}
.x10{left:420.460667pt;}
.x12{left:445.160000pt;}
.x5{left:450.910000pt;}
.x13{left:485.895467pt;}
.x6{left:489.975600pt;}
.x1a{left:495.716975pt;}
.x1{left:589.606267pt;}
.x25{left:689.946133pt;}
.x1d{left:724.645867pt;}
.x3{left:731.236133pt;}
}




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