
    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_6da2dcb9df386503049756e3.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_13eb90d957c1eb5295ad5ca7.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_142404f9f92bfcbd84522404.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_82e0bb727ebab2d5e9cfae4c.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_82e0bb727ebab2d5e9cfae4c.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f91e24d147cfb294fe72d512.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_82e0bb727ebab2d5e9cfae4c.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f91e24d147cfb294fe72d512.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d24688b635c1bc2bb4c4c690.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_de3c39130479162c81ea010a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0a2e81c13ab780c5236e8da4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_82e0bb727ebab2d5e9cfae4c.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f91e24d147cfb294fe72d512.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m2{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls11{letter-spacing:-3.996000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000132px;}
.lsb{letter-spacing:0.676200px;}
.lsc{letter-spacing:1.260000px;}
.lse{letter-spacing:1.350000px;}
.ls1{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.613400px;}
.lsf{letter-spacing:1.683000px;}
.ls2{letter-spacing:1.800000px;}
.ls8{letter-spacing:1.887600px;}
.ls7{letter-spacing:1.888200px;}
.ls9{letter-spacing:1.949400px;}
.ls3{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.520000px;}
.ls0{letter-spacing:4.500000px;}
.ls6{letter-spacing:5.122800px;}
.lsa{letter-spacing:6.342600px;}
.ls13{letter-spacing:6.936600px;}
.ls10{letter-spacing:496.472400px;}
.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;}
}
.wsb8{word-spacing:-54.000000px;}
.ws2{word-spacing:-20.448000px;}
.ws65{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.632000px;}
.ws12{word-spacing:-13.500000px;}
.ws42{word-spacing:-13.230000px;}
.ws118{word-spacing:-12.192000px;}
.ws1{word-spacing:-12.000000px;}
.wsf8{word-spacing:-11.760000px;}
.ws11{word-spacing:-10.668000px;}
.wseb{word-spacing:-9.504000px;}
.ws66{word-spacing:-7.870500px;}
.ws6{word-spacing:-5.292000px;}
.wsd8{word-spacing:-4.968000px;}
.wse3{word-spacing:-4.590000px;}
.wsc8{word-spacing:-4.320000px;}
.wsbf{word-spacing:-4.050000px;}
.ws4f{word-spacing:-3.942000px;}
.wsdf{word-spacing:-3.834000px;}
.ws9c{word-spacing:-3.726000px;}
.wsfe{word-spacing:-3.672000px;}
.ws1c{word-spacing:-3.618000px;}
.wsf9{word-spacing:-3.456000px;}
.ws100{word-spacing:-3.132000px;}
.ws108{word-spacing:-3.078000px;}
.ws1e{word-spacing:-3.024000px;}
.ws97{word-spacing:-2.970000px;}
.wsd4{word-spacing:-2.916000px;}
.ws105{word-spacing:-2.862000px;}
.ws107{word-spacing:-2.808000px;}
.ws60{word-spacing:-2.646000px;}
.ws98{word-spacing:-2.592000px;}
.ws52{word-spacing:-2.538000px;}
.ws68{word-spacing:-2.484000px;}
.wsfb{word-spacing:-2.430000px;}
.ws15{word-spacing:-2.376000px;}
.ws90{word-spacing:-2.322000px;}
.ws3f{word-spacing:-2.268000px;}
.wsf1{word-spacing:-2.160000px;}
.ws9a{word-spacing:-2.106000px;}
.ws3a{word-spacing:-2.052000px;}
.ws41{word-spacing:-1.998000px;}
.ws117{word-spacing:-1.944000px;}
.wsc2{word-spacing:-1.890000px;}
.ws116{word-spacing:-1.836000px;}
.wsc7{word-spacing:-1.782000px;}
.ws1b{word-spacing:-1.728000px;}
.ws75{word-spacing:-1.674000px;}
.wsae{word-spacing:-1.620000px;}
.ws13{word-spacing:-1.566000px;}
.wsb7{word-spacing:-1.512000px;}
.ws3b{word-spacing:-1.458000px;}
.wsfc{word-spacing:-1.404000px;}
.wsc3{word-spacing:-1.350000px;}
.wsb6{word-spacing:-1.296000px;}
.ws99{word-spacing:-1.260000px;}
.ws67{word-spacing:-1.242000px;}
.ws62{word-spacing:-1.188000px;}
.wsc1{word-spacing:-1.134000px;}
.ws9e{word-spacing:-1.080000px;}
.ws73{word-spacing:-1.026000px;}
.ws26{word-spacing:-0.972000px;}
.ws51{word-spacing:-0.918000px;}
.wsa2{word-spacing:-0.864000px;}
.wsaa{word-spacing:-0.810000px;}
.ws74{word-spacing:-0.756000px;}
.ws7a{word-spacing:-0.702000px;}
.ws4{word-spacing:-0.690000px;}
.wsa8{word-spacing:-0.648000px;}
.wsff{word-spacing:-0.594000px;}
.ws111{word-spacing:-0.486000px;}
.ws9d{word-spacing:-0.432000px;}
.ws92{word-spacing:-0.378000px;}
.ws29{word-spacing:-0.324000px;}
.wsb0{word-spacing:-0.270000px;}
.wsfd{word-spacing:-0.216000px;}
.ws2e{word-spacing:-0.162000px;}
.ws82{word-spacing:-0.108000px;}
.ws7c{word-spacing:-0.054000px;}
.wsf6{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.wsc6{word-spacing:0.054000px;}
.ws27{word-spacing:0.108000px;}
.ws30{word-spacing:0.216000px;}
.ws4e{word-spacing:0.270000px;}
.ws76{word-spacing:0.324000px;}
.ws8b{word-spacing:0.378000px;}
.ws9{word-spacing:0.432000px;}
.ws87{word-spacing:0.486000px;}
.ws5f{word-spacing:0.540000px;}
.ws61{word-spacing:0.594000px;}
.wsda{word-spacing:0.648000px;}
.ws69{word-spacing:0.702000px;}
.wsd0{word-spacing:0.810000px;}
.ws71{word-spacing:0.864000px;}
.wsb2{word-spacing:0.918000px;}
.wsb3{word-spacing:0.972000px;}
.wsa0{word-spacing:1.026000px;}
.wsf2{word-spacing:1.080000px;}
.wsb9{word-spacing:1.134000px;}
.ws86{word-spacing:1.188000px;}
.wsba{word-spacing:1.296000px;}
.ws25{word-spacing:1.350000px;}
.wsb5{word-spacing:1.404000px;}
.ws70{word-spacing:1.458000px;}
.ws1a{word-spacing:1.512000px;}
.ws2c{word-spacing:1.566000px;}
.ws28{word-spacing:1.620000px;}
.ws94{word-spacing:1.674000px;}
.wsa9{word-spacing:1.728000px;}
.ws10f{word-spacing:1.782000px;}
.ws17{word-spacing:1.836000px;}
.ws40{word-spacing:1.890000px;}
.ws45{word-spacing:1.944000px;}
.wsa3{word-spacing:1.998000px;}
.wsad{word-spacing:2.052000px;}
.ws19{word-spacing:2.106000px;}
.ws38{word-spacing:2.160000px;}
.ws37{word-spacing:2.214000px;}
.wsc5{word-spacing:2.268000px;}
.ws95{word-spacing:2.322000px;}
.ws2b{word-spacing:2.376000px;}
.wsac{word-spacing:2.430000px;}
.wsb1{word-spacing:2.484000px;}
.ws2d{word-spacing:2.592000px;}
.wse6{word-spacing:2.646000px;}
.ws106{word-spacing:2.700000px;}
.ws18{word-spacing:2.754000px;}
.ws9b{word-spacing:2.808000px;}
.wsb4{word-spacing:2.862000px;}
.wsca{word-spacing:2.916000px;}
.ws56{word-spacing:2.970000px;}
.ws7e{word-spacing:3.024000px;}
.wsce{word-spacing:3.078000px;}
.ws2f{word-spacing:3.132000px;}
.wsf0{word-spacing:3.186000px;}
.wsfa{word-spacing:3.240000px;}
.ws80{word-spacing:3.294000px;}
.ws6c{word-spacing:3.348000px;}
.ws49{word-spacing:3.402000px;}
.wsde{word-spacing:3.456000px;}
.ws46{word-spacing:3.510000px;}
.ws8d{word-spacing:3.564000px;}
.ws8c{word-spacing:3.618000px;}
.wse8{word-spacing:3.672000px;}
.ws31{word-spacing:3.726000px;}
.ws85{word-spacing:3.780000px;}
.wsf3{word-spacing:3.834000px;}
.ws23{word-spacing:3.888000px;}
.ws83{word-spacing:3.942000px;}
.ws109{word-spacing:3.996000px;}
.ws78{word-spacing:4.050000px;}
.ws3e{word-spacing:4.104000px;}
.wsc0{word-spacing:4.158000px;}
.ws39{word-spacing:4.212000px;}
.wsd6{word-spacing:4.266000px;}
.wsa6{word-spacing:4.320000px;}
.wsd2{word-spacing:4.374000px;}
.wsab{word-spacing:4.428000px;}
.ws6f{word-spacing:4.482000px;}
.ws5b{word-spacing:4.536000px;}
.wsed{word-spacing:4.590000px;}
.ws43{word-spacing:4.644000px;}
.ws4b{word-spacing:4.698000px;}
.ws14{word-spacing:4.752000px;}
.ws72{word-spacing:4.806000px;}
.ws54{word-spacing:4.860000px;}
.wse4{word-spacing:4.914000px;}
.wsc4{word-spacing:4.968000px;}
.wse2{word-spacing:5.022000px;}
.ws2a{word-spacing:5.076000px;}
.ws20{word-spacing:5.130000px;}
.ws21{word-spacing:5.184000px;}
.ws36{word-spacing:5.292000px;}
.ws1d{word-spacing:5.346000px;}
.ws77{word-spacing:5.454000px;}
.ws16{word-spacing:5.508000px;}
.wsd7{word-spacing:5.562000px;}
.wse5{word-spacing:5.616000px;}
.ws53{word-spacing:5.670000px;}
.ws24{word-spacing:5.724000px;}
.wsf7{word-spacing:5.778000px;}
.wsee{word-spacing:5.832000px;}
.ws4c{word-spacing:5.886000px;}
.ws96{word-spacing:5.940000px;}
.ws113{word-spacing:6.102000px;}
.ws9f{word-spacing:6.156000px;}
.ws6a{word-spacing:6.210000px;}
.ws7f{word-spacing:6.264000px;}
.wsd1{word-spacing:6.318000px;}
.ws50{word-spacing:6.372000px;}
.ws6e{word-spacing:6.426000px;}
.ws7{word-spacing:6.480000px;}
.wsdc{word-spacing:6.534000px;}
.ws8{word-spacing:6.588000px;}
.ws4d{word-spacing:6.696000px;}
.ws32{word-spacing:6.750000px;}
.ws10d{word-spacing:6.804000px;}
.wsc9{word-spacing:6.858000px;}
.ws10e{word-spacing:6.912000px;}
.ws64{word-spacing:7.020000px;}
.wsbe{word-spacing:7.074000px;}
.ws91{word-spacing:7.128000px;}
.ws79{word-spacing:7.182000px;}
.wsc{word-spacing:7.236000px;}
.ws55{word-spacing:7.290000px;}
.wse7{word-spacing:7.452000px;}
.wsa7{word-spacing:7.506000px;}
.ws1f{word-spacing:7.614000px;}
.ws34{word-spacing:7.668000px;}
.ws5d{word-spacing:7.830000px;}
.wscb{word-spacing:7.938000px;}
.ws48{word-spacing:7.992000px;}
.wsdd{word-spacing:8.100000px;}
.wsf{word-spacing:8.262000px;}
.wsdb{word-spacing:8.478000px;}
.ws8e{word-spacing:8.532000px;}
.wsbd{word-spacing:8.586000px;}
.ws10c{word-spacing:8.802000px;}
.wscc{word-spacing:8.856000px;}
.ws7b{word-spacing:8.910000px;}
.ws57{word-spacing:9.018000px;}
.wsea{word-spacing:9.072000px;}
.ws93{word-spacing:9.288000px;}
.ws110{word-spacing:9.342000px;}
.wsa4{word-spacing:9.396000px;}
.ws59{word-spacing:9.450000px;}
.ws6b{word-spacing:9.504000px;}
.ws104{word-spacing:9.558000px;}
.ws10{word-spacing:9.612000px;}
.ws3d{word-spacing:9.666000px;}
.ws58{word-spacing:9.774000px;}
.ws8f{word-spacing:9.936000px;}
.ws33{word-spacing:9.990000px;}
.ws5{word-spacing:10.206000px;}
.wsa1{word-spacing:10.314000px;}
.wscf{word-spacing:10.368000px;}
.wsd9{word-spacing:10.422000px;}
.ws81{word-spacing:10.584000px;}
.ws114{word-spacing:10.638000px;}
.ws10a{word-spacing:10.692000px;}
.wsf4{word-spacing:10.800000px;}
.ws101{word-spacing:10.908000px;}
.wsa5{word-spacing:11.016000px;}
.wsbb{word-spacing:11.124000px;}
.ws7d{word-spacing:11.178000px;}
.ws63{word-spacing:11.340000px;}
.ws84{word-spacing:11.448000px;}
.ws6d{word-spacing:11.502000px;}
.ws88{word-spacing:11.556000px;}
.wsd5{word-spacing:12.042000px;}
.ws47{word-spacing:12.096000px;}
.ws35{word-spacing:12.150000px;}
.wse1{word-spacing:12.204000px;}
.wse9{word-spacing:12.312000px;}
.ws89{word-spacing:12.420000px;}
.wse0{word-spacing:12.474000px;}
.ws5e{word-spacing:12.528000px;}
.ws3c{word-spacing:12.690000px;}
.ws102{word-spacing:13.122000px;}
.ws10b{word-spacing:13.230000px;}
.wsef{word-spacing:13.770000px;}
.wsa{word-spacing:13.878000px;}
.wscd{word-spacing:14.634000px;}
.wsf5{word-spacing:14.796000px;}
.ws112{word-spacing:15.066000px;}
.ws103{word-spacing:15.120000px;}
.wsb{word-spacing:15.390000px;}
.ws4a{word-spacing:15.606000px;}
.ws5a{word-spacing:15.768000px;}
.wsd3{word-spacing:16.254000px;}
.wsbc{word-spacing:16.578000px;}
.ws8a{word-spacing:17.658000px;}
.ws115{word-spacing:17.874000px;}
.ws22{word-spacing:18.630000px;}
.ws5c{word-spacing:19.062000px;}
.wsd{word-spacing:19.494000px;}
.ws44{word-spacing:20.196000px;}
.wse{word-spacing:22.464000px;}
.wsec{word-spacing:64.104000px;}
.wsaf{word-spacing:70.104000px;}
._a{margin-left:-663.412200px;}
._3{margin-left:-662.114400px;}
._13{margin-left:-660.216000px;}
._14{margin-left:-658.965000px;}
._12{margin-left:-657.238200px;}
._21{margin-left:-6.000000px;}
._6{margin-left:-4.802400px;}
._1{margin-left:-2.832000px;}
._0{margin-left:-1.440000px;}
._4{width:1.008000px;}
._2{width:2.022000px;}
._9{width:3.139800px;}
._5{width:5.015400px;}
._7{width:6.126000px;}
._11{width:7.546200px;}
._1f{width:8.952600px;}
._15{width:15.140400px;}
._20{width:53.619000px;}
._8{width:66.431400px;}
._1c{width:70.596000px;}
._18{width:72.719400px;}
._d{width:76.551000px;}
._1b{width:123.434400px;}
._f{width:127.311000px;}
._19{width:145.389000px;}
._17{width:152.070000px;}
._1d{width:154.194000px;}
._c{width:158.070000px;}
._10{width:160.194000px;}
._b{width:242.599200px;}
._16{width:243.727200px;}
._1e{width:291.679200px;}
._1a{width:298.807200px;}
._e{width:304.360800px;}
.fc3{color:rgb(90,87,88);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(13,50,52);}
.fs6{font-size:31.482000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{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;}
.y292{bottom:56.055150px;}
.y16{bottom:62.782200px;}
.y12c{bottom:63.646800px;}
.yc6{bottom:63.779550px;}
.y17c{bottom:65.631000px;}
.y20a{bottom:69.150600px;}
.y9d{bottom:71.642700px;}
.y199{bottom:73.033500px;}
.y291{bottom:74.055150px;}
.yc5{bottom:77.279550px;}
.y150{bottom:79.009050px;}
.y15{bottom:79.282200px;}
.y2ae{bottom:80.279550px;}
.y67{bottom:81.531600px;}
.y12b{bottom:83.146800px;}
.y17b{bottom:85.131000px;}
.y209{bottom:88.650600px;}
.y1ae{bottom:90.779550px;}
.y9c{bottom:91.142700px;}
.y290{bottom:92.055150px;}
.y14{bottom:95.782200px;}
.y252{bottom:96.685050px;}
.y2ad{bottom:96.779550px;}
.yf6{bottom:98.394750px;}
.y198{bottom:98.478900px;}
.y14f{bottom:98.509050px;}
.ye6{bottom:99.283500px;}
.y66{bottom:101.031600px;}
.y12a{bottom:102.646800px;}
.y1ad{bottom:104.279550px;}
.y208{bottom:108.150600px;}
.y28f{bottom:110.055150px;}
.y9b{bottom:110.642700px;}
.y13{bottom:112.282200px;}
.ye5{bottom:112.783500px;}
.y17a{bottom:113.134950px;}
.y251{bottom:114.685050px;}
.y227{bottom:116.654550px;}
.y2ac{bottom:117.531600px;}
.y1dd{bottom:117.779550px;}
.yc4{bottom:117.894750px;}
.y14e{bottom:118.009050px;}
.y65{bottom:120.531600px;}
.y129{bottom:122.146800px;}
.y197{bottom:123.924150px;}
.y1ac{bottom:126.283500px;}
.y207{bottom:127.650600px;}
.y28e{bottom:128.055150px;}
.y12{bottom:128.782200px;}
.y179{bottom:132.634950px;}
.y250{bottom:132.685050px;}
.y2ab{bottom:134.031600px;}
.yc3{bottom:137.394750px;}
.y14d{bottom:137.509050px;}
.y9a{bottom:138.646800px;}
.y1ab{bottom:139.783500px;}
.y64{bottom:140.031600px;}
.y11{bottom:145.282200px;}
.yf5{bottom:145.898700px;}
.y28d{bottom:146.055150px;}
.y206{bottom:147.150600px;}
.y196{bottom:149.369550px;}
.y128{bottom:150.150600px;}
.y2aa{bottom:150.531600px;}
.y24f{bottom:150.685050px;}
.y178{bottom:152.134950px;}
.y1aa{bottom:153.283500px;}
.yc2{bottom:156.894750px;}
.y14c{bottom:157.009050px;}
.y1dc{bottom:161.146800px;}
.y10{bottom:161.782200px;}
.y28c{bottom:164.055150px;}
.ye4{bottom:165.398700px;}
.y99{bottom:166.650600px;}
.y1a9{bottom:166.783500px;}
.y2a9{bottom:167.031600px;}
.y63{bottom:168.035550px;}
.y24e{bottom:168.685050px;}
.y226{bottom:168.918300px;}
.y127{bottom:169.650600px;}
.y177{bottom:171.634950px;}
.y195{bottom:174.814950px;}
.yc1{bottom:176.394750px;}
.y14b{bottom:176.509050px;}
.yf{bottom:178.282200px;}
.y1a8{bottom:180.283500px;}
.y1db{bottom:180.646800px;}
.y28b{bottom:182.055150px;}
.y2a8{bottom:183.531600px;}
.ye3{bottom:184.898700px;}
.y205{bottom:186.150600px;}
.y24d{bottom:186.685050px;}
.y2c{bottom:187.415700px;}
.y62{bottom:187.535550px;}
.y225{bottom:188.418300px;}
.y126{bottom:189.150600px;}
.y176{bottom:191.134950px;}
.ye{bottom:194.782200px;}
.y14a{bottom:196.009050px;}
.y2a7{bottom:200.031600px;}
.y28a{bottom:200.055150px;}
.y1da{bottom:200.146800px;}
.y194{bottom:200.260350px;}
.yc0{bottom:204.398700px;}
.y24c{bottom:204.685050px;}
.y204{bottom:205.650600px;}
.y2b{bottom:206.909700px;}
.y61{bottom:207.035550px;}
.y224{bottom:207.918300px;}
.y175{bottom:210.634950px;}
.y149{bottom:215.509050px;}
.y2a6{bottom:216.531600px;}
.y125{bottom:217.154550px;}
.y289{bottom:218.055150px;}
.y98{bottom:218.914350px;}
.y1a7{bottom:220.050150px;}
.y24b{bottom:222.685050px;}
.ybf{bottom:223.898700px;}
.y193{bottom:225.705750px;}
.y2a{bottom:226.403700px;}
.y60{bottom:226.535550px;}
.y223{bottom:227.418300px;}
.y1d9{bottom:228.150600px;}
.y174{bottom:230.134950px;}
.y2a5{bottom:233.031600px;}
.y203{bottom:233.654550px;}
.y148{bottom:235.009050px;}
.y288{bottom:236.055150px;}
.yd{bottom:236.794200px;}
.y97{bottom:238.414350px;}
.y1a6{bottom:239.550150px;}
.y24a{bottom:240.685050px;}
.ybe{bottom:243.398700px;}
.y29{bottom:245.897700px;}
.y222{bottom:246.918300px;}
.y1d8{bottom:247.650600px;}
.y2a4{bottom:249.531600px;}
.y192{bottom:251.151150px;}
.y202{bottom:253.154550px;}
.yc{bottom:253.294200px;}
.y287{bottom:254.055150px;}
.y147{bottom:254.509050px;}
.y5f{bottom:254.539350px;}
.y96{bottom:257.914350px;}
.y173{bottom:258.138750px;}
.y249{bottom:258.685050px;}
.y1a5{bottom:259.050150px;}
.ybd{bottom:262.898700px;}
.y28{bottom:265.391700px;}
.y2a3{bottom:266.031600px;}
.y221{bottom:266.418300px;}
.y1d7{bottom:267.150600px;}
.yb{bottom:269.794200px;}
.y286{bottom:272.055150px;}
.y11c{bottom:272.619450px;}
.y201{bottom:272.654550px;}
.y146{bottom:274.009050px;}
.y5e{bottom:274.039350px;}
.y191{bottom:276.596400px;}
.y248{bottom:276.685050px;}
.y95{bottom:277.414350px;}
.y172{bottom:277.638750px;}
.y1a4{bottom:278.550150px;}
.ybc{bottom:282.398700px;}
.y2a2{bottom:282.531600px;}
.y27{bottom:284.885700px;}
.y220{bottom:285.918300px;}
.ya{bottom:286.294200px;}
.y1d6{bottom:286.650600px;}
.y11b{bottom:289.119450px;}
.y285{bottom:290.055150px;}
.y200{bottom:292.154550px;}
.y145{bottom:293.509050px;}
.y5d{bottom:293.539350px;}
.y94{bottom:296.914350px;}
.y171{bottom:297.138750px;}
.y1a3{bottom:298.050150px;}
.y2a1{bottom:299.031600px;}
.ybb{bottom:301.898700px;}
.y190{bottom:302.041800px;}
.y9{bottom:302.794200px;}
.y19c{bottom:302.803650px;}
.y247{bottom:303.189000px;}
.y26{bottom:304.379700px;}
.y21f{bottom:305.418300px;}
.y11a{bottom:305.619450px;}
.y1d5{bottom:306.150600px;}
.y284{bottom:308.055150px;}
.y1ff{bottom:311.654550px;}
.y144{bottom:313.009050px;}
.y5c{bottom:313.039350px;}
.y2a0{bottom:315.531600px;}
.y93{bottom:316.414350px;}
.y170{bottom:316.638750px;}
.y1a2{bottom:317.550150px;}
.y19b{bottom:319.303650px;}
.yba{bottom:321.398700px;}
.y119{bottom:322.119450px;}
.y25{bottom:323.873700px;}
.y283{bottom:326.055150px;}
.y18f{bottom:327.487200px;}
.y1fe{bottom:331.154550px;}
.y29f{bottom:332.031600px;}
.y143{bottom:332.509050px;}
.y5b{bottom:332.539350px;}
.y21e{bottom:333.422400px;}
.y1d4{bottom:334.154550px;}
.y19a{bottom:335.803650px;}
.y92{bottom:335.914350px;}
.y16f{bottom:336.138750px;}
.y1a1{bottom:337.050150px;}
.y118{bottom:338.619450px;}
.ye2{bottom:340.898700px;}
.y24{bottom:343.367700px;}
.y282{bottom:344.055150px;}
.yb9{bottom:349.402650px;}
.y1fd{bottom:350.654550px;}
.y246{bottom:351.200850px;}
.y5a{bottom:352.039350px;}
.y21d{bottom:352.922400px;}
.y1d3{bottom:353.654550px;}
.y117{bottom:355.119450px;}
.y91{bottom:355.414350px;}
.y16e{bottom:355.638750px;}
.ye1{bottom:360.398700px;}
.y142{bottom:360.513000px;}
.y281{bottom:362.055150px;}
.y23{bottom:362.861700px;}
.y1a0{bottom:365.054100px;}
.y8{bottom:366.070200px;}
.y245{bottom:367.708800px;}
.yb8{bottom:368.902650px;}
.y1fc{bottom:370.154550px;}
.y59{bottom:371.539350px;}
.y116{bottom:371.619450px;}
.y21c{bottom:372.422400px;}
.y1d2{bottom:373.154550px;}
.y29e{bottom:374.043300px;}
.y90{bottom:374.914350px;}
.y16d{bottom:375.138750px;}
.ye0{bottom:379.898700px;}
.y141{bottom:380.013000px;}
.y280{bottom:380.055150px;}
.y22{bottom:382.355700px;}
.y124{bottom:383.418300px;}
.y18e{bottom:384.150600px;}
.y19f{bottom:384.554100px;}
.y7{bottom:386.818200px;}
.y115{bottom:388.119450px;}
.yb7{bottom:388.402650px;}
.y244{bottom:388.456800px;}
.y1fb{bottom:389.654550px;}
.y29d{bottom:390.543300px;}
.y58{bottom:391.039350px;}
.y21b{bottom:391.922400px;}
.y1d1{bottom:392.654550px;}
.y8f{bottom:394.414350px;}
.y16c{bottom:394.638750px;}
.y27f{bottom:398.055150px;}
.ydf{bottom:399.398700px;}
.y140{bottom:399.513000px;}
.y21{bottom:401.849700px;}
.y123{bottom:402.918300px;}
.y6{bottom:403.318200px;}
.y18d{bottom:403.650600px;}
.y19e{bottom:404.054100px;}
.y243{bottom:404.956800px;}
.y29c{bottom:407.043300px;}
.yb6{bottom:407.902650px;}
.y1fa{bottom:409.154550px;}
.y57{bottom:410.539350px;}
.y21a{bottom:411.422400px;}
.y1d0{bottom:412.154550px;}
.y8e{bottom:413.914350px;}
.y16b{bottom:414.138750px;}
.y27e{bottom:416.055150px;}
.yde{bottom:418.898700px;}
.y13f{bottom:419.013000px;}
.y5{bottom:419.818200px;}
.y20{bottom:421.343700px;}
.y122{bottom:422.418300px;}
.y18c{bottom:423.150600px;}
.y19d{bottom:423.554100px;}
.y242{bottom:425.704800px;}
.yb5{bottom:427.402650px;}
.y1f9{bottom:428.654550px;}
.y56{bottom:430.039350px;}
.y219{bottom:430.922400px;}
.y1cf{bottom:431.654550px;}
.y8d{bottom:433.414500px;}
.y16a{bottom:433.638900px;}
.y27d{bottom:434.055150px;}
.y4{bottom:436.318200px;}
.y111{bottom:437.756400px;}
.ydd{bottom:438.398700px;}
.y13e{bottom:438.513000px;}
.y1f{bottom:440.837700px;}
.y121{bottom:441.918300px;}
.y241{bottom:442.204800px;}
.yf4{bottom:442.650600px;}
.y182{bottom:446.902650px;}
.y1f8{bottom:448.154550px;}
.y29b{bottom:449.055150px;}
.y55{bottom:449.539500px;}
.y218{bottom:450.422250px;}
.yb4{bottom:451.154550px;}
.y27c{bottom:452.055150px;}
.y8c{bottom:452.914500px;}
.y3{bottom:457.066200px;}
.y169{bottom:457.390800px;}
.ydc{bottom:457.898700px;}
.y13d{bottom:458.013000px;}
.y240{bottom:458.708700px;}
.y120{bottom:461.418300px;}
.y18b{bottom:462.150600px;}
.y110{bottom:463.201800px;}
.y1c4{bottom:463.679400px;}
.y29a{bottom:465.555150px;}
.y181{bottom:466.402650px;}
.y1f7{bottom:467.654550px;}
.y1e{bottom:468.841500px;}
.y54{bottom:469.039500px;}
.y217{bottom:469.922250px;}
.y27b{bottom:470.055150px;}
.y1ce{bottom:470.654550px;}
.y8b{bottom:472.414500px;}
.y2{bottom:473.566200px;}
.y13c{bottom:477.513000px;}
.yb3{bottom:479.158500px;}
.y23f{bottom:479.456700px;}
.y1c3{bottom:480.179400px;}
.y11f{bottom:480.918300px;}
.ydb{bottom:481.650600px;}
.y299{bottom:482.055150px;}
.yf3{bottom:483.410550px;}
.y168{bottom:485.394750px;}
.y1f6{bottom:487.154550px;}
.y27a{bottom:488.055150px;}
.y53{bottom:488.539500px;}
.y10f{bottom:488.647200px;}
.y216{bottom:489.422250px;}
.y180{bottom:490.154550px;}
.y8a{bottom:491.914500px;}
.y23e{bottom:495.956700px;}
.y1c2{bottom:496.679400px;}
.y13b{bottom:497.013000px;}
.y298{bottom:498.555150px;}
.y11e{bottom:500.418300px;}
.y18a{bottom:501.150600px;}
.yf2{bottom:502.910550px;}
.y279{bottom:506.055150px;}
.y1f5{bottom:506.654550px;}
.y52{bottom:508.039500px;}
.y215{bottom:508.922250px;}
.y1cd{bottom:509.654550px;}
.y23d{bottom:512.456700px;}
.y1c1{bottom:513.179400px;}
.y10e{bottom:514.092600px;}
.y297{bottom:515.055150px;}
.y13a{bottom:516.513000px;}
.y89{bottom:519.918300px;}
.y189{bottom:520.650600px;}
.yda{bottom:522.410550px;}
.y278{bottom:524.055150px;}
.y167{bottom:526.154550px;}
.y51{bottom:527.539500px;}
.y214{bottom:528.422250px;}
.y1cc{bottom:529.154550px;}
.y1c0{bottom:529.679400px;}
.y17f{bottom:530.914500px;}
.y296{bottom:531.555150px;}
.y139{bottom:536.013000px;}
.y23c{bottom:537.460650px;}
.y88{bottom:539.418300px;}
.y10d{bottom:539.538000px;}
.y188{bottom:540.150600px;}
.yd9{bottom:541.910550px;}
.y277{bottom:542.055150px;}
.y166{bottom:545.654550px;}
.y1bf{bottom:546.179400px;}
.y213{bottom:547.922250px;}
.y295{bottom:548.055150px;}
.y1cb{bottom:548.654550px;}
.y17e{bottom:550.414500px;}
.y1f4{bottom:554.158500px;}
.y138{bottom:555.513000px;}
.y50{bottom:555.543300px;}
.y87{bottom:558.918300px;}
.y187{bottom:559.650600px;}
.y276{bottom:560.055150px;}
.yd8{bottom:561.410550px;}
.y1be{bottom:562.679400px;}
.y294{bottom:564.555150px;}
.y10c{bottom:564.983250px;}
.y165{bottom:565.154550px;}
.y212{bottom:567.422250px;}
.y1ca{bottom:568.154550px;}
.y17d{bottom:569.914500px;}
.y1f3{bottom:573.658500px;}
.y137{bottom:575.013000px;}
.y4f{bottom:575.043300px;}
.y275{bottom:578.055150px;}
.y86{bottom:578.418300px;}
.y186{bottom:579.150600px;}
.y1bd{bottom:579.179400px;}
.yd7{bottom:580.910550px;}
.y293{bottom:581.055150px;}
.y164{bottom:584.654550px;}
.y211{bottom:586.922250px;}
.yf1{bottom:589.414500px;}
.y23b{bottom:589.724550px;}
.y10b{bottom:590.428650px;}
.y1f2{bottom:593.158500px;}
.y136{bottom:594.513000px;}
.y4e{bottom:594.543300px;}
.y1bc{bottom:595.679400px;}
.y274{bottom:596.055150px;}
.y1c9{bottom:596.158500px;}
.y85{bottom:597.918300px;}
.y185{bottom:598.650600px;}
.yd6{bottom:600.410550px;}
.y163{bottom:604.154550px;}
.yf0{bottom:608.914500px;}
.y1bb{bottom:612.179400px;}
.y1f1{bottom:612.658500px;}
.y135{bottom:614.013000px;}
.y4d{bottom:614.043300px;}
.y273{bottom:614.055150px;}
.y210{bottom:614.926200px;}
.y10a{bottom:615.874050px;}
.yb2{bottom:617.418300px;}
.y23a{bottom:617.728350px;}
.y184{bottom:618.150600px;}
.y162{bottom:623.654550px;}
.y84{bottom:625.922250px;}
.yd5{bottom:628.414500px;}
.y1ba{bottom:628.679400px;}
.y272{bottom:632.055150px;}
.y1f0{bottom:632.158500px;}
.y134{bottom:633.513000px;}
.y4c{bottom:633.543300px;}
.y20f{bottom:634.426200px;}
.y11d{bottom:636.918300px;}
.y109{bottom:641.319450px;}
.y161{bottom:643.154550px;}
.y1b9{bottom:645.179400px;}
.y83{bottom:645.422250px;}
.y183{bottom:646.154550px;}
.yd4{bottom:647.914500px;}
.y271{bottom:650.055150px;}
.y1ef{bottom:651.658500px;}
.y133{bottom:653.013000px;}
.y20e{bottom:653.926200px;}
.y1c8{bottom:656.418300px;}
.y4b{bottom:661.547250px;}
.y1b8{bottom:661.679400px;}
.y82{bottom:664.922250px;}
.y108{bottom:666.764850px;}
.yd3{bottom:667.414500px;}
.y270{bottom:668.055150px;}
.y239{bottom:670.022250px;}
.y160{bottom:671.158500px;}
.y132{bottom:672.513000px;}
.y114{bottom:673.216500px;}
.y20d{bottom:673.426200px;}
.y1c7{bottom:675.918300px;}
.y1b7{bottom:678.179400px;}
.y4a{bottom:681.047250px;}
.y81{bottom:684.422250px;}
.y26f{bottom:686.055150px;}
.yd2{bottom:686.914500px;}
.y238{bottom:689.516250px;}
.y113{bottom:689.716500px;}
.y1ee{bottom:690.658500px;}
.y107{bottom:692.210250px;}
.y20c{bottom:692.926200px;}
.y1c6{bottom:695.418300px;}
.y15f{bottom:699.162450px;}
.y131{bottom:700.516950px;}
.y49{bottom:700.547250px;}
.y80{bottom:703.922250px;}
.y26e{bottom:704.055150px;}
.y112{bottom:706.216500px;}
.yd1{bottom:706.414500px;}
.y237{bottom:709.010250px;}
.y1ed{bottom:710.158500px;}
.y20b{bottom:712.426200px;}
.y1c5{bottom:714.918300px;}
.y130{bottom:720.016950px;}
.y48{bottom:720.047250px;}
.y26d{bottom:722.055150px;}
.yb1{bottom:723.422250px;}
.yd0{bottom:725.914500px;}
.y2d{bottom:728.232150px;}
.y236{bottom:728.504250px;}
.y1ec{bottom:729.658500px;}
.y7f{bottom:731.926200px;}
.y12f{bottom:739.516950px;}
.y47{bottom:739.547250px;}
.y26c{bottom:740.055150px;}
.yb0{bottom:742.922250px;}
.ycf{bottom:745.414500px;}
.y235{bottom:747.998250px;}
.y1eb{bottom:749.158500px;}
.y106{bottom:749.666400px;}
.y7e{bottom:751.426200px;}
.y1d{bottom:753.236100px;}
.y26b{bottom:758.055150px;}
.y12e{bottom:759.016950px;}
.y46{bottom:759.047250px;}
.yaf{bottom:762.422250px;}
.yce{bottom:764.914500px;}
.y234{bottom:767.492250px;}
.y1ea{bottom:768.658500px;}
.y105{bottom:769.166400px;}
.y7d{bottom:770.926200px;}
.yef{bottom:773.418300px;}
.y26a{bottom:776.055150px;}
.y12d{bottom:778.517100px;}
.y45{bottom:778.547250px;}
.y1c{bottom:779.740050px;}
.yae{bottom:781.922250px;}
.ycd{bottom:784.414500px;}
.y1e9{bottom:788.158500px;}
.y104{bottom:788.666400px;}
.y7c{bottom:790.426200px;}
.yee{bottom:792.918300px;}
.y269{bottom:794.055150px;}
.y233{bottom:795.496050px;}
.y44{bottom:798.047250px;}
.yad{bottom:801.422250px;}
.ycc{bottom:803.914500px;}
.y1b{bottom:806.244000px;}
.y103{bottom:808.166400px;}
.y7b{bottom:809.926200px;}
.y268{bottom:812.055150px;}
.yed{bottom:812.418300px;}
.y1e8{bottom:816.162450px;}
.y43{bottom:817.547400px;}
.y15e{bottom:818.642400px;}
.yac{bottom:820.922400px;}
.ycb{bottom:823.414350px;}
.y102{bottom:827.666400px;}
.y7a{bottom:829.426200px;}
.y267{bottom:830.055150px;}
.y1a{bottom:832.747950px;}
.y15d{bottom:835.142400px;}
.y1e7{bottom:835.662450px;}
.y42{bottom:837.047400px;}
.yab{bottom:840.422400px;}
.yca{bottom:842.914350px;}
.y101{bottom:847.166400px;}
.y232{bottom:847.771950px;}
.y266{bottom:848.055150px;}
.y79{bottom:848.926200px;}
.y15c{bottom:851.642400px;}
.y1e6{bottom:855.162450px;}
.y41{bottom:856.547400px;}
.yaa{bottom:859.922400px;}
.yc9{bottom:862.414350px;}
.y265{bottom:866.055150px;}
.y100{bottom:866.666400px;}
.y231{bottom:867.265950px;}
.y15b{bottom:868.142400px;}
.y78{bottom:868.426200px;}
.y1e5{bottom:874.662450px;}
.y40{bottom:876.047400px;}
.y1b6{bottom:876.648900px;}
.ya9{bottom:879.422400px;}
.y264{bottom:884.055150px;}
.y15a{bottom:884.642400px;}
.yc8{bottom:886.166400px;}
.y230{bottom:886.759950px;}
.y77{bottom:887.926200px;}
.y1b5{bottom:893.148900px;}
.y1e4{bottom:894.162450px;}
.y3f{bottom:895.547400px;}
.ya8{bottom:898.922400px;}
.y159{bottom:901.142400px;}
.y263{bottom:902.055150px;}
.yff{bottom:905.666400px;}
.y76{bottom:907.426200px;}
.y1b4{bottom:909.648900px;}
.y1e3{bottom:913.662450px;}
.y1{bottom:914.173200px;}
.y19{bottom:914.200350px;}
.y22f{bottom:914.763750px;}
.y158{bottom:917.642400px;}
.ya7{bottom:918.422400px;}
.y262{bottom:920.055150px;}
.y3e{bottom:923.551200px;}
.yfe{bottom:925.166400px;}
.y1b3{bottom:926.148900px;}
.yc7{bottom:926.926200px;}
.y1e2{bottom:933.162450px;}
.y157{bottom:934.142400px;}
.y75{bottom:935.430150px;}
.yec{bottom:937.922400px;}
.y261{bottom:938.055150px;}
.y1b2{bottom:942.648900px;}
.y3d{bottom:943.051200px;}
.yfd{bottom:944.666400px;}
.ya6{bottom:946.426200px;}
.y156{bottom:950.642400px;}
.y1e1{bottom:952.662450px;}
.y74{bottom:954.930150px;}
.y260{bottom:956.055150px;}
.y18{bottom:956.186850px;}
.yeb{bottom:957.422400px;}
.y1b1{bottom:959.148900px;}
.y3c{bottom:962.551200px;}
.yfc{bottom:964.166400px;}
.ya5{bottom:965.926200px;}
.y22e{bottom:967.045650px;}
.y155{bottom:967.142400px;}
.y1e0{bottom:972.162450px;}
.y25f{bottom:974.055150px;}
.y73{bottom:974.430150px;}
.y1b0{bottom:975.648900px;}
.yea{bottom:976.922400px;}
.y3b{bottom:982.051200px;}
.y154{bottom:983.642400px;}
.yfb{bottom:983.666400px;}
.ya4{bottom:985.426200px;}
.y22d{bottom:986.539650px;}
.y1df{bottom:991.662450px;}
.y25e{bottom:992.055150px;}
.y1af{bottom:992.148900px;}
.y72{bottom:993.930150px;}
.y17{bottom:998.173350px;}
.y153{bottom:1000.142400px;}
.y3a{bottom:1001.551200px;}
.yfa{bottom:1003.166400px;}
.ya3{bottom:1004.926200px;}
.y22c{bottom:1006.033650px;}
.y25d{bottom:1010.055150px;}
.y71{bottom:1013.430150px;}
.y152{bottom:1016.642400px;}
.y1de{bottom:1019.666400px;}
.y39{bottom:1021.051200px;}
.yf9{bottom:1022.666400px;}
.ya2{bottom:1024.426200px;}
.y22b{bottom:1025.527650px;}
.y25c{bottom:1028.055150px;}
.y70{bottom:1032.930150px;}
.y151{bottom:1033.142400px;}
.y38{bottom:1040.551200px;}
.yf8{bottom:1042.166400px;}
.ya1{bottom:1043.926200px;}
.y25b{bottom:1046.055150px;}
.y6f{bottom:1052.430150px;}
.y22a{bottom:1053.531600px;}
.y37{bottom:1060.051200px;}
.ya0{bottom:1063.426200px;}
.y25a{bottom:1064.055150px;}
.yf7{bottom:1070.170350px;}
.y6e{bottom:1071.930150px;}
.y36{bottom:1079.551200px;}
.y259{bottom:1082.055150px;}
.y9f{bottom:1082.926200px;}
.y6d{bottom:1091.430150px;}
.y35{bottom:1099.051200px;}
.y258{bottom:1100.055150px;}
.y229{bottom:1101.553200px;}
.y9e{bottom:1102.426200px;}
.y6c{bottom:1110.930150px;}
.y257{bottom:1118.055150px;}
.y34{bottom:1118.551200px;}
.ye9{bottom:1121.926200px;}
.y228{bottom:1125.299700px;}
.y6b{bottom:1130.430150px;}
.y256{bottom:1136.055150px;}
.y33{bottom:1138.051200px;}
.y6a{bottom:1149.930150px;}
.y255{bottom:1154.055150px;}
.y32{bottom:1157.551200px;}
.ye8{bottom:1164.174150px;}
.y30{bottom:1164.180150px;}
.y69{bottom:1169.430150px;}
.y254{bottom:1172.055150px;}
.ye7{bottom:1177.677150px;}
.y2f{bottom:1177.680150px;}
.y31{bottom:1185.555150px;}
.y68{bottom:1188.930150px;}
.y253{bottom:1190.055150px;}
.y2e{bottom:1191.180150px;}
.h9{height:32.340000px;}
.hc{height:32.844000px;}
.h8{height:33.012000px;}
.he{height:35.190000px;}
.hd{height:35.370000px;}
.h4{height:37.536000px;}
.h3{height:37.728000px;}
.h10{height:38.860135px;}
.h7{height:42.228000px;}
.hf{height:42.444000px;}
.hb{height:42.600924px;}
.ha{height:46.200000px;}
.h2{height:47.160000px;}
.h6{height:56.592000px;}
.h5{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;}
.x8{left:68.032050px;}
.x6{left:73.271700px;}
.x2{left:89.291250px;}
.x5{left:200.759100px;}
.x1{left:663.307050px;}
.xa{left:733.374150px;}
.x9{left:785.777100px;}
.x7{left:815.226600px;}
.x3{left:822.640650px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls11{letter-spacing:-3.552000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000117pt;}
.lsb{letter-spacing:0.601067pt;}
.lsc{letter-spacing:1.120000pt;}
.lse{letter-spacing:1.200000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.434133pt;}
.lsf{letter-spacing:1.496000pt;}
.ls2{letter-spacing:1.600000pt;}
.ls8{letter-spacing:1.677867pt;}
.ls7{letter-spacing:1.678400pt;}
.ls9{letter-spacing:1.732800pt;}
.ls3{letter-spacing:1.920000pt;}
.ls5{letter-spacing:2.240000pt;}
.ls0{letter-spacing:4.000000pt;}
.ls6{letter-spacing:4.553600pt;}
.lsa{letter-spacing:5.637867pt;}
.ls13{letter-spacing:6.165867pt;}
.ls10{letter-spacing:441.308800pt;}
.wsb8{word-spacing:-48.000000pt;}
.ws2{word-spacing:-18.176000pt;}
.ws65{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.117333pt;}
.ws12{word-spacing:-12.000000pt;}
.ws42{word-spacing:-11.760000pt;}
.ws118{word-spacing:-10.837333pt;}
.ws1{word-spacing:-10.666667pt;}
.wsf8{word-spacing:-10.453333pt;}
.ws11{word-spacing:-9.482667pt;}
.wseb{word-spacing:-8.448000pt;}
.ws66{word-spacing:-6.996000pt;}
.ws6{word-spacing:-4.704000pt;}
.wsd8{word-spacing:-4.416000pt;}
.wse3{word-spacing:-4.080000pt;}
.wsc8{word-spacing:-3.840000pt;}
.wsbf{word-spacing:-3.600000pt;}
.ws4f{word-spacing:-3.504000pt;}
.wsdf{word-spacing:-3.408000pt;}
.ws9c{word-spacing:-3.312000pt;}
.wsfe{word-spacing:-3.264000pt;}
.ws1c{word-spacing:-3.216000pt;}
.wsf9{word-spacing:-3.072000pt;}
.ws100{word-spacing:-2.784000pt;}
.ws108{word-spacing:-2.736000pt;}
.ws1e{word-spacing:-2.688000pt;}
.ws97{word-spacing:-2.640000pt;}
.wsd4{word-spacing:-2.592000pt;}
.ws105{word-spacing:-2.544000pt;}
.ws107{word-spacing:-2.496000pt;}
.ws60{word-spacing:-2.352000pt;}
.ws98{word-spacing:-2.304000pt;}
.ws52{word-spacing:-2.256000pt;}
.ws68{word-spacing:-2.208000pt;}
.wsfb{word-spacing:-2.160000pt;}
.ws15{word-spacing:-2.112000pt;}
.ws90{word-spacing:-2.064000pt;}
.ws3f{word-spacing:-2.016000pt;}
.wsf1{word-spacing:-1.920000pt;}
.ws9a{word-spacing:-1.872000pt;}
.ws3a{word-spacing:-1.824000pt;}
.ws41{word-spacing:-1.776000pt;}
.ws117{word-spacing:-1.728000pt;}
.wsc2{word-spacing:-1.680000pt;}
.ws116{word-spacing:-1.632000pt;}
.wsc7{word-spacing:-1.584000pt;}
.ws1b{word-spacing:-1.536000pt;}
.ws75{word-spacing:-1.488000pt;}
.wsae{word-spacing:-1.440000pt;}
.ws13{word-spacing:-1.392000pt;}
.wsb7{word-spacing:-1.344000pt;}
.ws3b{word-spacing:-1.296000pt;}
.wsfc{word-spacing:-1.248000pt;}
.wsc3{word-spacing:-1.200000pt;}
.wsb6{word-spacing:-1.152000pt;}
.ws99{word-spacing:-1.120000pt;}
.ws67{word-spacing:-1.104000pt;}
.ws62{word-spacing:-1.056000pt;}
.wsc1{word-spacing:-1.008000pt;}
.ws9e{word-spacing:-0.960000pt;}
.ws73{word-spacing:-0.912000pt;}
.ws26{word-spacing:-0.864000pt;}
.ws51{word-spacing:-0.816000pt;}
.wsa2{word-spacing:-0.768000pt;}
.wsaa{word-spacing:-0.720000pt;}
.ws74{word-spacing:-0.672000pt;}
.ws7a{word-spacing:-0.624000pt;}
.ws4{word-spacing:-0.613333pt;}
.wsa8{word-spacing:-0.576000pt;}
.wsff{word-spacing:-0.528000pt;}
.ws111{word-spacing:-0.432000pt;}
.ws9d{word-spacing:-0.384000pt;}
.ws92{word-spacing:-0.336000pt;}
.ws29{word-spacing:-0.288000pt;}
.wsb0{word-spacing:-0.240000pt;}
.wsfd{word-spacing:-0.192000pt;}
.ws2e{word-spacing:-0.144000pt;}
.ws82{word-spacing:-0.096000pt;}
.ws7c{word-spacing:-0.048000pt;}
.wsf6{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.048000pt;}
.ws27{word-spacing:0.096000pt;}
.ws30{word-spacing:0.192000pt;}
.ws4e{word-spacing:0.240000pt;}
.ws76{word-spacing:0.288000pt;}
.ws8b{word-spacing:0.336000pt;}
.ws9{word-spacing:0.384000pt;}
.ws87{word-spacing:0.432000pt;}
.ws5f{word-spacing:0.480000pt;}
.ws61{word-spacing:0.528000pt;}
.wsda{word-spacing:0.576000pt;}
.ws69{word-spacing:0.624000pt;}
.wsd0{word-spacing:0.720000pt;}
.ws71{word-spacing:0.768000pt;}
.wsb2{word-spacing:0.816000pt;}
.wsb3{word-spacing:0.864000pt;}
.wsa0{word-spacing:0.912000pt;}
.wsf2{word-spacing:0.960000pt;}
.wsb9{word-spacing:1.008000pt;}
.ws86{word-spacing:1.056000pt;}
.wsba{word-spacing:1.152000pt;}
.ws25{word-spacing:1.200000pt;}
.wsb5{word-spacing:1.248000pt;}
.ws70{word-spacing:1.296000pt;}
.ws1a{word-spacing:1.344000pt;}
.ws2c{word-spacing:1.392000pt;}
.ws28{word-spacing:1.440000pt;}
.ws94{word-spacing:1.488000pt;}
.wsa9{word-spacing:1.536000pt;}
.ws10f{word-spacing:1.584000pt;}
.ws17{word-spacing:1.632000pt;}
.ws40{word-spacing:1.680000pt;}
.ws45{word-spacing:1.728000pt;}
.wsa3{word-spacing:1.776000pt;}
.wsad{word-spacing:1.824000pt;}
.ws19{word-spacing:1.872000pt;}
.ws38{word-spacing:1.920000pt;}
.ws37{word-spacing:1.968000pt;}
.wsc5{word-spacing:2.016000pt;}
.ws95{word-spacing:2.064000pt;}
.ws2b{word-spacing:2.112000pt;}
.wsac{word-spacing:2.160000pt;}
.wsb1{word-spacing:2.208000pt;}
.ws2d{word-spacing:2.304000pt;}
.wse6{word-spacing:2.352000pt;}
.ws106{word-spacing:2.400000pt;}
.ws18{word-spacing:2.448000pt;}
.ws9b{word-spacing:2.496000pt;}
.wsb4{word-spacing:2.544000pt;}
.wsca{word-spacing:2.592000pt;}
.ws56{word-spacing:2.640000pt;}
.ws7e{word-spacing:2.688000pt;}
.wsce{word-spacing:2.736000pt;}
.ws2f{word-spacing:2.784000pt;}
.wsf0{word-spacing:2.832000pt;}
.wsfa{word-spacing:2.880000pt;}
.ws80{word-spacing:2.928000pt;}
.ws6c{word-spacing:2.976000pt;}
.ws49{word-spacing:3.024000pt;}
.wsde{word-spacing:3.072000pt;}
.ws46{word-spacing:3.120000pt;}
.ws8d{word-spacing:3.168000pt;}
.ws8c{word-spacing:3.216000pt;}
.wse8{word-spacing:3.264000pt;}
.ws31{word-spacing:3.312000pt;}
.ws85{word-spacing:3.360000pt;}
.wsf3{word-spacing:3.408000pt;}
.ws23{word-spacing:3.456000pt;}
.ws83{word-spacing:3.504000pt;}
.ws109{word-spacing:3.552000pt;}
.ws78{word-spacing:3.600000pt;}
.ws3e{word-spacing:3.648000pt;}
.wsc0{word-spacing:3.696000pt;}
.ws39{word-spacing:3.744000pt;}
.wsd6{word-spacing:3.792000pt;}
.wsa6{word-spacing:3.840000pt;}
.wsd2{word-spacing:3.888000pt;}
.wsab{word-spacing:3.936000pt;}
.ws6f{word-spacing:3.984000pt;}
.ws5b{word-spacing:4.032000pt;}
.wsed{word-spacing:4.080000pt;}
.ws43{word-spacing:4.128000pt;}
.ws4b{word-spacing:4.176000pt;}
.ws14{word-spacing:4.224000pt;}
.ws72{word-spacing:4.272000pt;}
.ws54{word-spacing:4.320000pt;}
.wse4{word-spacing:4.368000pt;}
.wsc4{word-spacing:4.416000pt;}
.wse2{word-spacing:4.464000pt;}
.ws2a{word-spacing:4.512000pt;}
.ws20{word-spacing:4.560000pt;}
.ws21{word-spacing:4.608000pt;}
.ws36{word-spacing:4.704000pt;}
.ws1d{word-spacing:4.752000pt;}
.ws77{word-spacing:4.848000pt;}
.ws16{word-spacing:4.896000pt;}
.wsd7{word-spacing:4.944000pt;}
.wse5{word-spacing:4.992000pt;}
.ws53{word-spacing:5.040000pt;}
.ws24{word-spacing:5.088000pt;}
.wsf7{word-spacing:5.136000pt;}
.wsee{word-spacing:5.184000pt;}
.ws4c{word-spacing:5.232000pt;}
.ws96{word-spacing:5.280000pt;}
.ws113{word-spacing:5.424000pt;}
.ws9f{word-spacing:5.472000pt;}
.ws6a{word-spacing:5.520000pt;}
.ws7f{word-spacing:5.568000pt;}
.wsd1{word-spacing:5.616000pt;}
.ws50{word-spacing:5.664000pt;}
.ws6e{word-spacing:5.712000pt;}
.ws7{word-spacing:5.760000pt;}
.wsdc{word-spacing:5.808000pt;}
.ws8{word-spacing:5.856000pt;}
.ws4d{word-spacing:5.952000pt;}
.ws32{word-spacing:6.000000pt;}
.ws10d{word-spacing:6.048000pt;}
.wsc9{word-spacing:6.096000pt;}
.ws10e{word-spacing:6.144000pt;}
.ws64{word-spacing:6.240000pt;}
.wsbe{word-spacing:6.288000pt;}
.ws91{word-spacing:6.336000pt;}
.ws79{word-spacing:6.384000pt;}
.wsc{word-spacing:6.432000pt;}
.ws55{word-spacing:6.480000pt;}
.wse7{word-spacing:6.624000pt;}
.wsa7{word-spacing:6.672000pt;}
.ws1f{word-spacing:6.768000pt;}
.ws34{word-spacing:6.816000pt;}
.ws5d{word-spacing:6.960000pt;}
.wscb{word-spacing:7.056000pt;}
.ws48{word-spacing:7.104000pt;}
.wsdd{word-spacing:7.200000pt;}
.wsf{word-spacing:7.344000pt;}
.wsdb{word-spacing:7.536000pt;}
.ws8e{word-spacing:7.584000pt;}
.wsbd{word-spacing:7.632000pt;}
.ws10c{word-spacing:7.824000pt;}
.wscc{word-spacing:7.872000pt;}
.ws7b{word-spacing:7.920000pt;}
.ws57{word-spacing:8.016000pt;}
.wsea{word-spacing:8.064000pt;}
.ws93{word-spacing:8.256000pt;}
.ws110{word-spacing:8.304000pt;}
.wsa4{word-spacing:8.352000pt;}
.ws59{word-spacing:8.400000pt;}
.ws6b{word-spacing:8.448000pt;}
.ws104{word-spacing:8.496000pt;}
.ws10{word-spacing:8.544000pt;}
.ws3d{word-spacing:8.592000pt;}
.ws58{word-spacing:8.688000pt;}
.ws8f{word-spacing:8.832000pt;}
.ws33{word-spacing:8.880000pt;}
.ws5{word-spacing:9.072000pt;}
.wsa1{word-spacing:9.168000pt;}
.wscf{word-spacing:9.216000pt;}
.wsd9{word-spacing:9.264000pt;}
.ws81{word-spacing:9.408000pt;}
.ws114{word-spacing:9.456000pt;}
.ws10a{word-spacing:9.504000pt;}
.wsf4{word-spacing:9.600000pt;}
.ws101{word-spacing:9.696000pt;}
.wsa5{word-spacing:9.792000pt;}
.wsbb{word-spacing:9.888000pt;}
.ws7d{word-spacing:9.936000pt;}
.ws63{word-spacing:10.080000pt;}
.ws84{word-spacing:10.176000pt;}
.ws6d{word-spacing:10.224000pt;}
.ws88{word-spacing:10.272000pt;}
.wsd5{word-spacing:10.704000pt;}
.ws47{word-spacing:10.752000pt;}
.ws35{word-spacing:10.800000pt;}
.wse1{word-spacing:10.848000pt;}
.wse9{word-spacing:10.944000pt;}
.ws89{word-spacing:11.040000pt;}
.wse0{word-spacing:11.088000pt;}
.ws5e{word-spacing:11.136000pt;}
.ws3c{word-spacing:11.280000pt;}
.ws102{word-spacing:11.664000pt;}
.ws10b{word-spacing:11.760000pt;}
.wsef{word-spacing:12.240000pt;}
.wsa{word-spacing:12.336000pt;}
.wscd{word-spacing:13.008000pt;}
.wsf5{word-spacing:13.152000pt;}
.ws112{word-spacing:13.392000pt;}
.ws103{word-spacing:13.440000pt;}
.wsb{word-spacing:13.680000pt;}
.ws4a{word-spacing:13.872000pt;}
.ws5a{word-spacing:14.016000pt;}
.wsd3{word-spacing:14.448000pt;}
.wsbc{word-spacing:14.736000pt;}
.ws8a{word-spacing:15.696000pt;}
.ws115{word-spacing:15.888000pt;}
.ws22{word-spacing:16.560000pt;}
.ws5c{word-spacing:16.944000pt;}
.wsd{word-spacing:17.328000pt;}
.ws44{word-spacing:17.952000pt;}
.wse{word-spacing:19.968000pt;}
.wsec{word-spacing:56.981333pt;}
.wsaf{word-spacing:62.314667pt;}
._a{margin-left:-589.699733pt;}
._3{margin-left:-588.546133pt;}
._13{margin-left:-586.858667pt;}
._14{margin-left:-585.746667pt;}
._12{margin-left:-584.211733pt;}
._21{margin-left:-5.333333pt;}
._6{margin-left:-4.268800pt;}
._1{margin-left:-2.517333pt;}
._0{margin-left:-1.280000pt;}
._4{width:0.896000pt;}
._2{width:1.797333pt;}
._9{width:2.790933pt;}
._5{width:4.458133pt;}
._7{width:5.445333pt;}
._11{width:6.707733pt;}
._1f{width:7.957867pt;}
._15{width:13.458133pt;}
._20{width:47.661333pt;}
._8{width:59.050133pt;}
._1c{width:62.752000pt;}
._18{width:64.639467pt;}
._d{width:68.045333pt;}
._1b{width:109.719467pt;}
._f{width:113.165333pt;}
._19{width:129.234667pt;}
._17{width:135.173333pt;}
._1d{width:137.061333pt;}
._c{width:140.506667pt;}
._10{width:142.394667pt;}
._b{width:215.643733pt;}
._16{width:216.646400pt;}
._1e{width:259.270400pt;}
._1a{width:265.606400pt;}
._e{width:270.542933pt;}
.fs6{font-size:27.984000pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{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;}
.y292{bottom:49.826800pt;}
.y16{bottom:55.806400pt;}
.y12c{bottom:56.574933pt;}
.yc6{bottom:56.692933pt;}
.y17c{bottom:58.338667pt;}
.y20a{bottom:61.467200pt;}
.y9d{bottom:63.682400pt;}
.y199{bottom:64.918667pt;}
.y291{bottom:65.826800pt;}
.yc5{bottom:68.692933pt;}
.y150{bottom:70.230267pt;}
.y15{bottom:70.473067pt;}
.y2ae{bottom:71.359600pt;}
.y67{bottom:72.472533pt;}
.y12b{bottom:73.908267pt;}
.y17b{bottom:75.672000pt;}
.y209{bottom:78.800533pt;}
.y1ae{bottom:80.692933pt;}
.y9c{bottom:81.015733pt;}
.y290{bottom:81.826800pt;}
.y14{bottom:85.139733pt;}
.y252{bottom:85.942267pt;}
.y2ad{bottom:86.026267pt;}
.yf6{bottom:87.462000pt;}
.y198{bottom:87.536800pt;}
.y14f{bottom:87.563600pt;}
.ye6{bottom:88.252000pt;}
.y66{bottom:89.805867pt;}
.y12a{bottom:91.241600pt;}
.y1ad{bottom:92.692933pt;}
.y208{bottom:96.133867pt;}
.y28f{bottom:97.826800pt;}
.y9b{bottom:98.349067pt;}
.y13{bottom:99.806400pt;}
.ye5{bottom:100.252000pt;}
.y17a{bottom:100.564400pt;}
.y251{bottom:101.942267pt;}
.y227{bottom:103.692933pt;}
.y2ac{bottom:104.472533pt;}
.y1dd{bottom:104.692933pt;}
.yc4{bottom:104.795333pt;}
.y14e{bottom:104.896933pt;}
.y65{bottom:107.139200pt;}
.y129{bottom:108.574933pt;}
.y197{bottom:110.154800pt;}
.y1ac{bottom:112.252000pt;}
.y207{bottom:113.467200pt;}
.y28e{bottom:113.826800pt;}
.y12{bottom:114.473067pt;}
.y179{bottom:117.897733pt;}
.y250{bottom:117.942267pt;}
.y2ab{bottom:119.139200pt;}
.yc3{bottom:122.128667pt;}
.y14d{bottom:122.230267pt;}
.y9a{bottom:123.241600pt;}
.y1ab{bottom:124.252000pt;}
.y64{bottom:124.472533pt;}
.y11{bottom:129.139733pt;}
.yf5{bottom:129.687733pt;}
.y28d{bottom:129.826800pt;}
.y206{bottom:130.800533pt;}
.y196{bottom:132.772933pt;}
.y128{bottom:133.467200pt;}
.y2aa{bottom:133.805867pt;}
.y24f{bottom:133.942267pt;}
.y178{bottom:135.231067pt;}
.y1aa{bottom:136.252000pt;}
.yc2{bottom:139.462000pt;}
.y14c{bottom:139.563600pt;}
.y1dc{bottom:143.241600pt;}
.y10{bottom:143.806400pt;}
.y28c{bottom:145.826800pt;}
.ye4{bottom:147.021067pt;}
.y99{bottom:148.133867pt;}
.y1a9{bottom:148.252000pt;}
.y2a9{bottom:148.472533pt;}
.y63{bottom:149.364933pt;}
.y24e{bottom:149.942267pt;}
.y226{bottom:150.149600pt;}
.y127{bottom:150.800533pt;}
.y177{bottom:152.564400pt;}
.y195{bottom:155.391067pt;}
.yc1{bottom:156.795333pt;}
.y14b{bottom:156.896933pt;}
.yf{bottom:158.473067pt;}
.y1a8{bottom:160.252000pt;}
.y1db{bottom:160.574933pt;}
.y28b{bottom:161.826800pt;}
.y2a8{bottom:163.139200pt;}
.ye3{bottom:164.354400pt;}
.y205{bottom:165.467200pt;}
.y24d{bottom:165.942267pt;}
.y2c{bottom:166.591733pt;}
.y62{bottom:166.698267pt;}
.y225{bottom:167.482933pt;}
.y126{bottom:168.133867pt;}
.y176{bottom:169.897733pt;}
.ye{bottom:173.139733pt;}
.y14a{bottom:174.230267pt;}
.y2a7{bottom:177.805867pt;}
.y28a{bottom:177.826800pt;}
.y1da{bottom:177.908267pt;}
.y194{bottom:178.009200pt;}
.yc0{bottom:181.687733pt;}
.y24c{bottom:181.942267pt;}
.y204{bottom:182.800533pt;}
.y2b{bottom:183.919733pt;}
.y61{bottom:184.031600pt;}
.y224{bottom:184.816267pt;}
.y175{bottom:187.231067pt;}
.y149{bottom:191.563600pt;}
.y2a6{bottom:192.472533pt;}
.y125{bottom:193.026267pt;}
.y289{bottom:193.826800pt;}
.y98{bottom:194.590533pt;}
.y1a7{bottom:195.600133pt;}
.y24b{bottom:197.942267pt;}
.ybf{bottom:199.021067pt;}
.y193{bottom:200.627333pt;}
.y2a{bottom:201.247733pt;}
.y60{bottom:201.364933pt;}
.y223{bottom:202.149600pt;}
.y1d9{bottom:202.800533pt;}
.y174{bottom:204.564400pt;}
.y2a5{bottom:207.139200pt;}
.y203{bottom:207.692933pt;}
.y148{bottom:208.896933pt;}
.y288{bottom:209.826800pt;}
.yd{bottom:210.483733pt;}
.y97{bottom:211.923867pt;}
.y1a6{bottom:212.933467pt;}
.y24a{bottom:213.942267pt;}
.ybe{bottom:216.354400pt;}
.y29{bottom:218.575733pt;}
.y222{bottom:219.482933pt;}
.y1d8{bottom:220.133867pt;}
.y2a4{bottom:221.805867pt;}
.y192{bottom:223.245467pt;}
.y202{bottom:225.026267pt;}
.yc{bottom:225.150400pt;}
.y287{bottom:225.826800pt;}
.y147{bottom:226.230267pt;}
.y5f{bottom:226.257200pt;}
.y96{bottom:229.257200pt;}
.y173{bottom:229.456667pt;}
.y249{bottom:229.942267pt;}
.y1a5{bottom:230.266800pt;}
.ybd{bottom:233.687733pt;}
.y28{bottom:235.903733pt;}
.y2a3{bottom:236.472533pt;}
.y221{bottom:236.816267pt;}
.y1d7{bottom:237.467200pt;}
.yb{bottom:239.817067pt;}
.y286{bottom:241.826800pt;}
.y11c{bottom:242.328400pt;}
.y201{bottom:242.359600pt;}
.y146{bottom:243.563600pt;}
.y5e{bottom:243.590533pt;}
.y191{bottom:245.863467pt;}
.y248{bottom:245.942267pt;}
.y95{bottom:246.590533pt;}
.y172{bottom:246.790000pt;}
.y1a4{bottom:247.600133pt;}
.ybc{bottom:251.021067pt;}
.y2a2{bottom:251.139200pt;}
.y27{bottom:253.231733pt;}
.y220{bottom:254.149600pt;}
.ya{bottom:254.483733pt;}
.y1d6{bottom:254.800533pt;}
.y11b{bottom:256.995067pt;}
.y285{bottom:257.826800pt;}
.y200{bottom:259.692933pt;}
.y145{bottom:260.896933pt;}
.y5d{bottom:260.923867pt;}
.y94{bottom:263.923867pt;}
.y171{bottom:264.123333pt;}
.y1a3{bottom:264.933467pt;}
.y2a1{bottom:265.805867pt;}
.ybb{bottom:268.354400pt;}
.y190{bottom:268.481600pt;}
.y9{bottom:269.150400pt;}
.y19c{bottom:269.158800pt;}
.y247{bottom:269.501333pt;}
.y26{bottom:270.559733pt;}
.y21f{bottom:271.482933pt;}
.y11a{bottom:271.661733pt;}
.y1d5{bottom:272.133867pt;}
.y284{bottom:273.826800pt;}
.y1ff{bottom:277.026267pt;}
.y144{bottom:278.230267pt;}
.y5c{bottom:278.257200pt;}
.y2a0{bottom:280.472533pt;}
.y93{bottom:281.257200pt;}
.y170{bottom:281.456667pt;}
.y1a2{bottom:282.266800pt;}
.y19b{bottom:283.825467pt;}
.yba{bottom:285.687733pt;}
.y119{bottom:286.328400pt;}
.y25{bottom:287.887733pt;}
.y283{bottom:289.826800pt;}
.y18f{bottom:291.099733pt;}
.y1fe{bottom:294.359600pt;}
.y29f{bottom:295.139200pt;}
.y143{bottom:295.563600pt;}
.y5b{bottom:295.590533pt;}
.y21e{bottom:296.375467pt;}
.y1d4{bottom:297.026267pt;}
.y19a{bottom:298.492133pt;}
.y92{bottom:298.590533pt;}
.y16f{bottom:298.790000pt;}
.y1a1{bottom:299.600133pt;}
.y118{bottom:300.995067pt;}
.ye2{bottom:303.021067pt;}
.y24{bottom:305.215733pt;}
.y282{bottom:305.826800pt;}
.yb9{bottom:310.580133pt;}
.y1fd{bottom:311.692933pt;}
.y246{bottom:312.178533pt;}
.y5a{bottom:312.923867pt;}
.y21d{bottom:313.708800pt;}
.y1d3{bottom:314.359600pt;}
.y117{bottom:315.661733pt;}
.y91{bottom:315.923867pt;}
.y16e{bottom:316.123333pt;}
.ye1{bottom:320.354400pt;}
.y142{bottom:320.456000pt;}
.y281{bottom:321.826800pt;}
.y23{bottom:322.543733pt;}
.y1a0{bottom:324.492533pt;}
.y8{bottom:325.395733pt;}
.y245{bottom:326.852267pt;}
.yb8{bottom:327.913467pt;}
.y1fc{bottom:329.026267pt;}
.y59{bottom:330.257200pt;}
.y116{bottom:330.328400pt;}
.y21c{bottom:331.042133pt;}
.y1d2{bottom:331.692933pt;}
.y29e{bottom:332.482933pt;}
.y90{bottom:333.257200pt;}
.y16d{bottom:333.456667pt;}
.ye0{bottom:337.687733pt;}
.y141{bottom:337.789333pt;}
.y280{bottom:337.826800pt;}
.y22{bottom:339.871733pt;}
.y124{bottom:340.816267pt;}
.y18e{bottom:341.467200pt;}
.y19f{bottom:341.825867pt;}
.y7{bottom:343.838400pt;}
.y115{bottom:344.995067pt;}
.yb7{bottom:345.246800pt;}
.y244{bottom:345.294933pt;}
.y1fb{bottom:346.359600pt;}
.y29d{bottom:347.149600pt;}
.y58{bottom:347.590533pt;}
.y21b{bottom:348.375467pt;}
.y1d1{bottom:349.026267pt;}
.y8f{bottom:350.590533pt;}
.y16c{bottom:350.790000pt;}
.y27f{bottom:353.826800pt;}
.ydf{bottom:355.021067pt;}
.y140{bottom:355.122667pt;}
.y21{bottom:357.199733pt;}
.y123{bottom:358.149600pt;}
.y6{bottom:358.505067pt;}
.y18d{bottom:358.800533pt;}
.y19e{bottom:359.159200pt;}
.y243{bottom:359.961600pt;}
.y29c{bottom:361.816267pt;}
.yb6{bottom:362.580133pt;}
.y1fa{bottom:363.692933pt;}
.y57{bottom:364.923867pt;}
.y21a{bottom:365.708800pt;}
.y1d0{bottom:366.359600pt;}
.y8e{bottom:367.923867pt;}
.y16b{bottom:368.123333pt;}
.y27e{bottom:369.826800pt;}
.yde{bottom:372.354400pt;}
.y13f{bottom:372.456000pt;}
.y5{bottom:373.171733pt;}
.y20{bottom:374.527733pt;}
.y122{bottom:375.482933pt;}
.y18c{bottom:376.133867pt;}
.y19d{bottom:376.492533pt;}
.y242{bottom:378.404267pt;}
.yb5{bottom:379.913467pt;}
.y1f9{bottom:381.026267pt;}
.y56{bottom:382.257200pt;}
.y219{bottom:383.042133pt;}
.y1cf{bottom:383.692933pt;}
.y8d{bottom:385.257333pt;}
.y16a{bottom:385.456800pt;}
.y27d{bottom:385.826800pt;}
.y4{bottom:387.838400pt;}
.y111{bottom:389.116800pt;}
.ydd{bottom:389.687733pt;}
.y13e{bottom:389.789333pt;}
.y1f{bottom:391.855733pt;}
.y121{bottom:392.816267pt;}
.y241{bottom:393.070933pt;}
.yf4{bottom:393.467200pt;}
.y182{bottom:397.246800pt;}
.y1f8{bottom:398.359600pt;}
.y29b{bottom:399.160133pt;}
.y55{bottom:399.590667pt;}
.y218{bottom:400.375333pt;}
.yb4{bottom:401.026267pt;}
.y27c{bottom:401.826800pt;}
.y8c{bottom:402.590667pt;}
.y3{bottom:406.281067pt;}
.y169{bottom:406.569600pt;}
.ydc{bottom:407.021067pt;}
.y13d{bottom:407.122667pt;}
.y240{bottom:407.741067pt;}
.y120{bottom:410.149600pt;}
.y18b{bottom:410.800533pt;}
.y110{bottom:411.734933pt;}
.y1c4{bottom:412.159467pt;}
.y29a{bottom:413.826800pt;}
.y181{bottom:414.580133pt;}
.y1f7{bottom:415.692933pt;}
.y1e{bottom:416.748000pt;}
.y54{bottom:416.924000pt;}
.y217{bottom:417.708667pt;}
.y27b{bottom:417.826800pt;}
.y1ce{bottom:418.359600pt;}
.y8b{bottom:419.924000pt;}
.y2{bottom:420.947733pt;}
.y13c{bottom:424.456000pt;}
.yb3{bottom:425.918667pt;}
.y23f{bottom:426.183733pt;}
.y1c3{bottom:426.826133pt;}
.y11f{bottom:427.482933pt;}
.ydb{bottom:428.133867pt;}
.y299{bottom:428.493467pt;}
.yf3{bottom:429.698267pt;}
.y168{bottom:431.462000pt;}
.y1f6{bottom:433.026267pt;}
.y27a{bottom:433.826800pt;}
.y53{bottom:434.257333pt;}
.y10f{bottom:434.353067pt;}
.y216{bottom:435.042000pt;}
.y180{bottom:435.692933pt;}
.y8a{bottom:437.257333pt;}
.y23e{bottom:440.850400pt;}
.y1c2{bottom:441.492800pt;}
.y13b{bottom:441.789333pt;}
.y298{bottom:443.160133pt;}
.y11e{bottom:444.816267pt;}
.y18a{bottom:445.467200pt;}
.yf2{bottom:447.031600pt;}
.y279{bottom:449.826800pt;}
.y1f5{bottom:450.359600pt;}
.y52{bottom:451.590667pt;}
.y215{bottom:452.375333pt;}
.y1cd{bottom:453.026267pt;}
.y23d{bottom:455.517067pt;}
.y1c1{bottom:456.159467pt;}
.y10e{bottom:456.971200pt;}
.y297{bottom:457.826800pt;}
.y13a{bottom:459.122667pt;}
.y89{bottom:462.149600pt;}
.y189{bottom:462.800533pt;}
.yda{bottom:464.364933pt;}
.y278{bottom:465.826800pt;}
.y167{bottom:467.692933pt;}
.y51{bottom:468.924000pt;}
.y214{bottom:469.708667pt;}
.y1cc{bottom:470.359600pt;}
.y1c0{bottom:470.826133pt;}
.y17f{bottom:471.924000pt;}
.y296{bottom:472.493467pt;}
.y139{bottom:476.456000pt;}
.y23c{bottom:477.742800pt;}
.y88{bottom:479.482933pt;}
.y10d{bottom:479.589333pt;}
.y188{bottom:480.133867pt;}
.yd9{bottom:481.698267pt;}
.y277{bottom:481.826800pt;}
.y166{bottom:485.026267pt;}
.y1bf{bottom:485.492800pt;}
.y213{bottom:487.042000pt;}
.y295{bottom:487.160133pt;}
.y1cb{bottom:487.692933pt;}
.y17e{bottom:489.257333pt;}
.y1f4{bottom:492.585333pt;}
.y138{bottom:493.789333pt;}
.y50{bottom:493.816267pt;}
.y87{bottom:496.816267pt;}
.y187{bottom:497.467200pt;}
.y276{bottom:497.826800pt;}
.yd8{bottom:499.031600pt;}
.y1be{bottom:500.159467pt;}
.y294{bottom:501.826800pt;}
.y10c{bottom:502.207333pt;}
.y165{bottom:502.359600pt;}
.y212{bottom:504.375333pt;}
.y1ca{bottom:505.026267pt;}
.y17d{bottom:506.590667pt;}
.y1f3{bottom:509.918667pt;}
.y137{bottom:511.122667pt;}
.y4f{bottom:511.149600pt;}
.y275{bottom:513.826800pt;}
.y86{bottom:514.149600pt;}
.y186{bottom:514.800533pt;}
.y1bd{bottom:514.826133pt;}
.yd7{bottom:516.364933pt;}
.y293{bottom:516.493467pt;}
.y164{bottom:519.692933pt;}
.y211{bottom:521.708667pt;}
.yf1{bottom:523.924000pt;}
.y23b{bottom:524.199600pt;}
.y10b{bottom:524.825467pt;}
.y1f2{bottom:527.252000pt;}
.y136{bottom:528.456000pt;}
.y4e{bottom:528.482933pt;}
.y1bc{bottom:529.492800pt;}
.y274{bottom:529.826800pt;}
.y1c9{bottom:529.918667pt;}
.y85{bottom:531.482933pt;}
.y185{bottom:532.133867pt;}
.yd6{bottom:533.698267pt;}
.y163{bottom:537.026267pt;}
.yf0{bottom:541.257333pt;}
.y1bb{bottom:544.159467pt;}
.y1f1{bottom:544.585333pt;}
.y135{bottom:545.789333pt;}
.y4d{bottom:545.816267pt;}
.y273{bottom:545.826800pt;}
.y210{bottom:546.601067pt;}
.y10a{bottom:547.443600pt;}
.yb2{bottom:548.816267pt;}
.y23a{bottom:549.091867pt;}
.y184{bottom:549.467200pt;}
.y162{bottom:554.359600pt;}
.y84{bottom:556.375333pt;}
.yd5{bottom:558.590667pt;}
.y1ba{bottom:558.826133pt;}
.y272{bottom:561.826800pt;}
.y1f0{bottom:561.918667pt;}
.y134{bottom:563.122667pt;}
.y4c{bottom:563.149600pt;}
.y20f{bottom:563.934400pt;}
.y11d{bottom:566.149600pt;}
.y109{bottom:570.061733pt;}
.y161{bottom:571.692933pt;}
.y1b9{bottom:573.492800pt;}
.y83{bottom:573.708667pt;}
.y183{bottom:574.359600pt;}
.yd4{bottom:575.924000pt;}
.y271{bottom:577.826800pt;}
.y1ef{bottom:579.252000pt;}
.y133{bottom:580.456000pt;}
.y20e{bottom:581.267733pt;}
.y1c8{bottom:583.482933pt;}
.y4b{bottom:588.042000pt;}
.y1b8{bottom:588.159467pt;}
.y82{bottom:591.042000pt;}
.y108{bottom:592.679867pt;}
.yd3{bottom:593.257333pt;}
.y270{bottom:593.826800pt;}
.y239{bottom:595.575333pt;}
.y160{bottom:596.585333pt;}
.y132{bottom:597.789333pt;}
.y114{bottom:598.414667pt;}
.y20d{bottom:598.601067pt;}
.y1c7{bottom:600.816267pt;}
.y1b7{bottom:602.826133pt;}
.y4a{bottom:605.375333pt;}
.y81{bottom:608.375333pt;}
.y26f{bottom:609.826800pt;}
.yd2{bottom:610.590667pt;}
.y238{bottom:612.903333pt;}
.y113{bottom:613.081333pt;}
.y1ee{bottom:613.918667pt;}
.y107{bottom:615.298000pt;}
.y20c{bottom:615.934400pt;}
.y1c6{bottom:618.149600pt;}
.y15f{bottom:621.477733pt;}
.y131{bottom:622.681733pt;}
.y49{bottom:622.708667pt;}
.y80{bottom:625.708667pt;}
.y26e{bottom:625.826800pt;}
.y112{bottom:627.748000pt;}
.yd1{bottom:627.924000pt;}
.y237{bottom:630.231333pt;}
.y1ed{bottom:631.252000pt;}
.y20b{bottom:633.267733pt;}
.y1c5{bottom:635.482933pt;}
.y130{bottom:640.015067pt;}
.y48{bottom:640.042000pt;}
.y26d{bottom:641.826800pt;}
.yb1{bottom:643.042000pt;}
.yd0{bottom:645.257333pt;}
.y2d{bottom:647.317467pt;}
.y236{bottom:647.559333pt;}
.y1ec{bottom:648.585333pt;}
.y7f{bottom:650.601067pt;}
.y12f{bottom:657.348400pt;}
.y47{bottom:657.375333pt;}
.y26c{bottom:657.826800pt;}
.yb0{bottom:660.375333pt;}
.ycf{bottom:662.590667pt;}
.y235{bottom:664.887333pt;}
.y1eb{bottom:665.918667pt;}
.y106{bottom:666.370133pt;}
.y7e{bottom:667.934400pt;}
.y1d{bottom:669.543200pt;}
.y26b{bottom:673.826800pt;}
.y12e{bottom:674.681733pt;}
.y46{bottom:674.708667pt;}
.yaf{bottom:677.708667pt;}
.yce{bottom:679.924000pt;}
.y234{bottom:682.215333pt;}
.y1ea{bottom:683.252000pt;}
.y105{bottom:683.703467pt;}
.y7d{bottom:685.267733pt;}
.yef{bottom:687.482933pt;}
.y26a{bottom:689.826800pt;}
.y12d{bottom:692.015200pt;}
.y45{bottom:692.042000pt;}
.y1c{bottom:693.102267pt;}
.yae{bottom:695.042000pt;}
.ycd{bottom:697.257333pt;}
.y1e9{bottom:700.585333pt;}
.y104{bottom:701.036800pt;}
.y7c{bottom:702.601067pt;}
.yee{bottom:704.816267pt;}
.y269{bottom:705.826800pt;}
.y233{bottom:707.107600pt;}
.y44{bottom:709.375333pt;}
.yad{bottom:712.375333pt;}
.ycc{bottom:714.590667pt;}
.y1b{bottom:716.661333pt;}
.y103{bottom:718.370133pt;}
.y7b{bottom:719.934400pt;}
.y268{bottom:721.826800pt;}
.yed{bottom:722.149600pt;}
.y1e8{bottom:725.477733pt;}
.y43{bottom:726.708800pt;}
.y15e{bottom:727.682133pt;}
.yac{bottom:729.708800pt;}
.ycb{bottom:731.923867pt;}
.y102{bottom:735.703467pt;}
.y7a{bottom:737.267733pt;}
.y267{bottom:737.826800pt;}
.y1a{bottom:740.220400pt;}
.y15d{bottom:742.348800pt;}
.y1e7{bottom:742.811067pt;}
.y42{bottom:744.042133pt;}
.yab{bottom:747.042133pt;}
.yca{bottom:749.257200pt;}
.y101{bottom:753.036800pt;}
.y232{bottom:753.575067pt;}
.y266{bottom:753.826800pt;}
.y79{bottom:754.601067pt;}
.y15c{bottom:757.015467pt;}
.y1e6{bottom:760.144400pt;}
.y41{bottom:761.375467pt;}
.yaa{bottom:764.375467pt;}
.yc9{bottom:766.590533pt;}
.y265{bottom:769.826800pt;}
.y100{bottom:770.370133pt;}
.y231{bottom:770.903067pt;}
.y15b{bottom:771.682133pt;}
.y78{bottom:771.934400pt;}
.y1e5{bottom:777.477733pt;}
.y40{bottom:778.708800pt;}
.y1b6{bottom:779.243467pt;}
.ya9{bottom:781.708800pt;}
.y264{bottom:785.826800pt;}
.y15a{bottom:786.348800pt;}
.yc8{bottom:787.703467pt;}
.y230{bottom:788.231067pt;}
.y77{bottom:789.267733pt;}
.y1b5{bottom:793.910133pt;}
.y1e4{bottom:794.811067pt;}
.y3f{bottom:796.042133pt;}
.ya8{bottom:799.042133pt;}
.y159{bottom:801.015467pt;}
.y263{bottom:801.826800pt;}
.yff{bottom:805.036800pt;}
.y76{bottom:806.601067pt;}
.y1b4{bottom:808.576800pt;}
.y1e3{bottom:812.144400pt;}
.y1{bottom:812.598400pt;}
.y19{bottom:812.622533pt;}
.y22f{bottom:813.123333pt;}
.y158{bottom:815.682133pt;}
.ya7{bottom:816.375467pt;}
.y262{bottom:817.826800pt;}
.y3e{bottom:820.934400pt;}
.yfe{bottom:822.370133pt;}
.y1b3{bottom:823.243467pt;}
.yc7{bottom:823.934400pt;}
.y1e2{bottom:829.477733pt;}
.y157{bottom:830.348800pt;}
.y75{bottom:831.493467pt;}
.yec{bottom:833.708800pt;}
.y261{bottom:833.826800pt;}
.y1b2{bottom:837.910133pt;}
.y3d{bottom:838.267733pt;}
.yfd{bottom:839.703467pt;}
.ya6{bottom:841.267733pt;}
.y156{bottom:845.015467pt;}
.y1e1{bottom:846.811067pt;}
.y74{bottom:848.826800pt;}
.y260{bottom:849.826800pt;}
.y18{bottom:849.943867pt;}
.yeb{bottom:851.042133pt;}
.y1b1{bottom:852.576800pt;}
.y3c{bottom:855.601067pt;}
.yfc{bottom:857.036800pt;}
.ya5{bottom:858.601067pt;}
.y22e{bottom:859.596133pt;}
.y155{bottom:859.682133pt;}
.y1e0{bottom:864.144400pt;}
.y25f{bottom:865.826800pt;}
.y73{bottom:866.160133pt;}
.y1b0{bottom:867.243467pt;}
.yea{bottom:868.375467pt;}
.y3b{bottom:872.934400pt;}
.y154{bottom:874.348800pt;}
.yfb{bottom:874.370133pt;}
.ya4{bottom:875.934400pt;}
.y22d{bottom:876.924133pt;}
.y1df{bottom:881.477733pt;}
.y25e{bottom:881.826800pt;}
.y1af{bottom:881.910133pt;}
.y72{bottom:883.493467pt;}
.y17{bottom:887.265200pt;}
.y153{bottom:889.015467pt;}
.y3a{bottom:890.267733pt;}
.yfa{bottom:891.703467pt;}
.ya3{bottom:893.267733pt;}
.y22c{bottom:894.252133pt;}
.y25d{bottom:897.826800pt;}
.y71{bottom:900.826800pt;}
.y152{bottom:903.682133pt;}
.y1de{bottom:906.370133pt;}
.y39{bottom:907.601067pt;}
.yf9{bottom:909.036800pt;}
.ya2{bottom:910.601067pt;}
.y22b{bottom:911.580133pt;}
.y25c{bottom:913.826800pt;}
.y70{bottom:918.160133pt;}
.y151{bottom:918.348800pt;}
.y38{bottom:924.934400pt;}
.yf8{bottom:926.370133pt;}
.ya1{bottom:927.934400pt;}
.y25b{bottom:929.826800pt;}
.y6f{bottom:935.493467pt;}
.y22a{bottom:936.472533pt;}
.y37{bottom:942.267733pt;}
.ya0{bottom:945.267733pt;}
.y25a{bottom:945.826800pt;}
.yf7{bottom:951.262533pt;}
.y6e{bottom:952.826800pt;}
.y36{bottom:959.601067pt;}
.y259{bottom:961.826800pt;}
.y9f{bottom:962.601067pt;}
.y6d{bottom:970.160133pt;}
.y35{bottom:976.934400pt;}
.y258{bottom:977.826800pt;}
.y229{bottom:979.158400pt;}
.y9e{bottom:979.934400pt;}
.y6c{bottom:987.493467pt;}
.y257{bottom:993.826800pt;}
.y34{bottom:994.267733pt;}
.ye9{bottom:997.267733pt;}
.y228{bottom:1000.266400pt;}
.y6b{bottom:1004.826800pt;}
.y256{bottom:1009.826800pt;}
.y33{bottom:1011.601067pt;}
.y6a{bottom:1022.160133pt;}
.y255{bottom:1025.826800pt;}
.y32{bottom:1028.934400pt;}
.ye8{bottom:1034.821467pt;}
.y30{bottom:1034.826800pt;}
.y69{bottom:1039.493467pt;}
.y254{bottom:1041.826800pt;}
.ye7{bottom:1046.824133pt;}
.y2f{bottom:1046.826800pt;}
.y31{bottom:1053.826800pt;}
.y68{bottom:1056.826800pt;}
.y253{bottom:1057.826800pt;}
.y2e{bottom:1058.826800pt;}
.h9{height:28.746667pt;}
.hc{height:29.194667pt;}
.h8{height:29.344000pt;}
.he{height:31.280000pt;}
.hd{height:31.440000pt;}
.h4{height:33.365333pt;}
.h3{height:33.536000pt;}
.h10{height:34.542342pt;}
.h7{height:37.536000pt;}
.hf{height:37.728000pt;}
.hb{height:37.867488pt;}
.ha{height:41.066667pt;}
.h2{height:41.920000pt;}
.h6{height:50.304000pt;}
.h5{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;}
.x8{left:60.472933pt;}
.x6{left:65.130400pt;}
.x2{left:79.370000pt;}
.x5{left:178.452533pt;}
.x1{left:589.606267pt;}
.xa{left:651.888133pt;}
.x9{left:698.468533pt;}
.x7{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; }
  