
    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_804a26c3c6d90fd45bca9c3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.215000;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_893e25e15313b7dadfa2891d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.018000;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_2a0eb50c09cdd56959d506be.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.225000;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_5454812e1fbc3bf793243756.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.683594;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_804a26c3c6d90fd45bca9c3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.215000;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_a0f69cafc2c12edfd9b3d573.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a0eb50c09cdd56959d506be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.225000;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_b973608f32da47e27ee5923d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_893e25e15313b7dadfa2891d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.018000;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_a1e0c5b72516a8b6d5529f84.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.746094;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.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);}
.m1{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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls18{letter-spacing:-0.841680px;}
.ls62{letter-spacing:-0.541080px;}
.ls34{letter-spacing:-0.432000px;}
.ls29{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.300600px;}
.ls14{letter-spacing:-0.288360px;}
.ls55{letter-spacing:-0.288000px;}
.ls53{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.131760px;}
.ls21{letter-spacing:-0.126744px;}
.ls4b{letter-spacing:-0.120240px;}
.ls20{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.065880px;}
.ls16{letter-spacing:-0.060120px;}
.lsc{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.012960px;}
.ls1f{letter-spacing:0.060120px;}
.ls72{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065880px;}
.ls27{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.096120px;}
.ls50{letter-spacing:0.120240px;}
.ls4{letter-spacing:0.132120px;}
.ls6f{letter-spacing:0.136800px;}
.ls19{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.145332px;}
.ls61{letter-spacing:0.175680px;}
.ls10{letter-spacing:0.197640px;}
.ls2d{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.461160px;}
.lsa{letter-spacing:0.486105px;}
.ls28{letter-spacing:0.504000px;}
.ls2b{letter-spacing:0.720000px;}
.ls51{letter-spacing:1.022040px;}
.ls5d{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.322640px;}
.ls42{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.647000px;}
.ls15{letter-spacing:1.683360px;}
.ls0{letter-spacing:1.713600px;}
.ls57{letter-spacing:1.728000px;}
.ls4a{letter-spacing:1.743480px;}
.lse{letter-spacing:1.778760px;}
.ls3c{letter-spacing:1.800000px;}
.lsb{letter-spacing:1.910520px;}
.ls49{letter-spacing:1.944000px;}
.ls4f{letter-spacing:2.088000px;}
.ls43{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.180880px;}
.ls56{letter-spacing:2.232000px;}
.ls7{letter-spacing:2.264760px;}
.ls1d{letter-spacing:2.520000px;}
.ls39{letter-spacing:2.880000px;}
.ls5e{letter-spacing:3.240000px;}
.ls3{letter-spacing:3.567240px;}
.ls44{letter-spacing:3.600000px;}
.ls52{letter-spacing:3.960000px;}
.ls54{letter-spacing:4.629240px;}
.ls47{letter-spacing:4.680000px;}
.ls1c{letter-spacing:5.040000px;}
.ls1a{letter-spacing:5.400000px;}
.ls3e{letter-spacing:5.760000px;}
.ls45{letter-spacing:6.480000px;}
.ls38{letter-spacing:6.840000px;}
.ls65{letter-spacing:7.200000px;}
.ls4d{letter-spacing:7.920000px;}
.ls59{letter-spacing:8.280000px;}
.ls58{letter-spacing:8.640000px;}
.ls4c{letter-spacing:9.000000px;}
.ls68{letter-spacing:9.345600px;}
.ls35{letter-spacing:9.360000px;}
.ls1b{letter-spacing:9.720000px;}
.ls46{letter-spacing:10.080000px;}
.ls6a{letter-spacing:10.792800px;}
.ls2e{letter-spacing:10.800000px;}
.ls2f{letter-spacing:11.520000px;}
.ls69{letter-spacing:11.880000px;}
.ls3b{letter-spacing:12.240000px;}
.ls60{letter-spacing:12.600000px;}
.ls3f{letter-spacing:13.320000px;}
.ls3d{letter-spacing:13.680000px;}
.ls23{letter-spacing:14.040000px;}
.ls30{letter-spacing:14.400000px;}
.ls32{letter-spacing:14.760000px;}
.ls37{letter-spacing:15.112800px;}
.ls1{letter-spacing:15.152400px;}
.ls36{letter-spacing:15.480000px;}
.ls31{letter-spacing:15.840000px;}
.ls24{letter-spacing:16.560000px;}
.ls41{letter-spacing:16.920000px;}
.ls9{letter-spacing:17.615160px;}
.ls33{letter-spacing:18.360000px;}
.ls66{letter-spacing:19.080000px;}
.ls25{letter-spacing:20.160000px;}
.ls26{letter-spacing:20.520000px;}
.ls63{letter-spacing:20.880000px;}
.ls5c{letter-spacing:21.600000px;}
.ls3a{letter-spacing:21.960000px;}
.ls2c{letter-spacing:22.320000px;}
.ls64{letter-spacing:25.560000px;}
.ls40{letter-spacing:26.640000px;}
.ls5b{letter-spacing:27.360000px;}
.ls5f{letter-spacing:27.720000px;}
.ls5a{letter-spacing:29.160000px;}
.ls48{letter-spacing:29.880000px;}
.ls67{letter-spacing:30.240000px;}
.ls6b{letter-spacing:30.600000px;}
.ls71{letter-spacing:32.040000px;}
.ls1e{letter-spacing:45.720000px;}
.ls74{letter-spacing:54.000000px;}
.ls70{letter-spacing:59.040000px;}
.ls73{letter-spacing:75.600000px;}
.ls6e{letter-spacing:238.680000px;}
.ls6d{letter-spacing:275.040000px;}
.ls8{letter-spacing:319.297320px;}
.ls6c{letter-spacing:842.400000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7d{word-spacing:-72.000000px;}
.ws6{word-spacing:-43.203240px;}
.ws8{word-spacing:-28.932120px;}
.ws7{word-spacing:-28.836000px;}
.ws24{word-spacing:-27.428760px;}
.ws89{word-spacing:-27.344880px;}
.ws97{word-spacing:-23.688000px;}
.ws8d{word-spacing:-23.400000px;}
.ws98{word-spacing:-23.328000px;}
.ws80{word-spacing:-21.888000px;}
.ws23{word-spacing:-21.744000px;}
.ws0{word-spacing:-21.674520px;}
.ws52{word-spacing:-21.672000px;}
.ws9{word-spacing:-21.600000px;}
.ws22{word-spacing:-21.528000px;}
.ws1{word-spacing:-21.411000px;}
.ws92{word-spacing:-21.384000px;}
.ws93{word-spacing:-21.312000px;}
.ws6a{word-spacing:-21.240000px;}
.ws5b{word-spacing:-21.168000px;}
.ws5{word-spacing:-20.225160px;}
.ws4{word-spacing:-19.961640px;}
.ws2{word-spacing:-19.829880px;}
.ws3{word-spacing:-19.764000px;}
.wsa{word-spacing:-19.719360px;}
.wsc{word-spacing:-19.358640px;}
.wsa1{word-spacing:-18.156240px;}
.wsd{word-spacing:-18.036000px;}
.wsb{word-spacing:-17.975880px;}
.ws94{word-spacing:-17.915760px;}
.ws25{word-spacing:-17.735400px;}
.wsa0{word-spacing:-17.494920px;}
.ws9a{word-spacing:-15.336000px;}
.ws1a{word-spacing:-2.264760px;}
.ws8e{word-spacing:-2.088000px;}
.ws85{word-spacing:-1.800000px;}
.ws47{word-spacing:-0.504000px;}
.ws33{word-spacing:-0.360000px;}
.ws55{word-spacing:-0.288000px;}
.ws5e{word-spacing:-0.144000px;}
.ws8f{word-spacing:-0.120240px;}
.ws17{word-spacing:-0.096120px;}
.ws1b{word-spacing:-0.083880px;}
.ws21{word-spacing:-0.072000px;}
.ws15{word-spacing:-0.065880px;}
.ws3f{word-spacing:-0.063372px;}
.wsaa{word-spacing:-0.060120px;}
.wsf{word-spacing:0.000000px;}
.ws20{word-spacing:0.060120px;}
.ws3e{word-spacing:0.063372px;}
.ws12{word-spacing:0.065880px;}
.ws2a{word-spacing:0.072000px;}
.ws96{word-spacing:0.120240px;}
.ws99{word-spacing:0.216000px;}
.ws18{word-spacing:0.288360px;}
.ws19{word-spacing:0.335520px;}
.ws1c{word-spacing:0.360000px;}
.ws6f{word-spacing:0.432000px;}
.wsac{word-spacing:0.576000px;}
.ws1f{word-spacing:0.720000px;}
.ws65{word-spacing:0.792000px;}
.ws2e{word-spacing:1.080000px;}
.ws26{word-spacing:1.440000px;}
.wse{word-spacing:1.458316px;}
.ws90{word-spacing:1.503000px;}
.ws7b{word-spacing:1.512000px;}
.ws63{word-spacing:1.800000px;}
.ws7a{word-spacing:1.872000px;}
.ws4d{word-spacing:2.160000px;}
.ws86{word-spacing:2.224440px;}
.ws9b{word-spacing:2.448000px;}
.ws3b{word-spacing:2.520000px;}
.ws28{word-spacing:2.880000px;}
.wsd7{word-spacing:2.952000px;}
.ws35{word-spacing:3.240000px;}
.ws91{word-spacing:3.312000px;}
.ws43{word-spacing:3.600000px;}
.wsa5{word-spacing:3.672000px;}
.ws54{word-spacing:3.960000px;}
.wscb{word-spacing:4.032000px;}
.ws4b{word-spacing:4.320000px;}
.ws71{word-spacing:4.392000px;}
.ws32{word-spacing:4.680000px;}
.ws95{word-spacing:4.749480px;}
.ws64{word-spacing:4.752000px;}
.ws29{word-spacing:5.040000px;}
.ws87{word-spacing:5.110200px;}
.ws7f{word-spacing:5.112000px;}
.ws37{word-spacing:5.400000px;}
.ws1d{word-spacing:5.760000px;}
.ws44{word-spacing:6.120000px;}
.ws4f{word-spacing:6.480000px;}
.ws1e{word-spacing:6.840000px;}
.wsae{word-spacing:7.056000px;}
.ws5a{word-spacing:7.200000px;}
.wsaf{word-spacing:7.272000px;}
.ws74{word-spacing:7.560000px;}
.ws6c{word-spacing:7.920000px;}
.ws73{word-spacing:8.280000px;}
.ws50{word-spacing:8.640000px;}
.ws2c{word-spacing:8.856000px;}
.ws2b{word-spacing:9.000000px;}
.ws53{word-spacing:9.360000px;}
.ws16{word-spacing:9.684360px;}
.ws38{word-spacing:9.720000px;}
.ws14{word-spacing:9.816120px;}
.ws13{word-spacing:9.882000px;}
.ws34{word-spacing:10.080000px;}
.ws82{word-spacing:10.152000px;}
.ws41{word-spacing:10.440000px;}
.ws40{word-spacing:10.512000px;}
.ws27{word-spacing:10.800000px;}
.ws75{word-spacing:11.160000px;}
.wsa8{word-spacing:11.232000px;}
.ws5d{word-spacing:11.520000px;}
.ws56{word-spacing:11.880000px;}
.ws2d{word-spacing:12.240000px;}
.ws49{word-spacing:12.600000px;}
.wsa2{word-spacing:12.672000px;}
.ws36{word-spacing:12.960000px;}
.ws7c{word-spacing:13.176000px;}
.ws3a{word-spacing:13.320000px;}
.ws70{word-spacing:13.680000px;}
.wsa6{word-spacing:13.752000px;}
.ws46{word-spacing:13.968000px;}
.ws45{word-spacing:14.040000px;}
.ws30{word-spacing:14.400000px;}
.ws2f{word-spacing:14.472000px;}
.ws62{word-spacing:14.760000px;}
.ws58{word-spacing:15.120000px;}
.ws10{word-spacing:15.152400px;}
.ws11{word-spacing:15.284160px;}
.ws6b{word-spacing:15.480000px;}
.ws76{word-spacing:15.552000px;}
.ws5f{word-spacing:15.840000px;}
.ws60{word-spacing:15.912000px;}
.ws69{word-spacing:16.200000px;}
.ws39{word-spacing:16.560000px;}
.ws48{word-spacing:16.920000px;}
.wsb6{word-spacing:17.280000px;}
.wsb5{word-spacing:17.640000px;}
.wsc8{word-spacing:17.712000px;}
.ws88{word-spacing:18.000000px;}
.ws66{word-spacing:18.360000px;}
.wsa4{word-spacing:18.432000px;}
.ws81{word-spacing:18.720000px;}
.ws8b{word-spacing:19.080000px;}
.wsb0{word-spacing:19.152000px;}
.ws4a{word-spacing:19.440000px;}
.ws6d{word-spacing:19.800000px;}
.ws4e{word-spacing:20.160000px;}
.ws51{word-spacing:20.520000px;}
.ws42{word-spacing:20.880000px;}
.ws9e{word-spacing:21.600000px;}
.ws6e{word-spacing:21.960000px;}
.ws31{word-spacing:22.320000px;}
.ws61{word-spacing:22.680000px;}
.wsa7{word-spacing:23.040000px;}
.ws5c{word-spacing:23.400000px;}
.ws77{word-spacing:23.760000px;}
.ws3d{word-spacing:24.120000px;}
.ws79{word-spacing:24.480000px;}
.wsb7{word-spacing:24.840000px;}
.ws9f{word-spacing:25.200000px;}
.wsab{word-spacing:25.272000px;}
.ws8a{word-spacing:25.560000px;}
.ws8c{word-spacing:26.280000px;}
.ws7e{word-spacing:26.640000px;}
.wsb4{word-spacing:27.000000px;}
.ws9c{word-spacing:27.360000px;}
.ws84{word-spacing:27.720000px;}
.wsad{word-spacing:27.792000px;}
.wsa3{word-spacing:28.080000px;}
.ws59{word-spacing:28.440000px;}
.ws72{word-spacing:28.800000px;}
.ws4c{word-spacing:29.160000px;}
.ws9d{word-spacing:29.232000px;}
.ws57{word-spacing:29.520000px;}
.ws83{word-spacing:29.880000px;}
.wsb1{word-spacing:30.240000px;}
.ws78{word-spacing:30.600000px;}
.wsbb{word-spacing:30.960000px;}
.wscf{word-spacing:32.040000px;}
.wsb9{word-spacing:33.480000px;}
.wsd3{word-spacing:35.640000px;}
.wsba{word-spacing:36.000000px;}
.wsb3{word-spacing:37.800000px;}
.wsb8{word-spacing:39.600000px;}
.wsb2{word-spacing:42.120000px;}
.ws67{word-spacing:43.488000px;}
.ws68{word-spacing:43.560000px;}
.wsc5{word-spacing:44.640000px;}
.ws3c{word-spacing:45.720000px;}
.wsc3{word-spacing:46.800000px;}
.wsd8{word-spacing:54.000000px;}
.wsce{word-spacing:55.440000px;}
.wscd{word-spacing:55.800000px;}
.wsa9{word-spacing:56.633040px;}
.wsc7{word-spacing:58.680000px;}
.wsc6{word-spacing:59.040000px;}
.wsbc{word-spacing:67.680000px;}
.wsd5{word-spacing:72.360000px;}
.wsd6{word-spacing:72.432000px;}
.wsd1{word-spacing:75.600000px;}
.wsd2{word-spacing:75.816000px;}
.wsd0{word-spacing:90.720000px;}
.wsc0{word-spacing:92.520000px;}
.wsd4{word-spacing:113.040000px;}
.wsbd{word-spacing:119.160000px;}
.wsbe{word-spacing:119.376000px;}
.wsc1{word-spacing:141.480000px;}
.wsc2{word-spacing:141.552000px;}
.wsc4{word-spacing:238.680000px;}
.wsbf{word-spacing:275.040000px;}
.wsc9{word-spacing:278.640000px;}
.wsca{word-spacing:278.712000px;}
.wscc{word-spacing:488.520000px;}
._d{margin-left:-23.400000px;}
._20{margin-left:-12.744000px;}
._2{margin-left:-1.381928px;}
._0{width:1.222208px;}
._3{width:2.291639px;}
._f{width:3.745792px;}
._b{width:5.400000px;}
._1{width:6.992972px;}
._4{width:8.256846px;}
._6{width:9.488811px;}
._16{width:10.872000px;}
._10{width:12.024000px;}
._e{width:14.040000px;}
._5{width:15.161346px;}
._17{width:16.704000px;}
._13{width:18.072000px;}
._11{width:20.520000px;}
._12{width:22.968000px;}
._1e{width:25.128000px;}
._1b{width:26.208000px;}
._1c{width:27.505792px;}
._19{width:29.376000px;}
._2a{width:32.184000px;}
._1f{width:37.440000px;}
._14{width:43.632000px;}
._29{width:45.072000px;}
._27{width:47.173928px;}
._1a{width:49.609072px;}
._15{width:52.230361px;}
._18{width:54.579001px;}
._1d{width:56.572920px;}
._c{width:60.765112px;}
._28{width:63.864000px;}
._8{width:73.420200px;}
._7{width:75.062880px;}
._2c{width:76.281120px;}
._2b{width:90.145792px;}
._24{width:92.592000px;}
._22{width:119.808000px;}
._26{width:141.984000px;}
._21{width:267.408000px;}
._2d{width:270.792000px;}
._23{width:275.472000px;}
._25{width:302.472000px;}
._9{width:311.841608px;}
._2e{width:431.640000px;}
._a{width:1253.880000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:47.880000px;}
.fs9{font-size:51.120000px;}
.fs6{font-size:60.120000px;}
.fs7{font-size:63.372044px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:69.443617px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs4{font-size:96.120000px;}
.fs3{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:47.070000px;}
.y3e{bottom:58.770000px;}
.y1b{bottom:74.070000px;}
.y1c6{bottom:99.540000px;}
.y166{bottom:100.080000px;}
.yf5{bottom:103.230000px;}
.y109{bottom:103.680000px;}
.y157{bottom:105.480000px;}
.y11d{bottom:106.200000px;}
.y189{bottom:106.470000px;}
.yac{bottom:106.830000px;}
.y1fb{bottom:108.630000px;}
.y1b9{bottom:113.580000px;}
.y5f{bottom:115.830000px;}
.yba{bottom:117.090000px;}
.y136{bottom:118.800000px;}
.y3d{bottom:120.960000px;}
.yde{bottom:122.850000px;}
.y18a{bottom:125.370000px;}
.y1a{bottom:128.700000px;}
.y1c8{bottom:130.230000px;}
.y163{bottom:130.590000px;}
.y1c5{bottom:131.940000px;}
.y165{bottom:132.480000px;}
.y1a2{bottom:133.470000px;}
.y108{bottom:136.080000px;}
.y156{bottom:137.880000px;}
.y7e{bottom:137.970000px;}
.y11c{bottom:138.600000px;}
.yab{bottom:139.230000px;}
.y1fa{bottom:141.030000px;}
.yd1{bottom:141.570000px;}
.y1e7{bottom:141.840000px;}
.y128{bottom:144.270000px;}
.y1b8{bottom:145.980000px;}
.y141{bottom:147.240000px;}
.y5e{bottom:148.230000px;}
.yb9{bottom:149.490000px;}
.y14b{bottom:151.110000px;}
.y3c{bottom:153.360000px;}
.yf4{bottom:153.630000px;}
.ydd{bottom:155.250000px;}
.y1a1{bottom:160.470000px;}
.y19{bottom:161.100000px;}
.y9b{bottom:162.630000px;}
.y162{bottom:162.990000px;}
.y1c4{bottom:164.340000px;}
.y188{bottom:165.600000px;}
.y155{bottom:167.580000px;}
.y107{bottom:168.480000px;}
.y135{bottom:169.200000px;}
.y7d{bottom:170.370000px;}
.yf0{bottom:170.550000px;}
.y1f9{bottom:173.430000px;}
.y169{bottom:174.330000px;}
.y1e6{bottom:175.140000px;}
.y1b7{bottom:178.380000px;}
.y1a0{bottom:178.470000px;}
.y11b{bottom:180.000000px;}
.y5d{bottom:180.630000px;}
.yb8{bottom:181.890000px;}
.y208{bottom:182.430000px;}
.y164{bottom:182.880000px;}
.yaa{bottom:183.330000px;}
.y14a{bottom:183.510000px;}
.y154{bottom:185.580000px;}
.ydc{bottom:187.650000px;}
.yd0{bottom:191.970000px;}
.y18{bottom:193.500000px;}
.y127{bottom:194.670000px;}
.y9a{bottom:195.030000px;}
.y161{bottom:195.390000px;}
.y1c3{bottom:196.740000px;}
.y1a3{bottom:197.370000px;}
.y3b{bottom:197.460000px;}
.y140{bottom:197.730000px;}
.y187{bottom:198.000000px;}
.y106{bottom:200.880000px;}
.y7c{bottom:202.770000px;}
.yef{bottom:202.950000px;}
.yf3{bottom:204.030000px;}
.y1f8{bottom:205.830000px;}
.y1e5{bottom:209.430000px;}
.y168{bottom:210.330000px;}
.y1b6{bottom:210.780000px;}
.y11a{bottom:212.400000px;}
.y5c{bottom:213.030000px;}
.yb7{bottom:214.290000px;}
.y207{bottom:214.830000px;}
.y149{bottom:215.910000px;}
.y153{bottom:218.880000px;}
.y134{bottom:219.600000px;}
.ydb{bottom:220.050000px;}
.y17{bottom:225.900000px;}
.y126{bottom:227.070000px;}
.y99{bottom:227.430000px;}
.y160{bottom:227.790000px;}
.y1c2{bottom:229.140000px;}
.y186{bottom:230.400000px;}
.y13f{bottom:230.670000px;}
.y105{bottom:233.280000px;}
.y7b{bottom:235.170000px;}
.yee{bottom:235.350000px;}
.ya9{bottom:236.430000px;}
.ycf{bottom:242.460000px;}
.y1b5{bottom:243.180000px;}
.y119{bottom:244.800000px;}
.y5b{bottom:245.430000px;}
.yb6{bottom:246.690000px;}
.y1f7{bottom:247.230000px;}
.y148{bottom:248.400000px;}
.y1e4{bottom:250.830000px;}
.yda{bottom:252.450000px;}
.y3a{bottom:259.560000px;}
.y98{bottom:259.830000px;}
.y15f{bottom:260.190000px;}
.y1c1{bottom:261.540000px;}
.y185{bottom:262.890000px;}
.y13e{bottom:263.610000px;}
.y104{bottom:265.680000px;}
.y125{bottom:265.770000px;}
.y16{bottom:267.300000px;}
.y7a{bottom:267.570000px;}
.yed{bottom:267.750000px;}
.y19f{bottom:268.200000px;}
.ya8{bottom:268.830000px;}
.y133{bottom:270.000000px;}
.yce{bottom:275.400000px;}
.y1b4{bottom:275.580000px;}
.y118{bottom:277.200000px;}
.y5a{bottom:277.830000px;}
.yb5{bottom:279.090000px;}
.y1f6{bottom:279.630000px;}
.y147{bottom:281.430000px;}
.y1e3{bottom:283.230000px;}
.yd9{bottom:284.850000px;}
.y1d8{bottom:286.020000px;}
.y206{bottom:288.630000px;}
.y97{bottom:292.230000px;}
.y15e{bottom:292.590000px;}
.y1c0{bottom:293.940000px;}
.y184{bottom:295.830000px;}
.y13d{bottom:296.010000px;}
.y103{bottom:298.080000px;}
.y124{bottom:299.070000px;}
.y79{bottom:299.970000px;}
.yec{bottom:300.150000px;}
.y19e{bottom:300.600000px;}
.y39{bottom:300.960000px;}
.ya7{bottom:301.230000px;}
.ycd{bottom:307.890000px;}
.y1b3{bottom:307.980000px;}
.y117{bottom:309.600000px;}
.y59{bottom:310.230000px;}
.yb4{bottom:311.490000px;}
.y1f5{bottom:312.030000px;}
.y146{bottom:314.370000px;}
.y1e2{bottom:315.630000px;}
.yd8{bottom:317.250000px;}
.y132{bottom:320.400000px;}
.y205{bottom:321.030000px;}
.y96{bottom:324.630000px;}
.y15d{bottom:324.990000px;}
.y1bf{bottom:326.340000px;}
.y15{bottom:326.700000px;}
.y183{bottom:328.230000px;}
.y13c{bottom:328.500000px;}
.y1d7{bottom:330.030000px;}
.y102{bottom:330.480000px;}
.y78{bottom:332.370000px;}
.yeb{bottom:332.550000px;}
.y19d{bottom:333.000000px;}
.y38{bottom:333.360000px;}
.ya6{bottom:333.630000px;}
.y1b2{bottom:340.380000px;}
.ycc{bottom:340.830000px;}
.y116{bottom:342.000000px;}
.y58{bottom:342.630000px;}
.yb3{bottom:343.890000px;}
.y1f4{bottom:344.430000px;}
.y145{bottom:346.770000px;}
.yd7{bottom:349.650000px;}
.y204{bottom:353.430000px;}
.y95{bottom:357.030000px;}
.y15c{bottom:357.390000px;}
.y1be{bottom:358.740000px;}
.y14{bottom:359.100000px;}
.y182{bottom:360.630000px;}
.y13b{bottom:361.440000px;}
.y101{bottom:362.880000px;}
.y77{bottom:364.770000px;}
.yea{bottom:364.950000px;}
.y19c{bottom:365.400000px;}
.y37{bottom:366.030000px;}
.y131{bottom:370.800000px;}
.y1d6{bottom:371.430000px;}
.y1b1{bottom:372.780000px;}
.ycb{bottom:373.230000px;}
.y115{bottom:374.400000px;}
.y57{bottom:375.030000px;}
.y144{bottom:379.170000px;}
.yd6{bottom:382.320000px;}
.ye1{bottom:384.030000px;}
.y1f3{bottom:385.830000px;}
.y1e1{bottom:389.430000px;}
.y1bd{bottom:391.140000px;}
.y13{bottom:391.500000px;}
.y181{bottom:393.030000px;}
.y13a{bottom:393.840000px;}
.yb2{bottom:394.290000px;}
.y203{bottom:394.830000px;}
.y100{bottom:395.280000px;}
.y76{bottom:397.170000px;}
.ye9{bottom:397.350000px;}
.y19b{bottom:397.800000px;}
.y94{bottom:398.430000px;}
.y36{bottom:399.510000px;}
.y1b0{bottom:405.180000px;}
.yca{bottom:406.170000px;}
.y114{bottom:406.800000px;}
.y56{bottom:407.430000px;}
.y15b{bottom:407.790000px;}
.y143{bottom:411.570000px;}
.y1d5{bottom:412.830000px;}
.yd5{bottom:415.800000px;}
.ye0{bottom:416.430000px;}
.y1f2{bottom:418.230000px;}
.y1c7{bottom:419.130000px;}
.y130{bottom:421.200000px;}
.y1e0{bottom:421.830000px;}
.y180{bottom:425.430000px;}
.y139{bottom:426.240000px;}
.y12{bottom:426.600000px;}
.yb1{bottom:426.690000px;}
.y202{bottom:427.230000px;}
.yff{bottom:427.680000px;}
.y75{bottom:429.570000px;}
.ye8{bottom:429.750000px;}
.y19a{bottom:430.200000px;}
.y93{bottom:430.830000px;}
.y35{bottom:432.810000px;}
.y1af{bottom:437.580000px;}
.yc9{bottom:438.570000px;}
.y55{bottom:439.830000px;}
.y15a{bottom:440.190000px;}
.y1bc{bottom:441.540000px;}
.y1d4{bottom:445.230000px;}
.y113{bottom:448.200000px;}
.ydf{bottom:448.830000px;}
.y20a{bottom:450.630000px;}
.y1df{bottom:454.230000px;}
.y17f{bottom:457.830000px;}
.y1f1{bottom:459.630000px;}
.yfe{bottom:460.080000px;}
.y74{bottom:461.970000px;}
.ye7{bottom:462.150000px;}
.y199{bottom:462.600000px;}
.yb0{bottom:462.690000px;}
.y92{bottom:463.230000px;}
.y34{bottom:465.210000px;}
.yd4{bottom:467.100000px;}
.y201{bottom:468.630000px;}
.y1ae{bottom:469.980000px;}
.yc8{bottom:470.970000px;}
.y12f{bottom:471.600000px;}
.yf2{bottom:472.230000px;}
.y159{bottom:476.280000px;}
.y138{bottom:476.640000px;}
.y1d3{bottom:477.630000px;}
.y1bb{bottom:480.240000px;}
.y112{bottom:480.600000px;}
.y54{bottom:481.230000px;}
.y1de{bottom:486.630000px;}
.y11{bottom:488.700000px;}
.y17e{bottom:490.230000px;}
.y1f0{bottom:492.030000px;}
.yfd{bottom:492.480000px;}
.y73{bottom:494.370000px;}
.ye6{bottom:494.550000px;}
.y198{bottom:495.000000px;}
.y91{bottom:495.630000px;}
.y33{bottom:497.610000px;}
.y142{bottom:497.970000px;}
.yd3{bottom:499.500000px;}
.y200{bottom:501.030000px;}
.y1ad{bottom:502.380000px;}
.yc7{bottom:503.370000px;}
.y12e{bottom:504.000000px;}
.yf1{bottom:504.630000px;}
.y1d2{bottom:510.030000px;}
.y137{bottom:512.730000px;}
.y111{bottom:513.000000px;}
.y53{bottom:513.630000px;}
.y1dd{bottom:519.030000px;}
.y10{bottom:521.100000px;}
.y17d{bottom:522.630000px;}
.y1ef{bottom:524.430000px;}
.yfc{bottom:524.880000px;}
.y72{bottom:526.770000px;}
.y197{bottom:527.400000px;}
.y90{bottom:528.030000px;}
.y32{bottom:530.010000px;}
.y1ff{bottom:533.430000px;}
.y1ac{bottom:534.780000px;}
.yd2{bottom:535.590000px;}
.yc6{bottom:535.770000px;}
.ya5{bottom:537.030000px;}
.ye5{bottom:538.650000px;}
.y1d1{bottom:542.430000px;}
.y12d{bottom:542.700000px;}
.y110{bottom:545.400000px;}
.y52{bottom:546.030000px;}
.y1dc{bottom:551.430000px;}
.yf{bottom:553.500000px;}
.y17c{bottom:555.030000px;}
.y1ee{bottom:556.830000px;}
.yfb{bottom:557.280000px;}
.y71{bottom:559.170000px;}
.y196{bottom:559.800000px;}
.y8f{bottom:560.430000px;}
.y12c{bottom:560.700000px;}
.y31{bottom:562.680000px;}
.y1ab{bottom:567.180000px;}
.yc5{bottom:568.170000px;}
.ya4{bottom:569.430000px;}
.y1d0{bottom:574.830000px;}
.y10f{bottom:577.800000px;}
.y51{bottom:578.430000px;}
.y17b{bottom:587.430000px;}
.ye{bottom:588.600000px;}
.y70{bottom:591.570000px;}
.ye4{bottom:591.750000px;}
.y195{bottom:592.200000px;}
.y8e{bottom:592.830000px;}
.y12b{bottom:594.090000px;}
.y30{bottom:595.980000px;}
.y152{bottom:598.140000px;}
.y1ed{bottom:598.230000px;}
.y1aa{bottom:599.580000px;}
.yc4{bottom:600.570000px;}
.ya3{bottom:601.830000px;}
.y1fe{bottom:607.230000px;}
.yfa{bottom:607.680000px;}
.y10e{bottom:610.200000px;}
.y50{bottom:610.830000px;}
.y1cf{bottom:616.230000px;}
.y17a{bottom:619.830000px;}
.y6f{bottom:623.970000px;}
.y194{bottom:624.600000px;}
.y8d{bottom:625.230000px;}
.ye3{bottom:627.840000px;}
.y2f{bottom:628.380000px;}
.y151{bottom:630.540000px;}
.y1ec{bottom:630.630000px;}
.y1a9{bottom:631.980000px;}
.y123{bottom:632.430000px;}
.yc3{bottom:632.970000px;}
.ya2{bottom:634.230000px;}
.y1fd{bottom:639.630000px;}
.y10d{bottom:642.600000px;}
.y4f{bottom:643.230000px;}
.yf9{bottom:646.380000px;}
.y1ce{bottom:648.630000px;}
.yd{bottom:650.700000px;}
.y179{bottom:652.230000px;}
.y6e{bottom:656.370000px;}
.y193{bottom:657.000000px;}
.y8c{bottom:657.630000px;}
.y2e{bottom:660.780000px;}
.y1eb{bottom:663.030000px;}
.y1a8{bottom:664.380000px;}
.yc2{bottom:665.370000px;}
.ya1{bottom:666.630000px;}
.y1fc{bottom:672.030000px;}
.yf8{bottom:673.380000px;}
.y10c{bottom:675.000000px;}
.y4e{bottom:675.630000px;}
.y150{bottom:680.940000px;}
.y1cd{bottom:681.030000px;}
.y122{bottom:682.830000px;}
.yc{bottom:683.100000px;}
.y178{bottom:684.630000px;}
.y192{bottom:689.400000px;}
.y8b{bottom:690.030000px;}
.y2d{bottom:693.180000px;}
.y1ea{bottom:695.430000px;}
.y1a7{bottom:696.780000px;}
.y6d{bottom:697.770000px;}
.ya0{bottom:699.030000px;}
.yf7{bottom:700.380000px;}
.y209{bottom:704.430000px;}
.y10b{bottom:707.490000px;}
.y4d{bottom:708.030000px;}
.y14f{bottom:713.340000px;}
.y1cc{bottom:713.430000px;}
.y121{bottom:715.230000px;}
.yb{bottom:715.500000px;}
.y191{bottom:721.800000px;}
.y8a{bottom:722.430000px;}
.y177{bottom:726.030000px;}
.y1a6{bottom:729.180000px;}
.y6c{bottom:730.170000px;}
.y9f{bottom:731.430000px;}
.yf6{bottom:733.680000px;}
.y2c{bottom:734.580000px;}
.y1e9{bottom:736.830000px;}
.y4c{bottom:740.430000px;}
.y14e{bottom:745.740000px;}
.y1cb{bottom:745.830000px;}
.ya{bottom:750.600000px;}
.y190{bottom:754.200000px;}
.y89{bottom:754.830000px;}
.y176{bottom:758.430000px;}
.y1a5{bottom:761.760000px;}
.y6b{bottom:762.570000px;}
.y120{bottom:762.930000px;}
.y9e{bottom:763.830000px;}
.yc1{bottom:771.570000px;}
.y4b{bottom:772.830000px;}
.y1ca{bottom:778.230000px;}
.y14d{bottom:784.440000px;}
.y18f{bottom:786.600000px;}
.y88{bottom:787.230000px;}
.y175{bottom:790.830000px;}
.y2b{bottom:793.980000px;}
.y6a{bottom:795.060000px;}
.y9d{bottom:796.230000px;}
.y11f{bottom:796.320000px;}
.yc0{bottom:804.060000px;}
.y4a{bottom:805.230000px;}
.y1c9{bottom:810.630000px;}
.y14c{bottom:817.830000px;}
.y87{bottom:819.630000px;}
.y174{bottom:823.230000px;}
.y69{bottom:827.460000px;}
.y18e{bottom:828.000000px;}
.y9c{bottom:828.630000px;}
.y2a{bottom:835.380000px;}
.y9{bottom:836.100000px;}
.ybf{bottom:836.460000px;}
.y49{bottom:837.630000px;}
.y1e8{bottom:843.030000px;}
.y12a{bottom:852.030000px;}
.y173{bottom:855.630000px;}
.y68{bottom:859.860000px;}
.y18d{bottom:860.400000px;}
.y86{bottom:861.030000px;}
.y29{bottom:867.780000px;}
.ybe{bottom:869.400000px;}
.y48{bottom:870.030000px;}
.y8{bottom:879.300000px;}
.y129{bottom:884.430000px;}
.y172{bottom:888.030000px;}
.y67{bottom:892.260000px;}
.y1a4{bottom:892.530000px;}
.y18c{bottom:892.800000px;}
.y85{bottom:893.430000px;}
.y28{bottom:900.360000px;}
.ybd{bottom:901.800000px;}
.y47{bottom:902.430000px;}
.y158{bottom:916.830000px;}
.y171{bottom:920.430000px;}
.y66{bottom:924.660000px;}
.y18b{bottom:925.290000px;}
.y84{bottom:925.830000px;}
.y27{bottom:933.660000px;}
.ybc{bottom:934.200000px;}
.y46{bottom:934.830000px;}
.y7{bottom:939.600000px;}
.y1db{bottom:943.830000px;}
.y1ba{bottom:949.230000px;}
.y170{bottom:952.830000px;}
.y65{bottom:957.060000px;}
.y83{bottom:958.230000px;}
.y26{bottom:966.060000px;}
.ybb{bottom:966.690000px;}
.y45{bottom:967.230000px;}
.y1da{bottom:976.230000px;}
.y16f{bottom:985.230000px;}
.y64{bottom:989.460000px;}
.y82{bottom:990.630000px;}
.y25{bottom:998.460000px;}
.y6{bottom:999.360000px;}
.y44{bottom:999.630000px;}
.y1d9{bottom:1008.630000px;}
.y10a{bottom:1011.330000px;}
.y167{bottom:1014.030000px;}
.y16e{bottom:1017.630000px;}
.y63{bottom:1021.860000px;}
.y81{bottom:1023.030000px;}
.y24{bottom:1030.860000px;}
.y43{bottom:1032.030000px;}
.yaf{bottom:1045.800000px;}
.y11e{bottom:1046.430000px;}
.y16d{bottom:1050.030000px;}
.y62{bottom:1054.260000px;}
.y80{bottom:1055.430000px;}
.y23{bottom:1063.260000px;}
.y42{bottom:1064.430000px;}
.ye2{bottom:1078.830000px;}
.y16c{bottom:1082.430000px;}
.y61{bottom:1086.660000px;}
.y7f{bottom:1087.830000px;}
.y22{bottom:1095.660000px;}
.yae{bottom:1096.200000px;}
.y41{bottom:1096.830000px;}
.y16b{bottom:1114.830000px;}
.y5{bottom:1123.830000px;}
.y21{bottom:1128.060000px;}
.yad{bottom:1128.690000px;}
.y40{bottom:1129.230000px;}
.y4{bottom:1143.720000px;}
.y16a{bottom:1158.930000px;}
.y20{bottom:1160.730000px;}
.y60{bottom:1161.090000px;}
.y3f{bottom:1161.630000px;}
.y3{bottom:1163.520000px;}
.y2{bottom:1201.320000px;}
.y1f{bottom:1203.480000px;}
.y1{bottom:1221.120000px;}
.y1e{bottom:1225.080000px;}
.y1d{bottom:1246.680000px;}
.h8{height:56.736000px;}
.ha{height:59.218200px;}
.h9{height:62.421464px;}
.h3{height:64.891800px;}
.h2{height:68.401963px;}
.h4{height:70.920000px;}
.h7{height:82.621800px;}
.hb{height:86.353200px;}
.h6{height:94.678200px;}
.h5{height:130.138200px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.936500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.050000px;}
.x1e{left:87.660000px;}
.x1a{left:90.540000px;}
.x26{left:92.250000px;}
.x34{left:94.680000px;}
.x45{left:104.940000px;}
.x33{left:106.380000px;}
.x18{left:109.710000px;}
.x14{left:118.710000px;}
.x48{left:122.310000px;}
.x3c{left:124.020000px;}
.x13{left:127.530000px;}
.x4{left:134.100000px;}
.x31{left:140.580000px;}
.x24{left:144.450000px;}
.x20{left:149.130000px;}
.x7{left:162.270000px;}
.x36{left:166.410000px;}
.x2d{left:167.850000px;}
.x27{left:168.930000px;}
.x6{left:170.100000px;}
.x17{left:171.270000px;}
.x1f{left:172.800000px;}
.x38{left:174.330000px;}
.x8{left:176.220000px;}
.x3e{left:180.090000px;}
.x47{left:189.990000px;}
.x41{left:191.790000px;}
.x35{left:194.310000px;}
.x1b{left:199.710000px;}
.x4b{left:202.140000px;}
.x43{left:212.400000px;}
.x2f{left:222.390000px;}
.x22{left:226.980000px;}
.x2a{left:243.270000px;}
.x12{left:247.680000px;}
.x3f{left:254.430000px;}
.x1d{left:256.770000px;}
.x2b{left:262.620000px;}
.x2e{left:265.320000px;}
.x5{left:269.460000px;}
.x39{left:273.510000px;}
.x9{left:287.010000px;}
.x32{left:300.240000px;}
.xa{left:307.890000px;}
.x4c{left:311.400000px;}
.xd{left:316.980000px;}
.x10{left:327.060000px;}
.xe{left:328.950000px;}
.x21{left:333.360000px;}
.xc{left:341.640000px;}
.x25{left:346.320000px;}
.xf{left:381.060000px;}
.xb{left:382.500000px;}
.x11{left:393.750000px;}
.x15{left:423.540000px;}
.x1c{left:446.490000px;}
.x2{left:448.920000px;}
.x3{left:478.170000px;}
.x16{left:521.820000px;}
.x3b{left:546.660000px;}
.x49{left:630.990000px;}
.x4a{left:636.840000px;}
.x40{left:638.460000px;}
.x44{left:680.490000px;}
.x2c{left:684.360000px;}
.x37{left:701.100000px;}
.x3a{left:705.240000px;}
.x30{left:724.500000px;}
.x4d{left:744.660000px;}
.x42{left:745.920000px;}
.x46{left:754.740000px;}
.x3d{left:770.490000px;}
.x23{left:782.820000px;}
.x28{left:787.320000px;}
.x29{left:804.870000px;}
.x19{left:807.840000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls18{letter-spacing:-0.748160pt;}
.ls62{letter-spacing:-0.480960pt;}
.ls34{letter-spacing:-0.384000pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.267200pt;}
.ls14{letter-spacing:-0.256320pt;}
.ls55{letter-spacing:-0.256000pt;}
.ls53{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.117120pt;}
.ls21{letter-spacing:-0.112661pt;}
.ls4b{letter-spacing:-0.106880pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.058560pt;}
.ls16{letter-spacing:-0.053440pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.011520pt;}
.ls1f{letter-spacing:0.053440pt;}
.ls72{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058560pt;}
.ls27{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.085440pt;}
.ls50{letter-spacing:0.106880pt;}
.ls4{letter-spacing:0.117440pt;}
.ls6f{letter-spacing:0.121600pt;}
.ls19{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.129184pt;}
.ls61{letter-spacing:0.156160pt;}
.ls10{letter-spacing:0.175680pt;}
.ls2d{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.409920pt;}
.lsa{letter-spacing:0.432094pt;}
.ls28{letter-spacing:0.448000pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls51{letter-spacing:0.908480pt;}
.ls5d{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.175680pt;}
.ls42{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.464000pt;}
.ls15{letter-spacing:1.496320pt;}
.ls0{letter-spacing:1.523200pt;}
.ls57{letter-spacing:1.536000pt;}
.ls4a{letter-spacing:1.549760pt;}
.lse{letter-spacing:1.581120pt;}
.ls3c{letter-spacing:1.600000pt;}
.lsb{letter-spacing:1.698240pt;}
.ls49{letter-spacing:1.728000pt;}
.ls4f{letter-spacing:1.856000pt;}
.ls43{letter-spacing:1.920000pt;}
.ls6{letter-spacing:1.938560pt;}
.ls56{letter-spacing:1.984000pt;}
.ls7{letter-spacing:2.013120pt;}
.ls1d{letter-spacing:2.240000pt;}
.ls39{letter-spacing:2.560000pt;}
.ls5e{letter-spacing:2.880000pt;}
.ls3{letter-spacing:3.170880pt;}
.ls44{letter-spacing:3.200000pt;}
.ls52{letter-spacing:3.520000pt;}
.ls54{letter-spacing:4.114880pt;}
.ls47{letter-spacing:4.160000pt;}
.ls1c{letter-spacing:4.480000pt;}
.ls1a{letter-spacing:4.800000pt;}
.ls3e{letter-spacing:5.120000pt;}
.ls45{letter-spacing:5.760000pt;}
.ls38{letter-spacing:6.080000pt;}
.ls65{letter-spacing:6.400000pt;}
.ls4d{letter-spacing:7.040000pt;}
.ls59{letter-spacing:7.360000pt;}
.ls58{letter-spacing:7.680000pt;}
.ls4c{letter-spacing:8.000000pt;}
.ls68{letter-spacing:8.307200pt;}
.ls35{letter-spacing:8.320000pt;}
.ls1b{letter-spacing:8.640000pt;}
.ls46{letter-spacing:8.960000pt;}
.ls6a{letter-spacing:9.593600pt;}
.ls2e{letter-spacing:9.600000pt;}
.ls2f{letter-spacing:10.240000pt;}
.ls69{letter-spacing:10.560000pt;}
.ls3b{letter-spacing:10.880000pt;}
.ls60{letter-spacing:11.200000pt;}
.ls3f{letter-spacing:11.840000pt;}
.ls3d{letter-spacing:12.160000pt;}
.ls23{letter-spacing:12.480000pt;}
.ls30{letter-spacing:12.800000pt;}
.ls32{letter-spacing:13.120000pt;}
.ls37{letter-spacing:13.433600pt;}
.ls1{letter-spacing:13.468800pt;}
.ls36{letter-spacing:13.760000pt;}
.ls31{letter-spacing:14.080000pt;}
.ls24{letter-spacing:14.720000pt;}
.ls41{letter-spacing:15.040000pt;}
.ls9{letter-spacing:15.657920pt;}
.ls33{letter-spacing:16.320000pt;}
.ls66{letter-spacing:16.960000pt;}
.ls25{letter-spacing:17.920000pt;}
.ls26{letter-spacing:18.240000pt;}
.ls63{letter-spacing:18.560000pt;}
.ls5c{letter-spacing:19.200000pt;}
.ls3a{letter-spacing:19.520000pt;}
.ls2c{letter-spacing:19.840000pt;}
.ls64{letter-spacing:22.720000pt;}
.ls40{letter-spacing:23.680000pt;}
.ls5b{letter-spacing:24.320000pt;}
.ls5f{letter-spacing:24.640000pt;}
.ls5a{letter-spacing:25.920000pt;}
.ls48{letter-spacing:26.560000pt;}
.ls67{letter-spacing:26.880000pt;}
.ls6b{letter-spacing:27.200000pt;}
.ls71{letter-spacing:28.480000pt;}
.ls1e{letter-spacing:40.640000pt;}
.ls74{letter-spacing:48.000000pt;}
.ls70{letter-spacing:52.480000pt;}
.ls73{letter-spacing:67.200000pt;}
.ls6e{letter-spacing:212.160000pt;}
.ls6d{letter-spacing:244.480000pt;}
.ls8{letter-spacing:283.819840pt;}
.ls6c{letter-spacing:748.800000pt;}
.ws7d{word-spacing:-64.000000pt;}
.ws6{word-spacing:-38.402880pt;}
.ws8{word-spacing:-25.717440pt;}
.ws7{word-spacing:-25.632000pt;}
.ws24{word-spacing:-24.381120pt;}
.ws89{word-spacing:-24.306560pt;}
.ws97{word-spacing:-21.056000pt;}
.ws8d{word-spacing:-20.800000pt;}
.ws98{word-spacing:-20.736000pt;}
.ws80{word-spacing:-19.456000pt;}
.ws23{word-spacing:-19.328000pt;}
.ws0{word-spacing:-19.266240pt;}
.ws52{word-spacing:-19.264000pt;}
.ws9{word-spacing:-19.200000pt;}
.ws22{word-spacing:-19.136000pt;}
.ws1{word-spacing:-19.032000pt;}
.ws92{word-spacing:-19.008000pt;}
.ws93{word-spacing:-18.944000pt;}
.ws6a{word-spacing:-18.880000pt;}
.ws5b{word-spacing:-18.816000pt;}
.ws5{word-spacing:-17.977920pt;}
.ws4{word-spacing:-17.743680pt;}
.ws2{word-spacing:-17.626560pt;}
.ws3{word-spacing:-17.568000pt;}
.wsa{word-spacing:-17.528320pt;}
.wsc{word-spacing:-17.207680pt;}
.wsa1{word-spacing:-16.138880pt;}
.wsd{word-spacing:-16.032000pt;}
.wsb{word-spacing:-15.978560pt;}
.ws94{word-spacing:-15.925120pt;}
.ws25{word-spacing:-15.764800pt;}
.wsa0{word-spacing:-15.551040pt;}
.ws9a{word-spacing:-13.632000pt;}
.ws1a{word-spacing:-2.013120pt;}
.ws8e{word-spacing:-1.856000pt;}
.ws85{word-spacing:-1.600000pt;}
.ws47{word-spacing:-0.448000pt;}
.ws33{word-spacing:-0.320000pt;}
.ws55{word-spacing:-0.256000pt;}
.ws5e{word-spacing:-0.128000pt;}
.ws8f{word-spacing:-0.106880pt;}
.ws17{word-spacing:-0.085440pt;}
.ws1b{word-spacing:-0.074560pt;}
.ws21{word-spacing:-0.064000pt;}
.ws15{word-spacing:-0.058560pt;}
.ws3f{word-spacing:-0.056331pt;}
.wsaa{word-spacing:-0.053440pt;}
.wsf{word-spacing:0.000000pt;}
.ws20{word-spacing:0.053440pt;}
.ws3e{word-spacing:0.056331pt;}
.ws12{word-spacing:0.058560pt;}
.ws2a{word-spacing:0.064000pt;}
.ws96{word-spacing:0.106880pt;}
.ws99{word-spacing:0.192000pt;}
.ws18{word-spacing:0.256320pt;}
.ws19{word-spacing:0.298240pt;}
.ws1c{word-spacing:0.320000pt;}
.ws6f{word-spacing:0.384000pt;}
.wsac{word-spacing:0.512000pt;}
.ws1f{word-spacing:0.640000pt;}
.ws65{word-spacing:0.704000pt;}
.ws2e{word-spacing:0.960000pt;}
.ws26{word-spacing:1.280000pt;}
.wse{word-spacing:1.296281pt;}
.ws90{word-spacing:1.336000pt;}
.ws7b{word-spacing:1.344000pt;}
.ws63{word-spacing:1.600000pt;}
.ws7a{word-spacing:1.664000pt;}
.ws4d{word-spacing:1.920000pt;}
.ws86{word-spacing:1.977280pt;}
.ws9b{word-spacing:2.176000pt;}
.ws3b{word-spacing:2.240000pt;}
.ws28{word-spacing:2.560000pt;}
.wsd7{word-spacing:2.624000pt;}
.ws35{word-spacing:2.880000pt;}
.ws91{word-spacing:2.944000pt;}
.ws43{word-spacing:3.200000pt;}
.wsa5{word-spacing:3.264000pt;}
.ws54{word-spacing:3.520000pt;}
.wscb{word-spacing:3.584000pt;}
.ws4b{word-spacing:3.840000pt;}
.ws71{word-spacing:3.904000pt;}
.ws32{word-spacing:4.160000pt;}
.ws95{word-spacing:4.221760pt;}
.ws64{word-spacing:4.224000pt;}
.ws29{word-spacing:4.480000pt;}
.ws87{word-spacing:4.542400pt;}
.ws7f{word-spacing:4.544000pt;}
.ws37{word-spacing:4.800000pt;}
.ws1d{word-spacing:5.120000pt;}
.ws44{word-spacing:5.440000pt;}
.ws4f{word-spacing:5.760000pt;}
.ws1e{word-spacing:6.080000pt;}
.wsae{word-spacing:6.272000pt;}
.ws5a{word-spacing:6.400000pt;}
.wsaf{word-spacing:6.464000pt;}
.ws74{word-spacing:6.720000pt;}
.ws6c{word-spacing:7.040000pt;}
.ws73{word-spacing:7.360000pt;}
.ws50{word-spacing:7.680000pt;}
.ws2c{word-spacing:7.872000pt;}
.ws2b{word-spacing:8.000000pt;}
.ws53{word-spacing:8.320000pt;}
.ws16{word-spacing:8.608320pt;}
.ws38{word-spacing:8.640000pt;}
.ws14{word-spacing:8.725440pt;}
.ws13{word-spacing:8.784000pt;}
.ws34{word-spacing:8.960000pt;}
.ws82{word-spacing:9.024000pt;}
.ws41{word-spacing:9.280000pt;}
.ws40{word-spacing:9.344000pt;}
.ws27{word-spacing:9.600000pt;}
.ws75{word-spacing:9.920000pt;}
.wsa8{word-spacing:9.984000pt;}
.ws5d{word-spacing:10.240000pt;}
.ws56{word-spacing:10.560000pt;}
.ws2d{word-spacing:10.880000pt;}
.ws49{word-spacing:11.200000pt;}
.wsa2{word-spacing:11.264000pt;}
.ws36{word-spacing:11.520000pt;}
.ws7c{word-spacing:11.712000pt;}
.ws3a{word-spacing:11.840000pt;}
.ws70{word-spacing:12.160000pt;}
.wsa6{word-spacing:12.224000pt;}
.ws46{word-spacing:12.416000pt;}
.ws45{word-spacing:12.480000pt;}
.ws30{word-spacing:12.800000pt;}
.ws2f{word-spacing:12.864000pt;}
.ws62{word-spacing:13.120000pt;}
.ws58{word-spacing:13.440000pt;}
.ws10{word-spacing:13.468800pt;}
.ws11{word-spacing:13.585920pt;}
.ws6b{word-spacing:13.760000pt;}
.ws76{word-spacing:13.824000pt;}
.ws5f{word-spacing:14.080000pt;}
.ws60{word-spacing:14.144000pt;}
.ws69{word-spacing:14.400000pt;}
.ws39{word-spacing:14.720000pt;}
.ws48{word-spacing:15.040000pt;}
.wsb6{word-spacing:15.360000pt;}
.wsb5{word-spacing:15.680000pt;}
.wsc8{word-spacing:15.744000pt;}
.ws88{word-spacing:16.000000pt;}
.ws66{word-spacing:16.320000pt;}
.wsa4{word-spacing:16.384000pt;}
.ws81{word-spacing:16.640000pt;}
.ws8b{word-spacing:16.960000pt;}
.wsb0{word-spacing:17.024000pt;}
.ws4a{word-spacing:17.280000pt;}
.ws6d{word-spacing:17.600000pt;}
.ws4e{word-spacing:17.920000pt;}
.ws51{word-spacing:18.240000pt;}
.ws42{word-spacing:18.560000pt;}
.ws9e{word-spacing:19.200000pt;}
.ws6e{word-spacing:19.520000pt;}
.ws31{word-spacing:19.840000pt;}
.ws61{word-spacing:20.160000pt;}
.wsa7{word-spacing:20.480000pt;}
.ws5c{word-spacing:20.800000pt;}
.ws77{word-spacing:21.120000pt;}
.ws3d{word-spacing:21.440000pt;}
.ws79{word-spacing:21.760000pt;}
.wsb7{word-spacing:22.080000pt;}
.ws9f{word-spacing:22.400000pt;}
.wsab{word-spacing:22.464000pt;}
.ws8a{word-spacing:22.720000pt;}
.ws8c{word-spacing:23.360000pt;}
.ws7e{word-spacing:23.680000pt;}
.wsb4{word-spacing:24.000000pt;}
.ws9c{word-spacing:24.320000pt;}
.ws84{word-spacing:24.640000pt;}
.wsad{word-spacing:24.704000pt;}
.wsa3{word-spacing:24.960000pt;}
.ws59{word-spacing:25.280000pt;}
.ws72{word-spacing:25.600000pt;}
.ws4c{word-spacing:25.920000pt;}
.ws9d{word-spacing:25.984000pt;}
.ws57{word-spacing:26.240000pt;}
.ws83{word-spacing:26.560000pt;}
.wsb1{word-spacing:26.880000pt;}
.ws78{word-spacing:27.200000pt;}
.wsbb{word-spacing:27.520000pt;}
.wscf{word-spacing:28.480000pt;}
.wsb9{word-spacing:29.760000pt;}
.wsd3{word-spacing:31.680000pt;}
.wsba{word-spacing:32.000000pt;}
.wsb3{word-spacing:33.600000pt;}
.wsb8{word-spacing:35.200000pt;}
.wsb2{word-spacing:37.440000pt;}
.ws67{word-spacing:38.656000pt;}
.ws68{word-spacing:38.720000pt;}
.wsc5{word-spacing:39.680000pt;}
.ws3c{word-spacing:40.640000pt;}
.wsc3{word-spacing:41.600000pt;}
.wsd8{word-spacing:48.000000pt;}
.wsce{word-spacing:49.280000pt;}
.wscd{word-spacing:49.600000pt;}
.wsa9{word-spacing:50.340480pt;}
.wsc7{word-spacing:52.160000pt;}
.wsc6{word-spacing:52.480000pt;}
.wsbc{word-spacing:60.160000pt;}
.wsd5{word-spacing:64.320000pt;}
.wsd6{word-spacing:64.384000pt;}
.wsd1{word-spacing:67.200000pt;}
.wsd2{word-spacing:67.392000pt;}
.wsd0{word-spacing:80.640000pt;}
.wsc0{word-spacing:82.240000pt;}
.wsd4{word-spacing:100.480000pt;}
.wsbd{word-spacing:105.920000pt;}
.wsbe{word-spacing:106.112000pt;}
.wsc1{word-spacing:125.760000pt;}
.wsc2{word-spacing:125.824000pt;}
.wsc4{word-spacing:212.160000pt;}
.wsbf{word-spacing:244.480000pt;}
.wsc9{word-spacing:247.680000pt;}
.wsca{word-spacing:247.744000pt;}
.wscc{word-spacing:434.240000pt;}
._d{margin-left:-20.800000pt;}
._20{margin-left:-11.328000pt;}
._2{margin-left:-1.228380pt;}
._0{width:1.086407pt;}
._3{width:2.037013pt;}
._f{width:3.329593pt;}
._b{width:4.800000pt;}
._1{width:6.215975pt;}
._4{width:7.339419pt;}
._6{width:8.434499pt;}
._16{width:9.664000pt;}
._10{width:10.688000pt;}
._e{width:12.480000pt;}
._5{width:13.476752pt;}
._17{width:14.848000pt;}
._13{width:16.064000pt;}
._11{width:18.240000pt;}
._12{width:20.416000pt;}
._1e{width:22.336000pt;}
._1b{width:23.296000pt;}
._1c{width:24.449593pt;}
._19{width:26.112000pt;}
._2a{width:28.608000pt;}
._1f{width:33.280000pt;}
._14{width:38.784000pt;}
._29{width:40.064000pt;}
._27{width:41.932380pt;}
._1a{width:44.096953pt;}
._15{width:46.426987pt;}
._18{width:48.514667pt;}
._1d{width:50.287040pt;}
._c{width:54.013433pt;}
._28{width:56.768000pt;}
._8{width:65.262400pt;}
._7{width:66.722560pt;}
._2c{width:67.805440pt;}
._2b{width:80.129593pt;}
._24{width:82.304000pt;}
._22{width:106.496000pt;}
._26{width:126.208000pt;}
._21{width:237.696000pt;}
._2d{width:240.704000pt;}
._23{width:244.864000pt;}
._25{width:268.864000pt;}
._9{width:277.192540pt;}
._2e{width:383.680000pt;}
._a{width:1114.560000pt;}
.fs8{font-size:42.560000pt;}
.fs9{font-size:45.440000pt;}
.fs6{font-size:53.440000pt;}
.fs7{font-size:56.330706pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:61.727660pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs4{font-size:85.440000pt;}
.fs3{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:41.840000pt;}
.y3e{bottom:52.240000pt;}
.y1b{bottom:65.840000pt;}
.y1c6{bottom:88.480000pt;}
.y166{bottom:88.960000pt;}
.yf5{bottom:91.760000pt;}
.y109{bottom:92.160000pt;}
.y157{bottom:93.760000pt;}
.y11d{bottom:94.400000pt;}
.y189{bottom:94.640000pt;}
.yac{bottom:94.960000pt;}
.y1fb{bottom:96.560000pt;}
.y1b9{bottom:100.960000pt;}
.y5f{bottom:102.960000pt;}
.yba{bottom:104.080000pt;}
.y136{bottom:105.600000pt;}
.y3d{bottom:107.520000pt;}
.yde{bottom:109.200000pt;}
.y18a{bottom:111.440000pt;}
.y1a{bottom:114.400000pt;}
.y1c8{bottom:115.760000pt;}
.y163{bottom:116.080000pt;}
.y1c5{bottom:117.280000pt;}
.y165{bottom:117.760000pt;}
.y1a2{bottom:118.640000pt;}
.y108{bottom:120.960000pt;}
.y156{bottom:122.560000pt;}
.y7e{bottom:122.640000pt;}
.y11c{bottom:123.200000pt;}
.yab{bottom:123.760000pt;}
.y1fa{bottom:125.360000pt;}
.yd1{bottom:125.840000pt;}
.y1e7{bottom:126.080000pt;}
.y128{bottom:128.240000pt;}
.y1b8{bottom:129.760000pt;}
.y141{bottom:130.880000pt;}
.y5e{bottom:131.760000pt;}
.yb9{bottom:132.880000pt;}
.y14b{bottom:134.320000pt;}
.y3c{bottom:136.320000pt;}
.yf4{bottom:136.560000pt;}
.ydd{bottom:138.000000pt;}
.y1a1{bottom:142.640000pt;}
.y19{bottom:143.200000pt;}
.y9b{bottom:144.560000pt;}
.y162{bottom:144.880000pt;}
.y1c4{bottom:146.080000pt;}
.y188{bottom:147.200000pt;}
.y155{bottom:148.960000pt;}
.y107{bottom:149.760000pt;}
.y135{bottom:150.400000pt;}
.y7d{bottom:151.440000pt;}
.yf0{bottom:151.600000pt;}
.y1f9{bottom:154.160000pt;}
.y169{bottom:154.960000pt;}
.y1e6{bottom:155.680000pt;}
.y1b7{bottom:158.560000pt;}
.y1a0{bottom:158.640000pt;}
.y11b{bottom:160.000000pt;}
.y5d{bottom:160.560000pt;}
.yb8{bottom:161.680000pt;}
.y208{bottom:162.160000pt;}
.y164{bottom:162.560000pt;}
.yaa{bottom:162.960000pt;}
.y14a{bottom:163.120000pt;}
.y154{bottom:164.960000pt;}
.ydc{bottom:166.800000pt;}
.yd0{bottom:170.640000pt;}
.y18{bottom:172.000000pt;}
.y127{bottom:173.040000pt;}
.y9a{bottom:173.360000pt;}
.y161{bottom:173.680000pt;}
.y1c3{bottom:174.880000pt;}
.y1a3{bottom:175.440000pt;}
.y3b{bottom:175.520000pt;}
.y140{bottom:175.760000pt;}
.y187{bottom:176.000000pt;}
.y106{bottom:178.560000pt;}
.y7c{bottom:180.240000pt;}
.yef{bottom:180.400000pt;}
.yf3{bottom:181.360000pt;}
.y1f8{bottom:182.960000pt;}
.y1e5{bottom:186.160000pt;}
.y168{bottom:186.960000pt;}
.y1b6{bottom:187.360000pt;}
.y11a{bottom:188.800000pt;}
.y5c{bottom:189.360000pt;}
.yb7{bottom:190.480000pt;}
.y207{bottom:190.960000pt;}
.y149{bottom:191.920000pt;}
.y153{bottom:194.560000pt;}
.y134{bottom:195.200000pt;}
.ydb{bottom:195.600000pt;}
.y17{bottom:200.800000pt;}
.y126{bottom:201.840000pt;}
.y99{bottom:202.160000pt;}
.y160{bottom:202.480000pt;}
.y1c2{bottom:203.680000pt;}
.y186{bottom:204.800000pt;}
.y13f{bottom:205.040000pt;}
.y105{bottom:207.360000pt;}
.y7b{bottom:209.040000pt;}
.yee{bottom:209.200000pt;}
.ya9{bottom:210.160000pt;}
.ycf{bottom:215.520000pt;}
.y1b5{bottom:216.160000pt;}
.y119{bottom:217.600000pt;}
.y5b{bottom:218.160000pt;}
.yb6{bottom:219.280000pt;}
.y1f7{bottom:219.760000pt;}
.y148{bottom:220.800000pt;}
.y1e4{bottom:222.960000pt;}
.yda{bottom:224.400000pt;}
.y3a{bottom:230.720000pt;}
.y98{bottom:230.960000pt;}
.y15f{bottom:231.280000pt;}
.y1c1{bottom:232.480000pt;}
.y185{bottom:233.680000pt;}
.y13e{bottom:234.320000pt;}
.y104{bottom:236.160000pt;}
.y125{bottom:236.240000pt;}
.y16{bottom:237.600000pt;}
.y7a{bottom:237.840000pt;}
.yed{bottom:238.000000pt;}
.y19f{bottom:238.400000pt;}
.ya8{bottom:238.960000pt;}
.y133{bottom:240.000000pt;}
.yce{bottom:244.800000pt;}
.y1b4{bottom:244.960000pt;}
.y118{bottom:246.400000pt;}
.y5a{bottom:246.960000pt;}
.yb5{bottom:248.080000pt;}
.y1f6{bottom:248.560000pt;}
.y147{bottom:250.160000pt;}
.y1e3{bottom:251.760000pt;}
.yd9{bottom:253.200000pt;}
.y1d8{bottom:254.240000pt;}
.y206{bottom:256.560000pt;}
.y97{bottom:259.760000pt;}
.y15e{bottom:260.080000pt;}
.y1c0{bottom:261.280000pt;}
.y184{bottom:262.960000pt;}
.y13d{bottom:263.120000pt;}
.y103{bottom:264.960000pt;}
.y124{bottom:265.840000pt;}
.y79{bottom:266.640000pt;}
.yec{bottom:266.800000pt;}
.y19e{bottom:267.200000pt;}
.y39{bottom:267.520000pt;}
.ya7{bottom:267.760000pt;}
.ycd{bottom:273.680000pt;}
.y1b3{bottom:273.760000pt;}
.y117{bottom:275.200000pt;}
.y59{bottom:275.760000pt;}
.yb4{bottom:276.880000pt;}
.y1f5{bottom:277.360000pt;}
.y146{bottom:279.440000pt;}
.y1e2{bottom:280.560000pt;}
.yd8{bottom:282.000000pt;}
.y132{bottom:284.800000pt;}
.y205{bottom:285.360000pt;}
.y96{bottom:288.560000pt;}
.y15d{bottom:288.880000pt;}
.y1bf{bottom:290.080000pt;}
.y15{bottom:290.400000pt;}
.y183{bottom:291.760000pt;}
.y13c{bottom:292.000000pt;}
.y1d7{bottom:293.360000pt;}
.y102{bottom:293.760000pt;}
.y78{bottom:295.440000pt;}
.yeb{bottom:295.600000pt;}
.y19d{bottom:296.000000pt;}
.y38{bottom:296.320000pt;}
.ya6{bottom:296.560000pt;}
.y1b2{bottom:302.560000pt;}
.ycc{bottom:302.960000pt;}
.y116{bottom:304.000000pt;}
.y58{bottom:304.560000pt;}
.yb3{bottom:305.680000pt;}
.y1f4{bottom:306.160000pt;}
.y145{bottom:308.240000pt;}
.yd7{bottom:310.800000pt;}
.y204{bottom:314.160000pt;}
.y95{bottom:317.360000pt;}
.y15c{bottom:317.680000pt;}
.y1be{bottom:318.880000pt;}
.y14{bottom:319.200000pt;}
.y182{bottom:320.560000pt;}
.y13b{bottom:321.280000pt;}
.y101{bottom:322.560000pt;}
.y77{bottom:324.240000pt;}
.yea{bottom:324.400000pt;}
.y19c{bottom:324.800000pt;}
.y37{bottom:325.360000pt;}
.y131{bottom:329.600000pt;}
.y1d6{bottom:330.160000pt;}
.y1b1{bottom:331.360000pt;}
.ycb{bottom:331.760000pt;}
.y115{bottom:332.800000pt;}
.y57{bottom:333.360000pt;}
.y144{bottom:337.040000pt;}
.yd6{bottom:339.840000pt;}
.ye1{bottom:341.360000pt;}
.y1f3{bottom:342.960000pt;}
.y1e1{bottom:346.160000pt;}
.y1bd{bottom:347.680000pt;}
.y13{bottom:348.000000pt;}
.y181{bottom:349.360000pt;}
.y13a{bottom:350.080000pt;}
.yb2{bottom:350.480000pt;}
.y203{bottom:350.960000pt;}
.y100{bottom:351.360000pt;}
.y76{bottom:353.040000pt;}
.ye9{bottom:353.200000pt;}
.y19b{bottom:353.600000pt;}
.y94{bottom:354.160000pt;}
.y36{bottom:355.120000pt;}
.y1b0{bottom:360.160000pt;}
.yca{bottom:361.040000pt;}
.y114{bottom:361.600000pt;}
.y56{bottom:362.160000pt;}
.y15b{bottom:362.480000pt;}
.y143{bottom:365.840000pt;}
.y1d5{bottom:366.960000pt;}
.yd5{bottom:369.600000pt;}
.ye0{bottom:370.160000pt;}
.y1f2{bottom:371.760000pt;}
.y1c7{bottom:372.560000pt;}
.y130{bottom:374.400000pt;}
.y1e0{bottom:374.960000pt;}
.y180{bottom:378.160000pt;}
.y139{bottom:378.880000pt;}
.y12{bottom:379.200000pt;}
.yb1{bottom:379.280000pt;}
.y202{bottom:379.760000pt;}
.yff{bottom:380.160000pt;}
.y75{bottom:381.840000pt;}
.ye8{bottom:382.000000pt;}
.y19a{bottom:382.400000pt;}
.y93{bottom:382.960000pt;}
.y35{bottom:384.720000pt;}
.y1af{bottom:388.960000pt;}
.yc9{bottom:389.840000pt;}
.y55{bottom:390.960000pt;}
.y15a{bottom:391.280000pt;}
.y1bc{bottom:392.480000pt;}
.y1d4{bottom:395.760000pt;}
.y113{bottom:398.400000pt;}
.ydf{bottom:398.960000pt;}
.y20a{bottom:400.560000pt;}
.y1df{bottom:403.760000pt;}
.y17f{bottom:406.960000pt;}
.y1f1{bottom:408.560000pt;}
.yfe{bottom:408.960000pt;}
.y74{bottom:410.640000pt;}
.ye7{bottom:410.800000pt;}
.y199{bottom:411.200000pt;}
.yb0{bottom:411.280000pt;}
.y92{bottom:411.760000pt;}
.y34{bottom:413.520000pt;}
.yd4{bottom:415.200000pt;}
.y201{bottom:416.560000pt;}
.y1ae{bottom:417.760000pt;}
.yc8{bottom:418.640000pt;}
.y12f{bottom:419.200000pt;}
.yf2{bottom:419.760000pt;}
.y159{bottom:423.360000pt;}
.y138{bottom:423.680000pt;}
.y1d3{bottom:424.560000pt;}
.y1bb{bottom:426.880000pt;}
.y112{bottom:427.200000pt;}
.y54{bottom:427.760000pt;}
.y1de{bottom:432.560000pt;}
.y11{bottom:434.400000pt;}
.y17e{bottom:435.760000pt;}
.y1f0{bottom:437.360000pt;}
.yfd{bottom:437.760000pt;}
.y73{bottom:439.440000pt;}
.ye6{bottom:439.600000pt;}
.y198{bottom:440.000000pt;}
.y91{bottom:440.560000pt;}
.y33{bottom:442.320000pt;}
.y142{bottom:442.640000pt;}
.yd3{bottom:444.000000pt;}
.y200{bottom:445.360000pt;}
.y1ad{bottom:446.560000pt;}
.yc7{bottom:447.440000pt;}
.y12e{bottom:448.000000pt;}
.yf1{bottom:448.560000pt;}
.y1d2{bottom:453.360000pt;}
.y137{bottom:455.760000pt;}
.y111{bottom:456.000000pt;}
.y53{bottom:456.560000pt;}
.y1dd{bottom:461.360000pt;}
.y10{bottom:463.200000pt;}
.y17d{bottom:464.560000pt;}
.y1ef{bottom:466.160000pt;}
.yfc{bottom:466.560000pt;}
.y72{bottom:468.240000pt;}
.y197{bottom:468.800000pt;}
.y90{bottom:469.360000pt;}
.y32{bottom:471.120000pt;}
.y1ff{bottom:474.160000pt;}
.y1ac{bottom:475.360000pt;}
.yd2{bottom:476.080000pt;}
.yc6{bottom:476.240000pt;}
.ya5{bottom:477.360000pt;}
.ye5{bottom:478.800000pt;}
.y1d1{bottom:482.160000pt;}
.y12d{bottom:482.400000pt;}
.y110{bottom:484.800000pt;}
.y52{bottom:485.360000pt;}
.y1dc{bottom:490.160000pt;}
.yf{bottom:492.000000pt;}
.y17c{bottom:493.360000pt;}
.y1ee{bottom:494.960000pt;}
.yfb{bottom:495.360000pt;}
.y71{bottom:497.040000pt;}
.y196{bottom:497.600000pt;}
.y8f{bottom:498.160000pt;}
.y12c{bottom:498.400000pt;}
.y31{bottom:500.160000pt;}
.y1ab{bottom:504.160000pt;}
.yc5{bottom:505.040000pt;}
.ya4{bottom:506.160000pt;}
.y1d0{bottom:510.960000pt;}
.y10f{bottom:513.600000pt;}
.y51{bottom:514.160000pt;}
.y17b{bottom:522.160000pt;}
.ye{bottom:523.200000pt;}
.y70{bottom:525.840000pt;}
.ye4{bottom:526.000000pt;}
.y195{bottom:526.400000pt;}
.y8e{bottom:526.960000pt;}
.y12b{bottom:528.080000pt;}
.y30{bottom:529.760000pt;}
.y152{bottom:531.680000pt;}
.y1ed{bottom:531.760000pt;}
.y1aa{bottom:532.960000pt;}
.yc4{bottom:533.840000pt;}
.ya3{bottom:534.960000pt;}
.y1fe{bottom:539.760000pt;}
.yfa{bottom:540.160000pt;}
.y10e{bottom:542.400000pt;}
.y50{bottom:542.960000pt;}
.y1cf{bottom:547.760000pt;}
.y17a{bottom:550.960000pt;}
.y6f{bottom:554.640000pt;}
.y194{bottom:555.200000pt;}
.y8d{bottom:555.760000pt;}
.ye3{bottom:558.080000pt;}
.y2f{bottom:558.560000pt;}
.y151{bottom:560.480000pt;}
.y1ec{bottom:560.560000pt;}
.y1a9{bottom:561.760000pt;}
.y123{bottom:562.160000pt;}
.yc3{bottom:562.640000pt;}
.ya2{bottom:563.760000pt;}
.y1fd{bottom:568.560000pt;}
.y10d{bottom:571.200000pt;}
.y4f{bottom:571.760000pt;}
.yf9{bottom:574.560000pt;}
.y1ce{bottom:576.560000pt;}
.yd{bottom:578.400000pt;}
.y179{bottom:579.760000pt;}
.y6e{bottom:583.440000pt;}
.y193{bottom:584.000000pt;}
.y8c{bottom:584.560000pt;}
.y2e{bottom:587.360000pt;}
.y1eb{bottom:589.360000pt;}
.y1a8{bottom:590.560000pt;}
.yc2{bottom:591.440000pt;}
.ya1{bottom:592.560000pt;}
.y1fc{bottom:597.360000pt;}
.yf8{bottom:598.560000pt;}
.y10c{bottom:600.000000pt;}
.y4e{bottom:600.560000pt;}
.y150{bottom:605.280000pt;}
.y1cd{bottom:605.360000pt;}
.y122{bottom:606.960000pt;}
.yc{bottom:607.200000pt;}
.y178{bottom:608.560000pt;}
.y192{bottom:612.800000pt;}
.y8b{bottom:613.360000pt;}
.y2d{bottom:616.160000pt;}
.y1ea{bottom:618.160000pt;}
.y1a7{bottom:619.360000pt;}
.y6d{bottom:620.240000pt;}
.ya0{bottom:621.360000pt;}
.yf7{bottom:622.560000pt;}
.y209{bottom:626.160000pt;}
.y10b{bottom:628.880000pt;}
.y4d{bottom:629.360000pt;}
.y14f{bottom:634.080000pt;}
.y1cc{bottom:634.160000pt;}
.y121{bottom:635.760000pt;}
.yb{bottom:636.000000pt;}
.y191{bottom:641.600000pt;}
.y8a{bottom:642.160000pt;}
.y177{bottom:645.360000pt;}
.y1a6{bottom:648.160000pt;}
.y6c{bottom:649.040000pt;}
.y9f{bottom:650.160000pt;}
.yf6{bottom:652.160000pt;}
.y2c{bottom:652.960000pt;}
.y1e9{bottom:654.960000pt;}
.y4c{bottom:658.160000pt;}
.y14e{bottom:662.880000pt;}
.y1cb{bottom:662.960000pt;}
.ya{bottom:667.200000pt;}
.y190{bottom:670.400000pt;}
.y89{bottom:670.960000pt;}
.y176{bottom:674.160000pt;}
.y1a5{bottom:677.120000pt;}
.y6b{bottom:677.840000pt;}
.y120{bottom:678.160000pt;}
.y9e{bottom:678.960000pt;}
.yc1{bottom:685.840000pt;}
.y4b{bottom:686.960000pt;}
.y1ca{bottom:691.760000pt;}
.y14d{bottom:697.280000pt;}
.y18f{bottom:699.200000pt;}
.y88{bottom:699.760000pt;}
.y175{bottom:702.960000pt;}
.y2b{bottom:705.760000pt;}
.y6a{bottom:706.720000pt;}
.y9d{bottom:707.760000pt;}
.y11f{bottom:707.840000pt;}
.yc0{bottom:714.720000pt;}
.y4a{bottom:715.760000pt;}
.y1c9{bottom:720.560000pt;}
.y14c{bottom:726.960000pt;}
.y87{bottom:728.560000pt;}
.y174{bottom:731.760000pt;}
.y69{bottom:735.520000pt;}
.y18e{bottom:736.000000pt;}
.y9c{bottom:736.560000pt;}
.y2a{bottom:742.560000pt;}
.y9{bottom:743.200000pt;}
.ybf{bottom:743.520000pt;}
.y49{bottom:744.560000pt;}
.y1e8{bottom:749.360000pt;}
.y12a{bottom:757.360000pt;}
.y173{bottom:760.560000pt;}
.y68{bottom:764.320000pt;}
.y18d{bottom:764.800000pt;}
.y86{bottom:765.360000pt;}
.y29{bottom:771.360000pt;}
.ybe{bottom:772.800000pt;}
.y48{bottom:773.360000pt;}
.y8{bottom:781.600000pt;}
.y129{bottom:786.160000pt;}
.y172{bottom:789.360000pt;}
.y67{bottom:793.120000pt;}
.y1a4{bottom:793.360000pt;}
.y18c{bottom:793.600000pt;}
.y85{bottom:794.160000pt;}
.y28{bottom:800.320000pt;}
.ybd{bottom:801.600000pt;}
.y47{bottom:802.160000pt;}
.y158{bottom:814.960000pt;}
.y171{bottom:818.160000pt;}
.y66{bottom:821.920000pt;}
.y18b{bottom:822.480000pt;}
.y84{bottom:822.960000pt;}
.y27{bottom:829.920000pt;}
.ybc{bottom:830.400000pt;}
.y46{bottom:830.960000pt;}
.y7{bottom:835.200000pt;}
.y1db{bottom:838.960000pt;}
.y1ba{bottom:843.760000pt;}
.y170{bottom:846.960000pt;}
.y65{bottom:850.720000pt;}
.y83{bottom:851.760000pt;}
.y26{bottom:858.720000pt;}
.ybb{bottom:859.280000pt;}
.y45{bottom:859.760000pt;}
.y1da{bottom:867.760000pt;}
.y16f{bottom:875.760000pt;}
.y64{bottom:879.520000pt;}
.y82{bottom:880.560000pt;}
.y25{bottom:887.520000pt;}
.y6{bottom:888.320000pt;}
.y44{bottom:888.560000pt;}
.y1d9{bottom:896.560000pt;}
.y10a{bottom:898.960000pt;}
.y167{bottom:901.360000pt;}
.y16e{bottom:904.560000pt;}
.y63{bottom:908.320000pt;}
.y81{bottom:909.360000pt;}
.y24{bottom:916.320000pt;}
.y43{bottom:917.360000pt;}
.yaf{bottom:929.600000pt;}
.y11e{bottom:930.160000pt;}
.y16d{bottom:933.360000pt;}
.y62{bottom:937.120000pt;}
.y80{bottom:938.160000pt;}
.y23{bottom:945.120000pt;}
.y42{bottom:946.160000pt;}
.ye2{bottom:958.960000pt;}
.y16c{bottom:962.160000pt;}
.y61{bottom:965.920000pt;}
.y7f{bottom:966.960000pt;}
.y22{bottom:973.920000pt;}
.yae{bottom:974.400000pt;}
.y41{bottom:974.960000pt;}
.y16b{bottom:990.960000pt;}
.y5{bottom:998.960000pt;}
.y21{bottom:1002.720000pt;}
.yad{bottom:1003.280000pt;}
.y40{bottom:1003.760000pt;}
.y4{bottom:1016.640000pt;}
.y16a{bottom:1030.160000pt;}
.y20{bottom:1031.760000pt;}
.y60{bottom:1032.080000pt;}
.y3f{bottom:1032.560000pt;}
.y3{bottom:1034.240000pt;}
.y2{bottom:1067.840000pt;}
.y1f{bottom:1069.760000pt;}
.y1{bottom:1085.440000pt;}
.y1e{bottom:1088.960000pt;}
.y1d{bottom:1108.160000pt;}
.h8{height:50.432000pt;}
.ha{height:52.638400pt;}
.h9{height:55.485745pt;}
.h3{height:57.681600pt;}
.h2{height:60.801745pt;}
.h4{height:63.040000pt;}
.h7{height:73.441600pt;}
.hb{height:76.758400pt;}
.h6{height:84.158400pt;}
.h5{height:115.678400pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.721333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.600000pt;}
.x1e{left:77.920000pt;}
.x1a{left:80.480000pt;}
.x26{left:82.000000pt;}
.x34{left:84.160000pt;}
.x45{left:93.280000pt;}
.x33{left:94.560000pt;}
.x18{left:97.520000pt;}
.x14{left:105.520000pt;}
.x48{left:108.720000pt;}
.x3c{left:110.240000pt;}
.x13{left:113.360000pt;}
.x4{left:119.200000pt;}
.x31{left:124.960000pt;}
.x24{left:128.400000pt;}
.x20{left:132.560000pt;}
.x7{left:144.240000pt;}
.x36{left:147.920000pt;}
.x2d{left:149.200000pt;}
.x27{left:150.160000pt;}
.x6{left:151.200000pt;}
.x17{left:152.240000pt;}
.x1f{left:153.600000pt;}
.x38{left:154.960000pt;}
.x8{left:156.640000pt;}
.x3e{left:160.080000pt;}
.x47{left:168.880000pt;}
.x41{left:170.480000pt;}
.x35{left:172.720000pt;}
.x1b{left:177.520000pt;}
.x4b{left:179.680000pt;}
.x43{left:188.800000pt;}
.x2f{left:197.680000pt;}
.x22{left:201.760000pt;}
.x2a{left:216.240000pt;}
.x12{left:220.160000pt;}
.x3f{left:226.160000pt;}
.x1d{left:228.240000pt;}
.x2b{left:233.440000pt;}
.x2e{left:235.840000pt;}
.x5{left:239.520000pt;}
.x39{left:243.120000pt;}
.x9{left:255.120000pt;}
.x32{left:266.880000pt;}
.xa{left:273.680000pt;}
.x4c{left:276.800000pt;}
.xd{left:281.760000pt;}
.x10{left:290.720000pt;}
.xe{left:292.400000pt;}
.x21{left:296.320000pt;}
.xc{left:303.680000pt;}
.x25{left:307.840000pt;}
.xf{left:338.720000pt;}
.xb{left:340.000000pt;}
.x11{left:350.000000pt;}
.x15{left:376.480000pt;}
.x1c{left:396.880000pt;}
.x2{left:399.040000pt;}
.x3{left:425.040000pt;}
.x16{left:463.840000pt;}
.x3b{left:485.920000pt;}
.x49{left:560.880000pt;}
.x4a{left:566.080000pt;}
.x40{left:567.520000pt;}
.x44{left:604.880000pt;}
.x2c{left:608.320000pt;}
.x37{left:623.200000pt;}
.x3a{left:626.880000pt;}
.x30{left:644.000000pt;}
.x4d{left:661.920000pt;}
.x42{left:663.040000pt;}
.x46{left:670.880000pt;}
.x3d{left:684.880000pt;}
.x23{left:695.840000pt;}
.x28{left:699.840000pt;}
.x29{left:715.440000pt;}
.x19{left:718.080000pt;}
}




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