
    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_32f26dcbade1cd4e9453ba04.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_a171cd685d871724748f3829.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.686000;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_cd16cff67632b339b8e65156.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_290e23b4118ca6854dfce83a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_82d6bee689227290831c4d20.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_542efc9c67965404a4988dc5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_2bfda1f58eb25244db409b2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_d73dd0527b497838b8f15880.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.991000;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_79d95dd467232dcc57280cd5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.769531;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_ae9ca0c02285e509e960beca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977000;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_2447832ad5a581aa2fa86f76.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.947000;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_833337ab812966d978e4c438.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714000;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_af05f831e770fae1e20bdfdb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_49ade5851bd760aa4ad60489.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.733887;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_833337ab812966d978e4c438.woff2')format("woff");}.fff{font-family:fff;line-height:0.714000;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_1f223816921c314aac970d90.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.713867;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_05cd2071ec8b244bcba10c8f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.733887;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_4379aa94a9cf466e8efdf69e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.854000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.me{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.135082,-0.210363,0.210363,0.135082,0,0);-ms-transform:matrix(0.135082,-0.210363,0.210363,0.135082,0,0);-webkit-transform:matrix(0.135082,-0.210363,0.210363,0.135082,0,0);}
.m3{transform:matrix(0.152990,-0.197722,0.197722,0.152990,0,0);-ms-transform:matrix(0.152990,-0.197722,0.197722,0.152990,0,0);-webkit-transform:matrix(0.152990,-0.197722,0.197722,0.152990,0,0);}
.m9{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m6{transform:matrix(0.188560,-0.164150,0.164150,0.188560,0,0);-ms-transform:matrix(0.188560,-0.164150,0.164150,0.188560,0,0);-webkit-transform:matrix(0.188560,-0.164150,0.164150,0.188560,0,0);}
.m4{transform:matrix(0.200162,0.149783,-0.149783,0.200162,0,0);-ms-transform:matrix(0.200162,0.149783,-0.149783,0.200162,0,0);-webkit-transform:matrix(0.200162,0.149783,-0.149783,0.200162,0,0);}
.mc{transform:matrix(0.240402,0.068608,-0.068608,0.240402,0,0);-ms-transform:matrix(0.240402,0.068608,-0.068608,0.240402,0,0);-webkit-transform:matrix(0.240402,0.068608,-0.068608,0.240402,0,0);}
.ma{transform:matrix(0.246830,-0.039683,0.039683,0.246830,0,0);-ms-transform:matrix(0.246830,-0.039683,0.039683,0.246830,0,0);-webkit-transform:matrix(0.246830,-0.039683,0.039683,0.246830,0,0);}
.m7{transform:matrix(0.247527,-0.035077,0.035077,0.247527,0,0);-ms-transform:matrix(0.247527,-0.035077,0.035077,0.247527,0,0);-webkit-transform:matrix(0.247527,-0.035077,0.035077,0.247527,0,0);}
.m5{transform:matrix(0.248678,0.025676,-0.025676,0.248678,0,0);-ms-transform:matrix(0.248678,0.025676,-0.025676,0.248678,0,0);-webkit-transform:matrix(0.248678,0.025676,-0.025676,0.248678,0,0);}
.m2{transform:matrix(0.249470,-0.016265,0.016265,0.249470,0,0);-ms-transform:matrix(0.249470,-0.016265,0.016265,0.249470,0,0);-webkit-transform:matrix(0.249470,-0.016265,0.016265,0.249470,0,0);}
.md{transform:matrix(0.249513,0.015595,-0.015595,0.249513,0,0);-ms-transform:matrix(0.249513,0.015595,-0.015595,0.249513,0,0);-webkit-transform:matrix(0.249513,0.015595,-0.015595,0.249513,0,0);}
.m8{transform:matrix(0.249672,0.012801,-0.012801,0.249672,0,0);-ms-transform:matrix(0.249672,0.012801,-0.012801,0.249672,0,0);-webkit-transform:matrix(0.249672,0.012801,-0.012801,0.249672,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-26.028000px;}
.v5{vertical-align:-21.690000px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.676551px;}
.v1{vertical-align:26.028000px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000440px;}
.ls17{letter-spacing:0.001114px;}
.ls9{letter-spacing:0.006440px;}
.ls1{letter-spacing:2.984915px;}
.ls15{letter-spacing:2.987700px;}
.ls16{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.990915px;}
.ls13{letter-spacing:3.615160px;}
.lsd{letter-spacing:14.681299px;}
.lse{letter-spacing:14.681347px;}
.ls11{letter-spacing:14.687347px;}
.lsf{letter-spacing:15.331200px;}
.ls10{letter-spacing:17.666915px;}
.ls12{letter-spacing:17.672915px;}
.ls1e{letter-spacing:18.967288px;}
.ls6{letter-spacing:19.187347px;}
.ls7{letter-spacing:19.501200px;}
.ls1b{letter-spacing:19.717288px;}
.ls1c{letter-spacing:20.882227px;}
.ls2{letter-spacing:20.924915px;}
.ls20{letter-spacing:20.995288px;}
.ls1f{letter-spacing:21.619288px;}
.ls1a{letter-spacing:21.901288px;}
.ls19{letter-spacing:22.058227px;}
.ls5{letter-spacing:22.172915px;}
.ls1d{letter-spacing:22.963288px;}
.ls8{letter-spacing:23.378915px;}
.ls18{letter-spacing:23.804227px;}
.lsb{letter-spacing:24.095347px;}
.lsa{letter-spacing:27.080915px;}
.ls4{letter-spacing:27.524074px;}
.lsc{letter-spacing:29.336915px;}
.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;}
}
.wsa4{word-spacing:-26.479777px;}
.ws99{word-spacing:-24.515868px;}
.ws38{word-spacing:-17.932800px;}
.wsee{word-spacing:-14.943900px;}
.ws62{word-spacing:-11.955150px;}
.ws9a{word-spacing:-11.657050px;}
.ws66{word-spacing:-10.608877px;}
.ws67{word-spacing:-9.550377px;}
.ws90{word-spacing:-4.303872px;}
.ws91{word-spacing:-4.232141px;}
.wsb0{word-spacing:-4.088678px;}
.wsaf{word-spacing:-4.065053px;}
.ws39{word-spacing:-4.033862px;}
.ws3a{word-spacing:-4.016947px;}
.wsb8{word-spacing:-3.945216px;}
.wse3{word-spacing:-3.801754px;}
.ws92{word-spacing:-3.658291px;}
.wsbe{word-spacing:-3.586560px;}
.wsaa{word-spacing:-3.514829px;}
.wsa{word-spacing:-3.371366px;}
.ws9e{word-spacing:-3.299635px;}
.wsa9{word-spacing:-3.270730px;}
.ws9d{word-spacing:-3.227904px;}
.wsad{word-spacing:-3.156173px;}
.wsf7{word-spacing:-3.084442px;}
.wsf1{word-spacing:-3.032861px;}
.wsf2{word-spacing:-3.012710px;}
.ws9{word-spacing:-2.940979px;}
.wsab{word-spacing:-2.869248px;}
.wsb7{word-spacing:-2.797517px;}
.wsb1{word-spacing:-2.725786px;}
.wsec{word-spacing:-2.654054px;}
.ws97{word-spacing:-2.582323px;}
.ws42{word-spacing:-2.510592px;}
.wsb{word-spacing:-2.367130px;}
.wsd7{word-spacing:-2.295398px;}
.wsf0{word-spacing:-2.223667px;}
.ws87{word-spacing:-2.151936px;}
.ws32{word-spacing:-2.080205px;}
.ws31{word-spacing:-2.008474px;}
.wsd5{word-spacing:-1.936742px;}
.ws8c{word-spacing:-1.793280px;}
.wsc{word-spacing:-1.721549px;}
.ws13{word-spacing:-1.649818px;}
.wsd8{word-spacing:-1.578086px;}
.wsc2{word-spacing:-1.506355px;}
.ws77{word-spacing:-1.434624px;}
.ws72{word-spacing:-1.362893px;}
.wsf3{word-spacing:-1.291162px;}
.ws8d{word-spacing:-1.219430px;}
.wsc4{word-spacing:-1.147699px;}
.ws84{word-spacing:-1.075968px;}
.ws4e{word-spacing:-1.004237px;}
.ws65{word-spacing:-0.932506px;}
.wsa0{word-spacing:-0.860774px;}
.ws12{word-spacing:-0.789043px;}
.ws86{word-spacing:-0.717312px;}
.ws36{word-spacing:-0.645581px;}
.wsd{word-spacing:-0.573850px;}
.ws64{word-spacing:-0.502118px;}
.ws24{word-spacing:-0.430387px;}
.wsbc{word-spacing:-0.358656px;}
.ws54{word-spacing:-0.286925px;}
.wsa3{word-spacing:-0.215194px;}
.ws56{word-spacing:-0.071731px;}
.wscf{word-spacing:-0.059776px;}
.wsa6{word-spacing:-0.052960px;}
.wsa5{word-spacing:-0.032578px;}
.ws4f{word-spacing:-0.008726px;}
.wsa7{word-spacing:-0.006632px;}
.ws9b{word-spacing:-0.000632px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.071731px;}
.ws34{word-spacing:0.143462px;}
.ws41{word-spacing:0.215194px;}
.ws8a{word-spacing:0.286925px;}
.wse1{word-spacing:0.358656px;}
.ws98{word-spacing:0.430387px;}
.ws7f{word-spacing:0.502118px;}
.wsd6{word-spacing:0.573850px;}
.ws17{word-spacing:0.645581px;}
.ws89{word-spacing:0.647712px;}
.wsdf{word-spacing:0.717312px;}
.wsba{word-spacing:0.789043px;}
.ws14{word-spacing:0.860774px;}
.wsde{word-spacing:0.932506px;}
.wse4{word-spacing:1.004237px;}
.wse6{word-spacing:1.075961px;}
.wseb{word-spacing:1.075968px;}
.wsb9{word-spacing:1.147699px;}
.ws58{word-spacing:1.219430px;}
.ws57{word-spacing:1.244861px;}
.wsc3{word-spacing:1.291162px;}
.wsdb{word-spacing:1.315063px;}
.ws26{word-spacing:1.362893px;}
.ws88{word-spacing:1.434624px;}
.wsc7{word-spacing:1.578086px;}
.ws80{word-spacing:1.649818px;}
.ws3d{word-spacing:1.721549px;}
.ws4d{word-spacing:1.793280px;}
.wsb6{word-spacing:1.838515px;}
.ws1c{word-spacing:1.865011px;}
.ws83{word-spacing:1.936742px;}
.ws79{word-spacing:2.008474px;}
.ws15{word-spacing:2.080205px;}
.ws9f{word-spacing:2.087338px;}
.ws8f{word-spacing:2.151936px;}
.ws63{word-spacing:2.223667px;}
.ws11{word-spacing:2.295398px;}
.ws78{word-spacing:2.367130px;}
.ws55{word-spacing:2.438861px;}
.ws5c{word-spacing:2.456621px;}
.wsb2{word-spacing:2.510592px;}
.ws43{word-spacing:2.582323px;}
.wsae{word-spacing:2.654054px;}
.ws4c{word-spacing:2.725786px;}
.wsca{word-spacing:2.822026px;}
.ws37{word-spacing:2.869248px;}
.wse2{word-spacing:2.940979px;}
.ws19{word-spacing:3.012710px;}
.ws71{word-spacing:3.048556px;}
.ws60{word-spacing:3.065779px;}
.ws61{word-spacing:3.084442px;}
.ws70{word-spacing:3.108331px;}
.ws1f{word-spacing:3.156173px;}
.ws6e{word-spacing:3.168107px;}
.ws3c{word-spacing:3.227904px;}
.wsd3{word-spacing:3.287658px;}
.ws5f{word-spacing:3.299635px;}
.ws20{word-spacing:3.371366px;}
.ws93{word-spacing:3.443098px;}
.ws81{word-spacing:3.514829px;}
.wsd2{word-spacing:3.526760px;}
.wsc5{word-spacing:3.586560px;}
.ws3e{word-spacing:3.658291px;}
.ws46{word-spacing:3.730022px;}
.ws4b{word-spacing:3.801754px;}
.ws5d{word-spacing:3.810336px;}
.ws40{word-spacing:3.873485px;}
.ws5{word-spacing:3.945216px;}
.ws85{word-spacing:4.016947px;}
.wsf{word-spacing:4.088678px;}
.wsd9{word-spacing:4.160410px;}
.ws5b{word-spacing:4.232141px;}
.ws3f{word-spacing:4.303872px;}
.wsd0{word-spacing:4.375603px;}
.ws1a{word-spacing:4.447334px;}
.wsb4{word-spacing:4.519066px;}
.ws22{word-spacing:4.590797px;}
.ws6{word-spacing:4.662528px;}
.ws59{word-spacing:4.734010px;}
.ws5a{word-spacing:4.734259px;}
.ws27{word-spacing:4.805990px;}
.wscc{word-spacing:4.870973px;}
.wscd{word-spacing:4.872989px;}
.ws33{word-spacing:4.877722px;}
.ws49{word-spacing:5.021184px;}
.ws45{word-spacing:5.092915px;}
.ws48{word-spacing:5.164646px;}
.ws3b{word-spacing:5.236378px;}
.wscb{word-spacing:5.308109px;}
.wse{word-spacing:5.379840px;}
.ws7b{word-spacing:5.451571px;}
.ws52{word-spacing:5.523302px;}
.ws7d{word-spacing:5.595034px;}
.ws4{word-spacing:5.666765px;}
.ws2f{word-spacing:5.738496px;}
.ws3{word-spacing:5.810227px;}
.ws1b{word-spacing:5.881958px;}
.ws1d{word-spacing:5.953690px;}
.ws8b{word-spacing:6.025421px;}
.wse5{word-spacing:6.097152px;}
.ws7{word-spacing:6.168883px;}
.ws82{word-spacing:6.240614px;}
.ws44{word-spacing:6.312346px;}
.wse8{word-spacing:6.384077px;}
.wse0{word-spacing:6.455808px;}
.ws18{word-spacing:6.527539px;}
.wsa8{word-spacing:6.599270px;}
.wsc9{word-spacing:6.671002px;}
.ws47{word-spacing:6.742733px;}
.ws1e{word-spacing:6.957926px;}
.ws25{word-spacing:7.029658px;}
.wsdc{word-spacing:7.101389px;}
.ws75{word-spacing:7.173120px;}
.wsc8{word-spacing:7.244851px;}
.ws95{word-spacing:7.460045px;}
.ws2c{word-spacing:7.603507px;}
.ws2d{word-spacing:7.675238px;}
.ws7c{word-spacing:7.746970px;}
.ws7a{word-spacing:7.818701px;}
.wsf4{word-spacing:7.885584px;}
.wsf8{word-spacing:7.889242px;}
.wsf5{word-spacing:7.890874px;}
.ws4a{word-spacing:7.962163px;}
.wsc0{word-spacing:8.025552px;}
.wsc1{word-spacing:8.033894px;}
.wsbf{word-spacing:8.053910px;}
.wsdd{word-spacing:8.249088px;}
.wse7{word-spacing:8.320819px;}
.wsa2{word-spacing:8.392550px;}
.wsa1{word-spacing:8.414947px;}
.wse9{word-spacing:8.464282px;}
.ws16{word-spacing:8.536013px;}
.wsbb{word-spacing:8.607744px;}
.ws96{word-spacing:8.679475px;}
.wsb5{word-spacing:8.727723px;}
.wsac{word-spacing:8.751206px;}
.ws35{word-spacing:8.822938px;}
.ws30{word-spacing:9.181594px;}
.ws8e{word-spacing:9.253325px;}
.ws94{word-spacing:9.325056px;}
.ws53{word-spacing:9.540250px;}
.ws50{word-spacing:9.579293px;}
.ws51{word-spacing:9.611981px;}
.ws74{word-spacing:9.683712px;}
.wsed{word-spacing:9.827174px;}
.ws23{word-spacing:9.898906px;}
.wsc6{word-spacing:10.042368px;}
.ws76{word-spacing:10.114099px;}
.wsbd{word-spacing:10.185830px;}
.wsf6{word-spacing:10.257562px;}
.wsef{word-spacing:10.472755px;}
.ws5e{word-spacing:10.513747px;}
.wsea{word-spacing:10.544486px;}
.ws28{word-spacing:10.687949px;}
.ws2e{word-spacing:10.831411px;}
.ws73{word-spacing:11.190067px;}
.wsce{word-spacing:13.845723px;}
.ws21{word-spacing:16.396472px;}
.ws9c{word-spacing:16.557841px;}
.wsd4{word-spacing:18.076262px;}
.ws6f{word-spacing:19.725948px;}
.wsb3{word-spacing:25.321114px;}
.ws2{word-spacing:25.536307px;}
.ws7e{word-spacing:25.966694px;}
.ws2b{word-spacing:26.755738px;}
.ws2a{word-spacing:31.561728px;}
.ws1{word-spacing:35.037485px;}
.ws10{word-spacing:35.037648px;}
.ws29{word-spacing:53.511475px;}
.wsd1{word-spacing:57.313636px;}
.wsda{word-spacing:116.241662px;}
.ws6b{word-spacing:304.673639px;}
.ws6d{word-spacing:352.106563px;}
.ws69{word-spacing:353.479801px;}
.ws68{word-spacing:353.479806px;}
.ws6c{word-spacing:353.479819px;}
.ws6a{word-spacing:734.413507px;}
._20{margin-left:-492.910330px;}
._31{margin-left:-8.822938px;}
._4{margin-left:-7.738406px;}
._2{margin-left:-6.645312px;}
._26{margin-left:-5.307457px;}
._5{margin-left:-4.295309px;}
._3{margin-left:-3.227904px;}
._1{margin-left:-1.299725px;}
._1f{width:2.428299px;}
._1e{width:3.575990px;}
._2a{width:5.104157px;}
._2b{width:6.380150px;}
._2f{width:13.628928px;}
._27{width:14.637446px;}
._1c{width:16.595597px;}
._10{width:17.932800px;}
._9{width:20.084736px;}
._8{width:21.591091px;}
._1b{width:22.810522px;}
._f{width:23.886490px;}
._a{width:24.899290px;}
._7{width:25.903526px;}
._24{width:27.051226px;}
._c{width:28.118630px;}
._0{width:29.648772px;}
._2d{width:30.772685px;}
._d{width:31.848653px;}
._1a{width:33.857126px;}
._6{width:35.380608px;}
._12{width:37.059341px;}
._1d{width:39.093504px;}
._e{width:40.186598px;}
._28{width:41.405681px;}
._25{width:42.966989px;}
._16{width:44.688538px;}
._17{width:45.692774px;}
._b{width:47.127398px;}
._29{width:48.490291px;}
._19{width:49.566259px;}
._2e{width:51.287808px;}
._11{width:52.578970px;}
._18{width:54.659174px;}
._23{width:56.022067px;}
._14{width:57.456691px;}
._30{width:59.536244px;}
._13{width:85.225229px;}
._15{width:102.280128px;}
._2c{width:110.518225px;}
._22{width:363.360493px;}
._21{width:377.124282px;}
.fc2{color:transparent;}
.fc1{color:rgb(224,49,48);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:15.000000px;}
.fse{font-size:18.000000px;}
.fsb{font-size:32.578270px;}
.fs5{font-size:36.765358px;}
.fs4{font-size:40.840186px;}
.fsc{font-size:41.842800px;}
.fs9{font-size:44.875257px;}
.fs8{font-size:44.875259px;}
.fs2{font-size:47.820600px;}
.fs7{font-size:49.031737px;}
.fsa{font-size:52.959555px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:77.708400px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y13c{bottom:3.479297px;}
.y186{bottom:4.175156px;}
.y8b{bottom:5.123620px;}
.y13b{bottom:8.606250px;}
.ycb{bottom:9.742047px;}
.y185{bottom:10.327500px;}
.y13d{bottom:14.248827px;}
.y15b{bottom:16.169324px;}
.y1a9{bottom:17.722731px;}
.y16b{bottom:18.233203px;}
.ydc{bottom:20.766359px;}
.y1b0{bottom:21.655803px;}
.y187{bottom:22.163813px;}
.y161{bottom:22.562358px;}
.y148{bottom:22.576753px;}
.y16a{bottom:23.735156px;}
.y150{bottom:24.687001px;}
.y157{bottom:27.884086px;}
.y16c{bottom:28.672309px;}
.y169{bottom:29.237109px;}
.y1a3{bottom:30.396326px;}
.y14f{bottom:32.091117px;}
.ye0{bottom:32.106831px;}
.y13e{bottom:32.255258px;}
.y192{bottom:32.553147px;}
.y19a{bottom:32.554364px;}
.yd1{bottom:32.794575px;}
.y162{bottom:33.942187px;}
.y1b1{bottom:35.162503px;}
.y1aa{bottom:35.338265px;}
.y15c{bottom:35.818447px;}
.y143{bottom:35.958305px;}
.y188{bottom:36.640409px;}
.y149{bottom:37.251615px;}
.ycc{bottom:37.307866px;}
.y151{bottom:38.531133px;}
.y8a{bottom:39.282266px;}
.y18f{bottom:43.149966px;}
.yce{bottom:43.299264px;}
.y163{bottom:45.322016px;}
.y8e{bottom:46.761434px;}
.y16d{bottom:47.219464px;}
.y1b2{bottom:48.669202px;}
.y13f{bottom:50.261689px;}
.y189{bottom:51.117004px;}
.y14a{bottom:51.926478px;}
.y193{bottom:52.164749px;}
.y1a4{bottom:52.344713px;}
.y152{bottom:52.375266px;}
.y1ab{bottom:52.953799px;}
.y19b{bottom:54.375170px;}
.y15d{bottom:55.467569px;}
.y164{bottom:56.701846px;}
.yc7{bottom:57.424702px;}
.y8d{bottom:59.399526px;}
.y8c{bottom:61.761778px;}
.y1b3{bottom:62.175902px;}
.yc8{bottom:63.637681px;}
.yca{bottom:63.904905px;}
.y18a{bottom:65.593600px;}
.y16e{bottom:65.766619px;}
.y153{bottom:66.219398px;}
.y14b{bottom:66.601340px;}
.y165{bottom:68.081675px;}
.ydf{bottom:68.193716px;}
.y140{bottom:68.268120px;}
.y1ac{bottom:70.569333px;}
.y194{bottom:71.776350px;}
.y1a5{bottom:74.293100px;}
.y15e{bottom:75.116692px;}
.y1b4{bottom:75.682602px;}
.y19c{bottom:76.195976px;}
.yd8{bottom:77.755609px;}
.y89{bottom:78.204073px;}
.y166{bottom:79.461505px;}
.y154{bottom:80.063530px;}
.y18b{bottom:80.070196px;}
.y14c{bottom:81.276203px;}
.y91{bottom:83.948660px;}
.y16f{bottom:84.313773px;}
.y141{bottom:86.274551px;}
.y1ad{bottom:88.184867px;}
.y1b5{bottom:89.189302px;}
.y167{bottom:90.841334px;}
.y195{bottom:91.387952px;}
.y155{bottom:93.907662px;}
.y18c{bottom:94.546792px;}
.y15f{bottom:94.765815px;}
.yd9{bottom:94.852875px;}
.y14d{bottom:95.951065px;}
.y1a6{bottom:96.241487px;}
.y146{bottom:96.644344px;}
.y19d{bottom:98.016781px;}
.yc6{bottom:99.606566px;}
.y145{bottom:102.146297px;}
.y168{bottom:102.221163px;}
.y1b6{bottom:102.696001px;}
.y170{bottom:102.860928px;}
.y142{bottom:104.280982px;}
.yda{bottom:105.184781px;}
.y1ae{bottom:105.800401px;}
.y85{bottom:106.221458px;}
.y29{bottom:106.299000px;}
.ycd{bottom:106.961125px;}
.y144{bottom:107.648250px;}
.y156{bottom:107.751794px;}
.y18d{bottom:109.023387px;}
.y14e{bottom:110.625928px;}
.y196{bottom:110.999554px;}
.y139{bottom:111.721500px;}
.yc5{bottom:113.505493px;}
.y87{bottom:113.699264px;}
.y199{bottom:115.973213px;}
.yd7{bottom:116.181698px;}
.y1b7{bottom:116.202701px;}
.ycf{bottom:116.526751px;}
.y1a7{bottom:118.189874px;}
.y19e{bottom:119.837587px;}
.y198{bottom:122.575556px;}
.y1af{bottom:123.415935px;}
.y18e{bottom:123.499983px;}
.y86{bottom:126.337356px;}
.y53{bottom:127.818000px;}
.y28{bottom:127.819500px;}
.y88{bottom:128.701007px;}
.y190{bottom:129.177900px;}
.y1b8{bottom:129.709401px;}
.y197{bottom:130.611155px;}
.y20a{bottom:134.887500px;}
.y138{bottom:136.392000px;}
.yb3{bottom:136.785000px;}
.y1e8{bottom:137.385000px;}
.y83{bottom:145.125104px;}
.y27{bottom:149.338500px;}
.y90{bottom:150.525016px;}
.y209{bottom:156.406500px;}
.y137{bottom:157.911000px;}
.yb2{bottom:158.304000px;}
.y1e7{bottom:158.904000px;}
.yd4{bottom:165.454262px;}
.ydd{bottom:167.154160px;}
.yde{bottom:167.430247px;}
.y7a{bottom:170.857500px;}
.y82{bottom:172.046342px;}
.yd2{bottom:173.900094px;}
.yd3{bottom:174.155698px;}
.y81{bottom:179.018151px;}
.yf5{bottom:179.823000px;}
.yb1{bottom:179.824500px;}
.y8f{bottom:179.937288px;}
.y1e6{bottom:180.423000px;}
.y26{bottom:180.483000px;}
.y52{bottom:183.208500px;}
.y136{bottom:183.433500px;}
.ydb{bottom:184.156513px;}
.y208{bottom:186.892500px;}
.yd0{bottom:189.641442px;}
.y80{bottom:191.656243px;}
.y79{bottom:192.376500px;}
.y84{bottom:194.525881px;}
.yb0{bottom:201.343500px;}
.yc9{bottom:201.643703px;}
.y7d{bottom:206.295901px;}
.y1e5{bottom:207.930000px;}
.y207{bottom:208.411500px;}
.yc4{bottom:213.779820px;}
.y78{bottom:213.895500px;}
.y135{bottom:217.923000px;}
.yaf{bottom:222.862500px;}
.y7c{bottom:227.870755px;}
.y25{bottom:228.963000px;}
.y51{bottom:229.932000px;}
.y77{bottom:235.414500px;}
.y7e{bottom:236.117104px;}
.y206{bottom:238.897500px;}
.y134{bottom:239.442000px;}
.yae{bottom:244.381500px;}
.y1e4{bottom:248.287500px;}
.y7f{bottom:250.202204px;}
.y24{bottom:250.482000px;}
.y50{bottom:251.451000px;}
.y175{bottom:256.933500px;}
.y76{bottom:256.935000px;}
.y205{bottom:260.416500px;}
.y133{bottom:260.961000px;}
.yad{bottom:265.900500px;}
.y1e3{bottom:269.806500px;}
.y23{bottom:272.002500px;}
.y4f{bottom:272.970000px;}
.y1c5{bottom:274.867500px;}
.y75{bottom:278.454000px;}
.y132{bottom:282.480000px;}
.y9c{bottom:287.419500px;}
.y204{bottom:290.902500px;}
.y1e2{bottom:291.325500px;}
.y22{bottom:293.521500px;}
.y4e{bottom:294.489000px;}
.y1c4{bottom:296.386500px;}
.y74{bottom:299.973000px;}
.y131{bottom:304.000500px;}
.yd5{bottom:306.097500px;}
.y174{bottom:308.938500px;}
.y9b{bottom:308.940000px;}
.y203{bottom:312.421500px;}
.y1e1{bottom:312.846000px;}
.y21{bottom:315.040500px;}
.y4d{bottom:316.009500px;}
.yf4{bottom:317.905500px;}
.y73{bottom:321.492000px;}
.y130{bottom:325.519500px;}
.y9a{bottom:330.459000px;}
.yc3{bottom:333.594010px;}
.y1e0{bottom:334.365000px;}
.y20{bottom:336.559500px;}
.y4c{bottom:337.528500px;}
.yf3{bottom:339.424500px;}
.y202{bottom:342.907500px;}
.y10e{bottom:350.158500px;}
.y72{bottom:351.978000px;}
.y12f{bottom:356.005500px;}
.y1f{bottom:358.078500px;}
.y4b{bottom:359.047500px;}
.yf2{bottom:360.943500px;}
.yac{bottom:360.945000px;}
.y1df{bottom:361.870500px;}
.y201{bottom:364.426500px;}
.y71{bottom:373.497000px;}
.y12e{bottom:377.524500px;}
.y1e{bottom:379.597500px;}
.y4a{bottom:380.566500px;}
.yab{bottom:382.464000px;}
.y10d{bottom:387.792000px;}
.y200{bottom:394.912500px;}
.y70{bottom:395.016000px;}
.y12d{bottom:399.043500px;}
.y1d{bottom:401.118000px;}
.y49{bottom:402.085500px;}
.y1de{bottom:402.229500px;}
.yaa{bottom:403.983000px;}
.y10c{bottom:409.311000px;}
.y1c3{bottom:414.354000px;}
.y1ff{bottom:416.431500px;}
.y173{bottom:416.535000px;}
.y6f{bottom:416.536500px;}
.y12c{bottom:420.562500px;}
.y1c{bottom:422.637000px;}
.y48{bottom:423.604500px;}
.ya9{bottom:425.502000px;}
.y10b{bottom:430.830000px;}
.y1dd{bottom:431.946000px;}
.y6e{bottom:438.055500px;}
.y12b{bottom:442.081500px;}
.y1b{bottom:444.156000px;}
.y47{bottom:445.125000px;}
.y1fe{bottom:446.917500px;}
.ya8{bottom:447.021000px;}
.y10a{bottom:452.349000px;}
.y1c2{bottom:455.209500px;}
.y6d{bottom:459.574500px;}
.y12a{bottom:463.600500px;}
.y1a{bottom:465.675000px;}
.y1fd{bottom:468.436500px;}
.ya7{bottom:468.541500px;}
.y1dc{bottom:472.303500px;}
.y109{bottom:473.869500px;}
.y46{bottom:475.609500px;}
.y1c1{bottom:476.728500px;}
.yf1{bottom:477.507000px;}
.y6c{bottom:481.093500px;}
.y129{bottom:485.121000px;}
.y19{bottom:487.194000px;}
.y1fc{bottom:489.955500px;}
.y99{bottom:490.060500px;}
.y1db{bottom:493.822500px;}
.y108{bottom:495.388500px;}
.y45{bottom:497.130000px;}
.y1c0{bottom:498.247500px;}
.yf0{bottom:499.026000px;}
.y6b{bottom:502.612500px;}
.y128{bottom:506.640000px;}
.y18{bottom:508.714500px;}
.y1a0{bottom:511.362000px;}
.y98{bottom:511.579500px;}
.y1da{bottom:515.341500px;}
.y107{bottom:516.907500px;}
.y44{bottom:518.649000px;}
.y1bf{bottom:519.768000px;}
.y1fb{bottom:520.441500px;}
.yef{bottom:520.545000px;}
.y127{bottom:528.159000px;}
.y19f{bottom:529.296000px;}
.y17{bottom:530.233500px;}
.y172{bottom:533.079000px;}
.y6a{bottom:533.098500px;}
.y1d9{bottom:536.862000px;}
.y43{bottom:540.168000px;}
.y1be{bottom:541.287000px;}
.y1fa{bottom:541.960500px;}
.yee{bottom:542.065500px;}
.y106{bottom:547.393500px;}
.y126{bottom:549.678000px;}
.y171{bottom:551.011500px;}
.y16{bottom:551.752500px;}
.y69{bottom:554.617500px;}
.y1d8{bottom:558.381000px;}
.y42{bottom:561.687000px;}
.y1bd{bottom:562.806000px;}
.yed{bottom:563.584500px;}
.y191{bottom:567.499500px;}
.y105{bottom:568.912500px;}
.y125{bottom:571.197000px;}
.y1f9{bottom:572.446500px;}
.y15{bottom:573.271500px;}
.y68{bottom:576.136500px;}
.ya6{bottom:576.138000px;}
.y1d7{bottom:579.900000px;}
.y41{bottom:583.206000px;}
.y1bc{bottom:584.325000px;}
.yec{bottom:585.103500px;}
.y160{bottom:588.655500px;}
.y184{bottom:589.018500px;}
.y104{bottom:590.431500px;}
.y124{bottom:592.717500px;}
.y1f8{bottom:593.965500px;}
.yc2{bottom:593.979000px;}
.y14{bottom:594.790500px;}
.y67{bottom:597.657000px;}
.y1d6{bottom:601.419000px;}
.y40{bottom:604.726500px;}
.y1bb{bottom:605.844000px;}
.y15a{bottom:610.174500px;}
.yeb{bottom:611.947500px;}
.y103{bottom:611.950500px;}
.y123{bottom:614.236500px;}
.yc1{bottom:615.498000px;}
.y66{bottom:619.176000px;}
.y1d5{bottom:622.938000px;}
.y1f7{bottom:624.451500px;}
.y3f{bottom:626.245500px;}
.y102{bottom:633.469500px;}
.y122{bottom:635.755500px;}
.yc0{bottom:637.017000px;}
.y13{bottom:639.550500px;}
.y65{bottom:640.695000px;}
.y1f6{bottom:645.970500px;}
.yea{bottom:647.757000px;}
.y3e{bottom:647.764500px;}
.ya5{bottom:649.662000px;}
.y1ba{bottom:651.187500px;}
.y1d4{bottom:653.424000px;}
.y101{bottom:654.990000px;}
.y121{bottom:657.274500px;}
.ybf{bottom:658.536000px;}
.y12{bottom:661.069500px;}
.y64{bottom:662.214000px;}
.y1f5{bottom:667.491000px;}
.y1b9{bottom:669.120000px;}
.ye9{bottom:669.277500px;}
.y3d{bottom:669.283500px;}
.ya4{bottom:671.181000px;}
.y97{bottom:672.060000px;}
.y1d3{bottom:674.943000px;}
.y100{bottom:676.509000px;}
.ybe{bottom:680.055000px;}
.y11{bottom:682.588500px;}
.y120{bottom:687.760500px;}
.ye8{bottom:690.796500px;}
.y3c{bottom:690.802500px;}
.y63{bottom:692.700000px;}
.y1d2{bottom:696.462000px;}
.y1f4{bottom:697.975500px;}
.yff{bottom:698.028000px;}
.ybd{bottom:701.575500px;}
.y10{bottom:704.109000px;}
.y1a8{bottom:707.323500px;}
.y11f{bottom:709.279500px;}
.ye7{bottom:712.315500px;}
.y96{bottom:712.390500px;}
.y62{bottom:714.219000px;}
.y1d1{bottom:717.982500px;}
.y1f3{bottom:719.496000px;}
.yfe{bottom:719.547000px;}
.y3b{bottom:721.288500px;}
.yf{bottom:725.628000px;}
.y1a2{bottom:728.842500px;}
.y11e{bottom:730.798500px;}
.ybc{bottom:732.060000px;}
.ye6{bottom:733.834500px;}
.y95{bottom:733.909500px;}
.y61{bottom:735.738000px;}
.y1d0{bottom:739.501500px;}
.y3a{bottom:742.807500px;}
.ye{bottom:747.147000px;}
.y1f2{bottom:749.980500px;}
.yfd{bottom:750.033000px;}
.y11d{bottom:752.319000px;}
.ybb{bottom:753.580500px;}
.ye5{bottom:755.353500px;}
.y60{bottom:757.258500px;}
.y1cf{bottom:761.020500px;}
.y39{bottom:764.328000px;}
.yd{bottom:768.666000px;}
.y183{bottom:769.030500px;}
.y1f1{bottom:771.501000px;}
.yfc{bottom:771.552000px;}
.y11c{bottom:773.838000px;}
.yba{bottom:775.099500px;}
.ye4{bottom:776.874000px;}
.y5f{bottom:778.777500px;}
.y1ce{bottom:782.539500px;}
.y38{bottom:785.847000px;}
.y94{bottom:787.549500px;}
.yc{bottom:790.185000px;}
.y182{bottom:790.549500px;}
.yfb{bottom:793.071000px;}
.y11b{bottom:795.357000px;}
.yb9{bottom:796.618500px;}
.y159{bottom:797.535000px;}
.y5e{bottom:800.296500px;}
.y1f0{bottom:801.985500px;}
.y93{bottom:805.482000px;}
.ye3{bottom:807.358500px;}
.y37{bottom:807.366000px;}
.yb{bottom:811.705500px;}
.y181{bottom:812.068500px;}
.y1cd{bottom:813.025500px;}
.yfa{bottom:814.591500px;}
.y158{bottom:815.469000px;}
.y11a{bottom:816.876000px;}
.yb8{bottom:818.137500px;}
.y5d{bottom:821.815500px;}
.y92{bottom:823.414500px;}
.y1ef{bottom:823.506000px;}
.ye2{bottom:828.879000px;}
.y36{bottom:828.885000px;}
.ya{bottom:833.224500px;}
.y180{bottom:833.589000px;}
.y1cc{bottom:834.544500px;}
.yf9{bottom:836.110500px;}
.y119{bottom:838.395000px;}
.yb7{bottom:839.656500px;}
.y35{bottom:850.404000px;}
.y7b{bottom:850.910991px;}
.ya3{bottom:851.203500px;}
.y5c{bottom:852.301500px;}
.y147{bottom:853.111500px;}
.y1ee{bottom:853.990500px;}
.y9{bottom:854.743500px;}
.y17f{bottom:855.108000px;}
.y1cb{bottom:856.063500px;}
.yf8{bottom:857.629500px;}
.y118{bottom:859.915500px;}
.y34{bottom:871.924500px;}
.y5b{bottom:873.820500px;}
.y13a{bottom:874.632000px;}
.yb6{bottom:875.367000px;}
.y1ed{bottom:875.511000px;}
.y8{bottom:876.262500px;}
.y17e{bottom:876.627000px;}
.y1ca{bottom:877.584000px;}
.ye1{bottom:878.437500px;}
.yf7{bottom:879.148500px;}
.y117{bottom:881.434500px;}
.y33{bottom:893.443500px;}
.y5a{bottom:895.339500px;}
.y1ec{bottom:897.030000px;}
.y7{bottom:897.781500px;}
.y17d{bottom:898.146000px;}
.y1c9{bottom:899.103000px;}
.y1a1{bottom:902.409000px;}
.y116{bottom:902.953500px;}
.yd6{bottom:905.934002px;}
.yf6{bottom:907.815000px;}
.y32{bottom:914.962500px;}
.y59{bottom:916.860000px;}
.y1eb{bottom:918.549000px;}
.y6{bottom:919.302000px;}
.y1c8{bottom:920.622000px;}
.yb5{bottom:923.928000px;}
.y115{bottom:928.476000px;}
.y17c{bottom:928.632000px;}
.y31{bottom:936.481500px;}
.y58{bottom:938.379000px;}
.y5{bottom:940.821000px;}
.y1c7{bottom:942.141000px;}
.yb4{bottom:945.448500px;}
.y1ea{bottom:949.035000px;}
.y17b{bottom:950.151000px;}
.ya2{bottom:958.000500px;}
.y57{bottom:959.898000px;}
.y4{bottom:962.340000px;}
.y114{bottom:962.964000px;}
.y30{bottom:966.967500px;}
.y1c6{bottom:969.648000px;}
.y1e9{bottom:970.554000px;}
.y17a{bottom:971.670000px;}
.ya1{bottom:979.519500px;}
.y56{bottom:981.417000px;}
.y113{bottom:984.483000px;}
.y2f{bottom:988.486500px;}
.y179{bottom:993.189000px;}
.ya0{bottom:1001.040000px;}
.y55{bottom:1002.936000px;}
.y112{bottom:1006.003500px;}
.y2e{bottom:1010.005500px;}
.y3{bottom:1013.607000px;}
.y178{bottom:1014.709500px;}
.y9f{bottom:1022.559000px;}
.y111{bottom:1027.522500px;}
.y2d{bottom:1031.524500px;}
.y54{bottom:1034.266500px;}
.y177{bottom:1036.228500px;}
.y9e{bottom:1044.078000px;}
.y2{bottom:1047.046500px;}
.y110{bottom:1049.041500px;}
.y2c{bottom:1053.045000px;}
.y176{bottom:1057.747500px;}
.y9d{bottom:1065.597000px;}
.y10f{bottom:1070.560500px;}
.y2b{bottom:1074.564000px;}
.y1{bottom:1086.993000px;}
.y2a{bottom:1096.083000px;}
.h1d{height:13.935000px;}
.h22{height:16.722000px;}
.h18{height:23.256558px;}
.hc{height:28.166429px;}
.hd{height:31.028969px;}
.hf{height:31.568902px;}
.he{height:31.842980px;}
.h14{height:34.094678px;}
.h13{height:34.094679px;}
.h12{height:34.322216px;}
.hb{height:34.836678px;}
.h15{height:35.504915px;}
.h17{height:37.071688px;}
.h1b{height:37.240092px;}
.h4{height:37.812768px;}
.h19{height:38.349131px;}
.h10{height:45.250129px;}
.h6{height:48.992410px;}
.h5{height:50.140109px;}
.h9{height:51.144346px;}
.h1e{height:53.200284px;}
.h7{height:55.406089px;}
.h3{height:57.828699px;}
.h8{height:63.840768px;}
.h1f{height:64.554768px;}
.h20{height:64.560768px;}
.h2{height:68.192176px;}
.h1a{height:68.588334px;}
.h1c{height:116.570906px;}
.h21{height:139.885088px;}
.h16{height:208.083771px;}
.h11{height:230.353528px;}
.ha{height:263.102097px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:149.456719px;}
.w5{width:151.841484px;}
.w8{width:156.177422px;}
.w6{width:163.425469px;}
.wa{width:186.154515px;}
.w9{width:187.588890px;}
.wb{width:191.357640px;}
.wc{width:194.219359px;}
.w3{width:446.453644px;}
.w4{width:446.461361px;}
.w2{width:478.332633px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.197924px;}
.x3d{left:5.547656px;}
.x53{left:6.657187px;}
.x3c{left:7.826953px;}
.x3b{left:10.211719px;}
.x58{left:12.254063px;}
.x46{left:15.941570px;}
.x39{left:18.326335px;}
.xa{left:21.837160px;}
.x48{left:26.711719px;}
.x3e{left:29.096484px;}
.x59{left:34.915781px;}
.x56{left:36.622556px;}
.x52{left:38.056931px;}
.x44{left:40.680469px;}
.x5d{left:41.825681px;}
.x62{left:44.687400px;}
.x26{left:47.174320px;}
.x30{left:50.751593px;}
.x47{left:58.694180px;}
.x3a{left:61.078945px;}
.x23{left:62.848871px;}
.x4b{left:65.414883px;}
.xf{left:68.200227px;}
.x43{left:72.662930px;}
.xe{left:75.728029px;}
.x57{left:81.454500px;}
.x1f{left:83.279102px;}
.x5e{left:86.657625px;}
.x63{left:89.519344px;}
.x1e{left:91.296140px;}
.xd{left:106.312944px;}
.x2d{left:120.234776px;}
.x5{left:127.558500px;}
.x8{left:129.542163px;}
.x27{left:136.243517px;}
.x4c{left:139.889531px;}
.x36{left:142.586464px;}
.x2f{left:144.366531px;}
.x22{left:148.947108px;}
.x51{left:153.055500px;}
.x28{left:156.628850px;}
.x12{left:159.278900px;}
.x4{left:161.575500px;}
.x54{left:162.636188px;}
.x5f{left:166.404938px;}
.x31{left:169.176021px;}
.x55{left:172.491000px;}
.x14{left:174.038628px;}
.xc{left:175.211317px;}
.x1{left:180.744000px;}
.xb{left:182.739120px;}
.x20{left:184.723330px;}
.x9{left:186.297279px;}
.x2{left:191.847000px;}
.x24{left:198.644386px;}
.x1b{left:205.473000px;}
.x6{left:207.283500px;}
.x49{left:210.883500px;}
.x3f{left:213.051000px;}
.x1c{left:223.230000px;}
.x13{left:224.550078px;}
.x29{left:226.948227px;}
.x35{left:235.783059px;}
.x19{left:236.788852px;}
.x32{left:245.128518px;}
.x2e{left:251.254966px;}
.x38{left:260.224500px;}
.x1d{left:262.789440px;}
.x11{left:282.210002px;}
.x2a{left:288.080367px;}
.x10{left:289.737805px;}
.x17{left:293.521005px;}
.x3{left:305.274000px;}
.x33{left:306.531240px;}
.x21{left:308.241425px;}
.x2b{left:332.865080px;}
.x1a{left:343.060652px;}
.x60{left:349.347000px;}
.x61{left:351.777000px;}
.x25{left:354.066453px;}
.x34{left:358.862773px;}
.x4a{left:361.384500px;}
.x40{left:364.744500px;}
.x4d{left:369.886500px;}
.x41{left:371.079000px;}
.x16{left:388.869028px;}
.x2c{left:390.678662px;}
.x15{left:396.396830px;}
.x18{left:399.789669px;}
.x37{left:422.551246px;}
.x50{left:430.407000px;}
.x4f{left:440.227500px;}
.x42{left:530.035500px;}
.x45{left:546.121500px;}
.x5a{left:553.701000px;}
.x5b{left:564.013500px;}
.x64{left:568.498500px;}
.x5c{left:664.621500px;}
.x4e{left:700.869000px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v5{vertical-align:-19.280000pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.268045pt;}
.v1{vertical-align:23.136000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000391pt;}
.ls17{letter-spacing:0.000990pt;}
.ls9{letter-spacing:0.005724pt;}
.ls1{letter-spacing:2.653258pt;}
.ls15{letter-spacing:2.655733pt;}
.ls16{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.658591pt;}
.ls13{letter-spacing:3.213476pt;}
.lsd{letter-spacing:13.050044pt;}
.lse{letter-spacing:13.050086pt;}
.ls11{letter-spacing:13.055420pt;}
.lsf{letter-spacing:13.627733pt;}
.ls10{letter-spacing:15.703925pt;}
.ls12{letter-spacing:15.709258pt;}
.ls1e{letter-spacing:16.859812pt;}
.ls6{letter-spacing:17.055420pt;}
.ls7{letter-spacing:17.334400pt;}
.ls1b{letter-spacing:17.526479pt;}
.ls1c{letter-spacing:18.561980pt;}
.ls2{letter-spacing:18.599925pt;}
.ls20{letter-spacing:18.662479pt;}
.ls1f{letter-spacing:19.217145pt;}
.ls1a{letter-spacing:19.467812pt;}
.ls19{letter-spacing:19.607313pt;}
.ls5{letter-spacing:19.709258pt;}
.ls1d{letter-spacing:20.411812pt;}
.ls8{letter-spacing:20.781258pt;}
.ls18{letter-spacing:21.159313pt;}
.lsb{letter-spacing:21.418086pt;}
.lsa{letter-spacing:24.071925pt;}
.ls4{letter-spacing:24.465843pt;}
.lsc{letter-spacing:26.077258pt;}
.wsa4{word-spacing:-23.537580pt;}
.ws99{word-spacing:-21.791883pt;}
.ws38{word-spacing:-15.940267pt;}
.wsee{word-spacing:-13.283467pt;}
.ws62{word-spacing:-10.626800pt;}
.ws9a{word-spacing:-10.361822pt;}
.ws66{word-spacing:-9.430113pt;}
.ws67{word-spacing:-8.489224pt;}
.ws90{word-spacing:-3.825664pt;}
.ws91{word-spacing:-3.761903pt;}
.wsb0{word-spacing:-3.634381pt;}
.wsaf{word-spacing:-3.613380pt;}
.ws39{word-spacing:-3.585655pt;}
.ws3a{word-spacing:-3.570620pt;}
.wsb8{word-spacing:-3.506859pt;}
.wse3{word-spacing:-3.379337pt;}
.ws92{word-spacing:-3.251814pt;}
.wsbe{word-spacing:-3.188053pt;}
.wsaa{word-spacing:-3.124292pt;}
.wsa{word-spacing:-2.996770pt;}
.ws9e{word-spacing:-2.933009pt;}
.wsa9{word-spacing:-2.907315pt;}
.ws9d{word-spacing:-2.869248pt;}
.wsad{word-spacing:-2.805487pt;}
.wsf7{word-spacing:-2.741726pt;}
.wsf1{word-spacing:-2.695876pt;}
.wsf2{word-spacing:-2.677965pt;}
.ws9{word-spacing:-2.614204pt;}
.wsab{word-spacing:-2.550443pt;}
.wsb7{word-spacing:-2.486682pt;}
.wsb1{word-spacing:-2.422921pt;}
.wsec{word-spacing:-2.359159pt;}
.ws97{word-spacing:-2.295398pt;}
.ws42{word-spacing:-2.231637pt;}
.wsb{word-spacing:-2.104115pt;}
.wsd7{word-spacing:-2.040354pt;}
.wsf0{word-spacing:-1.976593pt;}
.ws87{word-spacing:-1.912832pt;}
.ws32{word-spacing:-1.849071pt;}
.ws31{word-spacing:-1.785310pt;}
.wsd5{word-spacing:-1.721549pt;}
.ws8c{word-spacing:-1.594027pt;}
.wsc{word-spacing:-1.530266pt;}
.ws13{word-spacing:-1.466505pt;}
.wsd8{word-spacing:-1.402743pt;}
.wsc2{word-spacing:-1.338982pt;}
.ws77{word-spacing:-1.275221pt;}
.ws72{word-spacing:-1.211460pt;}
.wsf3{word-spacing:-1.147699pt;}
.ws8d{word-spacing:-1.083938pt;}
.wsc4{word-spacing:-1.020177pt;}
.ws84{word-spacing:-0.956416pt;}
.ws4e{word-spacing:-0.892655pt;}
.ws65{word-spacing:-0.828894pt;}
.wsa0{word-spacing:-0.765133pt;}
.ws12{word-spacing:-0.701372pt;}
.ws86{word-spacing:-0.637611pt;}
.ws36{word-spacing:-0.573850pt;}
.wsd{word-spacing:-0.510089pt;}
.ws64{word-spacing:-0.446327pt;}
.ws24{word-spacing:-0.382566pt;}
.wsbc{word-spacing:-0.318805pt;}
.ws54{word-spacing:-0.255044pt;}
.wsa3{word-spacing:-0.191283pt;}
.ws56{word-spacing:-0.063761pt;}
.wscf{word-spacing:-0.053134pt;}
.wsa6{word-spacing:-0.047075pt;}
.wsa5{word-spacing:-0.028958pt;}
.ws4f{word-spacing:-0.007757pt;}
.wsa7{word-spacing:-0.005895pt;}
.ws9b{word-spacing:-0.000562pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.063761pt;}
.ws34{word-spacing:0.127522pt;}
.ws41{word-spacing:0.191283pt;}
.ws8a{word-spacing:0.255044pt;}
.wse1{word-spacing:0.318805pt;}
.ws98{word-spacing:0.382566pt;}
.ws7f{word-spacing:0.446327pt;}
.wsd6{word-spacing:0.510089pt;}
.ws17{word-spacing:0.573850pt;}
.ws89{word-spacing:0.575744pt;}
.wsdf{word-spacing:0.637611pt;}
.wsba{word-spacing:0.701372pt;}
.ws14{word-spacing:0.765133pt;}
.wsde{word-spacing:0.828894pt;}
.wse4{word-spacing:0.892655pt;}
.wse6{word-spacing:0.956410pt;}
.wseb{word-spacing:0.956416pt;}
.wsb9{word-spacing:1.020177pt;}
.ws58{word-spacing:1.083938pt;}
.ws57{word-spacing:1.106543pt;}
.wsc3{word-spacing:1.147699pt;}
.wsdb{word-spacing:1.168945pt;}
.ws26{word-spacing:1.211460pt;}
.ws88{word-spacing:1.275221pt;}
.wsc7{word-spacing:1.402743pt;}
.ws80{word-spacing:1.466505pt;}
.ws3d{word-spacing:1.530266pt;}
.ws4d{word-spacing:1.594027pt;}
.wsb6{word-spacing:1.634236pt;}
.ws1c{word-spacing:1.657788pt;}
.ws83{word-spacing:1.721549pt;}
.ws79{word-spacing:1.785310pt;}
.ws15{word-spacing:1.849071pt;}
.ws9f{word-spacing:1.855411pt;}
.ws8f{word-spacing:1.912832pt;}
.ws63{word-spacing:1.976593pt;}
.ws11{word-spacing:2.040354pt;}
.ws78{word-spacing:2.104115pt;}
.ws55{word-spacing:2.167876pt;}
.ws5c{word-spacing:2.183663pt;}
.wsb2{word-spacing:2.231637pt;}
.ws43{word-spacing:2.295398pt;}
.wsae{word-spacing:2.359159pt;}
.ws4c{word-spacing:2.422921pt;}
.wsca{word-spacing:2.508467pt;}
.ws37{word-spacing:2.550443pt;}
.wse2{word-spacing:2.614204pt;}
.ws19{word-spacing:2.677965pt;}
.ws71{word-spacing:2.709827pt;}
.ws60{word-spacing:2.725137pt;}
.ws61{word-spacing:2.741726pt;}
.ws70{word-spacing:2.762961pt;}
.ws1f{word-spacing:2.805487pt;}
.ws6e{word-spacing:2.816095pt;}
.ws3c{word-spacing:2.869248pt;}
.wsd3{word-spacing:2.922363pt;}
.ws5f{word-spacing:2.933009pt;}
.ws20{word-spacing:2.996770pt;}
.ws93{word-spacing:3.060531pt;}
.ws81{word-spacing:3.124292pt;}
.wsd2{word-spacing:3.134898pt;}
.wsc5{word-spacing:3.188053pt;}
.ws3e{word-spacing:3.251814pt;}
.ws46{word-spacing:3.315575pt;}
.ws4b{word-spacing:3.379337pt;}
.ws5d{word-spacing:3.386965pt;}
.ws40{word-spacing:3.443098pt;}
.ws5{word-spacing:3.506859pt;}
.ws85{word-spacing:3.570620pt;}
.wsf{word-spacing:3.634381pt;}
.wsd9{word-spacing:3.698142pt;}
.ws5b{word-spacing:3.761903pt;}
.ws3f{word-spacing:3.825664pt;}
.wsd0{word-spacing:3.889425pt;}
.ws1a{word-spacing:3.953186pt;}
.wsb4{word-spacing:4.016947pt;}
.ws22{word-spacing:4.080708pt;}
.ws6{word-spacing:4.144469pt;}
.ws59{word-spacing:4.208009pt;}
.ws5a{word-spacing:4.208230pt;}
.ws27{word-spacing:4.271991pt;}
.wscc{word-spacing:4.329754pt;}
.wscd{word-spacing:4.331546pt;}
.ws33{word-spacing:4.335753pt;}
.ws49{word-spacing:4.463275pt;}
.ws45{word-spacing:4.527036pt;}
.ws48{word-spacing:4.590797pt;}
.ws3b{word-spacing:4.654558pt;}
.wscb{word-spacing:4.718319pt;}
.wse{word-spacing:4.782080pt;}
.ws7b{word-spacing:4.845841pt;}
.ws52{word-spacing:4.909602pt;}
.ws7d{word-spacing:4.973363pt;}
.ws4{word-spacing:5.037124pt;}
.ws2f{word-spacing:5.100885pt;}
.ws3{word-spacing:5.164646pt;}
.ws1b{word-spacing:5.228407pt;}
.ws1d{word-spacing:5.292169pt;}
.ws8b{word-spacing:5.355930pt;}
.wse5{word-spacing:5.419691pt;}
.ws7{word-spacing:5.483452pt;}
.ws82{word-spacing:5.547213pt;}
.ws44{word-spacing:5.610974pt;}
.wse8{word-spacing:5.674735pt;}
.wse0{word-spacing:5.738496pt;}
.ws18{word-spacing:5.802257pt;}
.wsa8{word-spacing:5.866018pt;}
.wsc9{word-spacing:5.929779pt;}
.ws47{word-spacing:5.993540pt;}
.ws1e{word-spacing:6.184823pt;}
.ws25{word-spacing:6.248585pt;}
.wsdc{word-spacing:6.312346pt;}
.ws75{word-spacing:6.376107pt;}
.wsc8{word-spacing:6.439868pt;}
.ws95{word-spacing:6.631151pt;}
.ws2c{word-spacing:6.758673pt;}
.ws2d{word-spacing:6.822434pt;}
.ws7c{word-spacing:6.886195pt;}
.ws7a{word-spacing:6.949956pt;}
.wsf4{word-spacing:7.009408pt;}
.wsf8{word-spacing:7.012659pt;}
.wsf5{word-spacing:7.014110pt;}
.ws4a{word-spacing:7.077478pt;}
.wsc0{word-spacing:7.133824pt;}
.wsc1{word-spacing:7.141239pt;}
.wsbf{word-spacing:7.159031pt;}
.wsdd{word-spacing:7.332523pt;}
.wse7{word-spacing:7.396284pt;}
.wsa2{word-spacing:7.460045pt;}
.wsa1{word-spacing:7.479953pt;}
.wse9{word-spacing:7.523806pt;}
.ws16{word-spacing:7.587567pt;}
.wsbb{word-spacing:7.651328pt;}
.ws96{word-spacing:7.715089pt;}
.wsb5{word-spacing:7.757976pt;}
.wsac{word-spacing:7.778850pt;}
.ws35{word-spacing:7.842611pt;}
.ws30{word-spacing:8.161417pt;}
.ws8e{word-spacing:8.225178pt;}
.ws94{word-spacing:8.288939pt;}
.ws53{word-spacing:8.480222pt;}
.ws50{word-spacing:8.514927pt;}
.ws51{word-spacing:8.543983pt;}
.ws74{word-spacing:8.607744pt;}
.wsed{word-spacing:8.735266pt;}
.ws23{word-spacing:8.799027pt;}
.wsc6{word-spacing:8.926549pt;}
.ws76{word-spacing:8.990310pt;}
.wsbd{word-spacing:9.054071pt;}
.wsf6{word-spacing:9.117833pt;}
.wsef{word-spacing:9.309116pt;}
.ws5e{word-spacing:9.345553pt;}
.wsea{word-spacing:9.372877pt;}
.ws28{word-spacing:9.500399pt;}
.ws2e{word-spacing:9.627921pt;}
.ws73{word-spacing:9.946726pt;}
.wsce{word-spacing:12.307309pt;}
.ws21{word-spacing:14.574642pt;}
.ws9c{word-spacing:14.718081pt;}
.wsd4{word-spacing:16.067789pt;}
.ws6f{word-spacing:17.534176pt;}
.wsb3{word-spacing:22.507657pt;}
.ws2{word-spacing:22.698940pt;}
.ws7e{word-spacing:23.081506pt;}
.ws2b{word-spacing:23.782878pt;}
.ws2a{word-spacing:28.054869pt;}
.ws1{word-spacing:31.144431pt;}
.ws10{word-spacing:31.144576pt;}
.ws29{word-spacing:47.565756pt;}
.wsd1{word-spacing:50.945455pt;}
.wsda{word-spacing:103.325922pt;}
.ws6b{word-spacing:270.821013pt;}
.ws6d{word-spacing:312.983612pt;}
.ws69{word-spacing:314.204268pt;}
.ws68{word-spacing:314.204272pt;}
.ws6c{word-spacing:314.204284pt;}
.ws6a{word-spacing:652.812006pt;}
._20{margin-left:-438.142515pt;}
._31{margin-left:-7.842611pt;}
._4{margin-left:-6.878583pt;}
._2{margin-left:-5.906944pt;}
._26{margin-left:-4.717740pt;}
._5{margin-left:-3.818052pt;}
._3{margin-left:-2.869248pt;}
._1{margin-left:-1.155311pt;}
._1f{width:2.158488pt;}
._1e{width:3.178658pt;}
._2a{width:4.537028pt;}
._2b{width:5.671245pt;}
._2f{width:12.114603pt;}
._27{width:13.011063pt;}
._1c{width:14.751642pt;}
._10{width:15.940267pt;}
._9{width:17.853099pt;}
._8{width:19.192081pt;}
._1b{width:20.276019pt;}
._f{width:21.232435pt;}
._a{width:22.132702pt;}
._7{width:23.025357pt;}
._24{width:24.045534pt;}
._c{width:24.994338pt;}
._0{width:26.354464pt;}
._2d{width:27.353498pt;}
._d{width:28.309914pt;}
._1a{width:30.095223pt;}
._6{width:31.449429pt;}
._12{width:32.941636pt;}
._1d{width:34.749781pt;}
._e{width:35.721421pt;}
._28{width:36.805050pt;}
._25{width:38.192879pt;}
._16{width:39.723145pt;}
._17{width:40.615799pt;}
._b{width:41.891021pt;}
._29{width:43.102481pt;}
._19{width:44.058897pt;}
._2e{width:45.589163pt;}
._11{width:46.736862pt;}
._18{width:48.585933pt;}
._23{width:49.797393pt;}
._14{width:51.072614pt;}
._30{width:52.921106pt;}
._13{width:75.755759pt;}
._15{width:90.915669pt;}
._2c{width:98.238422pt;}
._22{width:322.987105pt;}
._21{width:335.221584pt;}
.fsd{font-size:13.333333pt;}
.fse{font-size:16.000000pt;}
.fsb{font-size:28.958462pt;}
.fs5{font-size:32.680319pt;}
.fs4{font-size:36.302387pt;}
.fsc{font-size:37.193600pt;}
.fs9{font-size:39.889118pt;}
.fs8{font-size:39.889119pt;}
.fs2{font-size:42.507200pt;}
.fs7{font-size:43.583766pt;}
.fsa{font-size:47.075160pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:69.074133pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y13c{bottom:3.092708pt;}
.y186{bottom:3.711250pt;}
.y8b{bottom:4.554329pt;}
.y13b{bottom:7.650000pt;}
.ycb{bottom:8.659597pt;}
.y185{bottom:9.180000pt;}
.y13d{bottom:12.665624pt;}
.y15b{bottom:14.372732pt;}
.y1a9{bottom:15.753538pt;}
.y16b{bottom:16.207292pt;}
.ydc{bottom:18.458986pt;}
.y1b0{bottom:19.249603pt;}
.y187{bottom:19.701167pt;}
.y161{bottom:20.055429pt;}
.y148{bottom:20.068225pt;}
.y16a{bottom:21.097917pt;}
.y150{bottom:21.944001pt;}
.y157{bottom:24.785854pt;}
.y16c{bottom:25.486497pt;}
.y169{bottom:25.988542pt;}
.y1a3{bottom:27.018956pt;}
.y14f{bottom:28.525438pt;}
.ye0{bottom:28.539406pt;}
.y13e{bottom:28.671341pt;}
.y192{bottom:28.936131pt;}
.y19a{bottom:28.937213pt;}
.yd1{bottom:29.150734pt;}
.y162{bottom:30.170833pt;}
.y1b1{bottom:31.255558pt;}
.y1aa{bottom:31.411791pt;}
.y15c{bottom:31.838619pt;}
.y143{bottom:31.962938pt;}
.y188{bottom:32.569252pt;}
.y149{bottom:33.112547pt;}
.ycc{bottom:33.162547pt;}
.y151{bottom:34.249896pt;}
.y8a{bottom:34.917570pt;}
.y18f{bottom:38.355525pt;}
.yce{bottom:38.488235pt;}
.y163{bottom:40.286237pt;}
.y8e{bottom:41.565719pt;}
.y16d{bottom:41.972857pt;}
.y1b2{bottom:43.261513pt;}
.y13f{bottom:44.677057pt;}
.y189{bottom:45.437337pt;}
.y14a{bottom:46.156869pt;}
.y193{bottom:46.368666pt;}
.y1a4{bottom:46.528634pt;}
.y152{bottom:46.555792pt;}
.y1ab{bottom:47.070043pt;}
.y19b{bottom:48.333484pt;}
.y15d{bottom:49.304506pt;}
.y164{bottom:50.401641pt;}
.yc7{bottom:51.044179pt;}
.y8d{bottom:52.799579pt;}
.y8c{bottom:54.899358pt;}
.y1b3{bottom:55.267469pt;}
.yc8{bottom:56.566828pt;}
.yca{bottom:56.804360pt;}
.y18a{bottom:58.305422pt;}
.y16e{bottom:58.459217pt;}
.y153{bottom:58.861687pt;}
.y14b{bottom:59.201191pt;}
.y165{bottom:60.517045pt;}
.ydf{bottom:60.616636pt;}
.y140{bottom:60.682773pt;}
.y1ac{bottom:62.728296pt;}
.y194{bottom:63.801200pt;}
.y1a5{bottom:66.038311pt;}
.y15e{bottom:66.770393pt;}
.y1b4{bottom:67.273424pt;}
.y19c{bottom:67.729756pt;}
.yd8{bottom:69.116097pt;}
.y89{bottom:69.514732pt;}
.y166{bottom:70.632449pt;}
.y154{bottom:71.167582pt;}
.y18b{bottom:71.173507pt;}
.y14c{bottom:72.245513pt;}
.y91{bottom:74.621031pt;}
.y16f{bottom:74.945576pt;}
.y141{bottom:76.688490pt;}
.y1ad{bottom:78.386548pt;}
.y1b5{bottom:79.279379pt;}
.y167{bottom:80.747852pt;}
.y195{bottom:81.233735pt;}
.y155{bottom:83.473478pt;}
.y18c{bottom:84.041593pt;}
.y15f{bottom:84.236280pt;}
.yd9{bottom:84.313666pt;}
.y14d{bottom:85.289836pt;}
.y1a6{bottom:85.547989pt;}
.y146{bottom:85.906083pt;}
.y19d{bottom:87.126028pt;}
.yc6{bottom:88.539170pt;}
.y145{bottom:90.796708pt;}
.y168{bottom:90.863256pt;}
.y1b6{bottom:91.285335pt;}
.y170{bottom:91.431936pt;}
.y142{bottom:92.694206pt;}
.yda{bottom:93.497583pt;}
.y1ae{bottom:94.044800pt;}
.y85{bottom:94.419074pt;}
.y29{bottom:94.488000pt;}
.ycd{bottom:95.076556pt;}
.y144{bottom:95.687333pt;}
.y156{bottom:95.779373pt;}
.y18d{bottom:96.909678pt;}
.y14e{bottom:98.334158pt;}
.y196{bottom:98.666270pt;}
.y139{bottom:99.308000pt;}
.yc5{bottom:100.893772pt;}
.y87{bottom:101.066013pt;}
.y199{bottom:103.087300pt;}
.yd7{bottom:103.272621pt;}
.y1b7{bottom:103.291290pt;}
.ycf{bottom:103.579335pt;}
.y1a7{bottom:105.057666pt;}
.y19e{bottom:106.522300pt;}
.y198{bottom:108.956050pt;}
.y1af{bottom:109.703053pt;}
.y18e{bottom:109.777763pt;}
.y86{bottom:112.299872pt;}
.y53{bottom:113.616000pt;}
.y28{bottom:113.617333pt;}
.y88{bottom:114.400896pt;}
.y190{bottom:114.824800pt;}
.y1b8{bottom:115.297245pt;}
.y197{bottom:116.098804pt;}
.y20a{bottom:119.900000pt;}
.y138{bottom:121.237333pt;}
.yb3{bottom:121.586667pt;}
.y1e8{bottom:122.120000pt;}
.y83{bottom:129.000093pt;}
.y27{bottom:132.745333pt;}
.y90{bottom:133.800014pt;}
.y209{bottom:139.028000pt;}
.y137{bottom:140.365333pt;}
.yb2{bottom:140.714667pt;}
.y1e7{bottom:141.248000pt;}
.yd4{bottom:147.070455pt;}
.ydd{bottom:148.581475pt;}
.yde{bottom:148.826886pt;}
.y7a{bottom:151.873333pt;}
.y82{bottom:152.930082pt;}
.yd2{bottom:154.577861pt;}
.yd3{bottom:154.805065pt;}
.y81{bottom:159.127245pt;}
.yf5{bottom:159.842667pt;}
.yb1{bottom:159.844000pt;}
.y8f{bottom:159.944256pt;}
.y1e6{bottom:160.376000pt;}
.y26{bottom:160.429333pt;}
.y52{bottom:162.852000pt;}
.y136{bottom:163.052000pt;}
.ydb{bottom:163.694678pt;}
.y208{bottom:166.126667pt;}
.yd0{bottom:168.570170pt;}
.y80{bottom:170.361105pt;}
.y79{bottom:171.001333pt;}
.y84{bottom:172.911894pt;}
.yb0{bottom:178.972000pt;}
.yc9{bottom:179.238847pt;}
.y7d{bottom:183.374134pt;}
.y1e5{bottom:184.826667pt;}
.y207{bottom:185.254667pt;}
.yc4{bottom:190.026506pt;}
.y78{bottom:190.129333pt;}
.y135{bottom:193.709333pt;}
.yaf{bottom:198.100000pt;}
.y7c{bottom:202.551783pt;}
.y25{bottom:203.522667pt;}
.y51{bottom:204.384000pt;}
.y77{bottom:209.257333pt;}
.y7e{bottom:209.881870pt;}
.y206{bottom:212.353333pt;}
.y134{bottom:212.837333pt;}
.yae{bottom:217.228000pt;}
.y1e4{bottom:220.700000pt;}
.y7f{bottom:222.401959pt;}
.y24{bottom:222.650667pt;}
.y50{bottom:223.512000pt;}
.y175{bottom:228.385333pt;}
.y76{bottom:228.386667pt;}
.y205{bottom:231.481333pt;}
.y133{bottom:231.965333pt;}
.yad{bottom:236.356000pt;}
.y1e3{bottom:239.828000pt;}
.y23{bottom:241.780000pt;}
.y4f{bottom:242.640000pt;}
.y1c5{bottom:244.326667pt;}
.y75{bottom:247.514667pt;}
.y132{bottom:251.093333pt;}
.y9c{bottom:255.484000pt;}
.y204{bottom:258.580000pt;}
.y1e2{bottom:258.956000pt;}
.y22{bottom:260.908000pt;}
.y4e{bottom:261.768000pt;}
.y1c4{bottom:263.454667pt;}
.y74{bottom:266.642667pt;}
.y131{bottom:270.222667pt;}
.yd5{bottom:272.086667pt;}
.y174{bottom:274.612000pt;}
.y9b{bottom:274.613333pt;}
.y203{bottom:277.708000pt;}
.y1e1{bottom:278.085333pt;}
.y21{bottom:280.036000pt;}
.y4d{bottom:280.897333pt;}
.yf4{bottom:282.582667pt;}
.y73{bottom:285.770667pt;}
.y130{bottom:289.350667pt;}
.y9a{bottom:293.741333pt;}
.yc3{bottom:296.528009pt;}
.y1e0{bottom:297.213333pt;}
.y20{bottom:299.164000pt;}
.y4c{bottom:300.025333pt;}
.yf3{bottom:301.710667pt;}
.y202{bottom:304.806667pt;}
.y10e{bottom:311.252000pt;}
.y72{bottom:312.869333pt;}
.y12f{bottom:316.449333pt;}
.y1f{bottom:318.292000pt;}
.y4b{bottom:319.153333pt;}
.yf2{bottom:320.838667pt;}
.yac{bottom:320.840000pt;}
.y1df{bottom:321.662667pt;}
.y201{bottom:323.934667pt;}
.y71{bottom:331.997333pt;}
.y12e{bottom:335.577333pt;}
.y1e{bottom:337.420000pt;}
.y4a{bottom:338.281333pt;}
.yab{bottom:339.968000pt;}
.y10d{bottom:344.704000pt;}
.y200{bottom:351.033333pt;}
.y70{bottom:351.125333pt;}
.y12d{bottom:354.705333pt;}
.y1d{bottom:356.549333pt;}
.y49{bottom:357.409333pt;}
.y1de{bottom:357.537333pt;}
.yaa{bottom:359.096000pt;}
.y10c{bottom:363.832000pt;}
.y1c3{bottom:368.314667pt;}
.y1ff{bottom:370.161333pt;}
.y173{bottom:370.253333pt;}
.y6f{bottom:370.254667pt;}
.y12c{bottom:373.833333pt;}
.y1c{bottom:375.677333pt;}
.y48{bottom:376.537333pt;}
.ya9{bottom:378.224000pt;}
.y10b{bottom:382.960000pt;}
.y1dd{bottom:383.952000pt;}
.y6e{bottom:389.382667pt;}
.y12b{bottom:392.961333pt;}
.y1b{bottom:394.805333pt;}
.y47{bottom:395.666667pt;}
.y1fe{bottom:397.260000pt;}
.ya8{bottom:397.352000pt;}
.y10a{bottom:402.088000pt;}
.y1c2{bottom:404.630667pt;}
.y6d{bottom:408.510667pt;}
.y12a{bottom:412.089333pt;}
.y1a{bottom:413.933333pt;}
.y1fd{bottom:416.388000pt;}
.ya7{bottom:416.481333pt;}
.y1dc{bottom:419.825333pt;}
.y109{bottom:421.217333pt;}
.y46{bottom:422.764000pt;}
.y1c1{bottom:423.758667pt;}
.yf1{bottom:424.450667pt;}
.y6c{bottom:427.638667pt;}
.y129{bottom:431.218667pt;}
.y19{bottom:433.061333pt;}
.y1fc{bottom:435.516000pt;}
.y99{bottom:435.609333pt;}
.y1db{bottom:438.953333pt;}
.y108{bottom:440.345333pt;}
.y45{bottom:441.893333pt;}
.y1c0{bottom:442.886667pt;}
.yf0{bottom:443.578667pt;}
.y6b{bottom:446.766667pt;}
.y128{bottom:450.346667pt;}
.y18{bottom:452.190667pt;}
.y1a0{bottom:454.544000pt;}
.y98{bottom:454.737333pt;}
.y1da{bottom:458.081333pt;}
.y107{bottom:459.473333pt;}
.y44{bottom:461.021333pt;}
.y1bf{bottom:462.016000pt;}
.y1fb{bottom:462.614667pt;}
.yef{bottom:462.706667pt;}
.y127{bottom:469.474667pt;}
.y19f{bottom:470.485333pt;}
.y17{bottom:471.318667pt;}
.y172{bottom:473.848000pt;}
.y6a{bottom:473.865333pt;}
.y1d9{bottom:477.210667pt;}
.y43{bottom:480.149333pt;}
.y1be{bottom:481.144000pt;}
.y1fa{bottom:481.742667pt;}
.yee{bottom:481.836000pt;}
.y106{bottom:486.572000pt;}
.y126{bottom:488.602667pt;}
.y171{bottom:489.788000pt;}
.y16{bottom:490.446667pt;}
.y69{bottom:492.993333pt;}
.y1d8{bottom:496.338667pt;}
.y42{bottom:499.277333pt;}
.y1bd{bottom:500.272000pt;}
.yed{bottom:500.964000pt;}
.y191{bottom:504.444000pt;}
.y105{bottom:505.700000pt;}
.y125{bottom:507.730667pt;}
.y1f9{bottom:508.841333pt;}
.y15{bottom:509.574667pt;}
.y68{bottom:512.121333pt;}
.ya6{bottom:512.122667pt;}
.y1d7{bottom:515.466667pt;}
.y41{bottom:518.405333pt;}
.y1bc{bottom:519.400000pt;}
.yec{bottom:520.092000pt;}
.y160{bottom:523.249333pt;}
.y184{bottom:523.572000pt;}
.y104{bottom:524.828000pt;}
.y124{bottom:526.860000pt;}
.y1f8{bottom:527.969333pt;}
.yc2{bottom:527.981333pt;}
.y14{bottom:528.702667pt;}
.y67{bottom:531.250667pt;}
.y1d6{bottom:534.594667pt;}
.y40{bottom:537.534667pt;}
.y1bb{bottom:538.528000pt;}
.y15a{bottom:542.377333pt;}
.yeb{bottom:543.953333pt;}
.y103{bottom:543.956000pt;}
.y123{bottom:545.988000pt;}
.yc1{bottom:547.109333pt;}
.y66{bottom:550.378667pt;}
.y1d5{bottom:553.722667pt;}
.y1f7{bottom:555.068000pt;}
.y3f{bottom:556.662667pt;}
.y102{bottom:563.084000pt;}
.y122{bottom:565.116000pt;}
.yc0{bottom:566.237333pt;}
.y13{bottom:568.489333pt;}
.y65{bottom:569.506667pt;}
.y1f6{bottom:574.196000pt;}
.yea{bottom:575.784000pt;}
.y3e{bottom:575.790667pt;}
.ya5{bottom:577.477333pt;}
.y1ba{bottom:578.833333pt;}
.y1d4{bottom:580.821333pt;}
.y101{bottom:582.213333pt;}
.y121{bottom:584.244000pt;}
.ybf{bottom:585.365333pt;}
.y12{bottom:587.617333pt;}
.y64{bottom:588.634667pt;}
.y1f5{bottom:593.325333pt;}
.y1b9{bottom:594.773333pt;}
.ye9{bottom:594.913333pt;}
.y3d{bottom:594.918667pt;}
.ya4{bottom:596.605333pt;}
.y97{bottom:597.386667pt;}
.y1d3{bottom:599.949333pt;}
.y100{bottom:601.341333pt;}
.ybe{bottom:604.493333pt;}
.y11{bottom:606.745333pt;}
.y120{bottom:611.342667pt;}
.ye8{bottom:614.041333pt;}
.y3c{bottom:614.046667pt;}
.y63{bottom:615.733333pt;}
.y1d2{bottom:619.077333pt;}
.y1f4{bottom:620.422667pt;}
.yff{bottom:620.469333pt;}
.ybd{bottom:623.622667pt;}
.y10{bottom:625.874667pt;}
.y1a8{bottom:628.732000pt;}
.y11f{bottom:630.470667pt;}
.ye7{bottom:633.169333pt;}
.y96{bottom:633.236000pt;}
.y62{bottom:634.861333pt;}
.y1d1{bottom:638.206667pt;}
.y1f3{bottom:639.552000pt;}
.yfe{bottom:639.597333pt;}
.y3b{bottom:641.145333pt;}
.yf{bottom:645.002667pt;}
.y1a2{bottom:647.860000pt;}
.y11e{bottom:649.598667pt;}
.ybc{bottom:650.720000pt;}
.ye6{bottom:652.297333pt;}
.y95{bottom:652.364000pt;}
.y61{bottom:653.989333pt;}
.y1d0{bottom:657.334667pt;}
.y3a{bottom:660.273333pt;}
.ye{bottom:664.130667pt;}
.y1f2{bottom:666.649333pt;}
.yfd{bottom:666.696000pt;}
.y11d{bottom:668.728000pt;}
.ybb{bottom:669.849333pt;}
.ye5{bottom:671.425333pt;}
.y60{bottom:673.118667pt;}
.y1cf{bottom:676.462667pt;}
.y39{bottom:679.402667pt;}
.yd{bottom:683.258667pt;}
.y183{bottom:683.582667pt;}
.y1f1{bottom:685.778667pt;}
.yfc{bottom:685.824000pt;}
.y11c{bottom:687.856000pt;}
.yba{bottom:688.977333pt;}
.ye4{bottom:690.554667pt;}
.y5f{bottom:692.246667pt;}
.y1ce{bottom:695.590667pt;}
.y38{bottom:698.530667pt;}
.y94{bottom:700.044000pt;}
.yc{bottom:702.386667pt;}
.y182{bottom:702.710667pt;}
.yfb{bottom:704.952000pt;}
.y11b{bottom:706.984000pt;}
.yb9{bottom:708.105333pt;}
.y159{bottom:708.920000pt;}
.y5e{bottom:711.374667pt;}
.y1f0{bottom:712.876000pt;}
.y93{bottom:715.984000pt;}
.ye3{bottom:717.652000pt;}
.y37{bottom:717.658667pt;}
.yb{bottom:721.516000pt;}
.y181{bottom:721.838667pt;}
.y1cd{bottom:722.689333pt;}
.yfa{bottom:724.081333pt;}
.y158{bottom:724.861333pt;}
.y11a{bottom:726.112000pt;}
.yb8{bottom:727.233333pt;}
.y5d{bottom:730.502667pt;}
.y92{bottom:731.924000pt;}
.y1ef{bottom:732.005333pt;}
.ye2{bottom:736.781333pt;}
.y36{bottom:736.786667pt;}
.ya{bottom:740.644000pt;}
.y180{bottom:740.968000pt;}
.y1cc{bottom:741.817333pt;}
.yf9{bottom:743.209333pt;}
.y119{bottom:745.240000pt;}
.yb7{bottom:746.361333pt;}
.y35{bottom:755.914667pt;}
.y7b{bottom:756.365325pt;}
.ya3{bottom:756.625333pt;}
.y5c{bottom:757.601333pt;}
.y147{bottom:758.321333pt;}
.y1ee{bottom:759.102667pt;}
.y9{bottom:759.772000pt;}
.y17f{bottom:760.096000pt;}
.y1cb{bottom:760.945333pt;}
.yf8{bottom:762.337333pt;}
.y118{bottom:764.369333pt;}
.y34{bottom:775.044000pt;}
.y5b{bottom:776.729333pt;}
.y13a{bottom:777.450667pt;}
.yb6{bottom:778.104000pt;}
.y1ed{bottom:778.232000pt;}
.y8{bottom:778.900000pt;}
.y17e{bottom:779.224000pt;}
.y1ca{bottom:780.074667pt;}
.ye1{bottom:780.833333pt;}
.yf7{bottom:781.465333pt;}
.y117{bottom:783.497333pt;}
.y33{bottom:794.172000pt;}
.y5a{bottom:795.857333pt;}
.y1ec{bottom:797.360000pt;}
.y7{bottom:798.028000pt;}
.y17d{bottom:798.352000pt;}
.y1c9{bottom:799.202667pt;}
.y1a1{bottom:802.141333pt;}
.y116{bottom:802.625333pt;}
.yd6{bottom:805.274668pt;}
.yf6{bottom:806.946667pt;}
.y32{bottom:813.300000pt;}
.y59{bottom:814.986667pt;}
.y1eb{bottom:816.488000pt;}
.y6{bottom:817.157333pt;}
.y1c8{bottom:818.330667pt;}
.yb5{bottom:821.269333pt;}
.y115{bottom:825.312000pt;}
.y17c{bottom:825.450667pt;}
.y31{bottom:832.428000pt;}
.y58{bottom:834.114667pt;}
.y5{bottom:836.285333pt;}
.y1c7{bottom:837.458667pt;}
.yb4{bottom:840.398667pt;}
.y1ea{bottom:843.586667pt;}
.y17b{bottom:844.578667pt;}
.ya2{bottom:851.556000pt;}
.y57{bottom:853.242667pt;}
.y4{bottom:855.413333pt;}
.y114{bottom:855.968000pt;}
.y30{bottom:859.526667pt;}
.y1c6{bottom:861.909333pt;}
.y1e9{bottom:862.714667pt;}
.y17a{bottom:863.706667pt;}
.ya1{bottom:870.684000pt;}
.y56{bottom:872.370667pt;}
.y113{bottom:875.096000pt;}
.y2f{bottom:878.654667pt;}
.y179{bottom:882.834667pt;}
.ya0{bottom:889.813333pt;}
.y55{bottom:891.498667pt;}
.y112{bottom:894.225333pt;}
.y2e{bottom:897.782667pt;}
.y3{bottom:900.984000pt;}
.y178{bottom:901.964000pt;}
.y9f{bottom:908.941333pt;}
.y111{bottom:913.353333pt;}
.y2d{bottom:916.910667pt;}
.y54{bottom:919.348000pt;}
.y177{bottom:921.092000pt;}
.y9e{bottom:928.069333pt;}
.y2{bottom:930.708000pt;}
.y110{bottom:932.481333pt;}
.y2c{bottom:936.040000pt;}
.y176{bottom:940.220000pt;}
.y9d{bottom:947.197333pt;}
.y10f{bottom:951.609333pt;}
.y2b{bottom:955.168000pt;}
.y1{bottom:966.216000pt;}
.y2a{bottom:974.296000pt;}
.h1d{height:12.386667pt;}
.h22{height:14.864000pt;}
.h18{height:20.672496pt;}
.hc{height:25.036826pt;}
.hd{height:27.581306pt;}
.hf{height:28.061246pt;}
.he{height:28.304871pt;}
.h14{height:30.306380pt;}
.h13{height:30.306382pt;}
.h12{height:30.508636pt;}
.hb{height:30.965936pt;}
.h15{height:31.559924pt;}
.h17{height:32.952612pt;}
.h1b{height:33.102304pt;}
.h4{height:33.611349pt;}
.h19{height:34.088116pt;}
.h10{height:40.222337pt;}
.h6{height:43.548809pt;}
.h5{height:44.568986pt;}
.h9{height:45.461641pt;}
.h1e{height:47.289141pt;}
.h7{height:49.249857pt;}
.h3{height:51.403288pt;}
.h8{height:56.747349pt;}
.h1f{height:57.382016pt;}
.h20{height:57.387349pt;}
.h2{height:60.615267pt;}
.h1a{height:60.967408pt;}
.h1c{height:103.618583pt;}
.h21{height:124.342300pt;}
.h16{height:184.963352pt;}
.h11{height:204.758691pt;}
.ha{height:233.868530pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:132.850417pt;}
.w5{width:134.970208pt;}
.w8{width:138.824375pt;}
.w6{width:145.267083pt;}
.wa{width:165.470680pt;}
.w9{width:166.745680pt;}
.wb{width:170.095680pt;}
.wc{width:172.639430pt;}
.w3{width:396.847683pt;}
.w4{width:396.854543pt;}
.w2{width:425.184562pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:2.842599pt;}
.x3d{left:4.931250pt;}
.x53{left:5.917500pt;}
.x3c{left:6.957292pt;}
.x3b{left:9.077083pt;}
.x58{left:10.892500pt;}
.x46{left:14.170284pt;}
.x39{left:16.290076pt;}
.xa{left:19.410809pt;}
.x48{left:23.743750pt;}
.x3e{left:25.863542pt;}
.x59{left:31.036250pt;}
.x56{left:32.553383pt;}
.x52{left:33.828383pt;}
.x44{left:36.160417pt;}
.x5d{left:37.178383pt;}
.x62{left:39.722133pt;}
.x26{left:41.932729pt;}
.x30{left:45.112527pt;}
.x47{left:52.172604pt;}
.x3a{left:54.292396pt;}
.x23{left:55.865663pt;}
.x4b{left:58.146562pt;}
.xf{left:60.622424pt;}
.x43{left:64.589271pt;}
.xe{left:67.313804pt;}
.x57{left:72.404000pt;}
.x1f{left:74.025869pt;}
.x5e{left:77.029000pt;}
.x63{left:79.572750pt;}
.x1e{left:81.152124pt;}
.xd{left:94.500395pt;}
.x2d{left:106.875356pt;}
.x5{left:113.385333pt;}
.x8{left:115.148589pt;}
.x27{left:121.105348pt;}
.x4c{left:124.346250pt;}
.x36{left:126.743523pt;}
.x2f{left:128.325806pt;}
.x22{left:132.397430pt;}
.x51{left:136.049333pt;}
.x28{left:139.225645pt;}
.x12{left:141.581244pt;}
.x4{left:143.622667pt;}
.x54{left:144.565500pt;}
.x5f{left:147.915500pt;}
.x31{left:150.378685pt;}
.x55{left:153.325333pt;}
.x14{left:154.701003pt;}
.xc{left:155.743393pt;}
.x1{left:160.661333pt;}
.xb{left:162.434773pt;}
.x20{left:164.198515pt;}
.x9{left:165.597581pt;}
.x2{left:170.530667pt;}
.x24{left:176.572788pt;}
.x1b{left:182.642667pt;}
.x6{left:184.252000pt;}
.x49{left:187.452000pt;}
.x3f{left:189.378667pt;}
.x1c{left:198.426667pt;}
.x13{left:199.600069pt;}
.x29{left:201.731757pt;}
.x35{left:209.584941pt;}
.x19{left:210.478979pt;}
.x32{left:217.892016pt;}
.x2e{left:223.337747pt;}
.x38{left:231.310667pt;}
.x1d{left:233.590613pt;}
.x11{left:250.853335pt;}
.x2a{left:256.071437pt;}
.x10{left:257.544715pt;}
.x17{left:260.907560pt;}
.x3{left:271.354667pt;}
.x33{left:272.472214pt;}
.x21{left:273.992378pt;}
.x2b{left:295.880071pt;}
.x1a{left:304.942802pt;}
.x60{left:310.530667pt;}
.x61{left:312.690667pt;}
.x25{left:314.725736pt;}
.x34{left:318.989131pt;}
.x4a{left:321.230667pt;}
.x40{left:324.217333pt;}
.x4d{left:328.788000pt;}
.x41{left:329.848000pt;}
.x16{left:345.661358pt;}
.x2c{left:347.269922pt;}
.x15{left:352.352738pt;}
.x18{left:355.368594pt;}
.x37{left:375.601107pt;}
.x50{left:382.584000pt;}
.x4f{left:391.313333pt;}
.x42{left:471.142667pt;}
.x45{left:485.441333pt;}
.x5a{left:492.178667pt;}
.x5b{left:501.345333pt;}
.x64{left:505.332000pt;}
.x5c{left:590.774667pt;}
.x4e{left:622.994667pt;}
}




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