
    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_a97d7945ba670d005fcd997c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_6e402da17bd5a5225989c2f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_06dab1b1784e8a16acd0a03f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.027832;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_f9877b9c161291312fc420e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_0343140b0ab37dbead6c49f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.760254;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_6dd4e0400f4649cd0eb078e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_652deaa97583c86a43644f68.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_83193d8b9f17344f66b2c334.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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_bb294ad68f51295666720108.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_7cd75747d912adaba9a3f258.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_63f6d77b38003680be7a1ca3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.827000;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_63c2e83a98d23af463f5858c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933000;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.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,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:-6.000000px;}
.v6{vertical-align:-4.251600px;}
.v7{vertical-align:-2.456400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.251600px;}
.v8{vertical-align:6.000000px;}
.v1{vertical-align:19.842600px;}
.v3{vertical-align:23.976000px;}
.v4{vertical-align:29.976000px;}
.ls11{letter-spacing:-8.856000px;}
.ls13{letter-spacing:-7.056000px;}
.ls15{letter-spacing:-2.304000px;}
.ls3{letter-spacing:-1.920000px;}
.ls7{letter-spacing:-1.553112px;}
.ls10{letter-spacing:-1.512000px;}
.lsf{letter-spacing:-1.368000px;}
.ls14{letter-spacing:-1.152000px;}
.lsa{letter-spacing:-0.960000px;}
.lse{letter-spacing:-0.864000px;}
.lsc{letter-spacing:-0.624000px;}
.ls6{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.049800px;}
.ls16{letter-spacing:0.864000px;}
.ls2{letter-spacing:10.638000px;}
.ls1{letter-spacing:151.795200px;}
.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;}
}
.ws14{word-spacing:-19.500000px;}
.ws1{word-spacing:-18.000000px;}
.wsc8{word-spacing:-16.488000px;}
.wsb8{word-spacing:-16.344000px;}
.wsbe{word-spacing:-15.912000px;}
.wsc7{word-spacing:-15.624000px;}
.ws61{word-spacing:-15.000000px;}
.wsb9{word-spacing:-14.976000px;}
.wsba{word-spacing:-14.832000px;}
.wsac{word-spacing:-13.380000px;}
.wsc6{word-spacing:-13.320000px;}
.wsab{word-spacing:-12.780000px;}
.wsc0{word-spacing:-12.000000px;}
.ws40{word-spacing:-11.592000px;}
.wsa2{word-spacing:-11.160000px;}
.wsb7{word-spacing:-10.896000px;}
.wsa8{word-spacing:-10.764000px;}
.ws4{word-spacing:-10.494000px;}
.wsae{word-spacing:-9.792000px;}
.ws45{word-spacing:-9.648000px;}
.ws23{word-spacing:-9.576000px;}
.wsbf{word-spacing:-9.288000px;}
.ws72{word-spacing:-8.940888px;}
.ws5f{word-spacing:-8.136000px;}
.ws60{word-spacing:-7.992000px;}
.wsbd{word-spacing:-7.488000px;}
.ws42{word-spacing:-7.128000px;}
.ws1b{word-spacing:-7.056000px;}
.wsaf{word-spacing:-6.984000px;}
.ws9e{word-spacing:-6.696000px;}
.ws83{word-spacing:-6.552000px;}
.wsa3{word-spacing:-6.408000px;}
.wsc{word-spacing:-6.264000px;}
.ws1f{word-spacing:-6.120000px;}
.wsd{word-spacing:-5.472000px;}
.wsad{word-spacing:-5.112000px;}
.ws9a{word-spacing:-4.824000px;}
.ws32{word-spacing:-4.680000px;}
.ws80{word-spacing:-4.608000px;}
.ws3a{word-spacing:-3.528000px;}
.ws85{word-spacing:-3.300000px;}
.ws2c{word-spacing:-2.952000px;}
.ws71{word-spacing:-2.880000px;}
.wse{word-spacing:-2.520000px;}
.ws6c{word-spacing:-2.376000px;}
.ws6e{word-spacing:-2.304000px;}
.wsc1{word-spacing:-1.944000px;}
.ws99{word-spacing:-1.728000px;}
.ws13{word-spacing:-1.512000px;}
.ws2{word-spacing:-1.296000px;}
.ws3{word-spacing:-1.152000px;}
.ws96{word-spacing:-1.080000px;}
.ws4e{word-spacing:-0.936000px;}
.ws41{word-spacing:-0.576000px;}
.ws81{word-spacing:-0.432000px;}
.ws4c{word-spacing:-0.288000px;}
.ws74{word-spacing:-0.156000px;}
.ws7a{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:0.072000px;}
.ws1e{word-spacing:0.216000px;}
.ws7d{word-spacing:0.240000px;}
.ws44{word-spacing:0.360000px;}
.wsa5{word-spacing:0.576000px;}
.ws73{word-spacing:0.600000px;}
.ws4f{word-spacing:0.720000px;}
.ws5c{word-spacing:1.152000px;}
.ws1d{word-spacing:1.224000px;}
.ws34{word-spacing:1.296000px;}
.ws70{word-spacing:1.440000px;}
.ws25{word-spacing:1.920000px;}
.ws1c{word-spacing:2.016000px;}
.ws68{word-spacing:2.232000px;}
.ws5{word-spacing:2.304000px;}
.wsa4{word-spacing:2.448000px;}
.wsc2{word-spacing:2.592000px;}
.ws9b{word-spacing:2.808000px;}
.ws89{word-spacing:2.880000px;}
.ws49{word-spacing:3.024000px;}
.wsb{word-spacing:3.096000px;}
.wsc5{word-spacing:3.168000px;}
.wsc4{word-spacing:3.240000px;}
.ws3d{word-spacing:3.312000px;}
.ws3c{word-spacing:3.384000px;}
.ws5b{word-spacing:3.672000px;}
.ws98{word-spacing:3.696000px;}
.wsaa{word-spacing:3.744000px;}
.ws56{word-spacing:3.816000px;}
.ws5e{word-spacing:4.104000px;}
.ws3b{word-spacing:4.320000px;}
.ws4b{word-spacing:4.392000px;}
.wsf{word-spacing:4.464000px;}
.ws7b{word-spacing:4.752000px;}
.ws20{word-spacing:4.824000px;}
.ws5a{word-spacing:4.968000px;}
.ws3e{word-spacing:5.256000px;}
.wsc3{word-spacing:5.328000px;}
.ws8{word-spacing:5.400000px;}
.ws5d{word-spacing:5.760000px;}
.ws7{word-spacing:5.850000px;}
.ws54{word-spacing:5.904000px;}
.ws33{word-spacing:6.120000px;}
.ws30{word-spacing:6.264000px;}
.ws39{word-spacing:6.696000px;}
.ws2a{word-spacing:6.840000px;}
.ws22{word-spacing:7.056000px;}
.ws2e{word-spacing:7.128000px;}
.ws84{word-spacing:7.200000px;}
.ws9d{word-spacing:7.272000px;}
.ws43{word-spacing:7.416000px;}
.ws29{word-spacing:7.632000px;}
.ws21{word-spacing:7.848000px;}
.ws66{word-spacing:7.992000px;}
.ws7c{word-spacing:8.136000px;}
.ws8c{word-spacing:9.072000px;}
.wsa{word-spacing:9.144000px;}
.ws31{word-spacing:9.360000px;}
.ws55{word-spacing:9.504000px;}
.ws77{word-spacing:9.648000px;}
.ws6d{word-spacing:9.720000px;}
.ws59{word-spacing:9.792000px;}
.ws9{word-spacing:9.906000px;}
.ws76{word-spacing:10.152000px;}
.ws75{word-spacing:10.296000px;}
.ws62{word-spacing:10.440000px;}
.ws6{word-spacing:10.656000px;}
.ws8e{word-spacing:10.686000px;}
.ws2d{word-spacing:11.016000px;}
.ws90{word-spacing:11.154000px;}
.ws2f{word-spacing:11.160000px;}
.ws38{word-spacing:11.448000px;}
.ws78{word-spacing:11.880000px;}
.ws79{word-spacing:12.600000px;}
.ws1a{word-spacing:12.816000px;}
.ws97{word-spacing:13.032000px;}
.ws9c{word-spacing:13.536000px;}
.wsa7{word-spacing:14.118000px;}
.ws9f{word-spacing:14.256000px;}
.ws19{word-spacing:15.048000px;}
.ws2b{word-spacing:15.120000px;}
.ws67{word-spacing:15.336000px;}
.ws64{word-spacing:15.408000px;}
.ws3f{word-spacing:16.200000px;}
.ws8a{word-spacing:17.136000px;}
.ws58{word-spacing:17.568000px;}
.ws6a{word-spacing:17.712000px;}
.ws8b{word-spacing:18.072000px;}
.ws4a{word-spacing:18.720000px;}
.ws69{word-spacing:18.792000px;}
.ws93{word-spacing:19.152000px;}
.wsa6{word-spacing:19.368000px;}
.ws8d{word-spacing:19.656000px;}
.ws94{word-spacing:20.748000px;}
.ws11{word-spacing:21.456000px;}
.ws57{word-spacing:21.816000px;}
.ws91{word-spacing:22.464000px;}
.ws35{word-spacing:23.256000px;}
.ws95{word-spacing:23.478000px;}
.ws50{word-spacing:24.264000px;}
.ws28{word-spacing:24.480000px;}
.ws4d{word-spacing:25.488000px;}
.ws65{word-spacing:27.288000px;}
.ws63{word-spacing:28.440000px;}
.ws6f{word-spacing:28.584000px;}
.ws52{word-spacing:28.728000px;}
.ws12{word-spacing:29.376000px;}
.ws8f{word-spacing:29.718000px;}
.ws53{word-spacing:29.736000px;}
.ws82{word-spacing:30.024000px;}
.ws6b{word-spacing:30.816000px;}
.ws47{word-spacing:30.960000px;}
.ws46{word-spacing:31.176000px;}
.ws7f{word-spacing:31.968000px;}
.ws26{word-spacing:32.616000px;}
.ws36{word-spacing:35.064000px;}
.ws92{word-spacing:35.496000px;}
.ws18{word-spacing:35.784000px;}
.wsa0{word-spacing:36.000000px;}
.wsb2{word-spacing:38.590200px;}
.ws27{word-spacing:39.096000px;}
.ws15{word-spacing:46.792800px;}
.ws16{word-spacing:48.240000px;}
.ws17{word-spacing:48.672000px;}
.ws48{word-spacing:49.320000px;}
.ws10{word-spacing:58.680000px;}
.ws7e{word-spacing:62.784000px;}
.wsa9{word-spacing:69.420000px;}
.ws51{word-spacing:71.712000px;}
.ws37{word-spacing:73.656000px;}
.wsa1{word-spacing:75.168000px;}
.wsb1{word-spacing:82.062600px;}
.wsb3{word-spacing:87.122400px;}
.ws88{word-spacing:97.200000px;}
.ws86{word-spacing:105.840000px;}
.wsb6{word-spacing:114.934200px;}
.wsb5{word-spacing:123.523200px;}
.wsb4{word-spacing:134.722200px;}
.ws87{word-spacing:191.736000px;}
.wsbb{word-spacing:361.601400px;}
.wsbc{word-spacing:799.000200px;}
.wsb0{word-spacing:938.172000px;}
._6{margin-left:-2866.493400px;}
._f{margin-left:-15.991200px;}
._c{margin-left:-14.594400px;}
._d{margin-left:-13.550400px;}
._10{margin-left:-12.009600px;}
._11{margin-left:-9.828000px;}
._5{margin-left:-7.884000px;}
._14{margin-left:-6.739200px;}
._7{margin-left:-5.450400px;}
._3{margin-left:-3.984000px;}
._4{margin-left:-2.590200px;}
._2{margin-left:-1.584000px;}
._8{width:1.879200px;}
._a{width:3.290400px;}
._1a{width:4.411800px;}
._1b{width:5.535000px;}
._b{width:6.660000px;}
._24{width:7.819200px;}
._23{width:8.856000px;}
._1d{width:9.874200px;}
._12{width:11.570400px;}
._13{width:15.574800px;}
._19{width:16.675200px;}
._18{width:19.447200px;}
._17{width:20.577600px;}
._16{width:22.852800px;}
._15{width:24.156000px;}
._1c{width:27.828000px;}
._1e{width:30.780000px;}
._1f{width:38.167200px;}
._0{width:40.680000px;}
._e{width:41.760000px;}
._1{width:63.120000px;}
._20{width:75.626400px;}
._9{width:89.661600px;}
._21{width:124.514400px;}
._22{width:146.491800px;}
.fc6{color:rgb(0,173,239);}
.fc4{color:transparent;}
.fc5{color:rgb(220,105,0);}
.fc1{color:rgb(81,86,81);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:36.000000px;}
.fs6{font-size:41.976000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs9{font-size:69.840000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:180.000000px;}
.fs2{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:30.614250px;}
.y3{bottom:56.271450px;}
.y2c{bottom:112.179000px;}
.y168{bottom:112.448550px;}
.y27{bottom:115.976250px;}
.y125{bottom:122.037900px;}
.y51{bottom:122.309550px;}
.y264{bottom:126.265950px;}
.y167{bottom:126.848550px;}
.y118{bottom:129.041100px;}
.ya9{bottom:129.242700px;}
.ybf{bottom:130.104150px;}
.y1e9{bottom:136.246650px;}
.y124{bottom:137.037900px;}
.y8a{bottom:137.350950px;}
.ycb{bottom:138.552300px;}
.y6a{bottom:138.749700px;}
.y50{bottom:138.809550px;}
.y146{bottom:139.683600px;}
.y166{bottom:141.248550px;}
.y3c{bottom:168.051000px;}
.y7{bottom:174.692100px;}
.y3b{bottom:190.551000px;}
.y1c9{bottom:193.325100px;}
.y6{bottom:196.292100px;}
.ye7{bottom:200.057400px;}
.y69{bottom:213.293550px;}
.y5{bottom:217.892100px;}
.y19d{bottom:232.563600px;}
.y68{bottom:235.793550px;}
.y26{bottom:237.647550px;}
.y4{bottom:239.492100px;}
.y2b{bottom:240.482100px;}
.ya8{bottom:242.283300px;}
.y2a1{bottom:247.063800px;}
.y29b{bottom:247.317300px;}
.y295{bottom:247.828200px;}
.ye1{bottom:247.892100px;}
.y2b3{bottom:248.126850px;}
.y2b9{bottom:248.156400px;}
.y2ad{bottom:249.189750px;}
.y2a7{bottom:249.544200px;}
.y19c{bottom:254.163600px;}
.y1c6{bottom:256.122150px;}
.y67{bottom:258.293550px;}
.y1df{bottom:260.155650px;}
.y17f{bottom:262.579350px;}
.yc9{bottom:262.788600px;}
.y1af{bottom:264.662850px;}
.ya7{bottom:264.783300px;}
.y19e{bottom:267.262950px;}
.y2a0{bottom:268.663800px;}
.y29a{bottom:268.917300px;}
.y294{bottom:269.428200px;}
.y2b2{bottom:269.726850px;}
.y2b8{bottom:269.756400px;}
.y2ac{bottom:270.789750px;}
.y2a6{bottom:271.144200px;}
.y25d{bottom:275.335200px;}
.y19b{bottom:275.763600px;}
.y1c5{bottom:277.722150px;}
.y123{bottom:279.482850px;}
.y66{bottom:280.793550px;}
.y1de{bottom:281.755800px;}
.y17e{bottom:284.179350px;}
.y90{bottom:285.960450px;}
.y1ae{bottom:286.262850px;}
.ye6{bottom:286.604550px;}
.ya6{bottom:287.283300px;}
.y29f{bottom:290.263800px;}
.y299{bottom:290.517300px;}
.y293{bottom:291.028200px;}
.y2b1{bottom:291.326850px;}
.y2b7{bottom:291.356250px;}
.y2ab{bottom:292.389750px;}
.y8{bottom:292.535400px;}
.y2a5{bottom:292.744200px;}
.y25c{bottom:296.935200px;}
.y25{bottom:296.997900px;}
.y19a{bottom:297.363600px;}
.y1c4{bottom:299.322150px;}
.y28e{bottom:300.507000px;}
.y122{bottom:301.982850px;}
.y29{bottom:303.021450px;}
.y65{bottom:303.293550px;}
.y1dd{bottom:303.355800px;}
.y17d{bottom:305.779350px;}
.y1ad{bottom:307.862850px;}
.y14a{bottom:308.585700px;}
.ye5{bottom:309.104550px;}
.ya5{bottom:309.783300px;}
.y8f{bottom:309.960450px;}
.y29e{bottom:311.863800px;}
.y298{bottom:312.117300px;}
.y292{bottom:312.628200px;}
.y2b0{bottom:312.926850px;}
.y2b6{bottom:312.956250px;}
.y2aa{bottom:313.989750px;}
.y2a4{bottom:314.344050px;}
.y25b{bottom:318.535200px;}
.y199{bottom:318.963600px;}
.y1c3{bottom:320.922150px;}
.y28d{bottom:322.107000px;}
.y121{bottom:324.482850px;}
.y1dc{bottom:324.955650px;}
.y1fa{bottom:325.000650px;}
.y64{bottom:325.793550px;}
.y157{bottom:329.252700px;}
.y1ac{bottom:329.462850px;}
.yd9{bottom:329.614500px;}
.y149{bottom:330.185700px;}
.ye4{bottom:331.604550px;}
.y8e{bottom:332.460450px;}
.y29d{bottom:333.463800px;}
.y297{bottom:333.717300px;}
.y291{bottom:334.228200px;}
.y2af{bottom:334.526850px;}
.y2b5{bottom:334.556400px;}
.y2a9{bottom:335.589750px;}
.y1fb{bottom:335.630550px;}
.y2a3{bottom:335.944200px;}
.y25a{bottom:340.135200px;}
.y198{bottom:342.363600px;}
.y1c2{bottom:342.522150px;}
.y1db{bottom:346.555800px;}
.y120{bottom:346.982850px;}
.y63{bottom:348.293550px;}
.y1ab{bottom:351.062850px;}
.y148{bottom:351.785700px;}
.yd8{bottom:352.114500px;}
.ye3{bottom:354.104550px;}
.y8d{bottom:354.960450px;}
.y29c{bottom:355.063800px;}
.y296{bottom:355.317300px;}
.y290{bottom:355.828200px;}
.y2ae{bottom:356.126850px;}
.y2b4{bottom:356.156250px;}
.y24{bottom:356.348250px;}
.y2a8{bottom:357.189750px;}
.y2a2{bottom:357.544050px;}
.y23{bottom:359.182950px;}
.yaf{bottom:360.706650px;}
.y259{bottom:361.735200px;}
.y1c1{bottom:364.122150px;}
.y28c{bottom:365.307000px;}
.y197{bottom:365.763600px;}
.y1da{bottom:368.155800px;}
.y11f{bottom:369.482850px;}
.y147{bottom:373.385700px;}
.yd7{bottom:374.614500px;}
.y8c{bottom:377.460450px;}
.yae{bottom:384.706650px;}
.y180{bottom:385.413750px;}
.y1c0{bottom:385.722150px;}
.y28b{bottom:386.907000px;}
.y175{bottom:387.079350px;}
.y196{bottom:387.363600px;}
.y1d9{bottom:389.755800px;}
.y62{bottom:394.793550px;}
.y247{bottom:396.278400px;}
.y221{bottom:396.558300px;}
.yd6{bottom:397.114500px;}
.y8b{bottom:399.960450px;}
.y165{bottom:406.347300px;}
.yad{bottom:407.206650px;}
.y1bf{bottom:407.322150px;}
.y195{bottom:410.763600px;}
.y1d8{bottom:411.355800px;}
.ye2{bottom:416.907750px;}
.y22{bottom:417.470250px;}
.y1b0{bottom:417.970800px;}
.y89{bottom:418.144200px;}
.y220{bottom:418.158300px;}
.y246{bottom:418.176000px;}
.y61{bottom:418.793550px;}
.y245{bottom:419.853150px;}
.y21{bottom:421.368000px;}
.y12c{bottom:422.265750px;}
.y144{bottom:422.694300px;}
.yac{bottom:429.706650px;}
.y164{bottom:429.747300px;}
.y28a{bottom:430.107000px;}
.y1d7{bottom:432.955650px;}
.y194{bottom:434.163600px;}
.y229{bottom:437.298000px;}
.y23d{bottom:441.426000px;}
.yd5{bottom:442.114500px;}
.y60{bottom:442.793550px;}
.y143{bottom:444.294300px;}
.y12b{bottom:444.765750px;}
.y263{bottom:447.139800px;}
.y1b5{bottom:449.856750px;}
.y289{bottom:451.707000px;}
.yab{bottom:452.206650px;}
.y163{bottom:453.147300px;}
.y193{bottom:457.563600px;}
.y23c{bottom:461.717400px;}
.y228{bottom:461.935800px;}
.y88{bottom:463.144200px;}
.yd4{bottom:464.614500px;}
.y142{bottom:465.894450px;}
.y5f{bottom:466.793550px;}
.y12a{bottom:467.265750px;}
.y262{bottom:468.739800px;}
.yaa{bottom:474.706650px;}
.y162{bottom:476.547300px;}
.y1e8{bottom:476.698050px;}
.y20{bottom:480.364050px;}
.y192{bottom:480.963600px;}
.y234{bottom:481.559850px;}
.y244{bottom:482.215350px;}
.y227{bottom:484.748850px;}
.yd3{bottom:487.114500px;}
.y129{bottom:489.765750px;}
.y261{bottom:490.339800px;}
.y5e{bottom:490.793550px;}
.y288{bottom:494.907000px;}
.y1d6{bottom:497.755800px;}
.y161{bottom:499.947300px;}
.y14c{bottom:504.041700px;}
.y191{bottom:504.363600px;}
.y243{bottom:505.707450px;}
.y226{bottom:505.937850px;}
.y233{bottom:507.833400px;}
.y23b{bottom:507.833550px;}
.y87{bottom:508.144200px;}
.yd2{bottom:509.614500px;}
.y260{bottom:511.939800px;}
.y128{bottom:512.265750px;}
.ya4{bottom:512.283300px;}
.y3a{bottom:514.397400px;}
.y5d{bottom:514.793550px;}
.y287{bottom:516.507000px;}
.y160{bottom:523.347300px;}
.y117{bottom:524.313000px;}
.y32{bottom:524.873100px;}
.y14b{bottom:527.441700px;}
.y190{bottom:527.763600px;}
.y231{bottom:529.796100px;}
.y23a{bottom:530.599200px;}
.y86{bottom:530.644200px;}
.yd1{bottom:532.114500px;}
.y22c{bottom:532.229100px;}
.y1e2{bottom:533.218650px;}
.y25f{bottom:533.539800px;}
.y127{bottom:534.765750px;}
.ya3{bottom:534.783300px;}
.y39{bottom:536.897400px;}
.y5c{bottom:538.793550px;}
.y4f{bottom:541.066800px;}
.y15f{bottom:544.947300px;}
.y116{bottom:546.813000px;}
.y18f{bottom:549.363600px;}
.y1e1{bottom:549.418650px;}
.y239{bottom:553.926000px;}
.yd0{bottom:554.614500px;}
.y25e{bottom:555.139800px;}
.y232{bottom:556.217400px;}
.y126{bottom:557.265750px;}
.y225{bottom:557.664150px;}
.y38{bottom:559.397400px;}
.y1be{bottom:559.465950px;}
.y286{bottom:559.707000px;}
.y145{bottom:560.762400px;}
.y4e{bottom:565.066800px;}
.y1e0{bottom:565.618650px;}
.y15e{bottom:566.547300px;}
.y115{bottom:569.313000px;}
.y18e{bottom:570.963600px;}
.y141{bottom:571.614900px;}
.y20c{bottom:572.782050px;}
.y85{bottom:575.644200px;}
.ycf{bottom:577.114500px;}
.y6f{bottom:577.380000px;}
.y31{bottom:578.873100px;}
.ya2{bottom:579.783300px;}
.y230{bottom:580.134600px;}
.y22b{bottom:580.861050px;}
.y1bd{bottom:581.065950px;}
.y242{bottom:581.141250px;}
.y285{bottom:581.307000px;}
.y37{bottom:581.897400px;}
.y15d{bottom:588.147300px;}
.y114{bottom:591.813000px;}
.y18d{bottom:592.563600px;}
.y11e{bottom:594.482850px;}
.y84{bottom:598.144200px;}
.y6e{bottom:601.380000px;}
.y1bc{bottom:602.665950px;}
.y238{bottom:603.390600px;}
.y224{bottom:603.927900px;}
.y36{bottom:604.397400px;}
.y22f{bottom:606.000750px;}
.y241{bottom:606.402300px;}
.y15c{bottom:609.747300px;}
.y4d{bottom:613.066800px;}
.y212{bottom:614.015700px;}
.y113{bottom:614.313000px;}
.y11d{bottom:616.982850px;}
.y83{bottom:620.644200px;}
.y258{bottom:620.935200px;}
.y6d{bottom:623.880000px;}
.y1bb{bottom:624.265950px;}
.y284{bottom:624.507000px;}
.ya1{bottom:624.783300px;}
.y35{bottom:626.897400px;}
.y223{bottom:631.140600px;}
.y15b{bottom:631.347300px;}
.y237{bottom:632.504700px;}
.y30{bottom:632.873100px;}
.y240{bottom:634.290750px;}
.y112{bottom:636.813000px;}
.y11c{bottom:639.482850px;}
.y140{bottom:641.429850px;}
.y273{bottom:642.138450px;}
.y257{bottom:642.535200px;}
.y82{bottom:643.144200px;}
.y18c{bottom:644.179350px;}
.y1ba{bottom:645.865950px;}
.y283{bottom:646.107000px;}
.y6c{bottom:646.380000px;}
.ya0{bottom:647.283300px;}
.y211{bottom:649.626000px;}
.y15a{bottom:652.947300px;}
.y1f{bottom:655.515600px;}
.y22a{bottom:658.654350px;}
.y111{bottom:659.313000px;}
.y236{bottom:660.709500px;}
.y22e{bottom:660.830550px;}
.y23f{bottom:661.633650px;}
.y11b{bottom:661.982850px;}
.y13f{bottom:663.029850px;}
.y256{bottom:664.135200px;}
.y81{bottom:665.644200px;}
.y18b{bottom:665.779350px;}
.y6b{bottom:668.880000px;}
.yce{bottom:669.577950px;}
.y9f{bottom:669.783300px;}
.y159{bottom:676.347300px;}
.y1e{bottom:678.015600px;}
.y13e{bottom:684.629850px;}
.y4c{bottom:685.066800px;}
.y272{bottom:685.338450px;}
.y255{bottom:685.735200px;}
.y210{bottom:686.299200px;}
.y222{bottom:686.493000px;}
.y2f{bottom:686.873100px;}
.y18a{bottom:687.379350px;}
.y23e{bottom:687.638550px;}
.y80{bottom:688.144200px;}
.y235{bottom:688.612950px;}
.y22d{bottom:688.689750px;}
.y282{bottom:689.307000px;}
.y9e{bottom:692.283300px;}
.y1b4{bottom:694.699350px;}
.y1e7{bottom:696.655800px;}
.yf6{bottom:697.450950px;}
.y158{bottom:699.747300px;}
.y5b{bottom:703.793550px;}
.y13d{bottom:706.229850px;}
.y1f9{bottom:706.697550px;}
.y254{bottom:707.335200px;}
.y189{bottom:708.979350px;}
.y4b{bottom:709.066800px;}
.y19f{bottom:710.318100px;}
.y281{bottom:710.907000px;}
.y21b{bottom:714.301950px;}
.y9d{bottom:714.783300px;}
.y20f{bottom:717.870000px;}
.y1c{bottom:719.295150px;}
.yf5{bottom:719.950950px;}
.y1e6{bottom:720.055800px;}
.ybe{bottom:722.273400px;}
.y2a{bottom:723.901500px;}
.y13c{bottom:727.829700px;}
.y1f8{bottom:728.297400px;}
.y271{bottom:728.538450px;}
.y253{bottom:728.935200px;}
.y188{bottom:730.579350px;}
.y4a{bottom:733.066800px;}
.y7f{bottom:733.144200px;}
.y110{bottom:733.321350px;}
.y9c{bottom:737.283300px;}
.y1c7{bottom:738.640050px;}
.y5a{bottom:739.793550px;}
.y2e{bottom:740.873100px;}
.y11a{bottom:740.943300px;}
.yf4{bottom:742.450950px;}
.ycd{bottom:743.049900px;}
.y1e5{bottom:743.455650px;}
.ybd{bottom:743.873400px;}
.y13b{bottom:749.429850px;}
.y1f7{bottom:749.897400px;}
.y252{bottom:750.535200px;}
.y187{bottom:752.179350px;}
.y20e{bottom:753.373950px;}
.y11{bottom:753.549600px;}
.y280{bottom:754.107000px;}
.y7e{bottom:755.644200px;}
.y10f{bottom:755.821350px;}
.y49{bottom:757.066800px;}
.y21a{bottom:761.764650px;}
.y21d{bottom:761.965350px;}
.y59{bottom:762.293550px;}
.y119{bottom:763.443300px;}
.yf3{bottom:764.950950px;}
.ybc{bottom:765.473400px;}
.ycc{bottom:765.549900px;}
.y174{bottom:766.744800px;}
.y1e4{bottom:766.855800px;}
.y1c8{bottom:770.529750px;}
.y13a{bottom:771.029700px;}
.y1f6{bottom:771.497550px;}
.y270{bottom:771.738300px;}
.y251{bottom:772.135200px;}
.y186{bottom:773.779350px;}
.y27f{bottom:775.706850px;}
.y10{bottom:776.049600px;}
.y7d{bottom:778.144200px;}
.y10e{bottom:778.321350px;}
.y48{bottom:781.066800px;}
.y9b{bottom:782.283300px;}
.y15{bottom:782.543100px;}
.y1d{bottom:783.960450px;}
.y58{bottom:784.793550px;}
.y219{bottom:786.485100px;}
.ybb{bottom:787.073400px;}
.yf2{bottom:787.450950px;}
.y21e{bottom:787.548000px;}
.y1e3{bottom:790.255800px;}
.y21c{bottom:790.388550px;}
.y20d{bottom:791.003850px;}
.y139{bottom:792.629850px;}
.y1f5{bottom:793.097400px;}
.y26f{bottom:793.338450px;}
.y250{bottom:793.735350px;}
.y156{bottom:794.790600px;}
.y2d{bottom:794.873100px;}
.yf{bottom:798.549600px;}
.y1d5{bottom:800.155650px;}
.y7c{bottom:800.644200px;}
.y10d{bottom:800.821350px;}
.y47{bottom:805.066800px;}
.yba{bottom:808.673400px;}
.y1a6{bottom:809.485350px;}
.yf1{bottom:809.950950px;}
.y138{bottom:814.229850px;}
.y26e{bottom:814.938450px;}
.y24f{bottom:815.335350px;}
.y155{bottom:816.390600px;}
.y27e{bottom:818.907000px;}
.y20b{bottom:819.346950px;}
.yc8{bottom:820.226550px;}
.y1d4{bottom:821.755800px;}
.y7b{bottom:823.144200px;}
.y10c{bottom:823.321350px;}
.y1b{bottom:824.531400px;}
.y173{bottom:825.957450px;}
.y9a{bottom:827.283300px;}
.y46{bottom:829.066800px;}
.y208{bottom:829.239150px;}
.y57{bottom:829.793550px;}
.yb9{bottom:830.273400px;}
.y1a5{bottom:831.085350px;}
.yf0{bottom:832.450950px;}
.y137{bottom:835.829700px;}
.y1f4{bottom:836.297400px;}
.y154{bottom:837.990600px;}
.y27d{bottom:840.507000px;}
.yc7{bottom:842.726550px;}
.y1d3{bottom:843.355800px;}
.ye{bottom:843.549600px;}
.y7a{bottom:845.644200px;}
.y17c{bottom:845.779350px;}
.y20a{bottom:845.811750px;}
.y10b{bottom:845.821350px;}
.y1a{bottom:847.031400px;}
.y172{bottom:847.557450px;}
.y99{bottom:849.783300px;}
.y207{bottom:850.839150px;}
.y1a4{bottom:850.885500px;}
.y45{bottom:853.066800px;}
.yef{bottom:854.950950px;}
.y136{bottom:857.429850px;}
.y103{bottom:857.608500px;}
.y1f3{bottom:857.897400px;}
.y26d{bottom:858.138450px;}
.y24e{bottom:858.535350px;}
.y153{bottom:859.590600px;}
.y1b9{bottom:861.341550px;}
.y1d2{bottom:864.955650px;}
.yc6{bottom:865.226550px;}
.yd{bottom:866.049600px;}
.y17b{bottom:867.379350px;}
.y79{bottom:868.144200px;}
.y10a{bottom:868.321350px;}
.y171{bottom:869.157600px;}
.y19{bottom:869.531400px;}
.y218{bottom:869.551950px;}
.y21f{bottom:870.526500px;}
.y98{bottom:872.283300px;}
.y206{bottom:872.439150px;}
.y1a3{bottom:872.485350px;}
.y44{bottom:877.066800px;}
.yee{bottom:877.450950px;}
.y135{bottom:879.029700px;}
.y1f2{bottom:879.497550px;}
.y102{bottom:880.108500px;}
.y24d{bottom:880.135350px;}
.y152{bottom:881.190600px;}
.y1b8{bottom:882.941550px;}
.y27c{bottom:883.706850px;}
.y1d1{bottom:886.555800px;}
.yc5{bottom:887.726550px;}
.y17a{bottom:888.979350px;}
.y78{bottom:890.644200px;}
.y170{bottom:890.757600px;}
.y109{bottom:890.821350px;}
.y18{bottom:892.031400px;}
.y205{bottom:894.039150px;}
.y1a2{bottom:894.085350px;}
.y97{bottom:894.783300px;}
.yb8{bottom:895.073400px;}
.y56{bottom:897.293550px;}
.y216{bottom:897.473250px;}
.y217{bottom:899.599200px;}
.yed{bottom:899.950950px;}
.y134{bottom:900.629850px;}
.y43{bottom:901.066800px;}
.y1f1{bottom:901.097550px;}
.y26c{bottom:901.338450px;}
.y24c{bottom:901.735350px;}
.y101{bottom:902.608500px;}
.y151{bottom:902.790750px;}
.y1b7{bottom:904.541550px;}
.y27b{bottom:905.307000px;}
.y1d0{bottom:908.155650px;}
.y179{bottom:910.579350px;}
.yc{bottom:911.049600px;}
.y16f{bottom:912.357600px;}
.y77{bottom:913.144200px;}
.y108{bottom:913.321350px;}
.y17{bottom:914.531400px;}
.y204{bottom:915.639150px;}
.y1a1{bottom:915.685350px;}
.y96{bottom:917.283300px;}
.yb7{bottom:917.573400px;}
.yec{bottom:922.450950px;}
.y1f0{bottom:922.697550px;}
.y24b{bottom:923.335350px;}
.y150{bottom:924.390600px;}
.y42{bottom:925.066800px;}
.y100{bottom:925.108500px;}
.y215{bottom:925.713450px;}
.y1b6{bottom:926.141550px;}
.y27a{bottom:926.907000px;}
.y1cf{bottom:929.755800px;}
.y178{bottom:932.179350px;}
.yc4{bottom:932.726550px;}
.y16e{bottom:933.957600px;}
.ye0{bottom:935.561400px;}
.y76{bottom:935.644200px;}
.y107{bottom:935.821350px;}
.y16{bottom:937.031400px;}
.y203{bottom:937.239300px;}
.y1a0{bottom:937.285350px;}
.y95{bottom:939.783300px;}
.yb6{bottom:940.073400px;}
.y55{bottom:942.293550px;}
.y1ef{bottom:944.297550px;}
.y24a{bottom:944.935200px;}
.yeb{bottom:944.950950px;}
.yff{bottom:947.608500px;}
.y279{bottom:948.507000px;}
.y1ce{bottom:951.355800px;}
.y177{bottom:953.779350px;}
.y214{bottom:954.414150px;}
.yc3{bottom:955.226550px;}
.y16d{bottom:955.557600px;}
.yb{bottom:956.049600px;}
.y1aa{bottom:956.656500px;}
.ydf{bottom:958.061400px;}
.y75{bottom:958.144200px;}
.y106{bottom:958.321350px;}
.y202{bottom:958.839300px;}
.y94{bottom:962.283300px;}
.yb5{bottom:962.573400px;}
.y1ee{bottom:965.897550px;}
.y249{bottom:966.535350px;}
.yea{bottom:967.450950px;}
.y14f{bottom:967.590750px;}
.y278{bottom:970.107000px;}
.yfe{bottom:970.108500px;}
.y41{bottom:971.566800px;}
.y14{bottom:972.110100px;}
.y1cd{bottom:972.955650px;}
.y133{bottom:972.980550px;}
.y185{bottom:973.841550px;}
.y16c{bottom:977.157600px;}
.yc2{bottom:977.726550px;}
.y1a9{bottom:978.256500px;}
.ya{bottom:978.549600px;}
.yde{bottom:980.561400px;}
.y74{bottom:980.644200px;}
.yb4{bottom:985.073400px;}
.y54{bottom:987.293550px;}
.y1ed{bottom:987.497550px;}
.y14e{bottom:989.190600px;}
.ye9{bottom:989.950950px;}
.y277{bottom:991.706850px;}
.y40{bottom:992.566800px;}
.yfd{bottom:992.608500px;}
.y1cc{bottom:994.555800px;}
.y132{bottom:994.580700px;}
.y184{bottom:995.441550px;}
.y274{bottom:995.526150px;}
.y16b{bottom:998.757600px;}
.y1a8{bottom:999.856500px;}
.yc1{bottom:1000.226550px;}
.y1b3{bottom:1001.195400px;}
.y201{bottom:1002.039300px;}
.ydd{bottom:1003.061400px;}
.y73{bottom:1003.144200px;}
.y105{bottom:1003.321350px;}
.y93{bottom:1007.283300px;}
.yb3{bottom:1007.573400px;}
.y53{bottom:1009.793550px;}
.ye8{bottom:1012.450950px;}
.y276{bottom:1013.307000px;}
.y3f{bottom:1013.566800px;}
.yfc{bottom:1015.108500px;}
.y131{bottom:1016.180700px;}
.y183{bottom:1017.041550px;}
.y26a{bottom:1019.047050px;}
.y16a{bottom:1020.357600px;}
.y1a7{bottom:1021.456500px;}
.yc0{bottom:1022.726550px;}
.y200{bottom:1023.639300px;}
.ydc{bottom:1025.561400px;}
.y72{bottom:1025.644200px;}
.yb2{bottom:1030.073400px;}
.y1ec{bottom:1030.697550px;}
.yf9{bottom:1030.876350px;}
.y3e{bottom:1036.066800px;}
.y13{bottom:1036.243950px;}
.y12{bottom:1037.169300px;}
.yfb{bottom:1037.608500px;}
.y130{bottom:1037.780700px;}
.y182{bottom:1038.641550px;}
.y269{bottom:1040.647200px;}
.y1ff{bottom:1045.239300px;}
.ydb{bottom:1048.061400px;}
.y92{bottom:1052.283300px;}
.y1b2{bottom:1052.297400px;}
.y1eb{bottom:1052.297550px;}
.yb1{bottom:1052.573400px;}
.yf8{bottom:1053.376350px;}
.y14d{bottom:1053.990750px;}
.y52{bottom:1054.793550px;}
.y12f{bottom:1059.380700px;}
.yfa{bottom:1060.108500px;}
.y28f{bottom:1060.462800px;}
.y268{bottom:1062.247050px;}
.y169{bottom:1063.557600px;}
.y26b{bottom:1064.360550px;}
.y248{bottom:1064.714850px;}
.y1fe{bottom:1066.839300px;}
.y209{bottom:1067.549400px;}
.yda{bottom:1070.561400px;}
.y1cb{bottom:1072.155750px;}
.y1b1{bottom:1073.897400px;}
.y1ea{bottom:1073.897550px;}
.y176{bottom:1074.187500px;}
.y91{bottom:1074.783300px;}
.yf7{bottom:1075.876350px;}
.y12e{bottom:1080.980550px;}
.y275{bottom:1083.754500px;}
.y267{bottom:1083.847200px;}
.y9{bottom:1088.349600px;}
.y1fd{bottom:1088.439300px;}
.y181{bottom:1092.612600px;}
.y104{bottom:1093.321350px;}
.y213{bottom:1093.415550px;}
.yb0{bottom:1097.573400px;}
.yca{bottom:1098.730650px;}
.y3d{bottom:1101.919500px;}
.y12d{bottom:1102.580700px;}
.y266{bottom:1105.447050px;}
.y1fc{bottom:1110.039300px;}
.y70{bottom:1115.384100px;}
.y71{bottom:1115.644200px;}
.y265{bottom:1127.047050px;}
.y1ca{bottom:1129.876500px;}
.y34{bottom:1175.509950px;}
.y33{bottom:1197.110100px;}
.y2{bottom:1212.654000px;}
.y28{bottom:1309.182000px;}
.h1b{height:25.013672px;}
.h1a{height:31.587891px;}
.h3{height:39.264000px;}
.he{height:42.117188px;}
.h19{height:43.515600px;}
.h18{height:44.172000px;}
.h17{height:45.826172px;}
.h1d{height:48.117188px;}
.h15{height:49.080000px;}
.hf{height:49.992188px;}
.hd{height:50.027344px;}
.h6{height:52.646484px;}
.h14{height:53.121445px;}
.h13{height:54.158203px;}
.h16{height:54.196289px;}
.h10{height:58.342594px;}
.h2{height:58.896000px;}
.h4{height:59.027344px;}
.h12{height:60.807480px;}
.h11{height:61.280508px;}
.h7{height:63.175781px;}
.ha{height:63.949219px;}
.h1c{height:64.045800px;}
.hc{height:68.440430px;}
.hb{height:74.607422px;}
.h8{height:83.018381px;}
.h9{height:135.000000px;}
.h5{height:236.109375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xd{left:-107.852400px;}
.x0{left:0.000000px;}
.x5{left:30.826800px;}
.x4{left:31.889700px;}
.x10{left:39.529950px;}
.x11{left:41.441550px;}
.xf{left:46.044750px;}
.x3d{left:47.622000px;}
.x40{left:49.535400px;}
.x2{left:65.379900px;}
.x2f{left:78.874050px;}
.x3b{left:93.903900px;}
.x3c{left:100.707000px;}
.x2d{left:103.464600px;}
.x52{left:107.887800px;}
.x35{left:110.864100px;}
.x32{left:115.282800px;}
.x29{left:117.992100px;}
.x14{left:119.055150px;}
.x13{left:120.118050px;}
.x15{left:121.181100px;}
.x23{left:122.244000px;}
.x1e{left:123.307050px;}
.x1f{left:124.795200px;}
.x24{left:126.496050px;}
.x1a{left:128.622000px;}
.x28{left:130.110150px;}
.x53{left:131.811000px;}
.x54{left:132.874050px;}
.xc{left:136.033500px;}
.x1c{left:138.189000px;}
.x8{left:140.929050px;}
.x9{left:142.169250px;}
.x31{left:144.389700px;}
.xa{left:163.210650px;}
.x18{left:174.081000px;}
.x6{left:186.150600px;}
.x7{left:188.722350px;}
.xb{left:190.402500px;}
.xe{left:191.465550px;}
.x12{left:194.078700px;}
.x19{left:195.519750px;}
.x16{left:196.653600px;}
.x26{left:207.283500px;}
.x45{left:208.346400px;}
.x44{left:209.409450px;}
.x46{left:210.472350px;}
.x1d{left:220.039350px;}
.x3a{left:272.911650px;}
.x2b{left:291.832650px;}
.x1b{left:296.574750px;}
.x20{left:323.149650px;}
.x39{left:332.439300px;}
.x56{left:342.323400px;}
.x5e{left:344.773200px;}
.x5a{left:346.044000px;}
.x58{left:347.156550px;}
.x5c{left:350.877150px;}
.x55{left:380.897100px;}
.x36{left:384.129900px;}
.x57{left:387.359100px;}
.x5b{left:391.079700px;}
.x59{left:403.954500px;}
.x5d{left:407.675100px;}
.x3{left:408.897600px;}
.x1{left:413.503950px;}
.x27{left:431.043300px;}
.x25{left:453.897600px;}
.x2a{left:464.158350px;}
.x33{left:467.716500px;}
.x22{left:494.645700px;}
.x3e{left:502.795200px;}
.x3f{left:504.020700px;}
.x2c{left:510.696750px;}
.x41{left:514.275600px;}
.x42{left:516.047250px;}
.x37{left:548.503950px;}
.x21{left:550.954800px;}
.x30{left:563.031450px;}
.x38{left:571.889700px;}
.x2e{left:574.157550px;}
.x34{left:577.381950px;}
.x4a{left:583.547250px;}
.x48{left:591.965550px;}
.x47{left:593.114100px;}
.x43{left:692.007900px;}
.x4c{left:699.413400px;}
.x49{left:700.476450px;}
.x51{left:702.262800px;}
.x4d{left:707.952750px;}
.x4f{left:709.674450px;}
.x4e{left:711.106350px;}
.x50{left:712.169250px;}
.x17{left:718.803150px;}
.x4b{left:723.189000px;}
@media print{
.v2{vertical-align:-5.333333pt;}
.v6{vertical-align:-3.779200pt;}
.v7{vertical-align:-2.183467pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.779200pt;}
.v8{vertical-align:5.333333pt;}
.v1{vertical-align:17.637867pt;}
.v3{vertical-align:21.312000pt;}
.v4{vertical-align:26.645333pt;}
.ls11{letter-spacing:-7.872000pt;}
.ls13{letter-spacing:-6.272000pt;}
.ls15{letter-spacing:-2.048000pt;}
.ls3{letter-spacing:-1.706667pt;}
.ls7{letter-spacing:-1.380544pt;}
.ls10{letter-spacing:-1.344000pt;}
.lsf{letter-spacing:-1.216000pt;}
.ls14{letter-spacing:-1.024000pt;}
.lsa{letter-spacing:-0.853333pt;}
.lse{letter-spacing:-0.768000pt;}
.lsc{letter-spacing:-0.554667pt;}
.ls6{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.044267pt;}
.ls16{letter-spacing:0.768000pt;}
.ls2{letter-spacing:9.456000pt;}
.ls1{letter-spacing:134.929067pt;}
.ws14{word-spacing:-17.333333pt;}
.ws1{word-spacing:-16.000000pt;}
.wsc8{word-spacing:-14.656000pt;}
.wsb8{word-spacing:-14.528000pt;}
.wsbe{word-spacing:-14.144000pt;}
.wsc7{word-spacing:-13.888000pt;}
.ws61{word-spacing:-13.333333pt;}
.wsb9{word-spacing:-13.312000pt;}
.wsba{word-spacing:-13.184000pt;}
.wsac{word-spacing:-11.893333pt;}
.wsc6{word-spacing:-11.840000pt;}
.wsab{word-spacing:-11.360000pt;}
.wsc0{word-spacing:-10.666667pt;}
.ws40{word-spacing:-10.304000pt;}
.wsa2{word-spacing:-9.920000pt;}
.wsb7{word-spacing:-9.685333pt;}
.wsa8{word-spacing:-9.568000pt;}
.ws4{word-spacing:-9.328000pt;}
.wsae{word-spacing:-8.704000pt;}
.ws45{word-spacing:-8.576000pt;}
.ws23{word-spacing:-8.512000pt;}
.wsbf{word-spacing:-8.256000pt;}
.ws72{word-spacing:-7.947456pt;}
.ws5f{word-spacing:-7.232000pt;}
.ws60{word-spacing:-7.104000pt;}
.wsbd{word-spacing:-6.656000pt;}
.ws42{word-spacing:-6.336000pt;}
.ws1b{word-spacing:-6.272000pt;}
.wsaf{word-spacing:-6.208000pt;}
.ws9e{word-spacing:-5.952000pt;}
.ws83{word-spacing:-5.824000pt;}
.wsa3{word-spacing:-5.696000pt;}
.wsc{word-spacing:-5.568000pt;}
.ws1f{word-spacing:-5.440000pt;}
.wsd{word-spacing:-4.864000pt;}
.wsad{word-spacing:-4.544000pt;}
.ws9a{word-spacing:-4.288000pt;}
.ws32{word-spacing:-4.160000pt;}
.ws80{word-spacing:-4.096000pt;}
.ws3a{word-spacing:-3.136000pt;}
.ws85{word-spacing:-2.933333pt;}
.ws2c{word-spacing:-2.624000pt;}
.ws71{word-spacing:-2.560000pt;}
.wse{word-spacing:-2.240000pt;}
.ws6c{word-spacing:-2.112000pt;}
.ws6e{word-spacing:-2.048000pt;}
.wsc1{word-spacing:-1.728000pt;}
.ws99{word-spacing:-1.536000pt;}
.ws13{word-spacing:-1.344000pt;}
.ws2{word-spacing:-1.152000pt;}
.ws3{word-spacing:-1.024000pt;}
.ws96{word-spacing:-0.960000pt;}
.ws4e{word-spacing:-0.832000pt;}
.ws41{word-spacing:-0.512000pt;}
.ws81{word-spacing:-0.384000pt;}
.ws4c{word-spacing:-0.256000pt;}
.ws74{word-spacing:-0.138667pt;}
.ws7a{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:0.064000pt;}
.ws1e{word-spacing:0.192000pt;}
.ws7d{word-spacing:0.213333pt;}
.ws44{word-spacing:0.320000pt;}
.wsa5{word-spacing:0.512000pt;}
.ws73{word-spacing:0.533333pt;}
.ws4f{word-spacing:0.640000pt;}
.ws5c{word-spacing:1.024000pt;}
.ws1d{word-spacing:1.088000pt;}
.ws34{word-spacing:1.152000pt;}
.ws70{word-spacing:1.280000pt;}
.ws25{word-spacing:1.706667pt;}
.ws1c{word-spacing:1.792000pt;}
.ws68{word-spacing:1.984000pt;}
.ws5{word-spacing:2.048000pt;}
.wsa4{word-spacing:2.176000pt;}
.wsc2{word-spacing:2.304000pt;}
.ws9b{word-spacing:2.496000pt;}
.ws89{word-spacing:2.560000pt;}
.ws49{word-spacing:2.688000pt;}
.wsb{word-spacing:2.752000pt;}
.wsc5{word-spacing:2.816000pt;}
.wsc4{word-spacing:2.880000pt;}
.ws3d{word-spacing:2.944000pt;}
.ws3c{word-spacing:3.008000pt;}
.ws5b{word-spacing:3.264000pt;}
.ws98{word-spacing:3.285333pt;}
.wsaa{word-spacing:3.328000pt;}
.ws56{word-spacing:3.392000pt;}
.ws5e{word-spacing:3.648000pt;}
.ws3b{word-spacing:3.840000pt;}
.ws4b{word-spacing:3.904000pt;}
.wsf{word-spacing:3.968000pt;}
.ws7b{word-spacing:4.224000pt;}
.ws20{word-spacing:4.288000pt;}
.ws5a{word-spacing:4.416000pt;}
.ws3e{word-spacing:4.672000pt;}
.wsc3{word-spacing:4.736000pt;}
.ws8{word-spacing:4.800000pt;}
.ws5d{word-spacing:5.120000pt;}
.ws7{word-spacing:5.200000pt;}
.ws54{word-spacing:5.248000pt;}
.ws33{word-spacing:5.440000pt;}
.ws30{word-spacing:5.568000pt;}
.ws39{word-spacing:5.952000pt;}
.ws2a{word-spacing:6.080000pt;}
.ws22{word-spacing:6.272000pt;}
.ws2e{word-spacing:6.336000pt;}
.ws84{word-spacing:6.400000pt;}
.ws9d{word-spacing:6.464000pt;}
.ws43{word-spacing:6.592000pt;}
.ws29{word-spacing:6.784000pt;}
.ws21{word-spacing:6.976000pt;}
.ws66{word-spacing:7.104000pt;}
.ws7c{word-spacing:7.232000pt;}
.ws8c{word-spacing:8.064000pt;}
.wsa{word-spacing:8.128000pt;}
.ws31{word-spacing:8.320000pt;}
.ws55{word-spacing:8.448000pt;}
.ws77{word-spacing:8.576000pt;}
.ws6d{word-spacing:8.640000pt;}
.ws59{word-spacing:8.704000pt;}
.ws9{word-spacing:8.805333pt;}
.ws76{word-spacing:9.024000pt;}
.ws75{word-spacing:9.152000pt;}
.ws62{word-spacing:9.280000pt;}
.ws6{word-spacing:9.472000pt;}
.ws8e{word-spacing:9.498667pt;}
.ws2d{word-spacing:9.792000pt;}
.ws90{word-spacing:9.914667pt;}
.ws2f{word-spacing:9.920000pt;}
.ws38{word-spacing:10.176000pt;}
.ws78{word-spacing:10.560000pt;}
.ws79{word-spacing:11.200000pt;}
.ws1a{word-spacing:11.392000pt;}
.ws97{word-spacing:11.584000pt;}
.ws9c{word-spacing:12.032000pt;}
.wsa7{word-spacing:12.549333pt;}
.ws9f{word-spacing:12.672000pt;}
.ws19{word-spacing:13.376000pt;}
.ws2b{word-spacing:13.440000pt;}
.ws67{word-spacing:13.632000pt;}
.ws64{word-spacing:13.696000pt;}
.ws3f{word-spacing:14.400000pt;}
.ws8a{word-spacing:15.232000pt;}
.ws58{word-spacing:15.616000pt;}
.ws6a{word-spacing:15.744000pt;}
.ws8b{word-spacing:16.064000pt;}
.ws4a{word-spacing:16.640000pt;}
.ws69{word-spacing:16.704000pt;}
.ws93{word-spacing:17.024000pt;}
.wsa6{word-spacing:17.216000pt;}
.ws8d{word-spacing:17.472000pt;}
.ws94{word-spacing:18.442667pt;}
.ws11{word-spacing:19.072000pt;}
.ws57{word-spacing:19.392000pt;}
.ws91{word-spacing:19.968000pt;}
.ws35{word-spacing:20.672000pt;}
.ws95{word-spacing:20.869333pt;}
.ws50{word-spacing:21.568000pt;}
.ws28{word-spacing:21.760000pt;}
.ws4d{word-spacing:22.656000pt;}
.ws65{word-spacing:24.256000pt;}
.ws63{word-spacing:25.280000pt;}
.ws6f{word-spacing:25.408000pt;}
.ws52{word-spacing:25.536000pt;}
.ws12{word-spacing:26.112000pt;}
.ws8f{word-spacing:26.416000pt;}
.ws53{word-spacing:26.432000pt;}
.ws82{word-spacing:26.688000pt;}
.ws6b{word-spacing:27.392000pt;}
.ws47{word-spacing:27.520000pt;}
.ws46{word-spacing:27.712000pt;}
.ws7f{word-spacing:28.416000pt;}
.ws26{word-spacing:28.992000pt;}
.ws36{word-spacing:31.168000pt;}
.ws92{word-spacing:31.552000pt;}
.ws18{word-spacing:31.808000pt;}
.wsa0{word-spacing:32.000000pt;}
.wsb2{word-spacing:34.302400pt;}
.ws27{word-spacing:34.752000pt;}
.ws15{word-spacing:41.593600pt;}
.ws16{word-spacing:42.880000pt;}
.ws17{word-spacing:43.264000pt;}
.ws48{word-spacing:43.840000pt;}
.ws10{word-spacing:52.160000pt;}
.ws7e{word-spacing:55.808000pt;}
.wsa9{word-spacing:61.706667pt;}
.ws51{word-spacing:63.744000pt;}
.ws37{word-spacing:65.472000pt;}
.wsa1{word-spacing:66.816000pt;}
.wsb1{word-spacing:72.944533pt;}
.wsb3{word-spacing:77.442133pt;}
.ws88{word-spacing:86.400000pt;}
.ws86{word-spacing:94.080000pt;}
.wsb6{word-spacing:102.163733pt;}
.wsb5{word-spacing:109.798400pt;}
.wsb4{word-spacing:119.753067pt;}
.ws87{word-spacing:170.432000pt;}
.wsbb{word-spacing:321.423467pt;}
.wsbc{word-spacing:710.222400pt;}
.wsb0{word-spacing:833.930667pt;}
._6{margin-left:-2547.994133pt;}
._f{margin-left:-14.214400pt;}
._c{margin-left:-12.972800pt;}
._d{margin-left:-12.044800pt;}
._10{margin-left:-10.675200pt;}
._11{margin-left:-8.736000pt;}
._5{margin-left:-7.008000pt;}
._14{margin-left:-5.990400pt;}
._7{margin-left:-4.844800pt;}
._3{margin-left:-3.541333pt;}
._4{margin-left:-2.302400pt;}
._2{margin-left:-1.408000pt;}
._8{width:1.670400pt;}
._a{width:2.924800pt;}
._1a{width:3.921600pt;}
._1b{width:4.920000pt;}
._b{width:5.920000pt;}
._24{width:6.950400pt;}
._23{width:7.872000pt;}
._1d{width:8.777067pt;}
._12{width:10.284800pt;}
._13{width:13.844267pt;}
._19{width:14.822400pt;}
._18{width:17.286400pt;}
._17{width:18.291200pt;}
._16{width:20.313600pt;}
._15{width:21.472000pt;}
._1c{width:24.736000pt;}
._1e{width:27.360000pt;}
._1f{width:33.926400pt;}
._0{width:36.160000pt;}
._e{width:37.120000pt;}
._1{width:56.106667pt;}
._20{width:67.223467pt;}
._9{width:79.699200pt;}
._21{width:110.679467pt;}
._22{width:130.214933pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:37.312000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs9{font-size:62.080000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:160.000000pt;}
.fs2{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:27.212667pt;}
.y3{bottom:50.019067pt;}
.y2c{bottom:99.714667pt;}
.y168{bottom:99.954267pt;}
.y27{bottom:103.090000pt;}
.y125{bottom:108.478133pt;}
.y51{bottom:108.719600pt;}
.y264{bottom:112.236400pt;}
.y167{bottom:112.754267pt;}
.y118{bottom:114.703200pt;}
.ya9{bottom:114.882400pt;}
.ybf{bottom:115.648133pt;}
.y1e9{bottom:121.108133pt;}
.y124{bottom:121.811467pt;}
.y8a{bottom:122.089733pt;}
.ycb{bottom:123.157600pt;}
.y6a{bottom:123.333067pt;}
.y50{bottom:123.386267pt;}
.y146{bottom:124.163200pt;}
.y166{bottom:125.554267pt;}
.y3c{bottom:149.378667pt;}
.y7{bottom:155.281867pt;}
.y3b{bottom:169.378667pt;}
.y1c9{bottom:171.844533pt;}
.y6{bottom:174.481867pt;}
.ye7{bottom:177.828800pt;}
.y69{bottom:189.594267pt;}
.y5{bottom:193.681867pt;}
.y19d{bottom:206.723200pt;}
.y68{bottom:209.594267pt;}
.y26{bottom:211.242267pt;}
.y4{bottom:212.881867pt;}
.y2b{bottom:213.761867pt;}
.ya8{bottom:215.362933pt;}
.y2a1{bottom:219.612267pt;}
.y29b{bottom:219.837600pt;}
.y295{bottom:220.291733pt;}
.ye1{bottom:220.348533pt;}
.y2b3{bottom:220.557200pt;}
.y2b9{bottom:220.583467pt;}
.y2ad{bottom:221.502000pt;}
.y2a7{bottom:221.817067pt;}
.y19c{bottom:225.923200pt;}
.y1c6{bottom:227.664133pt;}
.y67{bottom:229.594267pt;}
.y1df{bottom:231.249467pt;}
.y17f{bottom:233.403867pt;}
.yc9{bottom:233.589867pt;}
.y1af{bottom:235.255867pt;}
.ya7{bottom:235.362933pt;}
.y19e{bottom:237.567067pt;}
.y2a0{bottom:238.812267pt;}
.y29a{bottom:239.037600pt;}
.y294{bottom:239.491733pt;}
.y2b2{bottom:239.757200pt;}
.y2b8{bottom:239.783467pt;}
.y2ac{bottom:240.702000pt;}
.y2a6{bottom:241.017067pt;}
.y25d{bottom:244.742400pt;}
.y19b{bottom:245.123200pt;}
.y1c5{bottom:246.864133pt;}
.y123{bottom:248.429200pt;}
.y66{bottom:249.594267pt;}
.y1de{bottom:250.449600pt;}
.y17e{bottom:252.603867pt;}
.y90{bottom:254.187067pt;}
.y1ae{bottom:254.455867pt;}
.ye6{bottom:254.759600pt;}
.ya6{bottom:255.362933pt;}
.y29f{bottom:258.012267pt;}
.y299{bottom:258.237600pt;}
.y293{bottom:258.691733pt;}
.y2b1{bottom:258.957200pt;}
.y2b7{bottom:258.983333pt;}
.y2ab{bottom:259.902000pt;}
.y8{bottom:260.031467pt;}
.y2a5{bottom:260.217067pt;}
.y25c{bottom:263.942400pt;}
.y25{bottom:263.998133pt;}
.y19a{bottom:264.323200pt;}
.y1c4{bottom:266.064133pt;}
.y28e{bottom:267.117333pt;}
.y122{bottom:268.429200pt;}
.y29{bottom:269.352400pt;}
.y65{bottom:269.594267pt;}
.y1dd{bottom:269.649600pt;}
.y17d{bottom:271.803867pt;}
.y1ad{bottom:273.655867pt;}
.y14a{bottom:274.298400pt;}
.ye5{bottom:274.759600pt;}
.ya5{bottom:275.362933pt;}
.y8f{bottom:275.520400pt;}
.y29e{bottom:277.212267pt;}
.y298{bottom:277.437600pt;}
.y292{bottom:277.891733pt;}
.y2b0{bottom:278.157200pt;}
.y2b6{bottom:278.183333pt;}
.y2aa{bottom:279.102000pt;}
.y2a4{bottom:279.416933pt;}
.y25b{bottom:283.142400pt;}
.y199{bottom:283.523200pt;}
.y1c3{bottom:285.264133pt;}
.y28d{bottom:286.317333pt;}
.y121{bottom:288.429200pt;}
.y1dc{bottom:288.849467pt;}
.y1fa{bottom:288.889467pt;}
.y64{bottom:289.594267pt;}
.y157{bottom:292.669067pt;}
.y1ac{bottom:292.855867pt;}
.yd9{bottom:292.990667pt;}
.y149{bottom:293.498400pt;}
.ye4{bottom:294.759600pt;}
.y8e{bottom:295.520400pt;}
.y29d{bottom:296.412267pt;}
.y297{bottom:296.637600pt;}
.y291{bottom:297.091733pt;}
.y2af{bottom:297.357200pt;}
.y2b5{bottom:297.383467pt;}
.y2a9{bottom:298.302000pt;}
.y1fb{bottom:298.338267pt;}
.y2a3{bottom:298.617067pt;}
.y25a{bottom:302.342400pt;}
.y198{bottom:304.323200pt;}
.y1c2{bottom:304.464133pt;}
.y1db{bottom:308.049600pt;}
.y120{bottom:308.429200pt;}
.y63{bottom:309.594267pt;}
.y1ab{bottom:312.055867pt;}
.y148{bottom:312.698400pt;}
.yd8{bottom:312.990667pt;}
.ye3{bottom:314.759600pt;}
.y8d{bottom:315.520400pt;}
.y29c{bottom:315.612267pt;}
.y296{bottom:315.837600pt;}
.y290{bottom:316.291733pt;}
.y2ae{bottom:316.557200pt;}
.y2b4{bottom:316.583333pt;}
.y24{bottom:316.754000pt;}
.y2a8{bottom:317.502000pt;}
.y2a2{bottom:317.816933pt;}
.y23{bottom:319.273733pt;}
.yaf{bottom:320.628133pt;}
.y259{bottom:321.542400pt;}
.y1c1{bottom:323.664133pt;}
.y28c{bottom:324.717333pt;}
.y197{bottom:325.123200pt;}
.y1da{bottom:327.249600pt;}
.y11f{bottom:328.429200pt;}
.y147{bottom:331.898400pt;}
.yd7{bottom:332.990667pt;}
.y8c{bottom:335.520400pt;}
.yae{bottom:341.961467pt;}
.y180{bottom:342.590000pt;}
.y1c0{bottom:342.864133pt;}
.y28b{bottom:343.917333pt;}
.y175{bottom:344.070533pt;}
.y196{bottom:344.323200pt;}
.y1d9{bottom:346.449600pt;}
.y62{bottom:350.927600pt;}
.y247{bottom:352.247467pt;}
.y221{bottom:352.496267pt;}
.yd6{bottom:352.990667pt;}
.y8b{bottom:355.520400pt;}
.y165{bottom:361.197600pt;}
.yad{bottom:361.961467pt;}
.y1bf{bottom:362.064133pt;}
.y195{bottom:365.123200pt;}
.y1d8{bottom:365.649600pt;}
.ye2{bottom:370.584667pt;}
.y22{bottom:371.084667pt;}
.y1b0{bottom:371.529600pt;}
.y89{bottom:371.683733pt;}
.y220{bottom:371.696267pt;}
.y246{bottom:371.712000pt;}
.y61{bottom:372.260933pt;}
.y245{bottom:373.202800pt;}
.y21{bottom:374.549333pt;}
.y12c{bottom:375.347333pt;}
.y144{bottom:375.728267pt;}
.yac{bottom:381.961467pt;}
.y164{bottom:381.997600pt;}
.y28a{bottom:382.317333pt;}
.y1d7{bottom:384.849467pt;}
.y194{bottom:385.923200pt;}
.y229{bottom:388.709333pt;}
.y23d{bottom:392.378667pt;}
.yd5{bottom:392.990667pt;}
.y60{bottom:393.594267pt;}
.y143{bottom:394.928267pt;}
.y12b{bottom:395.347333pt;}
.y263{bottom:397.457600pt;}
.y1b5{bottom:399.872667pt;}
.y289{bottom:401.517333pt;}
.yab{bottom:401.961467pt;}
.y163{bottom:402.797600pt;}
.y193{bottom:406.723200pt;}
.y23c{bottom:410.415467pt;}
.y228{bottom:410.609600pt;}
.y88{bottom:411.683733pt;}
.yd4{bottom:412.990667pt;}
.y142{bottom:414.128400pt;}
.y5f{bottom:414.927600pt;}
.y12a{bottom:415.347333pt;}
.y262{bottom:416.657600pt;}
.yaa{bottom:421.961467pt;}
.y162{bottom:423.597600pt;}
.y1e8{bottom:423.731600pt;}
.y20{bottom:426.990267pt;}
.y192{bottom:427.523200pt;}
.y234{bottom:428.053200pt;}
.y244{bottom:428.635867pt;}
.y227{bottom:430.887867pt;}
.yd3{bottom:432.990667pt;}
.y129{bottom:435.347333pt;}
.y261{bottom:435.857600pt;}
.y5e{bottom:436.260933pt;}
.y288{bottom:439.917333pt;}
.y1d6{bottom:442.449600pt;}
.y161{bottom:444.397600pt;}
.y14c{bottom:448.037067pt;}
.y191{bottom:448.323200pt;}
.y243{bottom:449.517733pt;}
.y226{bottom:449.722533pt;}
.y233{bottom:451.407467pt;}
.y23b{bottom:451.407600pt;}
.y87{bottom:451.683733pt;}
.yd2{bottom:452.990667pt;}
.y260{bottom:455.057600pt;}
.y128{bottom:455.347333pt;}
.ya4{bottom:455.362933pt;}
.y3a{bottom:457.242133pt;}
.y5d{bottom:457.594267pt;}
.y287{bottom:459.117333pt;}
.y160{bottom:465.197600pt;}
.y117{bottom:466.056000pt;}
.y32{bottom:466.553867pt;}
.y14b{bottom:468.837067pt;}
.y190{bottom:469.123200pt;}
.y231{bottom:470.929867pt;}
.y23a{bottom:471.643733pt;}
.y86{bottom:471.683733pt;}
.yd1{bottom:472.990667pt;}
.y22c{bottom:473.092533pt;}
.y1e2{bottom:473.972133pt;}
.y25f{bottom:474.257600pt;}
.y127{bottom:475.347333pt;}
.ya3{bottom:475.362933pt;}
.y39{bottom:477.242133pt;}
.y5c{bottom:478.927600pt;}
.y4f{bottom:480.948267pt;}
.y15f{bottom:484.397600pt;}
.y116{bottom:486.056000pt;}
.y18f{bottom:488.323200pt;}
.y1e1{bottom:488.372133pt;}
.y239{bottom:492.378667pt;}
.yd0{bottom:492.990667pt;}
.y25e{bottom:493.457600pt;}
.y232{bottom:494.415467pt;}
.y126{bottom:495.347333pt;}
.y225{bottom:495.701467pt;}
.y38{bottom:497.242133pt;}
.y1be{bottom:497.303067pt;}
.y286{bottom:497.517333pt;}
.y145{bottom:498.455467pt;}
.y4e{bottom:502.281600pt;}
.y1e0{bottom:502.772133pt;}
.y15e{bottom:503.597600pt;}
.y115{bottom:506.056000pt;}
.y18e{bottom:507.523200pt;}
.y141{bottom:508.102133pt;}
.y20c{bottom:509.139600pt;}
.y85{bottom:511.683733pt;}
.ycf{bottom:512.990667pt;}
.y6f{bottom:513.226667pt;}
.y31{bottom:514.553867pt;}
.ya2{bottom:515.362933pt;}
.y230{bottom:515.675200pt;}
.y22b{bottom:516.320933pt;}
.y1bd{bottom:516.503067pt;}
.y242{bottom:516.570000pt;}
.y285{bottom:516.717333pt;}
.y37{bottom:517.242133pt;}
.y15d{bottom:522.797600pt;}
.y114{bottom:526.056000pt;}
.y18d{bottom:526.723200pt;}
.y11e{bottom:528.429200pt;}
.y84{bottom:531.683733pt;}
.y6e{bottom:534.560000pt;}
.y1bc{bottom:535.703067pt;}
.y238{bottom:536.347200pt;}
.y224{bottom:536.824800pt;}
.y36{bottom:537.242133pt;}
.y22f{bottom:538.667333pt;}
.y241{bottom:539.024267pt;}
.y15c{bottom:541.997600pt;}
.y4d{bottom:544.948267pt;}
.y212{bottom:545.791733pt;}
.y113{bottom:546.056000pt;}
.y11d{bottom:548.429200pt;}
.y83{bottom:551.683733pt;}
.y258{bottom:551.942400pt;}
.y6d{bottom:554.560000pt;}
.y1bb{bottom:554.903067pt;}
.y284{bottom:555.117333pt;}
.ya1{bottom:555.362933pt;}
.y35{bottom:557.242133pt;}
.y223{bottom:561.013867pt;}
.y15b{bottom:561.197600pt;}
.y237{bottom:562.226400pt;}
.y30{bottom:562.553867pt;}
.y240{bottom:563.814000pt;}
.y112{bottom:566.056000pt;}
.y11c{bottom:568.429200pt;}
.y140{bottom:570.159867pt;}
.y273{bottom:570.789733pt;}
.y257{bottom:571.142400pt;}
.y82{bottom:571.683733pt;}
.y18c{bottom:572.603867pt;}
.y1ba{bottom:574.103067pt;}
.y283{bottom:574.317333pt;}
.y6c{bottom:574.560000pt;}
.ya0{bottom:575.362933pt;}
.y211{bottom:577.445333pt;}
.y15a{bottom:580.397600pt;}
.y1f{bottom:582.680533pt;}
.y22a{bottom:585.470533pt;}
.y111{bottom:586.056000pt;}
.y236{bottom:587.297333pt;}
.y22e{bottom:587.404933pt;}
.y23f{bottom:588.118800pt;}
.y11b{bottom:588.429200pt;}
.y13f{bottom:589.359867pt;}
.y256{bottom:590.342400pt;}
.y81{bottom:591.683733pt;}
.y18b{bottom:591.803867pt;}
.y6b{bottom:594.560000pt;}
.yce{bottom:595.180400pt;}
.y9f{bottom:595.362933pt;}
.y159{bottom:601.197600pt;}
.y1e{bottom:602.680533pt;}
.y13e{bottom:608.559867pt;}
.y4c{bottom:608.948267pt;}
.y272{bottom:609.189733pt;}
.y255{bottom:609.542400pt;}
.y210{bottom:610.043733pt;}
.y222{bottom:610.216000pt;}
.y2f{bottom:610.553867pt;}
.y18a{bottom:611.003867pt;}
.y23e{bottom:611.234267pt;}
.y80{bottom:611.683733pt;}
.y235{bottom:612.100400pt;}
.y22d{bottom:612.168667pt;}
.y282{bottom:612.717333pt;}
.y9e{bottom:615.362933pt;}
.y1b4{bottom:617.510533pt;}
.y1e7{bottom:619.249600pt;}
.yf6{bottom:619.956400pt;}
.y158{bottom:621.997600pt;}
.y5b{bottom:625.594267pt;}
.y13d{bottom:627.759867pt;}
.y1f9{bottom:628.175600pt;}
.y254{bottom:628.742400pt;}
.y189{bottom:630.203867pt;}
.y4b{bottom:630.281600pt;}
.y19f{bottom:631.393867pt;}
.y281{bottom:631.917333pt;}
.y21b{bottom:634.935067pt;}
.y9d{bottom:635.362933pt;}
.y20f{bottom:638.106667pt;}
.y1c{bottom:639.373467pt;}
.yf5{bottom:639.956400pt;}
.y1e6{bottom:640.049600pt;}
.ybe{bottom:642.020800pt;}
.y2a{bottom:643.468000pt;}
.y13c{bottom:646.959733pt;}
.y1f8{bottom:647.375467pt;}
.y271{bottom:647.589733pt;}
.y253{bottom:647.942400pt;}
.y188{bottom:649.403867pt;}
.y4a{bottom:651.614933pt;}
.y7f{bottom:651.683733pt;}
.y110{bottom:651.841200pt;}
.y9c{bottom:655.362933pt;}
.y1c7{bottom:656.568933pt;}
.y5a{bottom:657.594267pt;}
.y2e{bottom:658.553867pt;}
.y11a{bottom:658.616267pt;}
.yf4{bottom:659.956400pt;}
.ycd{bottom:660.488800pt;}
.y1e5{bottom:660.849467pt;}
.ybd{bottom:661.220800pt;}
.y13b{bottom:666.159867pt;}
.y1f7{bottom:666.575467pt;}
.y252{bottom:667.142400pt;}
.y187{bottom:668.603867pt;}
.y20e{bottom:669.665733pt;}
.y11{bottom:669.821867pt;}
.y280{bottom:670.317333pt;}
.y7e{bottom:671.683733pt;}
.y10f{bottom:671.841200pt;}
.y49{bottom:672.948267pt;}
.y21a{bottom:677.124133pt;}
.y21d{bottom:677.302533pt;}
.y59{bottom:677.594267pt;}
.y119{bottom:678.616267pt;}
.yf3{bottom:679.956400pt;}
.ybc{bottom:680.420800pt;}
.ycc{bottom:680.488800pt;}
.y174{bottom:681.550933pt;}
.y1e4{bottom:681.649600pt;}
.y1c8{bottom:684.915333pt;}
.y13a{bottom:685.359733pt;}
.y1f6{bottom:685.775600pt;}
.y270{bottom:685.989600pt;}
.y251{bottom:686.342400pt;}
.y186{bottom:687.803867pt;}
.y27f{bottom:689.517200pt;}
.y10{bottom:689.821867pt;}
.y7d{bottom:691.683733pt;}
.y10e{bottom:691.841200pt;}
.y48{bottom:694.281600pt;}
.y9b{bottom:695.362933pt;}
.y15{bottom:695.593867pt;}
.y1d{bottom:696.853733pt;}
.y58{bottom:697.594267pt;}
.y219{bottom:699.097867pt;}
.ybb{bottom:699.620800pt;}
.yf2{bottom:699.956400pt;}
.y21e{bottom:700.042667pt;}
.y1e3{bottom:702.449600pt;}
.y21c{bottom:702.567600pt;}
.y20d{bottom:703.114533pt;}
.y139{bottom:704.559867pt;}
.y1f5{bottom:704.975467pt;}
.y26f{bottom:705.189733pt;}
.y250{bottom:705.542533pt;}
.y156{bottom:706.480533pt;}
.y2d{bottom:706.553867pt;}
.yf{bottom:709.821867pt;}
.y1d5{bottom:711.249467pt;}
.y7c{bottom:711.683733pt;}
.y10d{bottom:711.841200pt;}
.y47{bottom:715.614933pt;}
.yba{bottom:718.820800pt;}
.y1a6{bottom:719.542533pt;}
.yf1{bottom:719.956400pt;}
.y138{bottom:723.759867pt;}
.y26e{bottom:724.389733pt;}
.y24f{bottom:724.742533pt;}
.y155{bottom:725.680533pt;}
.y27e{bottom:727.917333pt;}
.y20b{bottom:728.308400pt;}
.yc8{bottom:729.090267pt;}
.y1d4{bottom:730.449600pt;}
.y7b{bottom:731.683733pt;}
.y10c{bottom:731.841200pt;}
.y1b{bottom:732.916800pt;}
.y173{bottom:734.184400pt;}
.y9a{bottom:735.362933pt;}
.y46{bottom:736.948267pt;}
.y208{bottom:737.101467pt;}
.y57{bottom:737.594267pt;}
.yb9{bottom:738.020800pt;}
.y1a5{bottom:738.742533pt;}
.yf0{bottom:739.956400pt;}
.y137{bottom:742.959733pt;}
.y1f4{bottom:743.375467pt;}
.y154{bottom:744.880533pt;}
.y27d{bottom:747.117333pt;}
.yc7{bottom:749.090267pt;}
.y1d3{bottom:749.649600pt;}
.ye{bottom:749.821867pt;}
.y7a{bottom:751.683733pt;}
.y17c{bottom:751.803867pt;}
.y20a{bottom:751.832667pt;}
.y10b{bottom:751.841200pt;}
.y1a{bottom:752.916800pt;}
.y172{bottom:753.384400pt;}
.y99{bottom:755.362933pt;}
.y207{bottom:756.301467pt;}
.y1a4{bottom:756.342667pt;}
.y45{bottom:758.281600pt;}
.yef{bottom:759.956400pt;}
.y136{bottom:762.159867pt;}
.y103{bottom:762.318667pt;}
.y1f3{bottom:762.575467pt;}
.y26d{bottom:762.789733pt;}
.y24e{bottom:763.142533pt;}
.y153{bottom:764.080533pt;}
.y1b9{bottom:765.636933pt;}
.y1d2{bottom:768.849467pt;}
.yc6{bottom:769.090267pt;}
.yd{bottom:769.821867pt;}
.y17b{bottom:771.003867pt;}
.y79{bottom:771.683733pt;}
.y10a{bottom:771.841200pt;}
.y171{bottom:772.584533pt;}
.y19{bottom:772.916800pt;}
.y218{bottom:772.935067pt;}
.y21f{bottom:773.801333pt;}
.y98{bottom:775.362933pt;}
.y206{bottom:775.501467pt;}
.y1a3{bottom:775.542533pt;}
.y44{bottom:779.614933pt;}
.yee{bottom:779.956400pt;}
.y135{bottom:781.359733pt;}
.y1f2{bottom:781.775600pt;}
.y102{bottom:782.318667pt;}
.y24d{bottom:782.342533pt;}
.y152{bottom:783.280533pt;}
.y1b8{bottom:784.836933pt;}
.y27c{bottom:785.517200pt;}
.y1d1{bottom:788.049600pt;}
.yc5{bottom:789.090267pt;}
.y17a{bottom:790.203867pt;}
.y78{bottom:791.683733pt;}
.y170{bottom:791.784533pt;}
.y109{bottom:791.841200pt;}
.y18{bottom:792.916800pt;}
.y205{bottom:794.701467pt;}
.y1a2{bottom:794.742533pt;}
.y97{bottom:795.362933pt;}
.yb8{bottom:795.620800pt;}
.y56{bottom:797.594267pt;}
.y216{bottom:797.754000pt;}
.y217{bottom:799.643733pt;}
.yed{bottom:799.956400pt;}
.y134{bottom:800.559867pt;}
.y43{bottom:800.948267pt;}
.y1f1{bottom:800.975600pt;}
.y26c{bottom:801.189733pt;}
.y24c{bottom:801.542533pt;}
.y101{bottom:802.318667pt;}
.y151{bottom:802.480667pt;}
.y1b7{bottom:804.036933pt;}
.y27b{bottom:804.717333pt;}
.y1d0{bottom:807.249467pt;}
.y179{bottom:809.403867pt;}
.yc{bottom:809.821867pt;}
.y16f{bottom:810.984533pt;}
.y77{bottom:811.683733pt;}
.y108{bottom:811.841200pt;}
.y17{bottom:812.916800pt;}
.y204{bottom:813.901467pt;}
.y1a1{bottom:813.942533pt;}
.y96{bottom:815.362933pt;}
.yb7{bottom:815.620800pt;}
.yec{bottom:819.956400pt;}
.y1f0{bottom:820.175600pt;}
.y24b{bottom:820.742533pt;}
.y150{bottom:821.680533pt;}
.y42{bottom:822.281600pt;}
.y100{bottom:822.318667pt;}
.y215{bottom:822.856400pt;}
.y1b6{bottom:823.236933pt;}
.y27a{bottom:823.917333pt;}
.y1cf{bottom:826.449600pt;}
.y178{bottom:828.603867pt;}
.yc4{bottom:829.090267pt;}
.y16e{bottom:830.184533pt;}
.ye0{bottom:831.610133pt;}
.y76{bottom:831.683733pt;}
.y107{bottom:831.841200pt;}
.y16{bottom:832.916800pt;}
.y203{bottom:833.101600pt;}
.y1a0{bottom:833.142533pt;}
.y95{bottom:835.362933pt;}
.yb6{bottom:835.620800pt;}
.y55{bottom:837.594267pt;}
.y1ef{bottom:839.375600pt;}
.y24a{bottom:839.942400pt;}
.yeb{bottom:839.956400pt;}
.yff{bottom:842.318667pt;}
.y279{bottom:843.117333pt;}
.y1ce{bottom:845.649600pt;}
.y177{bottom:847.803867pt;}
.y214{bottom:848.368133pt;}
.yc3{bottom:849.090267pt;}
.y16d{bottom:849.384533pt;}
.yb{bottom:849.821867pt;}
.y1aa{bottom:850.361333pt;}
.ydf{bottom:851.610133pt;}
.y75{bottom:851.683733pt;}
.y106{bottom:851.841200pt;}
.y202{bottom:852.301600pt;}
.y94{bottom:855.362933pt;}
.yb5{bottom:855.620800pt;}
.y1ee{bottom:858.575600pt;}
.y249{bottom:859.142533pt;}
.yea{bottom:859.956400pt;}
.y14f{bottom:860.080667pt;}
.y278{bottom:862.317333pt;}
.yfe{bottom:862.318667pt;}
.y41{bottom:863.614933pt;}
.y14{bottom:864.097867pt;}
.y1cd{bottom:864.849467pt;}
.y133{bottom:864.871600pt;}
.y185{bottom:865.636933pt;}
.y16c{bottom:868.584533pt;}
.yc2{bottom:869.090267pt;}
.y1a9{bottom:869.561333pt;}
.ya{bottom:869.821867pt;}
.yde{bottom:871.610133pt;}
.y74{bottom:871.683733pt;}
.yb4{bottom:875.620800pt;}
.y54{bottom:877.594267pt;}
.y1ed{bottom:877.775600pt;}
.y14e{bottom:879.280533pt;}
.ye9{bottom:879.956400pt;}
.y277{bottom:881.517200pt;}
.y40{bottom:882.281600pt;}
.yfd{bottom:882.318667pt;}
.y1cc{bottom:884.049600pt;}
.y132{bottom:884.071733pt;}
.y184{bottom:884.836933pt;}
.y274{bottom:884.912133pt;}
.y16b{bottom:887.784533pt;}
.y1a8{bottom:888.761333pt;}
.yc1{bottom:889.090267pt;}
.y1b3{bottom:889.951467pt;}
.y201{bottom:890.701600pt;}
.ydd{bottom:891.610133pt;}
.y73{bottom:891.683733pt;}
.y105{bottom:891.841200pt;}
.y93{bottom:895.362933pt;}
.yb3{bottom:895.620800pt;}
.y53{bottom:897.594267pt;}
.ye8{bottom:899.956400pt;}
.y276{bottom:900.717333pt;}
.y3f{bottom:900.948267pt;}
.yfc{bottom:902.318667pt;}
.y131{bottom:903.271733pt;}
.y183{bottom:904.036933pt;}
.y26a{bottom:905.819600pt;}
.y16a{bottom:906.984533pt;}
.y1a7{bottom:907.961333pt;}
.yc0{bottom:909.090267pt;}
.y200{bottom:909.901600pt;}
.ydc{bottom:911.610133pt;}
.y72{bottom:911.683733pt;}
.yb2{bottom:915.620800pt;}
.y1ec{bottom:916.175600pt;}
.yf9{bottom:916.334533pt;}
.y3e{bottom:920.948267pt;}
.y13{bottom:921.105733pt;}
.y12{bottom:921.928267pt;}
.yfb{bottom:922.318667pt;}
.y130{bottom:922.471733pt;}
.y182{bottom:923.236933pt;}
.y269{bottom:925.019733pt;}
.y1ff{bottom:929.101600pt;}
.ydb{bottom:931.610133pt;}
.y92{bottom:935.362933pt;}
.y1b2{bottom:935.375467pt;}
.y1eb{bottom:935.375600pt;}
.yb1{bottom:935.620800pt;}
.yf8{bottom:936.334533pt;}
.y14d{bottom:936.880667pt;}
.y52{bottom:937.594267pt;}
.y12f{bottom:941.671733pt;}
.yfa{bottom:942.318667pt;}
.y28f{bottom:942.633600pt;}
.y268{bottom:944.219600pt;}
.y169{bottom:945.384533pt;}
.y26b{bottom:946.098267pt;}
.y248{bottom:946.413200pt;}
.y1fe{bottom:948.301600pt;}
.y209{bottom:948.932800pt;}
.yda{bottom:951.610133pt;}
.y1cb{bottom:953.027333pt;}
.y1b1{bottom:954.575467pt;}
.y1ea{bottom:954.575600pt;}
.y176{bottom:954.833333pt;}
.y91{bottom:955.362933pt;}
.yf7{bottom:956.334533pt;}
.y12e{bottom:960.871600pt;}
.y275{bottom:963.337333pt;}
.y267{bottom:963.419733pt;}
.y9{bottom:967.421867pt;}
.y1fd{bottom:967.501600pt;}
.y181{bottom:971.211200pt;}
.y104{bottom:971.841200pt;}
.y213{bottom:971.924933pt;}
.yb0{bottom:975.620800pt;}
.yca{bottom:976.649467pt;}
.y3d{bottom:979.484000pt;}
.y12d{bottom:980.071733pt;}
.y266{bottom:982.619600pt;}
.y1fc{bottom:986.701600pt;}
.y70{bottom:991.452533pt;}
.y71{bottom:991.683733pt;}
.y265{bottom:1001.819600pt;}
.y1ca{bottom:1004.334667pt;}
.y34{bottom:1044.897733pt;}
.y33{bottom:1064.097867pt;}
.y2{bottom:1077.914667pt;}
.y28{bottom:1163.717333pt;}
.h1b{height:22.234375pt;}
.h1a{height:28.078125pt;}
.h3{height:34.901333pt;}
.he{height:37.437500pt;}
.h19{height:38.680533pt;}
.h18{height:39.264000pt;}
.h17{height:40.734375pt;}
.h1d{height:42.770833pt;}
.h15{height:43.626667pt;}
.hf{height:44.437500pt;}
.hd{height:44.468750pt;}
.h6{height:46.796875pt;}
.h14{height:47.219062pt;}
.h13{height:48.140625pt;}
.h16{height:48.174479pt;}
.h10{height:51.860083pt;}
.h2{height:52.352000pt;}
.h4{height:52.468750pt;}
.h12{height:54.051094pt;}
.h11{height:54.471562pt;}
.h7{height:56.156250pt;}
.ha{height:56.843750pt;}
.h1c{height:56.929600pt;}
.hc{height:60.835938pt;}
.hb{height:66.317708pt;}
.h8{height:73.794117pt;}
.h9{height:120.000000pt;}
.h5{height:209.875000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xd{left:-95.868800pt;}
.x0{left:0.000000pt;}
.x5{left:27.401600pt;}
.x4{left:28.346400pt;}
.x10{left:35.137733pt;}
.x11{left:36.836933pt;}
.xf{left:40.928667pt;}
.x3d{left:42.330667pt;}
.x40{left:44.031467pt;}
.x2{left:58.115467pt;}
.x2f{left:70.110267pt;}
.x3b{left:83.470133pt;}
.x3c{left:89.517333pt;}
.x2d{left:91.968533pt;}
.x52{left:95.900267pt;}
.x35{left:98.545867pt;}
.x32{left:102.473600pt;}
.x29{left:104.881867pt;}
.x14{left:105.826800pt;}
.x13{left:106.771600pt;}
.x15{left:107.716533pt;}
.x23{left:108.661333pt;}
.x1e{left:109.606267pt;}
.x1f{left:110.929067pt;}
.x24{left:112.440933pt;}
.x1a{left:114.330667pt;}
.x28{left:115.653467pt;}
.x53{left:117.165333pt;}
.x54{left:118.110267pt;}
.xc{left:120.918667pt;}
.x1c{left:122.834667pt;}
.x8{left:125.270267pt;}
.x9{left:126.372667pt;}
.x31{left:128.346400pt;}
.xa{left:145.076133pt;}
.x18{left:154.738667pt;}
.x6{left:165.467200pt;}
.x7{left:167.753200pt;}
.xb{left:169.246667pt;}
.xe{left:170.191600pt;}
.x12{left:172.514400pt;}
.x19{left:173.795333pt;}
.x16{left:174.803200pt;}
.x26{left:184.252000pt;}
.x45{left:185.196800pt;}
.x44{left:186.141733pt;}
.x46{left:187.086533pt;}
.x1d{left:195.590533pt;}
.x3a{left:242.588133pt;}
.x2b{left:259.406800pt;}
.x1b{left:263.622000pt;}
.x20{left:287.244133pt;}
.x39{left:295.501600pt;}
.x56{left:304.287467pt;}
.x5e{left:306.465067pt;}
.x5a{left:307.594667pt;}
.x58{left:308.583600pt;}
.x5c{left:311.890800pt;}
.x55{left:338.575200pt;}
.x36{left:341.448800pt;}
.x57{left:344.319200pt;}
.x5b{left:347.626400pt;}
.x59{left:359.070667pt;}
.x5d{left:362.377867pt;}
.x3{left:363.464533pt;}
.x1{left:367.559067pt;}
.x27{left:383.149600pt;}
.x25{left:403.464533pt;}
.x2a{left:412.585200pt;}
.x33{left:415.748000pt;}
.x22{left:439.685067pt;}
.x3e{left:446.929067pt;}
.x3f{left:448.018400pt;}
.x2c{left:453.952667pt;}
.x41{left:457.133867pt;}
.x42{left:458.708667pt;}
.x37{left:487.559067pt;}
.x21{left:489.737600pt;}
.x30{left:500.472400pt;}
.x38{left:508.346400pt;}
.x2e{left:510.362267pt;}
.x34{left:513.228400pt;}
.x4a{left:518.708667pt;}
.x48{left:526.191600pt;}
.x47{left:527.212533pt;}
.x43{left:615.118133pt;}
.x4c{left:621.700800pt;}
.x49{left:622.645733pt;}
.x51{left:624.233600pt;}
.x4d{left:629.291333pt;}
.x4f{left:630.821733pt;}
.x4e{left:632.094533pt;}
.x50{left:633.039333pt;}
.x17{left:638.936133pt;}
.x4b{left:642.834667pt;}
}




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