
    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_759a3ad463f855f6f367cfd4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_b45e78f6f214ee695a089c9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_3554432f5abc1a2c96726258.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_9e07000ddb1a3f1fd646cd3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_ecb423be72b555aef12e1e4b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_cfe7250f8ab17ca25724c95d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113000;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_bd00d7ae23492d368bc675fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_fd1b33e5cd594889deabf859.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.770000;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_f6ea98ae4aa3ff8d18666eec.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_8ae691dadc03579ca04309a1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.801000;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_deb7a42bd7fb0ee4cbd57d76.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.237000;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_7d725fb90f16328989acee6d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.406000;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_b4f4286f04961005868bbd40.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.222000;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_3ec50f6cc0a6d51ed3ceaa62.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.691000;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_34173b3edae202c614308c68.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;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_c95e0075742358b9b8a24011.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.650000;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_a1e2c5edbb13f56fe30294a6.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_2787c860b067d9e349b9d9eb.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_63a7c617f2ef7ed47683d077.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.023000;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:ff14;src:url('chunks/assets/font_d3f8741084b3f5acd4b5609a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-14.901496px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.487915px;}
.v6{vertical-align:18.000000px;}
.v4{vertical-align:23.462845px;}
.v2{vertical-align:26.399780px;}
.ls7{letter-spacing:-4.667933px;}
.ls1c{letter-spacing:-1.800000px;}
.ls15{letter-spacing:-1.293600px;}
.ls14{letter-spacing:-1.176000px;}
.ls11{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.764400px;}
.ls6{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.470400px;}
.ls10{letter-spacing:-0.411600px;}
.lsc{letter-spacing:-0.176400px;}
.ls17{letter-spacing:-0.066889px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000002px;}
.ls1a{letter-spacing:0.000070px;}
.ls18{letter-spacing:0.058679px;}
.ls19{letter-spacing:0.133777px;}
.ls9{letter-spacing:0.276410px;}
.lsa{letter-spacing:0.293994px;}
.ls2{letter-spacing:0.294000px;}
.ls8{letter-spacing:0.294026px;}
.ls3{letter-spacing:0.299843px;}
.lsb{letter-spacing:0.352800px;}
.ls13{letter-spacing:0.616843px;}
.ls1b{letter-spacing:0.764400px;}
.ls16{letter-spacing:0.823200px;}
.ls12{letter-spacing:0.882000px;}
.lsf{letter-spacing:1.411200px;}
.ls0{letter-spacing:5.460000px;}
.ls1{letter-spacing:16.860000px;}
.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;}
}
.ws1{word-spacing:-26.208000px;}
.ws0{word-spacing:-21.216000px;}
.wsca{word-spacing:-15.250601px;}
.wsc9{word-spacing:-15.116823px;}
.wsc8{word-spacing:-14.641200px;}
.wse6{word-spacing:-14.582400px;}
.ws16{word-spacing:-14.112000px;}
.ws19{word-spacing:-13.818000px;}
.ws17{word-spacing:-13.641600px;}
.ws8e{word-spacing:-13.406400px;}
.ws18{word-spacing:-13.347600px;}
.ws1a{word-spacing:-13.053600px;}
.wsc6{word-spacing:-12.642000px;}
.wsc7{word-spacing:-12.524400px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.ws1b{word-spacing:-11.426400px;}
.ws5{word-spacing:-10.800000px;}
.ws8f{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.117800px;}
.wsea{word-spacing:-9.855000px;}
.wse7{word-spacing:-9.672600px;}
.wse8{word-spacing:-9.315000px;}
.ws6{word-spacing:-9.198000px;}
.ws6e{word-spacing:-8.640000px;}
.wsfe{word-spacing:-8.100000px;}
.wse9{word-spacing:-6.898500px;}
.ws6b{word-spacing:-1.411200px;}
.wscd{word-spacing:-0.999600px;}
.wsce{word-spacing:-0.882000px;}
.wsbb{word-spacing:-0.705600px;}
.ws52{word-spacing:-0.646800px;}
.wsc4{word-spacing:-0.588000px;}
.ws90{word-spacing:-0.529200px;}
.wsd0{word-spacing:-0.470400px;}
.ws80{word-spacing:-0.352800px;}
.ws1c{word-spacing:-0.294000px;}
.ws73{word-spacing:-0.235200px;}
.wsa1{word-spacing:-0.176400px;}
.ws9f{word-spacing:-0.117600px;}
.ws100{word-spacing:-0.090000px;}
.ws89{word-spacing:-0.058800px;}
.wse5{word-spacing:-0.058679px;}
.ws101{word-spacing:-0.045000px;}
.wsff{word-spacing:-0.031500px;}
.ws7{word-spacing:0.000000px;}
.ws2a{word-spacing:0.058800px;}
.wsd1{word-spacing:0.117600px;}
.ws5b{word-spacing:0.176400px;}
.ws69{word-spacing:0.235200px;}
.wsa8{word-spacing:0.529200px;}
.ws7e{word-spacing:0.588000px;}
.ws8{word-spacing:0.660000px;}
.wsd8{word-spacing:0.705600px;}
.wsa4{word-spacing:0.764400px;}
.wsc5{word-spacing:0.864000px;}
.wsd3{word-spacing:0.882000px;}
.ws5a{word-spacing:0.940800px;}
.ws46{word-spacing:0.999600px;}
.ws82{word-spacing:1.117200px;}
.ws5f{word-spacing:1.176000px;}
.wsa0{word-spacing:1.293600px;}
.ws25{word-spacing:1.352400px;}
.ws43{word-spacing:1.470000px;}
.ws99{word-spacing:1.528800px;}
.ws9c{word-spacing:1.587600px;}
.wsd7{word-spacing:1.646400px;}
.ws10{word-spacing:1.705200px;}
.ws57{word-spacing:1.764000px;}
.ws81{word-spacing:1.822800px;}
.wsc2{word-spacing:1.881600px;}
.ws12{word-spacing:1.940400px;}
.wsde{word-spacing:1.999200px;}
.wsef{word-spacing:2.116800px;}
.ws11{word-spacing:2.234400px;}
.wsf1{word-spacing:2.352000px;}
.ws5e{word-spacing:2.410800px;}
.ws75{word-spacing:2.469600px;}
.ws3c{word-spacing:2.587200px;}
.wsb3{word-spacing:2.646000px;}
.wsb7{word-spacing:2.704800px;}
.ws7d{word-spacing:2.763600px;}
.ws1e{word-spacing:2.822400px;}
.ws9d{word-spacing:2.881200px;}
.ws93{word-spacing:2.940000px;}
.ws13{word-spacing:2.998794px;}
.wsb8{word-spacing:2.998800px;}
.ws3d{word-spacing:3.057600px;}
.ws54{word-spacing:3.116400px;}
.ws92{word-spacing:3.175200px;}
.ws7f{word-spacing:3.234000px;}
.wsc3{word-spacing:3.351600px;}
.ws35{word-spacing:3.586800px;}
.wsf0{word-spacing:3.645600px;}
.ws37{word-spacing:3.880800px;}
.ws8d{word-spacing:3.939600px;}
.wsf2{word-spacing:4.057200px;}
.ws53{word-spacing:4.116000px;}
.ws56{word-spacing:4.174800px;}
.wsf3{word-spacing:4.292400px;}
.ws24{word-spacing:4.410000px;}
.wsb2{word-spacing:4.527600px;}
.ws42{word-spacing:4.586400px;}
.ws71{word-spacing:4.645200px;}
.ws48{word-spacing:4.704000px;}
.wsac{word-spacing:4.762800px;}
.ws32{word-spacing:4.821600px;}
.wsd4{word-spacing:4.880400px;}
.wsdd{word-spacing:4.939200px;}
.ws74{word-spacing:4.998000px;}
.ws5d{word-spacing:5.056800px;}
.ws7b{word-spacing:5.115600px;}
.wsae{word-spacing:5.174400px;}
.wsa9{word-spacing:5.292000px;}
.ws9{word-spacing:5.350800px;}
.ws78{word-spacing:5.409600px;}
.ws34{word-spacing:5.468400px;}
.wsab{word-spacing:5.527200px;}
.ws7c{word-spacing:5.586000px;}
.ws86{word-spacing:5.762400px;}
.wsf4{word-spacing:5.821200px;}
.ws4b{word-spacing:5.880000px;}
.ws33{word-spacing:5.938800px;}
.wsd{word-spacing:5.997600px;}
.ws4f{word-spacing:6.115200px;}
.ws97{word-spacing:6.174000px;}
.ws4e{word-spacing:6.291600px;}
.ws3b{word-spacing:6.350400px;}
.ws3e{word-spacing:6.409200px;}
.ws55{word-spacing:6.468000px;}
.ws1d{word-spacing:6.703200px;}
.wsdc{word-spacing:6.762000px;}
.wsb9{word-spacing:6.879600px;}
.wsed{word-spacing:6.938400px;}
.ws85{word-spacing:6.997200px;}
.ws20{word-spacing:7.114800px;}
.ws68{word-spacing:7.173600px;}
.ws23{word-spacing:7.232400px;}
.ws87{word-spacing:7.291200px;}
.ws88{word-spacing:7.350000px;}
.ws41{word-spacing:7.408800px;}
.ws5c{word-spacing:7.467600px;}
.wsba{word-spacing:7.702800px;}
.wsee{word-spacing:7.820400px;}
.ws8a{word-spacing:7.879200px;}
.ws31{word-spacing:7.938000px;}
.ws9e{word-spacing:7.996800px;}
.wsec{word-spacing:8.055600px;}
.wsf{word-spacing:8.114400px;}
.ws58{word-spacing:8.232000px;}
.wsa2{word-spacing:8.290800px;}
.ws59{word-spacing:8.349600px;}
.wsc1{word-spacing:8.408400px;}
.ws94{word-spacing:8.467200px;}
.ws36{word-spacing:8.526000px;}
.ws29{word-spacing:8.643600px;}
.ws14{word-spacing:8.878800px;}
.wsfa{word-spacing:8.996400px;}
.wsbf{word-spacing:9.055200px;}
.ws49{word-spacing:9.172800px;}
.wsc0{word-spacing:9.231600px;}
.wsdf{word-spacing:9.290400px;}
.ws96{word-spacing:9.349200px;}
.ws3a{word-spacing:9.466800px;}
.wsb0{word-spacing:9.525600px;}
.ws4a{word-spacing:9.584400px;}
.wsf7{word-spacing:9.643200px;}
.wsa7{word-spacing:9.819600px;}
.wscb{word-spacing:9.937200px;}
.ws83{word-spacing:9.996000px;}
.ws84{word-spacing:10.054800px;}
.wsd5{word-spacing:10.172400px;}
.ws3f{word-spacing:10.231200px;}
.ws30{word-spacing:10.348800px;}
.ws44{word-spacing:10.466400px;}
.ws6a{word-spacing:10.584000px;}
.wsbe{word-spacing:10.642800px;}
.ws4c{word-spacing:10.701600px;}
.ws51{word-spacing:10.819200px;}
.ws22{word-spacing:10.995600px;}
.ws60{word-spacing:11.172000px;}
.wsdb{word-spacing:11.289600px;}
.ws21{word-spacing:11.348400px;}
.ws95{word-spacing:11.407200px;}
.wsa3{word-spacing:11.642400px;}
.wse{word-spacing:11.760000px;}
.ws47{word-spacing:11.818800px;}
.ws98{word-spacing:11.936400px;}
.ws76{word-spacing:11.995200px;}
.wsfc{word-spacing:12.112800px;}
.ws28{word-spacing:12.171600px;}
.ws63{word-spacing:12.348000px;}
.wsf9{word-spacing:12.524400px;}
.ws2e{word-spacing:12.642000px;}
.ws61{word-spacing:12.877200px;}
.ws66{word-spacing:13.053600px;}
.wsd6{word-spacing:13.171200px;}
.wsf5{word-spacing:13.230000px;}
.ws38{word-spacing:13.465200px;}
.ws2c{word-spacing:13.700400px;}
.ws8b{word-spacing:13.759200px;}
.ws27{word-spacing:13.818000px;}
.wsf8{word-spacing:13.935600px;}
.ws45{word-spacing:13.994400px;}
.ws2b{word-spacing:14.229600px;}
.wsda{word-spacing:14.406000px;}
.wse2{word-spacing:14.464800px;}
.ws4d{word-spacing:14.641200px;}
.wsbc{word-spacing:14.700000px;}
.ws64{word-spacing:14.758799px;}
.wscf{word-spacing:15.052801px;}
.ws91{word-spacing:15.111600px;}
.ws39{word-spacing:15.170399px;}
.wsb1{word-spacing:15.288000px;}
.wse3{word-spacing:15.405600px;}
.wsb5{word-spacing:15.523200px;}
.wsb6{word-spacing:15.934800px;}
.ws2f{word-spacing:15.993601px;}
.wse1{word-spacing:16.170000px;}
.wsa5{word-spacing:16.228800px;}
.wsa{word-spacing:16.758000px;}
.ws9a{word-spacing:16.875600px;}
.ws26{word-spacing:16.934399px;}
.ws9b{word-spacing:16.993200px;}
.ws77{word-spacing:17.052000px;}
.ws70{word-spacing:17.110800px;}
.ws2d{word-spacing:17.522400px;}
.wsaf{word-spacing:17.757600px;}
.ws67{word-spacing:17.934000px;}
.wsbd{word-spacing:18.051600px;}
.wscc{word-spacing:18.169199px;}
.ws65{word-spacing:18.463201px;}
.wsd9{word-spacing:18.698399px;}
.ws62{word-spacing:18.992400px;}
.wse0{word-spacing:19.168800px;}
.wsfd{word-spacing:19.404000px;}
.ws7a{word-spacing:19.639200px;}
.ws6d{word-spacing:19.992000px;}
.ws6c{word-spacing:20.109600px;}
.wsa6{word-spacing:20.286000px;}
.ws72{word-spacing:20.521200px;}
.wsb4{word-spacing:20.580000px;}
.wsad{word-spacing:21.109200px;}
.ws8c{word-spacing:23.343601px;}
.wsaa{word-spacing:23.872800px;}
.wsf6{word-spacing:23.990400px;}
.ws40{word-spacing:24.049200px;}
.wseb{word-spacing:24.931201px;}
.wsfb{word-spacing:25.166401px;}
.ws1f{word-spacing:25.284001px;}
.wsb{word-spacing:25.930801px;}
.wse4{word-spacing:27.048001px;}
.wsd2{word-spacing:27.224401px;}
.wsc{word-spacing:27.283199px;}
.ws79{word-spacing:27.400801px;}
.ws15{word-spacing:31.222801px;}
.ws50{word-spacing:32.222399px;}
.ws6f{word-spacing:76.031994px;}
._a{margin-left:-11.385579px;}
._c{margin-left:-6.056400px;}
._9{margin-left:-4.764960px;}
._4{margin-left:-3.565179px;}
._1{margin-left:-2.265579px;}
._0{margin-left:-1.060821px;}
._2{width:1.872000px;}
._f{width:2.931960px;}
._8{width:3.949211px;}
._2e{width:5.261838px;}
._7{width:6.595195px;}
._e{width:7.971647px;}
._b{width:9.114000px;}
._10{width:10.579680px;}
._11{width:11.961573px;}
._2f{width:13.464438px;}
._5{width:14.520002px;}
._6{width:15.899982px;}
._3{width:16.900834px;}
._d{width:18.355201px;}
._31{width:23.304959px;}
._30{width:45.264959px;}
._13{width:47.951996px;}
._23{width:63.119994px;}
._12{width:70.271994px;}
._2b{width:71.936398px;}
._15{width:86.543994px;}
._28{width:160.703996px;}
._16{width:200.975996px;}
._27{width:228.441641px;}
._1d{width:233.193577px;}
._29{width:234.600041px;}
._24{width:296.735989px;}
._2a{width:298.147178px;}
._2d{width:312.249641px;}
._1c{width:320.160050px;}
._19{width:343.583981px;}
._18{width:377.087978px;}
._1f{width:390.585536px;}
._25{width:449.380819px;}
._20{width:498.585599px;}
._1a{width:504.719998px;}
._22{width:524.749177px;}
._26{width:599.481641px;}
._1e{width:685.679998px;}
._2c{width:846.767998px;}
._17{width:849.407998px;}
._14{width:886.847957px;}
._21{width:915.599998px;}
._1b{width:937.823957px;}
.fc3{color:rgb(85,85,84);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(62,62,62);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.500000px;}
.fse{font-size:41.160001px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fs10{font-size:58.679398px;}
.fs8{font-size:58.800001px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800001px;}
.fs3{font-size:66.000000px;}
.fsf{font-size:66.888599px;}
.fs1{font-size:78.000000px;}
.fs9{font-size:97.248596px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y18a{bottom:5.120865px;}
.y34{bottom:6.589325px;}
.y23{bottom:75.191248px;}
.y22{bottom:87.192753px;}
.y21{bottom:99.194252px;}
.y188{bottom:100.430397px;}
.y172{bottom:100.444797px;}
.y130{bottom:100.767599px;}
.y104{bottom:100.774799px;}
.y139{bottom:105.880795px;}
.y6e{bottom:106.620895px;}
.y9a{bottom:106.635296px;}
.y1b6{bottom:106.671297px;}
.yd8{bottom:109.051527px;}
.y1e2{bottom:109.620893px;}
.y20{bottom:111.195751px;}
.y14e{bottom:112.595703px;}
.y1ef{bottom:112.796262px;}
.y187{bottom:118.430397px;}
.y171{bottom:118.437597px;}
.y12f{bottom:118.760399px;}
.y103{bottom:118.767599px;}
.y1e1{bottom:123.120894px;}
.y1f{bottom:123.197250px;}
.y138{bottom:123.887995px;}
.y6d{bottom:124.620895px;}
.y99{bottom:124.628096px;}
.y1b5{bottom:124.664097px;}
.y1ee{bottom:124.797762px;}
.yd7{bottom:127.279528px;}
.y14d{bottom:130.588503px;}
.y170{bottom:136.430397px;}
.y186{bottom:136.437597px;}
.y1e0{bottom:136.620894px;}
.y102{bottom:136.760399px;}
.y137{bottom:141.880795px;}
.y98{bottom:142.620895px;}
.y6c{bottom:142.628096px;}
.y1b4{bottom:142.656896px;}
.yd6{bottom:145.423527px;}
.y14c{bottom:148.581303px;}
.y1ed{bottom:150.113262px;}
.y1df{bottom:150.120894px;}
.y16f{bottom:154.430397px;}
.y101{bottom:154.760399px;}
.y12e{bottom:154.782000px;}
.y37{bottom:156.461998px;}
.y136{bottom:159.902407px;}
.y6b{bottom:160.620895px;}
.y97{bottom:160.625696px;}
.y1b3{bottom:160.649696px;}
.yd5{bottom:163.567527px;}
.y1de{bottom:163.620895px;}
.y14b{bottom:166.574102px;}
.y1ec{bottom:168.110262px;}
.y31{bottom:168.157345px;}
.y185{bottom:172.451998px;}
.y100{bottom:172.767599px;}
.y12d{bottom:172.774799px;}
.y36{bottom:174.461998px;}
.y1dd{bottom:177.120895px;}
.y135{bottom:177.895206px;}
.y96{bottom:178.620895px;}
.y6a{bottom:178.635296px;}
.y1b2{bottom:178.642496px;}
.yd4{bottom:181.711526px;}
.y35{bottom:183.461998px;}
.y14a{bottom:184.566902px;}
.y1eb{bottom:186.107261px;}
.y30{bottom:186.150146px;}
.y16e{bottom:190.437597px;}
.y184{bottom:190.444797px;}
.y1dc{bottom:190.620895px;}
.yff{bottom:190.760399px;}
.y12c{bottom:190.767599px;}
.y134{bottom:195.888006px;}
.y95{bottom:196.620895px;}
.y69{bottom:196.628096px;}
.y1b1{bottom:196.635296px;}
.yd3{bottom:199.855526px;}
.y149{bottom:202.566902px;}
.y1ea{bottom:204.104261px;}
.y2f{bottom:204.142960px;}
.y16d{bottom:208.430397px;}
.y183{bottom:208.437597px;}
.y12b{bottom:208.760399px;}
.yfe{bottom:208.767599px;}
.y133{bottom:213.880806px;}
.y68{bottom:214.620895px;}
.y1b0{bottom:214.628096px;}
.yd2{bottom:217.999525px;}
.y148{bottom:220.566902px;}
.y1e9{bottom:222.101261px;}
.y2e{bottom:222.135750px;}
.y16c{bottom:226.430397px;}
.yfd{bottom:226.760399px;}
.y12a{bottom:226.818001px;}
.y67{bottom:232.620895px;}
.y94{bottom:232.628096px;}
.yd1{bottom:236.143524px;}
.y28{bottom:239.352608px;}
.y1e8{bottom:240.098261px;}
.y2d{bottom:240.135750px;}
.y182{bottom:244.430397px;}
.y16b{bottom:244.451998px;}
.yfc{bottom:244.774799px;}
.y129{bottom:244.810800px;}
.y93{bottom:250.620895px;}
.y66{bottom:250.635296px;}
.yd0{bottom:254.287524px;}
.y147{bottom:256.609943px;}
.y27{bottom:257.367004px;}
.y1e7{bottom:258.095261px;}
.y2c{bottom:258.142960px;}
.y16a{bottom:262.444797px;}
.yfb{bottom:262.767599px;}
.y128{bottom:262.803600px;}
.y1db{bottom:268.620888px;}
.y65{bottom:268.628096px;}
.y1af{bottom:268.656896px;}
.ycf{bottom:272.431523px;}
.y146{bottom:274.602743px;}
.y26{bottom:275.359817px;}
.y2b{bottom:276.135750px;}
.y158{bottom:279.549889px;}
.y190{bottom:279.819855px;}
.y1f1{bottom:280.194140px;}
.y169{bottom:280.437597px;}
.y181{bottom:280.466398px;}
.yfa{bottom:280.760399px;}
.y127{bottom:280.796400px;}
.y64{bottom:286.620895px;}
.y1ae{bottom:286.649696px;}
.yce{bottom:290.575523px;}
.y145{bottom:292.595543px;}
.y25{bottom:293.352608px;}
.y2a{bottom:294.139526px;}
.y157{bottom:294.549889px;}
.y1da{bottom:295.620889px;}
.y168{bottom:298.430397px;}
.y180{bottom:298.459198px;}
.yf9{bottom:298.767599px;}
.y126{bottom:298.789200px;}
.y1f0{bottom:299.994141px;}
.y1ad{bottom:304.642496px;}
.y92{bottom:304.649696px;}
.y63{bottom:304.656896px;}
.ycd{bottom:308.719522px;}
.y1d9{bottom:309.120889px;}
.y192{bottom:309.540161px;}
.y156{bottom:309.549889px;}
.y144{bottom:310.588343px;}
.y24{bottom:311.352608px;}
.y29{bottom:312.132317px;}
.y167{bottom:316.430397px;}
.y17f{bottom:316.451998px;}
.yf8{bottom:316.760399px;}
.y125{bottom:316.782000px;}
.y1d8{bottom:322.620890px;}
.y1ac{bottom:322.635296px;}
.y91{bottom:322.642496px;}
.y62{bottom:322.649696px;}
.y155{bottom:324.549889px;}
.ycc{bottom:326.863521px;}
.y143{bottom:328.581142px;}
.y17e{bottom:334.444797px;}
.y124{bottom:334.774799px;}
.yf7{bottom:334.782022px;}
.y1d7{bottom:336.120890px;}
.y154{bottom:339.549889px;}
.y1ab{bottom:340.628096px;}
.y90{bottom:340.635296px;}
.y61{bottom:340.642496px;}
.ycb{bottom:345.007521px;}
.y142{bottom:346.573942px;}
.y1d6{bottom:349.620890px;}
.y166{bottom:352.430397px;}
.y17d{bottom:352.437597px;}
.y123{bottom:352.767599px;}
.yf6{bottom:352.774822px;}
.y153{bottom:354.549889px;}
.y1aa{bottom:358.620895px;}
.y8f{bottom:358.628096px;}
.y60{bottom:358.635296px;}
.yca{bottom:363.151520px;}
.y141{bottom:364.566742px;}
.y1e{bottom:365.315094px;}
.y152{bottom:369.549889px;}
.y17c{bottom:370.430397px;}
.y165{bottom:370.437620px;}
.y122{bottom:370.760399px;}
.yf5{bottom:370.767622px;}
.y1d5{bottom:376.620891px;}
.y8e{bottom:376.620895px;}
.y5f{bottom:376.628096px;}
.y1a9{bottom:376.656896px;}
.yc9{bottom:381.307520px;}
.y140{bottom:382.566742px;}
.y1d{bottom:387.815094px;}
.y164{bottom:388.444820px;}
.y17b{bottom:388.452021px;}
.yf4{bottom:388.760422px;}
.y121{bottom:388.818024px;}
.y1d4{bottom:390.120892px;}
.y5e{bottom:394.620895px;}
.y1a8{bottom:394.649696px;}
.y8d{bottom:394.685697px;}
.yc8{bottom:399.451520px;}
.y1d3{bottom:403.620892px;}
.y1c{bottom:405.815094px;}
.y163{bottom:406.437620px;}
.y17a{bottom:406.444820px;}
.yf3{bottom:406.760422px;}
.y120{bottom:406.810823px;}
.y1a7{bottom:412.642496px;}
.y5d{bottom:412.656896px;}
.y8c{bottom:412.678497px;}
.y1d2{bottom:417.120892px;}
.yc7{bottom:417.595519px;}
.y13f{bottom:418.595543px;}
.y1b{bottom:423.815094px;}
.y162{bottom:424.430420px;}
.y179{bottom:424.437620px;}
.y11f{bottom:424.803623px;}
.y1a6{bottom:430.635296px;}
.y5c{bottom:430.649696px;}
.y8b{bottom:430.671297px;}
.y13e{bottom:436.588343px;}
.y1a{bottom:441.815094px;}
.y161{bottom:442.430420px;}
.y11e{bottom:442.796423px;}
.yf2{bottom:442.825224px;}
.y1d1{bottom:444.120894px;}
.yc6{bottom:444.487518px;}
.y1a5{bottom:448.628096px;}
.y5b{bottom:448.642496px;}
.y8a{bottom:448.664097px;}
.y13d{bottom:454.581142px;}
.y1d0{bottom:457.620894px;}
.y19{bottom:459.815094px;}
.y178{bottom:460.437620px;}
.y160{bottom:460.459221px;}
.y11d{bottom:460.789223px;}
.yf1{bottom:460.818024px;}
.y1a4{bottom:466.620895px;}
.y5a{bottom:466.635296px;}
.y89{bottom:466.656896px;}
.yc5{bottom:468.800079px;}
.y13c{bottom:472.573942px;}
.y18{bottom:477.815094px;}
.y177{bottom:478.430420px;}
.y15f{bottom:478.452021px;}
.y11c{bottom:478.782022px;}
.yf0{bottom:478.810823px;}
.y1cf{bottom:484.620895px;}
.y59{bottom:484.628096px;}
.y88{bottom:484.649696px;}
.y13b{bottom:490.566742px;}
.y176{bottom:496.437620px;}
.y15e{bottom:496.444820px;}
.y11b{bottom:496.774822px;}
.yef{bottom:496.803623px;}
.y1ce{bottom:498.120895px;}
.y17{bottom:500.315094px;}
.y58{bottom:502.620895px;}
.y87{bottom:502.642496px;}
.y21a{bottom:504.987566px;}
.y13a{bottom:508.572589px;}
.y1cd{bottom:511.620895px;}
.y175{bottom:514.430420px;}
.y15d{bottom:514.437620px;}
.y11a{bottom:514.767622px;}
.yee{bottom:514.796423px;}
.y16{bottom:518.315094px;}
.y219{bottom:518.487566px;}
.y57{bottom:520.620895px;}
.ybc{bottom:520.628096px;}
.y86{bottom:520.635296px;}
.y1a3{bottom:520.671297px;}
.y1cc{bottom:529.620895px;}
.y218{bottom:531.987567px;}
.y241{bottom:531.987572px;}
.y15c{bottom:532.430420px;}
.y119{bottom:532.760422px;}
.yed{bottom:532.789223px;}
.yc4{bottom:534.994217px;}
.y15{bottom:536.315094px;}
.y1cb{bottom:538.620890px;}
.ybb{bottom:538.620895px;}
.y56{bottom:538.628096px;}
.y1a2{bottom:538.664097px;}
.y217{bottom:545.487567px;}
.y240{bottom:545.487572px;}
.yc3{bottom:549.994217px;}
.y15b{bottom:550.430420px;}
.yec{bottom:550.782022px;}
.y118{bottom:550.818024px;}
.y14{bottom:554.315094px;}
.y55{bottom:556.620895px;}
.yba{bottom:556.642496px;}
.y1a1{bottom:556.656896px;}
.y216{bottom:558.987567px;}
.y23f{bottom:558.987573px;}
.yc2{bottom:564.994217px;}
.y1ca{bottom:565.620891px;}
.y151{bottom:565.971588px;}
.yeb{bottom:568.774822px;}
.y117{bottom:568.810823px;}
.y13{bottom:572.315094px;}
.y215{bottom:572.487568px;}
.y23e{bottom:572.487573px;}
.y54{bottom:574.620895px;}
.yb9{bottom:574.635296px;}
.y1a0{bottom:574.649696px;}
.y1c9{bottom:579.120892px;}
.yc1{bottom:579.994217px;}
.y150{bottom:580.971588px;}
.y214{bottom:585.987568px;}
.y23d{bottom:585.987573px;}
.y15a{bottom:586.430420px;}
.y174{bottom:586.456198px;}
.yea{bottom:586.767622px;}
.y116{bottom:586.803623px;}
.y12{bottom:590.315094px;}
.y1c8{bottom:592.620892px;}
.y53{bottom:592.628096px;}
.y85{bottom:592.635296px;}
.y19f{bottom:592.642496px;}
.yc0{bottom:594.994217px;}
.y14f{bottom:595.971588px;}
.y213{bottom:599.487568px;}
.y23c{bottom:599.487574px;}
.y159{bottom:604.430420px;}
.y173{bottom:604.448997px;}
.ye9{bottom:604.760422px;}
.y115{bottom:604.796423px;}
.y1c7{bottom:606.120892px;}
.y11{bottom:608.315094px;}
.ybf{bottom:609.994217px;}
.y52{bottom:610.620895px;}
.y84{bottom:610.628096px;}
.y19e{bottom:610.635296px;}
.y212{bottom:612.987569px;}
.y23b{bottom:612.987574px;}
.y1c6{bottom:619.620893px;}
.ye8{bottom:622.760422px;}
.y114{bottom:622.789223px;}
.ybe{bottom:624.994217px;}
.y10{bottom:626.315094px;}
.y211{bottom:626.487569px;}
.y23a{bottom:626.487574px;}
.y83{bottom:628.620895px;}
.y19d{bottom:628.628096px;}
.y51{bottom:628.635296px;}
.yb8{bottom:628.642496px;}
.y1c5{bottom:633.120893px;}
.y210{bottom:639.987569px;}
.y239{bottom:639.987575px;}
.ybd{bottom:639.994217px;}
.y113{bottom:640.782022px;}
.ye7{bottom:640.796423px;}
.y19c{bottom:646.620895px;}
.y50{bottom:646.628096px;}
.yb7{bottom:646.635296px;}
.yf{bottom:648.815094px;}
.y20f{bottom:653.487570px;}
.y238{bottom:653.487575px;}
.y196{bottom:658.748108px;}
.y112{bottom:658.774822px;}
.ye6{bottom:658.789223px;}
.y1c4{bottom:660.120894px;}
.y4f{bottom:664.620895px;}
.yb6{bottom:664.628096px;}
.y19b{bottom:664.635296px;}
.ye{bottom:666.815094px;}
.y20e{bottom:666.987570px;}
.y237{bottom:666.987575px;}
.y1c3{bottom:673.620894px;}
.y195{bottom:673.748108px;}
.y111{bottom:676.767622px;}
.ye5{bottom:676.782022px;}
.y20d{bottom:680.487570px;}
.y236{bottom:680.487576px;}
.yb5{bottom:682.620895px;}
.y4e{bottom:682.628096px;}
.y82{bottom:682.656942px;}
.yd{bottom:684.815094px;}
.y1c2{bottom:687.120895px;}
.y194{bottom:688.748108px;}
.y20c{bottom:693.987571px;}
.y235{bottom:693.987576px;}
.y110{bottom:694.760422px;}
.ye4{bottom:694.774822px;}
.y4d{bottom:700.620895px;}
.y81{bottom:700.649742px;}
.yb4{bottom:700.678543px;}
.yc{bottom:702.815094px;}
.y193{bottom:703.748108px;}
.y20b{bottom:707.487571px;}
.y234{bottom:707.487576px;}
.ye3{bottom:712.767622px;}
.y10f{bottom:712.782022px;}
.y1c1{bottom:714.120895px;}
.y19a{bottom:718.620895px;}
.y80{bottom:718.642542px;}
.y4c{bottom:718.649742px;}
.yb3{bottom:718.671343px;}
.y189{bottom:720.492004px;}
.yb{bottom:720.815094px;}
.y20a{bottom:720.987571px;}
.y233{bottom:720.987577px;}
.ye2{bottom:730.760422px;}
.y10e{bottom:730.774822px;}
.y209{bottom:734.487572px;}
.y232{bottom:734.487577px;}
.y199{bottom:736.620895px;}
.y7f{bottom:736.635342px;}
.y4b{bottom:736.642542px;}
.yb2{bottom:736.664142px;}
.ya{bottom:738.815094px;}
.y208{bottom:747.987572px;}
.y231{bottom:747.987577px;}
.ye1{bottom:748.760422px;}
.y10d{bottom:748.767622px;}
.y7e{bottom:754.628141px;}
.y4a{bottom:754.635342px;}
.yb1{bottom:754.656942px;}
.y1e6{bottom:759.070678px;}
.y9{bottom:761.315094px;}
.y207{bottom:761.487572px;}
.y230{bottom:761.487578px;}
.y10c{bottom:766.760422px;}
.ye0{bottom:766.765176px;}
.y1e5{bottom:772.570678px;}
.y7d{bottom:772.620941px;}
.y49{bottom:772.628141px;}
.yb0{bottom:772.649742px;}
.y206{bottom:774.987573px;}
.y22f{bottom:774.987578px;}
.y18b{bottom:776.539307px;}
.ydf{bottom:784.760376px;}
.y1e4{bottom:786.070679px;}
.y205{bottom:788.487573px;}
.y22e{bottom:788.487578px;}
.y48{bottom:790.620941px;}
.y7c{bottom:790.628141px;}
.yaf{bottom:790.642542px;}
.y204{bottom:801.987573px;}
.y22d{bottom:801.987579px;}
.y10b{bottom:802.767576px;}
.y47{bottom:808.620941px;}
.ya5{bottom:808.635342px;}
.y203{bottom:815.487574px;}
.y22c{bottom:815.487579px;}
.y10a{bottom:820.760376px;}
.yde{bottom:820.796377px;}
.y18c{bottom:821.311687px;}
.y1e3{bottom:824.033386px;}
.y8{bottom:825.552612px;}
.ya4{bottom:826.628141px;}
.y7b{bottom:826.635342px;}
.y46{bottom:826.649742px;}
.y22b{bottom:828.987560px;}
.y202{bottom:828.987574px;}
.ydd{bottom:838.789177px;}
.y109{bottom:838.803034px;}
.y22a{bottom:842.487561px;}
.y201{bottom:842.487574px;}
.ya3{bottom:844.620941px;}
.y7a{bottom:844.628141px;}
.y45{bottom:844.642542px;}
.y229{bottom:855.987561px;}
.y200{bottom:855.987575px;}
.ydc{bottom:856.781977px;}
.y108{bottom:856.795834px;}
.y7{bottom:861.589508px;}
.y79{bottom:862.620941px;}
.y44{bottom:862.635342px;}
.yae{bottom:862.649742px;}
.ya2{bottom:862.656942px;}
.y1c0{bottom:862.686022px;}
.y18d{bottom:866.084068px;}
.y228{bottom:869.487561px;}
.y1ff{bottom:869.487575px;}
.ydb{bottom:874.774776px;}
.y107{bottom:874.788634px;}
.y43{bottom:880.628141px;}
.yad{bottom:880.642542px;}
.ya1{bottom:880.649742px;}
.y78{bottom:880.678543px;}
.y1bf{bottom:880.678821px;}
.y227{bottom:882.987562px;}
.y1fe{bottom:882.987575px;}
.yda{bottom:892.767576px;}
.y106{bottom:892.781434px;}
.y226{bottom:896.487562px;}
.y1fd{bottom:896.487576px;}
.y42{bottom:898.620941px;}
.yac{bottom:898.635342px;}
.ya0{bottom:898.642542px;}
.y77{bottom:898.671343px;}
.y1be{bottom:898.671621px;}
.y6{bottom:900.577515px;}
.y225{bottom:909.987562px;}
.y1fc{bottom:909.987576px;}
.yd9{bottom:910.760376px;}
.y105{bottom:910.774233px;}
.y18e{bottom:910.783098px;}
.y198{bottom:916.620941px;}
.y41{bottom:916.628141px;}
.y9f{bottom:916.635342px;}
.y76{bottom:916.664142px;}
.y1bd{bottom:916.664421px;}
.y224{bottom:923.487563px;}
.y1fb{bottom:923.487576px;}
.y40{bottom:934.620941px;}
.y9e{bottom:934.628141px;}
.y75{bottom:934.656942px;}
.y1bc{bottom:934.657221px;}
.y223{bottom:936.987563px;}
.y1fa{bottom:936.987577px;}
.y5{bottom:939.565521px;}
.y222{bottom:950.487563px;}
.y1f9{bottom:950.487577px;}
.y3f{bottom:952.620941px;}
.y197{bottom:952.628141px;}
.y74{bottom:952.649742px;}
.y1bb{bottom:952.650020px;}
.yab{bottom:952.665951px;}
.y18f{bottom:955.555479px;}
.y221{bottom:963.987564px;}
.y1f8{bottom:963.987577px;}
.y9d{bottom:970.620941px;}
.y3e{bottom:970.628141px;}
.y73{bottom:970.642542px;}
.y1ba{bottom:970.642820px;}
.y132{bottom:970.655273px;}
.yaa{bottom:970.658750px;}
.y220{bottom:977.487564px;}
.y1f7{bottom:977.487578px;}
.y4{bottom:978.553528px;}
.y131{bottom:985.655273px;}
.y3d{bottom:988.620941px;}
.y72{bottom:988.635342px;}
.y1b9{bottom:988.635620px;}
.y9c{bottom:988.642542px;}
.ya9{bottom:988.651550px;}
.y21f{bottom:990.987564px;}
.y1f6{bottom:990.987578px;}
.y191{bottom:1000.311859px;}
.y21e{bottom:1004.487565px;}
.y1f5{bottom:1004.487578px;}
.y71{bottom:1006.628141px;}
.y1b8{bottom:1006.628420px;}
.y3c{bottom:1006.635342px;}
.ya8{bottom:1006.644350px;}
.y21d{bottom:1017.987565px;}
.y1f4{bottom:1017.987579px;}
.y70{bottom:1024.620941px;}
.y1b7{bottom:1024.621220px;}
.y3b{bottom:1024.628141px;}
.ya7{bottom:1024.637150px;}
.y21c{bottom:1031.487566px;}
.y1f3{bottom:1031.487579px;}
.y3{bottom:1033.362579px;}
.y32{bottom:1035.750183px;}
.y6f{bottom:1042.614019px;}
.y3a{bottom:1042.620941px;}
.ya6{bottom:1042.629949px;}
.y21b{bottom:1044.987566px;}
.y1f2{bottom:1044.987579px;}
.y33{bottom:1108.714508px;}
.y2{bottom:1112.297058px;}
.y9b{bottom:1126.524628px;}
.y38{bottom:1126.524719px;}
.y39{bottom:1126.920719px;}
.y1{bottom:1126.925079px;}
.hd{height:27.424501px;}
.h10{height:27.814500px;}
.h21{height:32.130000px;}
.hb{height:37.086000px;}
.h1b{height:37.613494px;}
.hf{height:39.735000px;}
.h23{height:39.735076px;}
.h15{height:42.384000px;}
.h1f{height:42.840000px;}
.h1d{height:43.785000px;}
.h20{height:44.505000px;}
.h3{height:45.696000px;}
.h1e{height:45.814503px;}
.h17{height:46.704000px;}
.h2{height:47.231915px;}
.h11{height:47.232000px;}
.h14{height:47.472000px;}
.h1a{height:48.561123px;}
.h22{height:49.632000px;}
.ha{height:52.980000px;}
.h16{height:53.406000px;}
.h18{height:53.654399px;}
.h13{height:53.709599px;}
.hc{height:55.860001px;}
.h12{height:55.887688px;}
.h9{height:58.380000px;}
.h8{height:61.120201px;}
.h1c{height:62.420429px;}
.h7{height:67.194379px;}
.he{height:73.908933px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h6{height:137.232000px;}
.h19{height:323.183990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:234.392990px;}
.w3{width:705.295486px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.905453px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683151px;}
.x9{left:97.034552px;}
.xd{left:101.687113px;}
.x13{left:107.539352px;}
.xc{left:109.139397px;}
.x4{left:270.817497px;}
.xb{left:292.331715px;}
.x5{left:457.092911px;}
.x10{left:466.086731px;}
.xa{left:469.091552px;}
.x12{left:477.562363px;}
.xf{left:479.586593px;}
.x11{left:485.513718px;}
.x7{left:575.350479px;}
.x6{left:694.929886px;}
.x8{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-13.245775pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322591pt;}
.v6{vertical-align:16.000000pt;}
.v4{vertical-align:20.855862pt;}
.v2{vertical-align:23.466471pt;}
.ls7{letter-spacing:-4.149273pt;}
.ls1c{letter-spacing:-1.600000pt;}
.ls15{letter-spacing:-1.149867pt;}
.ls14{letter-spacing:-1.045333pt;}
.ls11{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.679467pt;}
.ls6{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.418133pt;}
.ls10{letter-spacing:-0.365867pt;}
.lsc{letter-spacing:-0.156800pt;}
.ls17{letter-spacing:-0.059457pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000001pt;}
.ls1a{letter-spacing:0.000063pt;}
.ls18{letter-spacing:0.052159pt;}
.ls19{letter-spacing:0.118913pt;}
.ls9{letter-spacing:0.245698pt;}
.lsa{letter-spacing:0.261328pt;}
.ls2{letter-spacing:0.261333pt;}
.ls8{letter-spacing:0.261357pt;}
.ls3{letter-spacing:0.266527pt;}
.lsb{letter-spacing:0.313600pt;}
.ls13{letter-spacing:0.548305pt;}
.ls1b{letter-spacing:0.679467pt;}
.ls16{letter-spacing:0.731733pt;}
.ls12{letter-spacing:0.784000pt;}
.lsf{letter-spacing:1.254400pt;}
.ls0{letter-spacing:4.853333pt;}
.ls1{letter-spacing:14.986667pt;}
.ws1{word-spacing:-23.296000pt;}
.ws0{word-spacing:-18.858667pt;}
.wsca{word-spacing:-13.556089pt;}
.wsc9{word-spacing:-13.437176pt;}
.wsc8{word-spacing:-13.014400pt;}
.wse6{word-spacing:-12.962134pt;}
.ws16{word-spacing:-12.544000pt;}
.ws19{word-spacing:-12.282667pt;}
.ws17{word-spacing:-12.125867pt;}
.ws8e{word-spacing:-11.916800pt;}
.ws18{word-spacing:-11.864534pt;}
.ws1a{word-spacing:-11.603200pt;}
.wsc6{word-spacing:-11.237334pt;}
.wsc7{word-spacing:-11.132800pt;}
.ws3{word-spacing:-11.096534pt;}
.ws4{word-spacing:-11.040000pt;}
.ws1b{word-spacing:-10.156800pt;}
.ws5{word-spacing:-9.600000pt;}
.ws8f{word-spacing:-9.344000pt;}
.ws2{word-spacing:-8.993600pt;}
.wsea{word-spacing:-8.760000pt;}
.wse7{word-spacing:-8.597867pt;}
.wse8{word-spacing:-8.280000pt;}
.ws6{word-spacing:-8.176000pt;}
.ws6e{word-spacing:-7.680000pt;}
.wsfe{word-spacing:-7.200000pt;}
.wse9{word-spacing:-6.132000pt;}
.ws6b{word-spacing:-1.254400pt;}
.wscd{word-spacing:-0.888533pt;}
.wsce{word-spacing:-0.784000pt;}
.wsbb{word-spacing:-0.627200pt;}
.ws52{word-spacing:-0.574933pt;}
.wsc4{word-spacing:-0.522667pt;}
.ws90{word-spacing:-0.470400pt;}
.wsd0{word-spacing:-0.418133pt;}
.ws80{word-spacing:-0.313600pt;}
.ws1c{word-spacing:-0.261333pt;}
.ws73{word-spacing:-0.209067pt;}
.wsa1{word-spacing:-0.156800pt;}
.ws9f{word-spacing:-0.104533pt;}
.ws100{word-spacing:-0.080000pt;}
.ws89{word-spacing:-0.052267pt;}
.wse5{word-spacing:-0.052159pt;}
.ws101{word-spacing:-0.040000pt;}
.wsff{word-spacing:-0.028000pt;}
.ws7{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.052267pt;}
.wsd1{word-spacing:0.104533pt;}
.ws5b{word-spacing:0.156800pt;}
.ws69{word-spacing:0.209067pt;}
.wsa8{word-spacing:0.470400pt;}
.ws7e{word-spacing:0.522667pt;}
.ws8{word-spacing:0.586667pt;}
.wsd8{word-spacing:0.627200pt;}
.wsa4{word-spacing:0.679467pt;}
.wsc5{word-spacing:0.768000pt;}
.wsd3{word-spacing:0.784000pt;}
.ws5a{word-spacing:0.836267pt;}
.ws46{word-spacing:0.888533pt;}
.ws82{word-spacing:0.993067pt;}
.ws5f{word-spacing:1.045333pt;}
.wsa0{word-spacing:1.149867pt;}
.ws25{word-spacing:1.202133pt;}
.ws43{word-spacing:1.306667pt;}
.ws99{word-spacing:1.358933pt;}
.ws9c{word-spacing:1.411200pt;}
.wsd7{word-spacing:1.463467pt;}
.ws10{word-spacing:1.515733pt;}
.ws57{word-spacing:1.568000pt;}
.ws81{word-spacing:1.620267pt;}
.wsc2{word-spacing:1.672533pt;}
.ws12{word-spacing:1.724800pt;}
.wsde{word-spacing:1.777067pt;}
.wsef{word-spacing:1.881600pt;}
.ws11{word-spacing:1.986133pt;}
.wsf1{word-spacing:2.090667pt;}
.ws5e{word-spacing:2.142933pt;}
.ws75{word-spacing:2.195200pt;}
.ws3c{word-spacing:2.299733pt;}
.wsb3{word-spacing:2.352000pt;}
.wsb7{word-spacing:2.404267pt;}
.ws7d{word-spacing:2.456533pt;}
.ws1e{word-spacing:2.508800pt;}
.ws9d{word-spacing:2.561067pt;}
.ws93{word-spacing:2.613333pt;}
.ws13{word-spacing:2.665595pt;}
.wsb8{word-spacing:2.665600pt;}
.ws3d{word-spacing:2.717867pt;}
.ws54{word-spacing:2.770133pt;}
.ws92{word-spacing:2.822400pt;}
.ws7f{word-spacing:2.874667pt;}
.wsc3{word-spacing:2.979200pt;}
.ws35{word-spacing:3.188267pt;}
.wsf0{word-spacing:3.240533pt;}
.ws37{word-spacing:3.449600pt;}
.ws8d{word-spacing:3.501867pt;}
.wsf2{word-spacing:3.606400pt;}
.ws53{word-spacing:3.658667pt;}
.ws56{word-spacing:3.710933pt;}
.wsf3{word-spacing:3.815467pt;}
.ws24{word-spacing:3.920000pt;}
.wsb2{word-spacing:4.024533pt;}
.ws42{word-spacing:4.076800pt;}
.ws71{word-spacing:4.129067pt;}
.ws48{word-spacing:4.181333pt;}
.wsac{word-spacing:4.233600pt;}
.ws32{word-spacing:4.285867pt;}
.wsd4{word-spacing:4.338133pt;}
.wsdd{word-spacing:4.390400pt;}
.ws74{word-spacing:4.442667pt;}
.ws5d{word-spacing:4.494933pt;}
.ws7b{word-spacing:4.547200pt;}
.wsae{word-spacing:4.599467pt;}
.wsa9{word-spacing:4.704000pt;}
.ws9{word-spacing:4.756267pt;}
.ws78{word-spacing:4.808533pt;}
.ws34{word-spacing:4.860800pt;}
.wsab{word-spacing:4.913067pt;}
.ws7c{word-spacing:4.965333pt;}
.ws86{word-spacing:5.122133pt;}
.wsf4{word-spacing:5.174400pt;}
.ws4b{word-spacing:5.226667pt;}
.ws33{word-spacing:5.278933pt;}
.wsd{word-spacing:5.331200pt;}
.ws4f{word-spacing:5.435733pt;}
.ws97{word-spacing:5.488000pt;}
.ws4e{word-spacing:5.592533pt;}
.ws3b{word-spacing:5.644800pt;}
.ws3e{word-spacing:5.697067pt;}
.ws55{word-spacing:5.749333pt;}
.ws1d{word-spacing:5.958400pt;}
.wsdc{word-spacing:6.010667pt;}
.wsb9{word-spacing:6.115200pt;}
.wsed{word-spacing:6.167467pt;}
.ws85{word-spacing:6.219733pt;}
.ws20{word-spacing:6.324267pt;}
.ws68{word-spacing:6.376533pt;}
.ws23{word-spacing:6.428800pt;}
.ws87{word-spacing:6.481067pt;}
.ws88{word-spacing:6.533333pt;}
.ws41{word-spacing:6.585600pt;}
.ws5c{word-spacing:6.637867pt;}
.wsba{word-spacing:6.846933pt;}
.wsee{word-spacing:6.951467pt;}
.ws8a{word-spacing:7.003733pt;}
.ws31{word-spacing:7.056000pt;}
.ws9e{word-spacing:7.108267pt;}
.wsec{word-spacing:7.160533pt;}
.wsf{word-spacing:7.212800pt;}
.ws58{word-spacing:7.317333pt;}
.wsa2{word-spacing:7.369600pt;}
.ws59{word-spacing:7.421867pt;}
.wsc1{word-spacing:7.474133pt;}
.ws94{word-spacing:7.526400pt;}
.ws36{word-spacing:7.578667pt;}
.ws29{word-spacing:7.683200pt;}
.ws14{word-spacing:7.892267pt;}
.wsfa{word-spacing:7.996800pt;}
.wsbf{word-spacing:8.049067pt;}
.ws49{word-spacing:8.153600pt;}
.wsc0{word-spacing:8.205867pt;}
.wsdf{word-spacing:8.258134pt;}
.ws96{word-spacing:8.310400pt;}
.ws3a{word-spacing:8.414934pt;}
.wsb0{word-spacing:8.467200pt;}
.ws4a{word-spacing:8.519467pt;}
.wsf7{word-spacing:8.571734pt;}
.wsa7{word-spacing:8.728534pt;}
.wscb{word-spacing:8.833067pt;}
.ws83{word-spacing:8.885334pt;}
.ws84{word-spacing:8.937600pt;}
.wsd5{word-spacing:9.042134pt;}
.ws3f{word-spacing:9.094400pt;}
.ws30{word-spacing:9.198934pt;}
.ws44{word-spacing:9.303467pt;}
.ws6a{word-spacing:9.408000pt;}
.wsbe{word-spacing:9.460267pt;}
.ws4c{word-spacing:9.512534pt;}
.ws51{word-spacing:9.617067pt;}
.ws22{word-spacing:9.773867pt;}
.ws60{word-spacing:9.930667pt;}
.wsdb{word-spacing:10.035200pt;}
.ws21{word-spacing:10.087467pt;}
.ws95{word-spacing:10.139734pt;}
.wsa3{word-spacing:10.348800pt;}
.wse{word-spacing:10.453334pt;}
.ws47{word-spacing:10.505600pt;}
.ws98{word-spacing:10.610134pt;}
.ws76{word-spacing:10.662400pt;}
.wsfc{word-spacing:10.766934pt;}
.ws28{word-spacing:10.819200pt;}
.ws63{word-spacing:10.976000pt;}
.wsf9{word-spacing:11.132800pt;}
.ws2e{word-spacing:11.237334pt;}
.ws61{word-spacing:11.446400pt;}
.ws66{word-spacing:11.603200pt;}
.wsd6{word-spacing:11.707734pt;}
.wsf5{word-spacing:11.760000pt;}
.ws38{word-spacing:11.969067pt;}
.ws2c{word-spacing:12.178134pt;}
.ws8b{word-spacing:12.230400pt;}
.ws27{word-spacing:12.282667pt;}
.wsf8{word-spacing:12.387200pt;}
.ws45{word-spacing:12.439467pt;}
.ws2b{word-spacing:12.648534pt;}
.wsda{word-spacing:12.805334pt;}
.wse2{word-spacing:12.857600pt;}
.ws4d{word-spacing:13.014400pt;}
.wsbc{word-spacing:13.066667pt;}
.ws64{word-spacing:13.118933pt;}
.wscf{word-spacing:13.380268pt;}
.ws91{word-spacing:13.432534pt;}
.ws39{word-spacing:13.484799pt;}
.wsb1{word-spacing:13.589334pt;}
.wse3{word-spacing:13.693867pt;}
.wsb5{word-spacing:13.798400pt;}
.wsb6{word-spacing:14.164267pt;}
.ws2f{word-spacing:14.216534pt;}
.wse1{word-spacing:14.373334pt;}
.wsa5{word-spacing:14.425600pt;}
.wsa{word-spacing:14.896000pt;}
.ws9a{word-spacing:15.000534pt;}
.ws26{word-spacing:15.052799pt;}
.ws9b{word-spacing:15.105067pt;}
.ws77{word-spacing:15.157334pt;}
.ws70{word-spacing:15.209600pt;}
.ws2d{word-spacing:15.575467pt;}
.wsaf{word-spacing:15.784533pt;}
.ws67{word-spacing:15.941334pt;}
.wsbd{word-spacing:16.045867pt;}
.wscc{word-spacing:16.150399pt;}
.ws65{word-spacing:16.411734pt;}
.wsd9{word-spacing:16.620799pt;}
.ws62{word-spacing:16.882134pt;}
.wse0{word-spacing:17.038934pt;}
.wsfd{word-spacing:17.248000pt;}
.ws7a{word-spacing:17.457067pt;}
.ws6d{word-spacing:17.770667pt;}
.ws6c{word-spacing:17.875200pt;}
.wsa6{word-spacing:18.032000pt;}
.ws72{word-spacing:18.241067pt;}
.wsb4{word-spacing:18.293334pt;}
.wsad{word-spacing:18.763734pt;}
.ws8c{word-spacing:20.749868pt;}
.wsaa{word-spacing:21.220267pt;}
.wsf6{word-spacing:21.324800pt;}
.ws40{word-spacing:21.377067pt;}
.wseb{word-spacing:22.161067pt;}
.wsfb{word-spacing:22.370134pt;}
.ws1f{word-spacing:22.474667pt;}
.wsb{word-spacing:23.049601pt;}
.wse4{word-spacing:24.042667pt;}
.wsd2{word-spacing:24.199467pt;}
.wsc{word-spacing:24.251733pt;}
.ws79{word-spacing:24.356267pt;}
.ws15{word-spacing:27.753601pt;}
.ws50{word-spacing:28.642132pt;}
.ws6f{word-spacing:67.583995pt;}
._a{margin-left:-10.120515pt;}
._c{margin-left:-5.383467pt;}
._9{margin-left:-4.235520pt;}
._4{margin-left:-3.169048pt;}
._1{margin-left:-2.013848pt;}
._0{margin-left:-0.942952pt;}
._2{width:1.664000pt;}
._f{width:2.606187pt;}
._8{width:3.510410pt;}
._2e{width:4.677189pt;}
._7{width:5.862396pt;}
._e{width:7.085908pt;}
._b{width:8.101333pt;}
._10{width:9.404160pt;}
._11{width:10.632509pt;}
._2f{width:11.968390pt;}
._5{width:12.906668pt;}
._6{width:14.133317pt;}
._3{width:15.022964pt;}
._d{width:16.315734pt;}
._31{width:20.715519pt;}
._30{width:40.235519pt;}
._13{width:42.623997pt;}
._23{width:56.106662pt;}
._12{width:62.463995pt;}
._2b{width:63.943465pt;}
._15{width:76.927995pt;}
._28{width:142.847997pt;}
._16{width:178.645330pt;}
._27{width:203.059236pt;}
._1d{width:207.283179pt;}
._29{width:208.533369pt;}
._24{width:263.765324pt;}
._2a{width:265.019714pt;}
._2d{width:277.555236pt;}
._1c{width:284.586711pt;}
._19{width:305.407983pt;}
._18{width:335.189314pt;}
._1f{width:347.187143pt;}
._25{width:399.449617pt;}
._20{width:443.187199pt;}
._1a{width:448.639998pt;}
._22{width:466.443713pt;}
._26{width:532.872569pt;}
._1e{width:609.493332pt;}
._2c{width:752.682665pt;}
._17{width:755.029332pt;}
._14{width:788.309295pt;}
._21{width:813.866665pt;}
._1b{width:833.621295pt;}
.fsb{font-size:28.000000pt;}
.fse{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fs10{font-size:52.159465pt;}
.fs8{font-size:52.266668pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933334pt;}
.fs3{font-size:58.666667pt;}
.fsf{font-size:59.456533pt;}
.fs1{font-size:69.333333pt;}
.fs9{font-size:86.443197pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y18a{bottom:4.551880pt;}
.y34{bottom:5.857178pt;}
.y23{bottom:66.836665pt;}
.y22{bottom:77.504669pt;}
.y21{bottom:88.172668pt;}
.y188{bottom:89.271464pt;}
.y172{bottom:89.284264pt;}
.y130{bottom:89.571199pt;}
.y104{bottom:89.577599pt;}
.y139{bottom:94.116262pt;}
.y6e{bottom:94.774129pt;}
.y9a{bottom:94.786930pt;}
.y1b6{bottom:94.818931pt;}
.yd8{bottom:96.934691pt;}
.y1e2{bottom:97.440794pt;}
.y20{bottom:98.840668pt;}
.y14e{bottom:100.085069pt;}
.y1ef{bottom:100.263344pt;}
.y187{bottom:105.271464pt;}
.y171{bottom:105.277864pt;}
.y12f{bottom:105.564799pt;}
.y103{bottom:105.571199pt;}
.y1e1{bottom:109.440794pt;}
.y1f{bottom:109.508667pt;}
.y138{bottom:110.122662pt;}
.y6d{bottom:110.774129pt;}
.y99{bottom:110.780529pt;}
.y1b5{bottom:110.812530pt;}
.y1ee{bottom:110.931344pt;}
.yd7{bottom:113.137358pt;}
.y14d{bottom:116.078669pt;}
.y170{bottom:121.271464pt;}
.y186{bottom:121.277864pt;}
.y1e0{bottom:121.440795pt;}
.y102{bottom:121.564799pt;}
.y137{bottom:126.116262pt;}
.y98{bottom:126.774129pt;}
.y6c{bottom:126.780529pt;}
.y1b4{bottom:126.806130pt;}
.yd6{bottom:129.265358pt;}
.y14c{bottom:132.072269pt;}
.y1ed{bottom:133.434011pt;}
.y1df{bottom:133.440795pt;}
.y16f{bottom:137.271464pt;}
.y101{bottom:137.564799pt;}
.y12e{bottom:137.584000pt;}
.y37{bottom:139.077332pt;}
.y136{bottom:142.135473pt;}
.y6b{bottom:142.774129pt;}
.y97{bottom:142.778396pt;}
.y1b3{bottom:142.799730pt;}
.yd5{bottom:145.393357pt;}
.y1de{bottom:145.440795pt;}
.y14b{bottom:148.065869pt;}
.y1ec{bottom:149.431344pt;}
.y31{bottom:149.473195pt;}
.y185{bottom:153.290665pt;}
.y100{bottom:153.571199pt;}
.y12d{bottom:153.577599pt;}
.y36{bottom:155.077332pt;}
.y1dd{bottom:157.440796pt;}
.y135{bottom:158.129072pt;}
.y96{bottom:158.774129pt;}
.y6a{bottom:158.786930pt;}
.y1b2{bottom:158.793330pt;}
.yd4{bottom:161.521357pt;}
.y35{bottom:163.077332pt;}
.y14a{bottom:164.059469pt;}
.y1eb{bottom:165.428677pt;}
.y30{bottom:165.466797pt;}
.y16e{bottom:169.277864pt;}
.y184{bottom:169.284264pt;}
.y1dc{bottom:169.440796pt;}
.yff{bottom:169.564799pt;}
.y12c{bottom:169.571199pt;}
.y134{bottom:174.122672pt;}
.y95{bottom:174.774129pt;}
.y69{bottom:174.780529pt;}
.y1b1{bottom:174.786930pt;}
.yd3{bottom:177.649356pt;}
.y149{bottom:180.059469pt;}
.y1ea{bottom:181.426010pt;}
.y2f{bottom:181.460409pt;}
.y16d{bottom:185.271464pt;}
.y183{bottom:185.277864pt;}
.y12b{bottom:185.564799pt;}
.yfe{bottom:185.571199pt;}
.y133{bottom:190.116272pt;}
.y68{bottom:190.774129pt;}
.y1b0{bottom:190.780529pt;}
.yd2{bottom:193.777356pt;}
.y148{bottom:196.059469pt;}
.y1e9{bottom:197.423343pt;}
.y2e{bottom:197.454000pt;}
.y16c{bottom:201.271464pt;}
.yfd{bottom:201.564799pt;}
.y12a{bottom:201.616001pt;}
.y67{bottom:206.774129pt;}
.y94{bottom:206.780529pt;}
.yd1{bottom:209.905355pt;}
.y28{bottom:212.757874pt;}
.y1e8{bottom:213.420676pt;}
.y2d{bottom:213.454000pt;}
.y182{bottom:217.271464pt;}
.y16b{bottom:217.290665pt;}
.yfc{bottom:217.577599pt;}
.y129{bottom:217.609600pt;}
.y93{bottom:222.774129pt;}
.y66{bottom:222.786930pt;}
.yd0{bottom:226.033355pt;}
.y147{bottom:228.097727pt;}
.y27{bottom:228.770671pt;}
.y1e7{bottom:229.418009pt;}
.y2c{bottom:229.460409pt;}
.y16a{bottom:233.284264pt;}
.yfb{bottom:233.571199pt;}
.y128{bottom:233.603200pt;}
.y1db{bottom:238.774123pt;}
.y65{bottom:238.780529pt;}
.y1af{bottom:238.806130pt;}
.ycf{bottom:242.161354pt;}
.y146{bottom:244.091327pt;}
.y26{bottom:244.764282pt;}
.y2b{bottom:245.454000pt;}
.y158{bottom:248.488790pt;}
.y190{bottom:248.728760pt;}
.y1f1{bottom:249.061458pt;}
.y169{bottom:249.277864pt;}
.y181{bottom:249.303465pt;}
.yfa{bottom:249.564799pt;}
.y127{bottom:249.596800pt;}
.y64{bottom:254.774129pt;}
.y1ae{bottom:254.799730pt;}
.yce{bottom:258.289353pt;}
.y145{bottom:260.084927pt;}
.y25{bottom:260.757874pt;}
.y2a{bottom:261.457357pt;}
.y157{bottom:261.822123pt;}
.y1da{bottom:262.774124pt;}
.y168{bottom:265.271464pt;}
.y180{bottom:265.297065pt;}
.yf9{bottom:265.571199pt;}
.y126{bottom:265.590400pt;}
.y1f0{bottom:266.661458pt;}
.y1ad{bottom:270.793330pt;}
.y92{bottom:270.799730pt;}
.y63{bottom:270.806130pt;}
.ycd{bottom:274.417353pt;}
.y1d9{bottom:274.774124pt;}
.y192{bottom:275.146810pt;}
.y156{bottom:275.155457pt;}
.y144{bottom:276.078527pt;}
.y24{bottom:276.757874pt;}
.y29{bottom:277.450948pt;}
.y167{bottom:281.271464pt;}
.y17f{bottom:281.290665pt;}
.yf8{bottom:281.564799pt;}
.y125{bottom:281.584000pt;}
.y1d8{bottom:286.774124pt;}
.y1ac{bottom:286.786930pt;}
.y91{bottom:286.793330pt;}
.y62{bottom:286.799730pt;}
.y155{bottom:288.488790pt;}
.ycc{bottom:290.545352pt;}
.y143{bottom:292.072127pt;}
.y17e{bottom:297.284264pt;}
.y124{bottom:297.577599pt;}
.yf7{bottom:297.584020pt;}
.y1d7{bottom:298.774124pt;}
.y154{bottom:301.822123pt;}
.y1ab{bottom:302.780529pt;}
.y90{bottom:302.786930pt;}
.y61{bottom:302.793330pt;}
.ycb{bottom:306.673352pt;}
.y142{bottom:308.065726pt;}
.y1d6{bottom:310.774125pt;}
.y166{bottom:313.271464pt;}
.y17d{bottom:313.277864pt;}
.y123{bottom:313.571199pt;}
.yf6{bottom:313.577620pt;}
.y153{bottom:315.155457pt;}
.y1aa{bottom:318.774129pt;}
.y8f{bottom:318.780529pt;}
.y60{bottom:318.786930pt;}
.yca{bottom:322.801351pt;}
.y141{bottom:324.059326pt;}
.y1e{bottom:324.724528pt;}
.y152{bottom:328.488790pt;}
.y17c{bottom:329.271464pt;}
.y165{bottom:329.277885pt;}
.y122{bottom:329.564799pt;}
.yf5{bottom:329.571220pt;}
.y1d5{bottom:334.774126pt;}
.y8e{bottom:334.774129pt;}
.y5f{bottom:334.780529pt;}
.y1a9{bottom:334.806130pt;}
.yc9{bottom:338.940018pt;}
.y140{bottom:340.059326pt;}
.y1d{bottom:344.724528pt;}
.y164{bottom:345.284285pt;}
.y17b{bottom:345.290685pt;}
.yf4{bottom:345.564819pt;}
.y121{bottom:345.616021pt;}
.y1d4{bottom:346.774126pt;}
.y5e{bottom:350.774129pt;}
.y1a8{bottom:350.799730pt;}
.y8d{bottom:350.831731pt;}
.yc8{bottom:355.068018pt;}
.y1d3{bottom:358.774126pt;}
.y1c{bottom:360.724528pt;}
.y163{bottom:361.277885pt;}
.y17a{bottom:361.284285pt;}
.yf3{bottom:361.564819pt;}
.y120{bottom:361.609621pt;}
.y1a7{bottom:366.793330pt;}
.y5d{bottom:366.806130pt;}
.y8c{bottom:366.825331pt;}
.y1d2{bottom:370.774127pt;}
.yc7{bottom:371.196017pt;}
.y13f{bottom:372.084927pt;}
.y1b{bottom:376.724528pt;}
.y162{bottom:377.271484pt;}
.y179{bottom:377.277885pt;}
.y11f{bottom:377.603221pt;}
.y1a6{bottom:382.786930pt;}
.y5c{bottom:382.799730pt;}
.y8b{bottom:382.818931pt;}
.y13e{bottom:388.078527pt;}
.y1a{bottom:392.724528pt;}
.y161{bottom:393.271484pt;}
.y11e{bottom:393.596820pt;}
.yf2{bottom:393.622421pt;}
.y1d1{bottom:394.774128pt;}
.yc6{bottom:395.100016pt;}
.y1a5{bottom:398.780529pt;}
.y5b{bottom:398.793330pt;}
.y8a{bottom:398.812530pt;}
.y13d{bottom:404.072127pt;}
.y1d0{bottom:406.774128pt;}
.y19{bottom:408.724528pt;}
.y178{bottom:409.277885pt;}
.y160{bottom:409.297085pt;}
.y11d{bottom:409.590420pt;}
.yf1{bottom:409.616021pt;}
.y1a4{bottom:414.774129pt;}
.y5a{bottom:414.786930pt;}
.y89{bottom:414.806130pt;}
.yc5{bottom:416.711182pt;}
.y13c{bottom:420.065726pt;}
.y18{bottom:424.724528pt;}
.y177{bottom:425.271484pt;}
.y15f{bottom:425.290685pt;}
.y11c{bottom:425.584020pt;}
.yf0{bottom:425.609621pt;}
.y1cf{bottom:430.774129pt;}
.y59{bottom:430.780529pt;}
.y88{bottom:430.799730pt;}
.y13b{bottom:436.059326pt;}
.y176{bottom:441.277885pt;}
.y15e{bottom:441.284285pt;}
.y11b{bottom:441.577620pt;}
.yef{bottom:441.603221pt;}
.y1ce{bottom:442.774129pt;}
.y17{bottom:444.724528pt;}
.y58{bottom:446.774129pt;}
.y87{bottom:446.793330pt;}
.y21a{bottom:448.877836pt;}
.y13a{bottom:452.064524pt;}
.y1cd{bottom:454.774129pt;}
.y175{bottom:457.271484pt;}
.y15d{bottom:457.277885pt;}
.y11a{bottom:457.571220pt;}
.yee{bottom:457.596820pt;}
.y16{bottom:460.724528pt;}
.y219{bottom:460.877837pt;}
.y57{bottom:462.774129pt;}
.ybc{bottom:462.780529pt;}
.y86{bottom:462.786930pt;}
.y1a3{bottom:462.818931pt;}
.y1cc{bottom:470.774129pt;}
.y218{bottom:472.877837pt;}
.y241{bottom:472.877842pt;}
.y15c{bottom:473.271484pt;}
.y119{bottom:473.564819pt;}
.yed{bottom:473.590420pt;}
.yc4{bottom:475.550415pt;}
.y15{bottom:476.724528pt;}
.y1cb{bottom:478.774125pt;}
.ybb{bottom:478.774129pt;}
.y56{bottom:478.780529pt;}
.y1a2{bottom:478.812530pt;}
.y217{bottom:484.877837pt;}
.y240{bottom:484.877842pt;}
.yc3{bottom:488.883748pt;}
.y15b{bottom:489.271484pt;}
.yec{bottom:489.584020pt;}
.y118{bottom:489.616021pt;}
.y14{bottom:492.724528pt;}
.y55{bottom:494.774129pt;}
.yba{bottom:494.793330pt;}
.y1a1{bottom:494.806130pt;}
.y216{bottom:496.877838pt;}
.y23f{bottom:496.877842pt;}
.yc2{bottom:502.217082pt;}
.y1ca{bottom:502.774126pt;}
.y151{bottom:503.085856pt;}
.yeb{bottom:505.577620pt;}
.y117{bottom:505.609621pt;}
.y13{bottom:508.724528pt;}
.y215{bottom:508.877838pt;}
.y23e{bottom:508.877843pt;}
.y54{bottom:510.774129pt;}
.yb9{bottom:510.786930pt;}
.y1a0{bottom:510.799730pt;}
.y1c9{bottom:514.774126pt;}
.yc1{bottom:515.550415pt;}
.y150{bottom:516.419189pt;}
.y214{bottom:520.877838pt;}
.y23d{bottom:520.877843pt;}
.y15a{bottom:521.271484pt;}
.y174{bottom:521.294398pt;}
.yea{bottom:521.571220pt;}
.y116{bottom:521.603221pt;}
.y12{bottom:524.724528pt;}
.y1c8{bottom:526.774126pt;}
.y53{bottom:526.780529pt;}
.y85{bottom:526.786930pt;}
.y19f{bottom:526.793330pt;}
.yc0{bottom:528.883748pt;}
.y14f{bottom:529.752523pt;}
.y213{bottom:532.877838pt;}
.y23c{bottom:532.877843pt;}
.y159{bottom:537.271484pt;}
.y173{bottom:537.287998pt;}
.ye9{bottom:537.564819pt;}
.y115{bottom:537.596820pt;}
.y1c7{bottom:538.774126pt;}
.y11{bottom:540.724528pt;}
.ybf{bottom:542.217082pt;}
.y52{bottom:542.774129pt;}
.y84{bottom:542.780529pt;}
.y19e{bottom:542.786930pt;}
.y212{bottom:544.877839pt;}
.y23b{bottom:544.877844pt;}
.y1c6{bottom:550.774127pt;}
.ye8{bottom:553.564819pt;}
.y114{bottom:553.590420pt;}
.ybe{bottom:555.550415pt;}
.y10{bottom:556.724528pt;}
.y211{bottom:556.877839pt;}
.y23a{bottom:556.877844pt;}
.y83{bottom:558.774129pt;}
.y19d{bottom:558.780529pt;}
.y51{bottom:558.786930pt;}
.yb8{bottom:558.793330pt;}
.y1c5{bottom:562.774127pt;}
.y210{bottom:568.877839pt;}
.y239{bottom:568.877844pt;}
.ybd{bottom:568.883748pt;}
.y113{bottom:569.584020pt;}
.ye7{bottom:569.596820pt;}
.y19c{bottom:574.774129pt;}
.y50{bottom:574.780529pt;}
.yb7{bottom:574.786930pt;}
.yf{bottom:576.724528pt;}
.y20f{bottom:580.877840pt;}
.y238{bottom:580.877844pt;}
.y196{bottom:585.553874pt;}
.y112{bottom:585.577620pt;}
.ye6{bottom:585.590420pt;}
.y1c4{bottom:586.774128pt;}
.y4f{bottom:590.774129pt;}
.yb6{bottom:590.780529pt;}
.y19b{bottom:590.786930pt;}
.ye{bottom:592.724528pt;}
.y20e{bottom:592.877840pt;}
.y237{bottom:592.877845pt;}
.y1c3{bottom:598.774128pt;}
.y195{bottom:598.887207pt;}
.y111{bottom:601.571220pt;}
.ye5{bottom:601.584020pt;}
.y20d{bottom:604.877840pt;}
.y236{bottom:604.877845pt;}
.yb5{bottom:606.774129pt;}
.y4e{bottom:606.780529pt;}
.y82{bottom:606.806171pt;}
.yd{bottom:608.724528pt;}
.y1c2{bottom:610.774129pt;}
.y194{bottom:612.220540pt;}
.y20c{bottom:616.877841pt;}
.y235{bottom:616.877845pt;}
.y110{bottom:617.564819pt;}
.ye4{bottom:617.577620pt;}
.y4d{bottom:622.774129pt;}
.y81{bottom:622.799771pt;}
.yb4{bottom:622.825371pt;}
.yc{bottom:624.724528pt;}
.y193{bottom:625.553874pt;}
.y20b{bottom:628.877841pt;}
.y234{bottom:628.877846pt;}
.ye3{bottom:633.571220pt;}
.y10f{bottom:633.584020pt;}
.y1c1{bottom:634.774129pt;}
.y19a{bottom:638.774129pt;}
.y80{bottom:638.793370pt;}
.y4c{bottom:638.799771pt;}
.yb3{bottom:638.818971pt;}
.y189{bottom:640.437337pt;}
.yb{bottom:640.724528pt;}
.y20a{bottom:640.877841pt;}
.y233{bottom:640.877846pt;}
.ye2{bottom:649.564819pt;}
.y10e{bottom:649.577620pt;}
.y209{bottom:652.877841pt;}
.y232{bottom:652.877846pt;}
.y199{bottom:654.774129pt;}
.y7f{bottom:654.786970pt;}
.y4b{bottom:654.793370pt;}
.yb2{bottom:654.812571pt;}
.ya{bottom:656.724528pt;}
.y208{bottom:664.877842pt;}
.y231{bottom:664.877847pt;}
.ye1{bottom:665.564819pt;}
.y10d{bottom:665.571220pt;}
.y7e{bottom:670.780570pt;}
.y4a{bottom:670.786970pt;}
.yb1{bottom:670.806171pt;}
.y1e6{bottom:674.729492pt;}
.y9{bottom:676.724528pt;}
.y207{bottom:676.877842pt;}
.y230{bottom:676.877847pt;}
.y10c{bottom:681.564819pt;}
.ye0{bottom:681.569046pt;}
.y1e5{bottom:686.729492pt;}
.y7d{bottom:686.774170pt;}
.y49{bottom:686.780570pt;}
.yb0{bottom:686.799771pt;}
.y206{bottom:688.877842pt;}
.y22f{bottom:688.877847pt;}
.y18b{bottom:690.257161pt;}
.ydf{bottom:697.564779pt;}
.y1e4{bottom:698.729492pt;}
.y205{bottom:700.877843pt;}
.y22e{bottom:700.877847pt;}
.y48{bottom:702.774170pt;}
.y7c{bottom:702.780570pt;}
.yaf{bottom:702.793370pt;}
.y204{bottom:712.877843pt;}
.y22d{bottom:712.877848pt;}
.y10b{bottom:713.571179pt;}
.y47{bottom:718.774170pt;}
.ya5{bottom:718.786970pt;}
.y203{bottom:724.877843pt;}
.y22c{bottom:724.877848pt;}
.y10a{bottom:729.564779pt;}
.yde{bottom:729.596780pt;}
.y18c{bottom:730.054833pt;}
.y1e3{bottom:732.474121pt;}
.y8{bottom:733.824544pt;}
.ya4{bottom:734.780570pt;}
.y7b{bottom:734.786970pt;}
.y46{bottom:734.799771pt;}
.y22b{bottom:736.877832pt;}
.y202{bottom:736.877844pt;}
.ydd{bottom:745.590379pt;}
.y109{bottom:745.602697pt;}
.y22a{bottom:748.877832pt;}
.y201{bottom:748.877844pt;}
.ya3{bottom:750.774170pt;}
.y7a{bottom:750.780570pt;}
.y45{bottom:750.793370pt;}
.y229{bottom:760.877832pt;}
.y200{bottom:760.877844pt;}
.ydc{bottom:761.583979pt;}
.y108{bottom:761.596297pt;}
.y7{bottom:765.857340pt;}
.y79{bottom:766.774170pt;}
.y44{bottom:766.786970pt;}
.yae{bottom:766.799771pt;}
.ya2{bottom:766.806171pt;}
.y1c0{bottom:766.832019pt;}
.y18d{bottom:769.852505pt;}
.y228{bottom:772.877832pt;}
.y1ff{bottom:772.877844pt;}
.ydb{bottom:777.577579pt;}
.y107{bottom:777.589897pt;}
.y43{bottom:782.780570pt;}
.yad{bottom:782.793370pt;}
.ya1{bottom:782.799771pt;}
.y78{bottom:782.825371pt;}
.y1bf{bottom:782.825619pt;}
.y227{bottom:784.877833pt;}
.y1fe{bottom:784.877845pt;}
.yda{bottom:793.571179pt;}
.y106{bottom:793.583497pt;}
.y226{bottom:796.877833pt;}
.y1fd{bottom:796.877845pt;}
.y42{bottom:798.774170pt;}
.yac{bottom:798.786970pt;}
.ya0{bottom:798.793370pt;}
.y77{bottom:798.818971pt;}
.y1be{bottom:798.819219pt;}
.y6{bottom:800.513346pt;}
.y225{bottom:808.877833pt;}
.y1fc{bottom:808.877845pt;}
.yd9{bottom:809.564779pt;}
.y105{bottom:809.577096pt;}
.y18e{bottom:809.584976pt;}
.y198{bottom:814.774170pt;}
.y41{bottom:814.780570pt;}
.y9f{bottom:814.786970pt;}
.y76{bottom:814.812571pt;}
.y1bd{bottom:814.812819pt;}
.y224{bottom:820.877834pt;}
.y1fb{bottom:820.877846pt;}
.y40{bottom:830.774170pt;}
.y9e{bottom:830.780570pt;}
.y75{bottom:830.806171pt;}
.y1bc{bottom:830.806418pt;}
.y223{bottom:832.877834pt;}
.y1fa{bottom:832.877846pt;}
.y5{bottom:835.169352pt;}
.y222{bottom:844.877834pt;}
.y1f9{bottom:844.877846pt;}
.y3f{bottom:846.774170pt;}
.y197{bottom:846.780570pt;}
.y74{bottom:846.799771pt;}
.y1bb{bottom:846.800018pt;}
.yab{bottom:846.814178pt;}
.y18f{bottom:849.382648pt;}
.y221{bottom:856.877835pt;}
.y1f8{bottom:856.877847pt;}
.y9d{bottom:862.774170pt;}
.y3e{bottom:862.780570pt;}
.y73{bottom:862.793370pt;}
.y1ba{bottom:862.793618pt;}
.y132{bottom:862.804687pt;}
.yaa{bottom:862.807778pt;}
.y220{bottom:868.877835pt;}
.y1f7{bottom:868.877847pt;}
.y4{bottom:869.825358pt;}
.y131{bottom:876.138021pt;}
.y3d{bottom:878.774170pt;}
.y72{bottom:878.786970pt;}
.y1b9{bottom:878.787218pt;}
.y9c{bottom:878.793370pt;}
.ya9{bottom:878.801378pt;}
.y21f{bottom:880.877835pt;}
.y1f6{bottom:880.877847pt;}
.y191{bottom:889.166097pt;}
.y21e{bottom:892.877835pt;}
.y1f5{bottom:892.877847pt;}
.y71{bottom:894.780570pt;}
.y1b8{bottom:894.780818pt;}
.y3c{bottom:894.786970pt;}
.ya8{bottom:894.794978pt;}
.y21d{bottom:904.877836pt;}
.y1f4{bottom:904.877848pt;}
.y70{bottom:910.774170pt;}
.y1b7{bottom:910.774417pt;}
.y3b{bottom:910.780570pt;}
.ya7{bottom:910.788577pt;}
.y21c{bottom:916.877836pt;}
.y1f3{bottom:916.877848pt;}
.y3{bottom:918.544515pt;}
.y32{bottom:920.666829pt;}
.y6f{bottom:926.768017pt;}
.y3a{bottom:926.774170pt;}
.ya6{bottom:926.782177pt;}
.y21b{bottom:928.877836pt;}
.y1f2{bottom:928.877848pt;}
.y33{bottom:985.524007pt;}
.y2{bottom:988.708496pt;}
.y9b{bottom:1001.355225pt;}
.y38{bottom:1001.355306pt;}
.y39{bottom:1001.707306pt;}
.y1{bottom:1001.711182pt;}
.hd{height:24.377335pt;}
.h10{height:24.724000pt;}
.h21{height:28.560000pt;}
.hb{height:32.965333pt;}
.h1b{height:33.434217pt;}
.hf{height:35.320000pt;}
.h23{height:35.320067pt;}
.h15{height:37.674667pt;}
.h1f{height:38.080000pt;}
.h1d{height:38.920000pt;}
.h20{height:39.560000pt;}
.h3{height:40.618667pt;}
.h1e{height:40.724002pt;}
.h17{height:41.514667pt;}
.h2{height:41.983924pt;}
.h11{height:41.984000pt;}
.h14{height:42.197333pt;}
.h1a{height:43.165443pt;}
.h22{height:44.117333pt;}
.ha{height:47.093333pt;}
.h16{height:47.472000pt;}
.h18{height:47.692799pt;}
.h13{height:47.741866pt;}
.hc{height:49.653334pt;}
.h12{height:49.677945pt;}
.h9{height:51.893333pt;}
.h8{height:54.329068pt;}
.h1c{height:55.484826pt;}
.h7{height:59.728337pt;}
.he{height:65.696829pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h6{height:121.984000pt;}
.h19{height:287.274658pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:208.349325pt;}
.w3{width:626.929321pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.027069pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162801pt;}
.x9{left:86.252935pt;}
.xd{left:90.388545pt;}
.x13{left:95.590535pt;}
.xc{left:97.012797pt;}
.x4{left:240.726664pt;}
.xb{left:259.850413pt;}
.x5{left:406.304810pt;}
.x10{left:414.299316pt;}
.xa{left:416.970268pt;}
.x12{left:424.499878pt;}
.xf{left:426.299194pt;}
.x11{left:431.567749pt;}
.x7{left:511.422648pt;}
.x6{left:617.715454pt;}
.x8{left:669.671183pt;}
}




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