
    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_01703b9959bc01cb3a1c1266.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4ad5469aa32456de0c5a146f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d82c017e90b019bbb3f2f1b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3addc97252fcb6ca2291f375.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_7d5cdfb60c1d438a25548aca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_2e88b9a026b9e48105141ca7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0a1e43cf3e5cf9586fa1ebe1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fd38832ae7722423b4ba9073.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9fe3dce0c42df556e17687b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_937ae24bb9241b8f4375d567.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0bab785730e2bc48dffde36d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_14e5d12956c266b0d08711f8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715820;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;}
.m16{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);}
.m7{transform:matrix(0.201023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201023,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.203316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203316,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.206263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206263,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207260,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.211037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211037,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.214228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214228,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.231926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231926,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.232786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232786,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m2{transform:matrix(0.237171,0.000000,-0.079056,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079056,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079056,0.237171,0,0);}
.ma{transform:matrix(0.241613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241613,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248781,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254889,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.257854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257854,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v8{vertical-align:-129.060000px;}
.v7{vertical-align:-124.524000px;}
.v9{vertical-align:-102.060000px;}
.v6{vertical-align:-84.024000px;}
.vc{vertical-align:-59.759880px;}
.vb{vertical-align:-42.719400px;}
.v2{vertical-align:-27.600000px;}
.v5{vertical-align:-8.964000px;}
.v3{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.274480px;}
.v4{vertical-align:6.000000px;}
.vd{vertical-align:14.250000px;}
.v1{vertical-align:27.600000px;}
.ls12{letter-spacing:-1.344000px;}
.ls6{letter-spacing:-1.224000px;}
.ls11{letter-spacing:-1.152000px;}
.ls36{letter-spacing:-0.914347px;}
.ls39{letter-spacing:-0.880578px;}
.ls37{letter-spacing:-0.877183px;}
.ls38{letter-spacing:-0.852357px;}
.ls34{letter-spacing:-0.836735px;}
.ls31{letter-spacing:-0.835300px;}
.ls35{letter-spacing:-0.824302px;}
.ls32{letter-spacing:-0.795059px;}
.ls42{letter-spacing:-0.741529px;}
.ls4{letter-spacing:-0.720000px;}
.ls3c{letter-spacing:-0.712453px;}
.ls3e{letter-spacing:-0.705815px;}
.ls44{letter-spacing:-0.704794px;}
.ls3f{letter-spacing:-0.699039px;}
.ls41{letter-spacing:-0.691587px;}
.ls46{letter-spacing:-0.687944px;}
.ls45{letter-spacing:-0.687737px;}
.ls40{letter-spacing:-0.684811px;}
.ls3d{letter-spacing:-0.679636px;}
.ls3{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.324000px;}
.ls3a{letter-spacing:-0.216000px;}
.ls48{letter-spacing:-0.191520px;}
.ls13{letter-spacing:-0.144000px;}
.ls49{letter-spacing:-0.132480px;}
.ls33{letter-spacing:-0.119520px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.024000px;}
.ls43{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.230400px;}
.ls2{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.403200px;}
.ls1{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.453600px;}
.ls21{letter-spacing:0.482400px;}
.lse{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.511200px;}
.ls25{letter-spacing:0.583200px;}
.ls18{letter-spacing:1.065600px;}
.lsa{letter-spacing:1.224000px;}
.ls1a{letter-spacing:2.376000px;}
.ls9{letter-spacing:2.664000px;}
.ls8{letter-spacing:3.600000px;}
.ls7{letter-spacing:3.664800px;}
.ls2a{letter-spacing:4.744800px;}
.ls23{letter-spacing:4.824000px;}
.ls20{letter-spacing:5.976000px;}
.ls1f{letter-spacing:7.200000px;}
.ls28{letter-spacing:8.280000px;}
.ls29{letter-spacing:8.323200px;}
.ls27{letter-spacing:8.352000px;}
.ls10{letter-spacing:9.576000px;}
.lsc{letter-spacing:10.800000px;}
.ls26{letter-spacing:12.081600px;}
.lsd{letter-spacing:14.400000px;}
.ls1d{letter-spacing:15.602400px;}
.ls14{letter-spacing:15.624000px;}
.ls22{letter-spacing:18.000000px;}
.ls1b{letter-spacing:19.224000px;}
.ls2e{letter-spacing:25.488000px;}
.ls24{letter-spacing:26.683200px;}
.ls5{letter-spacing:30.024000px;}
.ls1c{letter-spacing:34.804800px;}
.ls19{letter-spacing:44.424000px;}
.ls2c{letter-spacing:67.500000px;}
.ls2b{letter-spacing:82.404000px;}
.ls47{letter-spacing:105.520800px;}
.ls3b{letter-spacing:106.900560px;}
.ls2f{letter-spacing:114.696000px;}
.ls2d{letter-spacing:148.500000px;}
.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;}
}
.ws89{word-spacing:-84.240000px;}
.ws0{word-spacing:-18.432000px;}
.ws4{word-spacing:-18.000000px;}
.ws2d{word-spacing:-17.640000px;}
.ws3{word-spacing:-17.568000px;}
.ws33{word-spacing:-16.848000px;}
.ws40{word-spacing:-16.776000px;}
.ws5{word-spacing:-12.000000px;}
.ws34{word-spacing:-10.656000px;}
.ws77{word-spacing:-2.268000px;}
.ws30{word-spacing:-1.656000px;}
.ws43{word-spacing:-1.224000px;}
.ws2{word-spacing:-0.432000px;}
.ws8b{word-spacing:-0.216000px;}
.ws1{word-spacing:0.000000px;}
.ws7b{word-spacing:0.059760px;}
.ws80{word-spacing:0.095760px;}
.ws8c{word-spacing:0.119520px;}
.ws8d{word-spacing:0.132480px;}
.ws38{word-spacing:0.144000px;}
.ws54{word-spacing:0.324000px;}
.ws2f{word-spacing:0.360000px;}
.ws52{word-spacing:0.432000px;}
.ws53{word-spacing:0.540000px;}
.ws71{word-spacing:0.679636px;}
.ws74{word-spacing:0.684811px;}
.ws79{word-spacing:0.687737px;}
.ws7a{word-spacing:0.687944px;}
.ws75{word-spacing:0.691587px;}
.ws73{word-spacing:0.699039px;}
.ws78{word-spacing:0.704794px;}
.ws72{word-spacing:0.705815px;}
.ws70{word-spacing:0.712453px;}
.wse{word-spacing:0.720000px;}
.ws76{word-spacing:0.741529px;}
.ws62{word-spacing:0.776880px;}
.ws18{word-spacing:0.792000px;}
.ws5d{word-spacing:0.795059px;}
.ws60{word-spacing:0.824302px;}
.ws5c{word-spacing:0.835300px;}
.ws5f{word-spacing:0.836735px;}
.ws64{word-spacing:0.852357px;}
.ws63{word-spacing:0.877183px;}
.ws65{word-spacing:0.880578px;}
.ws61{word-spacing:0.914347px;}
.wsf{word-spacing:1.224000px;}
.ws39{word-spacing:1.344000px;}
.ws5e{word-spacing:1.494000px;}
.ws1a{word-spacing:1.944000px;}
.ws1d{word-spacing:2.376000px;}
.ws19{word-spacing:3.168000px;}
.ws1e{word-spacing:3.600000px;}
.ws1f{word-spacing:4.392000px;}
.ws7{word-spacing:4.824000px;}
.ws13{word-spacing:5.544000px;}
.ws29{word-spacing:5.976000px;}
.wsa{word-spacing:6.768000px;}
.ws10{word-spacing:7.200000px;}
.wsb{word-spacing:7.992000px;}
.ws26{word-spacing:8.424000px;}
.ws17{word-spacing:9.144000px;}
.ws24{word-spacing:9.576000px;}
.ws25{word-spacing:10.368000px;}
.ws1c{word-spacing:10.800000px;}
.ws36{word-spacing:11.592000px;}
.ws27{word-spacing:12.024000px;}
.ws12{word-spacing:12.744000px;}
.ws11{word-spacing:13.176000px;}
.ws22{word-spacing:13.968000px;}
.ws37{word-spacing:14.400000px;}
.ws6{word-spacing:15.192000px;}
.ws3a{word-spacing:15.624000px;}
.ws23{word-spacing:16.344000px;}
.ws1b{word-spacing:16.776000px;}
.ws2a{word-spacing:17.568000px;}
.ws21{word-spacing:18.000000px;}
.ws15{word-spacing:18.792000px;}
.ws14{word-spacing:19.224000px;}
.ws16{word-spacing:19.944000px;}
.ws4f{word-spacing:20.376000px;}
.ws28{word-spacing:21.168000px;}
.ws2e{word-spacing:21.600000px;}
.ws45{word-spacing:22.392000px;}
.ws44{word-spacing:22.824000px;}
.wsc{word-spacing:23.544000px;}
.ws42{word-spacing:23.976000px;}
.ws3f{word-spacing:24.768000px;}
.ws9{word-spacing:25.200000px;}
.ws32{word-spacing:26.424000px;}
.wsd{word-spacing:27.144000px;}
.ws48{word-spacing:27.576000px;}
.ws49{word-spacing:28.368000px;}
.ws4a{word-spacing:28.800000px;}
.ws20{word-spacing:29.592000px;}
.ws8{word-spacing:30.024000px;}
.ws50{word-spacing:30.744000px;}
.ws4b{word-spacing:31.968000px;}
.ws4c{word-spacing:32.400000px;}
.ws3d{word-spacing:33.192000px;}
.ws3e{word-spacing:33.624000px;}
.ws47{word-spacing:34.776000px;}
.ws2b{word-spacing:35.568000px;}
.ws2c{word-spacing:36.000000px;}
.ws35{word-spacing:37.944000px;}
.ws51{word-spacing:38.376000px;}
.ws41{word-spacing:44.424000px;}
.ws3c{word-spacing:46.800000px;}
.ws3b{word-spacing:47.592000px;}
.ws31{word-spacing:49.968000px;}
.ws46{word-spacing:50.400000px;}
.ws7c{word-spacing:67.171776px;}
.ws4e{word-spacing:75.600000px;}
.ws4d{word-spacing:76.824000px;}
.ws67{word-spacing:90.305280px;}
.ws6d{word-spacing:100.077120px;}
.ws6c{word-spacing:105.300000px;}
.ws6e{word-spacing:107.574480px;}
.ws87{word-spacing:107.838720px;}
.ws7d{word-spacing:109.362240px;}
.ws6f{word-spacing:109.848960px;}
.ws81{word-spacing:110.090880px;}
.ws85{word-spacing:110.885760px;}
.ws8a{word-spacing:111.614400px;}
.ws58{word-spacing:118.104480px;}
.ws56{word-spacing:123.664320px;}
.ws59{word-spacing:136.047600px;}
.ws82{word-spacing:163.347840px;}
.ws84{word-spacing:164.871360px;}
.ws7e{word-spacing:170.832960px;}
.ws6a{word-spacing:220.119120px;}
.ws6b{word-spacing:225.342000px;}
.ws69{word-spacing:232.081200px;}
.ws68{word-spacing:232.839360px;}
.ws66{word-spacing:239.578560px;}
.ws83{word-spacing:281.122560px;}
.ws5a{word-spacing:291.301920px;}
.ws5b{word-spacing:294.334560px;}
.ws86{word-spacing:302.120640px;}
.ws88{word-spacing:305.101440px;}
.ws7f{word-spacing:308.877120px;}
.ws55{word-spacing:320.364720px;}
.ws57{word-spacing:320.617440px;}
._43{margin-left:-2832.696000px;}
._56{margin-left:-2829.902400px;}
._5c{margin-left:-2828.203200px;}
._4a{margin-left:-2821.032000px;}
._2d{margin-left:-2818.699200px;}
._65{margin-left:-2817.396000px;}
._79{margin-left:-2815.668000px;}
._70{margin-left:-2814.444000px;}
._44{margin-left:-2810.440800px;}
._58{margin-left:-2809.015200px;}
._30{margin-left:-2806.437600px;}
._74{margin-left:-2804.904000px;}
._53{margin-left:-2803.615200px;}
._2e{margin-left:-2802.348000px;}
._3f{margin-left:-2801.325600px;}
._32{margin-left:-2799.417600px;}
._75{margin-left:-2797.524000px;}
._31{margin-left:-2796.494400px;}
._2f{margin-left:-2795.040000px;}
._34{margin-left:-2793.888000px;}
._3e{margin-left:-2792.620800px;}
._29{margin-left:-2791.036800px;}
._64{margin-left:-2790.028800px;}
._2a{margin-left:-2788.934400px;}
._2c{margin-left:-2787.062400px;}
._3d{margin-left:-2785.341600px;}
._3a{margin-left:-2784.333600px;}
._33{margin-left:-2783.268000px;}
._40{margin-left:-2781.820800px;}
._a3{margin-left:-2779.891200px;}
._b{margin-left:-2777.479200px;}
._eb{margin-left:-2773.879200px;}
._12{margin-left:-2771.200800px;}
._26{margin-left:-2769.120000px;}
._d2{margin-left:-2767.593600px;}
._68{margin-left:-2766.528000px;}
._1a{margin-left:-2765.390400px;}
._1f{margin-left:-2764.036800px;}
._22{margin-left:-2762.373600px;}
._24{margin-left:-2761.365600px;}
._e8{margin-left:-2760.098400px;}
._18{margin-left:-2758.946400px;}
._20{margin-left:-2757.542400px;}
._14{margin-left:-2756.433600px;}
._16{margin-left:-2755.425600px;}
._13{margin-left:-2753.798400px;}
._9{margin-left:-2752.574400px;}
._c9{margin-left:-2751.292800px;}
._1b{margin-left:-2750.284800px;}
._17{margin-left:-2748.816000px;}
._15{margin-left:-2746.749600px;}
._e6{margin-left:-2744.496000px;}
._a1{margin-left:-2740.039200px;}
._9e{margin-left:-2738.145600px;}
._a0{margin-left:-2735.748000px;}
._f1{margin-left:-2731.780800px;}
._21{margin-left:-2730.434400px;}
._6{margin-left:-2725.790400px;}
._be{margin-left:-2724.465600px;}
._f4{margin-left:-2723.234400px;}
._ab{margin-left:-2722.212000px;}
._ad{margin-left:-2718.453600px;}
._cc{margin-left:-2717.402400px;}
._d8{margin-left:-2714.623200px;}
._84{margin-left:-2712.945600px;}
._10d{margin-left:-2710.749600px;}
._c5{margin-left:-2709.158400px;}
._25{margin-left:-2706.501600px;}
._c2{margin-left:-2705.299200px;}
._27{margin-left:-2703.434400px;}
._66{margin-left:-2701.720800px;}
._fd{margin-left:-2700.432000px;}
._10b{margin-left:-2697.379200px;}
._114{margin-left:-2693.520000px;}
._111{margin-left:-2692.310400px;}
._bb{margin-left:-2687.839200px;}
._f2{margin-left:-2684.714400px;}
._ca{margin-left:-2681.164800px;}
._ce{margin-left:-2675.916000px;}
._81{margin-left:-2673.331200px;}
._e1{margin-left:-2670.429600px;}
._99{margin-left:-2668.500000px;}
._8f{margin-left:-2666.736000px;}
._da{margin-left:-2665.303200px;}
._112{margin-left:-2660.767200px;}
._d1{margin-left:-2658.715200px;}
._af{margin-left:-2653.689600px;}
._c1{margin-left:-2651.378400px;}
._95{margin-left:-2648.952000px;}
._10a{margin-left:-2640.981600px;}
._85{margin-left:-2639.851200px;}
._8e{margin-left:-2638.051200px;}
._102{margin-left:-2635.056000px;}
._c4{margin-left:-2632.658400px;}
._db{margin-left:-2630.822400px;}
._89{margin-left:-2627.906400px;}
._8a{margin-left:-2624.508000px;}
._5b{margin-left:-2620.476000px;}
._f5{margin-left:-2618.971200px;}
._e3{margin-left:-2616.055200px;}
._97{margin-left:-2611.461600px;}
._c3{margin-left:-2608.488000px;}
._82{margin-left:-2606.342400px;}
._10f{margin-left:-2603.095200px;}
._ae{margin-left:-2599.653600px;}
._df{margin-left:-2598.624000px;}
._f7{margin-left:-2596.831200px;}
._ff{margin-left:-2593.015200px;}
._9d{margin-left:-2591.784000px;}
._a6{margin-left:-2590.452000px;}
._106{margin-left:-2588.860800px;}
._9b{margin-left:-2585.332800px;}
._cf{margin-left:-2582.035200px;}
._7a{margin-left:-2579.421600px;}
._cb{margin-left:-2571.084000px;}
._ef{margin-left:-2566.123200px;}
._bc{margin-left:-2564.676000px;}
._f3{margin-left:-2558.829600px;}
._f0{margin-left:-2556.727200px;}
._b7{margin-left:-2555.467200px;}
._8c{margin-left:-2551.593600px;}
._a8{margin-left:-2549.988000px;}
._92{margin-left:-2547.684000px;}
._b9{margin-left:-2545.848000px;}
._c0{margin-left:-2544.840000px;}
._d6{margin-left:-2542.910400px;}
._118{margin-left:-2539.684800px;}
._94{margin-left:-2527.437600px;}
._aa{margin-left:-2508.076800px;}
._b1{margin-left:-2506.824000px;}
._fb{margin-left:-2504.030400px;}
._8d{margin-left:-2499.789600px;}
._c7{margin-left:-2497.363200px;}
._f8{margin-left:-2496.240000px;}
._101{margin-left:-2490.465600px;}
._d4{margin-left:-2489.371200px;}
._11a{margin-left:-2487.218400px;}
._b4{margin-left:-2484.691200px;}
._dd{margin-left:-2483.294400px;}
._100{margin-left:-2482.221600px;}
._b5{margin-left:-2480.904000px;}
._2{margin-left:-2471.846400px;}
._fc{margin-left:-2463.372000px;}
._ea{margin-left:-2454.991200px;}
._90{margin-left:-2446.912800px;}
._87{margin-left:-2432.354400px;}
._a4{margin-left:-2430.900000px;}
._109{margin-left:-2426.356800px;}
._76{margin-left:-2406.938400px;}
._e2{margin-left:-2392.956000px;}
._7f{margin-left:-2385.273600px;}
._91{margin-left:-2371.968000px;}
._b3{margin-left:-2349.547200px;}
._bf{margin-left:-2333.988000px;}
._c8{margin-left:-2319.069600px;}
._cd{margin-left:-2317.636800px;}
._80{margin-left:-2291.940000px;}
._69{margin-left:-2286.410400px;}
._11c{margin-left:-2269.022400px;}
._f6{margin-left:-2256.868800px;}
._41{margin-left:-2221.135200px;}
._9a{margin-left:-2201.997600px;}
._105{margin-left:-2191.809600px;}
._4f{margin-left:-2188.778400px;}
._5a{margin-left:-2156.767200px;}
._104{margin-left:-2146.579200px;}
._ec{margin-left:-2129.234400px;}
._110{margin-left:-2127.340800px;}
._e9{margin-left:-2113.941600px;}
._52{margin-left:-2103.537600px;}
._e5{margin-left:-2072.743200px;}
._fa{margin-left:-2047.492800px;}
._10e{margin-left:-2031.141600px;}
._9c{margin-left:-1995.141600px;}
._ee{margin-left:-1985.875200px;}
._108{margin-left:-1977.667200px;}
._3{margin-left:-1943.056800px;}
._fe{margin-left:-1929.168000px;}
._119{margin-left:-1907.913600px;}
._63{margin-left:-1871.964000px;}
._98{margin-left:-1841.932800px;}
._23{margin-left:-1809.403200px;}
._10c{margin-left:-1805.191200px;}
._b2{margin-left:-1797.264000px;}
._ed{margin-left:-1790.215200px;}
._7c{margin-left:-1779.393600px;}
._36{margin-left:-1769.832000px;}
._60{margin-left:-1764.338400px;}
._107{margin-left:-1677.585600px;}
._71{margin-left:-1670.601600px;}
._116{margin-left:-1658.088000px;}
._3c{margin-left:-1655.971200px;}
._117{margin-left:-1642.024800px;}
._8{margin-left:-1637.829600px;}
._ba{margin-left:-1626.069600px;}
._d7{margin-left:-1590.069600px;}
._e0{margin-left:-1571.450400px;}
._c{margin-left:-1545.861600px;}
._93{margin-left:-1538.661600px;}
._f{margin-left:-1535.500800px;}
._103{margin-left:-1530.504000px;}
._4d{margin-left:-1479.412800px;}
._88{margin-left:-1463.104800px;}
._d9{margin-left:-1451.923200px;}
._77{margin-left:-1433.685600px;}
._a9{margin-left:-1415.923200px;}
._86{margin-left:-1400.205600px;}
._5{margin-left:-1376.769600px;}
._a5{margin-left:-1369.627200px;}
._8b{margin-left:-1364.205600px;}
._2b{margin-left:-1363.168800px;}
._a2{margin-left:-1328.133600px;}
._a{margin-left:-1305.475200px;}
._73{margin-left:-1283.709600px;}
._48{margin-left:-1281.477600px;}
._e4{margin-left:-1274.133600px;}
._d3{margin-left:-1269.856800px;}
._51{margin-left:-1257.336000px;}
._59{margin-left:-1245.693600px;}
._1d{margin-left:-1218.247200px;}
._11b{margin-left:-1207.317600px;}
._c6{margin-left:-1194.141600px;}
._1c{margin-left:-1157.961600px;}
._67{margin-left:-1085.450400px;}
._42{margin-left:-1076.148000px;}
._b8{margin-left:-1074.002400px;}
._10{margin-left:-1064.016000px;}
._96{margin-left:-1001.635200px;}
._f9{margin-left:-969.098400px;}
._83{margin-left:-965.635200px;}
._bd{margin-left:-948.456000px;}
._7b{margin-left:-944.157600px;}
._e{margin-left:-903.074400px;}
._115{margin-left:-869.522400px;}
._6a{margin-left:-858.484800px;}
._39{margin-left:-854.157600px;}
._113{margin-left:-806.400000px;}
._1e{margin-left:-797.522400px;}
._6d{margin-left:-792.432000px;}
._dc{margin-left:-758.376000px;}
._e7{margin-left:-734.400000px;}
._38{margin-left:-728.424000px;}
._4b{margin-left:-715.010400px;}
._b6{margin-left:-702.504000px;}
._de{margin-left:-698.400000px;}
._50{margin-left:-688.464000px;}
._d5{margin-left:-662.400000px;}
._9f{margin-left:-620.424000px;}
._11{margin-left:-611.841600px;}
._a7{margin-left:-590.400000px;}
._6c{margin-left:-585.194400px;}
._b0{margin-left:-566.424000px;}
._57{margin-left:-561.002400px;}
._7d{margin-left:-552.513600px;}
._d0{margin-left:-530.424000px;}
._ac{margin-left:-494.424000px;}
._3b{margin-left:-443.952000px;}
._49{margin-left:-419.976000px;}
._37{margin-left:-404.424000px;}
._d{margin-left:-368.424000px;}
._7{margin-left:-332.424000px;}
._7e{margin-left:-234.000000px;}
._1{margin-left:-2.440800px;}
._0{margin-left:-1.324800px;}
._4{width:1.130400px;}
._19{width:2.145600px;}
._6b{width:3.866400px;}
._45{width:5.061600px;}
._4e{width:7.077600px;}
._28{width:9.266400px;}
._47{width:10.440000px;}
._46{width:11.685600px;}
._4c{width:13.968000px;}
._78{width:15.105600px;}
._35{width:16.516800px;}
._72{width:19.087200px;}
._5f{width:22.240800px;}
._5d{width:24.300000px;}
._5e{width:26.172000px;}
._62{width:33.055200px;}
._55{width:35.179200px;}
._54{width:36.813600px;}
._61{width:50.025600px;}
._6e{width:75.600000px;}
._6f{width:77.256000px;}
._131{width:111.449520px;}
._130{width:112.881600px;}
._13e{width:113.932800px;}
._128{width:115.408800px;}
._12f{width:120.378960px;}
._132{width:121.417920px;}
._13d{width:123.670080px;}
._140{width:125.193600px;}
._122{width:137.648160px;}
._121{width:139.922640px;}
._11f{width:141.944400px;}
._125{width:143.629200px;}
._11e{width:160.140240px;}
._134{width:162.685440px;}
._13f{width:169.441920px;}
._139{width:173.151360px;}
._13c{width:174.674880px;}
._133{width:231.136320px;}
._12c{width:247.160160px;}
._127{width:248.676480px;}
._12a{width:250.192800px;}
._126{width:260.638560px;}
._12b{width:264.429360px;}
._129{width:270.410400px;}
._12e{width:275.633280px;}
._138{width:281.122560px;}
._12d{width:282.372480px;}
._135{width:293.948400px;}
._136{width:299.934720px;}
._13a{width:302.186880px;}
._13b{width:308.943360px;}
._141{width:310.400640px;}
._124{width:319.943520px;}
._11d{width:324.829440px;}
._120{width:325.840320px;}
._143{width:327.962880px;}
._123{width:352.123200px;}
._142{width:1187.360640px;}
._137{width:1190.475600px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:29.549400px;}
.fs15{font-size:29.774400px;}
.fs1a{font-size:29.901600px;}
.fs1b{font-size:29.910600px;}
.fs16{font-size:30.069000px;}
.fs14{font-size:30.393000px;}
.fs19{font-size:30.643200px;}
.fs13{font-size:30.687600px;}
.fs11{font-size:30.976200px;}
.fs17{font-size:32.240400px;}
.fs9{font-size:34.567800px;}
.fsc{font-size:35.839200px;}
.fs7{font-size:36.317400px;}
.fsb{font-size:36.379800px;}
.fsf{font-size:37.059000px;}
.fse{font-size:38.138400px;}
.fs10{font-size:38.286000px;}
.fsd{font-size:39.754200px;}
.fs5{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs18{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:63.245490px;}
.fs1d{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:75.894664px;}
.fs8{font-size:84.240000px;}
.fs1c{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.y28{bottom:-59.999850px;}
.y0{bottom:0.000000px;}
.y2a{bottom:2.250150px;}
.y3{bottom:3.900000px;}
.y29{bottom:6.000150px;}
.ybb{bottom:9.885000px;}
.y99{bottom:10.260000px;}
.y83{bottom:10.834950px;}
.y95{bottom:10.917300px;}
.yb0{bottom:10.964100px;}
.yb7{bottom:10.967100px;}
.y9b{bottom:11.025900px;}
.y8f{bottom:11.143950px;}
.y89{bottom:11.252250px;}
.ya2{bottom:11.284500px;}
.y7d{bottom:11.357850px;}
.yee{bottom:11.955000px;}
.y4b{bottom:12.674400px;}
.y45{bottom:12.711600px;}
.y52{bottom:12.733950px;}
.y6c{bottom:12.970050px;}
.y58{bottom:13.141950px;}
.ye6{bottom:13.455000px;}
.y5f{bottom:13.914000px;}
.y66{bottom:13.984650px;}
.y73{bottom:14.038050px;}
.ya9{bottom:15.321750px;}
.yea{bottom:26.151240px;}
.yb6{bottom:27.694500px;}
.y94{bottom:28.243500px;}
.y6a{bottom:37.822500px;}
.y70{bottom:40.635000px;}
.y65{bottom:51.444000px;}
.y7e{bottom:52.659600px;}
.y2{bottom:53.100000px;}
.ya3{bottom:54.271650px;}
.y6b{bottom:54.628500px;}
.y84{bottom:54.666150px;}
.y96{bottom:55.083000px;}
.yb1{bottom:55.318200px;}
.yb8{bottom:55.334700px;}
.y9c{bottom:55.628550px;}
.y90{bottom:56.227050px;}
.y8a{bottom:56.772150px;}
.y1{bottom:57.000000px;}
.yaa{bottom:61.286400px;}
.yeb{bottom:63.082920px;}
.y4c{bottom:63.373950px;}
.y46{bottom:66.579384px;}
.y53{bottom:66.697050px;}
.y59{bottom:66.900600px;}
.y6d{bottom:68.558400px;}
.y67{bottom:70.553432px;}
.y74{bottom:70.828800px;}
.y60{bottom:73.545300px;}
.y7f{bottom:93.445350px;}
.ya4{bottom:97.796190px;}
.y85{bottom:98.495298px;}
.y97{bottom:98.752650px;}
.yec{bottom:99.088320px;}
.yb2{bottom:99.672300px;}
.yb9{bottom:99.702450px;}
.y9d{bottom:99.730200px;}
.y91{bottom:100.805983px;}
.y8b{bottom:101.783187px;}
.yab{bottom:107.251200px;}
.ye8{bottom:109.087500px;}
.y4d{bottom:114.649500px;}
.y47{bottom:119.847930px;}
.y54{bottom:120.660150px;}
.y5a{bottom:121.259707px;}
.y6e{bottom:123.526162px;}
.y68{bottom:126.492930px;}
.y75{bottom:126.981450px;}
.y61{bottom:132.510717px;}
.y80{bottom:134.746950px;}
.ye9{bottom:136.020000px;}
.ya5{bottom:140.780703px;}
.y26{bottom:141.006000px;}
.y86{bottom:142.324445px;}
.y98{bottom:142.918350px;}
.yb3{bottom:144.026400px;}
.y3d{bottom:144.294000px;}
.y9e{bottom:144.333000px;}
.yba{bottom:144.568650px;}
.y92{bottom:145.886400px;}
.y20{bottom:146.400000px;}
.y8c{bottom:147.300570px;}
.yac{bottom:153.216000px;}
.ye7{bottom:164.887500px;}
.y4e{bottom:165.348900px;}
.yed{bottom:171.651900px;}
.y48{bottom:173.715714px;}
.y55{bottom:174.620488px;}
.y5b{bottom:175.018507px;}
.y6f{bottom:179.114662px;}
.y25{bottom:182.400000px;}
.y69{bottom:183.061712px;}
.y76{bottom:183.772050px;}
.y24{bottom:183.900000px;}
.y3c{bottom:185.694000px;}
.ye5{bottom:187.267500px;}
.y1f{bottom:187.800000px;}
.ybc{bottom:188.332500px;}
.ydd{bottom:188.767500px;}
.ydc{bottom:188.769000px;}
.y62{bottom:192.142017px;}
.yc1{bottom:192.381000px;}
.ye2{bottom:201.642870px;}
.y23{bottom:226.500000px;}
.y3b{bottom:227.094000px;}
.y8d{bottom:227.947500px;}
.y21{bottom:227.994000px;}
.y22{bottom:228.000000px;}
.yb4{bottom:228.885000px;}
.y1e{bottom:229.200000px;}
.ye3{bottom:238.768770px;}
.y88{bottom:243.133500px;}
.yaf{bottom:245.563500px;}
.y7b{bottom:254.076000px;}
.y71{bottom:256.394850px;}
.y3a{bottom:268.494000px;}
.y1d{bottom:270.600000px;}
.ye4{bottom:275.147670px;}
.ye0{bottom:284.212350px;}
.y77{bottom:292.259850px;}
.y63{bottom:293.572500px;}
.y5e{bottom:305.173500px;}
.y72{bottom:305.322000px;}
.y39{bottom:309.894000px;}
.ye1{bottom:311.332350px;}
.y1c{bottom:312.000000px;}
.ydf{bottom:342.262500px;}
.yde{bottom:348.082500px;}
.y38{bottom:351.294000px;}
.y1b{bottom:353.400000px;}
.yd5{bottom:353.954850px;}
.ydb{bottom:353.955000px;}
.yd4{bottom:354.517500px;}
.yd8{bottom:368.759490px;}
.y37{bottom:392.694000px;}
.y1a{bottom:394.800000px;}
.y43{bottom:397.515000px;}
.yc0{bottom:406.509000px;}
.yb5{bottom:409.395000px;}
.yd7{bottom:431.389410px;}
.y36{bottom:434.094000px;}
.y17{bottom:436.200000px;}
.yad{bottom:456.135000px;}
.yd9{bottom:456.900000px;}
.y93{bottom:457.447500px;}
.ya8{bottom:470.394000px;}
.y8e{bottom:474.504000px;}
.y35{bottom:475.494000px;}
.y16{bottom:477.600000px;}
.yd6{bottom:494.201490px;}
.y40{bottom:496.134000px;}
.yda{bottom:510.450000px;}
.y42{bottom:514.506000px;}
.y34{bottom:516.894000px;}
.y15{bottom:519.000000px;}
.y64{bottom:520.019850px;}
.y7a{bottom:525.570000px;}
.ycd{bottom:537.892500px;}
.yce{bottom:539.580000px;}
.y3f{bottom:543.006000px;}
.yd1{bottom:552.258540px;}
.y33{bottom:558.294000px;}
.y14{bottom:560.400000px;}
.y56{bottom:563.947500px;}
.y5c{bottom:567.134850px;}
.y51{bottom:577.158000px;}
.y57{bottom:580.524000px;}
.y32{bottom:599.694000px;}
.y13{bottom:601.800000px;}
.y3e{bottom:603.945000px;}
.yd0{bottom:614.513520px;}
.yd2{bottom:638.962350px;}
.y31{bottom:641.094000px;}
.y12{bottom:643.200000px;}
.ybf{bottom:644.631000px;}
.yae{bottom:647.520000px;}
.y87{bottom:675.322500px;}
.y81{bottom:675.885000px;}
.ycf{bottom:676.395000px;}
.y30{bottom:682.494000px;}
.y11{bottom:684.600000px;}
.y7c{bottom:691.087500px;}
.y82{bottom:691.245000px;}
.yd3{bottom:694.575000px;}
.y41{bottom:707.070000px;}
.ycb{bottom:716.017500px;}
.ycc{bottom:717.705000px;}
.y2f{bottom:723.894000px;}
.y10{bottom:726.000000px;}
.yc8{bottom:730.062180px;}
.y2e{bottom:765.294000px;}
.yf{bottom:767.400000px;}
.y79{bottom:780.576000px;}
.y5d{bottom:784.207350px;}
.yc7{bottom:796.815540px;}
.y2d{bottom:806.694000px;}
.ye{bottom:808.800000px;}
.yc9{bottom:816.899850px;}
.y4f{bottom:833.794050px;}
.y49{bottom:833.974200px;}
.y44{bottom:846.469500px;}
.y2c{bottom:848.094000px;}
.y4a{bottom:848.320500px;}
.y19{bottom:850.200000px;}
.ybe{bottom:850.695000px;}
.ya7{bottom:851.647500px;}
.yd{bottom:857.100000px;}
.yc6{bottom:862.823700px;}
.y9f{bottom:869.572500px;}
.yca{bottom:872.700000px;}
.ya0{bottom:874.260000px;}
.ya1{bottom:887.031000px;}
.y9a{bottom:887.185500px;}
.y2b{bottom:889.494000px;}
.yc{bottom:891.600000px;}
.yc5{bottom:913.769970px;}
.y27{bottom:926.850000px;}
.y18{bottom:933.000000px;}
.yb{bottom:939.900000px;}
.ya{bottom:974.400000px;}
.yc4{bottom:978.460170px;}
.yc2{bottom:997.650000px;}
.y9{bottom:1015.800000px;}
.y78{bottom:1042.890000px;}
.y50{bottom:1047.270000px;}
.ybd{bottom:1053.015000px;}
.yc3{bottom:1053.262500px;}
.y8{bottom:1057.200000px;}
.ya6{bottom:1060.020000px;}
.y7{bottom:1077.900000px;}
.y6{bottom:1098.600000px;}
.y5{bottom:1119.300000px;}
.y4{bottom:1140.000000px;}
.h2{height:20.701500px;}
.h29{height:21.512771px;}
.h30{height:21.676577px;}
.h39{height:21.769182px;}
.h3b{height:21.775735px;}
.h32{height:21.891054px;}
.h2e{height:22.126935px;}
.h37{height:22.309088px;}
.h2c{height:22.341412px;}
.h9{height:22.498500px;}
.h27{height:22.551521px;}
.h34{height:23.471893px;}
.h16{height:25.166304px;}
.h1b{height:26.091918px;}
.h13{height:26.440060px;}
.h19{height:26.485489px;}
.h21{height:26.979965px;}
.h1f{height:27.765798px;}
.h24{height:27.873255px;}
.h1d{height:28.942145px;}
.hc{height:29.162109px;}
.h4{height:33.351562px;}
.h35{height:39.313477px;}
.h17{height:43.506914px;}
.ha{height:44.443359px;}
.hb{height:46.847367px;}
.h3d{height:48.224531px;}
.h1{height:50.027344px;}
.h25{height:52.417969px;}
.h5{height:53.332031px;}
.h8{height:56.027344px;}
.h6{height:56.216897px;}
.h7{height:59.332031px;}
.h3{height:60.951562px;}
.h14{height:61.329023px;}
.h22{height:62.087183px;}
.h2a{height:63.603503px;}
.h3c{height:69.715898px;}
.he{height:78.626953px;}
.h26{height:179.662500px;}
.h33{height:187.531500px;}
.h28{height:188.130000px;}
.h2f{height:189.069000px;}
.h38{height:190.374000px;}
.h3a{height:190.930500px;}
.h31{height:190.938000px;}
.h2d{height:192.996000px;}
.h2b{height:194.866500px;}
.h36{height:195.606000px;}
.h15{height:218.929500px;}
.h12{height:229.404000px;}
.h18{height:230.403000px;}
.h1a{height:231.163500px;}
.h20{height:236.559000px;}
.h1e{height:242.181000px;}
.h23{height:243.115500px;}
.h1c{height:253.765500px;}
.hd{height:810.000000px;}
.h10{height:892.500000px;}
.hf{height:892.830000px;}
.h11{height:1080.000000px;}
.h0{height:1263.000000px;}
.w1{width:9.000000px;}
.w4{width:16.500000px;}
.w3{width:16.501500px;}
.w2{width:18.001500px;}
.w19{width:184.267500px;}
.w12{width:184.471500px;}
.w18{width:184.831500px;}
.w1a{width:188.385000px;}
.w17{width:193.528500px;}
.wc{width:217.573500px;}
.wa{width:219.823500px;}
.wf{width:220.269000px;}
.wd{width:226.812000px;}
.w14{width:324.063000px;}
.w11{width:326.289000px;}
.w16{width:326.497500px;}
.w15{width:327.058500px;}
.w13{width:327.246000px;}
.we{width:404.191500px;}
.w10{width:405.315000px;}
.wb{width:405.370500px;}
.w9{width:405.375000px;}
.w8{width:810.000000px;}
.w0{width:892.500000px;}
.w6{width:892.830000px;}
.w5{width:1080.000000px;}
.w7{width:1263.000000px;}
.xc{left:-50.999850px;}
.x0{left:0.000000px;}
.xd{left:1.500000px;}
.x2b{left:3.862500px;}
.x33{left:6.750000px;}
.xe{left:9.937350px;}
.x38{left:11.106600px;}
.x1e{left:12.644700px;}
.x1b{left:14.137237px;}
.x25{left:15.369763px;}
.x1d{left:16.687500px;}
.x1a{left:18.657450px;}
.x24{left:20.284050px;}
.x29{left:21.506250px;}
.x3a{left:25.260000px;}
.x3b{left:29.572500px;}
.x40{left:31.635000px;}
.x48{left:33.015000px;}
.x44{left:35.640000px;}
.x35{left:37.237500px;}
.x34{left:38.550000px;}
.x36{left:41.550000px;}
.x39{left:42.675000px;}
.x37{left:45.487500px;}
.x32{left:47.737500px;}
.x49{left:50.929500px;}
.x20{left:52.612500px;}
.x45{left:53.925000px;}
.x27{left:58.612500px;}
.x26{left:61.237500px;}
.x3f{left:62.743440px;}
.x1f{left:63.932850px;}
.x23{left:65.737500px;}
.x2a{left:67.987500px;}
.x12{left:73.518000px;}
.x5{left:82.524000px;}
.x46{left:90.300000px;}
.x3{left:91.500000px;}
.x41{left:92.550000px;}
.x3c{left:94.050000px;}
.x17{left:100.068150px;}
.x1{left:127.500000px;}
.x4{left:170.106000px;}
.x2c{left:195.562500px;}
.x2e{left:196.875000px;}
.x30{left:199.500000px;}
.x8{left:221.400000px;}
.x9{left:233.700000px;}
.x19{left:242.250000px;}
.x21{left:243.937500px;}
.x28{left:245.625000px;}
.x2d{left:253.612500px;}
.x2f{left:257.175000px;}
.x31{left:260.550000px;}
.x47{left:272.362500px;}
.x3d{left:274.050150px;}
.x1c{left:315.544050px;}
.x22{left:319.237500px;}
.xb{left:391.950000px;}
.x13{left:400.050150px;}
.xf{left:408.300000px;}
.x10{left:442.650000px;}
.x11{left:459.000000px;}
.x43{left:503.927640px;}
.x42{left:506.362500px;}
.x3e{left:514.612500px;}
.x14{left:587.727150px;}
.x15{left:619.425150px;}
.x6{left:649.500000px;}
.x7{left:661.800000px;}
.xa{left:747.000000px;}
.x2{left:756.000000px;}
.x16{left:776.175150px;}
.x18{left:981.321150px;}
@media print{
.v8{vertical-align:-114.720000pt;}
.v7{vertical-align:-110.688000pt;}
.v9{vertical-align:-90.720000pt;}
.v6{vertical-align:-74.688000pt;}
.vc{vertical-align:-53.119893pt;}
.vb{vertical-align:-37.972800pt;}
.v2{vertical-align:-24.533333pt;}
.v5{vertical-align:-7.968000pt;}
.v3{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.021760pt;}
.v4{vertical-align:5.333333pt;}
.vd{vertical-align:12.666667pt;}
.v1{vertical-align:24.533333pt;}
.ls12{letter-spacing:-1.194667pt;}
.ls6{letter-spacing:-1.088000pt;}
.ls11{letter-spacing:-1.024000pt;}
.ls36{letter-spacing:-0.812753pt;}
.ls39{letter-spacing:-0.782736pt;}
.ls37{letter-spacing:-0.779718pt;}
.ls38{letter-spacing:-0.757651pt;}
.ls34{letter-spacing:-0.743765pt;}
.ls31{letter-spacing:-0.742489pt;}
.ls35{letter-spacing:-0.732713pt;}
.ls32{letter-spacing:-0.706719pt;}
.ls42{letter-spacing:-0.659137pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls3c{letter-spacing:-0.633291pt;}
.ls3e{letter-spacing:-0.627391pt;}
.ls44{letter-spacing:-0.626483pt;}
.ls3f{letter-spacing:-0.621368pt;}
.ls41{letter-spacing:-0.614744pt;}
.ls46{letter-spacing:-0.611506pt;}
.ls45{letter-spacing:-0.611322pt;}
.ls40{letter-spacing:-0.608721pt;}
.ls3d{letter-spacing:-0.604121pt;}
.ls3{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.288000pt;}
.ls3a{letter-spacing:-0.192000pt;}
.ls48{letter-spacing:-0.170240pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls49{letter-spacing:-0.117760pt;}
.ls33{letter-spacing:-0.106240pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.021333pt;}
.ls43{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.204800pt;}
.ls2{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.358400pt;}
.ls1{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.403200pt;}
.ls21{letter-spacing:0.428800pt;}
.lse{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.454400pt;}
.ls25{letter-spacing:0.518400pt;}
.ls18{letter-spacing:0.947200pt;}
.lsa{letter-spacing:1.088000pt;}
.ls1a{letter-spacing:2.112000pt;}
.ls9{letter-spacing:2.368000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls7{letter-spacing:3.257600pt;}
.ls2a{letter-spacing:4.217600pt;}
.ls23{letter-spacing:4.288000pt;}
.ls20{letter-spacing:5.312000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls28{letter-spacing:7.360000pt;}
.ls29{letter-spacing:7.398400pt;}
.ls27{letter-spacing:7.424000pt;}
.ls10{letter-spacing:8.512000pt;}
.lsc{letter-spacing:9.600000pt;}
.ls26{letter-spacing:10.739200pt;}
.lsd{letter-spacing:12.800000pt;}
.ls1d{letter-spacing:13.868800pt;}
.ls14{letter-spacing:13.888000pt;}
.ls22{letter-spacing:16.000000pt;}
.ls1b{letter-spacing:17.088000pt;}
.ls2e{letter-spacing:22.656000pt;}
.ls24{letter-spacing:23.718400pt;}
.ls5{letter-spacing:26.688000pt;}
.ls1c{letter-spacing:30.937600pt;}
.ls19{letter-spacing:39.488000pt;}
.ls2c{letter-spacing:60.000000pt;}
.ls2b{letter-spacing:73.248000pt;}
.ls47{letter-spacing:93.796267pt;}
.ls3b{letter-spacing:95.022720pt;}
.ls2f{letter-spacing:101.952000pt;}
.ls2d{letter-spacing:132.000000pt;}
.ws89{word-spacing:-74.880000pt;}
.ws0{word-spacing:-16.384000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2d{word-spacing:-15.680000pt;}
.ws3{word-spacing:-15.616000pt;}
.ws33{word-spacing:-14.976000pt;}
.ws40{word-spacing:-14.912000pt;}
.ws5{word-spacing:-10.666667pt;}
.ws34{word-spacing:-9.472000pt;}
.ws77{word-spacing:-2.016000pt;}
.ws30{word-spacing:-1.472000pt;}
.ws43{word-spacing:-1.088000pt;}
.ws2{word-spacing:-0.384000pt;}
.ws8b{word-spacing:-0.192000pt;}
.ws1{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.053120pt;}
.ws80{word-spacing:0.085120pt;}
.ws8c{word-spacing:0.106240pt;}
.ws8d{word-spacing:0.117760pt;}
.ws38{word-spacing:0.128000pt;}
.ws54{word-spacing:0.288000pt;}
.ws2f{word-spacing:0.320000pt;}
.ws52{word-spacing:0.384000pt;}
.ws53{word-spacing:0.480000pt;}
.ws71{word-spacing:0.604121pt;}
.ws74{word-spacing:0.608721pt;}
.ws79{word-spacing:0.611322pt;}
.ws7a{word-spacing:0.611506pt;}
.ws75{word-spacing:0.614744pt;}
.ws73{word-spacing:0.621368pt;}
.ws78{word-spacing:0.626483pt;}
.ws72{word-spacing:0.627391pt;}
.ws70{word-spacing:0.633291pt;}
.wse{word-spacing:0.640000pt;}
.ws76{word-spacing:0.659137pt;}
.ws62{word-spacing:0.690560pt;}
.ws18{word-spacing:0.704000pt;}
.ws5d{word-spacing:0.706719pt;}
.ws60{word-spacing:0.732713pt;}
.ws5c{word-spacing:0.742489pt;}
.ws5f{word-spacing:0.743765pt;}
.ws64{word-spacing:0.757651pt;}
.ws63{word-spacing:0.779718pt;}
.ws65{word-spacing:0.782736pt;}
.ws61{word-spacing:0.812753pt;}
.wsf{word-spacing:1.088000pt;}
.ws39{word-spacing:1.194667pt;}
.ws5e{word-spacing:1.328000pt;}
.ws1a{word-spacing:1.728000pt;}
.ws1d{word-spacing:2.112000pt;}
.ws19{word-spacing:2.816000pt;}
.ws1e{word-spacing:3.200000pt;}
.ws1f{word-spacing:3.904000pt;}
.ws7{word-spacing:4.288000pt;}
.ws13{word-spacing:4.928000pt;}
.ws29{word-spacing:5.312000pt;}
.wsa{word-spacing:6.016000pt;}
.ws10{word-spacing:6.400000pt;}
.wsb{word-spacing:7.104000pt;}
.ws26{word-spacing:7.488000pt;}
.ws17{word-spacing:8.128000pt;}
.ws24{word-spacing:8.512000pt;}
.ws25{word-spacing:9.216000pt;}
.ws1c{word-spacing:9.600000pt;}
.ws36{word-spacing:10.304000pt;}
.ws27{word-spacing:10.688000pt;}
.ws12{word-spacing:11.328000pt;}
.ws11{word-spacing:11.712000pt;}
.ws22{word-spacing:12.416000pt;}
.ws37{word-spacing:12.800000pt;}
.ws6{word-spacing:13.504000pt;}
.ws3a{word-spacing:13.888000pt;}
.ws23{word-spacing:14.528000pt;}
.ws1b{word-spacing:14.912000pt;}
.ws2a{word-spacing:15.616000pt;}
.ws21{word-spacing:16.000000pt;}
.ws15{word-spacing:16.704000pt;}
.ws14{word-spacing:17.088000pt;}
.ws16{word-spacing:17.728000pt;}
.ws4f{word-spacing:18.112000pt;}
.ws28{word-spacing:18.816000pt;}
.ws2e{word-spacing:19.200000pt;}
.ws45{word-spacing:19.904000pt;}
.ws44{word-spacing:20.288000pt;}
.wsc{word-spacing:20.928000pt;}
.ws42{word-spacing:21.312000pt;}
.ws3f{word-spacing:22.016000pt;}
.ws9{word-spacing:22.400000pt;}
.ws32{word-spacing:23.488000pt;}
.wsd{word-spacing:24.128000pt;}
.ws48{word-spacing:24.512000pt;}
.ws49{word-spacing:25.216000pt;}
.ws4a{word-spacing:25.600000pt;}
.ws20{word-spacing:26.304000pt;}
.ws8{word-spacing:26.688000pt;}
.ws50{word-spacing:27.328000pt;}
.ws4b{word-spacing:28.416000pt;}
.ws4c{word-spacing:28.800000pt;}
.ws3d{word-spacing:29.504000pt;}
.ws3e{word-spacing:29.888000pt;}
.ws47{word-spacing:30.912000pt;}
.ws2b{word-spacing:31.616000pt;}
.ws2c{word-spacing:32.000000pt;}
.ws35{word-spacing:33.728000pt;}
.ws51{word-spacing:34.112000pt;}
.ws41{word-spacing:39.488000pt;}
.ws3c{word-spacing:41.600000pt;}
.ws3b{word-spacing:42.304000pt;}
.ws31{word-spacing:44.416000pt;}
.ws46{word-spacing:44.800000pt;}
.ws7c{word-spacing:59.708245pt;}
.ws4e{word-spacing:67.200000pt;}
.ws4d{word-spacing:68.288000pt;}
.ws67{word-spacing:80.271360pt;}
.ws6d{word-spacing:88.957440pt;}
.ws6c{word-spacing:93.600000pt;}
.ws6e{word-spacing:95.621760pt;}
.ws87{word-spacing:95.856640pt;}
.ws7d{word-spacing:97.210880pt;}
.ws6f{word-spacing:97.643520pt;}
.ws81{word-spacing:97.858560pt;}
.ws85{word-spacing:98.565120pt;}
.ws8a{word-spacing:99.212800pt;}
.ws58{word-spacing:104.981760pt;}
.ws56{word-spacing:109.923840pt;}
.ws59{word-spacing:120.931200pt;}
.ws82{word-spacing:145.198080pt;}
.ws84{word-spacing:146.552320pt;}
.ws7e{word-spacing:151.851520pt;}
.ws6a{word-spacing:195.661440pt;}
.ws6b{word-spacing:200.304000pt;}
.ws69{word-spacing:206.294400pt;}
.ws68{word-spacing:206.968320pt;}
.ws66{word-spacing:212.958720pt;}
.ws83{word-spacing:249.886720pt;}
.ws5a{word-spacing:258.935040pt;}
.ws5b{word-spacing:261.630720pt;}
.ws86{word-spacing:268.551680pt;}
.ws88{word-spacing:271.201280pt;}
.ws7f{word-spacing:274.557440pt;}
.ws55{word-spacing:284.768640pt;}
.ws57{word-spacing:284.993280pt;}
._43{margin-left:-2517.952000pt;}
._56{margin-left:-2515.468800pt;}
._5c{margin-left:-2513.958400pt;}
._4a{margin-left:-2507.584000pt;}
._2d{margin-left:-2505.510400pt;}
._65{margin-left:-2504.352000pt;}
._79{margin-left:-2502.816000pt;}
._70{margin-left:-2501.728000pt;}
._44{margin-left:-2498.169600pt;}
._58{margin-left:-2496.902400pt;}
._30{margin-left:-2494.611200pt;}
._74{margin-left:-2493.248000pt;}
._53{margin-left:-2492.102400pt;}
._2e{margin-left:-2490.976000pt;}
._3f{margin-left:-2490.067200pt;}
._32{margin-left:-2488.371200pt;}
._75{margin-left:-2486.688000pt;}
._31{margin-left:-2485.772800pt;}
._2f{margin-left:-2484.480000pt;}
._34{margin-left:-2483.456000pt;}
._3e{margin-left:-2482.329600pt;}
._29{margin-left:-2480.921600pt;}
._64{margin-left:-2480.025600pt;}
._2a{margin-left:-2479.052800pt;}
._2c{margin-left:-2477.388800pt;}
._3d{margin-left:-2475.859200pt;}
._3a{margin-left:-2474.963200pt;}
._33{margin-left:-2474.016000pt;}
._40{margin-left:-2472.729600pt;}
._a3{margin-left:-2471.014400pt;}
._b{margin-left:-2468.870400pt;}
._eb{margin-left:-2465.670400pt;}
._12{margin-left:-2463.289600pt;}
._26{margin-left:-2461.440000pt;}
._d2{margin-left:-2460.083200pt;}
._68{margin-left:-2459.136000pt;}
._1a{margin-left:-2458.124800pt;}
._1f{margin-left:-2456.921600pt;}
._22{margin-left:-2455.443200pt;}
._24{margin-left:-2454.547200pt;}
._e8{margin-left:-2453.420800pt;}
._18{margin-left:-2452.396800pt;}
._20{margin-left:-2451.148800pt;}
._14{margin-left:-2450.163200pt;}
._16{margin-left:-2449.267200pt;}
._13{margin-left:-2447.820800pt;}
._9{margin-left:-2446.732800pt;}
._c9{margin-left:-2445.593600pt;}
._1b{margin-left:-2444.697600pt;}
._17{margin-left:-2443.392000pt;}
._15{margin-left:-2441.555200pt;}
._e6{margin-left:-2439.552000pt;}
._a1{margin-left:-2435.590400pt;}
._9e{margin-left:-2433.907200pt;}
._a0{margin-left:-2431.776000pt;}
._f1{margin-left:-2428.249600pt;}
._21{margin-left:-2427.052800pt;}
._6{margin-left:-2422.924800pt;}
._be{margin-left:-2421.747200pt;}
._f4{margin-left:-2420.652800pt;}
._ab{margin-left:-2419.744000pt;}
._ad{margin-left:-2416.403200pt;}
._cc{margin-left:-2415.468800pt;}
._d8{margin-left:-2412.998400pt;}
._84{margin-left:-2411.507200pt;}
._10d{margin-left:-2409.555200pt;}
._c5{margin-left:-2408.140800pt;}
._25{margin-left:-2405.779200pt;}
._c2{margin-left:-2404.710400pt;}
._27{margin-left:-2403.052800pt;}
._66{margin-left:-2401.529600pt;}
._fd{margin-left:-2400.384000pt;}
._10b{margin-left:-2397.670400pt;}
._114{margin-left:-2394.240000pt;}
._111{margin-left:-2393.164800pt;}
._bb{margin-left:-2389.190400pt;}
._f2{margin-left:-2386.412800pt;}
._ca{margin-left:-2383.257600pt;}
._ce{margin-left:-2378.592000pt;}
._81{margin-left:-2376.294400pt;}
._e1{margin-left:-2373.715200pt;}
._99{margin-left:-2372.000000pt;}
._8f{margin-left:-2370.432000pt;}
._da{margin-left:-2369.158400pt;}
._112{margin-left:-2365.126400pt;}
._d1{margin-left:-2363.302400pt;}
._af{margin-left:-2358.835200pt;}
._c1{margin-left:-2356.780800pt;}
._95{margin-left:-2354.624000pt;}
._10a{margin-left:-2347.539200pt;}
._85{margin-left:-2346.534400pt;}
._8e{margin-left:-2344.934400pt;}
._102{margin-left:-2342.272000pt;}
._c4{margin-left:-2340.140800pt;}
._db{margin-left:-2338.508800pt;}
._89{margin-left:-2335.916800pt;}
._8a{margin-left:-2332.896000pt;}
._5b{margin-left:-2329.312000pt;}
._f5{margin-left:-2327.974400pt;}
._e3{margin-left:-2325.382400pt;}
._97{margin-left:-2321.299200pt;}
._c3{margin-left:-2318.656000pt;}
._82{margin-left:-2316.748800pt;}
._10f{margin-left:-2313.862400pt;}
._ae{margin-left:-2310.803200pt;}
._df{margin-left:-2309.888000pt;}
._f7{margin-left:-2308.294400pt;}
._ff{margin-left:-2304.902400pt;}
._9d{margin-left:-2303.808000pt;}
._a6{margin-left:-2302.624000pt;}
._106{margin-left:-2301.209600pt;}
._9b{margin-left:-2298.073600pt;}
._cf{margin-left:-2295.142400pt;}
._7a{margin-left:-2292.819200pt;}
._cb{margin-left:-2285.408000pt;}
._ef{margin-left:-2280.998400pt;}
._bc{margin-left:-2279.712000pt;}
._f3{margin-left:-2274.515200pt;}
._f0{margin-left:-2272.646400pt;}
._b7{margin-left:-2271.526400pt;}
._8c{margin-left:-2268.083200pt;}
._a8{margin-left:-2266.656000pt;}
._92{margin-left:-2264.608000pt;}
._b9{margin-left:-2262.976000pt;}
._c0{margin-left:-2262.080000pt;}
._d6{margin-left:-2260.364800pt;}
._118{margin-left:-2257.497600pt;}
._94{margin-left:-2246.611200pt;}
._aa{margin-left:-2229.401600pt;}
._b1{margin-left:-2228.288000pt;}
._fb{margin-left:-2225.804800pt;}
._8d{margin-left:-2222.035200pt;}
._c7{margin-left:-2219.878400pt;}
._f8{margin-left:-2218.880000pt;}
._101{margin-left:-2213.747200pt;}
._d4{margin-left:-2212.774400pt;}
._11a{margin-left:-2210.860800pt;}
._b4{margin-left:-2208.614400pt;}
._dd{margin-left:-2207.372800pt;}
._100{margin-left:-2206.419200pt;}
._b5{margin-left:-2205.248000pt;}
._2{margin-left:-2197.196800pt;}
._fc{margin-left:-2189.664000pt;}
._ea{margin-left:-2182.214400pt;}
._90{margin-left:-2175.033600pt;}
._87{margin-left:-2162.092800pt;}
._a4{margin-left:-2160.800000pt;}
._109{margin-left:-2156.761600pt;}
._76{margin-left:-2139.500800pt;}
._e2{margin-left:-2127.072000pt;}
._7f{margin-left:-2120.243200pt;}
._91{margin-left:-2108.416000pt;}
._b3{margin-left:-2088.486400pt;}
._bf{margin-left:-2074.656000pt;}
._c8{margin-left:-2061.395200pt;}
._cd{margin-left:-2060.121600pt;}
._80{margin-left:-2037.280000pt;}
._69{margin-left:-2032.364800pt;}
._11c{margin-left:-2016.908800pt;}
._f6{margin-left:-2006.105600pt;}
._41{margin-left:-1974.342400pt;}
._9a{margin-left:-1957.331200pt;}
._105{margin-left:-1948.275200pt;}
._4f{margin-left:-1945.580800pt;}
._5a{margin-left:-1917.126400pt;}
._104{margin-left:-1908.070400pt;}
._ec{margin-left:-1892.652800pt;}
._110{margin-left:-1890.969600pt;}
._e9{margin-left:-1879.059200pt;}
._52{margin-left:-1869.811200pt;}
._e5{margin-left:-1842.438400pt;}
._fa{margin-left:-1819.993600pt;}
._10e{margin-left:-1805.459200pt;}
._9c{margin-left:-1773.459200pt;}
._ee{margin-left:-1765.222400pt;}
._108{margin-left:-1757.926400pt;}
._3{margin-left:-1727.161600pt;}
._fe{margin-left:-1714.816000pt;}
._119{margin-left:-1695.923200pt;}
._63{margin-left:-1663.968000pt;}
._98{margin-left:-1637.273600pt;}
._23{margin-left:-1608.358400pt;}
._10c{margin-left:-1604.614400pt;}
._b2{margin-left:-1597.568000pt;}
._ed{margin-left:-1591.302400pt;}
._7c{margin-left:-1581.683200pt;}
._36{margin-left:-1573.184000pt;}
._60{margin-left:-1568.300800pt;}
._107{margin-left:-1491.187200pt;}
._71{margin-left:-1484.979200pt;}
._116{margin-left:-1473.856000pt;}
._3c{margin-left:-1471.974400pt;}
._117{margin-left:-1459.577600pt;}
._8{margin-left:-1455.848533pt;}
._ba{margin-left:-1445.395200pt;}
._d7{margin-left:-1413.395200pt;}
._e0{margin-left:-1396.844800pt;}
._c{margin-left:-1374.099200pt;}
._93{margin-left:-1367.699200pt;}
._f{margin-left:-1364.889600pt;}
._103{margin-left:-1360.448000pt;}
._4d{margin-left:-1315.033600pt;}
._88{margin-left:-1300.537600pt;}
._d9{margin-left:-1290.598400pt;}
._77{margin-left:-1274.387200pt;}
._a9{margin-left:-1258.598400pt;}
._86{margin-left:-1244.627200pt;}
._5{margin-left:-1223.795200pt;}
._a5{margin-left:-1217.446400pt;}
._8b{margin-left:-1212.627200pt;}
._2b{margin-left:-1211.705600pt;}
._a2{margin-left:-1180.563200pt;}
._a{margin-left:-1160.422400pt;}
._73{margin-left:-1141.075200pt;}
._48{margin-left:-1139.091200pt;}
._e4{margin-left:-1132.563200pt;}
._d3{margin-left:-1128.761600pt;}
._51{margin-left:-1117.632000pt;}
._59{margin-left:-1107.283200pt;}
._1d{margin-left:-1082.886400pt;}
._11b{margin-left:-1073.171200pt;}
._c6{margin-left:-1061.459200pt;}
._1c{margin-left:-1029.299200pt;}
._67{margin-left:-964.844800pt;}
._42{margin-left:-956.576000pt;}
._b8{margin-left:-954.668800pt;}
._10{margin-left:-945.792000pt;}
._96{margin-left:-890.342400pt;}
._f9{margin-left:-861.420800pt;}
._83{margin-left:-858.342400pt;}
._bd{margin-left:-843.072000pt;}
._7b{margin-left:-839.251200pt;}
._e{margin-left:-802.732800pt;}
._115{margin-left:-772.908800pt;}
._6a{margin-left:-763.097600pt;}
._39{margin-left:-759.251200pt;}
._113{margin-left:-716.800000pt;}
._1e{margin-left:-708.908800pt;}
._6d{margin-left:-704.384000pt;}
._dc{margin-left:-674.112000pt;}
._e7{margin-left:-652.800000pt;}
._38{margin-left:-647.488000pt;}
._4b{margin-left:-635.564800pt;}
._b6{margin-left:-624.448000pt;}
._de{margin-left:-620.800000pt;}
._50{margin-left:-611.968000pt;}
._d5{margin-left:-588.800000pt;}
._9f{margin-left:-551.488000pt;}
._11{margin-left:-543.859200pt;}
._a7{margin-left:-524.800000pt;}
._6c{margin-left:-520.172800pt;}
._b0{margin-left:-503.488000pt;}
._57{margin-left:-498.668800pt;}
._7d{margin-left:-491.123200pt;}
._d0{margin-left:-471.488000pt;}
._ac{margin-left:-439.488000pt;}
._3b{margin-left:-394.624000pt;}
._49{margin-left:-373.312000pt;}
._37{margin-left:-359.488000pt;}
._d{margin-left:-327.488000pt;}
._7{margin-left:-295.488000pt;}
._7e{margin-left:-208.000000pt;}
._1{margin-left:-2.169600pt;}
._0{margin-left:-1.177600pt;}
._4{width:1.004800pt;}
._19{width:1.907200pt;}
._6b{width:3.436800pt;}
._45{width:4.499200pt;}
._4e{width:6.291200pt;}
._28{width:8.236800pt;}
._47{width:9.280000pt;}
._46{width:10.387200pt;}
._4c{width:12.416000pt;}
._78{width:13.427200pt;}
._35{width:14.681600pt;}
._72{width:16.966400pt;}
._5f{width:19.769600pt;}
._5d{width:21.600000pt;}
._5e{width:23.264000pt;}
._62{width:29.382400pt;}
._55{width:31.270400pt;}
._54{width:32.723200pt;}
._61{width:44.467200pt;}
._6e{width:67.200000pt;}
._6f{width:68.672000pt;}
._131{width:99.066240pt;}
._130{width:100.339200pt;}
._13e{width:101.273600pt;}
._128{width:102.585600pt;}
._12f{width:107.003520pt;}
._132{width:107.927040pt;}
._13d{width:109.928960pt;}
._140{width:111.283200pt;}
._122{width:122.353920pt;}
._121{width:124.375680pt;}
._11f{width:126.172800pt;}
._125{width:127.670400pt;}
._11e{width:142.346880pt;}
._134{width:144.609280pt;}
._13f{width:150.615040pt;}
._139{width:153.912320pt;}
._13c{width:155.266560pt;}
._133{width:205.454507pt;}
._12c{width:219.697920pt;}
._127{width:221.045760pt;}
._12a{width:222.393600pt;}
._126{width:231.678720pt;}
._12b{width:235.048320pt;}
._129{width:240.364800pt;}
._12e{width:245.007360pt;}
._138{width:249.886720pt;}
._12d{width:250.997760pt;}
._135{width:261.287467pt;}
._136{width:266.608640pt;}
._13a{width:268.610560pt;}
._13b{width:274.616320pt;}
._141{width:275.911680pt;}
._124{width:284.394240pt;}
._11d{width:288.737280pt;}
._120{width:289.635840pt;}
._143{width:291.522560pt;}
._123{width:312.998400pt;}
._142{width:1055.431680pt;}
._137{width:1058.200533pt;}
.fs12{font-size:26.266133pt;}
.fs15{font-size:26.466133pt;}
.fs1a{font-size:26.579200pt;}
.fs1b{font-size:26.587200pt;}
.fs16{font-size:26.728000pt;}
.fs14{font-size:27.016000pt;}
.fs19{font-size:27.238400pt;}
.fs13{font-size:27.277867pt;}
.fs11{font-size:27.534400pt;}
.fs17{font-size:28.658133pt;}
.fs9{font-size:30.726933pt;}
.fsc{font-size:31.857067pt;}
.fs7{font-size:32.282133pt;}
.fsb{font-size:32.337600pt;}
.fsf{font-size:32.941333pt;}
.fse{font-size:33.900800pt;}
.fs10{font-size:34.032000pt;}
.fsd{font-size:35.337067pt;}
.fs5{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs18{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:56.218213pt;}
.fs1d{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:67.461923pt;}
.fs8{font-size:74.880000pt;}
.fs1c{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.y28{bottom:-53.333200pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:2.000133pt;}
.y3{bottom:3.466667pt;}
.y29{bottom:5.333467pt;}
.ybb{bottom:8.786667pt;}
.y99{bottom:9.120000pt;}
.y83{bottom:9.631067pt;}
.y95{bottom:9.704267pt;}
.yb0{bottom:9.745867pt;}
.yb7{bottom:9.748533pt;}
.y9b{bottom:9.800800pt;}
.y8f{bottom:9.905733pt;}
.y89{bottom:10.002000pt;}
.ya2{bottom:10.030667pt;}
.y7d{bottom:10.095867pt;}
.yee{bottom:10.626667pt;}
.y4b{bottom:11.266133pt;}
.y45{bottom:11.299200pt;}
.y52{bottom:11.319067pt;}
.y6c{bottom:11.528933pt;}
.y58{bottom:11.681733pt;}
.ye6{bottom:11.960000pt;}
.y5f{bottom:12.368000pt;}
.y66{bottom:12.430800pt;}
.y73{bottom:12.478267pt;}
.ya9{bottom:13.619333pt;}
.yea{bottom:23.245547pt;}
.yb6{bottom:24.617333pt;}
.y94{bottom:25.105333pt;}
.y6a{bottom:33.620000pt;}
.y70{bottom:36.120000pt;}
.y65{bottom:45.728000pt;}
.y7e{bottom:46.808533pt;}
.y2{bottom:47.200000pt;}
.ya3{bottom:48.241467pt;}
.y6b{bottom:48.558667pt;}
.y84{bottom:48.592133pt;}
.y96{bottom:48.962667pt;}
.yb1{bottom:49.171733pt;}
.yb8{bottom:49.186400pt;}
.y9c{bottom:49.447600pt;}
.y90{bottom:49.979600pt;}
.y8a{bottom:50.464133pt;}
.y1{bottom:50.666667pt;}
.yaa{bottom:54.476800pt;}
.yeb{bottom:56.073707pt;}
.y4c{bottom:56.332400pt;}
.y46{bottom:59.181674pt;}
.y53{bottom:59.286267pt;}
.y59{bottom:59.467200pt;}
.y6d{bottom:60.940800pt;}
.y67{bottom:62.714162pt;}
.y74{bottom:62.958933pt;}
.y60{bottom:65.373600pt;}
.y7f{bottom:83.062533pt;}
.ya4{bottom:86.929947pt;}
.y85{bottom:87.551376pt;}
.y97{bottom:87.780133pt;}
.yec{bottom:88.078507pt;}
.yb2{bottom:88.597600pt;}
.yb9{bottom:88.624400pt;}
.y9d{bottom:88.649067pt;}
.y91{bottom:89.605318pt;}
.y8b{bottom:90.473944pt;}
.yab{bottom:95.334400pt;}
.ye8{bottom:96.966667pt;}
.y4d{bottom:101.910667pt;}
.y47{bottom:106.531493pt;}
.y54{bottom:107.253467pt;}
.y5a{bottom:107.786406pt;}
.y6e{bottom:109.801033pt;}
.y68{bottom:112.438160pt;}
.y75{bottom:112.872400pt;}
.y61{bottom:117.787304pt;}
.y80{bottom:119.775067pt;}
.ye9{bottom:120.906667pt;}
.ya5{bottom:125.138403pt;}
.y26{bottom:125.338667pt;}
.y86{bottom:126.510618pt;}
.y98{bottom:127.038533pt;}
.yb3{bottom:128.023467pt;}
.y3d{bottom:128.261333pt;}
.y9e{bottom:128.296000pt;}
.yba{bottom:128.505467pt;}
.y92{bottom:129.676800pt;}
.y20{bottom:130.133333pt;}
.y8c{bottom:130.933840pt;}
.yac{bottom:136.192000pt;}
.ye7{bottom:146.566667pt;}
.y4e{bottom:146.976800pt;}
.yed{bottom:152.579467pt;}
.y48{bottom:154.413968pt;}
.y55{bottom:155.218212pt;}
.y5b{bottom:155.572006pt;}
.y6f{bottom:159.213033pt;}
.y25{bottom:162.133333pt;}
.y69{bottom:162.721522pt;}
.y76{bottom:163.352933pt;}
.y24{bottom:163.466667pt;}
.y3c{bottom:165.061333pt;}
.ye5{bottom:166.460000pt;}
.y1f{bottom:166.933333pt;}
.ybc{bottom:167.406667pt;}
.ydd{bottom:167.793333pt;}
.ydc{bottom:167.794667pt;}
.y62{bottom:170.792904pt;}
.yc1{bottom:171.005333pt;}
.ye2{bottom:179.238107pt;}
.y23{bottom:201.333333pt;}
.y3b{bottom:201.861333pt;}
.y8d{bottom:202.620000pt;}
.y21{bottom:202.661333pt;}
.y22{bottom:202.666667pt;}
.yb4{bottom:203.453333pt;}
.y1e{bottom:203.733333pt;}
.ye3{bottom:212.238907pt;}
.y88{bottom:216.118667pt;}
.yaf{bottom:218.278667pt;}
.y7b{bottom:225.845333pt;}
.y71{bottom:227.906533pt;}
.y3a{bottom:238.661333pt;}
.y1d{bottom:240.533333pt;}
.ye4{bottom:244.575707pt;}
.ye0{bottom:252.633200pt;}
.y77{bottom:259.786533pt;}
.y63{bottom:260.953333pt;}
.y5e{bottom:271.265333pt;}
.y72{bottom:271.397333pt;}
.y39{bottom:275.461333pt;}
.ye1{bottom:276.739867pt;}
.y1c{bottom:277.333333pt;}
.ydf{bottom:304.233333pt;}
.yde{bottom:309.406667pt;}
.y38{bottom:312.261333pt;}
.y1b{bottom:314.133333pt;}
.yd5{bottom:314.626533pt;}
.ydb{bottom:314.626667pt;}
.yd4{bottom:315.126667pt;}
.yd8{bottom:327.786213pt;}
.y37{bottom:349.061333pt;}
.y1a{bottom:350.933333pt;}
.y43{bottom:353.346667pt;}
.yc0{bottom:361.341333pt;}
.yb5{bottom:363.906667pt;}
.yd7{bottom:383.457253pt;}
.y36{bottom:385.861333pt;}
.y17{bottom:387.733333pt;}
.yad{bottom:405.453333pt;}
.yd9{bottom:406.133333pt;}
.y93{bottom:406.620000pt;}
.ya8{bottom:418.128000pt;}
.y8e{bottom:421.781333pt;}
.y35{bottom:422.661333pt;}
.y16{bottom:424.533333pt;}
.yd6{bottom:439.290213pt;}
.y40{bottom:441.008000pt;}
.yda{bottom:453.733333pt;}
.y42{bottom:457.338667pt;}
.y34{bottom:459.461333pt;}
.y15{bottom:461.333333pt;}
.y64{bottom:462.239867pt;}
.y7a{bottom:467.173333pt;}
.ycd{bottom:478.126667pt;}
.yce{bottom:479.626667pt;}
.y3f{bottom:482.672000pt;}
.yd1{bottom:490.896480pt;}
.y33{bottom:496.261333pt;}
.y14{bottom:498.133333pt;}
.y56{bottom:501.286667pt;}
.y5c{bottom:504.119867pt;}
.y51{bottom:513.029333pt;}
.y57{bottom:516.021333pt;}
.y32{bottom:533.061333pt;}
.y13{bottom:534.933333pt;}
.y3e{bottom:536.840000pt;}
.yd0{bottom:546.234240pt;}
.yd2{bottom:567.966533pt;}
.y31{bottom:569.861333pt;}
.y12{bottom:571.733333pt;}
.ybf{bottom:573.005333pt;}
.yae{bottom:575.573333pt;}
.y87{bottom:600.286667pt;}
.y81{bottom:600.786667pt;}
.ycf{bottom:601.240000pt;}
.y30{bottom:606.661333pt;}
.y11{bottom:608.533333pt;}
.y7c{bottom:614.300000pt;}
.y82{bottom:614.440000pt;}
.yd3{bottom:617.400000pt;}
.y41{bottom:628.506667pt;}
.ycb{bottom:636.460000pt;}
.ycc{bottom:637.960000pt;}
.y2f{bottom:643.461333pt;}
.y10{bottom:645.333333pt;}
.yc8{bottom:648.944160pt;}
.y2e{bottom:680.261333pt;}
.yf{bottom:682.133333pt;}
.y79{bottom:693.845333pt;}
.y5d{bottom:697.073200pt;}
.yc7{bottom:708.280480pt;}
.y2d{bottom:717.061333pt;}
.ye{bottom:718.933333pt;}
.yc9{bottom:726.133200pt;}
.y4f{bottom:741.150267pt;}
.y49{bottom:741.310400pt;}
.y44{bottom:752.417333pt;}
.y2c{bottom:753.861333pt;}
.y4a{bottom:754.062667pt;}
.y19{bottom:755.733333pt;}
.ybe{bottom:756.173333pt;}
.ya7{bottom:757.020000pt;}
.yd{bottom:761.866667pt;}
.yc6{bottom:766.954400pt;}
.y9f{bottom:772.953333pt;}
.yca{bottom:775.733333pt;}
.ya0{bottom:777.120000pt;}
.ya1{bottom:788.472000pt;}
.y9a{bottom:788.609333pt;}
.y2b{bottom:790.661333pt;}
.yc{bottom:792.533333pt;}
.yc5{bottom:812.239973pt;}
.y27{bottom:823.866667pt;}
.y18{bottom:829.333333pt;}
.yb{bottom:835.466667pt;}
.ya{bottom:866.133333pt;}
.yc4{bottom:869.742373pt;}
.yc2{bottom:886.800000pt;}
.y9{bottom:902.933333pt;}
.y78{bottom:927.013333pt;}
.y50{bottom:930.906667pt;}
.ybd{bottom:936.013333pt;}
.yc3{bottom:936.233333pt;}
.y8{bottom:939.733333pt;}
.ya6{bottom:942.240000pt;}
.y7{bottom:958.133333pt;}
.y6{bottom:976.533333pt;}
.y5{bottom:994.933333pt;}
.y4{bottom:1013.333333pt;}
.h2{height:18.401333pt;}
.h29{height:19.122463pt;}
.h30{height:19.268069pt;}
.h39{height:19.350384pt;}
.h3b{height:19.356209pt;}
.h32{height:19.458715pt;}
.h2e{height:19.668387pt;}
.h37{height:19.830300pt;}
.h2c{height:19.859033pt;}
.h9{height:19.998667pt;}
.h27{height:20.045796pt;}
.h34{height:20.863905pt;}
.h16{height:22.370048pt;}
.h1b{height:23.192816pt;}
.h13{height:23.502276pt;}
.h19{height:23.542657pt;}
.h21{height:23.982191pt;}
.h1f{height:24.680709pt;}
.h24{height:24.776227pt;}
.h1d{height:25.726351pt;}
.hc{height:25.921875pt;}
.h4{height:29.645833pt;}
.h35{height:34.945312pt;}
.h17{height:38.672812pt;}
.ha{height:39.505208pt;}
.hb{height:41.642104pt;}
.h3d{height:42.866250pt;}
.h1{height:44.468750pt;}
.h25{height:46.593750pt;}
.h5{height:47.406250pt;}
.h8{height:49.802083pt;}
.h6{height:49.970575pt;}
.h7{height:52.739583pt;}
.h3{height:54.179167pt;}
.h14{height:54.514687pt;}
.h22{height:55.188607pt;}
.h2a{height:56.536448pt;}
.h3c{height:61.969687pt;}
.he{height:69.890625pt;}
.h26{height:159.700000pt;}
.h33{height:166.694667pt;}
.h28{height:167.226667pt;}
.h2f{height:168.061333pt;}
.h38{height:169.221333pt;}
.h3a{height:169.716000pt;}
.h31{height:169.722667pt;}
.h2d{height:171.552000pt;}
.h2b{height:173.214667pt;}
.h36{height:173.872000pt;}
.h15{height:194.604000pt;}
.h12{height:203.914667pt;}
.h18{height:204.802667pt;}
.h1a{height:205.478667pt;}
.h20{height:210.274667pt;}
.h1e{height:215.272000pt;}
.h23{height:216.102667pt;}
.h1c{height:225.569333pt;}
.hd{height:720.000000pt;}
.h10{height:793.333333pt;}
.hf{height:793.626667pt;}
.h11{height:960.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:8.000000pt;}
.w4{width:14.666667pt;}
.w3{width:14.668000pt;}
.w2{width:16.001333pt;}
.w19{width:163.793333pt;}
.w12{width:163.974667pt;}
.w18{width:164.294667pt;}
.w1a{width:167.453333pt;}
.w17{width:172.025333pt;}
.wc{width:193.398667pt;}
.wa{width:195.398667pt;}
.wf{width:195.794667pt;}
.wd{width:201.610667pt;}
.w14{width:288.056000pt;}
.w11{width:290.034667pt;}
.w16{width:290.220000pt;}
.w15{width:290.718667pt;}
.w13{width:290.885333pt;}
.we{width:359.281333pt;}
.w10{width:360.280000pt;}
.wb{width:360.329333pt;}
.w9{width:360.333333pt;}
.w8{width:720.000000pt;}
.w0{width:793.333333pt;}
.w6{width:793.626667pt;}
.w5{width:960.000000pt;}
.w7{width:1122.666667pt;}
.xc{left:-45.333200pt;}
.x0{left:0.000000pt;}
.xd{left:1.333333pt;}
.x2b{left:3.433333pt;}
.x33{left:6.000000pt;}
.xe{left:8.833200pt;}
.x38{left:9.872533pt;}
.x1e{left:11.239733pt;}
.x1b{left:12.566433pt;}
.x25{left:13.662012pt;}
.x1d{left:14.833333pt;}
.x1a{left:16.584400pt;}
.x24{left:18.030267pt;}
.x29{left:19.116667pt;}
.x3a{left:22.453333pt;}
.x3b{left:26.286667pt;}
.x40{left:28.120000pt;}
.x48{left:29.346667pt;}
.x44{left:31.680000pt;}
.x35{left:33.100000pt;}
.x34{left:34.266667pt;}
.x36{left:36.933333pt;}
.x39{left:37.933333pt;}
.x37{left:40.433333pt;}
.x32{left:42.433333pt;}
.x49{left:45.270667pt;}
.x20{left:46.766667pt;}
.x45{left:47.933333pt;}
.x27{left:52.100000pt;}
.x26{left:54.433333pt;}
.x3f{left:55.771947pt;}
.x1f{left:56.829200pt;}
.x23{left:58.433333pt;}
.x2a{left:60.433333pt;}
.x12{left:65.349333pt;}
.x5{left:73.354667pt;}
.x46{left:80.266667pt;}
.x3{left:81.333333pt;}
.x41{left:82.266667pt;}
.x3c{left:83.600000pt;}
.x17{left:88.949467pt;}
.x1{left:113.333333pt;}
.x4{left:151.205333pt;}
.x2c{left:173.833333pt;}
.x2e{left:175.000000pt;}
.x30{left:177.333333pt;}
.x8{left:196.800000pt;}
.x9{left:207.733333pt;}
.x19{left:215.333333pt;}
.x21{left:216.833333pt;}
.x28{left:218.333333pt;}
.x2d{left:225.433333pt;}
.x2f{left:228.600000pt;}
.x31{left:231.600000pt;}
.x47{left:242.100000pt;}
.x3d{left:243.600133pt;}
.x1c{left:280.483600pt;}
.x22{left:283.766667pt;}
.xb{left:348.400000pt;}
.x13{left:355.600133pt;}
.xf{left:362.933333pt;}
.x10{left:393.466667pt;}
.x11{left:408.000000pt;}
.x43{left:447.935680pt;}
.x42{left:450.100000pt;}
.x3e{left:457.433333pt;}
.x14{left:522.424133pt;}
.x15{left:550.600133pt;}
.x6{left:577.333333pt;}
.x7{left:588.266667pt;}
.xa{left:664.000000pt;}
.x2{left:672.000000pt;}
.x16{left:689.933467pt;}
.x18{left:872.285467pt;}
}




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