
    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_40159b028c41b3dca42f6777.woff')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_00b468d430b967ec16a49832.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_b473e663da744fdaa904c773.woff')format("woff");}.ff3{font-family:ff3;line-height:0.844000;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_a34792cbe226ba0a9f1efeec.woff')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_7f50eca1f10c373cbb177953.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_fb1a8cf0e5e3ffe030ff459d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.838000;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_e4d876d11751344d73fd5fd0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.826000;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_bc229668ba73283fdbbd981c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.952000;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_c4bd7d53e0de1f5eef6363e3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_9f1d25b55f9829c401081dce.woff')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_dd4afafae21144a89243ac94.woff')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_b67c590476820a57491482c5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966000;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_c0e4b6840e34cd7ee3836a23.woff')format("woff");}.ffd{font-family:ffd;line-height:0.712000;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_c1805d52d7447750bd598d82.woff')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_8819c2858c4457ca576fb8e3.woff')format("woff");}.fff{font-family:fff;line-height:0.969000;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:ff10;src:url('chunks/assets/font_f8c0b992aa2111d3ee6e5c70.woff')format("woff");}.ff10{font-family:ff10;line-height:0.893000;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:ff11;src:url('chunks/assets/font_1fde2bc55735217f4d874a8a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.960000;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:ff12;src:url('chunks/assets/font_970b2fba0c6806480c1a1ab8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.839000;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);}
.v2{vertical-align:-16.278000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.868000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000240px;}
.ls12{letter-spacing:0.000490px;}
.ls5{letter-spacing:0.001020px;}
.ls13{letter-spacing:0.001037px;}
.lsf{letter-spacing:0.001555px;}
.ls6{letter-spacing:0.001596px;}
.ls11{letter-spacing:0.004723px;}
.ls1{letter-spacing:2.987544px;}
.ls0{letter-spacing:2.993544px;}
.ls4{letter-spacing:11.208816px;}
.lse{letter-spacing:13.794000px;}
.ls10{letter-spacing:14.179037px;}
.ls3{letter-spacing:14.196000px;}
.lsc{letter-spacing:16.002000px;}
.ls2{letter-spacing:21.263544px;}
.lsd{letter-spacing:23.202000px;}
.lsb{letter-spacing:25.110000px;}
.lsa{letter-spacing:140.452090px;}
.ls9{letter-spacing:140.453424px;}
.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;}
}
.ws3f{word-spacing:-18.348000px;}
.ws4{word-spacing:-18.279612px;}
.ws40{word-spacing:-16.500000px;}
.wse4{word-spacing:-14.955955px;}
.wsf9{word-spacing:-13.449600px;}
.ws3{word-spacing:-12.795228px;}
.ws76{word-spacing:-3.894000px;}
.ws5b{word-spacing:-3.828000px;}
.ws57{word-spacing:-3.762000px;}
.ws39{word-spacing:-3.564000px;}
.ws7{word-spacing:-3.550482px;}
.ws38{word-spacing:-3.498000px;}
.ws4d{word-spacing:-3.432000px;}
.ws9e{word-spacing:-3.366000px;}
.ws26{word-spacing:-3.300000px;}
.ws66{word-spacing:-3.102000px;}
.ws14{word-spacing:-3.036000px;}
.ws8{word-spacing:-3.012576px;}
.ws30{word-spacing:-2.970000px;}
.wseb{word-spacing:-2.797517px;}
.ws59{word-spacing:-2.772000px;}
.wsc2{word-spacing:-2.706000px;}
.ws31{word-spacing:-2.640000px;}
.ws3c{word-spacing:-2.574000px;}
.wsf8{word-spacing:-2.528525px;}
.wsb8{word-spacing:-2.508000px;}
.wsf6{word-spacing:-2.474726px;}
.wsc0{word-spacing:-2.442000px;}
.ws2f{word-spacing:-2.376000px;}
.ws9{word-spacing:-2.313282px;}
.ws71{word-spacing:-2.310000px;}
.wsab{word-spacing:-2.244000px;}
.ws45{word-spacing:-2.178000px;}
.ws90{word-spacing:-2.046000px;}
.wse{word-spacing:-2.044517px;}
.ws62{word-spacing:-1.980000px;}
.ws91{word-spacing:-1.914000px;}
.ws61{word-spacing:-1.848000px;}
.wsc9{word-spacing:-1.782000px;}
.ws6c{word-spacing:-1.716000px;}
.ws7b{word-spacing:-1.584000px;}
.wsd0{word-spacing:-1.518000px;}
.ws4f{word-spacing:-1.452000px;}
.wse0{word-spacing:-1.398758px;}
.wsac{word-spacing:-1.386000px;}
.ws70{word-spacing:-1.320000px;}
.ws4a{word-spacing:-1.254000px;}
.ws56{word-spacing:-1.188000px;}
.wsc{word-spacing:-1.183512px;}
.wsbc{word-spacing:-1.122000px;}
.ws2c{word-spacing:-1.056000px;}
.wsdb{word-spacing:-1.022170px;}
.wsc1{word-spacing:-0.990000px;}
.ws60{word-spacing:-0.924000px;}
.ws10e{word-spacing:-0.914573px;}
.wsd{word-spacing:-0.860736px;}
.ws33{word-spacing:-0.858000px;}
.wsf{word-spacing:-0.806671px;}
.wsc4{word-spacing:-0.792000px;}
.wsdc{word-spacing:-0.753178px;}
.wsa9{word-spacing:-0.726000px;}
.ws83{word-spacing:-0.660000px;}
.wsa{word-spacing:-0.645283px;}
.ws4c{word-spacing:-0.594000px;}
.ws2d{word-spacing:-0.528000px;}
.ws108{word-spacing:-0.484186px;}
.ws9f{word-spacing:-0.462000px;}
.wsa1{word-spacing:-0.396000px;}
.ws17{word-spacing:-0.330000px;}
.ws29{word-spacing:-0.264000px;}
.wsa5{word-spacing:-0.198000px;}
.ws86{word-spacing:-0.132000px;}
.wsd9{word-spacing:-0.071731px;}
.ws2a{word-spacing:-0.066000px;}
.wsed{word-spacing:-0.053798px;}
.wsf4{word-spacing:-0.000499px;}
.ws2{word-spacing:0.000000px;}
.ws1e{word-spacing:0.000048px;}
.ws9b{word-spacing:0.066000px;}
.wse3{word-spacing:0.107597px;}
.wsf3{word-spacing:0.161395px;}
.ws49{word-spacing:0.198000px;}
.wse1{word-spacing:0.215194px;}
.ws3e{word-spacing:0.264000px;}
.ws101{word-spacing:0.268992px;}
.ws8a{word-spacing:0.330000px;}
.ws10{word-spacing:0.376518px;}
.ws80{word-spacing:0.396000px;}
.ws74{word-spacing:0.462000px;}
.ws8b{word-spacing:0.528000px;}
.ws48{word-spacing:0.594000px;}
.ws84{word-spacing:0.660000px;}
.ws100{word-spacing:0.699379px;}
.ws7e{word-spacing:0.726000px;}
.wse5{word-spacing:0.753178px;}
.ws27{word-spacing:0.792000px;}
.wsee{word-spacing:0.806976px;}
.wsb7{word-spacing:0.858000px;}
.ws15{word-spacing:0.924000px;}
.ws8f{word-spacing:0.990000px;}
.ws3a{word-spacing:1.056000px;}
.wsec{word-spacing:1.075968px;}
.ws89{word-spacing:1.122000px;}
.ws43{word-spacing:1.188000px;}
.wsfa{word-spacing:1.237363px;}
.wsb2{word-spacing:1.254000px;}
.ws102{word-spacing:1.291162px;}
.wsb0{word-spacing:1.320000px;}
.ws8e{word-spacing:1.386000px;}
.wsbd{word-spacing:1.452000px;}
.wsea{word-spacing:1.506355px;}
.wsd5{word-spacing:1.584000px;}
.ws10f{word-spacing:1.613952px;}
.wsd6{word-spacing:1.650000px;}
.ws63{word-spacing:1.716000px;}
.ws5e{word-spacing:1.782000px;}
.ws3b{word-spacing:1.848000px;}
.ws11{word-spacing:1.882860px;}
.ws28{word-spacing:1.914000px;}
.ws7d{word-spacing:1.980000px;}
.ws54{word-spacing:2.046000px;}
.ws52{word-spacing:2.112000px;}
.wse9{word-spacing:2.151936px;}
.ws75{word-spacing:2.178000px;}
.ws55{word-spacing:2.244000px;}
.ws44{word-spacing:2.310000px;}
.wsfc{word-spacing:2.313331px;}
.ws53{word-spacing:2.376000px;}
.ws41{word-spacing:2.442000px;}
.ws98{word-spacing:2.508000px;}
.ws78{word-spacing:2.574000px;}
.ws5a{word-spacing:2.640000px;}
.ws5{word-spacing:2.689296px;}
.ws93{word-spacing:2.706000px;}
.ws6e{word-spacing:2.772000px;}
.ws85{word-spacing:2.838000px;}
.ws13{word-spacing:2.904000px;}
.wsbb{word-spacing:2.970000px;}
.ws5f{word-spacing:3.036000px;}
.ws82{word-spacing:3.102000px;}
.ws105{word-spacing:3.120307px;}
.ws58{word-spacing:3.168000px;}
.wse6{word-spacing:3.227904px;}
.ws9c{word-spacing:3.234000px;}
.ws5c{word-spacing:3.300000px;}
.wsbe{word-spacing:3.366000px;}
.ws6b{word-spacing:3.432000px;}
.wsdf{word-spacing:3.443098px;}
.ws23{word-spacing:3.498000px;}
.ws32{word-spacing:3.564000px;}
.wsae{word-spacing:3.630000px;}
.wsda{word-spacing:3.658291px;}
.ws47{word-spacing:3.696000px;}
.ws7c{word-spacing:3.762000px;}
.ws10d{word-spacing:3.819686px;}
.ws2e{word-spacing:3.828000px;}
.ws6a{word-spacing:3.894000px;}
.wsfd{word-spacing:3.927283px;}
.wsc8{word-spacing:3.960000px;}
.wsf7{word-spacing:3.981082px;}
.wsd1{word-spacing:4.026000px;}
.ws24{word-spacing:4.092000px;}
.wsf1{word-spacing:4.142477px;}
.ws3d{word-spacing:4.158000px;}
.ws10a{word-spacing:4.196275px;}
.ws92{word-spacing:4.224000px;}
.ws10b{word-spacing:4.250074px;}
.wsb5{word-spacing:4.290000px;}
.ws20{word-spacing:4.356000px;}
.ws65{word-spacing:4.422000px;}
.ws110{word-spacing:4.465267px;}
.ws79{word-spacing:4.488000px;}
.ws95{word-spacing:4.554000px;}
.ws67{word-spacing:4.602000px;}
.ws69{word-spacing:4.620000px;}
.ws9a{word-spacing:4.686000px;}
.wsaf{word-spacing:4.752000px;}
.wsde{word-spacing:4.788058px;}
.ws37{word-spacing:4.818000px;}
.wsb{word-spacing:4.841694px;}
.ws46{word-spacing:4.884000px;}
.ws88{word-spacing:4.950000px;}
.ws8c{word-spacing:5.016000px;}
.wsa0{word-spacing:5.082000px;}
.ws6d{word-spacing:5.214000px;}
.ws10c{word-spacing:5.272243px;}
.ws8d{word-spacing:5.280000px;}
.wsa4{word-spacing:5.346000px;}
.ws64{word-spacing:5.412000px;}
.ws25{word-spacing:5.478000px;}
.ws81{word-spacing:5.544000px;}
.ws7f{word-spacing:5.610000px;}
.ws107{word-spacing:5.648832px;}
.wsdd{word-spacing:5.702630px;}
.wsa6{word-spacing:5.742000px;}
.ws34{word-spacing:5.808000px;}
.wsd3{word-spacing:5.874000px;}
.ws77{word-spacing:5.940000px;}
.ws22{word-spacing:6.006000px;}
.ws4b{word-spacing:6.072000px;}
.wsc3{word-spacing:6.204000px;}
.ws7a{word-spacing:6.270000px;}
.wse2{word-spacing:6.294413px;}
.ws72{word-spacing:6.336000px;}
.ws6f{word-spacing:6.402000px;}
.wsc5{word-spacing:6.468000px;}
.ws21{word-spacing:6.534000px;}
.ws1a{word-spacing:6.588000px;}
.ws1d{word-spacing:6.594000px;}
.ws1b{word-spacing:6.600000px;}
.ws19{word-spacing:6.606000px;}
.ws1c{word-spacing:6.612000px;}
.ws18{word-spacing:6.618000px;}
.wsbf{word-spacing:6.666000px;}
.ws4e{word-spacing:6.732000px;}
.wsb3{word-spacing:6.798000px;}
.wsb9{word-spacing:6.864000px;}
.wscf{word-spacing:6.930000px;}
.wsfb{word-spacing:6.939994px;}
.wsb4{word-spacing:7.062000px;}
.wsd2{word-spacing:7.128000px;}
.ws2b{word-spacing:7.194000px;}
.ws99{word-spacing:7.260000px;}
.wsef{word-spacing:7.262784px;}
.wsf2{word-spacing:7.316582px;}
.wsca{word-spacing:7.326000px;}
.ws9d{word-spacing:7.392000px;}
.wse7{word-spacing:7.424179px;}
.ws5d{word-spacing:7.524000px;}
.wsa2{word-spacing:7.590000px;}
.wse8{word-spacing:7.639373px;}
.wsd8{word-spacing:7.656000px;}
.wsaa{word-spacing:7.788000px;}
.wsad{word-spacing:7.854000px;}
.ws42{word-spacing:7.920000px;}
.wsa3{word-spacing:7.986000px;}
.wsce{word-spacing:8.052000px;}
.wsb1{word-spacing:8.118000px;}
.wscd{word-spacing:8.250000px;}
.wsba{word-spacing:8.316000px;}
.wsb6{word-spacing:8.448000px;}
.ws94{word-spacing:8.580000px;}
.ws1f{word-spacing:8.646000px;}
.ws97{word-spacing:8.844000px;}
.wsc7{word-spacing:8.976000px;}
.ws73{word-spacing:9.240000px;}
.ws35{word-spacing:9.372000px;}
.ws36{word-spacing:9.438000px;}
.wsf0{word-spacing:9.629914px;}
.ws16{word-spacing:9.636000px;}
.ws50{word-spacing:9.768000px;}
.wsc6{word-spacing:10.032000px;}
.wsd7{word-spacing:10.164000px;}
.wscb{word-spacing:10.428000px;}
.ws109{word-spacing:12.911616px;}
.wsf5{word-spacing:13.395802px;}
.wsff{word-spacing:14.095181px;}
.ws103{word-spacing:14.686963px;}
.ws104{word-spacing:15.063552px;}
.wscc{word-spacing:15.414000px;}
.ws87{word-spacing:16.302000px;}
.ws0{word-spacing:16.500000px;}
.ws106{word-spacing:16.516109px;}
.wsfe{word-spacing:17.323085px;}
.ws96{word-spacing:18.213692px;}
.ws51{word-spacing:19.869542px;}
.ws68{word-spacing:21.054000px;}
.ws6{word-spacing:23.491968px;}
.ws12{word-spacing:35.793270px;}
.wsd4{word-spacing:35.793869px;}
.ws1{word-spacing:36.427716px;}
.wsa7{word-spacing:95.584224px;}
.wsa8{word-spacing:895.120176px;}
._16{margin-left:-8.919972px;}
._0{margin-left:-7.890612px;}
._7{margin-left:-6.527237px;}
._c{margin-left:-5.016000px;}
._5{margin-left:-3.987048px;}
._1{margin-left:-2.630028px;}
._4{margin-left:-1.004364px;}
._3{width:1.283461px;}
._26{width:2.293682px;}
._2{width:3.967228px;}
._22{width:5.377092px;}
._10{width:6.593748px;}
._1d{width:11.616000px;}
._a{width:14.806469px;}
._1f{width:15.820057px;}
._8{width:17.358563px;}
._b{width:19.133616px;}
._18{width:20.196000px;}
._17{width:21.242028px;}
._6{width:22.416000px;}
._12{width:24.080028px;}
._14{width:25.410000px;}
._11{width:26.598000px;}
._e{width:28.196364px;}
._1e{width:30.114756px;}
._15{width:31.868028px;}
._9{width:32.938469px;}
._21{width:34.244028px;}
._1c{width:35.865600px;}
._1b{width:37.512336px;}
._19{width:38.822028px;}
._13{width:40.062000px;}
._24{width:41.142336px;}
._25{width:42.323076px;}
._1a{width:43.904364px;}
._20{width:46.860000px;}
._d{width:48.642000px;}
._27{width:50.028000px;}
._23{width:110.532886px;}
._f{width:139.775424px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.380000px;}
.fs6{font-size:44.832000px;}
.fs5{font-size:46.026000px;}
.fsa{font-size:47.820000px;}
.fsc{font-size:47.820600px;}
.fs8{font-size:53.796000px;}
.fsd{font-size:53.798400px;}
.fsb{font-size:59.775600px;}
.fs0{font-size:59.778000px;}
.fsf{font-size:65.753400px;}
.fs4{font-size:65.754000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:71.730000px;}
.fse{font-size:71.731200px;}
.fs2{font-size:95.640000px;}
.fs3{font-size:131.508000px;}
.y0{bottom:0.000000px;}
.y5{bottom:87.085500px;}
.y2f{bottom:99.301500px;}
.y2e{bottom:110.557500px;}
.y2d{bottom:122.232000px;}
.y4{bottom:131.917500px;}
.y2c{bottom:200.581500px;}
.y2b{bottom:213.283500px;}
.y88{bottom:236.374500px;}
.y58{bottom:237.214500px;}
.ye6{bottom:240.204000px;}
.y192{bottom:241.261500px;}
.yc5{bottom:241.332000px;}
.yb6{bottom:245.107500px;}
.y1e6{bottom:246.396000px;}
.yee{bottom:248.937000px;}
.y12c{bottom:250.879500px;}
.y68{bottom:251.412000px;}
.y1a9{bottom:251.844000px;}
.y2a{bottom:253.773000px;}
.y17c{bottom:255.249000px;}
.y71{bottom:255.895500px;}
.y161{bottom:256.470000px;}
.y87{bottom:256.548000px;}
.y57{bottom:257.389500px;}
.ye5{bottom:260.377500px;}
.y191{bottom:261.436500px;}
.yc4{bottom:261.505500px;}
.y13a{bottom:262.957500px;}
.yb5{bottom:265.282500px;}
.y1e5{bottom:266.571000px;}
.yed{bottom:269.110500px;}
.y20e{bottom:270.838500px;}
.y12b{bottom:271.053000px;}
.y67{bottom:271.585500px;}
.y1a8{bottom:272.019000px;}
.y29{bottom:273.946500px;}
.y17b{bottom:275.422500px;}
.y70{bottom:276.069000px;}
.y160{bottom:276.643500px;}
.y86{bottom:276.723000px;}
.y56{bottom:277.563000px;}
.ye4{bottom:280.552500px;}
.y190{bottom:281.610000px;}
.yc3{bottom:281.680500px;}
.y139{bottom:283.132500px;}
.yb4{bottom:285.456000px;}
.y20d{bottom:285.783000px;}
.y1e4{bottom:286.744500px;}
.y105{bottom:287.308500px;}
.y1c0{bottom:289.057500px;}
.yec{bottom:289.285500px;}
.y12a{bottom:291.228000px;}
.y66{bottom:291.760500px;}
.y1a7{bottom:292.192500px;}
.y28{bottom:294.121500px;}
.y17a{bottom:295.597500px;}
.y6f{bottom:296.244000px;}
.y15f{bottom:296.818500px;}
.y85{bottom:296.896500px;}
.y55{bottom:297.738000px;}
.ye3{bottom:300.726000px;}
.y20c{bottom:300.727500px;}
.y18f{bottom:301.785000px;}
.yc2{bottom:301.854000px;}
.y138{bottom:303.306000px;}
.y90{bottom:303.840000px;}
.yb3{bottom:305.631000px;}
.y1e3{bottom:306.919500px;}
.y104{bottom:307.483500px;}
.y1bf{bottom:309.232500px;}
.y129{bottom:311.403000px;}
.y65{bottom:311.935500px;}
.y1a6{bottom:312.367500px;}
.y27{bottom:314.295000px;}
.y20b{bottom:315.670500px;}
.y179{bottom:315.771000px;}
.y6e{bottom:316.417500px;}
.y15e{bottom:316.992000px;}
.y84{bottom:317.071500px;}
.y54{bottom:317.913000px;}
.ye2{bottom:320.901000px;}
.y18e{bottom:321.960000px;}
.yc1{bottom:322.029000px;}
.y137{bottom:323.481000px;}
.yb2{bottom:325.806000px;}
.yeb{bottom:326.646000px;}
.y1e2{bottom:327.093000px;}
.y103{bottom:327.657000px;}
.y1be{bottom:329.406000px;}
.y20a{bottom:330.615000px;}
.y128{bottom:331.576500px;}
.y64{bottom:332.109000px;}
.y1a5{bottom:332.541000px;}
.y26{bottom:334.470000px;}
.y178{bottom:335.946000px;}
.y6d{bottom:336.592500px;}
.y15d{bottom:337.167000px;}
.y83{bottom:337.245000px;}
.y53{bottom:338.086500px;}
.ye1{bottom:341.076000px;}
.y18d{bottom:342.133500px;}
.yc0{bottom:342.202500px;}
.y136{bottom:343.654500px;}
.y209{bottom:345.558000px;}
.yb1{bottom:345.979500px;}
.y1e1{bottom:347.268000px;}
.y102{bottom:347.832000px;}
.y1bd{bottom:349.581000px;}
.y127{bottom:351.751500px;}
.y63{bottom:352.284000px;}
.y1a4{bottom:352.716000px;}
.y25{bottom:354.645000px;}
.y177{bottom:356.121000px;}
.y6c{bottom:356.767500px;}
.y15c{bottom:357.342000px;}
.y82{bottom:357.420000px;}
.y52{bottom:358.261500px;}
.y208{bottom:360.502500px;}
.ye0{bottom:361.249500px;}
.y18c{bottom:362.308500px;}
.ybf{bottom:362.377500px;}
.y135{bottom:363.829500px;}
.yb0{bottom:366.154500px;}
.y1e0{bottom:367.441500px;}
.y101{bottom:368.007000px;}
.y1bc{bottom:369.754500px;}
.y126{bottom:371.925000px;}
.y62{bottom:372.457500px;}
.y1a3{bottom:372.889500px;}
.y24{bottom:374.818500px;}
.y207{bottom:375.447000px;}
.y176{bottom:376.294500px;}
.y6b{bottom:376.941000px;}
.y15b{bottom:377.515500px;}
.y51{bottom:378.435000px;}
.yea{bottom:379.824000px;}
.ydf{bottom:381.424500px;}
.y81{bottom:382.077000px;}
.ybe{bottom:382.552500px;}
.y134{bottom:384.003000px;}
.yaf{bottom:386.328000px;}
.y18b{bottom:386.965500px;}
.y1df{bottom:387.616500px;}
.y100{bottom:388.180500px;}
.y1bb{bottom:389.929500px;}
.y206{bottom:390.390000px;}
.y125{bottom:392.100000px;}
.y61{bottom:392.632500px;}
.y1a2{bottom:393.064500px;}
.y175{bottom:396.469500px;}
.y6a{bottom:397.116000px;}
.y15a{bottom:397.690500px;}
.y239{bottom:398.449500px;}
.y50{bottom:398.610000px;}
.ye9{bottom:399.999000px;}
.yde{bottom:401.598000px;}
.ybd{bottom:402.726000px;}
.y23{bottom:403.959000px;}
.y133{bottom:404.178000px;}
.y205{bottom:405.334500px;}
.yae{bottom:406.503000px;}
.y1de{bottom:407.791500px;}
.yff{bottom:408.355500px;}
.y1ba{bottom:410.104500px;}
.y1a1{bottom:410.997000px;}
.y124{bottom:412.273500px;}
.y60{bottom:412.806000px;}
.y238{bottom:413.394000px;}
.y174{bottom:416.643000px;}
.y159{bottom:417.864000px;}
.y4f{bottom:418.783500px;}
.y80{bottom:419.437500px;}
.y204{bottom:420.279000px;}
.y69{bottom:421.773000px;}
.ybc{bottom:422.901000px;}
.ye8{bottom:424.282500px;}
.y18a{bottom:424.326000px;}
.y132{bottom:424.353000px;}
.yad{bottom:426.676500px;}
.y1dd{bottom:427.965000px;}
.y237{bottom:428.338500px;}
.yfe{bottom:428.529000px;}
.y1b9{bottom:430.278000px;}
.y123{bottom:432.448500px;}
.y5f{bottom:432.981000px;}
.y203{bottom:435.222000px;}
.y173{bottom:436.818000px;}
.y158{bottom:438.039000px;}
.y4e{bottom:438.958500px;}
.y7f{bottom:439.612500px;}
.y22{bottom:441.319500px;}
.ydd{bottom:441.946500px;}
.ybb{bottom:443.074500px;}
.y236{bottom:443.281500px;}
.y189{bottom:444.499500px;}
.y131{bottom:444.526500px;}
.yac{bottom:446.851500px;}
.y1dc{bottom:448.140000px;}
.y1a0{bottom:448.357500px;}
.yfd{bottom:448.704000px;}
.y202{bottom:450.166500px;}
.y1b8{bottom:450.453000px;}
.y122{bottom:452.623500px;}
.y5e{bottom:453.156000px;}
.y172{bottom:456.991500px;}
.y157{bottom:458.212500px;}
.y235{bottom:458.226000px;}
.y21{bottom:458.505000px;}
.y4d{bottom:459.133500px;}
.y7e{bottom:459.786000px;}
.ydc{bottom:462.121500px;}
.yba{bottom:463.249500px;}
.y188{bottom:464.674500px;}
.y130{bottom:464.701500px;}
.y201{bottom:465.111000px;}
.yab{bottom:467.026500px;}
.y1db{bottom:468.313500px;}
.y19f{bottom:468.531000px;}
.yfc{bottom:468.877500px;}
.y1b7{bottom:470.626500px;}
.y121{bottom:472.797000px;}
.y234{bottom:473.170500px;}
.y5d{bottom:473.329500px;}
.y20{bottom:475.690500px;}
.y171{bottom:477.166500px;}
.y156{bottom:478.387500px;}
.y4c{bottom:479.307000px;}
.y7d{bottom:479.961000px;}
.y200{bottom:480.054000px;}
.ydb{bottom:482.296500px;}
.yb9{bottom:483.423000px;}
.y187{bottom:484.848000px;}
.yaa{bottom:487.200000px;}
.y233{bottom:488.113500px;}
.y1da{bottom:488.488500px;}
.y19e{bottom:488.706000px;}
.yfb{bottom:489.052500px;}
.y1b6{bottom:490.801500px;}
.y1f{bottom:492.876000px;}
.y120{bottom:492.972000px;}
.y5c{bottom:493.504500px;}
.y1ff{bottom:494.998500px;}
.y170{bottom:497.341500px;}
.y155{bottom:498.562500px;}
.y4b{bottom:499.482000px;}
.y7c{bottom:500.134500px;}
.yda{bottom:502.470000px;}
.y232{bottom:503.058000px;}
.yb8{bottom:503.598000px;}
.y186{bottom:505.023000px;}
.ya9{bottom:507.375000px;}
.y1d9{bottom:508.662000px;}
.y19d{bottom:508.881000px;}
.yfa{bottom:509.227500px;}
.y1fe{bottom:509.943000px;}
.y1e{bottom:510.061500px;}
.y1b5{bottom:510.975000px;}
.y11f{bottom:513.145500px;}
.y5b{bottom:513.678000px;}
.y16f{bottom:517.515000px;}
.y12f{bottom:517.879500px;}
.y231{bottom:518.002500px;}
.y154{bottom:518.736000px;}
.y4a{bottom:519.655500px;}
.y7b{bottom:520.309500px;}
.yd9{bottom:522.645000px;}
.y1fd{bottom:524.886000px;}
.y185{bottom:525.196500px;}
.y1d{bottom:527.247000px;}
.ya8{bottom:527.548500px;}
.y1d8{bottom:528.837000px;}
.y19c{bottom:529.054500px;}
.yf9{bottom:529.401000px;}
.y1b4{bottom:531.150000px;}
.y230{bottom:532.945500px;}
.y11e{bottom:533.320500px;}
.y5a{bottom:533.853000px;}
.y16e{bottom:537.690000px;}
.y12e{bottom:538.054500px;}
.y153{bottom:538.911000px;}
.y49{bottom:539.830500px;}
.y7a{bottom:540.483000px;}
.yd8{bottom:542.818500px;}
.y1c{bottom:544.432500px;}
.y184{bottom:545.371500px;}
.ya7{bottom:547.723500px;}
.y22f{bottom:547.890000px;}
.y1d7{bottom:549.012000px;}
.y19b{bottom:549.229500px;}
.yf8{bottom:549.576000px;}
.y1b3{bottom:551.325000px;}
.y11d{bottom:553.494000px;}
.y1fc{bottom:554.775000px;}
.yb7{bottom:556.123500px;}
.y16d{bottom:557.863500px;}
.y152{bottom:559.084500px;}
.y48{bottom:560.004000px;}
.y79{bottom:560.658000px;}
.y1b{bottom:561.618000px;}
.y22e{bottom:562.834500px;}
.y59{bottom:562.993500px;}
.y183{bottom:565.546500px;}
.y1d6{bottom:569.185500px;}
.y19a{bottom:569.403000px;}
.y1fb{bottom:569.718000px;}
.yf7{bottom:569.749500px;}
.y1b2{bottom:571.498500px;}
.ya6{bottom:572.380500px;}
.y11c{bottom:573.669000px;}
.y22d{bottom:577.777500px;}
.y16c{bottom:578.038500px;}
.y1a{bottom:578.803500px;}
.y151{bottom:579.259500px;}
.y47{bottom:580.179000px;}
.y78{bottom:580.833000px;}
.yd7{bottom:583.167000px;}
.y1fa{bottom:584.662500px;}
.y182{bottom:585.720000px;}
.y1d5{bottom:589.360500px;}
.y199{bottom:589.578000px;}
.yf6{bottom:589.924500px;}
.y1b1{bottom:591.673500px;}
.y22c{bottom:592.722000px;}
.y11b{bottom:593.842500px;}
.y19{bottom:595.989000px;}
.y16b{bottom:598.212000px;}
.y150{bottom:599.433000px;}
.y1f9{bottom:599.605500px;}
.y46{bottom:600.354000px;}
.y77{bottom:601.006500px;}
.yd6{bottom:603.342000px;}
.y181{bottom:605.895000px;}
.y22b{bottom:607.665000px;}
.y1d4{bottom:609.534000px;}
.ya5{bottom:609.741000px;}
.y198{bottom:609.751500px;}
.yf5{bottom:610.098000px;}
.y8f{bottom:610.855500px;}
.y1b0{bottom:611.847000px;}
.y18{bottom:613.174500px;}
.y11a{bottom:614.017500px;}
.y1f8{bottom:614.550000px;}
.y16a{bottom:618.387000px;}
.y14f{bottom:619.608000px;}
.y45{bottom:620.527500px;}
.y76{bottom:621.181500px;}
.y22a{bottom:622.609500px;}
.yd5{bottom:623.517000px;}
.y180{bottom:626.068500px;}
.y1f7{bottom:629.494500px;}
.y1d3{bottom:629.709000px;}
.ya4{bottom:629.914500px;}
.y197{bottom:629.926500px;}
.yf4{bottom:630.273000px;}
.y17{bottom:630.360000px;}
.y8e{bottom:631.030500px;}
.y1af{bottom:632.022000px;}
.y119{bottom:634.192500px;}
.y229{bottom:637.554000px;}
.y169{bottom:638.562000px;}
.y14e{bottom:639.783000px;}
.y44{bottom:640.702500px;}
.y75{bottom:641.355000px;}
.yd4{bottom:643.690500px;}
.y1f6{bottom:644.437500px;}
.y17f{bottom:646.243500px;}
.y1d2{bottom:649.882500px;}
.ya3{bottom:650.089500px;}
.y196{bottom:650.101500px;}
.yf3{bottom:650.448000px;}
.y8d{bottom:651.204000px;}
.y1ae{bottom:652.195500px;}
.y228{bottom:652.497000px;}
.y118{bottom:654.366000px;}
.y16{bottom:655.765500px;}
.y1f5{bottom:659.382000px;}
.y14d{bottom:659.956500px;}
.y43{bottom:660.876000px;}
.y74{bottom:661.530000px;}
.yd3{bottom:663.865500px;}
.y17e{bottom:666.417000px;}
.y227{bottom:667.441500px;}
.y1d1{bottom:670.057500px;}
.ya2{bottom:670.263000px;}
.y195{bottom:670.275000px;}
.yf2{bottom:670.621500px;}
.y8c{bottom:671.379000px;}
.y1ad{bottom:672.370500px;}
.y1f4{bottom:674.326500px;}
.y117{bottom:674.541000px;}
.y168{bottom:675.921000px;}
.y15{bottom:680.008500px;}
.y14c{bottom:680.131500px;}
.y42{bottom:681.051000px;}
.y226{bottom:682.386000px;}
.yd2{bottom:684.039000px;}
.y14{bottom:688.642500px;}
.y1f3{bottom:689.269500px;}
.y1d0{bottom:690.232500px;}
.ya1{bottom:690.438000px;}
.yf1{bottom:690.796500px;}
.y8b{bottom:691.552500px;}
.y1ac{bottom:692.545500px;}
.y116{bottom:694.714500px;}
.y167{bottom:696.096000px;}
.y225{bottom:697.329000px;}
.y14b{bottom:700.305000px;}
.y41{bottom:701.224500px;}
.y13{bottom:701.344500px;}
.yd1{bottom:704.214000px;}
.y1cf{bottom:710.406000px;}
.ya0{bottom:710.613000px;}
.yf0{bottom:710.970000px;}
.y8a{bottom:711.727500px;}
.y224{bottom:712.273500px;}
.y73{bottom:713.559000px;}
.y12{bottom:714.046500px;}
.y115{bottom:714.889500px;}
.y166{bottom:716.269500px;}
.y1f2{bottom:719.158500px;}
.y17d{bottom:719.596500px;}
.y14a{bottom:720.480000px;}
.y40{bottom:721.399500px;}
.y194{bottom:723.454500px;}
.yd0{bottom:724.387500px;}
.y11{bottom:726.748500px;}
.y223{bottom:727.218000px;}
.y1ce{bottom:730.581000px;}
.y9f{bottom:730.786500px;}
.y1f1{bottom:734.101500px;}
.y114{bottom:735.063000px;}
.y165{bottom:736.444500px;}
.y10{bottom:739.452000px;}
.ye7{bottom:740.464500px;}
.y149{bottom:740.653500px;}
.y3f{bottom:741.574500px;}
.y222{bottom:742.161000px;}
.y193{bottom:743.628000px;}
.ycf{bottom:744.562500px;}
.y1ab{bottom:745.723500px;}
.y1f0{bottom:749.046000px;}
.y1cd{bottom:750.754500px;}
.y9e{bottom:750.961500px;}
.yf{bottom:752.154000px;}
.y113{bottom:755.238000px;}
.y164{bottom:756.619500px;}
.y221{bottom:757.105500px;}
.y148{bottom:760.828500px;}
.y3e{bottom:761.748000px;}
.y1ef{bottom:763.990500px;}
.yef{bottom:764.149500px;}
.yce{bottom:764.737500px;}
.ye{bottom:764.856000px;}
.y89{bottom:764.907000px;}
.y1aa{bottom:765.898500px;}
.y12d{bottom:770.082000px;}
.y1cc{bottom:770.929500px;}
.y9d{bottom:771.135000px;}
.y220{bottom:772.048500px;}
.y112{bottom:775.413000px;}
.y1ee{bottom:778.933500px;}
.yd{bottom:779.053500px;}
.y147{bottom:781.003500px;}
.y3d{bottom:781.923000px;}
.ycd{bottom:784.911000px;}
.y21f{bottom:786.993000px;}
.y1cb{bottom:791.103000px;}
.y9c{bottom:791.310000px;}
.y1ed{bottom:793.878000px;}
.y111{bottom:795.586500px;}
.yc{bottom:799.974000px;}
.y146{bottom:801.177000px;}
.y21e{bottom:801.937500px;}
.y3c{bottom:802.096500px;}
.ycc{bottom:805.086000px;}
.y163{bottom:809.797500px;}
.y1ca{bottom:811.278000px;}
.y9b{bottom:811.483500px;}
.y110{bottom:815.761500px;}
.y21d{bottom:816.880500px;}
.y1ec{bottom:817.788000px;}
.yb{bottom:820.896000px;}
.y145{bottom:821.352000px;}
.y3b{bottom:822.271500px;}
.ycb{bottom:825.259500px;}
.y162{bottom:829.972500px;}
.y1c9{bottom:831.453000px;}
.y9a{bottom:831.658500px;}
.y21c{bottom:831.825000px;}
.y10f{bottom:835.935000px;}
.y144{bottom:841.525500px;}
.y3a{bottom:842.445000px;}
.yca{bottom:845.434500px;}
.y21b{bottom:846.769500px;}
.y1c8{bottom:851.626500px;}
.y99{bottom:851.833500px;}
.y10e{bottom:856.110000px;}
.y143{bottom:861.700500px;}
.y21a{bottom:861.712500px;}
.y39{bottom:862.620000px;}
.ya{bottom:864.234000px;}
.yc9{bottom:865.608000px;}
.y1eb{bottom:871.587000px;}
.y1c7{bottom:871.801500px;}
.y98{bottom:872.007000px;}
.y10d{bottom:876.283500px;}
.y219{bottom:876.657000px;}
.y142{bottom:881.874000px;}
.y38{bottom:882.795000px;}
.yc8{bottom:885.783000px;}
.y1ea{bottom:888.024000px;}
.y218{bottom:891.601500px;}
.y1c6{bottom:891.975000px;}
.y97{bottom:892.182000px;}
.y10c{bottom:896.458500px;}
.y9{bottom:897.109500px;}
.y141{bottom:902.049000px;}
.y37{bottom:902.968500px;}
.y1e9{bottom:904.462500px;}
.yc7{bottom:905.958000px;}
.y217{bottom:906.544500px;}
.y1c5{bottom:912.150000px;}
.y96{bottom:912.355500px;}
.y10b{bottom:916.633500px;}
.y1e8{bottom:920.901000px;}
.y216{bottom:921.489000px;}
.y140{bottom:922.224000px;}
.y36{bottom:923.143500px;}
.yc6{bottom:926.131500px;}
.y8{bottom:929.986500px;}
.y1c4{bottom:932.323500px;}
.y95{bottom:932.530500px;}
.y215{bottom:936.433500px;}
.y10a{bottom:936.807000px;}
.y13f{bottom:942.397500px;}
.y35{bottom:943.317000px;}
.y1e7{bottom:946.306500px;}
.y214{bottom:951.376500px;}
.y1c3{bottom:952.498500px;}
.y94{bottom:952.704000px;}
.y109{bottom:956.982000px;}
.y13e{bottom:962.572500px;}
.y7{bottom:962.863500px;}
.y34{bottom:963.492000px;}
.y213{bottom:966.321000px;}
.y1c2{bottom:972.673500px;}
.y93{bottom:972.879000px;}
.y108{bottom:977.155500px;}
.y212{bottom:981.265500px;}
.y13d{bottom:982.746000px;}
.y33{bottom:983.665500px;}
.y1c1{bottom:992.847000px;}
.y92{bottom:993.054000px;}
.y211{bottom:996.208500px;}
.y107{bottom:997.330500px;}
.y13c{bottom:1002.921000px;}
.y32{bottom:1003.840500px;}
.y210{bottom:1011.153000px;}
.y6{bottom:1018.156500px;}
.y106{bottom:1021.987500px;}
.y91{bottom:1022.194500px;}
.y13b{bottom:1023.094500px;}
.y31{bottom:1024.014000px;}
.y20f{bottom:1026.096000px;}
.y30{bottom:1069.138500px;}
.y72{bottom:1069.387500px;}
.y1{bottom:1130.917500px;}
.y3{bottom:1142.947500px;}
.y2{bottom:1175.749500px;}
.h9{height:21.589440px;}
.h8{height:30.844416px;}
.he{height:31.083312px;}
.h2{height:31.084560px;}
.h13{height:37.013299px;}
.h14{height:37.283299px;}
.hd{height:38.302752px;}
.hc{height:39.486264px;}
.ha{height:39.862836px;}
.hf{height:39.864614px;}
.h3{height:45.408000px;}
.h11{height:45.738000px;}
.h12{height:48.723269px;}
.h7{height:48.723714px;}
.hb{height:53.151930px;}
.h10{height:53.152819px;}
.h6{height:57.973266px;}
.h4{height:70.869240px;}
.h5{height:97.447428px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1{left:-3.375000px;}
.x0{left:0.000000px;}
.x2{left:41.457000px;}
.xf{left:133.362000px;}
.x7{left:175.953000px;}
.x1a{left:182.677500px;}
.x6{left:184.918500px;}
.x9{left:198.369000px;}
.x1b{left:200.236500px;}
.x17{left:208.336500px;}
.xd{left:213.267000px;}
.x19{left:225.300000px;}
.x1f{left:228.561000px;}
.x1d{left:230.907000px;}
.xe{left:243.687000px;}
.x18{left:249.396000px;}
.x15{left:259.545000px;}
.x3{left:267.795000px;}
.x13{left:283.551000px;}
.x8{left:284.658000px;}
.xc{left:288.823500px;}
.x23{left:302.716500px;}
.x12{left:306.915000px;}
.x11{left:310.875000px;}
.x16{left:329.704500px;}
.x21{left:342.480000px;}
.x20{left:404.424000px;}
.x22{left:415.075500px;}
.x1e{left:419.673000px;}
.x14{left:474.865500px;}
.x1c{left:500.446500px;}
.xb{left:654.780000px;}
.xa{left:670.750500px;}
.x10{left:672.403500px;}
.x5{left:851.457000px;}
.x4{left:896.289000px;}
@media print{
.v2{vertical-align:-14.469333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.216000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000213pt;}
.ls12{letter-spacing:0.000435pt;}
.ls5{letter-spacing:0.000907pt;}
.ls13{letter-spacing:0.000922pt;}
.lsf{letter-spacing:0.001382pt;}
.ls6{letter-spacing:0.001419pt;}
.ls11{letter-spacing:0.004198pt;}
.ls1{letter-spacing:2.655595pt;}
.ls0{letter-spacing:2.660928pt;}
.ls4{letter-spacing:9.963392pt;}
.lse{letter-spacing:12.261333pt;}
.ls10{letter-spacing:12.603588pt;}
.ls3{letter-spacing:12.618667pt;}
.lsc{letter-spacing:14.224000pt;}
.ls2{letter-spacing:18.900928pt;}
.lsd{letter-spacing:20.624000pt;}
.lsb{letter-spacing:22.320000pt;}
.lsa{letter-spacing:124.846302pt;}
.ls9{letter-spacing:124.847488pt;}
.ws3f{word-spacing:-16.309333pt;}
.ws4{word-spacing:-16.248544pt;}
.ws40{word-spacing:-14.666667pt;}
.wse4{word-spacing:-13.294182pt;}
.wsf9{word-spacing:-11.955200pt;}
.ws3{word-spacing:-11.373536pt;}
.ws76{word-spacing:-3.461333pt;}
.ws5b{word-spacing:-3.402667pt;}
.ws57{word-spacing:-3.344000pt;}
.ws39{word-spacing:-3.168000pt;}
.ws7{word-spacing:-3.155984pt;}
.ws38{word-spacing:-3.109333pt;}
.ws4d{word-spacing:-3.050667pt;}
.ws9e{word-spacing:-2.992000pt;}
.ws26{word-spacing:-2.933333pt;}
.ws66{word-spacing:-2.757333pt;}
.ws14{word-spacing:-2.698667pt;}
.ws8{word-spacing:-2.677845pt;}
.ws30{word-spacing:-2.640000pt;}
.wseb{word-spacing:-2.486682pt;}
.ws59{word-spacing:-2.464000pt;}
.wsc2{word-spacing:-2.405333pt;}
.ws31{word-spacing:-2.346667pt;}
.ws3c{word-spacing:-2.288000pt;}
.wsf8{word-spacing:-2.247578pt;}
.wsb8{word-spacing:-2.229333pt;}
.wsf6{word-spacing:-2.199757pt;}
.wsc0{word-spacing:-2.170667pt;}
.ws2f{word-spacing:-2.112000pt;}
.ws9{word-spacing:-2.056250pt;}
.ws71{word-spacing:-2.053333pt;}
.wsab{word-spacing:-1.994667pt;}
.ws45{word-spacing:-1.936000pt;}
.ws90{word-spacing:-1.818667pt;}
.wse{word-spacing:-1.817348pt;}
.ws62{word-spacing:-1.760000pt;}
.ws91{word-spacing:-1.701333pt;}
.ws61{word-spacing:-1.642667pt;}
.wsc9{word-spacing:-1.584000pt;}
.ws6c{word-spacing:-1.525333pt;}
.ws7b{word-spacing:-1.408000pt;}
.wsd0{word-spacing:-1.349333pt;}
.ws4f{word-spacing:-1.290667pt;}
.wse0{word-spacing:-1.243341pt;}
.wsac{word-spacing:-1.232000pt;}
.ws70{word-spacing:-1.173333pt;}
.ws4a{word-spacing:-1.114667pt;}
.ws56{word-spacing:-1.056000pt;}
.wsc{word-spacing:-1.052011pt;}
.wsbc{word-spacing:-0.997333pt;}
.ws2c{word-spacing:-0.938667pt;}
.wsdb{word-spacing:-0.908595pt;}
.wsc1{word-spacing:-0.880000pt;}
.ws60{word-spacing:-0.821333pt;}
.ws10e{word-spacing:-0.812954pt;}
.wsd{word-spacing:-0.765099pt;}
.ws33{word-spacing:-0.762667pt;}
.wsf{word-spacing:-0.717041pt;}
.wsc4{word-spacing:-0.704000pt;}
.wsdc{word-spacing:-0.669491pt;}
.wsa9{word-spacing:-0.645333pt;}
.ws83{word-spacing:-0.586667pt;}
.wsa{word-spacing:-0.573585pt;}
.ws4c{word-spacing:-0.528000pt;}
.ws2d{word-spacing:-0.469333pt;}
.ws108{word-spacing:-0.430387pt;}
.ws9f{word-spacing:-0.410667pt;}
.wsa1{word-spacing:-0.352000pt;}
.ws17{word-spacing:-0.293333pt;}
.ws29{word-spacing:-0.234667pt;}
.wsa5{word-spacing:-0.176000pt;}
.ws86{word-spacing:-0.117333pt;}
.wsd9{word-spacing:-0.063761pt;}
.ws2a{word-spacing:-0.058667pt;}
.wsed{word-spacing:-0.047821pt;}
.wsf4{word-spacing:-0.000444pt;}
.ws2{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.000043pt;}
.ws9b{word-spacing:0.058667pt;}
.wse3{word-spacing:0.095642pt;}
.wsf3{word-spacing:0.143462pt;}
.ws49{word-spacing:0.176000pt;}
.wse1{word-spacing:0.191283pt;}
.ws3e{word-spacing:0.234667pt;}
.ws101{word-spacing:0.239104pt;}
.ws8a{word-spacing:0.293333pt;}
.ws10{word-spacing:0.334683pt;}
.ws80{word-spacing:0.352000pt;}
.ws74{word-spacing:0.410667pt;}
.ws8b{word-spacing:0.469333pt;}
.ws48{word-spacing:0.528000pt;}
.ws84{word-spacing:0.586667pt;}
.ws100{word-spacing:0.621670pt;}
.ws7e{word-spacing:0.645333pt;}
.wse5{word-spacing:0.669491pt;}
.ws27{word-spacing:0.704000pt;}
.wsee{word-spacing:0.717312pt;}
.wsb7{word-spacing:0.762667pt;}
.ws15{word-spacing:0.821333pt;}
.ws8f{word-spacing:0.880000pt;}
.ws3a{word-spacing:0.938667pt;}
.wsec{word-spacing:0.956416pt;}
.ws89{word-spacing:0.997333pt;}
.ws43{word-spacing:1.056000pt;}
.wsfa{word-spacing:1.099878pt;}
.wsb2{word-spacing:1.114667pt;}
.ws102{word-spacing:1.147699pt;}
.wsb0{word-spacing:1.173333pt;}
.ws8e{word-spacing:1.232000pt;}
.wsbd{word-spacing:1.290667pt;}
.wsea{word-spacing:1.338982pt;}
.wsd5{word-spacing:1.408000pt;}
.ws10f{word-spacing:1.434624pt;}
.wsd6{word-spacing:1.466667pt;}
.ws63{word-spacing:1.525333pt;}
.ws5e{word-spacing:1.584000pt;}
.ws3b{word-spacing:1.642667pt;}
.ws11{word-spacing:1.673653pt;}
.ws28{word-spacing:1.701333pt;}
.ws7d{word-spacing:1.760000pt;}
.ws54{word-spacing:1.818667pt;}
.ws52{word-spacing:1.877333pt;}
.wse9{word-spacing:1.912832pt;}
.ws75{word-spacing:1.936000pt;}
.ws55{word-spacing:1.994667pt;}
.ws44{word-spacing:2.053333pt;}
.wsfc{word-spacing:2.056294pt;}
.ws53{word-spacing:2.112000pt;}
.ws41{word-spacing:2.170667pt;}
.ws98{word-spacing:2.229333pt;}
.ws78{word-spacing:2.288000pt;}
.ws5a{word-spacing:2.346667pt;}
.ws5{word-spacing:2.390485pt;}
.ws93{word-spacing:2.405333pt;}
.ws6e{word-spacing:2.464000pt;}
.ws85{word-spacing:2.522667pt;}
.ws13{word-spacing:2.581333pt;}
.wsbb{word-spacing:2.640000pt;}
.ws5f{word-spacing:2.698667pt;}
.ws82{word-spacing:2.757333pt;}
.ws105{word-spacing:2.773606pt;}
.ws58{word-spacing:2.816000pt;}
.wse6{word-spacing:2.869248pt;}
.ws9c{word-spacing:2.874667pt;}
.ws5c{word-spacing:2.933333pt;}
.wsbe{word-spacing:2.992000pt;}
.ws6b{word-spacing:3.050667pt;}
.wsdf{word-spacing:3.060531pt;}
.ws23{word-spacing:3.109333pt;}
.ws32{word-spacing:3.168000pt;}
.wsae{word-spacing:3.226667pt;}
.wsda{word-spacing:3.251814pt;}
.ws47{word-spacing:3.285333pt;}
.ws7c{word-spacing:3.344000pt;}
.ws10d{word-spacing:3.395277pt;}
.ws2e{word-spacing:3.402667pt;}
.ws6a{word-spacing:3.461333pt;}
.wsfd{word-spacing:3.490918pt;}
.wsc8{word-spacing:3.520000pt;}
.wsf7{word-spacing:3.538739pt;}
.wsd1{word-spacing:3.578667pt;}
.ws24{word-spacing:3.637333pt;}
.wsf1{word-spacing:3.682202pt;}
.ws3d{word-spacing:3.696000pt;}
.ws10a{word-spacing:3.730022pt;}
.ws92{word-spacing:3.754667pt;}
.ws10b{word-spacing:3.777843pt;}
.wsb5{word-spacing:3.813333pt;}
.ws20{word-spacing:3.872000pt;}
.ws65{word-spacing:3.930667pt;}
.ws110{word-spacing:3.969126pt;}
.ws79{word-spacing:3.989333pt;}
.ws95{word-spacing:4.048000pt;}
.ws67{word-spacing:4.090667pt;}
.ws69{word-spacing:4.106667pt;}
.ws9a{word-spacing:4.165333pt;}
.wsaf{word-spacing:4.224000pt;}
.wsde{word-spacing:4.256051pt;}
.ws37{word-spacing:4.282667pt;}
.wsb{word-spacing:4.303728pt;}
.ws46{word-spacing:4.341333pt;}
.ws88{word-spacing:4.400000pt;}
.ws8c{word-spacing:4.458667pt;}
.wsa0{word-spacing:4.517333pt;}
.ws6d{word-spacing:4.634667pt;}
.ws10c{word-spacing:4.686438pt;}
.ws8d{word-spacing:4.693333pt;}
.wsa4{word-spacing:4.752000pt;}
.ws64{word-spacing:4.810667pt;}
.ws25{word-spacing:4.869333pt;}
.ws81{word-spacing:4.928000pt;}
.ws7f{word-spacing:4.986667pt;}
.ws107{word-spacing:5.021184pt;}
.wsdd{word-spacing:5.069005pt;}
.wsa6{word-spacing:5.104000pt;}
.ws34{word-spacing:5.162667pt;}
.wsd3{word-spacing:5.221333pt;}
.ws77{word-spacing:5.280000pt;}
.ws22{word-spacing:5.338667pt;}
.ws4b{word-spacing:5.397333pt;}
.wsc3{word-spacing:5.514667pt;}
.ws7a{word-spacing:5.573333pt;}
.wse2{word-spacing:5.595034pt;}
.ws72{word-spacing:5.632000pt;}
.ws6f{word-spacing:5.690667pt;}
.wsc5{word-spacing:5.749333pt;}
.ws21{word-spacing:5.808000pt;}
.ws1a{word-spacing:5.856000pt;}
.ws1d{word-spacing:5.861333pt;}
.ws1b{word-spacing:5.866667pt;}
.ws19{word-spacing:5.872000pt;}
.ws1c{word-spacing:5.877333pt;}
.ws18{word-spacing:5.882667pt;}
.wsbf{word-spacing:5.925333pt;}
.ws4e{word-spacing:5.984000pt;}
.wsb3{word-spacing:6.042667pt;}
.wsb9{word-spacing:6.101333pt;}
.wscf{word-spacing:6.160000pt;}
.wsfb{word-spacing:6.168883pt;}
.wsb4{word-spacing:6.277333pt;}
.wsd2{word-spacing:6.336000pt;}
.ws2b{word-spacing:6.394667pt;}
.ws99{word-spacing:6.453333pt;}
.wsef{word-spacing:6.455808pt;}
.wsf2{word-spacing:6.503629pt;}
.wsca{word-spacing:6.512000pt;}
.ws9d{word-spacing:6.570667pt;}
.wse7{word-spacing:6.599270pt;}
.ws5d{word-spacing:6.688000pt;}
.wsa2{word-spacing:6.746667pt;}
.wse8{word-spacing:6.790554pt;}
.wsd8{word-spacing:6.805333pt;}
.wsaa{word-spacing:6.922667pt;}
.wsad{word-spacing:6.981333pt;}
.ws42{word-spacing:7.040000pt;}
.wsa3{word-spacing:7.098667pt;}
.wsce{word-spacing:7.157333pt;}
.wsb1{word-spacing:7.216000pt;}
.wscd{word-spacing:7.333333pt;}
.wsba{word-spacing:7.392000pt;}
.wsb6{word-spacing:7.509333pt;}
.ws94{word-spacing:7.626667pt;}
.ws1f{word-spacing:7.685333pt;}
.ws97{word-spacing:7.861333pt;}
.wsc7{word-spacing:7.978667pt;}
.ws73{word-spacing:8.213333pt;}
.ws35{word-spacing:8.330667pt;}
.ws36{word-spacing:8.389333pt;}
.wsf0{word-spacing:8.559923pt;}
.ws16{word-spacing:8.565333pt;}
.ws50{word-spacing:8.682667pt;}
.wsc6{word-spacing:8.917333pt;}
.wsd7{word-spacing:9.034667pt;}
.wscb{word-spacing:9.269333pt;}
.ws109{word-spacing:11.476992pt;}
.wsf5{word-spacing:11.907379pt;}
.wsff{word-spacing:12.529050pt;}
.ws103{word-spacing:13.055078pt;}
.ws104{word-spacing:13.389824pt;}
.wscc{word-spacing:13.701333pt;}
.ws87{word-spacing:14.490667pt;}
.ws0{word-spacing:14.666667pt;}
.ws106{word-spacing:14.680986pt;}
.wsfe{word-spacing:15.398298pt;}
.ws96{word-spacing:16.189948pt;}
.ws51{word-spacing:17.661815pt;}
.ws68{word-spacing:18.714667pt;}
.ws6{word-spacing:20.881749pt;}
.ws12{word-spacing:31.816240pt;}
.wsd4{word-spacing:31.816772pt;}
.ws1{word-spacing:32.380192pt;}
.wsa7{word-spacing:84.963755pt;}
.wsa8{word-spacing:795.662379pt;}
._16{margin-left:-7.928864pt;}
._0{margin-left:-7.013877pt;}
._7{margin-left:-5.801989pt;}
._c{margin-left:-4.458667pt;}
._5{margin-left:-3.544042pt;}
._1{margin-left:-2.337803pt;}
._4{margin-left:-0.892768pt;}
._3{width:1.140855pt;}
._26{width:2.038828pt;}
._2{width:3.526425pt;}
._22{width:4.779637pt;}
._10{width:5.861109pt;}
._1d{width:10.325333pt;}
._a{width:13.161306pt;}
._1f{width:14.062273pt;}
._8{width:15.429834pt;}
._b{width:17.007659pt;}
._18{width:17.952000pt;}
._17{width:18.881803pt;}
._6{width:19.925333pt;}
._12{width:21.404470pt;}
._14{width:22.586667pt;}
._11{width:23.642667pt;}
._e{width:25.063435pt;}
._1e{width:26.768672pt;}
._15{width:28.327136pt;}
._9{width:29.278639pt;}
._21{width:30.439136pt;}
._1c{width:31.880533pt;}
._1b{width:33.344298pt;}
._19{width:34.508470pt;}
._13{width:35.610667pt;}
._24{width:36.570965pt;}
._25{width:37.620512pt;}
._1a{width:39.026101pt;}
._20{width:41.653333pt;}
._d{width:43.237333pt;}
._27{width:44.469333pt;}
._23{width:98.251454pt;}
._f{width:124.244821pt;}
.fs7{font-size:27.893333pt;}
.fs6{font-size:39.850667pt;}
.fs5{font-size:40.912000pt;}
.fsa{font-size:42.506667pt;}
.fsc{font-size:42.507200pt;}
.fs8{font-size:47.818667pt;}
.fsd{font-size:47.820800pt;}
.fsb{font-size:53.133867pt;}
.fs0{font-size:53.136000pt;}
.fsf{font-size:58.447467pt;}
.fs4{font-size:58.448000pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:63.760000pt;}
.fse{font-size:63.761067pt;}
.fs2{font-size:85.013333pt;}
.fs3{font-size:116.896000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:77.409333pt;}
.y2f{bottom:88.268000pt;}
.y2e{bottom:98.273333pt;}
.y2d{bottom:108.650667pt;}
.y4{bottom:117.260000pt;}
.y2c{bottom:178.294667pt;}
.y2b{bottom:189.585333pt;}
.y88{bottom:210.110667pt;}
.y58{bottom:210.857333pt;}
.ye6{bottom:213.514667pt;}
.y192{bottom:214.454667pt;}
.yc5{bottom:214.517333pt;}
.yb6{bottom:217.873333pt;}
.y1e6{bottom:219.018667pt;}
.yee{bottom:221.277333pt;}
.y12c{bottom:223.004000pt;}
.y68{bottom:223.477333pt;}
.y1a9{bottom:223.861333pt;}
.y2a{bottom:225.576000pt;}
.y17c{bottom:226.888000pt;}
.y71{bottom:227.462667pt;}
.y161{bottom:227.973333pt;}
.y87{bottom:228.042667pt;}
.y57{bottom:228.790667pt;}
.ye5{bottom:231.446667pt;}
.y191{bottom:232.388000pt;}
.yc4{bottom:232.449333pt;}
.y13a{bottom:233.740000pt;}
.yb5{bottom:235.806667pt;}
.y1e5{bottom:236.952000pt;}
.yed{bottom:239.209333pt;}
.y20e{bottom:240.745333pt;}
.y12b{bottom:240.936000pt;}
.y67{bottom:241.409333pt;}
.y1a8{bottom:241.794667pt;}
.y29{bottom:243.508000pt;}
.y17b{bottom:244.820000pt;}
.y70{bottom:245.394667pt;}
.y160{bottom:245.905333pt;}
.y86{bottom:245.976000pt;}
.y56{bottom:246.722667pt;}
.ye4{bottom:249.380000pt;}
.y190{bottom:250.320000pt;}
.yc3{bottom:250.382667pt;}
.y139{bottom:251.673333pt;}
.yb4{bottom:253.738667pt;}
.y20d{bottom:254.029333pt;}
.y1e4{bottom:254.884000pt;}
.y105{bottom:255.385333pt;}
.y1c0{bottom:256.940000pt;}
.yec{bottom:257.142667pt;}
.y12a{bottom:258.869333pt;}
.y66{bottom:259.342667pt;}
.y1a7{bottom:259.726667pt;}
.y28{bottom:261.441333pt;}
.y17a{bottom:262.753333pt;}
.y6f{bottom:263.328000pt;}
.y15f{bottom:263.838667pt;}
.y85{bottom:263.908000pt;}
.y55{bottom:264.656000pt;}
.ye3{bottom:267.312000pt;}
.y20c{bottom:267.313333pt;}
.y18f{bottom:268.253333pt;}
.yc2{bottom:268.314667pt;}
.y138{bottom:269.605333pt;}
.y90{bottom:270.080000pt;}
.yb3{bottom:271.672000pt;}
.y1e3{bottom:272.817333pt;}
.y104{bottom:273.318667pt;}
.y1bf{bottom:274.873333pt;}
.y129{bottom:276.802667pt;}
.y65{bottom:277.276000pt;}
.y1a6{bottom:277.660000pt;}
.y27{bottom:279.373333pt;}
.y20b{bottom:280.596000pt;}
.y179{bottom:280.685333pt;}
.y6e{bottom:281.260000pt;}
.y15e{bottom:281.770667pt;}
.y84{bottom:281.841333pt;}
.y54{bottom:282.589333pt;}
.ye2{bottom:285.245333pt;}
.y18e{bottom:286.186667pt;}
.yc1{bottom:286.248000pt;}
.y137{bottom:287.538667pt;}
.yb2{bottom:289.605333pt;}
.yeb{bottom:290.352000pt;}
.y1e2{bottom:290.749333pt;}
.y103{bottom:291.250667pt;}
.y1be{bottom:292.805333pt;}
.y20a{bottom:293.880000pt;}
.y128{bottom:294.734667pt;}
.y64{bottom:295.208000pt;}
.y1a5{bottom:295.592000pt;}
.y26{bottom:297.306667pt;}
.y178{bottom:298.618667pt;}
.y6d{bottom:299.193333pt;}
.y15d{bottom:299.704000pt;}
.y83{bottom:299.773333pt;}
.y53{bottom:300.521333pt;}
.ye1{bottom:303.178667pt;}
.y18d{bottom:304.118667pt;}
.yc0{bottom:304.180000pt;}
.y136{bottom:305.470667pt;}
.y209{bottom:307.162667pt;}
.yb1{bottom:307.537333pt;}
.y1e1{bottom:308.682667pt;}
.y102{bottom:309.184000pt;}
.y1bd{bottom:310.738667pt;}
.y127{bottom:312.668000pt;}
.y63{bottom:313.141333pt;}
.y1a4{bottom:313.525333pt;}
.y25{bottom:315.240000pt;}
.y177{bottom:316.552000pt;}
.y6c{bottom:317.126667pt;}
.y15c{bottom:317.637333pt;}
.y82{bottom:317.706667pt;}
.y52{bottom:318.454667pt;}
.y208{bottom:320.446667pt;}
.ye0{bottom:321.110667pt;}
.y18c{bottom:322.052000pt;}
.ybf{bottom:322.113333pt;}
.y135{bottom:323.404000pt;}
.yb0{bottom:325.470667pt;}
.y1e0{bottom:326.614667pt;}
.y101{bottom:327.117333pt;}
.y1bc{bottom:328.670667pt;}
.y126{bottom:330.600000pt;}
.y62{bottom:331.073333pt;}
.y1a3{bottom:331.457333pt;}
.y24{bottom:333.172000pt;}
.y207{bottom:333.730667pt;}
.y176{bottom:334.484000pt;}
.y6b{bottom:335.058667pt;}
.y15b{bottom:335.569333pt;}
.y51{bottom:336.386667pt;}
.yea{bottom:337.621333pt;}
.ydf{bottom:339.044000pt;}
.y81{bottom:339.624000pt;}
.ybe{bottom:340.046667pt;}
.y134{bottom:341.336000pt;}
.yaf{bottom:343.402667pt;}
.y18b{bottom:343.969333pt;}
.y1df{bottom:344.548000pt;}
.y100{bottom:345.049333pt;}
.y1bb{bottom:346.604000pt;}
.y206{bottom:347.013333pt;}
.y125{bottom:348.533333pt;}
.y61{bottom:349.006667pt;}
.y1a2{bottom:349.390667pt;}
.y175{bottom:352.417333pt;}
.y6a{bottom:352.992000pt;}
.y15a{bottom:353.502667pt;}
.y239{bottom:354.177333pt;}
.y50{bottom:354.320000pt;}
.ye9{bottom:355.554667pt;}
.yde{bottom:356.976000pt;}
.ybd{bottom:357.978667pt;}
.y23{bottom:359.074667pt;}
.y133{bottom:359.269333pt;}
.y205{bottom:360.297333pt;}
.yae{bottom:361.336000pt;}
.y1de{bottom:362.481333pt;}
.yff{bottom:362.982667pt;}
.y1ba{bottom:364.537333pt;}
.y1a1{bottom:365.330667pt;}
.y124{bottom:366.465333pt;}
.y60{bottom:366.938667pt;}
.y238{bottom:367.461333pt;}
.y174{bottom:370.349333pt;}
.y159{bottom:371.434667pt;}
.y4f{bottom:372.252000pt;}
.y80{bottom:372.833333pt;}
.y204{bottom:373.581333pt;}
.y69{bottom:374.909333pt;}
.ybc{bottom:375.912000pt;}
.ye8{bottom:377.140000pt;}
.y18a{bottom:377.178667pt;}
.y132{bottom:377.202667pt;}
.yad{bottom:379.268000pt;}
.y1dd{bottom:380.413333pt;}
.y237{bottom:380.745333pt;}
.yfe{bottom:380.914667pt;}
.y1b9{bottom:382.469333pt;}
.y123{bottom:384.398667pt;}
.y5f{bottom:384.872000pt;}
.y203{bottom:386.864000pt;}
.y173{bottom:388.282667pt;}
.y158{bottom:389.368000pt;}
.y4e{bottom:390.185333pt;}
.y7f{bottom:390.766667pt;}
.y22{bottom:392.284000pt;}
.ydd{bottom:392.841333pt;}
.ybb{bottom:393.844000pt;}
.y236{bottom:394.028000pt;}
.y189{bottom:395.110667pt;}
.y131{bottom:395.134667pt;}
.yac{bottom:397.201333pt;}
.y1dc{bottom:398.346667pt;}
.y1a0{bottom:398.540000pt;}
.yfd{bottom:398.848000pt;}
.y202{bottom:400.148000pt;}
.y1b8{bottom:400.402667pt;}
.y122{bottom:402.332000pt;}
.y5e{bottom:402.805333pt;}
.y172{bottom:406.214667pt;}
.y157{bottom:407.300000pt;}
.y235{bottom:407.312000pt;}
.y21{bottom:407.560000pt;}
.y4d{bottom:408.118667pt;}
.y7e{bottom:408.698667pt;}
.ydc{bottom:410.774667pt;}
.yba{bottom:411.777333pt;}
.y188{bottom:413.044000pt;}
.y130{bottom:413.068000pt;}
.y201{bottom:413.432000pt;}
.yab{bottom:415.134667pt;}
.y1db{bottom:416.278667pt;}
.y19f{bottom:416.472000pt;}
.yfc{bottom:416.780000pt;}
.y1b7{bottom:418.334667pt;}
.y121{bottom:420.264000pt;}
.y234{bottom:420.596000pt;}
.y5d{bottom:420.737333pt;}
.y20{bottom:422.836000pt;}
.y171{bottom:424.148000pt;}
.y156{bottom:425.233333pt;}
.y4c{bottom:426.050667pt;}
.y7d{bottom:426.632000pt;}
.y200{bottom:426.714667pt;}
.ydb{bottom:428.708000pt;}
.yb9{bottom:429.709333pt;}
.y187{bottom:430.976000pt;}
.yaa{bottom:433.066667pt;}
.y233{bottom:433.878667pt;}
.y1da{bottom:434.212000pt;}
.y19e{bottom:434.405333pt;}
.yfb{bottom:434.713333pt;}
.y1b6{bottom:436.268000pt;}
.y1f{bottom:438.112000pt;}
.y120{bottom:438.197333pt;}
.y5c{bottom:438.670667pt;}
.y1ff{bottom:439.998667pt;}
.y170{bottom:442.081333pt;}
.y155{bottom:443.166667pt;}
.y4b{bottom:443.984000pt;}
.y7c{bottom:444.564000pt;}
.yda{bottom:446.640000pt;}
.y232{bottom:447.162667pt;}
.yb8{bottom:447.642667pt;}
.y186{bottom:448.909333pt;}
.ya9{bottom:451.000000pt;}
.y1d9{bottom:452.144000pt;}
.y19d{bottom:452.338667pt;}
.yfa{bottom:452.646667pt;}
.y1fe{bottom:453.282667pt;}
.y1e{bottom:453.388000pt;}
.y1b5{bottom:454.200000pt;}
.y11f{bottom:456.129333pt;}
.y5b{bottom:456.602667pt;}
.y16f{bottom:460.013333pt;}
.y12f{bottom:460.337333pt;}
.y231{bottom:460.446667pt;}
.y154{bottom:461.098667pt;}
.y4a{bottom:461.916000pt;}
.y7b{bottom:462.497333pt;}
.yd9{bottom:464.573333pt;}
.y1fd{bottom:466.565333pt;}
.y185{bottom:466.841333pt;}
.y1d{bottom:468.664000pt;}
.ya8{bottom:468.932000pt;}
.y1d8{bottom:470.077333pt;}
.y19c{bottom:470.270667pt;}
.yf9{bottom:470.578667pt;}
.y1b4{bottom:472.133333pt;}
.y230{bottom:473.729333pt;}
.y11e{bottom:474.062667pt;}
.y5a{bottom:474.536000pt;}
.y16e{bottom:477.946667pt;}
.y12e{bottom:478.270667pt;}
.y153{bottom:479.032000pt;}
.y49{bottom:479.849333pt;}
.y7a{bottom:480.429333pt;}
.yd8{bottom:482.505333pt;}
.y1c{bottom:483.940000pt;}
.y184{bottom:484.774667pt;}
.ya7{bottom:486.865333pt;}
.y22f{bottom:487.013333pt;}
.y1d7{bottom:488.010667pt;}
.y19b{bottom:488.204000pt;}
.yf8{bottom:488.512000pt;}
.y1b3{bottom:490.066667pt;}
.y11d{bottom:491.994667pt;}
.y1fc{bottom:493.133333pt;}
.yb7{bottom:494.332000pt;}
.y16d{bottom:495.878667pt;}
.y152{bottom:496.964000pt;}
.y48{bottom:497.781333pt;}
.y79{bottom:498.362667pt;}
.y1b{bottom:499.216000pt;}
.y22e{bottom:500.297333pt;}
.y59{bottom:500.438667pt;}
.y183{bottom:502.708000pt;}
.y1d6{bottom:505.942667pt;}
.y19a{bottom:506.136000pt;}
.y1fb{bottom:506.416000pt;}
.yf7{bottom:506.444000pt;}
.y1b2{bottom:507.998667pt;}
.ya6{bottom:508.782667pt;}
.y11c{bottom:509.928000pt;}
.y22d{bottom:513.580000pt;}
.y16c{bottom:513.812000pt;}
.y1a{bottom:514.492000pt;}
.y151{bottom:514.897333pt;}
.y47{bottom:515.714667pt;}
.y78{bottom:516.296000pt;}
.yd7{bottom:518.370667pt;}
.y1fa{bottom:519.700000pt;}
.y182{bottom:520.640000pt;}
.y1d5{bottom:523.876000pt;}
.y199{bottom:524.069333pt;}
.yf6{bottom:524.377333pt;}
.y1b1{bottom:525.932000pt;}
.y22c{bottom:526.864000pt;}
.y11b{bottom:527.860000pt;}
.y19{bottom:529.768000pt;}
.y16b{bottom:531.744000pt;}
.y150{bottom:532.829333pt;}
.y1f9{bottom:532.982667pt;}
.y46{bottom:533.648000pt;}
.y77{bottom:534.228000pt;}
.yd6{bottom:536.304000pt;}
.y181{bottom:538.573333pt;}
.y22b{bottom:540.146667pt;}
.y1d4{bottom:541.808000pt;}
.ya5{bottom:541.992000pt;}
.y198{bottom:542.001333pt;}
.yf5{bottom:542.309333pt;}
.y8f{bottom:542.982667pt;}
.y1b0{bottom:543.864000pt;}
.y18{bottom:545.044000pt;}
.y11a{bottom:545.793333pt;}
.y1f8{bottom:546.266667pt;}
.y16a{bottom:549.677333pt;}
.y14f{bottom:550.762667pt;}
.y45{bottom:551.580000pt;}
.y76{bottom:552.161333pt;}
.y22a{bottom:553.430667pt;}
.yd5{bottom:554.237333pt;}
.y180{bottom:556.505333pt;}
.y1f7{bottom:559.550667pt;}
.y1d3{bottom:559.741333pt;}
.ya4{bottom:559.924000pt;}
.y197{bottom:559.934667pt;}
.yf4{bottom:560.242667pt;}
.y17{bottom:560.320000pt;}
.y8e{bottom:560.916000pt;}
.y1af{bottom:561.797333pt;}
.y119{bottom:563.726667pt;}
.y229{bottom:566.714667pt;}
.y169{bottom:567.610667pt;}
.y14e{bottom:568.696000pt;}
.y44{bottom:569.513333pt;}
.y75{bottom:570.093333pt;}
.yd4{bottom:572.169333pt;}
.y1f6{bottom:572.833333pt;}
.y17f{bottom:574.438667pt;}
.y1d2{bottom:577.673333pt;}
.ya3{bottom:577.857333pt;}
.y196{bottom:577.868000pt;}
.yf3{bottom:578.176000pt;}
.y8d{bottom:578.848000pt;}
.y1ae{bottom:579.729333pt;}
.y228{bottom:579.997333pt;}
.y118{bottom:581.658667pt;}
.y16{bottom:582.902667pt;}
.y1f5{bottom:586.117333pt;}
.y14d{bottom:586.628000pt;}
.y43{bottom:587.445333pt;}
.y74{bottom:588.026667pt;}
.yd3{bottom:590.102667pt;}
.y17e{bottom:592.370667pt;}
.y227{bottom:593.281333pt;}
.y1d1{bottom:595.606667pt;}
.ya2{bottom:595.789333pt;}
.y195{bottom:595.800000pt;}
.yf2{bottom:596.108000pt;}
.y8c{bottom:596.781333pt;}
.y1ad{bottom:597.662667pt;}
.y1f4{bottom:599.401333pt;}
.y117{bottom:599.592000pt;}
.y168{bottom:600.818667pt;}
.y15{bottom:604.452000pt;}
.y14c{bottom:604.561333pt;}
.y42{bottom:605.378667pt;}
.y226{bottom:606.565333pt;}
.yd2{bottom:608.034667pt;}
.y14{bottom:612.126667pt;}
.y1f3{bottom:612.684000pt;}
.y1d0{bottom:613.540000pt;}
.ya1{bottom:613.722667pt;}
.yf1{bottom:614.041333pt;}
.y8b{bottom:614.713333pt;}
.y1ac{bottom:615.596000pt;}
.y116{bottom:617.524000pt;}
.y167{bottom:618.752000pt;}
.y225{bottom:619.848000pt;}
.y14b{bottom:622.493333pt;}
.y41{bottom:623.310667pt;}
.y13{bottom:623.417333pt;}
.yd1{bottom:625.968000pt;}
.y1cf{bottom:631.472000pt;}
.ya0{bottom:631.656000pt;}
.yf0{bottom:631.973333pt;}
.y8a{bottom:632.646667pt;}
.y224{bottom:633.132000pt;}
.y73{bottom:634.274667pt;}
.y12{bottom:634.708000pt;}
.y115{bottom:635.457333pt;}
.y166{bottom:636.684000pt;}
.y1f2{bottom:639.252000pt;}
.y17d{bottom:639.641333pt;}
.y14a{bottom:640.426667pt;}
.y40{bottom:641.244000pt;}
.y194{bottom:643.070667pt;}
.yd0{bottom:643.900000pt;}
.y11{bottom:645.998667pt;}
.y223{bottom:646.416000pt;}
.y1ce{bottom:649.405333pt;}
.y9f{bottom:649.588000pt;}
.y1f1{bottom:652.534667pt;}
.y114{bottom:653.389333pt;}
.y165{bottom:654.617333pt;}
.y10{bottom:657.290667pt;}
.ye7{bottom:658.190667pt;}
.y149{bottom:658.358667pt;}
.y3f{bottom:659.177333pt;}
.y222{bottom:659.698667pt;}
.y193{bottom:661.002667pt;}
.ycf{bottom:661.833333pt;}
.y1ab{bottom:662.865333pt;}
.y1f0{bottom:665.818667pt;}
.y1cd{bottom:667.337333pt;}
.y9e{bottom:667.521333pt;}
.yf{bottom:668.581333pt;}
.y113{bottom:671.322667pt;}
.y164{bottom:672.550667pt;}
.y221{bottom:672.982667pt;}
.y148{bottom:676.292000pt;}
.y3e{bottom:677.109333pt;}
.y1ef{bottom:679.102667pt;}
.yef{bottom:679.244000pt;}
.yce{bottom:679.766667pt;}
.ye{bottom:679.872000pt;}
.y89{bottom:679.917333pt;}
.y1aa{bottom:680.798667pt;}
.y12d{bottom:684.517333pt;}
.y1cc{bottom:685.270667pt;}
.y9d{bottom:685.453333pt;}
.y220{bottom:686.265333pt;}
.y112{bottom:689.256000pt;}
.y1ee{bottom:692.385333pt;}
.yd{bottom:692.492000pt;}
.y147{bottom:694.225333pt;}
.y3d{bottom:695.042667pt;}
.ycd{bottom:697.698667pt;}
.y21f{bottom:699.549333pt;}
.y1cb{bottom:703.202667pt;}
.y9c{bottom:703.386667pt;}
.y1ed{bottom:705.669333pt;}
.y111{bottom:707.188000pt;}
.yc{bottom:711.088000pt;}
.y146{bottom:712.157333pt;}
.y21e{bottom:712.833333pt;}
.y3c{bottom:712.974667pt;}
.ycc{bottom:715.632000pt;}
.y163{bottom:719.820000pt;}
.y1ca{bottom:721.136000pt;}
.y9b{bottom:721.318667pt;}
.y110{bottom:725.121333pt;}
.y21d{bottom:726.116000pt;}
.y1ec{bottom:726.922667pt;}
.yb{bottom:729.685333pt;}
.y145{bottom:730.090667pt;}
.y3b{bottom:730.908000pt;}
.ycb{bottom:733.564000pt;}
.y162{bottom:737.753333pt;}
.y1c9{bottom:739.069333pt;}
.y9a{bottom:739.252000pt;}
.y21c{bottom:739.400000pt;}
.y10f{bottom:743.053333pt;}
.y144{bottom:748.022667pt;}
.y3a{bottom:748.840000pt;}
.yca{bottom:751.497333pt;}
.y21b{bottom:752.684000pt;}
.y1c8{bottom:757.001333pt;}
.y99{bottom:757.185333pt;}
.y10e{bottom:760.986667pt;}
.y143{bottom:765.956000pt;}
.y21a{bottom:765.966667pt;}
.y39{bottom:766.773333pt;}
.ya{bottom:768.208000pt;}
.yc9{bottom:769.429333pt;}
.y1eb{bottom:774.744000pt;}
.y1c7{bottom:774.934667pt;}
.y98{bottom:775.117333pt;}
.y10d{bottom:778.918667pt;}
.y219{bottom:779.250667pt;}
.y142{bottom:783.888000pt;}
.y38{bottom:784.706667pt;}
.yc8{bottom:787.362667pt;}
.y1ea{bottom:789.354667pt;}
.y218{bottom:792.534667pt;}
.y1c6{bottom:792.866667pt;}
.y97{bottom:793.050667pt;}
.y10c{bottom:796.852000pt;}
.y9{bottom:797.430667pt;}
.y141{bottom:801.821333pt;}
.y37{bottom:802.638667pt;}
.y1e9{bottom:803.966667pt;}
.yc7{bottom:805.296000pt;}
.y217{bottom:805.817333pt;}
.y1c5{bottom:810.800000pt;}
.y96{bottom:810.982667pt;}
.y10b{bottom:814.785333pt;}
.y1e8{bottom:818.578667pt;}
.y216{bottom:819.101333pt;}
.y140{bottom:819.754667pt;}
.y36{bottom:820.572000pt;}
.yc6{bottom:823.228000pt;}
.y8{bottom:826.654667pt;}
.y1c4{bottom:828.732000pt;}
.y95{bottom:828.916000pt;}
.y215{bottom:832.385333pt;}
.y10a{bottom:832.717333pt;}
.y13f{bottom:837.686667pt;}
.y35{bottom:838.504000pt;}
.y1e7{bottom:841.161333pt;}
.y214{bottom:845.668000pt;}
.y1c3{bottom:846.665333pt;}
.y94{bottom:846.848000pt;}
.y109{bottom:850.650667pt;}
.y13e{bottom:855.620000pt;}
.y7{bottom:855.878667pt;}
.y34{bottom:856.437333pt;}
.y213{bottom:858.952000pt;}
.y1c2{bottom:864.598667pt;}
.y93{bottom:864.781333pt;}
.y108{bottom:868.582667pt;}
.y212{bottom:872.236000pt;}
.y13d{bottom:873.552000pt;}
.y33{bottom:874.369333pt;}
.y1c1{bottom:882.530667pt;}
.y92{bottom:882.714667pt;}
.y211{bottom:885.518667pt;}
.y107{bottom:886.516000pt;}
.y13c{bottom:891.485333pt;}
.y32{bottom:892.302667pt;}
.y210{bottom:898.802667pt;}
.y6{bottom:905.028000pt;}
.y106{bottom:908.433333pt;}
.y91{bottom:908.617333pt;}
.y13b{bottom:909.417333pt;}
.y31{bottom:910.234667pt;}
.y20f{bottom:912.085333pt;}
.y30{bottom:950.345333pt;}
.y72{bottom:950.566667pt;}
.y1{bottom:1005.260000pt;}
.y3{bottom:1015.953333pt;}
.y2{bottom:1045.110667pt;}
.h9{height:19.190613pt;}
.h8{height:27.417259pt;}
.he{height:27.629611pt;}
.h2{height:27.630720pt;}
.h13{height:32.900710pt;}
.h14{height:33.140710pt;}
.hd{height:34.046891pt;}
.hc{height:35.098901pt;}
.ha{height:35.433632pt;}
.hf{height:35.435213pt;}
.h3{height:40.362667pt;}
.h11{height:40.656000pt;}
.h12{height:43.309573pt;}
.h7{height:43.309968pt;}
.hb{height:47.246160pt;}
.h10{height:47.246950pt;}
.h6{height:51.531792pt;}
.h4{height:62.994880pt;}
.h5{height:86.619936pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1{left:-3.000000pt;}
.x0{left:0.000000pt;}
.x2{left:36.850667pt;}
.xf{left:118.544000pt;}
.x7{left:156.402667pt;}
.x1a{left:162.380000pt;}
.x6{left:164.372000pt;}
.x9{left:176.328000pt;}
.x1b{left:177.988000pt;}
.x17{left:185.188000pt;}
.xd{left:189.570667pt;}
.x19{left:200.266667pt;}
.x1f{left:203.165333pt;}
.x1d{left:205.250667pt;}
.xe{left:216.610667pt;}
.x18{left:221.685333pt;}
.x15{left:230.706667pt;}
.x3{left:238.040000pt;}
.x13{left:252.045333pt;}
.x8{left:253.029333pt;}
.xc{left:256.732000pt;}
.x23{left:269.081333pt;}
.x12{left:272.813333pt;}
.x11{left:276.333333pt;}
.x16{left:293.070667pt;}
.x21{left:304.426667pt;}
.x20{left:359.488000pt;}
.x22{left:368.956000pt;}
.x1e{left:373.042667pt;}
.x14{left:422.102667pt;}
.x1c{left:444.841333pt;}
.xb{left:582.026667pt;}
.xa{left:596.222667pt;}
.x10{left:597.692000pt;}
.x5{left:756.850667pt;}
.x4{left:796.701333pt;}
}




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