
    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_14c1cd59b2a01b7ddb5966e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.853000;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_85899dd36e9d06f675865c31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853000;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_b87e869af47d47d8d6de4b2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892000;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_96c4b3dd0bcf2311c9a071fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_7bbdb6564cbe188f047770e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_1539e9982adb4a7ddce79939.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.071000;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_8ae9615d31a3643a07a1a596.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.048000;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_76aba02b0dd0c09f094b54fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.054000;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_2a0731902fe89806f051af1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_85899dd36e9d06f675865c31.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853000;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_85899dd36e9d06f675865c31.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853000;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_31ff0d63c00bcc8c9659fd5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_47280d986fc4d8081b91dfd1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_b58942261472223ba4c7f186.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084961;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_8e92ce74bfe6451a3ce499e3.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_e7a6899688fdfb525a03b139.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e7ea2ace72788c4858eac728.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.073000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.v2{vertical-align:-5.460000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.988000px;}
.ls10{letter-spacing:-2.880000px;}
.lsa{letter-spacing:-1.140000px;}
.ls12{letter-spacing:-0.912000px;}
.ls9{letter-spacing:-0.570000px;}
.ls2a{letter-spacing:-0.561000px;}
.lsb{letter-spacing:-0.513000px;}
.ls13{letter-spacing:-0.510000px;}
.ls2b{letter-spacing:-0.459000px;}
.ls3{letter-spacing:-0.456000px;}
.ls1{letter-spacing:-0.450000px;}
.ls29{letter-spacing:-0.408000px;}
.lsc{letter-spacing:-0.342000px;}
.ls27{letter-spacing:-0.306000px;}
.ls2{letter-spacing:-0.285000px;}
.ls28{letter-spacing:-0.255000px;}
.ls4{letter-spacing:-0.228000px;}
.ls6{letter-spacing:-0.171000px;}
.ls2c{letter-spacing:-0.153000px;}
.ls5{letter-spacing:-0.114000px;}
.ls2d{letter-spacing:-0.102000px;}
.ls7{letter-spacing:-0.057000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.057000px;}
.ls36{letter-spacing:0.076500px;}
.ls22{letter-spacing:0.102000px;}
.ls11{letter-spacing:0.114000px;}
.ls30{letter-spacing:0.153000px;}
.ls14{letter-spacing:0.193800px;}
.ls17{letter-spacing:0.199500px;}
.ls31{letter-spacing:0.204000px;}
.ls37{letter-spacing:0.229500px;}
.ls1e{letter-spacing:0.255000px;}
.ls24{letter-spacing:0.357000px;}
.ls18{letter-spacing:0.399000px;}
.ls23{letter-spacing:0.408000px;}
.ls19{letter-spacing:0.456000px;}
.ls1f{letter-spacing:0.510000px;}
.ls1a{letter-spacing:0.513000px;}
.ls32{letter-spacing:0.561000px;}
.ls15{letter-spacing:0.570000px;}
.ls16{letter-spacing:0.684000px;}
.ls33{letter-spacing:0.816000px;}
.ls35{letter-spacing:0.918000px;}
.ls34{letter-spacing:0.969000px;}
.ls38{letter-spacing:1.020000px;}
.ls39{letter-spacing:1.479000px;}
.ls1c{letter-spacing:1.683000px;}
.ls25{letter-spacing:1.785000px;}
.ls1d{letter-spacing:1.938000px;}
.ls3a{letter-spacing:2.142000px;}
.ls2e{letter-spacing:2.958000px;}
.ls21{letter-spacing:3.136500px;}
.ls2f{letter-spacing:3.417000px;}
.ls26{letter-spacing:3.570000px;}
.ls20{letter-spacing:3.621000px;}
.ls1b{letter-spacing:4.131000px;}
.lse{letter-spacing:448.224000px;}
.lsf{letter-spacing:459.168000px;}
.lsd{letter-spacing:559.776000px;}
.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;}
}
.ws43{word-spacing:-12.084000px;}
.ws0{word-spacing:-11.514000px;}
.wsb3{word-spacing:-11.067000px;}
.wsd5{word-spacing:-10.965000px;}
.ws8d{word-spacing:-10.944000px;}
.wsd6{word-spacing:-10.888500px;}
.wsb5{word-spacing:-10.659000px;}
.ws57{word-spacing:-10.374000px;}
.ws89{word-spacing:-10.302000px;}
.wsb4{word-spacing:-10.251000px;}
.ws88{word-spacing:-9.234000px;}
.ws44{word-spacing:-8.736000px;}
.ws6e{word-spacing:-8.064000px;}
.wsce{word-spacing:-4.029000px;}
.wsc9{word-spacing:-3.825000px;}
.wscf{word-spacing:-3.417000px;}
.wsca{word-spacing:-3.264000px;}
.ws8{word-spacing:-3.021000px;}
.ws34{word-spacing:-2.964000px;}
.ws32{word-spacing:-2.907000px;}
.wsc2{word-spacing:-2.856000px;}
.ws46{word-spacing:-2.793000px;}
.wscd{word-spacing:-2.703000px;}
.ws96{word-spacing:-2.679000px;}
.ws1d{word-spacing:-2.622000px;}
.wsd3{word-spacing:-2.601000px;}
.ws1e{word-spacing:-2.565000px;}
.ws11{word-spacing:-2.508000px;}
.ws8e{word-spacing:-2.451000px;}
.wsc3{word-spacing:-2.448000px;}
.ws1a{word-spacing:-2.394000px;}
.wsdc{word-spacing:-2.346000px;}
.ws75{word-spacing:-2.337000px;}
.wsd4{word-spacing:-2.295000px;}
.wsaf{word-spacing:-2.223000px;}
.ws99{word-spacing:-2.166000px;}
.wse0{word-spacing:-2.142000px;}
.ws76{word-spacing:-2.109000px;}
.wsa0{word-spacing:-2.052000px;}
.ws3b{word-spacing:-1.995000px;}
.wsa4{word-spacing:-1.938000px;}
.wsc8{word-spacing:-1.887000px;}
.ws31{word-spacing:-1.881000px;}
.ws2f{word-spacing:-1.824000px;}
.ws2c{word-spacing:-1.710000px;}
.wse1{word-spacing:-1.683000px;}
.ws1b{word-spacing:-1.653000px;}
.ws5b{word-spacing:-1.632000px;}
.ws1c{word-spacing:-1.596000px;}
.ws25{word-spacing:-1.539000px;}
.ws33{word-spacing:-1.482000px;}
.ws48{word-spacing:-1.425000px;}
.wsdb{word-spacing:-1.377000px;}
.wsae{word-spacing:-1.368000px;}
.ws97{word-spacing:-1.311000px;}
.ws3f{word-spacing:-1.254000px;}
.ws3c{word-spacing:-1.197000px;}
.ws56{word-spacing:-1.140000px;}
.ws20{word-spacing:-1.083000px;}
.ws15{word-spacing:-1.026000px;}
.wse5{word-spacing:-1.020000px;}
.ws7{word-spacing:-0.969000px;}
.ws5c{word-spacing:-0.918000px;}
.ws22{word-spacing:-0.912000px;}
.wse8{word-spacing:-0.867000px;}
.ws42{word-spacing:-0.855000px;}
.wsd0{word-spacing:-0.816000px;}
.ws2b{word-spacing:-0.798000px;}
.wsc5{word-spacing:-0.765000px;}
.wsb{word-spacing:-0.741000px;}
.ws2a{word-spacing:-0.684000px;}
.ws19{word-spacing:-0.627000px;}
.ws12{word-spacing:-0.570000px;}
.wsc1{word-spacing:-0.561000px;}
.ws1f{word-spacing:-0.513000px;}
.wsbf{word-spacing:-0.459000px;}
.ws8f{word-spacing:-0.456000px;}
.ws5e{word-spacing:-0.399000px;}
.ws14{word-spacing:-0.342000px;}
.wsc4{word-spacing:-0.306000px;}
.ws4c{word-spacing:-0.285000px;}
.wsbd{word-spacing:-0.255000px;}
.wsd{word-spacing:-0.228000px;}
.ws13{word-spacing:-0.171000px;}
.ws16{word-spacing:-0.114000px;}
.ws18{word-spacing:-0.102000px;}
.ws30{word-spacing:-0.057000px;}
.ws1{word-spacing:-0.042000px;}
.ws2{word-spacing:0.000000px;}
.ws93{word-spacing:0.057000px;}
.ws21{word-spacing:0.114000px;}
.wsd1{word-spacing:0.153000px;}
.ws47{word-spacing:0.228000px;}
.ws4b{word-spacing:0.285000px;}
.ws24{word-spacing:0.342000px;}
.ws37{word-spacing:0.399000px;}
.wsa2{word-spacing:0.456000px;}
.ws70{word-spacing:0.513000px;}
.ws71{word-spacing:0.570000px;}
.ws4e{word-spacing:0.627000px;}
.ws94{word-spacing:0.684000px;}
.ws9f{word-spacing:0.741000px;}
.ws3a{word-spacing:0.798000px;}
.wse9{word-spacing:0.816000px;}
.ws4d{word-spacing:0.855000px;}
.wsd8{word-spacing:0.867000px;}
.ws6f{word-spacing:0.912000px;}
.ws58{word-spacing:0.969000px;}
.wsd7{word-spacing:1.020000px;}
.ws53{word-spacing:1.026000px;}
.ws41{word-spacing:1.083000px;}
.ws59{word-spacing:1.122000px;}
.wsa5{word-spacing:1.140000px;}
.ws26{word-spacing:1.197000px;}
.ws5a{word-spacing:1.224000px;}
.ws2e{word-spacing:1.254000px;}
.wse6{word-spacing:1.275000px;}
.wsa1{word-spacing:1.311000px;}
.wsa8{word-spacing:1.368000px;}
.wsbe{word-spacing:1.377000px;}
.ws95{word-spacing:1.425000px;}
.wse7{word-spacing:1.428000px;}
.ws35{word-spacing:1.482000px;}
.wsaa{word-spacing:1.539000px;}
.ws5{word-spacing:1.596000px;}
.wsba{word-spacing:1.632000px;}
.ws29{word-spacing:1.653000px;}
.ws9b{word-spacing:1.710000px;}
.wsde{word-spacing:1.734000px;}
.ws5f{word-spacing:1.767000px;}
.ws73{word-spacing:1.824000px;}
.wsb0{word-spacing:1.881000px;}
.ws60{word-spacing:1.938000px;}
.ws5d{word-spacing:1.989000px;}
.ws77{word-spacing:1.995000px;}
.wsdd{word-spacing:2.040000px;}
.ws49{word-spacing:2.052000px;}
.wsc{word-spacing:2.109000px;}
.ws55{word-spacing:2.166000px;}
.ws9a{word-spacing:2.223000px;}
.ws54{word-spacing:2.280000px;}
.wse3{word-spacing:2.295000px;}
.ws74{word-spacing:2.337000px;}
.wsb1{word-spacing:2.394000px;}
.ws4f{word-spacing:2.508000px;}
.ws28{word-spacing:2.565000px;}
.ws23{word-spacing:2.622000px;}
.wsec{word-spacing:2.652000px;}
.ws9e{word-spacing:2.679000px;}
.wsad{word-spacing:2.736000px;}
.wsc0{word-spacing:2.754000px;}
.ws45{word-spacing:2.850000px;}
.ws3d{word-spacing:2.907000px;}
.ws17{word-spacing:2.964000px;}
.ws9d{word-spacing:3.021000px;}
.wsf{word-spacing:3.078000px;}
.ws2d{word-spacing:3.135000px;}
.wsa6{word-spacing:3.249000px;}
.wsea{word-spacing:3.264000px;}
.ws36{word-spacing:3.306000px;}
.ws3e{word-spacing:3.363000px;}
.ws40{word-spacing:3.477000px;}
.wsd2{word-spacing:3.519000px;}
.ws10{word-spacing:3.534000px;}
.ws9c{word-spacing:3.591000px;}
.wse4{word-spacing:3.621000px;}
.ws9{word-spacing:3.648000px;}
.wsac{word-spacing:3.762000px;}
.wsa{word-spacing:3.819000px;}
.wsab{word-spacing:3.876000px;}
.wsbc{word-spacing:3.927000px;}
.wsdf{word-spacing:3.978000px;}
.ws4{word-spacing:4.047000px;}
.ws52{word-spacing:4.104000px;}
.ws92{word-spacing:4.161000px;}
.wsc7{word-spacing:4.233000px;}
.ws39{word-spacing:4.275000px;}
.wsa7{word-spacing:4.446000px;}
.wseb{word-spacing:4.488000px;}
.ws6{word-spacing:4.503000px;}
.ws3{word-spacing:4.560000px;}
.wsbb{word-spacing:4.590000px;}
.ws4a{word-spacing:4.617000px;}
.wsb9{word-spacing:4.641000px;}
.wsa3{word-spacing:4.788000px;}
.ws72{word-spacing:4.845000px;}
.wsc6{word-spacing:4.896000px;}
.ws27{word-spacing:5.130000px;}
.ws8a{word-spacing:5.187000px;}
.ws98{word-spacing:5.244000px;}
.wse2{word-spacing:5.355000px;}
.wse{word-spacing:5.358000px;}
.wsb8{word-spacing:5.406000px;}
.wsda{word-spacing:5.457000px;}
.wsa9{word-spacing:5.529000px;}
.wscc{word-spacing:5.763000px;}
.wsb2{word-spacing:5.985000px;}
.ws38{word-spacing:6.042000px;}
.wsd9{word-spacing:6.324000px;}
.wscb{word-spacing:6.732000px;}
.wsb7{word-spacing:7.089000px;}
.wsb6{word-spacing:8.262000px;}
.ws7b{word-spacing:73.200000px;}
.ws7d{word-spacing:80.880000px;}
.ws7f{word-spacing:82.896000px;}
.ws81{word-spacing:100.560000px;}
.ws79{word-spacing:106.896000px;}
.ws80{word-spacing:112.848000px;}
.ws83{word-spacing:116.832000px;}
.ws7e{word-spacing:122.160000px;}
.ws82{word-spacing:127.344000px;}
.ws84{word-spacing:130.992000px;}
.ws85{word-spacing:138.144000px;}
.ws7a{word-spacing:142.944000px;}
.ws7c{word-spacing:147.264000px;}
.ws91{word-spacing:165.189000px;}
.ws8c{word-spacing:166.246800px;}
.ws86{word-spacing:170.352000px;}
.ws51{word-spacing:235.296000px;}
.ws62{word-spacing:272.493000px;}
.ws87{word-spacing:300.960000px;}
.ws61{word-spacing:344.862000px;}
.ws90{word-spacing:360.672000px;}
.ws78{word-spacing:377.405100px;}
.ws8b{word-spacing:389.028000px;}
.ws63{word-spacing:409.449600px;}
.ws6c{word-spacing:437.280000px;}
.ws6a{word-spacing:448.224000px;}
.ws65{word-spacing:462.528000px;}
.ws64{word-spacing:473.472000px;}
.ws6d{word-spacing:500.016000px;}
.ws66{word-spacing:505.056000px;}
.ws6b{word-spacing:506.304000px;}
.ws68{word-spacing:517.248000px;}
.ws67{word-spacing:526.944000px;}
.ws69{word-spacing:534.672000px;}
.ws50{word-spacing:1140.105000px;}
._4a{margin-left:-16.255200px;}
._2{margin-left:-12.403200px;}
._a{margin-left:-8.304000px;}
._4{margin-left:-7.121400px;}
._5{margin-left:-6.075000px;}
._8{margin-left:-4.837200px;}
._3{margin-left:-3.427200px;}
._7{margin-left:-2.342700px;}
._0{margin-left:-1.125000px;}
._1{width:1.080000px;}
._6{width:2.835000px;}
._9{width:4.104000px;}
._49{width:5.625600px;}
._b{width:81.909000px;}
._35{width:96.432000px;}
._37{width:108.096000px;}
._36{width:110.928000px;}
._2d{width:121.278000px;}
._4d{width:125.335200px;}
._2e{width:133.518000px;}
._31{width:135.507000px;}
._2c{width:145.146000px;}
._33{width:149.124000px;}
._34{width:151.674000px;}
._39{width:158.208000px;}
._3a{width:159.936000px;}
._30{width:163.404000px;}
._32{width:167.331000px;}
._38{width:180.192000px;}
._2f{width:192.423000px;}
._18{width:215.904000px;}
._19{width:245.136000px;}
._1a{width:247.344000px;}
._1b{width:278.715000px;}
._1c{width:280.755000px;}
._46{width:315.840000px;}
._c{width:325.941000px;}
._40{width:333.693000px;}
._3d{width:340.608000px;}
._1e{width:343.689000px;}
._3e{width:346.272000px;}
._43{width:347.424000px;}
._3c{width:349.392000px;}
._3b{width:375.696000px;}
._4c{width:394.077000px;}
._44{width:400.656000px;}
._10{width:427.104000px;}
._42{width:433.392000px;}
._e{width:441.600000px;}
._1f{width:445.641600px;}
._47{width:447.696000px;}
._12{width:459.840000px;}
._14{width:462.048000px;}
._4b{width:465.171000px;}
._45{width:470.784000px;}
._3f{width:472.566000px;}
._16{width:481.728000px;}
._24{width:491.376000px;}
._2b{width:496.800000px;}
._22{width:502.320000px;}
._23{width:505.296000px;}
._21{width:516.240000px;}
._29{width:517.248000px;}
._2a{width:538.128000px;}
._27{width:546.096000px;}
._28{width:549.072000px;}
._25{width:556.560000px;}
._26{width:560.016000px;}
._20{width:569.616000px;}
._41{width:571.056000px;}
._11{width:596.832000px;}
._f{width:610.656000px;}
._13{width:629.616000px;}
._15{width:631.776000px;}
._17{width:651.456000px;}
._1d{width:678.186000px;}
._48{width:931.095000px;}
._d{width:966.654000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(33,37,41);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:30.000000px;}
.fs2{font-size:36.000000px;}
.fsc{font-size:39.000000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fsd{font-size:66.000000px;}
.fs5{font-size:75.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:99.000000px;}
.y0{bottom:0.000000px;}
.y56{bottom:69.094500px;}
.y1{bottom:86.650950px;}
.y1ae{bottom:127.676850px;}
.y1e8{bottom:131.283450px;}
.ybd{bottom:137.700300px;}
.y8f{bottom:137.700450px;}
.y236{bottom:137.874600px;}
.y13d{bottom:140.923800px;}
.y2d{bottom:141.487050px;}
.y1e7{bottom:146.583450px;}
.y188{bottom:148.902900px;}
.y143{bottom:155.469750px;}
.ybc{bottom:155.698050px;}
.y8e{bottom:155.698200px;}
.y226{bottom:156.708450px;}
.ye9{bottom:157.956000px;}
.y13c{bottom:158.921550px;}
.y235{bottom:159.135600px;}
.y2c{bottom:159.484800px;}
.y1e6{bottom:161.883450px;}
.y1ad{bottom:163.672350px;}
.y30{bottom:165.407250px;}
.y165{bottom:170.234400px;}
.y225{bottom:172.008450px;}
.y142{bottom:173.467500px;}
.ybb{bottom:173.695800px;}
.y8d{bottom:173.695950px;}
.y234{bottom:175.637100px;}
.y13b{bottom:176.919300px;}
.ye8{bottom:177.084000px;}
.y1e5{bottom:177.183450px;}
.y2b{bottom:177.482550px;}
.y2f{bottom:178.909500px;}
.y1ac{bottom:181.670100px;}
.yfd{bottom:181.968450px;}
.y224{bottom:187.308450px;}
.y141{bottom:191.465250px;}
.yba{bottom:191.693550px;}
.y8c{bottom:191.693700px;}
.y233{bottom:192.138600px;}
.y2e{bottom:192.411750px;}
.y1e4{bottom:192.483450px;}
.y13a{bottom:194.917050px;}
.y2a{bottom:195.480300px;}
.ye7{bottom:198.576000px;}
.y1ab{bottom:199.667850px;}
.yfc{bottom:199.966200px;}
.y152{bottom:200.576550px;}
.y223{bottom:202.608450px;}
.y1e3{bottom:207.783450px;}
.y232{bottom:208.640100px;}
.y140{bottom:209.463000px;}
.yb9{bottom:209.691300px;}
.y8b{bottom:209.691450px;}
.y139{bottom:212.914800px;}
.y29{bottom:213.478050px;}
.y151{bottom:215.576550px;}
.y1aa{bottom:217.665600px;}
.y222{bottom:217.908450px;}
.yfb{bottom:217.963950px;}
.ye6{bottom:220.068000px;}
.y1e2{bottom:223.083450px;}
.y11f{bottom:227.648550px;}
.yb8{bottom:227.689050px;}
.y8a{bottom:227.689200px;}
.y150{bottom:230.576550px;}
.y138{bottom:230.912550px;}
.y28{bottom:231.475800px;}
.y221{bottom:233.208450px;}
.y1a9{bottom:235.663350px;}
.yfa{bottom:235.961700px;}
.y231{bottom:236.342100px;}
.y1e1{bottom:238.383450px;}
.ye5{bottom:241.560000px;}
.y13f{bottom:245.458500px;}
.y11e{bottom:245.646300px;}
.yb7{bottom:245.686800px;}
.y89{bottom:245.686950px;}
.y182{bottom:246.779100px;}
.y220{bottom:248.508450px;}
.y137{bottom:248.910300px;}
.y27{bottom:249.473550px;}
.y230{bottom:252.843600px;}
.y1a8{bottom:253.661100px;}
.y1e0{bottom:253.683450px;}
.yf9{bottom:253.959450px;}
.y55{bottom:257.130750px;}
.ye4{bottom:263.052000px;}
.y11d{bottom:263.644050px;}
.yb6{bottom:263.684550px;}
.y88{bottom:263.684700px;}
.y21f{bottom:263.808450px;}
.y136{bottom:266.908050px;}
.y26{bottom:267.471300px;}
.y1df{bottom:268.983450px;}
.y22f{bottom:269.345100px;}
.y1a7{bottom:271.658850px;}
.yf8{bottom:271.957200px;}
.y54{bottom:275.133750px;}
.y21e{bottom:279.108450px;}
.y1b5{bottom:281.682300px;}
.y87{bottom:281.682450px;}
.y1de{bottom:284.283450px;}
.ye3{bottom:284.544000px;}
.y187{bottom:284.658900px;}
.y135{bottom:284.905800px;}
.y22e{bottom:285.846600px;}
.y1a6{bottom:289.656600px;}
.y53{bottom:293.136750px;}
.y21d{bottom:294.408450px;}
.y15e{bottom:296.381400px;}
.y1dd{bottom:299.583450px;}
.y11c{bottom:299.639550px;}
.y186{bottom:299.658900px;}
.yb5{bottom:299.680050px;}
.y86{bottom:299.680200px;}
.y134{bottom:302.903550px;}
.y25{bottom:303.466800px;}
.yf7{bottom:304.954650px;}
.y1a5{bottom:307.654350px;}
.y21c{bottom:309.708450px;}
.ye2{bottom:312.414150px;}
.y22d{bottom:313.548600px;}
.y52{bottom:314.136000px;}
.y185{bottom:314.658900px;}
.y1dc{bottom:314.883450px;}
.y164{bottom:317.534400px;}
.y1b4{bottom:317.677800px;}
.y85{bottom:317.677950px;}
.y133{bottom:320.901300px;}
.yf6{bottom:323.710650px;}
.y21b{bottom:325.008450px;}
.y1a4{bottom:325.652100px;}
.y184{bottom:329.658900px;}
.y22c{bottom:330.050100px;}
.y1db{bottom:330.183450px;}
.y51{bottom:332.139000px;}
.y163{bottom:332.534400px;}
.y11b{bottom:335.635050px;}
.yb4{bottom:335.675550px;}
.y84{bottom:335.675700px;}
.y24{bottom:339.462300px;}
.y21a{bottom:340.308450px;}
.y1a3{bottom:343.649850px;}
.y183{bottom:344.658900px;}
.yf5{bottom:345.202650px;}
.y1da{bottom:345.483450px;}
.y22b{bottom:346.551600px;}
.y162{bottom:347.534400px;}
.y50{bottom:350.142000px;}
.yb3{bottom:353.673300px;}
.y83{bottom:353.673450px;}
.ye1{bottom:355.167300px;}
.y219{bottom:355.608450px;}
.y23{bottom:357.460050px;}
.yf4{bottom:360.202650px;}
.y1d9{bottom:360.783450px;}
.y1a2{bottom:361.647600px;}
.y161{bottom:362.534400px;}
.y22a{bottom:363.053100px;}
.y4f{bottom:368.145000px;}
.y218{bottom:370.908450px;}
.y11a{bottom:371.630550px;}
.ye0{bottom:371.668800px;}
.yb2{bottom:371.671050px;}
.y82{bottom:371.671200px;}
.y181{bottom:372.904200px;}
.yf3{bottom:375.202650px;}
.y22{bottom:375.457800px;}
.y1d8{bottom:376.083450px;}
.y160{bottom:377.534400px;}
.y1a1{bottom:379.645350px;}
.y4e{bottom:386.148000px;}
.y217{bottom:386.208450px;}
.y119{bottom:389.628300px;}
.yb1{bottom:389.668800px;}
.y81{bottom:389.668950px;}
.y1d7{bottom:391.383450px;}
.y15f{bottom:392.534400px;}
.y21{bottom:393.455550px;}
.yf2{bottom:396.694650px;}
.y1a0{bottom:397.643100px;}
.y216{bottom:401.508450px;}
.y4d{bottom:404.151000px;}
.y1d6{bottom:406.683450px;}
.y118{bottom:407.626050px;}
.ydf{bottom:407.664300px;}
.yb0{bottom:407.666550px;}
.y80{bottom:407.666700px;}
.y20{bottom:411.453300px;}
.yf1{bottom:411.694650px;}
.y180{bottom:415.989600px;}
.y215{bottom:416.808450px;}
.y1d5{bottom:421.983450px;}
.y4c{bottom:422.154000px;}
.y117{bottom:425.623800px;}
.yde{bottom:425.662050px;}
.yaf{bottom:425.664300px;}
.y7f{bottom:425.664450px;}
.y1f{bottom:429.451050px;}
.y214{bottom:432.108450px;}
.y17f{bottom:432.491100px;}
.y19f{bottom:433.638600px;}
.y15d{bottom:437.144550px;}
.y1d4{bottom:437.283450px;}
.yf0{bottom:439.564800px;}
.y4b{bottom:440.157000px;}
.y116{bottom:443.621550px;}
.ydd{bottom:443.659800px;}
.yae{bottom:443.662050px;}
.y7e{bottom:443.662200px;}
.y213{bottom:447.408450px;}
.y1e{bottom:447.448800px;}
.y1d3{bottom:452.583450px;}
.y4a{bottom:458.160000px;}
.y115{bottom:461.619300px;}
.ydc{bottom:461.657550px;}
.yad{bottom:461.659800px;}
.y7d{bottom:461.659950px;}
.y212{bottom:462.708450px;}
.y1d{bottom:465.446550px;}
.y1d2{bottom:467.883450px;}
.y17e{bottom:468.486600px;}
.y19e{bottom:469.634100px;}
.y49{bottom:476.163000px;}
.y211{bottom:478.008450px;}
.y114{bottom:479.617050px;}
.ydb{bottom:479.655300px;}
.yac{bottom:479.657550px;}
.y7c{bottom:479.657700px;}
.y15c{bottom:481.570350px;}
.yef{bottom:482.241600px;}
.y1d1{bottom:483.183450px;}
.y1c{bottom:483.444300px;}
.y17d{bottom:486.484350px;}
.y19d{bottom:487.631850px;}
.y210{bottom:493.308450px;}
.y48{bottom:494.166000px;}
.y113{bottom:497.614800px;}
.yda{bottom:497.653050px;}
.yab{bottom:497.655300px;}
.y7b{bottom:497.655450px;}
.y15b{bottom:498.071850px;}
.y1d0{bottom:498.483450px;}
.yee{bottom:498.743100px;}
.y1b{bottom:501.442050px;}
.y17c{bottom:504.482100px;}
.y19c{bottom:505.629600px;}
.y20f{bottom:508.608450px;}
.y47{bottom:512.169000px;}
.y1cf{bottom:513.783450px;}
.y112{bottom:515.612550px;}
.yd9{bottom:515.650800px;}
.y1b3{bottom:515.653050px;}
.y7a{bottom:515.653200px;}
.y1a{bottom:519.439800px;}
.y17b{bottom:522.479850px;}
.y19b{bottom:523.627350px;}
.y20e{bottom:523.908450px;}
.y1ce{bottom:529.083450px;}
.y46{bottom:530.172000px;}
.y111{bottom:533.610300px;}
.yd8{bottom:533.648550px;}
.yaa{bottom:533.650800px;}
.y79{bottom:533.650950px;}
.y15a{bottom:534.067350px;}
.yed{bottom:534.738600px;}
.y19{bottom:537.437550px;}
.y20d{bottom:539.208450px;}
.y17a{bottom:540.477600px;}
.y19a{bottom:541.625100px;}
.y1cd{bottom:544.383450px;}
.y45{bottom:548.175000px;}
.y110{bottom:551.608050px;}
.yd7{bottom:551.646300px;}
.y1b2{bottom:551.648550px;}
.y78{bottom:551.648700px;}
.y159{bottom:552.065100px;}
.yec{bottom:552.736350px;}
.y20c{bottom:554.508450px;}
.y18{bottom:555.435300px;}
.y1cc{bottom:559.683450px;}
.y44{bottom:566.178000px;}
.y10f{bottom:569.605800px;}
.yd6{bottom:569.644050px;}
.ya9{bottom:569.646300px;}
.y77{bottom:569.646450px;}
.y20b{bottom:569.808450px;}
.y158{bottom:570.062850px;}
.yeb{bottom:570.734100px;}
.y17{bottom:573.433050px;}
.y1cb{bottom:574.983450px;}
.y179{bottom:576.473100px;}
.y199{bottom:577.620600px;}
.y43{bottom:584.181000px;}
.y20a{bottom:585.108450px;}
.y10e{bottom:587.603550px;}
.yd5{bottom:587.641800px;}
.y1b1{bottom:587.644050px;}
.y76{bottom:587.644200px;}
.y157{bottom:588.060600px;}
.y1ca{bottom:590.283450px;}
.y16{bottom:591.430800px;}
.y198{bottom:596.745300px;}
.y209{bottom:600.408450px;}
.y42{bottom:602.184000px;}
.y1c9{bottom:605.583450px;}
.y10d{bottom:605.601300px;}
.yd4{bottom:605.639550px;}
.ya8{bottom:605.641800px;}
.y75{bottom:605.641950px;}
.y156{bottom:606.058350px;}
.y15{bottom:609.428550px;}
.y178{bottom:612.468600px;}
.y208{bottom:615.708450px;}
.y41{bottom:620.187000px;}
.y1c8{bottom:620.883450px;}
.y10c{bottom:623.599050px;}
.yd3{bottom:623.637300px;}
.ya7{bottom:623.639550px;}
.y74{bottom:623.639700px;}
.y14{bottom:627.426300px;}
.y177{bottom:630.466350px;}
.y207{bottom:631.008450px;}
.y132{bottom:635.140350px;}
.y1c7{bottom:636.183450px;}
.y40{bottom:638.190000px;}
.y10b{bottom:641.596800px;}
.yd2{bottom:641.635050px;}
.ya6{bottom:641.637300px;}
.y73{bottom:641.637450px;}
.y155{bottom:642.053850px;}
.y13{bottom:645.424050px;}
.y206{bottom:646.308450px;}
.y176{bottom:648.464100px;}
.y1c6{bottom:651.483450px;}
.y131{bottom:651.641850px;}
.y3f{bottom:656.193000px;}
.y10a{bottom:659.594550px;}
.yd1{bottom:659.632800px;}
.ya5{bottom:659.635050px;}
.y72{bottom:659.635200px;}
.y205{bottom:661.608450px;}
.y12{bottom:663.421800px;}
.y175{bottom:666.461850px;}
.y1c5{bottom:666.783450px;}
.y3e{bottom:674.196000px;}
.y204{bottom:676.908450px;}
.y109{bottom:677.592300px;}
.yd0{bottom:677.630550px;}
.ya4{bottom:677.632800px;}
.y11{bottom:681.419550px;}
.y1c4{bottom:682.083450px;}
.y174{bottom:684.459600px;}
.y130{bottom:688.773000px;}
.y3d{bottom:692.199000px;}
.y203{bottom:692.208450px;}
.y154{bottom:693.053850px;}
.ycf{bottom:695.628300px;}
.ya3{bottom:695.630550px;}
.y71{bottom:695.630700px;}
.y1c3{bottom:697.383450px;}
.y173{bottom:702.457350px;}
.y192{bottom:705.112350px;}
.y202{bottom:707.508450px;}
.y153{bottom:708.053850px;}
.y3c{bottom:710.202000px;}
.y12f{bottom:710.265000px;}
.y1c2{bottom:712.683450px;}
.y108{bottom:713.587800px;}
.yce{bottom:713.626050px;}
.ya2{bottom:713.628300px;}
.y10{bottom:717.415050px;}
.y172{bottom:720.455100px;}
.y201{bottom:722.808450px;}
.y197{bottom:723.489300px;}
.y1c1{bottom:727.983450px;}
.y3b{bottom:728.205000px;}
.ycd{bottom:731.623800px;}
.ya1{bottom:731.626050px;}
.y70{bottom:731.626200px;}
.y12e{bottom:731.757000px;}
.y200{bottom:738.108450px;}
.y171{bottom:738.452850px;}
.y196{bottom:738.489300px;}
.y1c0{bottom:743.283450px;}
.y3a{bottom:746.208000px;}
.y107{bottom:749.583300px;}
.ycc{bottom:749.621550px;}
.ya0{bottom:749.623800px;}
.y6f{bottom:749.623950px;}
.y12d{bottom:753.249000px;}
.y1ff{bottom:753.408450px;}
.yf{bottom:753.410550px;}
.y195{bottom:753.489300px;}
.y1bf{bottom:758.583450px;}
.y39{bottom:764.211000px;}
.ycb{bottom:767.619300px;}
.y1b0{bottom:767.621550px;}
.y6e{bottom:767.621700px;}
.y194{bottom:768.489300px;}
.y1fe{bottom:768.708450px;}
.y1be{bottom:773.883450px;}
.y170{bottom:774.448350px;}
.y12c{bottom:774.741000px;}
.y38{bottom:782.214000px;}
.y193{bottom:783.489300px;}
.y1fd{bottom:784.008450px;}
.y14f{bottom:785.270850px;}
.y106{bottom:785.574300px;}
.yca{bottom:785.617050px;}
.y9f{bottom:785.619300px;}
.y6d{bottom:785.619450px;}
.y1bd{bottom:789.183450px;}
.y12b{bottom:796.233000px;}
.y1fc{bottom:799.308450px;}
.y37{bottom:800.217000px;}
.y14e{bottom:803.268600px;}
.y105{bottom:803.577300px;}
.yc9{bottom:803.614800px;}
.y1af{bottom:803.617050px;}
.y6c{bottom:803.617200px;}
.y1bc{bottom:804.483450px;}
.y1fb{bottom:814.608450px;}
.y12a{bottom:818.133000px;}
.y36{bottom:818.220000px;}
.y14d{bottom:819.770100px;}
.y1bb{bottom:819.783450px;}
.y191{bottom:819.976350px;}
.y104{bottom:821.580300px;}
.y9e{bottom:821.614800px;}
.y6b{bottom:821.614950px;}
.ye{bottom:827.536500px;}
.y16f{bottom:829.576200px;}
.y1fa{bottom:829.908450px;}
.y1ba{bottom:835.083450px;}
.y35{bottom:836.223000px;}
.y129{bottom:839.217000px;}
.y103{bottom:839.583300px;}
.yc8{bottom:839.610300px;}
.y9d{bottom:839.612550px;}
.y6a{bottom:839.612700px;}
.y13e{bottom:841.108800px;}
.y1f9{bottom:845.208450px;}
.yd{bottom:847.036500px;}
.y1b9{bottom:850.383450px;}
.y14c{bottom:852.770850px;}
.y34{bottom:854.226000px;}
.y9c{bottom:857.610300px;}
.y69{bottom:857.610450px;}
.y1f8{bottom:860.508450px;}
.y128{bottom:860.709000px;}
.y1b8{bottom:865.683450px;}
.yc{bottom:866.536500px;}
.y14b{bottom:871.898850px;}
.y33{bottom:872.229000px;}
.y102{bottom:875.585550px;}
.yc7{bottom:875.605800px;}
.y9b{bottom:875.608050px;}
.y68{bottom:875.608200px;}
.y1f7{bottom:875.808450px;}
.y1b7{bottom:880.983450px;}
.y127{bottom:882.201000px;}
.y32{bottom:890.232000px;}
.y1f6{bottom:891.108450px;}
.y14a{bottom:893.390850px;}
.y101{bottom:893.583300px;}
.yc6{bottom:893.603550px;}
.y9a{bottom:893.605800px;}
.y67{bottom:893.605950px;}
.y229{bottom:896.062500px;}
.y1b6{bottom:896.283300px;}
.y126{bottom:903.693000px;}
.y1f5{bottom:906.408300px;}
.y31{bottom:908.235000px;}
.yc5{bottom:911.601300px;}
.y99{bottom:911.603550px;}
.y66{bottom:911.603700px;}
.y228{bottom:912.561000px;}
.y149{bottom:914.882850px;}
.y1f4{bottom:921.708300px;}
.y125{bottom:925.185000px;}
.y100{bottom:929.577300px;}
.yc4{bottom:929.599050px;}
.y98{bottom:929.601300px;}
.y65{bottom:929.601450px;}
.y18a{bottom:934.296900px;}
.y148{bottom:936.374850px;}
.y1f3{bottom:937.008300px;}
.y167{bottom:937.354200px;}
.y16e{bottom:940.132200px;}
.y190{bottom:943.612350px;}
.y124{bottom:946.677000px;}
.yff{bottom:947.580300px;}
.yc3{bottom:947.596800px;}
.y97{bottom:947.599050px;}
.y64{bottom:947.599200px;}
.y1f1{bottom:952.308300px;}
.y1f2{bottom:952.308450px;}
.y16d{bottom:955.132200px;}
.y227{bottom:955.567950px;}
.yb{bottom:958.036500px;}
.y18f{bottom:958.612350px;}
.y147{bottom:964.247400px;}
.yfe{bottom:965.583300px;}
.yc2{bottom:965.594550px;}
.y96{bottom:965.596800px;}
.y63{bottom:965.596950px;}
.yea{bottom:967.093050px;}
.y1f0{bottom:967.608300px;}
.y123{bottom:968.169000px;}
.y16c{bottom:970.132200px;}
.y18e{bottom:973.612350px;}
.y1ef{bottom:982.908300px;}
.yc1{bottom:983.592300px;}
.y95{bottom:983.594550px;}
.y62{bottom:983.594700px;}
.ya{bottom:985.036500px;}
.y16b{bottom:985.132200px;}
.y18d{bottom:988.612350px;}
.y3{bottom:990.240300px;}
.y122{bottom:996.039150px;}
.y1ee{bottom:998.208300px;}
.y145{bottom:999.042150px;}
.y16a{bottom:1000.132200px;}
.yc0{bottom:1001.590050px;}
.y94{bottom:1001.592300px;}
.y61{bottom:1001.592450px;}
.y18c{bottom:1003.612350px;}
.y144{bottom:1006.539150px;}
.y9{bottom:1012.036500px;}
.y1ed{bottom:1013.508300px;}
.y146{bottom:1014.036150px;}
.y169{bottom:1015.132200px;}
.y18b{bottom:1018.612350px;}
.y2{bottom:1018.740300px;}
.ybf{bottom:1019.587800px;}
.y93{bottom:1019.590050px;}
.y60{bottom:1019.590200px;}
.y1ec{bottom:1028.808300px;}
.y168{bottom:1030.132200px;}
.y92{bottom:1037.587800px;}
.y5f{bottom:1037.587950px;}
.y8{bottom:1039.036500px;}
.y121{bottom:1039.084050px;}
.y1eb{bottom:1044.108300px;}
.ybe{bottom:1055.583300px;}
.y91{bottom:1055.585550px;}
.y5e{bottom:1055.585700px;}
.y120{bottom:1057.081800px;}
.y1ea{bottom:1059.408300px;}
.y166{bottom:1060.117500px;}
.y189{bottom:1061.482500px;}
.y7{bottom:1066.036500px;}
.y90{bottom:1073.583300px;}
.y5d{bottom:1073.583450px;}
.y1e9{bottom:1074.708300px;}
.y5c{bottom:1127.712300px;}
.y59{bottom:1129.183050px;}
.y5b{bottom:1138.963800px;}
.y6{bottom:1143.262800px;}
.y58{bottom:1145.683050px;}
.y5a{bottom:1150.215300px;}
.y5{bottom:1153.759050px;}
.y4{bottom:1164.255300px;}
.y57{bottom:1167.004050px;}
.hf{height:27.498047px;}
.h4{height:31.500000px;}
.hc{height:31.910156px;}
.h14{height:33.328125px;}
.h11{height:34.945312px;}
.hd{height:36.144000px;}
.h10{height:37.129395px;}
.h16{height:39.696000px;}
.h12{height:39.936000px;}
.he{height:40.662000px;}
.h13{height:41.976562px;}
.h17{height:42.177000px;}
.hb{height:42.432000px;}
.h18{height:42.589805px;}
.ha{height:43.350000px;}
.h7{height:47.139000px;}
.h9{height:47.424000px;}
.h19{height:48.336000px;}
.h8{height:48.450000px;}
.h2{height:63.252000px;}
.h6{height:63.750000px;}
.h15{height:67.117395px;}
.h5{height:67.687500px;}
.h3{height:74.547000px;}
.h1{height:1233.000000px;}
.h0{height:1233.070500px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.xb{left:50.365200px;}
.xa{left:85.050000px;}
.x4{left:93.525000px;}
.x20{left:99.525000px;}
.x18{left:108.486000px;}
.x2c{left:114.706950px;}
.x2a{left:117.817050px;}
.x19{left:119.119050px;}
.x23{left:122.104050px;}
.x5{left:123.300000px;}
.x21{left:134.265000px;}
.x22{left:136.841100px;}
.x1b{left:147.304950px;}
.x1a{left:151.859700px;}
.x55{left:174.822750px;}
.x6d{left:176.459100px;}
.x6{left:181.839000px;}
.x3{left:190.506450px;}
.x1d{left:195.568500px;}
.x64{left:206.939100px;}
.x29{left:210.193800px;}
.x6c{left:217.014600px;}
.x1f{left:229.363350px;}
.xf{left:234.343500px;}
.x54{left:238.661850px;}
.x38{left:254.464800px;}
.x67{left:256.280700px;}
.x1c{left:258.364950px;}
.x69{left:260.730150px;}
.x5e{left:264.211050px;}
.x24{left:267.747300px;}
.x59{left:269.005200px;}
.x10{left:280.389750px;}
.x41{left:295.803300px;}
.x2b{left:305.350050px;}
.x1e{left:308.877750px;}
.x13{left:317.577750px;}
.x66{left:323.382000px;}
.x68{left:324.873750px;}
.x62{left:333.953250px;}
.x5f{left:341.308350px;}
.x17{left:343.787700px;}
.x60{left:346.561350px;}
.x61{left:347.644950px;}
.x6b{left:358.545750px;}
.x14{left:367.125000px;}
.x16{left:370.691700px;}
.x39{left:377.272200px;}
.x3a{left:378.364200px;}
.x4b{left:380.641950px;}
.x30{left:381.916800px;}
.x2d{left:384.376800px;}
.x42{left:385.565400px;}
.x2e{left:386.836800px;}
.x15{left:390.922500px;}
.x2f{left:393.400800px;}
.x43{left:399.785400px;}
.x4c{left:404.161950px;}
.x3b{left:415.564200px;}
.x63{left:429.064500px;}
.x25{left:441.504300px;}
.xc{left:449.437200px;}
.x26{left:452.686050px;}
.x58{left:463.119750px;}
.x5b{left:474.045750px;}
.x46{left:477.737400px;}
.x44{left:478.757400px;}
.x45{left:479.837400px;}
.x4e{left:481.465950px;}
.x5c{left:486.093600px;}
.x57{left:487.840050px;}
.x4f{left:488.857950px;}
.x4d{left:490.237950px;}
.x51{left:500.929050px;}
.x5d{left:502.971000px;}
.x47{left:506.645400px;}
.x56{left:509.631300px;}
.x65{left:521.896800px;}
.x5a{left:525.578550px;}
.x3e{left:527.740200px;}
.x31{left:529.384800px;}
.x32{left:530.452800px;}
.x3d{left:532.660200px;}
.x3c{left:534.844200px;}
.x2{left:561.438450px;}
.x3f{left:562.732200px;}
.x33{left:575.860800px;}
.xe{left:577.194750px;}
.x11{left:584.667750px;}
.x9{left:587.660400px;}
.x7{left:600.423150px;}
.x53{left:602.449050px;}
.x50{left:603.685950px;}
.x48{left:604.793400px;}
.x49{left:608.981400px;}
.x52{left:612.025050px;}
.xd{left:630.576900px;}
.x27{left:632.741550px;}
.x28{left:641.016300px;}
.x4a{left:643.997400px;}
.x34{left:660.976800px;}
.x35{left:662.980800px;}
.x36{left:664.912800px;}
.x40{left:679.936200px;}
.x12{left:682.733250px;}
.x37{left:694.456800px;}
.x6a{left:695.965050px;}
.x8{left:711.348150px;}
.x1{left:763.741350px;}
@media print{
.v2{vertical-align:-4.853333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.656000pt;}
.ls10{letter-spacing:-2.560000pt;}
.lsa{letter-spacing:-1.013333pt;}
.ls12{letter-spacing:-0.810667pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls2a{letter-spacing:-0.498667pt;}
.lsb{letter-spacing:-0.456000pt;}
.ls13{letter-spacing:-0.453333pt;}
.ls2b{letter-spacing:-0.408000pt;}
.ls3{letter-spacing:-0.405333pt;}
.ls1{letter-spacing:-0.400000pt;}
.ls29{letter-spacing:-0.362667pt;}
.lsc{letter-spacing:-0.304000pt;}
.ls27{letter-spacing:-0.272000pt;}
.ls2{letter-spacing:-0.253333pt;}
.ls28{letter-spacing:-0.226667pt;}
.ls4{letter-spacing:-0.202667pt;}
.ls6{letter-spacing:-0.152000pt;}
.ls2c{letter-spacing:-0.136000pt;}
.ls5{letter-spacing:-0.101333pt;}
.ls2d{letter-spacing:-0.090667pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.050667pt;}
.ls36{letter-spacing:0.068000pt;}
.ls22{letter-spacing:0.090667pt;}
.ls11{letter-spacing:0.101333pt;}
.ls30{letter-spacing:0.136000pt;}
.ls14{letter-spacing:0.172267pt;}
.ls17{letter-spacing:0.177333pt;}
.ls31{letter-spacing:0.181333pt;}
.ls37{letter-spacing:0.204000pt;}
.ls1e{letter-spacing:0.226667pt;}
.ls24{letter-spacing:0.317333pt;}
.ls18{letter-spacing:0.354667pt;}
.ls23{letter-spacing:0.362667pt;}
.ls19{letter-spacing:0.405333pt;}
.ls1f{letter-spacing:0.453333pt;}
.ls1a{letter-spacing:0.456000pt;}
.ls32{letter-spacing:0.498667pt;}
.ls15{letter-spacing:0.506667pt;}
.ls16{letter-spacing:0.608000pt;}
.ls33{letter-spacing:0.725333pt;}
.ls35{letter-spacing:0.816000pt;}
.ls34{letter-spacing:0.861333pt;}
.ls38{letter-spacing:0.906667pt;}
.ls39{letter-spacing:1.314667pt;}
.ls1c{letter-spacing:1.496000pt;}
.ls25{letter-spacing:1.586667pt;}
.ls1d{letter-spacing:1.722667pt;}
.ls3a{letter-spacing:1.904000pt;}
.ls2e{letter-spacing:2.629333pt;}
.ls21{letter-spacing:2.788000pt;}
.ls2f{letter-spacing:3.037333pt;}
.ls26{letter-spacing:3.173333pt;}
.ls20{letter-spacing:3.218667pt;}
.ls1b{letter-spacing:3.672000pt;}
.lse{letter-spacing:398.421333pt;}
.lsf{letter-spacing:408.149333pt;}
.lsd{letter-spacing:497.578667pt;}
.ws43{word-spacing:-10.741333pt;}
.ws0{word-spacing:-10.234667pt;}
.wsb3{word-spacing:-9.837333pt;}
.wsd5{word-spacing:-9.746667pt;}
.ws8d{word-spacing:-9.728000pt;}
.wsd6{word-spacing:-9.678667pt;}
.wsb5{word-spacing:-9.474667pt;}
.ws57{word-spacing:-9.221333pt;}
.ws89{word-spacing:-9.157333pt;}
.wsb4{word-spacing:-9.112000pt;}
.ws88{word-spacing:-8.208000pt;}
.ws44{word-spacing:-7.765333pt;}
.ws6e{word-spacing:-7.168000pt;}
.wsce{word-spacing:-3.581333pt;}
.wsc9{word-spacing:-3.400000pt;}
.wscf{word-spacing:-3.037333pt;}
.wsca{word-spacing:-2.901333pt;}
.ws8{word-spacing:-2.685333pt;}
.ws34{word-spacing:-2.634667pt;}
.ws32{word-spacing:-2.584000pt;}
.wsc2{word-spacing:-2.538667pt;}
.ws46{word-spacing:-2.482667pt;}
.wscd{word-spacing:-2.402667pt;}
.ws96{word-spacing:-2.381333pt;}
.ws1d{word-spacing:-2.330667pt;}
.wsd3{word-spacing:-2.312000pt;}
.ws1e{word-spacing:-2.280000pt;}
.ws11{word-spacing:-2.229333pt;}
.ws8e{word-spacing:-2.178667pt;}
.wsc3{word-spacing:-2.176000pt;}
.ws1a{word-spacing:-2.128000pt;}
.wsdc{word-spacing:-2.085333pt;}
.ws75{word-spacing:-2.077333pt;}
.wsd4{word-spacing:-2.040000pt;}
.wsaf{word-spacing:-1.976000pt;}
.ws99{word-spacing:-1.925333pt;}
.wse0{word-spacing:-1.904000pt;}
.ws76{word-spacing:-1.874667pt;}
.wsa0{word-spacing:-1.824000pt;}
.ws3b{word-spacing:-1.773333pt;}
.wsa4{word-spacing:-1.722667pt;}
.wsc8{word-spacing:-1.677333pt;}
.ws31{word-spacing:-1.672000pt;}
.ws2f{word-spacing:-1.621333pt;}
.ws2c{word-spacing:-1.520000pt;}
.wse1{word-spacing:-1.496000pt;}
.ws1b{word-spacing:-1.469333pt;}
.ws5b{word-spacing:-1.450667pt;}
.ws1c{word-spacing:-1.418667pt;}
.ws25{word-spacing:-1.368000pt;}
.ws33{word-spacing:-1.317333pt;}
.ws48{word-spacing:-1.266667pt;}
.wsdb{word-spacing:-1.224000pt;}
.wsae{word-spacing:-1.216000pt;}
.ws97{word-spacing:-1.165333pt;}
.ws3f{word-spacing:-1.114667pt;}
.ws3c{word-spacing:-1.064000pt;}
.ws56{word-spacing:-1.013333pt;}
.ws20{word-spacing:-0.962667pt;}
.ws15{word-spacing:-0.912000pt;}
.wse5{word-spacing:-0.906667pt;}
.ws7{word-spacing:-0.861333pt;}
.ws5c{word-spacing:-0.816000pt;}
.ws22{word-spacing:-0.810667pt;}
.wse8{word-spacing:-0.770667pt;}
.ws42{word-spacing:-0.760000pt;}
.wsd0{word-spacing:-0.725333pt;}
.ws2b{word-spacing:-0.709333pt;}
.wsc5{word-spacing:-0.680000pt;}
.wsb{word-spacing:-0.658667pt;}
.ws2a{word-spacing:-0.608000pt;}
.ws19{word-spacing:-0.557333pt;}
.ws12{word-spacing:-0.506667pt;}
.wsc1{word-spacing:-0.498667pt;}
.ws1f{word-spacing:-0.456000pt;}
.wsbf{word-spacing:-0.408000pt;}
.ws8f{word-spacing:-0.405333pt;}
.ws5e{word-spacing:-0.354667pt;}
.ws14{word-spacing:-0.304000pt;}
.wsc4{word-spacing:-0.272000pt;}
.ws4c{word-spacing:-0.253333pt;}
.wsbd{word-spacing:-0.226667pt;}
.wsd{word-spacing:-0.202667pt;}
.ws13{word-spacing:-0.152000pt;}
.ws16{word-spacing:-0.101333pt;}
.ws18{word-spacing:-0.090667pt;}
.ws30{word-spacing:-0.050667pt;}
.ws1{word-spacing:-0.037333pt;}
.ws2{word-spacing:0.000000pt;}
.ws93{word-spacing:0.050667pt;}
.ws21{word-spacing:0.101333pt;}
.wsd1{word-spacing:0.136000pt;}
.ws47{word-spacing:0.202667pt;}
.ws4b{word-spacing:0.253333pt;}
.ws24{word-spacing:0.304000pt;}
.ws37{word-spacing:0.354667pt;}
.wsa2{word-spacing:0.405333pt;}
.ws70{word-spacing:0.456000pt;}
.ws71{word-spacing:0.506667pt;}
.ws4e{word-spacing:0.557333pt;}
.ws94{word-spacing:0.608000pt;}
.ws9f{word-spacing:0.658667pt;}
.ws3a{word-spacing:0.709333pt;}
.wse9{word-spacing:0.725333pt;}
.ws4d{word-spacing:0.760000pt;}
.wsd8{word-spacing:0.770667pt;}
.ws6f{word-spacing:0.810667pt;}
.ws58{word-spacing:0.861333pt;}
.wsd7{word-spacing:0.906667pt;}
.ws53{word-spacing:0.912000pt;}
.ws41{word-spacing:0.962667pt;}
.ws59{word-spacing:0.997333pt;}
.wsa5{word-spacing:1.013333pt;}
.ws26{word-spacing:1.064000pt;}
.ws5a{word-spacing:1.088000pt;}
.ws2e{word-spacing:1.114667pt;}
.wse6{word-spacing:1.133333pt;}
.wsa1{word-spacing:1.165333pt;}
.wsa8{word-spacing:1.216000pt;}
.wsbe{word-spacing:1.224000pt;}
.ws95{word-spacing:1.266667pt;}
.wse7{word-spacing:1.269333pt;}
.ws35{word-spacing:1.317333pt;}
.wsaa{word-spacing:1.368000pt;}
.ws5{word-spacing:1.418667pt;}
.wsba{word-spacing:1.450667pt;}
.ws29{word-spacing:1.469333pt;}
.ws9b{word-spacing:1.520000pt;}
.wsde{word-spacing:1.541333pt;}
.ws5f{word-spacing:1.570667pt;}
.ws73{word-spacing:1.621333pt;}
.wsb0{word-spacing:1.672000pt;}
.ws60{word-spacing:1.722667pt;}
.ws5d{word-spacing:1.768000pt;}
.ws77{word-spacing:1.773333pt;}
.wsdd{word-spacing:1.813333pt;}
.ws49{word-spacing:1.824000pt;}
.wsc{word-spacing:1.874667pt;}
.ws55{word-spacing:1.925333pt;}
.ws9a{word-spacing:1.976000pt;}
.ws54{word-spacing:2.026667pt;}
.wse3{word-spacing:2.040000pt;}
.ws74{word-spacing:2.077333pt;}
.wsb1{word-spacing:2.128000pt;}
.ws4f{word-spacing:2.229333pt;}
.ws28{word-spacing:2.280000pt;}
.ws23{word-spacing:2.330667pt;}
.wsec{word-spacing:2.357333pt;}
.ws9e{word-spacing:2.381333pt;}
.wsad{word-spacing:2.432000pt;}
.wsc0{word-spacing:2.448000pt;}
.ws45{word-spacing:2.533333pt;}
.ws3d{word-spacing:2.584000pt;}
.ws17{word-spacing:2.634667pt;}
.ws9d{word-spacing:2.685333pt;}
.wsf{word-spacing:2.736000pt;}
.ws2d{word-spacing:2.786667pt;}
.wsa6{word-spacing:2.888000pt;}
.wsea{word-spacing:2.901333pt;}
.ws36{word-spacing:2.938667pt;}
.ws3e{word-spacing:2.989333pt;}
.ws40{word-spacing:3.090667pt;}
.wsd2{word-spacing:3.128000pt;}
.ws10{word-spacing:3.141333pt;}
.ws9c{word-spacing:3.192000pt;}
.wse4{word-spacing:3.218667pt;}
.ws9{word-spacing:3.242667pt;}
.wsac{word-spacing:3.344000pt;}
.wsa{word-spacing:3.394667pt;}
.wsab{word-spacing:3.445333pt;}
.wsbc{word-spacing:3.490667pt;}
.wsdf{word-spacing:3.536000pt;}
.ws4{word-spacing:3.597333pt;}
.ws52{word-spacing:3.648000pt;}
.ws92{word-spacing:3.698667pt;}
.wsc7{word-spacing:3.762667pt;}
.ws39{word-spacing:3.800000pt;}
.wsa7{word-spacing:3.952000pt;}
.wseb{word-spacing:3.989333pt;}
.ws6{word-spacing:4.002667pt;}
.ws3{word-spacing:4.053333pt;}
.wsbb{word-spacing:4.080000pt;}
.ws4a{word-spacing:4.104000pt;}
.wsb9{word-spacing:4.125333pt;}
.wsa3{word-spacing:4.256000pt;}
.ws72{word-spacing:4.306667pt;}
.wsc6{word-spacing:4.352000pt;}
.ws27{word-spacing:4.560000pt;}
.ws8a{word-spacing:4.610667pt;}
.ws98{word-spacing:4.661333pt;}
.wse2{word-spacing:4.760000pt;}
.wse{word-spacing:4.762667pt;}
.wsb8{word-spacing:4.805333pt;}
.wsda{word-spacing:4.850667pt;}
.wsa9{word-spacing:4.914667pt;}
.wscc{word-spacing:5.122667pt;}
.wsb2{word-spacing:5.320000pt;}
.ws38{word-spacing:5.370667pt;}
.wsd9{word-spacing:5.621333pt;}
.wscb{word-spacing:5.984000pt;}
.wsb7{word-spacing:6.301333pt;}
.wsb6{word-spacing:7.344000pt;}
.ws7b{word-spacing:65.066667pt;}
.ws7d{word-spacing:71.893333pt;}
.ws7f{word-spacing:73.685333pt;}
.ws81{word-spacing:89.386667pt;}
.ws79{word-spacing:95.018667pt;}
.ws80{word-spacing:100.309333pt;}
.ws83{word-spacing:103.850667pt;}
.ws7e{word-spacing:108.586667pt;}
.ws82{word-spacing:113.194667pt;}
.ws84{word-spacing:116.437333pt;}
.ws85{word-spacing:122.794667pt;}
.ws7a{word-spacing:127.061333pt;}
.ws7c{word-spacing:130.901333pt;}
.ws91{word-spacing:146.834667pt;}
.ws8c{word-spacing:147.774933pt;}
.ws86{word-spacing:151.424000pt;}
.ws51{word-spacing:209.152000pt;}
.ws62{word-spacing:242.216000pt;}
.ws87{word-spacing:267.520000pt;}
.ws61{word-spacing:306.544000pt;}
.ws90{word-spacing:320.597333pt;}
.ws78{word-spacing:335.471200pt;}
.ws8b{word-spacing:345.802667pt;}
.ws63{word-spacing:363.955200pt;}
.ws6c{word-spacing:388.693333pt;}
.ws6a{word-spacing:398.421333pt;}
.ws65{word-spacing:411.136000pt;}
.ws64{word-spacing:420.864000pt;}
.ws6d{word-spacing:444.458667pt;}
.ws66{word-spacing:448.938667pt;}
.ws6b{word-spacing:450.048000pt;}
.ws68{word-spacing:459.776000pt;}
.ws67{word-spacing:468.394667pt;}
.ws69{word-spacing:475.264000pt;}
.ws50{word-spacing:1013.426667pt;}
._4a{margin-left:-14.449067pt;}
._2{margin-left:-11.025067pt;}
._a{margin-left:-7.381333pt;}
._4{margin-left:-6.330133pt;}
._5{margin-left:-5.400000pt;}
._8{margin-left:-4.299733pt;}
._3{margin-left:-3.046400pt;}
._7{margin-left:-2.082400pt;}
._0{margin-left:-1.000000pt;}
._1{width:0.960000pt;}
._6{width:2.520000pt;}
._9{width:3.648000pt;}
._49{width:5.000533pt;}
._b{width:72.808000pt;}
._35{width:85.717333pt;}
._37{width:96.085333pt;}
._36{width:98.602667pt;}
._2d{width:107.802667pt;}
._4d{width:111.409067pt;}
._2e{width:118.682667pt;}
._31{width:120.450667pt;}
._2c{width:129.018667pt;}
._33{width:132.554667pt;}
._34{width:134.821333pt;}
._39{width:140.629333pt;}
._3a{width:142.165333pt;}
._30{width:145.248000pt;}
._32{width:148.738667pt;}
._38{width:160.170667pt;}
._2f{width:171.042667pt;}
._18{width:191.914667pt;}
._19{width:217.898667pt;}
._1a{width:219.861333pt;}
._1b{width:247.746667pt;}
._1c{width:249.560000pt;}
._46{width:280.746667pt;}
._c{width:289.725333pt;}
._40{width:296.616000pt;}
._3d{width:302.762667pt;}
._1e{width:305.501333pt;}
._3e{width:307.797333pt;}
._43{width:308.821333pt;}
._3c{width:310.570667pt;}
._3b{width:333.952000pt;}
._4c{width:350.290667pt;}
._44{width:356.138667pt;}
._10{width:379.648000pt;}
._42{width:385.237333pt;}
._e{width:392.533333pt;}
._1f{width:396.125867pt;}
._47{width:397.952000pt;}
._12{width:408.746667pt;}
._14{width:410.709333pt;}
._4b{width:413.485333pt;}
._45{width:418.474667pt;}
._3f{width:420.058667pt;}
._16{width:428.202667pt;}
._24{width:436.778667pt;}
._2b{width:441.600000pt;}
._22{width:446.506667pt;}
._23{width:449.152000pt;}
._21{width:458.880000pt;}
._29{width:459.776000pt;}
._2a{width:478.336000pt;}
._27{width:485.418667pt;}
._28{width:488.064000pt;}
._25{width:494.720000pt;}
._26{width:497.792000pt;}
._20{width:506.325333pt;}
._41{width:507.605333pt;}
._11{width:530.517333pt;}
._f{width:542.805333pt;}
._13{width:559.658667pt;}
._15{width:561.578667pt;}
._17{width:579.072000pt;}
._1d{width:602.832000pt;}
._48{width:827.640000pt;}
._d{width:859.248000pt;}
.fsb{font-size:26.666667pt;}
.fs2{font-size:32.000000pt;}
.fsc{font-size:34.666667pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fsd{font-size:58.666667pt;}
.fs5{font-size:66.666667pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:88.000000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:61.417333pt;}
.y1{bottom:77.023067pt;}
.y1ae{bottom:113.490533pt;}
.y1e8{bottom:116.696400pt;}
.ybd{bottom:122.400267pt;}
.y8f{bottom:122.400400pt;}
.y236{bottom:122.555200pt;}
.y13d{bottom:125.265600pt;}
.y2d{bottom:125.766267pt;}
.y1e7{bottom:130.296400pt;}
.y188{bottom:132.358133pt;}
.y143{bottom:138.195333pt;}
.ybc{bottom:138.398267pt;}
.y8e{bottom:138.398400pt;}
.y226{bottom:139.296400pt;}
.ye9{bottom:140.405333pt;}
.y13c{bottom:141.263600pt;}
.y235{bottom:141.453867pt;}
.y2c{bottom:141.764267pt;}
.y1e6{bottom:143.896400pt;}
.y1ad{bottom:145.486533pt;}
.y30{bottom:147.028667pt;}
.y165{bottom:151.319467pt;}
.y225{bottom:152.896400pt;}
.y142{bottom:154.193333pt;}
.ybb{bottom:154.396267pt;}
.y8d{bottom:154.396400pt;}
.y234{bottom:156.121867pt;}
.y13b{bottom:157.261600pt;}
.ye8{bottom:157.408000pt;}
.y1e5{bottom:157.496400pt;}
.y2b{bottom:157.762267pt;}
.y2f{bottom:159.030667pt;}
.y1ac{bottom:161.484533pt;}
.yfd{bottom:161.749733pt;}
.y224{bottom:166.496400pt;}
.y141{bottom:170.191333pt;}
.yba{bottom:170.394267pt;}
.y8c{bottom:170.394400pt;}
.y233{bottom:170.789867pt;}
.y2e{bottom:171.032667pt;}
.y1e4{bottom:171.096400pt;}
.y13a{bottom:173.259600pt;}
.y2a{bottom:173.760267pt;}
.ye7{bottom:176.512000pt;}
.y1ab{bottom:177.482533pt;}
.yfc{bottom:177.747733pt;}
.y152{bottom:178.290267pt;}
.y223{bottom:180.096400pt;}
.y1e3{bottom:184.696400pt;}
.y232{bottom:185.457867pt;}
.y140{bottom:186.189333pt;}
.yb9{bottom:186.392267pt;}
.y8b{bottom:186.392400pt;}
.y139{bottom:189.257600pt;}
.y29{bottom:189.758267pt;}
.y151{bottom:191.623600pt;}
.y1aa{bottom:193.480533pt;}
.y222{bottom:193.696400pt;}
.yfb{bottom:193.745733pt;}
.ye6{bottom:195.616000pt;}
.y1e2{bottom:198.296400pt;}
.y11f{bottom:202.354267pt;}
.yb8{bottom:202.390267pt;}
.y8a{bottom:202.390400pt;}
.y150{bottom:204.956933pt;}
.y138{bottom:205.255600pt;}
.y28{bottom:205.756267pt;}
.y221{bottom:207.296400pt;}
.y1a9{bottom:209.478533pt;}
.yfa{bottom:209.743733pt;}
.y231{bottom:210.081867pt;}
.y1e1{bottom:211.896400pt;}
.ye5{bottom:214.720000pt;}
.y13f{bottom:218.185333pt;}
.y11e{bottom:218.352267pt;}
.yb7{bottom:218.388267pt;}
.y89{bottom:218.388400pt;}
.y182{bottom:219.359200pt;}
.y220{bottom:220.896400pt;}
.y137{bottom:221.253600pt;}
.y27{bottom:221.754267pt;}
.y230{bottom:224.749867pt;}
.y1a8{bottom:225.476533pt;}
.y1e0{bottom:225.496400pt;}
.yf9{bottom:225.741733pt;}
.y55{bottom:228.560667pt;}
.ye4{bottom:233.824000pt;}
.y11d{bottom:234.350267pt;}
.yb6{bottom:234.386267pt;}
.y88{bottom:234.386400pt;}
.y21f{bottom:234.496400pt;}
.y136{bottom:237.251600pt;}
.y26{bottom:237.752267pt;}
.y1df{bottom:239.096400pt;}
.y22f{bottom:239.417867pt;}
.y1a7{bottom:241.474533pt;}
.yf8{bottom:241.739733pt;}
.y54{bottom:244.563333pt;}
.y21e{bottom:248.096400pt;}
.y1b5{bottom:250.384267pt;}
.y87{bottom:250.384400pt;}
.y1de{bottom:252.696400pt;}
.ye3{bottom:252.928000pt;}
.y187{bottom:253.030133pt;}
.y135{bottom:253.249600pt;}
.y22e{bottom:254.085867pt;}
.y1a6{bottom:257.472533pt;}
.y53{bottom:260.566000pt;}
.y21d{bottom:261.696400pt;}
.y15e{bottom:263.450133pt;}
.y1dd{bottom:266.296400pt;}
.y11c{bottom:266.346267pt;}
.y186{bottom:266.363467pt;}
.yb5{bottom:266.382267pt;}
.y86{bottom:266.382400pt;}
.y134{bottom:269.247600pt;}
.y25{bottom:269.748267pt;}
.yf7{bottom:271.070800pt;}
.y1a5{bottom:273.470533pt;}
.y21c{bottom:275.296400pt;}
.ye2{bottom:277.701467pt;}
.y22d{bottom:278.709867pt;}
.y52{bottom:279.232000pt;}
.y185{bottom:279.696800pt;}
.y1dc{bottom:279.896400pt;}
.y164{bottom:282.252800pt;}
.y1b4{bottom:282.380267pt;}
.y85{bottom:282.380400pt;}
.y133{bottom:285.245600pt;}
.yf6{bottom:287.742800pt;}
.y21b{bottom:288.896400pt;}
.y1a4{bottom:289.468533pt;}
.y184{bottom:293.030133pt;}
.y22c{bottom:293.377867pt;}
.y1db{bottom:293.496400pt;}
.y51{bottom:295.234667pt;}
.y163{bottom:295.586133pt;}
.y11b{bottom:298.342267pt;}
.yb4{bottom:298.378267pt;}
.y84{bottom:298.378400pt;}
.y24{bottom:301.744267pt;}
.y21a{bottom:302.496400pt;}
.y1a3{bottom:305.466533pt;}
.y183{bottom:306.363467pt;}
.yf5{bottom:306.846800pt;}
.y1da{bottom:307.096400pt;}
.y22b{bottom:308.045867pt;}
.y162{bottom:308.919467pt;}
.y50{bottom:311.237333pt;}
.yb3{bottom:314.376267pt;}
.y83{bottom:314.376400pt;}
.ye1{bottom:315.704267pt;}
.y219{bottom:316.096400pt;}
.y23{bottom:317.742267pt;}
.yf4{bottom:320.180133pt;}
.y1d9{bottom:320.696400pt;}
.y1a2{bottom:321.464533pt;}
.y161{bottom:322.252800pt;}
.y22a{bottom:322.713867pt;}
.y4f{bottom:327.240000pt;}
.y218{bottom:329.696400pt;}
.y11a{bottom:330.338267pt;}
.ye0{bottom:330.372267pt;}
.yb2{bottom:330.374267pt;}
.y82{bottom:330.374400pt;}
.y181{bottom:331.470400pt;}
.yf3{bottom:333.513467pt;}
.y22{bottom:333.740267pt;}
.y1d8{bottom:334.296400pt;}
.y160{bottom:335.586133pt;}
.y1a1{bottom:337.462533pt;}
.y4e{bottom:343.242667pt;}
.y217{bottom:343.296400pt;}
.y119{bottom:346.336267pt;}
.yb1{bottom:346.372267pt;}
.y81{bottom:346.372400pt;}
.y1d7{bottom:347.896400pt;}
.y15f{bottom:348.919467pt;}
.y21{bottom:349.738267pt;}
.yf2{bottom:352.617467pt;}
.y1a0{bottom:353.460533pt;}
.y216{bottom:356.896400pt;}
.y4d{bottom:359.245333pt;}
.y1d6{bottom:361.496400pt;}
.y118{bottom:362.334267pt;}
.ydf{bottom:362.368267pt;}
.yb0{bottom:362.370267pt;}
.y80{bottom:362.370400pt;}
.y20{bottom:365.736267pt;}
.yf1{bottom:365.950800pt;}
.y180{bottom:369.768533pt;}
.y215{bottom:370.496400pt;}
.y1d5{bottom:375.096400pt;}
.y4c{bottom:375.248000pt;}
.y117{bottom:378.332267pt;}
.yde{bottom:378.366267pt;}
.yaf{bottom:378.368267pt;}
.y7f{bottom:378.368400pt;}
.y1f{bottom:381.734267pt;}
.y214{bottom:384.096400pt;}
.y17f{bottom:384.436533pt;}
.y19f{bottom:385.456533pt;}
.y15d{bottom:388.572933pt;}
.y1d4{bottom:388.696400pt;}
.yf0{bottom:390.724267pt;}
.y4b{bottom:391.250667pt;}
.y116{bottom:394.330267pt;}
.ydd{bottom:394.364267pt;}
.yae{bottom:394.366267pt;}
.y7e{bottom:394.366400pt;}
.y213{bottom:397.696400pt;}
.y1e{bottom:397.732267pt;}
.y1d3{bottom:402.296400pt;}
.y4a{bottom:407.253333pt;}
.y115{bottom:410.328267pt;}
.ydc{bottom:410.362267pt;}
.yad{bottom:410.364267pt;}
.y7d{bottom:410.364400pt;}
.y212{bottom:411.296400pt;}
.y1d{bottom:413.730267pt;}
.y1d2{bottom:415.896400pt;}
.y17e{bottom:416.432533pt;}
.y19e{bottom:417.452533pt;}
.y49{bottom:423.256000pt;}
.y211{bottom:424.896400pt;}
.y114{bottom:426.326267pt;}
.ydb{bottom:426.360267pt;}
.yac{bottom:426.362267pt;}
.y7c{bottom:426.362400pt;}
.y15c{bottom:428.062533pt;}
.yef{bottom:428.659200pt;}
.y1d1{bottom:429.496400pt;}
.y1c{bottom:429.728267pt;}
.y17d{bottom:432.430533pt;}
.y19d{bottom:433.450533pt;}
.y210{bottom:438.496400pt;}
.y48{bottom:439.258667pt;}
.y113{bottom:442.324267pt;}
.yda{bottom:442.358267pt;}
.yab{bottom:442.360267pt;}
.y7b{bottom:442.360400pt;}
.y15b{bottom:442.730533pt;}
.y1d0{bottom:443.096400pt;}
.yee{bottom:443.327200pt;}
.y1b{bottom:445.726267pt;}
.y17c{bottom:448.428533pt;}
.y19c{bottom:449.448533pt;}
.y20f{bottom:452.096400pt;}
.y47{bottom:455.261333pt;}
.y1cf{bottom:456.696400pt;}
.y112{bottom:458.322267pt;}
.yd9{bottom:458.356267pt;}
.y1b3{bottom:458.358267pt;}
.y7a{bottom:458.358400pt;}
.y1a{bottom:461.724267pt;}
.y17b{bottom:464.426533pt;}
.y19b{bottom:465.446533pt;}
.y20e{bottom:465.696400pt;}
.y1ce{bottom:470.296400pt;}
.y46{bottom:471.264000pt;}
.y111{bottom:474.320267pt;}
.yd8{bottom:474.354267pt;}
.yaa{bottom:474.356267pt;}
.y79{bottom:474.356400pt;}
.y15a{bottom:474.726533pt;}
.yed{bottom:475.323200pt;}
.y19{bottom:477.722267pt;}
.y20d{bottom:479.296400pt;}
.y17a{bottom:480.424533pt;}
.y19a{bottom:481.444533pt;}
.y1cd{bottom:483.896400pt;}
.y45{bottom:487.266667pt;}
.y110{bottom:490.318267pt;}
.yd7{bottom:490.352267pt;}
.y1b2{bottom:490.354267pt;}
.y78{bottom:490.354400pt;}
.y159{bottom:490.724533pt;}
.yec{bottom:491.321200pt;}
.y20c{bottom:492.896400pt;}
.y18{bottom:493.720267pt;}
.y1cc{bottom:497.496400pt;}
.y44{bottom:503.269333pt;}
.y10f{bottom:506.316267pt;}
.yd6{bottom:506.350267pt;}
.ya9{bottom:506.352267pt;}
.y77{bottom:506.352400pt;}
.y20b{bottom:506.496400pt;}
.y158{bottom:506.722533pt;}
.yeb{bottom:507.319200pt;}
.y17{bottom:509.718267pt;}
.y1cb{bottom:511.096400pt;}
.y179{bottom:512.420533pt;}
.y199{bottom:513.440533pt;}
.y43{bottom:519.272000pt;}
.y20a{bottom:520.096400pt;}
.y10e{bottom:522.314267pt;}
.yd5{bottom:522.348267pt;}
.y1b1{bottom:522.350267pt;}
.y76{bottom:522.350400pt;}
.y157{bottom:522.720533pt;}
.y1ca{bottom:524.696400pt;}
.y16{bottom:525.716267pt;}
.y198{bottom:530.440267pt;}
.y209{bottom:533.696400pt;}
.y42{bottom:535.274667pt;}
.y1c9{bottom:538.296400pt;}
.y10d{bottom:538.312267pt;}
.yd4{bottom:538.346267pt;}
.ya8{bottom:538.348267pt;}
.y75{bottom:538.348400pt;}
.y156{bottom:538.718533pt;}
.y15{bottom:541.714267pt;}
.y178{bottom:544.416533pt;}
.y208{bottom:547.296400pt;}
.y41{bottom:551.277333pt;}
.y1c8{bottom:551.896400pt;}
.y10c{bottom:554.310267pt;}
.yd3{bottom:554.344267pt;}
.ya7{bottom:554.346267pt;}
.y74{bottom:554.346400pt;}
.y14{bottom:557.712267pt;}
.y177{bottom:560.414533pt;}
.y207{bottom:560.896400pt;}
.y132{bottom:564.569200pt;}
.y1c7{bottom:565.496400pt;}
.y40{bottom:567.280000pt;}
.y10b{bottom:570.308267pt;}
.yd2{bottom:570.342267pt;}
.ya6{bottom:570.344267pt;}
.y73{bottom:570.344400pt;}
.y155{bottom:570.714533pt;}
.y13{bottom:573.710267pt;}
.y206{bottom:574.496400pt;}
.y176{bottom:576.412533pt;}
.y1c6{bottom:579.096400pt;}
.y131{bottom:579.237200pt;}
.y3f{bottom:583.282667pt;}
.y10a{bottom:586.306267pt;}
.yd1{bottom:586.340267pt;}
.ya5{bottom:586.342267pt;}
.y72{bottom:586.342400pt;}
.y205{bottom:588.096400pt;}
.y12{bottom:589.708267pt;}
.y175{bottom:592.410533pt;}
.y1c5{bottom:592.696400pt;}
.y3e{bottom:599.285333pt;}
.y204{bottom:601.696400pt;}
.y109{bottom:602.304267pt;}
.yd0{bottom:602.338267pt;}
.ya4{bottom:602.340267pt;}
.y11{bottom:605.706267pt;}
.y1c4{bottom:606.296400pt;}
.y174{bottom:608.408533pt;}
.y130{bottom:612.242667pt;}
.y3d{bottom:615.288000pt;}
.y203{bottom:615.296400pt;}
.y154{bottom:616.047867pt;}
.ycf{bottom:618.336267pt;}
.ya3{bottom:618.338267pt;}
.y71{bottom:618.338400pt;}
.y1c3{bottom:619.896400pt;}
.y173{bottom:624.406533pt;}
.y192{bottom:626.766533pt;}
.y202{bottom:628.896400pt;}
.y153{bottom:629.381200pt;}
.y3c{bottom:631.290667pt;}
.y12f{bottom:631.346667pt;}
.y1c2{bottom:633.496400pt;}
.y108{bottom:634.300267pt;}
.yce{bottom:634.334267pt;}
.ya2{bottom:634.336267pt;}
.y10{bottom:637.702267pt;}
.y172{bottom:640.404533pt;}
.y201{bottom:642.496400pt;}
.y197{bottom:643.101600pt;}
.y1c1{bottom:647.096400pt;}
.y3b{bottom:647.293333pt;}
.ycd{bottom:650.332267pt;}
.ya1{bottom:650.334267pt;}
.y70{bottom:650.334400pt;}
.y12e{bottom:650.450667pt;}
.y200{bottom:656.096400pt;}
.y171{bottom:656.402533pt;}
.y196{bottom:656.434933pt;}
.y1c0{bottom:660.696400pt;}
.y3a{bottom:663.296000pt;}
.y107{bottom:666.296267pt;}
.ycc{bottom:666.330267pt;}
.ya0{bottom:666.332267pt;}
.y6f{bottom:666.332400pt;}
.y12d{bottom:669.554667pt;}
.y1ff{bottom:669.696400pt;}
.yf{bottom:669.698267pt;}
.y195{bottom:669.768267pt;}
.y1bf{bottom:674.296400pt;}
.y39{bottom:679.298667pt;}
.ycb{bottom:682.328267pt;}
.y1b0{bottom:682.330267pt;}
.y6e{bottom:682.330400pt;}
.y194{bottom:683.101600pt;}
.y1fe{bottom:683.296400pt;}
.y1be{bottom:687.896400pt;}
.y170{bottom:688.398533pt;}
.y12c{bottom:688.658667pt;}
.y38{bottom:695.301333pt;}
.y193{bottom:696.434933pt;}
.y1fd{bottom:696.896400pt;}
.y14f{bottom:698.018533pt;}
.y106{bottom:698.288267pt;}
.yca{bottom:698.326267pt;}
.y9f{bottom:698.328267pt;}
.y6d{bottom:698.328400pt;}
.y1bd{bottom:701.496400pt;}
.y12b{bottom:707.762667pt;}
.y1fc{bottom:710.496400pt;}
.y37{bottom:711.304000pt;}
.y14e{bottom:714.016533pt;}
.y105{bottom:714.290933pt;}
.yc9{bottom:714.324267pt;}
.y1af{bottom:714.326267pt;}
.y6c{bottom:714.326400pt;}
.y1bc{bottom:715.096400pt;}
.y1fb{bottom:724.096400pt;}
.y12a{bottom:727.229333pt;}
.y36{bottom:727.306667pt;}
.y14d{bottom:728.684533pt;}
.y1bb{bottom:728.696400pt;}
.y191{bottom:728.867867pt;}
.y104{bottom:730.293600pt;}
.y9e{bottom:730.324267pt;}
.y6b{bottom:730.324400pt;}
.ye{bottom:735.588000pt;}
.y16f{bottom:737.401067pt;}
.y1fa{bottom:737.696400pt;}
.y1ba{bottom:742.296400pt;}
.y35{bottom:743.309333pt;}
.y129{bottom:745.970667pt;}
.y103{bottom:746.296267pt;}
.yc8{bottom:746.320267pt;}
.y9d{bottom:746.322267pt;}
.y6a{bottom:746.322400pt;}
.y13e{bottom:747.652267pt;}
.y1f9{bottom:751.296400pt;}
.yd{bottom:752.921333pt;}
.y1b9{bottom:755.896400pt;}
.y14c{bottom:758.018533pt;}
.y34{bottom:759.312000pt;}
.y9c{bottom:762.320267pt;}
.y69{bottom:762.320400pt;}
.y1f8{bottom:764.896400pt;}
.y128{bottom:765.074667pt;}
.y1b8{bottom:769.496400pt;}
.yc{bottom:770.254667pt;}
.y14b{bottom:775.021200pt;}
.y33{bottom:775.314667pt;}
.y102{bottom:778.298267pt;}
.yc7{bottom:778.316267pt;}
.y9b{bottom:778.318267pt;}
.y68{bottom:778.318400pt;}
.y1f7{bottom:778.496400pt;}
.y1b7{bottom:783.096400pt;}
.y127{bottom:784.178667pt;}
.y32{bottom:791.317333pt;}
.y1f6{bottom:792.096400pt;}
.y14a{bottom:794.125200pt;}
.y101{bottom:794.296267pt;}
.yc6{bottom:794.314267pt;}
.y9a{bottom:794.316267pt;}
.y67{bottom:794.316400pt;}
.y229{bottom:796.500000pt;}
.y1b6{bottom:796.696267pt;}
.y126{bottom:803.282667pt;}
.y1f5{bottom:805.696267pt;}
.y31{bottom:807.320000pt;}
.yc5{bottom:810.312267pt;}
.y99{bottom:810.314267pt;}
.y66{bottom:810.314400pt;}
.y228{bottom:811.165333pt;}
.y149{bottom:813.229200pt;}
.y1f4{bottom:819.296267pt;}
.y125{bottom:822.386667pt;}
.y100{bottom:826.290933pt;}
.yc4{bottom:826.310267pt;}
.y98{bottom:826.312267pt;}
.y65{bottom:826.312400pt;}
.y18a{bottom:830.486133pt;}
.y148{bottom:832.333200pt;}
.y1f3{bottom:832.896267pt;}
.y167{bottom:833.203733pt;}
.y16e{bottom:835.673067pt;}
.y190{bottom:838.766533pt;}
.y124{bottom:841.490667pt;}
.yff{bottom:842.293600pt;}
.yc3{bottom:842.308267pt;}
.y97{bottom:842.310267pt;}
.y64{bottom:842.310400pt;}
.y1f1{bottom:846.496267pt;}
.y1f2{bottom:846.496400pt;}
.y16d{bottom:849.006400pt;}
.y227{bottom:849.393733pt;}
.yb{bottom:851.588000pt;}
.y18f{bottom:852.099867pt;}
.y147{bottom:857.108800pt;}
.yfe{bottom:858.296267pt;}
.yc2{bottom:858.306267pt;}
.y96{bottom:858.308267pt;}
.y63{bottom:858.308400pt;}
.yea{bottom:859.638267pt;}
.y1f0{bottom:860.096267pt;}
.y123{bottom:860.594667pt;}
.y16c{bottom:862.339733pt;}
.y18e{bottom:865.433200pt;}
.y1ef{bottom:873.696267pt;}
.yc1{bottom:874.304267pt;}
.y95{bottom:874.306267pt;}
.y62{bottom:874.306400pt;}
.ya{bottom:875.588000pt;}
.y16b{bottom:875.673067pt;}
.y18d{bottom:878.766533pt;}
.y3{bottom:880.213600pt;}
.y122{bottom:885.368133pt;}
.y1ee{bottom:887.296267pt;}
.y145{bottom:888.037467pt;}
.y16a{bottom:889.006400pt;}
.yc0{bottom:890.302267pt;}
.y94{bottom:890.304267pt;}
.y61{bottom:890.304400pt;}
.y18c{bottom:892.099867pt;}
.y144{bottom:894.701467pt;}
.y9{bottom:899.588000pt;}
.y1ed{bottom:900.896267pt;}
.y146{bottom:901.365467pt;}
.y169{bottom:902.339733pt;}
.y18b{bottom:905.433200pt;}
.y2{bottom:905.546933pt;}
.ybf{bottom:906.300267pt;}
.y93{bottom:906.302267pt;}
.y60{bottom:906.302400pt;}
.y1ec{bottom:914.496267pt;}
.y168{bottom:915.673067pt;}
.y92{bottom:922.300267pt;}
.y5f{bottom:922.300400pt;}
.y8{bottom:923.588000pt;}
.y121{bottom:923.630267pt;}
.y1eb{bottom:928.096267pt;}
.ybe{bottom:938.296267pt;}
.y91{bottom:938.298267pt;}
.y5e{bottom:938.298400pt;}
.y120{bottom:939.628267pt;}
.y1ea{bottom:941.696267pt;}
.y166{bottom:942.326667pt;}
.y189{bottom:943.540000pt;}
.y7{bottom:947.588000pt;}
.y90{bottom:954.296267pt;}
.y5d{bottom:954.296400pt;}
.y1e9{bottom:955.296267pt;}
.y5c{bottom:1002.410933pt;}
.y59{bottom:1003.718267pt;}
.y5b{bottom:1012.412267pt;}
.y6{bottom:1016.233600pt;}
.y58{bottom:1018.384933pt;}
.y5a{bottom:1022.413600pt;}
.y5{bottom:1025.563600pt;}
.y4{bottom:1034.893600pt;}
.y57{bottom:1037.336933pt;}
.hf{height:24.442708pt;}
.h4{height:28.000000pt;}
.hc{height:28.364583pt;}
.h14{height:29.625000pt;}
.h11{height:31.062500pt;}
.hd{height:32.128000pt;}
.h10{height:33.003906pt;}
.h16{height:35.285333pt;}
.h12{height:35.498667pt;}
.he{height:36.144000pt;}
.h13{height:37.312500pt;}
.h17{height:37.490667pt;}
.hb{height:37.717333pt;}
.h18{height:37.857604pt;}
.ha{height:38.533333pt;}
.h7{height:41.901333pt;}
.h9{height:42.154667pt;}
.h19{height:42.965333pt;}
.h8{height:43.066667pt;}
.h2{height:56.224000pt;}
.h6{height:56.666667pt;}
.h15{height:59.659906pt;}
.h5{height:60.166667pt;}
.h3{height:66.264000pt;}
.h1{height:1096.000000pt;}
.h0{height:1096.062667pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.xb{left:44.769067pt;}
.xa{left:75.600000pt;}
.x4{left:83.133333pt;}
.x20{left:88.466667pt;}
.x18{left:96.432000pt;}
.x2c{left:101.961733pt;}
.x2a{left:104.726267pt;}
.x19{left:105.883600pt;}
.x23{left:108.536933pt;}
.x5{left:109.600000pt;}
.x21{left:119.346667pt;}
.x22{left:121.636533pt;}
.x1b{left:130.937733pt;}
.x1a{left:134.986400pt;}
.x55{left:155.398000pt;}
.x6d{left:156.852533pt;}
.x6{left:161.634667pt;}
.x3{left:169.339067pt;}
.x1d{left:173.838667pt;}
.x64{left:183.945867pt;}
.x29{left:186.838933pt;}
.x6c{left:192.901867pt;}
.x1f{left:203.878533pt;}
.xf{left:208.305333pt;}
.x54{left:212.143867pt;}
.x38{left:226.190933pt;}
.x67{left:227.805067pt;}
.x1c{left:229.657733pt;}
.x69{left:231.760133pt;}
.x5e{left:234.854267pt;}
.x24{left:237.997600pt;}
.x59{left:239.115733pt;}
.x10{left:249.235333pt;}
.x41{left:262.936267pt;}
.x2b{left:271.422267pt;}
.x1e{left:274.558000pt;}
.x13{left:282.291333pt;}
.x66{left:287.450667pt;}
.x68{left:288.776667pt;}
.x62{left:296.847333pt;}
.x5f{left:303.385200pt;}
.x17{left:305.589067pt;}
.x60{left:308.054533pt;}
.x61{left:309.017733pt;}
.x6b{left:318.707333pt;}
.x14{left:326.333333pt;}
.x16{left:329.503733pt;}
.x39{left:335.353067pt;}
.x3a{left:336.323733pt;}
.x4b{left:338.348400pt;}
.x30{left:339.481600pt;}
.x2d{left:341.668267pt;}
.x42{left:342.724800pt;}
.x2e{left:343.854933pt;}
.x15{left:347.486667pt;}
.x2f{left:349.689600pt;}
.x43{left:355.364800pt;}
.x4c{left:359.255067pt;}
.x3b{left:369.390400pt;}
.x63{left:381.390667pt;}
.x25{left:392.448267pt;}
.xc{left:399.499733pt;}
.x26{left:402.387600pt;}
.x58{left:411.662000pt;}
.x5b{left:421.374000pt;}
.x46{left:424.655467pt;}
.x44{left:425.562133pt;}
.x45{left:426.522133pt;}
.x4e{left:427.969733pt;}
.x5c{left:432.083200pt;}
.x57{left:433.635600pt;}
.x4f{left:434.540400pt;}
.x4d{left:435.767067pt;}
.x51{left:445.270267pt;}
.x5d{left:447.085333pt;}
.x47{left:450.351467pt;}
.x56{left:453.005600pt;}
.x65{left:463.908267pt;}
.x5a{left:467.180933pt;}
.x3e{left:469.102400pt;}
.x31{left:470.564267pt;}
.x32{left:471.513600pt;}
.x3d{left:473.475733pt;}
.x3c{left:475.417067pt;}
.x2{left:499.056400pt;}
.x3f{left:500.206400pt;}
.x33{left:511.876267pt;}
.xe{left:513.062000pt;}
.x11{left:519.704667pt;}
.x9{left:522.364800pt;}
.x7{left:533.709467pt;}
.x53{left:535.510267pt;}
.x50{left:536.609733pt;}
.x48{left:537.594133pt;}
.x49{left:541.316800pt;}
.x52{left:544.022267pt;}
.xd{left:560.512800pt;}
.x27{left:562.436933pt;}
.x28{left:569.792267pt;}
.x4a{left:572.442133pt;}
.x34{left:587.534933pt;}
.x35{left:589.316267pt;}
.x36{left:591.033600pt;}
.x40{left:604.387733pt;}
.x12{left:606.874000pt;}
.x37{left:617.294933pt;}
.x6a{left:618.635600pt;}
.x8{left:632.309467pt;}
.x1{left:678.881200pt;}
}




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