
    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_e149d75853ab2dabe59fadf8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_24e0911dd38ecd15724c9ce6.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_56ee4dfe834f3ebce46fd0cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c0b41a7da91ff2571e7b1d93.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.066000;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_f8601811a287ea33443b0c25.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_24e0911dd38ecd15724c9ce6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b42e3dd724c899ea447b4c7f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_24e0911dd38ecd15724c9ce6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b42e3dd724c899ea447b4c7f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6cf8e25f8e1e1e4cde365124.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8d54c37812487608373b5e51.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_24e0911dd38ecd15724c9ce6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b42e3dd724c899ea447b4c7f.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.ls1f{letter-spacing:-3.552000px;}
.ls7{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-1.026000px;}
.ls16{letter-spacing:-0.810000px;}
.ls21{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.559680px;}
.ls5{letter-spacing:-0.552000px;}
.ls15{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.096000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000132px;}
.lsd{letter-spacing:0.054000px;}
.lse{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.214800px;}
.lsb{letter-spacing:0.215400px;}
.lsa{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.268800px;}
.ls1a{letter-spacing:0.269400px;}
.ls18{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.322800px;}
.ls1e{letter-spacing:0.323400px;}
.ls1b{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.378000px;}
.ls11{letter-spacing:0.701400px;}
.ls10{letter-spacing:0.702000px;}
.ls1c{letter-spacing:1.260000px;}
.ls2{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.800000px;}
.ls4{letter-spacing:2.160000px;}
.ls9{letter-spacing:2.520000px;}
.ls12{letter-spacing:4.002600px;}
.ls1{letter-spacing:4.500000px;}
.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;}
}
.ws5{word-spacing:-20.448000px;}
.ws1{word-spacing:-19.740000px;}
.ws7e{word-spacing:-13.716000px;}
.ws2{word-spacing:-13.632000px;}
.wsb1{word-spacing:-13.554000px;}
.ws6{word-spacing:-13.500000px;}
.ws26{word-spacing:-13.020000px;}
.ws27{word-spacing:-12.810000px;}
.ws12b{word-spacing:-12.192000px;}
.ws12a{word-spacing:-12.096000px;}
.ws4{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.760000px;}
.ws12c{word-spacing:-11.424000px;}
.ws25{word-spacing:-10.668000px;}
.ws128{word-spacing:-8.448000px;}
.ws127{word-spacing:-6.996000px;}
.ws1c{word-spacing:-6.588000px;}
.ws12d{word-spacing:-6.436320px;}
.ws108{word-spacing:-5.886000px;}
.wsab{word-spacing:-4.482000px;}
.wsd7{word-spacing:-4.320000px;}
.ws19{word-spacing:-3.996000px;}
.ws96{word-spacing:-3.834000px;}
.ws3c{word-spacing:-3.240000px;}
.ws3d{word-spacing:-3.186000px;}
.ws7{word-spacing:-2.760000px;}
.ws21{word-spacing:-2.700000px;}
.ws54{word-spacing:-2.646000px;}
.ws3e{word-spacing:-2.592000px;}
.ws106{word-spacing:-2.538000px;}
.ws70{word-spacing:-2.484000px;}
.ws5c{word-spacing:-2.430000px;}
.wscf{word-spacing:-2.376000px;}
.ws109{word-spacing:-2.322000px;}
.ws50{word-spacing:-2.268000px;}
.ws33{word-spacing:-2.214000px;}
.wsff{word-spacing:-2.160000px;}
.ws56{word-spacing:-2.106000px;}
.wsa7{word-spacing:-2.052000px;}
.ws55{word-spacing:-1.998000px;}
.ws15{word-spacing:-1.944000px;}
.ws8{word-spacing:-1.836000px;}
.wsdf{word-spacing:-1.782000px;}
.wsc0{word-spacing:-1.728000px;}
.wse5{word-spacing:-1.674000px;}
.wsaa{word-spacing:-1.620000px;}
.ws4b{word-spacing:-1.566000px;}
.ws78{word-spacing:-1.512000px;}
.ws44{word-spacing:-1.458000px;}
.ws24{word-spacing:-1.350000px;}
.wscd{word-spacing:-1.188000px;}
.ws4a{word-spacing:-1.080000px;}
.wsba{word-spacing:-1.026000px;}
.wsec{word-spacing:-0.972000px;}
.wsbf{word-spacing:-0.918000px;}
.ws13{word-spacing:-0.864000px;}
.wsa3{word-spacing:-0.810000px;}
.ws43{word-spacing:-0.756000px;}
.ws4e{word-spacing:-0.702000px;}
.ws17{word-spacing:-0.648000px;}
.ws22{word-spacing:-0.594000px;}
.wsdd{word-spacing:-0.540000px;}
.wsbe{word-spacing:-0.486000px;}
.ws2c{word-spacing:-0.432000px;}
.wseb{word-spacing:-0.378000px;}
.ws12e{word-spacing:-0.336000px;}
.ws73{word-spacing:-0.324000px;}
.wsa5{word-spacing:-0.270000px;}
.ws85{word-spacing:-0.216000px;}
.wsb8{word-spacing:-0.162000px;}
.ws8d{word-spacing:-0.108000px;}
.wsa1{word-spacing:-0.054000px;}
.ws129{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:0.054000px;}
.wse1{word-spacing:0.108000px;}
.ws84{word-spacing:0.162000px;}
.ws23{word-spacing:0.216000px;}
.ws3b{word-spacing:0.270000px;}
.wsf3{word-spacing:0.324000px;}
.ws10a{word-spacing:0.378000px;}
.ws39{word-spacing:0.486000px;}
.wsb0{word-spacing:0.540000px;}
.ws8c{word-spacing:0.648000px;}
.ws2d{word-spacing:0.756000px;}
.ws6b{word-spacing:0.810000px;}
.ws14{word-spacing:0.918000px;}
.ws45{word-spacing:0.972000px;}
.ws1a{word-spacing:1.026000px;}
.ws1d{word-spacing:1.080000px;}
.ws16{word-spacing:1.188000px;}
.wse9{word-spacing:1.242000px;}
.wsf{word-spacing:1.296000px;}
.ws89{word-spacing:1.350000px;}
.ws110{word-spacing:1.404000px;}
.wsd6{word-spacing:1.458000px;}
.ws29{word-spacing:1.566000px;}
.ws52{word-spacing:1.620000px;}
.ws6f{word-spacing:1.728000px;}
.wsd3{word-spacing:1.782000px;}
.wsc2{word-spacing:1.836000px;}
.wse7{word-spacing:1.890000px;}
.ws124{word-spacing:1.944000px;}
.ws111{word-spacing:1.998000px;}
.wsa8{word-spacing:2.052000px;}
.ws57{word-spacing:2.106000px;}
.ws53{word-spacing:2.160000px;}
.wsc3{word-spacing:2.214000px;}
.ws1b{word-spacing:2.268000px;}
.wsc6{word-spacing:2.430000px;}
.wsca{word-spacing:2.484000px;}
.ws93{word-spacing:2.538000px;}
.ws117{word-spacing:2.592000px;}
.wsac{word-spacing:2.646000px;}
.wsb9{word-spacing:2.700000px;}
.wsc1{word-spacing:2.754000px;}
.ws66{word-spacing:2.808000px;}
.ws42{word-spacing:2.862000px;}
.ws35{word-spacing:2.916000px;}
.wsd5{word-spacing:2.970000px;}
.ws72{word-spacing:3.024000px;}
.wscb{word-spacing:3.078000px;}
.ws32{word-spacing:3.186000px;}
.ws61{word-spacing:3.240000px;}
.ws88{word-spacing:3.294000px;}
.ws68{word-spacing:3.348000px;}
.wsd0{word-spacing:3.402000px;}
.ws65{word-spacing:3.456000px;}
.wsf4{word-spacing:3.510000px;}
.ws38{word-spacing:3.564000px;}
.ws67{word-spacing:3.618000px;}
.wsef{word-spacing:3.672000px;}
.wsaf{word-spacing:3.726000px;}
.wsf0{word-spacing:3.834000px;}
.ws74{word-spacing:3.888000px;}
.ws105{word-spacing:3.942000px;}
.ws69{word-spacing:3.996000px;}
.ws12{word-spacing:4.050000px;}
.wsb4{word-spacing:4.104000px;}
.ws86{word-spacing:4.158000px;}
.wsd1{word-spacing:4.212000px;}
.wsb7{word-spacing:4.266000px;}
.wsa{word-spacing:4.320000px;}
.ws46{word-spacing:4.374000px;}
.ws101{word-spacing:4.428000px;}
.ws71{word-spacing:4.536000px;}
.wse2{word-spacing:4.590000px;}
.ws8b{word-spacing:4.644000px;}
.ws40{word-spacing:4.698000px;}
.ws102{word-spacing:4.752000px;}
.ws18{word-spacing:4.806000px;}
.wsdb{word-spacing:4.860000px;}
.ws2f{word-spacing:4.914000px;}
.wsfb{word-spacing:4.968000px;}
.ws9f{word-spacing:5.022000px;}
.wsea{word-spacing:5.076000px;}
.ws9b{word-spacing:5.130000px;}
.ws122{word-spacing:5.184000px;}
.ws49{word-spacing:5.238000px;}
.ws77{word-spacing:5.292000px;}
.wsc9{word-spacing:5.346000px;}
.ws11f{word-spacing:5.400000px;}
.ws7c{word-spacing:5.454000px;}
.ws36{word-spacing:5.508000px;}
.ws107{word-spacing:5.616000px;}
.wse8{word-spacing:5.778000px;}
.ws48{word-spacing:5.832000px;}
.ws99{word-spacing:5.886000px;}
.wscc{word-spacing:5.940000px;}
.wsae{word-spacing:5.994000px;}
.wsc5{word-spacing:6.156000px;}
.ws7b{word-spacing:6.210000px;}
.ws64{word-spacing:6.318000px;}
.ws4f{word-spacing:6.372000px;}
.ws3f{word-spacing:6.426000px;}
.ws119{word-spacing:6.534000px;}
.ws41{word-spacing:6.588000px;}
.wsd2{word-spacing:6.642000px;}
.ws11c{word-spacing:6.696000px;}
.wsa6{word-spacing:6.750000px;}
.ws9a{word-spacing:6.858000px;}
.ws10{word-spacing:6.966000px;}
.ws112{word-spacing:7.074000px;}
.ws5b{word-spacing:7.182000px;}
.ws9d{word-spacing:7.290000px;}
.ws1f{word-spacing:7.344000px;}
.wsbc{word-spacing:7.398000px;}
.ws34{word-spacing:7.452000px;}
.ws7a{word-spacing:7.560000px;}
.ws83{word-spacing:7.614000px;}
.wsa4{word-spacing:7.668000px;}
.ws103{word-spacing:7.722000px;}
.wsa9{word-spacing:7.776000px;}
.ws2e{word-spacing:7.830000px;}
.ws4d{word-spacing:7.938000px;}
.wsc7{word-spacing:7.992000px;}
.ws95{word-spacing:8.046000px;}
.wsbd{word-spacing:8.100000px;}
.wsce{word-spacing:8.154000px;}
.ws10c{word-spacing:8.208000px;}
.wsf1{word-spacing:8.262000px;}
.ws81{word-spacing:8.316000px;}
.ws60{word-spacing:8.370000px;}
.wsf9{word-spacing:8.478000px;}
.wsed{word-spacing:8.586000px;}
.ws4c{word-spacing:8.694000px;}
.wsd8{word-spacing:8.748000px;}
.ws79{word-spacing:8.802000px;}
.ws98{word-spacing:8.856000px;}
.ws28{word-spacing:8.910000px;}
.wsd4{word-spacing:9.072000px;}
.wsa2{word-spacing:9.180000px;}
.ws9e{word-spacing:9.288000px;}
.ws118{word-spacing:9.342000px;}
.wse0{word-spacing:9.396000px;}
.wsee{word-spacing:9.450000px;}
.ws5f{word-spacing:9.504000px;}
.ws62{word-spacing:9.558000px;}
.ws123{word-spacing:9.612000px;}
.ws10d{word-spacing:9.666000px;}
.wsb{word-spacing:9.720000px;}
.wsc{word-spacing:9.828000px;}
.wsdc{word-spacing:9.882000px;}
.ws8e{word-spacing:9.936000px;}
.wsb3{word-spacing:9.990000px;}
.ws121{word-spacing:10.044000px;}
.wsc4{word-spacing:10.152000px;}
.ws8a{word-spacing:10.314000px;}
.ws58{word-spacing:10.422000px;}
.wsde{word-spacing:10.476000px;}
.ws6d{word-spacing:10.530000px;}
.ws10e{word-spacing:10.638000px;}
.ws6a{word-spacing:10.746000px;}
.ws97{word-spacing:10.908000px;}
.ws8f{word-spacing:10.962000px;}
.wsc8{word-spacing:11.016000px;}
.wse{word-spacing:11.178000px;}
.ws59{word-spacing:11.286000px;}
.ws6e{word-spacing:11.340000px;}
.wsb6{word-spacing:11.448000px;}
.ws51{word-spacing:11.502000px;}
.ws9{word-spacing:11.556000px;}
.ws11{word-spacing:11.610000px;}
.ws120{word-spacing:11.718000px;}
.ws11e{word-spacing:11.772000px;}
.ws63{word-spacing:11.826000px;}
.ws5e{word-spacing:11.880000px;}
.ws20{word-spacing:11.934000px;}
.wse3{word-spacing:11.988000px;}
.ws91{word-spacing:12.096000px;}
.ws87{word-spacing:12.312000px;}
.wse4{word-spacing:12.798000px;}
.ws7f{word-spacing:12.852000px;}
.wsfc{word-spacing:12.960000px;}
.ws5d{word-spacing:13.014000px;}
.ws7d{word-spacing:13.122000px;}
.ws2a{word-spacing:13.446000px;}
.wsfe{word-spacing:13.662000px;}
.ws3a{word-spacing:13.716000px;}
.wsf2{word-spacing:13.770000px;}
.wsad{word-spacing:13.824000px;}
.ws94{word-spacing:14.040000px;}
.ws9c{word-spacing:14.094000px;}
.ws11d{word-spacing:14.202000px;}
.ws10b{word-spacing:14.310000px;}
.ws80{word-spacing:14.418000px;}
.ws31{word-spacing:14.580000px;}
.wsb5{word-spacing:14.688000px;}
.ws76{word-spacing:14.904000px;}
.ws11a{word-spacing:14.958000px;}
.ws30{word-spacing:15.066000px;}
.ws114{word-spacing:15.336000px;}
.wsf8{word-spacing:15.606000px;}
.wsf5{word-spacing:15.876000px;}
.ws125{word-spacing:15.930000px;}
.ws5a{word-spacing:15.984000px;}
.wsda{word-spacing:16.146000px;}
.wsfd{word-spacing:16.416000px;}
.ws11b{word-spacing:16.524000px;}
.ws47{word-spacing:16.686000px;}
.ws115{word-spacing:16.794000px;}
.wsbb{word-spacing:16.848000px;}
.wse6{word-spacing:16.902000px;}
.ws37{word-spacing:16.956000px;}
.ws113{word-spacing:17.010000px;}
.ws82{word-spacing:17.820000px;}
.ws75{word-spacing:18.252000px;}
.wsd9{word-spacing:19.170000px;}
.wsfa{word-spacing:19.440000px;}
.ws6c{word-spacing:19.818000px;}
.ws90{word-spacing:19.980000px;}
.ws92{word-spacing:20.034000px;}
.ws116{word-spacing:20.196000px;}
.wsa0{word-spacing:21.708000px;}
.ws100{word-spacing:22.032000px;}
.ws104{word-spacing:24.570000px;}
.ws126{word-spacing:25.650000px;}
.wsf6{word-spacing:26.082000px;}
.wsd{word-spacing:26.298000px;}
.ws10f{word-spacing:26.514000px;}
.wsb2{word-spacing:27.216000px;}
.wsf7{word-spacing:29.970000px;}
.ws2b{word-spacing:38.826000px;}
._7{margin-left:-660.262200px;}
._4{margin-left:-659.187000px;}
._9{margin-left:-658.006800px;}
._2{margin-left:-6.504000px;}
._8{margin-left:-4.824000px;}
._1{margin-left:-3.570000px;}
._0{margin-left:-1.872000px;}
._3{width:1.134000px;}
._e{width:2.880000px;}
._c{width:5.155200px;}
._b{width:7.543200px;}
._6{width:10.150800px;}
._5{width:26.557800px;}
._d{width:52.610400px;}
._a{width:66.305400px;}
.fc4{color:rgb(90,87,88);}
.fc2{color:rgb(166,27,17);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.984000px;}
.fs8{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y164{bottom:45.906600px;}
.y187{bottom:47.622150px;}
.y95{bottom:47.740200px;}
.y134{bottom:54.410550px;}
.ycb{bottom:54.634950px;}
.y25e{bottom:56.055150px;}
.y1e6{bottom:58.008450px;}
.y1ae{bottom:60.138750px;}
.y17d{bottom:63.138750px;}
.y5c{bottom:63.472350px;}
.y36{bottom:63.783000px;}
.y163{bottom:65.406600px;}
.y5{bottom:66.525004px;}
.y94{bottom:67.240200px;}
.y120{bottom:67.898700px;}
.y27b{bottom:68.031450px;}
.yf5{bottom:70.107300px;}
.y21e{bottom:71.267700px;}
.y152{bottom:71.642700px;}
.y133{bottom:73.910550px;}
.y25d{bottom:74.055150px;}
.yca{bottom:74.134950px;}
.y1ad{bottom:79.638750px;}
.y35{bottom:80.283000px;}
.y17c{bottom:82.638750px;}
.y5b{bottom:82.966350px;}
.y27a{bottom:84.531450px;}
.y162{bottom:84.906600px;}
.y93{bottom:86.740200px;}
.y11f{bottom:87.398700px;}
.y21d{bottom:89.267700px;}
.yf4{bottom:89.607300px;}
.y1e5{bottom:90.259950px;}
.y151{bottom:91.142700px;}
.y25c{bottom:92.055150px;}
.y132{bottom:93.410550px;}
.yc9{bottom:93.634950px;}
.y34{bottom:96.783000px;}
.y4{bottom:97.125005px;}
.y1ac{bottom:99.138750px;}
.y279{bottom:101.031450px;}
.y17b{bottom:102.138750px;}
.y5a{bottom:102.460350px;}
.y161{bottom:104.406600px;}
.y92{bottom:106.240200px;}
.y11e{bottom:106.898700px;}
.y21c{bottom:107.267700px;}
.yf3{bottom:109.107300px;}
.y25b{bottom:110.055150px;}
.y150{bottom:110.642700px;}
.y131{bottom:112.910550px;}
.yc8{bottom:113.134950px;}
.y33{bottom:113.283000px;}
.y1b3{bottom:115.402650px;}
.y278{bottom:117.531450px;}
.y1e4{bottom:118.263750px;}
.y17a{bottom:121.638750px;}
.y59{bottom:121.954350px;}
.y160{bottom:123.906600px;}
.y21b{bottom:125.267700px;}
.y11d{bottom:126.398700px;}
.y1ab{bottom:127.142700px;}
.y25a{bottom:128.055150px;}
.y32{bottom:129.783000px;}
.y14f{bottom:130.142700px;}
.y130{bottom:132.410550px;}
.yc7{bottom:132.634950px;}
.y91{bottom:134.244150px;}
.y1b2{bottom:134.902650px;}
.yf2{bottom:137.111250px;}
.y277{bottom:138.283500px;}
.y21{bottom:139.264499px;}
.y179{bottom:141.138750px;}
.y58{bottom:141.448350px;}
.y21a{bottom:143.267700px;}
.y15f{bottom:143.406600px;}
.y259{bottom:146.055150px;}
.y31{bottom:146.283000px;}
.y1aa{bottom:146.642700px;}
.y14e{bottom:149.642700px;}
.y12f{bottom:151.910550px;}
.yc6{bottom:152.134950px;}
.y90{bottom:153.744150px;}
.y11c{bottom:154.402650px;}
.y276{bottom:154.783500px;}
.yf1{bottom:156.611250px;}
.y178{bottom:160.638750px;}
.y57{bottom:160.942350px;}
.y219{bottom:161.267700px;}
.y30{bottom:162.783000px;}
.y15e{bottom:162.906600px;}
.y258{bottom:164.055150px;}
.y1a9{bottom:166.142700px;}
.y14d{bottom:169.142700px;}
.y1e3{bottom:170.809200px;}
.y275{bottom:171.283500px;}
.yc5{bottom:171.634950px;}
.y8f{bottom:173.244150px;}
.y11b{bottom:173.902650px;}
.yf0{bottom:176.111250px;}
.y218{bottom:179.267700px;}
.y2f{bottom:179.283000px;}
.y12e{bottom:179.914350px;}
.y177{bottom:180.138750px;}
.y56{bottom:180.436350px;}
.y257{bottom:182.055150px;}
.y1a8{bottom:185.642700px;}
.y274{bottom:187.783500px;}
.y14c{bottom:188.642700px;}
.y1e2{bottom:190.303200px;}
.y15d{bottom:190.910550px;}
.yc4{bottom:191.134950px;}
.y8e{bottom:192.744150px;}
.y11a{bottom:193.402650px;}
.yef{bottom:195.611250px;}
.y2e{bottom:195.783000px;}
.y18{bottom:196.933500px;}
.y217{bottom:197.267700px;}
.y12d{bottom:199.414350px;}
.y176{bottom:199.638750px;}
.y55{bottom:199.930350px;}
.y256{bottom:200.055150px;}
.y273{bottom:204.283500px;}
.y1a7{bottom:205.142700px;}
.y186{bottom:208.142700px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1e1{bottom:209.797200px;}
.y15c{bottom:210.410550px;}
.yc3{bottom:210.634950px;}
.y8d{bottom:212.244150px;}
.y119{bottom:212.902650px;}
.yee{bottom:215.111250px;}
.y216{bottom:215.267700px;}
.y14b{bottom:216.646800px;}
.y255{bottom:218.055150px;}
.y12c{bottom:218.914350px;}
.y175{bottom:219.138750px;}
.y54{bottom:219.424350px;}
.y272{bottom:220.783500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1a6{bottom:224.642700px;}
.y185{bottom:227.642700px;}
.y1e0{bottom:229.291200px;}
.y15b{bottom:229.910550px;}
.y8c{bottom:231.744150px;}
.y118{bottom:232.402650px;}
.y215{bottom:233.267700px;}
.yed{bottom:234.611250px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y254{bottom:236.055150px;}
.y14a{bottom:236.146800px;}
.y271{bottom:237.283500px;}
.y2d{bottom:237.795000px;}
.y12b{bottom:238.414350px;}
.yc2{bottom:238.638750px;}
.y53{bottom:238.918350px;}
.y1b1{bottom:240.906600px;}
.y1a5{bottom:244.142700px;}
.y184{bottom:247.142700px;}
.y1df{bottom:248.785200px;}
.y15a{bottom:249.410550px;}
.y8b{bottom:251.244150px;}
.y214{bottom:251.267700px;}
.y117{bottom:251.902650px;}
.y270{bottom:253.783500px;}
.y253{bottom:254.055150px;}
.y2c{bottom:254.295000px;}
.y149{bottom:255.646800px;}
.y12a{bottom:257.914350px;}
.yc1{bottom:258.138750px;}
.y52{bottom:258.412350px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1b0{bottom:260.406600px;}
.yec{bottom:262.615200px;}
.y1a4{bottom:263.642700px;}
.y174{bottom:266.642700px;}
.y159{bottom:268.910550px;}
.y213{bottom:269.267700px;}
.y26f{bottom:270.283350px;}
.y8a{bottom:270.744150px;}
.y2b{bottom:270.795000px;}
.y116{bottom:271.402650px;}
.y252{bottom:272.055150px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y148{bottom:275.146800px;}
.y1de{bottom:276.784200px;}
.y129{bottom:277.414350px;}
.yc0{bottom:277.638750px;}
.y51{bottom:277.906350px;}
.y1af{bottom:279.906600px;}
.yeb{bottom:282.115200px;}
.y1a3{bottom:283.142700px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y173{bottom:286.142700px;}
.y26e{bottom:286.783350px;}
.y212{bottom:287.267700px;}
.y2a{bottom:287.295000px;}
.y158{bottom:288.410550px;}
.y251{bottom:290.055150px;}
.y89{bottom:290.244150px;}
.y1dd{bottom:296.278200px;}
.ybf{bottom:297.138750px;}
.y115{bottom:299.406600px;}
.yea{bottom:301.615200px;}
.y1a2{bottom:302.642700px;}
.y147{bottom:303.150600px;}
.y26d{bottom:303.283350px;}
.y211{bottom:305.267700px;}
.y172{bottom:305.642700px;}
.y50{bottom:305.905350px;}
.y157{bottom:307.910550px;}
.y250{bottom:308.055150px;}
.y88{bottom:309.744150px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1dc{bottom:315.772200px;}
.ybe{bottom:316.638750px;}
.y114{bottom:318.906600px;}
.y26c{bottom:319.783350px;}
.ye9{bottom:321.115200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y210{bottom:323.267700px;}
.y171{bottom:325.142700px;}
.y4f{bottom:325.399350px;}
.y24f{bottom:326.055150px;}
.y156{bottom:327.410550px;}
.y1a1{bottom:330.646800px;}
.y1db{bottom:335.266200px;}
.ybd{bottom:336.138750px;}
.y26b{bottom:336.283350px;}
.y87{bottom:337.748100px;}
.y113{bottom:338.406600px;}
.ye8{bottom:340.615200px;}
.y20f{bottom:341.267700px;}
.y24e{bottom:344.055150px;}
.y170{bottom:344.642700px;}
.y4e{bottom:344.893350px;}
.y183{bottom:346.910550px;}
.yf{bottom:348.133500px;}
.y1a0{bottom:350.146800px;}
.y29{bottom:350.571000px;}
.y1da{bottom:354.760200px;}
.y146{bottom:355.414350px;}
.y86{bottom:357.248100px;}
.y112{bottom:357.906600px;}
.y20e{bottom:359.267700px;}
.ye7{bottom:360.115200px;}
.y24d{bottom:362.055150px;}
.ybc{bottom:364.142700px;}
.y4d{bottom:364.387350px;}
.y182{bottom:366.410550px;}
.y19f{bottom:369.646800px;}
.y28{bottom:371.319000px;}
.y16f{bottom:372.646800px;}
.y1d9{bottom:374.254200px;}
.y145{bottom:374.914350px;}
.y85{bottom:376.748100px;}
.y20d{bottom:377.267700px;}
.y111{bottom:377.406600px;}
.y26a{bottom:378.295200px;}
.ye6{bottom:379.615200px;}
.y24c{bottom:380.055150px;}
.ybb{bottom:383.642700px;}
.y4c{bottom:383.881350px;}
.y181{bottom:385.910550px;}
.ye{bottom:386.785499px;}
.y27{bottom:387.819000px;}
.y19e{bottom:389.146800px;}
.y16e{bottom:392.146800px;}
.y1d8{bottom:393.748200px;}
.y144{bottom:394.414350px;}
.y269{bottom:394.795200px;}
.y20c{bottom:395.267700px;}
.y84{bottom:396.248100px;}
.y110{bottom:396.906600px;}
.y24b{bottom:398.055150px;}
.ye5{bottom:399.115200px;}
.yba{bottom:403.142700px;}
.y26{bottom:404.319000px;}
.y180{bottom:405.410550px;}
.yd{bottom:408.044999px;}
.y19d{bottom:408.646800px;}
.y268{bottom:411.295200px;}
.y16d{bottom:411.646800px;}
.y4b{bottom:411.880350px;}
.y20b{bottom:413.267700px;}
.y143{bottom:413.914350px;}
.y24a{bottom:416.055150px;}
.y10f{bottom:416.406600px;}
.ye4{bottom:418.615200px;}
.y1d7{bottom:421.747200px;}
.yb9{bottom:422.642700px;}
.y83{bottom:424.252050px;}
.y17f{bottom:424.910550px;}
.y25{bottom:425.067000px;}
.y19c{bottom:428.146800px;}
.y16c{bottom:431.146800px;}
.y20a{bottom:431.267700px;}
.y4a{bottom:431.374350px;}
.y142{bottom:433.414500px;}
.y249{bottom:434.055150px;}
.y1d6{bottom:441.241200px;}
.y24{bottom:441.567000px;}
.yb8{bottom:442.142700px;}
.y82{bottom:443.752050px;}
.y10e{bottom:444.410550px;}
.ye3{bottom:446.619150px;}
.y19b{bottom:447.646800px;}
.y209{bottom:449.267700px;}
.y49{bottom:450.868350px;}
.y248{bottom:452.055150px;}
.y141{bottom:452.914500px;}
.y267{bottom:453.307050px;}
.y16b{bottom:459.150600px;}
.y1d5{bottom:460.735200px;}
.y81{bottom:463.252050px;}
.y10d{bottom:463.910550px;}
.y19a{bottom:467.146800px;}
.y208{bottom:467.267700px;}
.ye2{bottom:469.119150px;}
.y266{bottom:469.807050px;}
.y247{bottom:470.055150px;}
.yb7{bottom:470.146800px;}
.y48{bottom:470.362350px;}
.y140{bottom:472.414500px;}
.y1d4{bottom:480.229200px;}
.y80{bottom:482.752050px;}
.y10c{bottom:483.410550px;}
.y207{bottom:485.267700px;}
.y265{bottom:486.307050px;}
.y199{bottom:486.646800px;}
.y246{bottom:488.055150px;}
.yb6{bottom:489.646800px;}
.y47{bottom:489.856350px;}
.y13f{bottom:491.914500px;}
.y7f{bottom:502.252050px;}
.y264{bottom:502.807050px;}
.yc{bottom:502.864502px;}
.y10b{bottom:502.910550px;}
.y206{bottom:503.267700px;}
.y245{bottom:506.055150px;}
.y1d3{bottom:508.228200px;}
.yb5{bottom:509.146800px;}
.y46{bottom:509.350350px;}
.y13e{bottom:511.414500px;}
.y198{bottom:514.650600px;}
.y263{bottom:519.307050px;}
.yb{bottom:520.864502px;}
.y205{bottom:521.267700px;}
.ye1{bottom:521.382900px;}
.y7e{bottom:521.752050px;}
.y10a{bottom:522.410550px;}
.y244{bottom:524.055150px;}
.y1d2{bottom:527.722200px;}
.yb4{bottom:528.646800px;}
.y45{bottom:528.844350px;}
.y13d{bottom:530.914500px;}
.y197{bottom:534.150600px;}
.y262{bottom:535.807050px;}
.ya{bottom:538.864499px;}
.y204{bottom:539.267700px;}
.ye0{bottom:540.882900px;}
.y243{bottom:542.055150px;}
.y1d1{bottom:547.216200px;}
.y44{bottom:548.338350px;}
.y7d{bottom:549.756000px;}
.y109{bottom:550.414500px;}
.y261{bottom:552.307050px;}
.y196{bottom:553.650600px;}
.yb3{bottom:556.650600px;}
.y9{bottom:556.864499px;}
.y203{bottom:557.267700px;}
.y242{bottom:560.055150px;}
.ydf{bottom:560.382900px;}
.y1d0{bottom:566.710200px;}
.y43{bottom:567.832350px;}
.y260{bottom:568.807050px;}
.y7c{bottom:569.256000px;}
.y108{bottom:569.914500px;}
.y195{bottom:573.150600px;}
.y202{bottom:575.267700px;}
.yb2{bottom:576.150600px;}
.y241{bottom:578.055150px;}
.yde{bottom:579.882900px;}
.y25f{bottom:585.307050px;}
.y1cf{bottom:586.204200px;}
.y42{bottom:587.326350px;}
.y7b{bottom:588.756000px;}
.y107{bottom:589.414500px;}
.y194{bottom:592.650600px;}
.y201{bottom:593.267700px;}
.yb1{bottom:595.650600px;}
.y240{bottom:596.055150px;}
.y1ce{bottom:605.698200px;}
.y41{bottom:606.820350px;}
.y7a{bottom:608.256000px;}
.y106{bottom:608.914500px;}
.y200{bottom:611.267700px;}
.ydd{bottom:612.138900px;}
.y193{bottom:612.150600px;}
.y23f{bottom:614.055150px;}
.yb0{bottom:615.150600px;}
.y13c{bottom:617.418300px;}
.y1cd{bottom:625.192200px;}
.y40{bottom:626.314350px;}
.y105{bottom:628.414500px;}
.y1ff{bottom:629.267700px;}
.ydc{bottom:631.638900px;}
.y192{bottom:631.650600px;}
.y23e{bottom:632.055150px;}
.yaf{bottom:634.650600px;}
.y79{bottom:636.259950px;}
.y13b{bottom:636.918300px;}
.y1cc{bottom:644.686200px;}
.y8{bottom:645.510000px;}
.y1fe{bottom:647.267700px;}
.y104{bottom:647.914500px;}
.y23d{bottom:650.055150px;}
.ydb{bottom:651.138900px;}
.y191{bottom:651.150600px;}
.yae{bottom:654.150600px;}
.y3f{bottom:654.313350px;}
.y78{bottom:655.759950px;}
.y13a{bottom:656.418300px;}
.y136{bottom:661.192950px;}
.y1cb{bottom:664.180200px;}
.y1fd{bottom:665.267700px;}
.y7{bottom:666.771000px;}
.y16a{bottom:667.414500px;}
.y23c{bottom:668.055150px;}
.yda{bottom:670.638900px;}
.y190{bottom:670.650600px;}
.yad{bottom:673.650600px;}
.y3e{bottom:673.807350px;}
.y77{bottom:675.259950px;}
.y103{bottom:675.918300px;}
.y135{bottom:677.692950px;}
.y1fc{bottom:683.267700px;}
.y1ca{bottom:683.674200px;}
.y23b{bottom:686.055150px;}
.y169{bottom:686.914500px;}
.yd9{bottom:690.138900px;}
.yac{bottom:693.150600px;}
.y3d{bottom:693.301350px;}
.y76{bottom:694.759950px;}
.y102{bottom:695.418300px;}
.y18f{bottom:698.654550px;}
.y1fb{bottom:701.267700px;}
.y23a{bottom:704.055150px;}
.y1c9{bottom:711.673200px;}
.y3c{bottom:712.795350px;}
.y75{bottom:714.259950px;}
.y101{bottom:714.918300px;}
.yd8{bottom:718.142700px;}
.y1fa{bottom:719.267700px;}
.yab{bottom:721.154550px;}
.y239{bottom:722.055150px;}
.y6{bottom:726.298500px;}
.y1c8{bottom:731.167200px;}
.y100{bottom:734.418300px;}
.y1f9{bottom:737.267700px;}
.yd7{bottom:737.642700px;}
.y238{bottom:740.055150px;}
.yaa{bottom:740.654550px;}
.y3b{bottom:740.799150px;}
.y74{bottom:742.263900px;}
.y17e{bottom:742.922250px;}
.y1c7{bottom:750.661200px;}
.y3{bottom:752.599495px;}
.y128{bottom:753.918300px;}
.y1f8{bottom:755.267700px;}
.y237{bottom:758.055150px;}
.ya9{bottom:760.154550px;}
.y73{bottom:761.763900px;}
.yff{bottom:762.422250px;}
.yd6{bottom:765.646800px;}
.y1c6{bottom:770.155200px;}
.y1f7{bottom:773.267700px;}
.y127{bottom:773.418300px;}
.y236{bottom:776.055150px;}
.ya8{bottom:779.654550px;}
.y72{bottom:781.263750px;}
.yfe{bottom:781.922250px;}
.yd5{bottom:785.146800px;}
.y1c5{bottom:789.649200px;}
.y1f6{bottom:791.267700px;}
.y126{bottom:792.918300px;}
.y235{bottom:794.055150px;}
.ya7{bottom:799.154550px;}
.y71{bottom:800.763750px;}
.yfd{bottom:801.422250px;}
.y1c4{bottom:809.143200px;}
.y1f5{bottom:809.267700px;}
.y234{bottom:812.055150px;}
.y155{bottom:812.418300px;}
.yd4{bottom:817.402650px;}
.y70{bottom:820.263750px;}
.yfc{bottom:820.922400px;}
.ya6{bottom:827.158500px;}
.y1f4{bottom:827.267700px;}
.y1c3{bottom:828.637200px;}
.y233{bottom:830.055150px;}
.y18e{bottom:831.918300px;}
.y3a{bottom:832.747950px;}
.y6f{bottom:839.763750px;}
.y125{bottom:840.422400px;}
.y1f3{bottom:845.267700px;}
.yd3{bottom:845.406600px;}
.ya5{bottom:846.658500px;}
.y232{bottom:848.055150px;}
.y1c2{bottom:848.131200px;}
.yfb{bottom:848.926200px;}
.y18d{bottom:851.418300px;}
.y124{bottom:859.922400px;}
.y1f2{bottom:863.267700px;}
.yd2{bottom:864.906600px;}
.y231{bottom:866.055150px;}
.ya4{bottom:866.158500px;}
.y1c1{bottom:867.625200px;}
.y6e{bottom:867.767700px;}
.yfa{bottom:868.426200px;}
.y18c{bottom:870.918300px;}
.y2{bottom:879.369000px;}
.y123{bottom:879.422400px;}
.y1f1{bottom:881.267700px;}
.y230{bottom:884.055150px;}
.yd1{bottom:884.406600px;}
.ya3{bottom:885.658500px;}
.y1c0{bottom:887.119200px;}
.yf9{bottom:887.926200px;}
.y18b{bottom:890.418300px;}
.y122{bottom:898.922400px;}
.y1f0{bottom:899.267700px;}
.y22f{bottom:902.055150px;}
.yd0{bottom:903.906600px;}
.y1bf{bottom:906.613200px;}
.yf8{bottom:907.426200px;}
.ya2{bottom:913.662450px;}
.y23{bottom:914.179200px;}
.y39{bottom:914.200350px;}
.y6d{bottom:915.779550px;}
.y1ef{bottom:917.267700px;}
.y139{bottom:918.422400px;}
.y22e{bottom:920.055150px;}
.y1be{bottom:926.107200px;}
.yf7{bottom:926.926200px;}
.y1ee{bottom:935.267700px;}
.y6c{bottom:935.279550px;}
.ycf{bottom:936.162450px;}
.y138{bottom:937.922400px;}
.y22d{bottom:938.055150px;}
.yf6{bottom:946.426200px;}
.y1ed{bottom:953.267700px;}
.y1bd{bottom:954.106200px;}
.y22c{bottom:956.055150px;}
.y38{bottom:956.186850px;}
.y137{bottom:957.422400px;}
.y6b{bottom:963.283500px;}
.yce{bottom:964.166400px;}
.ya1{bottom:965.926200px;}
.y1{bottom:966.726000px;}
.y1ec{bottom:971.267700px;}
.y1bc{bottom:973.600200px;}
.y22b{bottom:974.055150px;}
.y18a{bottom:976.922400px;}
.y6a{bottom:982.783500px;}
.ya0{bottom:985.426200px;}
.y1eb{bottom:989.267700px;}
.y22a{bottom:992.055150px;}
.ycd{bottom:992.170350px;}
.y1bb{bottom:993.094200px;}
.y189{bottom:996.422400px;}
.y37{bottom:998.173350px;}
.y9f{bottom:1004.926200px;}
.y229{bottom:1010.055150px;}
.y69{bottom:1010.787450px;}
.y1ba{bottom:1012.588200px;}
.y1ea{bottom:1015.771800px;}
.y188{bottom:1015.922400px;}
.y9e{bottom:1024.426200px;}
.y228{bottom:1028.055150px;}
.y68{bottom:1038.791400px;}
.y1b9{bottom:1040.587200px;}
.ycc{bottom:1043.926200px;}
.y227{bottom:1046.055150px;}
.y9d{bottom:1052.430150px;}
.y67{bottom:1058.291400px;}
.y1b8{bottom:1060.081200px;}
.y121{bottom:1063.426200px;}
.y1e9{bottom:1063.783500px;}
.y226{bottom:1064.055150px;}
.y22{bottom:1070.929200px;}
.y9c{bottom:1071.930150px;}
.y1b7{bottom:1079.575200px;}
.y1e8{bottom:1080.283500px;}
.y225{bottom:1082.055150px;}
.y154{bottom:1082.926200px;}
.y66{bottom:1086.295350px;}
.y9b{bottom:1091.430150px;}
.y1b6{bottom:1099.069200px;}
.y224{bottom:1100.055150px;}
.y153{bottom:1102.426200px;}
.y1e7{bottom:1105.287450px;}
.y9a{bottom:1110.930150px;}
.y223{bottom:1118.055150px;}
.y65{bottom:1118.551200px;}
.y1b5{bottom:1118.563200px;}
.y99{bottom:1130.430150px;}
.y222{bottom:1136.055150px;}
.y168{bottom:1137.168150px;}
.y61{bottom:1137.180150px;}
.y64{bottom:1138.051200px;}
.y1b4{bottom:1138.057200px;}
.y98{bottom:1149.930150px;}
.y167{bottom:1150.671150px;}
.y60{bottom:1150.680150px;}
.y221{bottom:1154.055150px;}
.y63{bottom:1157.551200px;}
.y166{bottom:1164.174150px;}
.y5f{bottom:1164.180150px;}
.y97{bottom:1169.430150px;}
.y220{bottom:1172.055150px;}
.y165{bottom:1177.677150px;}
.y5e{bottom:1177.680150px;}
.y62{bottom:1185.555150px;}
.y96{bottom:1188.930150px;}
.y21f{bottom:1190.055150px;}
.y5d{bottom:1191.180150px;}
.h7{height:32.130000px;}
.h12{height:32.340000px;}
.h11{height:32.424000px;}
.h13{height:34.482000px;}
.hb{height:37.056000px;}
.hd{height:37.536000px;}
.hc{height:39.408000px;}
.h10{height:44.334000px;}
.h6{height:45.900000px;}
.h9{height:46.200000px;}
.ha{height:46.320000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hf{height:55.584000px;}
.h5{height:78.030000px;}
.he{height:106.260000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.xa{left:68.031450px;}
.x7{left:89.291250px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x6{left:663.306150px;}
.x5{left:766.926150px;}
.x8{left:815.713800px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.ls1f{letter-spacing:-3.157333pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.912000pt;}
.ls16{letter-spacing:-0.720000pt;}
.ls21{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.497493pt;}
.ls5{letter-spacing:-0.490667pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.085333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000117pt;}
.lsd{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.190933pt;}
.lsb{letter-spacing:0.191467pt;}
.lsa{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.238933pt;}
.ls1a{letter-spacing:0.239467pt;}
.ls18{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.286933pt;}
.ls1e{letter-spacing:0.287467pt;}
.ls1b{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.336000pt;}
.ls11{letter-spacing:0.623467pt;}
.ls10{letter-spacing:0.624000pt;}
.ls1c{letter-spacing:1.120000pt;}
.ls2{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.600000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls9{letter-spacing:2.240000pt;}
.ls12{letter-spacing:3.557867pt;}
.ls1{letter-spacing:4.000000pt;}
.ws5{word-spacing:-18.176000pt;}
.ws1{word-spacing:-17.546667pt;}
.ws7e{word-spacing:-12.192000pt;}
.ws2{word-spacing:-12.117333pt;}
.wsb1{word-spacing:-12.048000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws26{word-spacing:-11.573333pt;}
.ws27{word-spacing:-11.386667pt;}
.ws12b{word-spacing:-10.837333pt;}
.ws12a{word-spacing:-10.752000pt;}
.ws4{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.453333pt;}
.ws12c{word-spacing:-10.154667pt;}
.ws25{word-spacing:-9.482667pt;}
.ws128{word-spacing:-7.509333pt;}
.ws127{word-spacing:-6.218667pt;}
.ws1c{word-spacing:-5.856000pt;}
.ws12d{word-spacing:-5.721173pt;}
.ws108{word-spacing:-5.232000pt;}
.wsab{word-spacing:-3.984000pt;}
.wsd7{word-spacing:-3.840000pt;}
.ws19{word-spacing:-3.552000pt;}
.ws96{word-spacing:-3.408000pt;}
.ws3c{word-spacing:-2.880000pt;}
.ws3d{word-spacing:-2.832000pt;}
.ws7{word-spacing:-2.453333pt;}
.ws21{word-spacing:-2.400000pt;}
.ws54{word-spacing:-2.352000pt;}
.ws3e{word-spacing:-2.304000pt;}
.ws106{word-spacing:-2.256000pt;}
.ws70{word-spacing:-2.208000pt;}
.ws5c{word-spacing:-2.160000pt;}
.wscf{word-spacing:-2.112000pt;}
.ws109{word-spacing:-2.064000pt;}
.ws50{word-spacing:-2.016000pt;}
.ws33{word-spacing:-1.968000pt;}
.wsff{word-spacing:-1.920000pt;}
.ws56{word-spacing:-1.872000pt;}
.wsa7{word-spacing:-1.824000pt;}
.ws55{word-spacing:-1.776000pt;}
.ws15{word-spacing:-1.728000pt;}
.ws8{word-spacing:-1.632000pt;}
.wsdf{word-spacing:-1.584000pt;}
.wsc0{word-spacing:-1.536000pt;}
.wse5{word-spacing:-1.488000pt;}
.wsaa{word-spacing:-1.440000pt;}
.ws4b{word-spacing:-1.392000pt;}
.ws78{word-spacing:-1.344000pt;}
.ws44{word-spacing:-1.296000pt;}
.ws24{word-spacing:-1.200000pt;}
.wscd{word-spacing:-1.056000pt;}
.ws4a{word-spacing:-0.960000pt;}
.wsba{word-spacing:-0.912000pt;}
.wsec{word-spacing:-0.864000pt;}
.wsbf{word-spacing:-0.816000pt;}
.ws13{word-spacing:-0.768000pt;}
.wsa3{word-spacing:-0.720000pt;}
.ws43{word-spacing:-0.672000pt;}
.ws4e{word-spacing:-0.624000pt;}
.ws17{word-spacing:-0.576000pt;}
.ws22{word-spacing:-0.528000pt;}
.wsdd{word-spacing:-0.480000pt;}
.wsbe{word-spacing:-0.432000pt;}
.ws2c{word-spacing:-0.384000pt;}
.wseb{word-spacing:-0.336000pt;}
.ws12e{word-spacing:-0.298667pt;}
.ws73{word-spacing:-0.288000pt;}
.wsa5{word-spacing:-0.240000pt;}
.ws85{word-spacing:-0.192000pt;}
.wsb8{word-spacing:-0.144000pt;}
.ws8d{word-spacing:-0.096000pt;}
.wsa1{word-spacing:-0.048000pt;}
.ws129{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.048000pt;}
.wse1{word-spacing:0.096000pt;}
.ws84{word-spacing:0.144000pt;}
.ws23{word-spacing:0.192000pt;}
.ws3b{word-spacing:0.240000pt;}
.wsf3{word-spacing:0.288000pt;}
.ws10a{word-spacing:0.336000pt;}
.ws39{word-spacing:0.432000pt;}
.wsb0{word-spacing:0.480000pt;}
.ws8c{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.672000pt;}
.ws6b{word-spacing:0.720000pt;}
.ws14{word-spacing:0.816000pt;}
.ws45{word-spacing:0.864000pt;}
.ws1a{word-spacing:0.912000pt;}
.ws1d{word-spacing:0.960000pt;}
.ws16{word-spacing:1.056000pt;}
.wse9{word-spacing:1.104000pt;}
.wsf{word-spacing:1.152000pt;}
.ws89{word-spacing:1.200000pt;}
.ws110{word-spacing:1.248000pt;}
.wsd6{word-spacing:1.296000pt;}
.ws29{word-spacing:1.392000pt;}
.ws52{word-spacing:1.440000pt;}
.ws6f{word-spacing:1.536000pt;}
.wsd3{word-spacing:1.584000pt;}
.wsc2{word-spacing:1.632000pt;}
.wse7{word-spacing:1.680000pt;}
.ws124{word-spacing:1.728000pt;}
.ws111{word-spacing:1.776000pt;}
.wsa8{word-spacing:1.824000pt;}
.ws57{word-spacing:1.872000pt;}
.ws53{word-spacing:1.920000pt;}
.wsc3{word-spacing:1.968000pt;}
.ws1b{word-spacing:2.016000pt;}
.wsc6{word-spacing:2.160000pt;}
.wsca{word-spacing:2.208000pt;}
.ws93{word-spacing:2.256000pt;}
.ws117{word-spacing:2.304000pt;}
.wsac{word-spacing:2.352000pt;}
.wsb9{word-spacing:2.400000pt;}
.wsc1{word-spacing:2.448000pt;}
.ws66{word-spacing:2.496000pt;}
.ws42{word-spacing:2.544000pt;}
.ws35{word-spacing:2.592000pt;}
.wsd5{word-spacing:2.640000pt;}
.ws72{word-spacing:2.688000pt;}
.wscb{word-spacing:2.736000pt;}
.ws32{word-spacing:2.832000pt;}
.ws61{word-spacing:2.880000pt;}
.ws88{word-spacing:2.928000pt;}
.ws68{word-spacing:2.976000pt;}
.wsd0{word-spacing:3.024000pt;}
.ws65{word-spacing:3.072000pt;}
.wsf4{word-spacing:3.120000pt;}
.ws38{word-spacing:3.168000pt;}
.ws67{word-spacing:3.216000pt;}
.wsef{word-spacing:3.264000pt;}
.wsaf{word-spacing:3.312000pt;}
.wsf0{word-spacing:3.408000pt;}
.ws74{word-spacing:3.456000pt;}
.ws105{word-spacing:3.504000pt;}
.ws69{word-spacing:3.552000pt;}
.ws12{word-spacing:3.600000pt;}
.wsb4{word-spacing:3.648000pt;}
.ws86{word-spacing:3.696000pt;}
.wsd1{word-spacing:3.744000pt;}
.wsb7{word-spacing:3.792000pt;}
.wsa{word-spacing:3.840000pt;}
.ws46{word-spacing:3.888000pt;}
.ws101{word-spacing:3.936000pt;}
.ws71{word-spacing:4.032000pt;}
.wse2{word-spacing:4.080000pt;}
.ws8b{word-spacing:4.128000pt;}
.ws40{word-spacing:4.176000pt;}
.ws102{word-spacing:4.224000pt;}
.ws18{word-spacing:4.272000pt;}
.wsdb{word-spacing:4.320000pt;}
.ws2f{word-spacing:4.368000pt;}
.wsfb{word-spacing:4.416000pt;}
.ws9f{word-spacing:4.464000pt;}
.wsea{word-spacing:4.512000pt;}
.ws9b{word-spacing:4.560000pt;}
.ws122{word-spacing:4.608000pt;}
.ws49{word-spacing:4.656000pt;}
.ws77{word-spacing:4.704000pt;}
.wsc9{word-spacing:4.752000pt;}
.ws11f{word-spacing:4.800000pt;}
.ws7c{word-spacing:4.848000pt;}
.ws36{word-spacing:4.896000pt;}
.ws107{word-spacing:4.992000pt;}
.wse8{word-spacing:5.136000pt;}
.ws48{word-spacing:5.184000pt;}
.ws99{word-spacing:5.232000pt;}
.wscc{word-spacing:5.280000pt;}
.wsae{word-spacing:5.328000pt;}
.wsc5{word-spacing:5.472000pt;}
.ws7b{word-spacing:5.520000pt;}
.ws64{word-spacing:5.616000pt;}
.ws4f{word-spacing:5.664000pt;}
.ws3f{word-spacing:5.712000pt;}
.ws119{word-spacing:5.808000pt;}
.ws41{word-spacing:5.856000pt;}
.wsd2{word-spacing:5.904000pt;}
.ws11c{word-spacing:5.952000pt;}
.wsa6{word-spacing:6.000000pt;}
.ws9a{word-spacing:6.096000pt;}
.ws10{word-spacing:6.192000pt;}
.ws112{word-spacing:6.288000pt;}
.ws5b{word-spacing:6.384000pt;}
.ws9d{word-spacing:6.480000pt;}
.ws1f{word-spacing:6.528000pt;}
.wsbc{word-spacing:6.576000pt;}
.ws34{word-spacing:6.624000pt;}
.ws7a{word-spacing:6.720000pt;}
.ws83{word-spacing:6.768000pt;}
.wsa4{word-spacing:6.816000pt;}
.ws103{word-spacing:6.864000pt;}
.wsa9{word-spacing:6.912000pt;}
.ws2e{word-spacing:6.960000pt;}
.ws4d{word-spacing:7.056000pt;}
.wsc7{word-spacing:7.104000pt;}
.ws95{word-spacing:7.152000pt;}
.wsbd{word-spacing:7.200000pt;}
.wsce{word-spacing:7.248000pt;}
.ws10c{word-spacing:7.296000pt;}
.wsf1{word-spacing:7.344000pt;}
.ws81{word-spacing:7.392000pt;}
.ws60{word-spacing:7.440000pt;}
.wsf9{word-spacing:7.536000pt;}
.wsed{word-spacing:7.632000pt;}
.ws4c{word-spacing:7.728000pt;}
.wsd8{word-spacing:7.776000pt;}
.ws79{word-spacing:7.824000pt;}
.ws98{word-spacing:7.872000pt;}
.ws28{word-spacing:7.920000pt;}
.wsd4{word-spacing:8.064000pt;}
.wsa2{word-spacing:8.160000pt;}
.ws9e{word-spacing:8.256000pt;}
.ws118{word-spacing:8.304000pt;}
.wse0{word-spacing:8.352000pt;}
.wsee{word-spacing:8.400000pt;}
.ws5f{word-spacing:8.448000pt;}
.ws62{word-spacing:8.496000pt;}
.ws123{word-spacing:8.544000pt;}
.ws10d{word-spacing:8.592000pt;}
.wsb{word-spacing:8.640000pt;}
.wsc{word-spacing:8.736000pt;}
.wsdc{word-spacing:8.784000pt;}
.ws8e{word-spacing:8.832000pt;}
.wsb3{word-spacing:8.880000pt;}
.ws121{word-spacing:8.928000pt;}
.wsc4{word-spacing:9.024000pt;}
.ws8a{word-spacing:9.168000pt;}
.ws58{word-spacing:9.264000pt;}
.wsde{word-spacing:9.312000pt;}
.ws6d{word-spacing:9.360000pt;}
.ws10e{word-spacing:9.456000pt;}
.ws6a{word-spacing:9.552000pt;}
.ws97{word-spacing:9.696000pt;}
.ws8f{word-spacing:9.744000pt;}
.wsc8{word-spacing:9.792000pt;}
.wse{word-spacing:9.936000pt;}
.ws59{word-spacing:10.032000pt;}
.ws6e{word-spacing:10.080000pt;}
.wsb6{word-spacing:10.176000pt;}
.ws51{word-spacing:10.224000pt;}
.ws9{word-spacing:10.272000pt;}
.ws11{word-spacing:10.320000pt;}
.ws120{word-spacing:10.416000pt;}
.ws11e{word-spacing:10.464000pt;}
.ws63{word-spacing:10.512000pt;}
.ws5e{word-spacing:10.560000pt;}
.ws20{word-spacing:10.608000pt;}
.wse3{word-spacing:10.656000pt;}
.ws91{word-spacing:10.752000pt;}
.ws87{word-spacing:10.944000pt;}
.wse4{word-spacing:11.376000pt;}
.ws7f{word-spacing:11.424000pt;}
.wsfc{word-spacing:11.520000pt;}
.ws5d{word-spacing:11.568000pt;}
.ws7d{word-spacing:11.664000pt;}
.ws2a{word-spacing:11.952000pt;}
.wsfe{word-spacing:12.144000pt;}
.ws3a{word-spacing:12.192000pt;}
.wsf2{word-spacing:12.240000pt;}
.wsad{word-spacing:12.288000pt;}
.ws94{word-spacing:12.480000pt;}
.ws9c{word-spacing:12.528000pt;}
.ws11d{word-spacing:12.624000pt;}
.ws10b{word-spacing:12.720000pt;}
.ws80{word-spacing:12.816000pt;}
.ws31{word-spacing:12.960000pt;}
.wsb5{word-spacing:13.056000pt;}
.ws76{word-spacing:13.248000pt;}
.ws11a{word-spacing:13.296000pt;}
.ws30{word-spacing:13.392000pt;}
.ws114{word-spacing:13.632000pt;}
.wsf8{word-spacing:13.872000pt;}
.wsf5{word-spacing:14.112000pt;}
.ws125{word-spacing:14.160000pt;}
.ws5a{word-spacing:14.208000pt;}
.wsda{word-spacing:14.352000pt;}
.wsfd{word-spacing:14.592000pt;}
.ws11b{word-spacing:14.688000pt;}
.ws47{word-spacing:14.832000pt;}
.ws115{word-spacing:14.928000pt;}
.wsbb{word-spacing:14.976000pt;}
.wse6{word-spacing:15.024000pt;}
.ws37{word-spacing:15.072000pt;}
.ws113{word-spacing:15.120000pt;}
.ws82{word-spacing:15.840000pt;}
.ws75{word-spacing:16.224000pt;}
.wsd9{word-spacing:17.040000pt;}
.wsfa{word-spacing:17.280000pt;}
.ws6c{word-spacing:17.616000pt;}
.ws90{word-spacing:17.760000pt;}
.ws92{word-spacing:17.808000pt;}
.ws116{word-spacing:17.952000pt;}
.wsa0{word-spacing:19.296000pt;}
.ws100{word-spacing:19.584000pt;}
.ws104{word-spacing:21.840000pt;}
.ws126{word-spacing:22.800000pt;}
.wsf6{word-spacing:23.184000pt;}
.wsd{word-spacing:23.376000pt;}
.ws10f{word-spacing:23.568000pt;}
.wsb2{word-spacing:24.192000pt;}
.wsf7{word-spacing:26.640000pt;}
.ws2b{word-spacing:34.512000pt;}
._7{margin-left:-586.899733pt;}
._4{margin-left:-585.944000pt;}
._9{margin-left:-584.894933pt;}
._2{margin-left:-5.781333pt;}
._8{margin-left:-4.288000pt;}
._1{margin-left:-3.173333pt;}
._0{margin-left:-1.664000pt;}
._3{width:1.008000pt;}
._e{width:2.560000pt;}
._c{width:4.582400pt;}
._b{width:6.705067pt;}
._6{width:9.022933pt;}
._5{width:23.606933pt;}
._d{width:46.764800pt;}
._a{width:58.938133pt;}
.fs9{font-size:24.874667pt;}
.fs8{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y164{bottom:40.805867pt;}
.y187{bottom:42.330800pt;}
.y95{bottom:42.435733pt;}
.y134{bottom:48.364933pt;}
.ycb{bottom:48.564400pt;}
.y25e{bottom:49.826800pt;}
.y1e6{bottom:51.563067pt;}
.y1ae{bottom:53.456667pt;}
.y17d{bottom:56.123333pt;}
.y5c{bottom:56.419867pt;}
.y36{bottom:56.696000pt;}
.y163{bottom:58.139200pt;}
.y5{bottom:59.133337pt;}
.y94{bottom:59.769067pt;}
.y120{bottom:60.354400pt;}
.y27b{bottom:60.472400pt;}
.yf5{bottom:62.317600pt;}
.y21e{bottom:63.349067pt;}
.y152{bottom:63.682400pt;}
.y133{bottom:65.698267pt;}
.y25d{bottom:65.826800pt;}
.yca{bottom:65.897733pt;}
.y1ad{bottom:70.790000pt;}
.y35{bottom:71.362667pt;}
.y17c{bottom:73.456667pt;}
.y5b{bottom:73.747867pt;}
.y27a{bottom:75.139067pt;}
.y162{bottom:75.472533pt;}
.y93{bottom:77.102400pt;}
.y11f{bottom:77.687733pt;}
.y21d{bottom:79.349067pt;}
.yf4{bottom:79.650933pt;}
.y1e5{bottom:80.231067pt;}
.y151{bottom:81.015733pt;}
.y25c{bottom:81.826800pt;}
.y132{bottom:83.031600pt;}
.yc9{bottom:83.231067pt;}
.y34{bottom:86.029333pt;}
.y4{bottom:86.333337pt;}
.y1ac{bottom:88.123333pt;}
.y279{bottom:89.805733pt;}
.y17b{bottom:90.790000pt;}
.y5a{bottom:91.075867pt;}
.y161{bottom:92.805867pt;}
.y92{bottom:94.435733pt;}
.y11e{bottom:95.021067pt;}
.y21c{bottom:95.349067pt;}
.yf3{bottom:96.984267pt;}
.y25b{bottom:97.826800pt;}
.y150{bottom:98.349067pt;}
.y131{bottom:100.364933pt;}
.yc8{bottom:100.564400pt;}
.y33{bottom:100.696000pt;}
.y1b3{bottom:102.580133pt;}
.y278{bottom:104.472400pt;}
.y1e4{bottom:105.123333pt;}
.y17a{bottom:108.123333pt;}
.y59{bottom:108.403867pt;}
.y160{bottom:110.139200pt;}
.y21b{bottom:111.349067pt;}
.y11d{bottom:112.354400pt;}
.y1ab{bottom:113.015733pt;}
.y25a{bottom:113.826800pt;}
.y32{bottom:115.362667pt;}
.y14f{bottom:115.682400pt;}
.y130{bottom:117.698267pt;}
.yc7{bottom:117.897733pt;}
.y91{bottom:119.328133pt;}
.y1b2{bottom:119.913467pt;}
.yf2{bottom:121.876667pt;}
.y277{bottom:122.918667pt;}
.y21{bottom:123.790666pt;}
.y179{bottom:125.456667pt;}
.y58{bottom:125.731867pt;}
.y21a{bottom:127.349067pt;}
.y15f{bottom:127.472533pt;}
.y259{bottom:129.826800pt;}
.y31{bottom:130.029333pt;}
.y1aa{bottom:130.349067pt;}
.y14e{bottom:133.015733pt;}
.y12f{bottom:135.031600pt;}
.yc6{bottom:135.231067pt;}
.y90{bottom:136.661467pt;}
.y11c{bottom:137.246800pt;}
.y276{bottom:137.585333pt;}
.yf1{bottom:139.210000pt;}
.y178{bottom:142.790000pt;}
.y57{bottom:143.059867pt;}
.y219{bottom:143.349067pt;}
.y30{bottom:144.696000pt;}
.y15e{bottom:144.805867pt;}
.y258{bottom:145.826800pt;}
.y1a9{bottom:147.682400pt;}
.y14d{bottom:150.349067pt;}
.y1e3{bottom:151.830400pt;}
.y275{bottom:152.252000pt;}
.yc5{bottom:152.564400pt;}
.y8f{bottom:153.994800pt;}
.y11b{bottom:154.580133pt;}
.yf0{bottom:156.543333pt;}
.y218{bottom:159.349067pt;}
.y2f{bottom:159.362667pt;}
.y12e{bottom:159.923867pt;}
.y177{bottom:160.123333pt;}
.y56{bottom:160.387867pt;}
.y257{bottom:161.826800pt;}
.y1a8{bottom:165.015733pt;}
.y274{bottom:166.918667pt;}
.y14c{bottom:167.682400pt;}
.y1e2{bottom:169.158400pt;}
.y15d{bottom:169.698267pt;}
.yc4{bottom:169.897733pt;}
.y8e{bottom:171.328133pt;}
.y11a{bottom:171.913467pt;}
.yef{bottom:173.876667pt;}
.y2e{bottom:174.029333pt;}
.y18{bottom:175.052000pt;}
.y217{bottom:175.349067pt;}
.y12d{bottom:177.257200pt;}
.y176{bottom:177.456667pt;}
.y55{bottom:177.715867pt;}
.y256{bottom:177.826800pt;}
.y273{bottom:181.585333pt;}
.y1a7{bottom:182.349067pt;}
.y186{bottom:185.015733pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1e1{bottom:186.486400pt;}
.y15c{bottom:187.031600pt;}
.yc3{bottom:187.231067pt;}
.y8d{bottom:188.661467pt;}
.y119{bottom:189.246800pt;}
.yee{bottom:191.210000pt;}
.y216{bottom:191.349067pt;}
.y14b{bottom:192.574933pt;}
.y255{bottom:193.826800pt;}
.y12c{bottom:194.590533pt;}
.y175{bottom:194.790000pt;}
.y54{bottom:195.043867pt;}
.y272{bottom:196.252000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1a6{bottom:199.682400pt;}
.y185{bottom:202.349067pt;}
.y1e0{bottom:203.814400pt;}
.y15b{bottom:204.364933pt;}
.y8c{bottom:205.994800pt;}
.y118{bottom:206.580133pt;}
.y215{bottom:207.349067pt;}
.yed{bottom:208.543333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y254{bottom:209.826800pt;}
.y14a{bottom:209.908267pt;}
.y271{bottom:210.918667pt;}
.y2d{bottom:211.373333pt;}
.y12b{bottom:211.923867pt;}
.yc2{bottom:212.123333pt;}
.y53{bottom:212.371867pt;}
.y1b1{bottom:214.139200pt;}
.y1a5{bottom:217.015733pt;}
.y184{bottom:219.682400pt;}
.y1df{bottom:221.142400pt;}
.y15a{bottom:221.698267pt;}
.y8b{bottom:223.328133pt;}
.y214{bottom:223.349067pt;}
.y117{bottom:223.913467pt;}
.y270{bottom:225.585333pt;}
.y253{bottom:225.826800pt;}
.y2c{bottom:226.040000pt;}
.y149{bottom:227.241600pt;}
.y12a{bottom:229.257200pt;}
.yc1{bottom:229.456667pt;}
.y52{bottom:229.699867pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1b0{bottom:231.472533pt;}
.yec{bottom:233.435733pt;}
.y1a4{bottom:234.349067pt;}
.y174{bottom:237.015733pt;}
.y159{bottom:239.031600pt;}
.y213{bottom:239.349067pt;}
.y26f{bottom:240.251867pt;}
.y8a{bottom:240.661467pt;}
.y2b{bottom:240.706667pt;}
.y116{bottom:241.246800pt;}
.y252{bottom:241.826800pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y148{bottom:244.574933pt;}
.y1de{bottom:246.030400pt;}
.y129{bottom:246.590533pt;}
.yc0{bottom:246.790000pt;}
.y51{bottom:247.027867pt;}
.y1af{bottom:248.805867pt;}
.yeb{bottom:250.769067pt;}
.y1a3{bottom:251.682400pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y173{bottom:254.349067pt;}
.y26e{bottom:254.918533pt;}
.y212{bottom:255.349067pt;}
.y2a{bottom:255.373333pt;}
.y158{bottom:256.364933pt;}
.y251{bottom:257.826800pt;}
.y89{bottom:257.994800pt;}
.y1dd{bottom:263.358400pt;}
.ybf{bottom:264.123333pt;}
.y115{bottom:266.139200pt;}
.yea{bottom:268.102400pt;}
.y1a2{bottom:269.015733pt;}
.y147{bottom:269.467200pt;}
.y26d{bottom:269.585200pt;}
.y211{bottom:271.349067pt;}
.y172{bottom:271.682400pt;}
.y50{bottom:271.915867pt;}
.y157{bottom:273.698267pt;}
.y250{bottom:273.826800pt;}
.y88{bottom:275.328133pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1dc{bottom:280.686400pt;}
.ybe{bottom:281.456667pt;}
.y114{bottom:283.472533pt;}
.y26c{bottom:284.251867pt;}
.ye9{bottom:285.435733pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y210{bottom:287.349067pt;}
.y171{bottom:289.015733pt;}
.y4f{bottom:289.243867pt;}
.y24f{bottom:289.826800pt;}
.y156{bottom:291.031600pt;}
.y1a1{bottom:293.908267pt;}
.y1db{bottom:298.014400pt;}
.ybd{bottom:298.790000pt;}
.y26b{bottom:298.918533pt;}
.y87{bottom:300.220533pt;}
.y113{bottom:300.805867pt;}
.ye8{bottom:302.769067pt;}
.y20f{bottom:303.349067pt;}
.y24e{bottom:305.826800pt;}
.y170{bottom:306.349067pt;}
.y4e{bottom:306.571867pt;}
.y183{bottom:308.364933pt;}
.yf{bottom:309.452000pt;}
.y1a0{bottom:311.241600pt;}
.y29{bottom:311.618667pt;}
.y1da{bottom:315.342400pt;}
.y146{bottom:315.923867pt;}
.y86{bottom:317.553867pt;}
.y112{bottom:318.139200pt;}
.y20e{bottom:319.349067pt;}
.ye7{bottom:320.102400pt;}
.y24d{bottom:321.826800pt;}
.ybc{bottom:323.682400pt;}
.y4d{bottom:323.899867pt;}
.y182{bottom:325.698267pt;}
.y19f{bottom:328.574933pt;}
.y28{bottom:330.061333pt;}
.y16f{bottom:331.241600pt;}
.y1d9{bottom:332.670400pt;}
.y145{bottom:333.257200pt;}
.y85{bottom:334.887200pt;}
.y20d{bottom:335.349067pt;}
.y111{bottom:335.472533pt;}
.y26a{bottom:336.262400pt;}
.ye6{bottom:337.435733pt;}
.y24c{bottom:337.826800pt;}
.ybb{bottom:341.015733pt;}
.y4c{bottom:341.227867pt;}
.y181{bottom:343.031600pt;}
.ye{bottom:343.809333pt;}
.y27{bottom:344.728000pt;}
.y19e{bottom:345.908267pt;}
.y16e{bottom:348.574933pt;}
.y1d8{bottom:349.998400pt;}
.y144{bottom:350.590533pt;}
.y269{bottom:350.929067pt;}
.y20c{bottom:351.349067pt;}
.y84{bottom:352.220533pt;}
.y110{bottom:352.805867pt;}
.y24b{bottom:353.826800pt;}
.ye5{bottom:354.769067pt;}
.yba{bottom:358.349067pt;}
.y26{bottom:359.394667pt;}
.y180{bottom:360.364933pt;}
.yd{bottom:362.706666pt;}
.y19d{bottom:363.241600pt;}
.y268{bottom:365.595733pt;}
.y16d{bottom:365.908267pt;}
.y4b{bottom:366.115867pt;}
.y20b{bottom:367.349067pt;}
.y143{bottom:367.923867pt;}
.y24a{bottom:369.826800pt;}
.y10f{bottom:370.139200pt;}
.ye4{bottom:372.102400pt;}
.y1d7{bottom:374.886400pt;}
.yb9{bottom:375.682400pt;}
.y83{bottom:377.112933pt;}
.y17f{bottom:377.698267pt;}
.y25{bottom:377.837333pt;}
.y19c{bottom:380.574933pt;}
.y16c{bottom:383.241600pt;}
.y20a{bottom:383.349067pt;}
.y4a{bottom:383.443867pt;}
.y142{bottom:385.257333pt;}
.y249{bottom:385.826800pt;}
.y1d6{bottom:392.214400pt;}
.y24{bottom:392.504000pt;}
.yb8{bottom:393.015733pt;}
.y82{bottom:394.446267pt;}
.y10e{bottom:395.031600pt;}
.ye3{bottom:396.994800pt;}
.y19b{bottom:397.908267pt;}
.y209{bottom:399.349067pt;}
.y49{bottom:400.771867pt;}
.y248{bottom:401.826800pt;}
.y141{bottom:402.590667pt;}
.y267{bottom:402.939600pt;}
.y16b{bottom:408.133867pt;}
.y1d5{bottom:409.542400pt;}
.y81{bottom:411.779600pt;}
.y10d{bottom:412.364933pt;}
.y19a{bottom:415.241600pt;}
.y208{bottom:415.349067pt;}
.ye2{bottom:416.994800pt;}
.y266{bottom:417.606267pt;}
.y247{bottom:417.826800pt;}
.yb7{bottom:417.908267pt;}
.y48{bottom:418.099867pt;}
.y140{bottom:419.924000pt;}
.y1d4{bottom:426.870400pt;}
.y80{bottom:429.112933pt;}
.y10c{bottom:429.698267pt;}
.y207{bottom:431.349067pt;}
.y265{bottom:432.272933pt;}
.y199{bottom:432.574933pt;}
.y246{bottom:433.826800pt;}
.yb6{bottom:435.241600pt;}
.y47{bottom:435.427867pt;}
.y13f{bottom:437.257333pt;}
.y7f{bottom:446.446267pt;}
.y264{bottom:446.939600pt;}
.yc{bottom:446.990669pt;}
.y10b{bottom:447.031600pt;}
.y206{bottom:447.349067pt;}
.y245{bottom:449.826800pt;}
.y1d3{bottom:451.758400pt;}
.yb5{bottom:452.574933pt;}
.y46{bottom:452.755867pt;}
.y13e{bottom:454.590667pt;}
.y198{bottom:457.467200pt;}
.y263{bottom:461.606267pt;}
.yb{bottom:462.990669pt;}
.y205{bottom:463.349067pt;}
.ye1{bottom:463.451467pt;}
.y7e{bottom:463.779600pt;}
.y10a{bottom:464.364933pt;}
.y244{bottom:465.826800pt;}
.y1d2{bottom:469.086400pt;}
.yb4{bottom:469.908267pt;}
.y45{bottom:470.083867pt;}
.y13d{bottom:471.924000pt;}
.y197{bottom:474.800533pt;}
.y262{bottom:476.272933pt;}
.ya{bottom:478.990666pt;}
.y204{bottom:479.349067pt;}
.ye0{bottom:480.784800pt;}
.y243{bottom:481.826800pt;}
.y1d1{bottom:486.414400pt;}
.y44{bottom:487.411867pt;}
.y7d{bottom:488.672000pt;}
.y109{bottom:489.257333pt;}
.y261{bottom:490.939600pt;}
.y196{bottom:492.133867pt;}
.yb3{bottom:494.800533pt;}
.y9{bottom:494.990666pt;}
.y203{bottom:495.349067pt;}
.y242{bottom:497.826800pt;}
.ydf{bottom:498.118133pt;}
.y1d0{bottom:503.742400pt;}
.y43{bottom:504.739867pt;}
.y260{bottom:505.606267pt;}
.y7c{bottom:506.005333pt;}
.y108{bottom:506.590667pt;}
.y195{bottom:509.467200pt;}
.y202{bottom:511.349067pt;}
.yb2{bottom:512.133867pt;}
.y241{bottom:513.826800pt;}
.yde{bottom:515.451467pt;}
.y25f{bottom:520.272933pt;}
.y1cf{bottom:521.070400pt;}
.y42{bottom:522.067867pt;}
.y7b{bottom:523.338667pt;}
.y107{bottom:523.924000pt;}
.y194{bottom:526.800533pt;}
.y201{bottom:527.349067pt;}
.yb1{bottom:529.467200pt;}
.y240{bottom:529.826800pt;}
.y1ce{bottom:538.398400pt;}
.y41{bottom:539.395867pt;}
.y7a{bottom:540.672000pt;}
.y106{bottom:541.257333pt;}
.y200{bottom:543.349067pt;}
.ydd{bottom:544.123467pt;}
.y193{bottom:544.133867pt;}
.y23f{bottom:545.826800pt;}
.yb0{bottom:546.800533pt;}
.y13c{bottom:548.816267pt;}
.y1cd{bottom:555.726400pt;}
.y40{bottom:556.723867pt;}
.y105{bottom:558.590667pt;}
.y1ff{bottom:559.349067pt;}
.ydc{bottom:561.456800pt;}
.y192{bottom:561.467200pt;}
.y23e{bottom:561.826800pt;}
.yaf{bottom:564.133867pt;}
.y79{bottom:565.564400pt;}
.y13b{bottom:566.149600pt;}
.y1cc{bottom:573.054400pt;}
.y8{bottom:573.786667pt;}
.y1fe{bottom:575.349067pt;}
.y104{bottom:575.924000pt;}
.y23d{bottom:577.826800pt;}
.ydb{bottom:578.790133pt;}
.y191{bottom:578.800533pt;}
.yae{bottom:581.467200pt;}
.y3f{bottom:581.611867pt;}
.y78{bottom:582.897733pt;}
.y13a{bottom:583.482933pt;}
.y136{bottom:587.727067pt;}
.y1cb{bottom:590.382400pt;}
.y1fd{bottom:591.349067pt;}
.y7{bottom:592.685334pt;}
.y16a{bottom:593.257333pt;}
.y23c{bottom:593.826800pt;}
.yda{bottom:596.123467pt;}
.y190{bottom:596.133867pt;}
.yad{bottom:598.800533pt;}
.y3e{bottom:598.939867pt;}
.y77{bottom:600.231067pt;}
.y103{bottom:600.816267pt;}
.y135{bottom:602.393733pt;}
.y1fc{bottom:607.349067pt;}
.y1ca{bottom:607.710400pt;}
.y23b{bottom:609.826800pt;}
.y169{bottom:610.590667pt;}
.yd9{bottom:613.456800pt;}
.yac{bottom:616.133867pt;}
.y3d{bottom:616.267867pt;}
.y76{bottom:617.564400pt;}
.y102{bottom:618.149600pt;}
.y18f{bottom:621.026267pt;}
.y1fb{bottom:623.349067pt;}
.y23a{bottom:625.826800pt;}
.y1c9{bottom:632.598400pt;}
.y3c{bottom:633.595867pt;}
.y75{bottom:634.897733pt;}
.y101{bottom:635.482933pt;}
.yd8{bottom:638.349067pt;}
.y1fa{bottom:639.349067pt;}
.yab{bottom:641.026267pt;}
.y239{bottom:641.826800pt;}
.y6{bottom:645.598667pt;}
.y1c8{bottom:649.926400pt;}
.y100{bottom:652.816267pt;}
.y1f9{bottom:655.349067pt;}
.yd7{bottom:655.682400pt;}
.y238{bottom:657.826800pt;}
.yaa{bottom:658.359600pt;}
.y3b{bottom:658.488133pt;}
.y74{bottom:659.790133pt;}
.y17e{bottom:660.375333pt;}
.y1c7{bottom:667.254400pt;}
.y3{bottom:668.977329pt;}
.y128{bottom:670.149600pt;}
.y1f8{bottom:671.349067pt;}
.y237{bottom:673.826800pt;}
.ya9{bottom:675.692933pt;}
.y73{bottom:677.123467pt;}
.yff{bottom:677.708667pt;}
.yd6{bottom:680.574933pt;}
.y1c6{bottom:684.582400pt;}
.y1f7{bottom:687.349067pt;}
.y127{bottom:687.482933pt;}
.y236{bottom:689.826800pt;}
.ya8{bottom:693.026267pt;}
.y72{bottom:694.456667pt;}
.yfe{bottom:695.042000pt;}
.yd5{bottom:697.908267pt;}
.y1c5{bottom:701.910400pt;}
.y1f6{bottom:703.349067pt;}
.y126{bottom:704.816267pt;}
.y235{bottom:705.826800pt;}
.ya7{bottom:710.359600pt;}
.y71{bottom:711.790000pt;}
.yfd{bottom:712.375333pt;}
.y1c4{bottom:719.238400pt;}
.y1f5{bottom:719.349067pt;}
.y234{bottom:721.826800pt;}
.y155{bottom:722.149600pt;}
.yd4{bottom:726.580133pt;}
.y70{bottom:729.123333pt;}
.yfc{bottom:729.708800pt;}
.ya6{bottom:735.252000pt;}
.y1f4{bottom:735.349067pt;}
.y1c3{bottom:736.566400pt;}
.y233{bottom:737.826800pt;}
.y18e{bottom:739.482933pt;}
.y3a{bottom:740.220400pt;}
.y6f{bottom:746.456667pt;}
.y125{bottom:747.042133pt;}
.y1f3{bottom:751.349067pt;}
.yd3{bottom:751.472533pt;}
.ya5{bottom:752.585333pt;}
.y232{bottom:753.826800pt;}
.y1c2{bottom:753.894400pt;}
.yfb{bottom:754.601067pt;}
.y18d{bottom:756.816267pt;}
.y124{bottom:764.375467pt;}
.y1f2{bottom:767.349067pt;}
.yd2{bottom:768.805867pt;}
.y231{bottom:769.826800pt;}
.ya4{bottom:769.918667pt;}
.y1c1{bottom:771.222400pt;}
.y6e{bottom:771.349067pt;}
.yfa{bottom:771.934400pt;}
.y18c{bottom:774.149600pt;}
.y2{bottom:781.661334pt;}
.y123{bottom:781.708800pt;}
.y1f1{bottom:783.349067pt;}
.y230{bottom:785.826800pt;}
.yd1{bottom:786.139200pt;}
.ya3{bottom:787.252000pt;}
.y1c0{bottom:788.550400pt;}
.yf9{bottom:789.267733pt;}
.y18b{bottom:791.482933pt;}
.y122{bottom:799.042133pt;}
.y1f0{bottom:799.349067pt;}
.y22f{bottom:801.826800pt;}
.yd0{bottom:803.472533pt;}
.y1bf{bottom:805.878400pt;}
.yf8{bottom:806.601067pt;}
.ya2{bottom:812.144400pt;}
.y23{bottom:812.603733pt;}
.y39{bottom:812.622533pt;}
.y6d{bottom:814.026267pt;}
.y1ef{bottom:815.349067pt;}
.y139{bottom:816.375467pt;}
.y22e{bottom:817.826800pt;}
.y1be{bottom:823.206400pt;}
.yf7{bottom:823.934400pt;}
.y1ee{bottom:831.349067pt;}
.y6c{bottom:831.359600pt;}
.ycf{bottom:832.144400pt;}
.y138{bottom:833.708800pt;}
.y22d{bottom:833.826800pt;}
.yf6{bottom:841.267733pt;}
.y1ed{bottom:847.349067pt;}
.y1bd{bottom:848.094400pt;}
.y22c{bottom:849.826800pt;}
.y38{bottom:849.943867pt;}
.y137{bottom:851.042133pt;}
.y6b{bottom:856.252000pt;}
.yce{bottom:857.036800pt;}
.ya1{bottom:858.601067pt;}
.y1{bottom:859.312000pt;}
.y1ec{bottom:863.349067pt;}
.y1bc{bottom:865.422400pt;}
.y22b{bottom:865.826800pt;}
.y18a{bottom:868.375467pt;}
.y6a{bottom:873.585333pt;}
.ya0{bottom:875.934400pt;}
.y1eb{bottom:879.349067pt;}
.y22a{bottom:881.826800pt;}
.ycd{bottom:881.929200pt;}
.y1bb{bottom:882.750400pt;}
.y189{bottom:885.708800pt;}
.y37{bottom:887.265200pt;}
.y9f{bottom:893.267733pt;}
.y229{bottom:897.826800pt;}
.y69{bottom:898.477733pt;}
.y1ba{bottom:900.078400pt;}
.y1ea{bottom:902.908267pt;}
.y188{bottom:903.042133pt;}
.y9e{bottom:910.601067pt;}
.y228{bottom:913.826800pt;}
.y68{bottom:923.370133pt;}
.y1b9{bottom:924.966400pt;}
.ycc{bottom:927.934400pt;}
.y227{bottom:929.826800pt;}
.y9d{bottom:935.493467pt;}
.y67{bottom:940.703467pt;}
.y1b8{bottom:942.294400pt;}
.y121{bottom:945.267733pt;}
.y1e9{bottom:945.585333pt;}
.y226{bottom:945.826800pt;}
.y22{bottom:951.937067pt;}
.y9c{bottom:952.826800pt;}
.y1b7{bottom:959.622400pt;}
.y1e8{bottom:960.252000pt;}
.y225{bottom:961.826800pt;}
.y154{bottom:962.601067pt;}
.y66{bottom:965.595867pt;}
.y9b{bottom:970.160133pt;}
.y1b6{bottom:976.950400pt;}
.y224{bottom:977.826800pt;}
.y153{bottom:979.934400pt;}
.y1e7{bottom:982.477733pt;}
.y9a{bottom:987.493467pt;}
.y223{bottom:993.826800pt;}
.y65{bottom:994.267733pt;}
.y1b5{bottom:994.278400pt;}
.y99{bottom:1004.826800pt;}
.y222{bottom:1009.826800pt;}
.y168{bottom:1010.816133pt;}
.y61{bottom:1010.826800pt;}
.y64{bottom:1011.601067pt;}
.y1b4{bottom:1011.606400pt;}
.y98{bottom:1022.160133pt;}
.y167{bottom:1022.818800pt;}
.y60{bottom:1022.826800pt;}
.y221{bottom:1025.826800pt;}
.y63{bottom:1028.934400pt;}
.y166{bottom:1034.821467pt;}
.y5f{bottom:1034.826800pt;}
.y97{bottom:1039.493467pt;}
.y220{bottom:1041.826800pt;}
.y165{bottom:1046.824133pt;}
.y5e{bottom:1046.826800pt;}
.y62{bottom:1053.826800pt;}
.y96{bottom:1056.826800pt;}
.y21f{bottom:1057.826800pt;}
.y5d{bottom:1058.826800pt;}
.h7{height:28.560000pt;}
.h12{height:28.746667pt;}
.h11{height:28.821333pt;}
.h13{height:30.650667pt;}
.hb{height:32.938667pt;}
.hd{height:33.365333pt;}
.hc{height:35.029333pt;}
.h10{height:39.408000pt;}
.h6{height:40.800000pt;}
.h9{height:41.066667pt;}
.ha{height:41.173333pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hf{height:49.408000pt;}
.h5{height:69.360000pt;}
.he{height:94.453333pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.xa{left:60.472400pt;}
.x7{left:79.370000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x6{left:589.605467pt;}
.x5{left:681.712133pt;}
.x8{left:725.078933pt;}
}




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